summaryrefslogtreecommitdiffstats
path: root/ipalib/encoder.py
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2012-03-07 16:36:52 -0500
committerRob Crittenden <rcritten@redhat.com>2012-03-13 22:42:12 -0400
commit17ba58aa4b6d59b159754351631165a9de61718a (patch)
treecbf567e88865dc44be96a2d3353e159bc3f62fe4 /ipalib/encoder.py
parent0425d09fac4e52feba309642c3d165c1916fc29c (diff)
downloadfreeipa-17ba58aa4b6d59b159754351631165a9de61718a.tar.gz
freeipa-17ba58aa4b6d59b159754351631165a9de61718a.tar.xz
freeipa-17ba58aa4b6d59b159754351631165a9de61718a.zip
Don't set dbdir in the connection until after the connection is created.
We were comparing the current connection with itself so were never going to call nss_shutdown(). dbdir needs to be set after the connection has been made. This worked on single server installs because we don't do a ping so NSS would never be pre-initialized. If multiple servers are available we call ping() to find one that is up before submitting the request, this is what would have pre-initialized NSS. This was tripping up request-cert because it will intialize NSS with no DB if it hasn't been initialized. We need to initialize it to validate the CSR. A non-working client was doing this when calling cert-request: - call load_certificate_request() - nss.nss_nodb_init() - load the CSR - create a connection, dbdir=/etc/pki/nssdb - the dbdir matches within the same connection, don't call nss_shutdown() - connect to remote server - fail, untrusted CA because we are still using db from nss_nodb_init. Instead if we set dbdir afterward then this will properly be shutdown and NSS re-initialized with correct dbdir. https://fedorahosted.org/freeipa/ticket/2498
Diffstat (limited to 'ipalib/encoder.py')
0 files changed, 0 insertions, 0 deletions