]> git.sur5r.net Git - openldap/commitdiff
Check for duplicate entries
authorKurt Zeilenga <kurt@openldap.org>
Wed, 6 Jun 2001 22:17:57 +0000 (22:17 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Wed, 6 Jun 2001 22:17:57 +0000 (22:17 +0000)
servers/slapd/back-ldbm/tools.c

index 4bae7a4c9ca07ef58749472b961664b98bc10e4f..5327af5a05ffd3dea5804ac5ab514c94ce50e549 100644 (file)
@@ -157,6 +157,7 @@ ID ldbm_tool_entry_put(
        struct ldbminfo *li = (struct ldbminfo *) be->be_private;
        Datum key, data;
        int rc, len;
+       ID id;
 
        assert( slapMode & SLAP_TOOL_MODE );
        assert( id2entry != NULL );
@@ -169,21 +170,33 @@ ID ldbm_tool_entry_put(
 
 #ifdef NEW_LOGGING
        LDAP_LOG(( "backend", LDAP_LEVEL_ENTRY,
-                  "ldbm_tool_entry_put: (%s)%ld\n", e->e_dn, e->e_id ));
+               "ldbm_tool_entry_put: (%s)%ld\n", e->e_dn, e->e_id ));
 #else
        Debug( LDAP_DEBUG_TRACE, "=> ldbm_tool_entry_put( %ld, \"%s\" )\n",
                e->e_id, e->e_dn, 0 );
 #endif
 
+       id = dn2id( be, e->e_ndn );
+       if( id != NOID ) {
+#ifdef NEW_LOGGING
+               LDAP_LOG(( "backend", LDAP_LEVEL_ENTRY,
+                       "ldbm_tool_entry_put: \"%s\" already exists (id=%ld)\n",
+                       e->e_dn, id ));
+#else
+               Debug( LDAP_DEBUG_TRACE,
+                       "<= ldbm_tool_entry_put: \"%s\" already exists (id=%ld)\n",
+                       e->e_ndn, id, 0 );
+#endif
+               return NOID;
+       }
 
-       rc = index_entry_add( be, e, e->e_attrs );
 
+       rc = index_entry_add( be, e, e->e_attrs );
        if( rc != 0 ) {
                return NOID;
        }
 
        rc = dn2id_add( be, e->e_ndn, e->e_id );
-
        if( rc != 0 ) {
                return NOID;
        }