1 /* id2entry.c - routines to deal with the id2entry database */
4 * Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
5 * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
11 #include <ac/string.h>
21 struct bdb_info *bdb = (struct bdb_info *) be->be_private;
22 DB *db = bdb->bi_id2entry->bdi_db;
27 struct berval odn, ondn;
29 /* We only store rdns, and they go in the id2parent database. */
31 odn = e->e_name; ondn = e->e_nname;
33 e->e_name = slap_empty_bv;
34 e->e_nname = slap_empty_bv;
37 key.data = (char *) &e->e_id;
38 key.size = sizeof(ID);
40 rc = entry_encode( e, &bv );
42 e->e_name = odn; e->e_nname = ondn;
44 if( rc != LDAP_SUCCESS ) {
51 rc = db->put( db, tid, &key, &data, flag );
58 * This routine adds (or updates) an entry on disk.
59 * The cache should be already be updated.
68 return bdb_id2entry_put(be, tid, e, DB_NOOVERWRITE);
71 int bdb_id2entry_update(
76 return bdb_id2entry_put(be, tid, e, 0);
88 struct bdb_info *bdb = (struct bdb_info *) be->be_private;
89 DB *db = bdb->bi_id2entry->bdi_db;
97 key.data = (char *) &id;
98 key.size = sizeof(ID);
101 data.flags = DB_DBT_MALLOC;
103 if ((*e = bdb_cache_find_entry_id(bdb->bi_dbenv, &bdb->bi_cache, id, rw, locker, lock)) != NULL) {
108 rc = db->get( db, tid, &key, &data, bdb->bi_db_opflags | ( rw ? DB_RMW : 0 ));
114 DBT2bv( &data, &bv );
116 rc = entry_decode( &bv, e );
121 /* only free on error. On success, the entry was
124 ch_free( data.data );
129 bdb_fix_dn(be, id, *e);
131 ret = bdb_cache_add_entry_rw( bdb->bi_dbenv,
132 &bdb->bi_cache, *e, rw, locker, lock);
133 while ( ret == 1 || ret == -1 ) {
135 int add_loop_cnt = 0;
136 if ( (*e)->e_private != NULL ) {
137 free ((*e)->e_private);
139 (*e)->e_private = NULL;
140 if ( (ee = bdb_cache_find_entry_id
141 (bdb->bi_dbenv, &bdb->bi_cache, id, rw, locker, lock) ) != NULL) {
142 bdb_entry_return ( *e );
146 if ( ++add_loop_cnt == BDB_MAX_ADD_LOOP ) {
147 bdb_entry_return ( *e );
153 if ( (*e)->e_private != NULL )
154 free ( (*e)->e_private );
155 bdb_entry_return( *e );
162 bdb_cache_entry_commit(*e);
168 int bdb_id2entry_delete(
173 struct bdb_info *bdb = (struct bdb_info *) be->be_private;
174 DB *db = bdb->bi_id2entry->bdi_db;
178 bdb_cache_delete_entry(&bdb->bi_cache, e);
181 key.data = (char *) &e->e_id;
182 key.size = sizeof(ID);
184 /* delete from database */
185 rc = db->del( db, tid, &key, 0 );
190 int bdb_entry_return(
193 /* Our entries are allocated in two blocks; the data comes from
194 * the db itself and the Entry structure and associated pointers
195 * are allocated in entry_decode. The db data pointer is saved
196 * in e_bv. Since the Entry structure is allocated as a single
197 * block, e_attrs is always a fixed offset from e. The exception
198 * is when an entry has been modified, in which case we also need
201 if( !e->e_bv.bv_val ) { /* A regular entry, from do_add */
205 if( (void *) e->e_attrs != (void *) (e+1)) {
206 attrs_free( e->e_attrs );
210 /* See if the DNs were changed by modrdn */
211 if( e->e_nname.bv_val < e->e_bv.bv_val || e->e_nname.bv_val >
212 e->e_bv.bv_val + e->e_bv.bv_len ) {
213 ch_free(e->e_name.bv_val);
214 ch_free(e->e_nname.bv_val);
215 e->e_name.bv_val = NULL;
216 e->e_nname.bv_val = NULL;
219 /* We had to construct the dn and ndn as well, in a single block */
220 if( e->e_name.bv_val ) {
221 free( e->e_name.bv_val );
224 /* In tool mode the e_bv buffer is realloc'd, leave it alone */
225 if( !(slapMode & SLAP_TOOL_MODE) ) {
226 free( e->e_bv.bv_val );
234 int bdb_entry_release(
239 struct bdb_info *bdb = (struct bdb_info *) o->o_bd->be_private;
240 struct bdb_op_info *boi = NULL;
242 /* slapMode : SLAP_SERVER_MODE, SLAP_TOOL_MODE,
243 SLAP_TRUNCATE_MODE, SLAP_UNDEFINED_MODE */
245 if ( slapMode == SLAP_SERVER_MODE ) {
246 /* free entry and reader or writer lock */
248 boi = (struct bdb_op_info *)o->o_private;
250 /* lock is freed with txn */
251 if ( !boi || boi->boi_txn ) {
252 bdb_unlocked_cache_return_entry_rw( &bdb->bi_cache, e, rw );
254 bdb_cache_return_entry_rw( bdb->bi_dbenv, &bdb->bi_cache, e, rw, &boi->boi_lock );
259 if (e->e_private != NULL)
262 bdb_entry_return ( e );
268 /* return LDAP_SUCCESS IFF we can retrieve the specified entry.
274 AttributeDescription *at,
278 struct bdb_info *bdb = (struct bdb_info *) op->o_bd->be_private;
279 struct bdb_op_info *boi = NULL;
283 const char *at_name = at->ad_cname.bv_val;
285 u_int32_t locker = 0;
287 int free_lock_id = 0;
290 LDAP_LOG( BACK_BDB, ARGS,
291 "bdb_entry_get: ndn: \"%s\"\n", ndn->bv_val, 0, 0 );
292 LDAP_LOG( BACK_BDB, ARGS,
293 "bdb_entry_get: oc: \"%s\", at: \"%s\"\n",
294 oc ? oc->soc_cname.bv_val : "(null)", at_name, 0);
296 Debug( LDAP_DEBUG_ARGS,
297 "=> bdb_entry_get: ndn: \"%s\"\n", ndn->bv_val, 0, 0 );
298 Debug( LDAP_DEBUG_ARGS,
299 "=> bdb_entry_get: oc: \"%s\", at: \"%s\"\n",
300 oc ? oc->soc_cname.bv_val : "(null)", at_name, 0);
303 if( op ) boi = (struct bdb_op_info *) op->o_private;
304 if( boi != NULL && op->o_bd == boi->boi_bdb ) {
306 locker = boi->boi_locker;
310 locker = TXN_ID ( txn );
311 } else if ( !locker ) {
312 rc = LOCK_ID ( bdb->bi_dbenv, &locker );
323 /* can we find entry */
324 rc = bdb_dn2entry_rw( op->o_bd, txn, ndn, &e, NULL, 0, rw, locker, &lock );
329 case DB_LOCK_DEADLOCK:
330 case DB_LOCK_NOTGRANTED:
331 /* the txn must abort and retry */
336 ldap_pvt_thread_yield();
340 if ( free_lock_id ) {
341 LOCK_ID_FREE( bdb->bi_dbenv, locker );
343 return (rc != LDAP_BUSY) ? LDAP_OTHER : LDAP_BUSY;
347 LDAP_LOG( BACK_BDB, INFO,
348 "bdb_entry_get: cannot find entry (%s)\n",
351 Debug( LDAP_DEBUG_ACL,
352 "=> bdb_entry_get: cannot find entry: \"%s\"\n",
355 if ( free_lock_id ) {
356 LOCK_ID_FREE( bdb->bi_dbenv, locker );
358 return LDAP_NO_SUCH_OBJECT;
362 LDAP_LOG( BACK_BDB, DETAIL1, "bdb_entry_get: found entry (%s)\n",
365 Debug( LDAP_DEBUG_ACL,
366 "=> bdb_entry_get: found entry: \"%s\"\n",
371 /* find attribute values */
372 if( is_entry_alias( e ) ) {
374 LDAP_LOG( BACK_BDB, INFO,
375 "bdb_entry_get: entry (%s) is an alias\n", e->e_name.bv_val, 0, 0 );
377 Debug( LDAP_DEBUG_ACL,
378 "<= bdb_entry_get: entry is an alias\n", 0, 0, 0 );
380 rc = LDAP_ALIAS_PROBLEM;
385 if( is_entry_referral( e ) ) {
387 LDAP_LOG( BACK_BDB, INFO,
388 "bdb_entry_get: entry (%s) is a referral.\n", e->e_name.bv_val, 0, 0);
390 Debug( LDAP_DEBUG_ACL,
391 "<= bdb_entry_get: entry is a referral\n", 0, 0, 0 );
397 if ( oc && !is_entry_objectclass( e, oc, 0 )) {
399 LDAP_LOG( BACK_BDB, INFO,
400 "bdb_entry_get: failed to find objectClass.\n", 0, 0, 0 );
402 Debug( LDAP_DEBUG_ACL,
403 "<= bdb_entry_get: failed to find objectClass\n",
406 rc = LDAP_NO_SUCH_ATTRIBUTE;
411 if( rc != LDAP_SUCCESS ) {
413 bdb_cache_return_entry_rw(bdb->bi_dbenv, &bdb->bi_cache, e, rw, &lock);
416 /* big drag. we need a place to store a read lock so we can
420 boi = ch_calloc(1,sizeof(struct bdb_op_info));
421 boi->boi_lock = lock;
426 if ( free_lock_id ) {
427 LOCK_ID_FREE( bdb->bi_dbenv, locker );
431 LDAP_LOG( BACK_BDB, ENTRY, "bdb_entry_get: rc=%d\n", rc, 0, 0 );
433 Debug( LDAP_DEBUG_TRACE,
434 "bdb_entry_get: rc=%d\n",