]> git.sur5r.net Git - openldap/commitdiff
ITS#5264 don't log NULL/anonymous DNs
authorHoward Chu <hyc@openldap.org>
Sat, 22 Dec 2007 21:16:54 +0000 (21:16 +0000)
committerHoward Chu <hyc@openldap.org>
Sat, 22 Dec 2007 21:16:54 +0000 (21:16 +0000)
servers/slapd/saslauthz.c

index 135c242fe53a4bf33dfeabf7bd9ad116da99c2ad..e5c508fa33e336e4a3ac9e007b133297915acd32 100644 (file)
@@ -1665,7 +1665,7 @@ slap_sasl_match( Operation *opx, struct berval *rule,
 
        Debug( LDAP_DEBUG_TRACE,
           "===>slap_sasl_match: comparing DN %s to rule %s\n",
-               assertDN->bv_val, rule->bv_val, 0 );
+               assertDN->bv_len ? assertDN->bv_val : "(null)", rule->bv_val, 0 );
 
        /* NOTE: don't normalize rule if authz syntax is enabled */
        rc = slap_parseURI( opx, rule, &base, &op.o_req_ndn,
@@ -2038,11 +2038,16 @@ int slap_sasl_authorized( Operation *op,
        int rc = LDAP_INAPPROPRIATE_AUTH;
 
        /* User binding as anonymous */
-       if ( authzDN == NULL ) {
+       if ( !authzDN || !authzDN->bv_len || !authzDN->bv_val ) {
                rc = LDAP_SUCCESS;
                goto DONE;
        }
 
+       /* User is anonymous */
+       if ( !authcDN || !authcDN->bv_len || !authcDN->bv_val ) {
+               goto DONE;
+       }
+
        Debug( LDAP_DEBUG_TRACE,
           "==>slap_sasl_authorized: can %s become %s?\n",
                authcDN->bv_len ? authcDN->bv_val : "(null)",