]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/back-ldbm/passwd.c
Added dnPretty2/dnNormalize2 using preallocated destination berval
[openldap] / servers / slapd / back-ldbm / passwd.c
index 41b30464596266c81e715ab394b88a2257e2028e..69b496b13081095847dac668a9e9c3bdc371d601 100644 (file)
@@ -38,7 +38,8 @@ ldbm_back_exop_passwd(
        struct berval *id = NULL;
        struct berval *new = NULL;
 
-       char *dn;
+       struct berval dn;
+       struct berval ndn;
 
        assert( reqoid != NULL );
        assert( strcmp( LDAP_EXOP_X_MODIFY_PASSWD, reqoid ) == 0 );
@@ -80,32 +81,34 @@ ldbm_back_exop_passwd(
                goto done;
        }
 
-       dn = id ? id->bv_val : op->o_dn;
+       if( id ) {
+               dn = *id;
+       } else {
+               dn = op->o_dn;
+       }
 
 #ifdef NEW_LOGGING
        LDAP_LOG(( "backend", LDAP_LEVEL_DETAIL1,
-                  "ldbm_back_exop_passwd: \"%s\"%s\n",
-                  dn, id ? " (proxy)" : "" ));
+               "ldbm_back_exop_passwd: \"%s\"%s\n",
+               dn.bv_val, id ? " (proxy)" : "" ));
 #else
        Debug( LDAP_DEBUG_TRACE, "passwd: \"%s\"%s\n",
-               dn, id ? " (proxy)" : "", 0 );
+               dn.bv_val, id ? " (proxy)" : "", 0 );
 #endif
 
-
-       if( dn == NULL || dn[0] == '\0' ) {
+       if( dn.bv_len == 0 ) {
                *text = "No password is associated with the Root DSE";
                rc = LDAP_OPERATIONS_ERROR;
                goto done;
        }
 
-       if( dn_normalize( dn ) == NULL ) {
+       rc = dnNormalize2( NULL, &dn, &ndn );
+       if( rc != LDAP_SUCCESS ) {
                *text = "Invalid DN";
-               rc = LDAP_INVALID_DN_SYNTAX;
                goto done;
        }
 
-       e = dn2entry_w( be, dn, NULL );
-
+       e = dn2entry_w( be, ndn.bv_val, NULL );
        if( e == NULL ) {
                *text = "could not locate authorization entry";
                rc = LDAP_NO_SUCH_OBJECT;
@@ -131,7 +134,6 @@ ldbm_back_exop_passwd(
                Modifications ml;
                struct berval *vals[2];
                char textbuf[SLAP_TEXT_BUFLEN]; /* non-returnable */
-               size_t textlen;
 
                vals[0] = hash;
                vals[1] = NULL;
@@ -142,9 +144,10 @@ ldbm_back_exop_passwd(
                ml.sml_next = NULL;
 
                rc = ldbm_modify_internal( be,
-                       conn, op, op->o_ndn, &ml, e, text, textbuf, textlen );
+                       conn, op, op->o_ndn.bv_val, &ml, e, text, textbuf, 
+                       sizeof( textbuf ) );
 
-               /* FIXME: ldbm_modify_internal may set *tex = textbuf,
+               /* FIXME: ldbm_modify_internal may set *text = textbuf,
                 * which is BAD */
                if ( *text == textbuf ) {
                        *text = NULL;
@@ -162,9 +165,11 @@ ldbm_back_exop_passwd(
                        rc = LDAP_OTHER;
                }
 
-               replog( be, op, e->e_dn, &ml );
+               if( rc == LDAP_SUCCESS ) {
+                       replog( be, op, &e->e_name, &e->e_nname, &ml );
+               }
        }
-       
+
 done:
        if( e != NULL ) {
                cache_return_entry_w( &li->li_cache, e );
@@ -182,5 +187,9 @@ done:
                ber_bvfree( hash );
        }
 
+       if( ndn.bv_val != NULL ) {
+               free( ndn.bv_val );
+       }
+
        return rc;
 }