]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/back-ldbm/id2entry.c
Removed unnecessary definition that is already in core.schema.
[openldap] / servers / slapd / back-ldbm / id2entry.c
index b2f0aebf8d7228ce34ace36139673e7aaea64e32..8c4d8b14095f1bcad2f5ce6989dfa0edc594b56a 100644 (file)
@@ -9,12 +9,10 @@
 #include "slap.h"
 #include "back-ldbm.h"
 
-extern struct dbcache  *ldbm_cache_open();
-extern Datum           ldbm_cache_fetch();
-extern char            *dn_parent();
-extern Entry           *str2entry();
-extern char            *entry2str();
-extern pthread_mutex_t entry2str_mutex;
+/*
+ * This routine adds (or updates) an entry on disk.
+ * The cache should already be updated. 
+ */
 
 int
 id2entry_add( Backend *be, Entry *e )
@@ -24,12 +22,10 @@ id2entry_add( Backend *be, Entry *e )
        Datum           key, data;
        int             len, rc, flags;
 
-#ifdef HAVE_BERKELEY_DB2
-       memset( &key, 0, sizeof( key ) );
-       memset( &data, 0, sizeof( data ) );
-#endif
+       ldbm_datum_init( key );
+       ldbm_datum_init( data );
 
-       Debug( LDAP_DEBUG_TRACE, "=> id2entry_add( %d, \"%s\" )\n", e->e_id,
+       Debug( LDAP_DEBUG_TRACE, "=> id2entry_add( %ld, \"%s\" )\n", e->e_id,
            e->e_dn, 0 );
 
        if ( (db = ldbm_cache_open( be, "id2entry", LDBM_SUFFIX, LDBM_WRCREAT ))
@@ -42,23 +38,21 @@ id2entry_add( Backend *be, Entry *e )
        key.dptr = (char *) &e->e_id;
        key.dsize = sizeof(ID);
 
-       pthread_mutex_lock( &entry2str_mutex );
+       ldap_pvt_thread_mutex_lock( &entry2str_mutex );
        data.dptr = entry2str( e, &len, 1 );
        data.dsize = len + 1;
 
        /* store it */
        flags = LDBM_REPLACE;
-       if ( li->li_flush_wrt ) flags |= LDBM_SYNC;
+       if ( li->li_dbcachewsync ) flags |= LDBM_SYNC;
        rc = ldbm_cache_store( db, key, data, flags );
 
-       pthread_mutex_unlock( &entry2str_mutex );
+       ldap_pvt_thread_mutex_unlock( &entry2str_mutex );
 
        ldbm_cache_close( be, db );
-       (void) cache_add_entry_lock( &li->li_cache, e, 0 );
 
        Debug( LDAP_DEBUG_TRACE, "<= id2entry_add %d\n", rc, 0, 0 );
 
-       /* XXX should entries be born locked, i.e. apply writer lock here? */
        return( rc );
 }
 
@@ -70,21 +64,18 @@ id2entry_delete( Backend *be, Entry *e )
        Datum           key;
        int             rc;
 
-       Debug( LDAP_DEBUG_TRACE, "=> id2entry_delete( %d, \"%s\" )\n", e->e_id,
+       Debug(LDAP_DEBUG_TRACE, "=> id2entry_delete( %ld, \"%s\" )\n", e->e_id,
            e->e_dn, 0 );
 
-       /* XXX - check for writer lock - should also check no reader pending */
-       assert(pthread_rdwr_wchk_np(&e->e_rdwr));
-
-#ifdef HAVE_BERKELEY_DB2
-       memset( &key, 0, sizeof( key ) );
+#ifdef notdef
+#ifdef LDAP_DEBUG
+       /* check for writer lock */
+       assert(ldap_pvt_thread_rdwr_writers(&e->e_rdwr) == 1);
+#endif
 #endif
 
-       /* XXX - check for writer lock - should also check no reader pending */
-       Debug (LDAP_DEBUG_TRACE,
-               "rdwr_Xchk: readers_reading: %d writer_writing: %d\n",
-               e->e_rdwr.readers_reading, e->e_rdwr.writer_writing, 0);
+       ldbm_datum_init( key );
+
        if ( (db = ldbm_cache_open( be, "id2entry", LDBM_SUFFIX, LDBM_WRCREAT ))
                == NULL ) {
                Debug( LDAP_DEBUG_ANY, "Could not open/create id2entry%s\n",
@@ -93,7 +84,7 @@ id2entry_delete( Backend *be, Entry *e )
        }
 
        if ( cache_delete_entry( &li->li_cache, e ) != 0 ) {
-               Debug( LDAP_DEBUG_ANY, "could not delete %d (%s) from cache\n",
+               Debug(LDAP_DEBUG_ANY, "could not delete %ld (%s) from cache\n",
                    e->e_id, e->e_dn, 0 );
        }
 
@@ -108,26 +99,24 @@ id2entry_delete( Backend *be, Entry *e )
        return( rc );
 }
 
-/* XXX returns entry with reader/writer lock */
+/* returns entry with reader/writer lock */
 Entry *
-id2entry( Backend *be, ID id, int rw )
+id2entry_rw( Backend *be, ID id, int rw )
 {
        struct ldbminfo *li = (struct ldbminfo *) be->be_private;
        struct dbcache  *db;
        Datum           key, data;
        Entry           *e;
 
-#ifdef HAVE_BERKELEY_DB2
-       memset( &key, 0, sizeof( key ) );
-       memset( &data, 0, sizeof( data ) );
-#endif
+       ldbm_datum_init( key );
+       ldbm_datum_init( data );
 
        Debug( LDAP_DEBUG_TRACE, "=> id2entry_%s( %ld )\n",
                rw ? "w" : "r", id, 0 );
 
        if ( (e = cache_find_entry_id( &li->li_cache, id, rw )) != NULL ) {
-               Debug( LDAP_DEBUG_TRACE, "<= id2entry_%s 0x%x (cache)\n",
-                       rw ? "w" : "r", e, 0 );
+               Debug( LDAP_DEBUG_TRACE, "<= id2entry_%s( %ld ) 0x%lx (cache)\n",
+                       rw ? "w" : "r", id, (unsigned long) e );
                return( e );
        }
 
@@ -156,35 +145,38 @@ id2entry( Backend *be, ID id, int rw )
        ldbm_cache_close( be, db );
 
        if ( e == NULL ) {
-               Debug( LDAP_DEBUG_TRACE, "<= id2entry_%s( %ld )  (failed)\n",
+               Debug( LDAP_DEBUG_TRACE, "<= id2entry_%s( %ld ) (failed)\n",
                        rw ? "w" : "r", id, 0 );
                return( NULL );
        }
 
-       /* acquire required reader/writer lock */
-       if (entry_rdwr_lock(e, rw)) {
-               /* XXX set DELETE flag?? */
-               entry_free(e);
-               return(NULL);
+       if ( e->e_id != id ) {
+               Debug( LDAP_DEBUG_TRACE, "<= id2entry_%s( %ld ) (wrong id %ld on disk)\n",
+                       rw ? "w" : "r", id, e->e_id );
+               entry_free( e );
+               return( NULL );
        }
 
-       e->e_id = id;
-       (void) cache_add_entry_lock( &li->li_cache, e, 0 );
+       if( cache_add_entry_rw( &li->li_cache, e, rw ) != 0 ) {
+               entry_free( e );
 
-       Debug( LDAP_DEBUG_TRACE, "<= id2entry_%s( %ld ) (disk)\n",
-               rw ? "w" : "r", id, 0 );
-       return( e );
-}
+               /* XXX this is a kludge.
+                * maybe the entry got added underneath us
+                * There are many underlying race condtions in the cache/disk code.
+                */
+               if ( (e = cache_find_entry_id( &li->li_cache, id, rw )) != NULL ) {
+                       Debug( LDAP_DEBUG_TRACE, "<= id2entry_%s( %ld ) 0x%lx (cache)\n",
+                               rw ? "w" : "r", id, (unsigned long) e );
+                       return( e );
+               }
 
-Entry *
-id2entry_r( Backend *be, ID id )
-{
-       return( id2entry( be, id, 0 ) );
-}
+               Debug( LDAP_DEBUG_TRACE, "<= id2entry_%s( %ld ) (cache add failed)\n",
+                       rw ? "w" : "r", id, 0 );
+               return NULL;
+       }
 
-Entry *
-id2entry_2( Backend *be, ID id )
-{
-       return( id2entry( be, id, 1 ) );
-}
+       Debug( LDAP_DEBUG_TRACE, "<= id2entry_%s( %ld ) 0x%lx (disk)\n",
+               rw ? "w" : "r", id, (unsigned long) e );
 
+       return( e );
+}