]> git.sur5r.net Git - openldap/commit
ITS#7002 MozNSS: fix VerifyCert allow/try behavior
authorRich Megginson <rmeggins@redhat.com>
Thu, 28 Jul 2011 21:08:37 +0000 (14:08 -0700)
committerHoward Chu <hyc@openldap.org>
Thu, 28 Jul 2011 21:09:55 +0000 (14:09 -0700)
commit210b156ece28a71cb625283fa5c30ee76d639cdc
tree66faa58f80352a5ec3288254abee8f78700d90d2
parentfb4b4f7445d9392fbae097cc861e4cfb1694dcae
ITS#7002 MozNSS: fix VerifyCert allow/try behavior

If the olcTLSVerifyClient is set to a value other than "never", the server
should request that the client send a client certificate for possible use
with client cert auth (e.g. SASL/EXTERNAL).
If set to "allow", if the client sends a cert, and there are problems with
it, the server will warn about problems, but will allow the SSL session to
proceed without a client cert.
If set to "try", if the client sends a cert, and there are problems with
it, the server will warn about those problems, and shutdown the SSL session.
If set to "demand" or "hard", the client must send a cert, and the server
will shutdown the SSL session if there are problems.
I added a new member of the tlsm context structure - tc_warn_only - if this
is set, tlsm_verify_cert will only warn about errors, and only if TRACE
level debug is set.  This allows the server to warn but allow bad certs
if "allow" is set, and warn and fail if "try" is set.
libraries/libldap/tls_m.c