]> git.sur5r.net Git - openldap/blob - servers/slapd/back-bdb/dbcache.c
Add debug if bdb_cache_entry_db_lock fails to get a lock
[openldap] / servers / slapd / back-bdb / dbcache.c
1 /* dbcache.c - manage cache of open databases */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved.
5  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
6  */
7
8 #include "portable.h"
9
10 #include <stdio.h>
11
12 #include <ac/errno.h>
13 #include <ac/socket.h>
14 #include <ac/string.h>
15 #include <ac/time.h>
16 #include <sys/stat.h>
17
18 #include "slap.h"
19 #include "back-bdb.h"
20 #include "lutil_hash.h"
21
22 /* Pass-thru hash function. Since the indexer is already giving us hash
23  * values as keys, we don't need BDB to re-hash them.
24  */
25 static u_int32_t
26 bdb_db_hash(
27         DB *db,
28         const void *bytes,
29         u_int32_t length
30 )
31 {
32         u_int32_t ret = 0;
33         unsigned char *dst = (unsigned char *)&ret;
34         const unsigned char *src = (const unsigned char *)bytes;
35
36         if ( length > sizeof(u_int32_t) )
37                 length = sizeof(u_int32_t);
38
39         while ( length ) {
40                 *dst++ = *src++;
41                 length--;
42         }
43         return ret;
44 }
45
46 int
47 bdb_db_cache(
48         Backend *be,
49         const char *name,
50         DB **dbout )
51 {
52         int i;
53         int rc;
54         struct bdb_info *bdb = (struct bdb_info *) be->be_private;
55         struct bdb_db_info *db;
56         char *file;
57
58         *dbout = NULL;
59
60         for( i=BDB_NDB; bdb->bi_databases[i]; i++ ) {
61                 if( !strcmp( bdb->bi_databases[i]->bdi_name, name) ) {
62                         *dbout = bdb->bi_databases[i]->bdi_db;
63                         return 0;
64                 }
65         }
66
67         ldap_pvt_thread_mutex_lock( &bdb->bi_database_mutex );
68
69         /* check again! may have been added by another thread */
70         for( i=BDB_NDB; bdb->bi_databases[i]; i++ ) {
71                 if( !strcmp( bdb->bi_databases[i]->bdi_name, name) ) {
72                         *dbout = bdb->bi_databases[i]->bdi_db;
73                         ldap_pvt_thread_mutex_unlock( &bdb->bi_database_mutex );
74                         return 0;
75                 }
76         }
77
78         if( i >= BDB_INDICES ) {
79                 ldap_pvt_thread_mutex_unlock( &bdb->bi_database_mutex );
80                 return -1;
81         }
82
83         db = (struct bdb_db_info *) ch_calloc(1, sizeof(struct bdb_db_info));
84
85         db->bdi_name = ch_strdup( name );
86
87         rc = db_create( &db->bdi_db, bdb->bi_dbenv, 0 );
88         if( rc != 0 ) {
89 #ifdef NEW_LOGGING
90                 LDAP_LOG ( CACHE, ERR, 
91                         "bdb_db_cache: db_create(%s) failed: %s (%d)\n", 
92                         bdb->bi_dbenv_home, db_strerror(rc), rc );
93 #else
94                 Debug( LDAP_DEBUG_ANY,
95                         "bdb_db_cache: db_create(%s) failed: %s (%d)\n",
96                         bdb->bi_dbenv_home, db_strerror(rc), rc );
97 #endif
98                 ldap_pvt_thread_mutex_unlock( &bdb->bi_database_mutex );
99                 return rc;
100         }
101
102         rc = db->bdi_db->set_pagesize( db->bdi_db, BDB_PAGESIZE );
103         rc = db->bdi_db->set_h_hash( db->bdi_db, bdb_db_hash );
104 #ifdef BDB_IDL_MULTI
105         rc = db->bdi_db->set_flags( db->bdi_db, DB_DUP | DB_DUPSORT );
106         rc = db->bdi_db->set_dup_compare( db->bdi_db, bdb_bt_compare );
107 #endif
108
109         file = ch_malloc( strlen( name ) + sizeof(BDB_SUFFIX) );
110         sprintf( file, "%s" BDB_SUFFIX, name );
111
112 #ifdef HAVE_EBCDIC
113         __atoe( file );
114 #endif
115         rc = DB_OPEN( db->bdi_db,
116                 file, name,
117                 DB_HASH, bdb->bi_db_opflags | DB_CREATE | DB_THREAD,
118                 bdb->bi_dbenv_mode );
119
120         ch_free( file );
121
122         if( rc != 0 ) {
123 #ifdef NEW_LOGGING
124                 LDAP_LOG ( CACHE, ERR, 
125                         "bdb_db_cache: db_open(%s) failed: %s (%d)\n", 
126                         name, db_strerror(rc), rc );
127 #else
128                 Debug( LDAP_DEBUG_ANY,
129                         "bdb_db_cache: db_open(%s) failed: %s (%d)\n",
130                         name, db_strerror(rc), rc );
131 #endif
132                 ldap_pvt_thread_mutex_unlock( &bdb->bi_database_mutex );
133                 return rc;
134         }
135
136         bdb->bi_databases[i+1] = NULL;
137         bdb->bi_databases[i] = db;
138         bdb->bi_ndatabases = i+1;
139
140         *dbout = db->bdi_db;
141
142         ldap_pvt_thread_mutex_unlock( &bdb->bi_database_mutex );
143         return 0;
144 }