1 /* dbcache.c - manage cache of open databases */
2 /* $OpenLDAP: pkg/ldap/servers/slapd/back-bdb/dbcache.c,v 1.43.2.6 2008/02/11 23:26:45 kurt Exp $ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
5 * Copyright 2000-2008 The OpenLDAP Foundation.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted only as authorized by the OpenLDAP
12 * A copy of this license is available in the file LICENSE in the
13 * top-level directory of the distribution or, alternatively, at
14 * <http://www.OpenLDAP.org/license.html>.
22 #include <ac/socket.h>
23 #include <ac/string.h>
29 #include "lutil_hash.h"
31 #ifdef BDB_INDEX_USE_HASH
32 /* Pass-thru hash function. Since the indexer is already giving us hash
33 * values as keys, we don't need BDB to re-hash them.
43 unsigned char *dst
= (unsigned char *)&ret
;
44 const unsigned char *src
= (const unsigned char *)bytes
;
46 if ( length
> sizeof(u_int32_t
) )
47 length
= sizeof(u_int32_t
);
55 #define BDB_INDEXTYPE DB_HASH
57 #define BDB_INDEXTYPE DB_BTREE
68 struct bdb_info
*bdb
= (struct bdb_info
*) be
->be_private
;
69 struct bdb_db_info
*db
;
74 for( i
=BDB_NDB
; i
< bdb
->bi_ndatabases
; i
++ ) {
75 if( !ber_bvcmp( &bdb
->bi_databases
[i
]->bdi_name
, name
) ) {
76 *dbout
= bdb
->bi_databases
[i
]->bdi_db
;
81 ldap_pvt_thread_mutex_lock( &bdb
->bi_database_mutex
);
83 /* check again! may have been added by another thread */
84 for( i
=BDB_NDB
; i
< bdb
->bi_ndatabases
; i
++ ) {
85 if( !ber_bvcmp( &bdb
->bi_databases
[i
]->bdi_name
, name
) ) {
86 *dbout
= bdb
->bi_databases
[i
]->bdi_db
;
87 ldap_pvt_thread_mutex_unlock( &bdb
->bi_database_mutex
);
92 if( i
>= BDB_INDICES
) {
93 ldap_pvt_thread_mutex_unlock( &bdb
->bi_database_mutex
);
97 db
= (struct bdb_db_info
*) ch_calloc(1, sizeof(struct bdb_db_info
));
99 ber_dupbv( &db
->bdi_name
, name
);
101 rc
= db_create( &db
->bdi_db
, bdb
->bi_dbenv
, 0 );
103 Debug( LDAP_DEBUG_ANY
,
104 "bdb_db_cache: db_create(%s) failed: %s (%d)\n",
105 bdb
->bi_dbenv_home
, db_strerror(rc
), rc
);
106 ldap_pvt_thread_mutex_unlock( &bdb
->bi_database_mutex
);
111 if( !BER_BVISNULL( &bdb
->bi_db_crypt_key
)) {
112 rc
= db
->bdi_db
->set_flags( db
->bdi_db
, DB_ENCRYPT
);
114 Debug( LDAP_DEBUG_ANY
,
115 "bdb_db_cache: db set_flags(DB_ENCRYPT)(%s) failed: %s (%d)\n",
116 bdb
->bi_dbenv_home
, db_strerror(rc
), rc
);
117 ldap_pvt_thread_mutex_unlock( &bdb
->bi_database_mutex
);
118 db
->bdi_db
->close( db
->bdi_db
, 0 );
124 rc
= db
->bdi_db
->set_pagesize( db
->bdi_db
, BDB_PAGESIZE
);
125 #ifdef BDB_INDEX_USE_HASH
126 rc
= db
->bdi_db
->set_h_hash( db
->bdi_db
, bdb_db_hash
);
128 rc
= db
->bdi_db
->set_flags( db
->bdi_db
, DB_DUP
| DB_DUPSORT
);
130 file
= ch_malloc( db
->bdi_name
.bv_len
+ sizeof(BDB_SUFFIX
) );
131 strcpy( file
, db
->bdi_name
.bv_val
);
132 strcpy( file
+db
->bdi_name
.bv_len
, BDB_SUFFIX
);
137 flags
= DB_CREATE
| DB_THREAD
;
138 #ifdef DB_AUTO_COMMIT
139 if ( !( slapMode
& SLAP_TOOL_QUICK
))
140 flags
|= DB_AUTO_COMMIT
;
142 /* Cannot Truncate when Transactions are in use */
143 if ( (slapMode
& (SLAP_TOOL_QUICK
|SLAP_TRUNCATE_MODE
)) ==
144 (SLAP_TOOL_QUICK
|SLAP_TRUNCATE_MODE
))
145 flags
|= DB_TRUNCATE
;
147 rc
= DB_OPEN( db
->bdi_db
,
148 file
, NULL
/* name */,
149 BDB_INDEXTYPE
, bdb
->bi_db_opflags
| flags
, bdb
->bi_dbenv_mode
);
154 Debug( LDAP_DEBUG_ANY
,
155 "bdb_db_cache: db_open(%s) failed: %s (%d)\n",
156 name
->bv_val
, db_strerror(rc
), rc
);
157 ldap_pvt_thread_mutex_unlock( &bdb
->bi_database_mutex
);
161 bdb
->bi_databases
[i
] = db
;
162 bdb
->bi_ndatabases
= i
+1;
166 ldap_pvt_thread_mutex_unlock( &bdb
->bi_database_mutex
);