]> git.sur5r.net Git - openldap/blob - servers/slapd/back-bdb/id2entry.c
#unifdef -DSLAP_NVALUES_ON_DISK
[openldap] / servers / slapd / back-bdb / id2entry.c
1 /* id2entry.c - routines to deal with the id2entry database */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 1998-2003 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 #include <ac/string.h>
12
13 #include "back-bdb.h"
14
15 int bdb_id2entry_put(
16         BackendDB *be,
17         DB_TXN *tid,
18         Entry *e,
19         int flag )
20 {
21         struct bdb_info *bdb = (struct bdb_info *) be->be_private;
22         DB *db = bdb->bi_id2entry->bdi_db;
23         DBT key, data;
24         struct berval bv;
25         int rc;
26 #ifdef BDB_HIER
27         struct berval odn, ondn;
28
29         /* We only store rdns, and they go in the id2parent database. */
30
31         odn = e->e_name; ondn = e->e_nname;
32
33         e->e_name = slap_empty_bv;
34         e->e_nname = slap_empty_bv;
35 #endif
36         DBTzero( &key );
37         key.data = (char *) &e->e_id;
38         key.size = sizeof(ID);
39
40         rc = entry_encode( e, &bv );
41 #ifdef BDB_HIER
42         e->e_name = odn; e->e_nname = ondn;
43 #endif
44         if( rc != LDAP_SUCCESS ) {
45                 return -1;
46         }
47
48         DBTzero( &data );
49         bv2DBT( &bv, &data );
50
51         rc = db->put( db, tid, &key, &data, flag );
52
53         free( bv.bv_val );
54         return rc;
55 }
56
57 /*
58  * This routine adds (or updates) an entry on disk.
59  * The cache should be already be updated.
60  */
61
62
63 int bdb_id2entry_add(
64         BackendDB *be,
65         DB_TXN *tid,
66         Entry *e )
67 {
68         return bdb_id2entry_put(be, tid, e, DB_NOOVERWRITE);
69 }
70
71 int bdb_id2entry_update(
72         BackendDB *be,
73         DB_TXN *tid,
74         Entry *e )
75 {
76         return bdb_id2entry_put(be, tid, e, 0);
77 }
78
79 int bdb_id2entry_rw(
80         BackendDB *be,
81         DB_TXN *tid,
82         ID id,
83         Entry **e,
84         int rw,
85         u_int32_t locker,
86         DB_LOCK *lock )
87 {
88         struct bdb_info *bdb = (struct bdb_info *) be->be_private;
89         DB *db = bdb->bi_id2entry->bdi_db;
90         DBT key, data;
91         struct berval bv;
92         int rc = 0, ret = 0;
93
94         *e = NULL;
95
96         DBTzero( &key );
97         key.data = (char *) &id;
98         key.size = sizeof(ID);
99
100         DBTzero( &data );
101         data.flags = DB_DBT_MALLOC;
102
103         if ((*e = bdb_cache_find_entry_id(bdb->bi_dbenv, &bdb->bi_cache, id, rw, locker, lock)) != NULL) {
104                 return 0;
105         }
106
107         /* fetch it */
108         rc = db->get( db, tid, &key, &data, bdb->bi_db_opflags | ( rw ? DB_RMW : 0 ));
109
110         if( rc != 0 ) {
111                 return rc;
112         }
113
114         DBT2bv( &data, &bv );
115
116         rc = entry_decode( &bv, e );
117
118         if( rc == 0 ) {
119                 (*e)->e_id = id;
120         } else {
121                 /* only free on error. On success, the entry was
122                  * decoded in place.
123                  */
124                 ch_free( data.data );
125         }
126
127         if ( rc == 0 ) {
128 #ifdef BDB_HIER
129                 bdb_fix_dn(be, id, *e);
130 #endif
131                 ret = bdb_cache_add_entry_rw( bdb->bi_dbenv,
132                                 &bdb->bi_cache, *e, rw, locker, lock);
133                 while ( ret == 1 || ret == -1 ) {
134                         Entry *ee;
135                         int add_loop_cnt = 0;
136                         if ( (*e)->e_private != NULL ) {
137                                 free ((*e)->e_private);
138                         }
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 );
143                                 *e = ee;
144                                 return 0;
145                         }
146                         if ( ++add_loop_cnt == BDB_MAX_ADD_LOOP ) {
147                                 bdb_entry_return ( *e );
148                                 *e = NULL;
149                                 return LDAP_BUSY;
150                         }
151                 }
152                 if ( ret != 0 ) {
153                         if ( (*e)->e_private != NULL )
154                                 free ( (*e)->e_private );
155                         bdb_entry_return( *e );
156                         *e = NULL;
157                 }
158                 rc = ret;
159         }
160
161         if (rc == 0) {
162                 bdb_cache_entry_commit(*e);
163         }
164
165         return rc;
166 }
167
168 int bdb_id2entry_delete(
169         BackendDB *be,
170         DB_TXN *tid,
171         Entry *e )
172 {
173         struct bdb_info *bdb = (struct bdb_info *) be->be_private;
174         DB *db = bdb->bi_id2entry->bdi_db;
175         DBT key;
176         int rc;
177
178         bdb_cache_delete_entry(&bdb->bi_cache, e);
179
180         DBTzero( &key );
181         key.data = (char *) &e->e_id;
182         key.size = sizeof(ID);
183
184         /* delete from database */
185         rc = db->del( db, tid, &key, 0 );
186
187         return rc;
188 }
189
190 int bdb_entry_return(
191         Entry *e )
192 {
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
199          * to free e_attrs.
200          */
201         if( !e->e_bv.bv_val ) { /* A regular entry, from do_add */
202                 entry_free( e );
203                 return 0;
204         }
205         if( (void *) e->e_attrs != (void *) (e+1)) {
206                 attrs_free( e->e_attrs );
207         }
208
209 #ifndef BDB_HIER
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;
217         }
218 #else
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 );
222         }
223 #endif
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 );
227         }
228
229         free( e );
230
231         return 0;
232 }
233
234 int bdb_entry_release(
235         Operation *o,
236         Entry *e,
237         int rw )
238 {
239         struct bdb_info *bdb = (struct bdb_info *) o->o_bd->be_private;
240         struct bdb_op_info *boi = NULL;
241  
242         /* slapMode : SLAP_SERVER_MODE, SLAP_TOOL_MODE,
243                         SLAP_TRUNCATE_MODE, SLAP_UNDEFINED_MODE */
244  
245         if ( slapMode == SLAP_SERVER_MODE ) {
246                 /* free entry and reader or writer lock */
247                 if ( o ) {
248                         boi = (struct bdb_op_info *)o->o_private;
249                 }
250                 /* lock is freed with txn */
251                 if ( !boi || boi->boi_txn ) {
252                         bdb_unlocked_cache_return_entry_rw( &bdb->bi_cache, e, rw );
253                 } else {
254                         bdb_cache_return_entry_rw( bdb->bi_dbenv, &bdb->bi_cache, e, rw, &boi->boi_lock );
255                         ch_free( boi );
256                         o->o_private = NULL;
257                 }
258         } else {
259                 if (e->e_private != NULL)
260                         free (e->e_private);
261                 e->e_private = NULL;
262                 bdb_entry_return ( e );
263         }
264  
265         return 0;
266 }
267
268 /* return LDAP_SUCCESS IFF we can retrieve the specified entry.
269  */
270 int bdb_entry_get(
271         Operation *op,
272         struct berval *ndn,
273         ObjectClass *oc,
274         AttributeDescription *at,
275         int rw,
276         Entry **ent )
277 {
278         struct bdb_info *bdb = (struct bdb_info *) op->o_bd->be_private;
279         struct bdb_op_info *boi = NULL;
280         DB_TXN *txn = NULL;
281         Entry *e;
282         int     rc;
283         const char *at_name = at->ad_cname.bv_val;
284
285         u_int32_t       locker = 0;
286         DB_LOCK         lock;
287         int             free_lock_id = 0;
288
289 #ifdef NEW_LOGGING
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);
295 #else
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);
301 #endif
302
303         if( op ) boi = (struct bdb_op_info *) op->o_private;
304         if( boi != NULL && op->o_bd == boi->boi_bdb ) {
305                 txn = boi->boi_txn;
306                 locker = boi->boi_locker;
307         }
308
309         if ( txn != NULL ) {
310                 locker = TXN_ID ( txn );
311         } else if ( !locker ) {
312                 rc = LOCK_ID ( bdb->bi_dbenv, &locker );
313                 free_lock_id = 1;
314                 switch(rc) {
315                 case 0:
316                         break;
317                 default:
318                         return LDAP_OTHER;
319                 }
320         }
321
322 dn2entry_retry:
323         /* can we find entry */
324         rc = bdb_dn2entry_rw( op->o_bd, txn, ndn, &e, NULL, 0, rw, locker, &lock );
325         switch( rc ) {
326         case DB_NOTFOUND:
327         case 0:
328                 break;
329         case DB_LOCK_DEADLOCK:
330         case DB_LOCK_NOTGRANTED:
331                 /* the txn must abort and retry */
332                 if ( txn ) {
333                         boi->boi_err = rc;
334                         return LDAP_BUSY;
335                 }
336                 ldap_pvt_thread_yield();
337                 goto dn2entry_retry;
338         default:
339                 boi->boi_err = rc;
340                 if ( free_lock_id ) {
341                         LOCK_ID_FREE( bdb->bi_dbenv, locker );
342                 }
343                 return (rc != LDAP_BUSY) ? LDAP_OTHER : LDAP_BUSY;
344         }
345         if (e == NULL) {
346 #ifdef NEW_LOGGING
347                 LDAP_LOG( BACK_BDB, INFO, 
348                         "bdb_entry_get: cannot find entry (%s)\n", 
349                         ndn->bv_val, 0, 0 );
350 #else
351                 Debug( LDAP_DEBUG_ACL,
352                         "=> bdb_entry_get: cannot find entry: \"%s\"\n",
353                                 ndn->bv_val, 0, 0 ); 
354 #endif
355                 if ( free_lock_id ) {
356                         LOCK_ID_FREE( bdb->bi_dbenv, locker );
357                 }
358                 return LDAP_NO_SUCH_OBJECT; 
359         }
360         
361 #ifdef NEW_LOGGING
362         LDAP_LOG( BACK_BDB, DETAIL1, "bdb_entry_get: found entry (%s)\n",
363                 ndn->bv_val, 0, 0 );
364 #else
365         Debug( LDAP_DEBUG_ACL,
366                 "=> bdb_entry_get: found entry: \"%s\"\n",
367                 ndn->bv_val, 0, 0 ); 
368 #endif
369
370 #ifdef BDB_ALIASES
371         /* find attribute values */
372         if( is_entry_alias( e ) ) {
373 #ifdef NEW_LOGGING
374                 LDAP_LOG( BACK_BDB, INFO, 
375                         "bdb_entry_get: entry (%s) is an alias\n", e->e_name.bv_val, 0, 0 );
376 #else
377                 Debug( LDAP_DEBUG_ACL,
378                         "<= bdb_entry_get: entry is an alias\n", 0, 0, 0 );
379 #endif
380                 rc = LDAP_ALIAS_PROBLEM;
381                 goto return_results;
382         }
383 #endif
384
385         if( is_entry_referral( e ) ) {
386 #ifdef NEW_LOGGING
387                 LDAP_LOG( BACK_BDB, INFO, 
388                         "bdb_entry_get: entry (%s) is a referral.\n", e->e_name.bv_val, 0, 0);
389 #else
390                 Debug( LDAP_DEBUG_ACL,
391                         "<= bdb_entry_get: entry is a referral\n", 0, 0, 0 );
392 #endif
393                 rc = LDAP_REFERRAL;
394                 goto return_results;
395         }
396
397         if ( oc && !is_entry_objectclass( e, oc, 0 )) {
398 #ifdef NEW_LOGGING
399                 LDAP_LOG( BACK_BDB, INFO, 
400                         "bdb_entry_get: failed to find objectClass.\n", 0, 0, 0 );
401 #else
402                 Debug( LDAP_DEBUG_ACL,
403                         "<= bdb_entry_get: failed to find objectClass\n",
404                         0, 0, 0 ); 
405 #endif
406                 rc = LDAP_NO_SUCH_ATTRIBUTE;
407                 goto return_results;
408         }
409
410 return_results:
411         if( rc != LDAP_SUCCESS ) {
412                 /* free entry */
413                 bdb_cache_return_entry_rw(bdb->bi_dbenv, &bdb->bi_cache, e, rw, &lock);
414         } else {
415                 *ent = e;
416                 /* big drag. we need a place to store a read lock so we can
417                  * release it later??
418                  */
419                 if ( op && !boi ) {
420                         boi = ch_calloc(1,sizeof(struct bdb_op_info));
421                         boi->boi_lock = lock;
422                         op->o_private = boi;
423                 }
424         }
425
426         if ( free_lock_id ) {
427                 LOCK_ID_FREE( bdb->bi_dbenv, locker );
428         }
429
430 #ifdef NEW_LOGGING
431         LDAP_LOG( BACK_BDB, ENTRY, "bdb_entry_get: rc=%d\n", rc, 0, 0 );
432 #else
433         Debug( LDAP_DEBUG_TRACE,
434                 "bdb_entry_get: rc=%d\n",
435                 rc, 0, 0 ); 
436 #endif
437         return(rc);
438 }