]> git.sur5r.net Git - openldap/blob - servers/slapd/back-bdb/id2entry.c
Fix ITS#3424
[openldap] / servers / slapd / back-bdb / id2entry.c
1 /* id2entry.c - routines to deal with the id2entry database */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 2000-2004 The OpenLDAP Foundation.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted only as authorized by the OpenLDAP
10  * Public License.
11  *
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>.
15  */
16
17 #include "portable.h"
18
19 #include <stdio.h>
20 #include <ac/string.h>
21
22 #include "back-bdb.h"
23
24 static int bdb_id2entry_put(
25         BackendDB *be,
26         DB_TXN *tid,
27         Entry *e,
28         int flag )
29 {
30         struct bdb_info *bdb = (struct bdb_info *) be->be_private;
31         DB *db = bdb->bi_id2entry->bdi_db;
32         DBT key, data;
33         struct berval bv;
34         int rc;
35         ID nid;
36 #ifdef BDB_HIER
37         struct berval odn, ondn;
38
39         /* We only store rdns, and they go in the dn2id database. */
40
41         odn = e->e_name; ondn = e->e_nname;
42
43         e->e_name = slap_empty_bv;
44         e->e_nname = slap_empty_bv;
45 #endif
46         DBTzero( &key );
47
48         /* Store ID in BigEndian format */
49         key.data = &nid;
50         key.size = sizeof(ID);
51         BDB_ID2DISK( e->e_id, &nid );
52
53         rc = entry_encode( e, &bv );
54 #ifdef BDB_HIER
55         e->e_name = odn; e->e_nname = ondn;
56 #endif
57         if( rc != LDAP_SUCCESS ) {
58                 return -1;
59         }
60
61         DBTzero( &data );
62         bv2DBT( &bv, &data );
63
64         rc = db->put( db, tid, &key, &data, flag );
65
66         free( bv.bv_val );
67         return rc;
68 }
69
70 /*
71  * This routine adds (or updates) an entry on disk.
72  * The cache should be already be updated.
73  */
74
75
76 int bdb_id2entry_add(
77         BackendDB *be,
78         DB_TXN *tid,
79         Entry *e )
80 {
81         return bdb_id2entry_put(be, tid, e, DB_NOOVERWRITE);
82 }
83
84 int bdb_id2entry_update(
85         BackendDB *be,
86         DB_TXN *tid,
87         Entry *e )
88 {
89         return bdb_id2entry_put(be, tid, e, 0);
90 }
91
92 int bdb_id2entry(
93         BackendDB *be,
94         DB_TXN *tid,
95         ID id,
96         Entry **e )
97 {
98         struct bdb_info *bdb = (struct bdb_info *) be->be_private;
99         DB *db = bdb->bi_id2entry->bdi_db;
100         DBT key, data;
101         struct berval bv;
102         int rc = 0, ret = 0;
103         ID nid;
104
105         *e = NULL;
106
107         DBTzero( &key );
108         key.data = &nid;
109         key.size = sizeof(ID);
110         BDB_ID2DISK( id, &nid );
111
112         DBTzero( &data );
113         data.flags = DB_DBT_MALLOC;
114
115         /* fetch it */
116         rc = db->get( db, tid, &key, &data, bdb->bi_db_opflags );
117
118         if( rc != 0 ) {
119                 return rc;
120         }
121
122         DBT2bv( &data, &bv );
123
124         rc = entry_decode( &bv, e );
125
126         if( rc == 0 ) {
127                 (*e)->e_id = id;
128         } else {
129                 /* only free on error. On success, the entry was
130                  * decoded in place.
131                  */
132                 ch_free( data.data );
133         }
134
135         return rc;
136 }
137
138 int bdb_id2entry_delete(
139         BackendDB *be,
140         DB_TXN *tid,
141         Entry *e )
142 {
143         struct bdb_info *bdb = (struct bdb_info *) be->be_private;
144         DB *db = bdb->bi_id2entry->bdi_db;
145         DBT key;
146         int rc;
147         ID nid;
148
149         DBTzero( &key );
150         key.data = &nid;
151         key.size = sizeof(ID);
152         BDB_ID2DISK( e->e_id, &nid );
153
154         /* delete from database */
155         rc = db->del( db, tid, &key, 0 );
156
157         return rc;
158 }
159
160 int bdb_entry_return(
161         Entry *e )
162 {
163         /* Our entries are allocated in two blocks; the data comes from
164          * the db itself and the Entry structure and associated pointers
165          * are allocated in entry_decode. The db data pointer is saved
166          * in e_bv. Since the Entry structure is allocated as a single
167          * block, e_attrs is always a fixed offset from e. The exception
168          * is when an entry has been modified, in which case we also need
169          * to free e_attrs.
170          */
171         if( !e->e_bv.bv_val ) { /* A regular entry, from do_add */
172                 entry_free( e );
173                 return 0;
174         }
175         if( (void *) e->e_attrs != (void *) (e+1)) {
176                 attrs_free( e->e_attrs );
177         }
178
179         /* See if the DNs were changed by modrdn */
180         if( e->e_nname.bv_val < e->e_bv.bv_val || e->e_nname.bv_val >
181                 e->e_bv.bv_val + e->e_bv.bv_len ) {
182                 ch_free(e->e_name.bv_val);
183                 ch_free(e->e_nname.bv_val);
184                 e->e_name.bv_val = NULL;
185                 e->e_nname.bv_val = NULL;
186         }
187 #ifndef BDB_HIER
188         /* In tool mode the e_bv buffer is realloc'd, leave it alone */
189         if( !(slapMode & SLAP_TOOL_MODE) ) {
190                 free( e->e_bv.bv_val );
191         }
192 #else
193         free( e->e_bv.bv_val );
194 #endif
195         free( e );
196
197         return 0;
198 }
199
200 int bdb_entry_release(
201         Operation *o,
202         Entry *e,
203         int rw )
204 {
205         struct bdb_info *bdb = (struct bdb_info *) o->o_bd->be_private;
206         struct bdb_op_info *boi = NULL;
207  
208         /* slapMode : SLAP_SERVER_MODE, SLAP_TOOL_MODE,
209                         SLAP_TRUNCATE_MODE, SLAP_UNDEFINED_MODE */
210  
211         if ( slapMode == SLAP_SERVER_MODE ) {
212                 /* If not in our cache, just free it */
213                 if ( !e->e_private ) {
214                         return bdb_entry_return( e );
215                 }
216                 /* free entry and reader or writer lock */
217                 if ( o ) {
218                         boi = (struct bdb_op_info *)o->o_private;
219                 }
220                 /* lock is freed with txn */
221                 if ( !boi || boi->boi_txn ) {
222                         bdb_unlocked_cache_return_entry_rw( &bdb->bi_cache, e, rw );
223                 } else {
224                         struct bdb_lock_info *bli, *prev;
225                         for ( prev=(struct bdb_lock_info *)&boi->boi_locks,
226                                 bli = boi->boi_locks; bli; prev=bli, bli=bli->bli_next ) {
227                                 if ( bli->bli_id == e->e_id ) {
228                                         bdb_cache_return_entry_rw( bdb->bi_dbenv, &bdb->bi_cache,
229                                                 e, rw, &bli->bli_lock );
230                                         prev->bli_next = bli->bli_next;
231                                         o->o_tmpfree( bli, o->o_tmpmemctx );
232                                         break;
233                                 }
234                         }
235                         if ( !boi->boi_locks ) {
236                                 o->o_tmpfree( boi, o->o_tmpmemctx );
237                                 o->o_private = NULL;
238                         }
239                 }
240         } else {
241                 if (e->e_private != NULL)
242                         BEI(e)->bei_e = NULL;
243                 e->e_private = NULL;
244                 bdb_entry_return ( e );
245         }
246  
247         return 0;
248 }
249
250 /* return LDAP_SUCCESS IFF we can retrieve the specified entry.
251  */
252 int bdb_entry_get(
253         Operation *op,
254         struct berval *ndn,
255         ObjectClass *oc,
256         AttributeDescription *at,
257         int rw,
258         Entry **ent )
259 {
260         struct bdb_info *bdb = (struct bdb_info *) op->o_bd->be_private;
261         struct bdb_op_info *boi = NULL;
262         DB_TXN *txn = NULL;
263         Entry *e = NULL;
264         EntryInfo *ei;
265         int     rc;
266         const char *at_name = at ? at->ad_cname.bv_val : "(null)";
267
268         u_int32_t       locker = 0;
269         DB_LOCK         lock;
270         int             free_lock_id = 0;
271
272         Debug( LDAP_DEBUG_ARGS,
273                 "=> bdb_entry_get: ndn: \"%s\"\n", ndn->bv_val, 0, 0 ); 
274         Debug( LDAP_DEBUG_ARGS,
275                 "=> bdb_entry_get: oc: \"%s\", at: \"%s\"\n",
276                 oc ? oc->soc_cname.bv_val : "(null)", at_name, 0);
277
278         if( op ) boi = (struct bdb_op_info *) op->o_private;
279         if( boi != NULL && op->o_bd->be_private == boi->boi_bdb->be_private ) {
280                 txn = boi->boi_txn;
281                 locker = boi->boi_locker;
282         }
283
284         if ( txn != NULL ) {
285                 locker = TXN_ID ( txn );
286         } else if ( !locker ) {
287                 rc = LOCK_ID ( bdb->bi_dbenv, &locker );
288                 free_lock_id = 1;
289                 switch(rc) {
290                 case 0:
291                         break;
292                 default:
293                         return LDAP_OTHER;
294                 }
295         }
296
297 dn2entry_retry:
298         /* can we find entry */
299         rc = bdb_dn2entry( op, txn, ndn, &ei, 0, locker, &lock );
300         switch( rc ) {
301         case DB_NOTFOUND:
302         case 0:
303                 break;
304         case DB_LOCK_DEADLOCK:
305         case DB_LOCK_NOTGRANTED:
306                 /* the txn must abort and retry */
307                 if ( txn ) {
308                         boi->boi_err = rc;
309                         return LDAP_BUSY;
310                 }
311                 ldap_pvt_thread_yield();
312                 goto dn2entry_retry;
313         default:
314                 if ( boi ) boi->boi_err = rc;
315                 if ( free_lock_id ) {
316                         LOCK_ID_FREE( bdb->bi_dbenv, locker );
317                 }
318                 return (rc != LDAP_BUSY) ? LDAP_OTHER : LDAP_BUSY;
319         }
320         if (ei) e = ei->bei_e;
321         if (e == NULL) {
322                 Debug( LDAP_DEBUG_ACL,
323                         "=> bdb_entry_get: cannot find entry: \"%s\"\n",
324                                 ndn->bv_val, 0, 0 ); 
325                 if ( free_lock_id ) {
326                         LOCK_ID_FREE( bdb->bi_dbenv, locker );
327                 }
328                 return LDAP_NO_SUCH_OBJECT; 
329         }
330         
331         Debug( LDAP_DEBUG_ACL,
332                 "=> bdb_entry_get: found entry: \"%s\"\n",
333                 ndn->bv_val, 0, 0 ); 
334
335         /* find attribute values */
336         if( is_entry_alias( e ) ) {
337                 Debug( LDAP_DEBUG_ACL,
338                         "<= bdb_entry_get: entry is an alias\n", 0, 0, 0 );
339                 rc = LDAP_ALIAS_PROBLEM;
340                 goto return_results;
341         }
342
343         if( is_entry_referral( e ) ) {
344                 Debug( LDAP_DEBUG_ACL,
345                         "<= bdb_entry_get: entry is a referral\n", 0, 0, 0 );
346                 rc = LDAP_REFERRAL;
347                 goto return_results;
348         }
349
350         if ( oc && !is_entry_objectclass( e, oc, 0 )) {
351                 Debug( LDAP_DEBUG_ACL,
352                         "<= bdb_entry_get: failed to find objectClass\n",
353                         0, 0, 0 ); 
354                 rc = LDAP_NO_SUCH_ATTRIBUTE;
355                 goto return_results;
356         }
357
358 return_results:
359         if( rc != LDAP_SUCCESS ) {
360                 /* free entry */
361                 bdb_cache_return_entry_rw(bdb->bi_dbenv, &bdb->bi_cache, e, rw, &lock);
362
363         } else {
364                 if ( slapMode == SLAP_SERVER_MODE ) {
365                         *ent = e;
366                         /* big drag. we need a place to store a read lock so we can
367                          * release it later?? If we're in a txn, nothing is needed
368                          * here because the locks will go away with the txn.
369                          */
370                         if ( op ) {
371                                 if ( !boi ) {
372                                         boi = op->o_tmpcalloc(1,sizeof(struct bdb_op_info),op->o_tmpmemctx);
373                                         boi->boi_bdb = op->o_bd;
374                                         op->o_private = boi;
375                                 }
376                                 if ( !boi->boi_txn ) {
377                                         struct bdb_lock_info *bli;
378                                         bli = op->o_tmpalloc( sizeof(struct bdb_lock_info),
379                                                 op->o_tmpmemctx );
380                                         bli->bli_next = boi->boi_locks;
381                                         bli->bli_id = e->e_id;
382                                         bli->bli_lock = lock;
383                                         boi->boi_locks = bli;
384                                 }
385                         }
386                 } else {
387                         *ent = entry_dup( e );
388                         bdb_cache_return_entry_rw(bdb->bi_dbenv, &bdb->bi_cache, e, rw, &lock);
389                 }
390         }
391
392         if ( free_lock_id ) {
393                 LOCK_ID_FREE( bdb->bi_dbenv, locker );
394         }
395
396         Debug( LDAP_DEBUG_TRACE,
397                 "bdb_entry_get: rc=%d\n",
398                 rc, 0, 0 ); 
399         return(rc);
400 }