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