You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Installation of a CA clone fails in FIPS mode on fedora 42.
Reproducer:
Prepare a rawhide server in FIPS mode + se linux permissive mode
Prepare a rawhide replica in FIPS mode + se linux permissive mode
Enable the copr repo @freeipa/freeipa-master-nightly on both machines, install freeipa-server-dns packages on both machines
on the server: ipa-server-install --domain ipa.test --realm IPA.TEST --setup-dns --auto-forwarders -a Secret123 -p Secret123 -U
on the replica: ipa-replica-install --domain ipa.test --realm IPA.TEST --server server.ipa.test --setup-dns --auto-forwarders --principal admin --password Secret123 -U
on the replica: perform CA clone installation with ipa-ca-install
The Ca clone installation fails:
# ipa-ca-install
Directory Manager (existing master) password:
Running ipa-certupdate...done
Run connection check to master
Connection check OK
Configuring certificate server (pki-tomcatd). Estimated time: 3 minutes
[1/31]: creating certificate server db
[2/31]: ignore time skew for initial replication
[3/31]: setting up initial replication
Starting replication, please wait until this has completed.
Update in progress, 9 seconds elapsed
Update succeeded
[4/31]: revert time skew after initial replication
[5/31]: creating ACIs for admin
[6/31]: creating installation admin user
[7/31]: configuring certificate server instance
ipaserver.install.dogtaginstance: CRITICAL Failed to configure CA instance
ipaserver.install.dogtaginstance: CRITICAL See the installation logs and the following files/directories for more information:
ipaserver.install.dogtaginstance: CRITICAL /var/log/pki/pki-tomcat
[error] RuntimeError: CA configuration failed.
Your system may be partly configured.
Run /usr/sbin/ipa-server-install --uninstall to clean up.
CA configuration failed.
The log file /var/log/ipareplica-ca-install.log shows that the issue happens in pkispawn in a call to openssl pkcs12:
ERROR: CalledProcessError: Command '['openssl', 'pkcs12', '-in', '/tmp/ca.p12', '-out', '/etc/pki/pki-tomcat/alias/ca.crt', '-nodes', '-nokeys', '-passin', 'pass:XXXXXXXX']' returned non-zero exit status 1.
In IPA source code we had to modify our calls to openssl pkcs12 in FIPS mode:
add the -nomac arg to openssl pkcs12 -export to export to a p12
add the -nomacver argument to openssl pkcs12 to export from p12
PKI may need to perform the same changes.
The text was updated successfully, but these errors were encountered:
Installation of a CA clone fails in FIPS mode on fedora 42.
Reproducer:
ipa-server-install --domain ipa.test --realm IPA.TEST --setup-dns --auto-forwarders -a Secret123 -p Secret123 -U
ipa-replica-install --domain ipa.test --realm IPA.TEST --server server.ipa.test --setup-dns --auto-forwarders --principal admin --password Secret123 -U
ipa-ca-install
The Ca clone installation fails:
The log file
/var/log/ipareplica-ca-install.log
shows that the issue happens in pkispawn in a call toopenssl pkcs12
:In IPA source code we had to modify our calls to
openssl pkcs12
in FIPS mode:-nomac
arg toopenssl pkcs12 -export
to export to a p12-nomacver
argument toopenssl pkcs12
to export from p12PKI may need to perform the same changes.
The text was updated successfully, but these errors were encountered: