]> git.sur5r.net Git - openldap/blob - servers/slapd/back-bdb/id2entry.c
6065491faa7d15934d296d7315a76f2661bb90f3
[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 #if defined(SLAP_NVALUES) && !defined(SLAP_NVALUES_ON_DISK)
209         else {
210                 /* nvals are not contiguous with the rest. oh well. */
211                 Attribute *a;
212                 for (a = e->e_attrs; a; a=a->a_next) {
213                         if (a->a_nvals != a->a_vals) {
214                                 ber_bvarray_free( a->a_nvals );
215                                 a->a_nvals = NULL;
216                         }
217                 }
218         }
219 #endif
220
221 #ifndef BDB_HIER
222         /* See if the DNs were changed by modrdn */
223         if( e->e_nname.bv_val < e->e_bv.bv_val || e->e_nname.bv_val >
224                 e->e_bv.bv_val + e->e_bv.bv_len ) {
225                 ch_free(e->e_name.bv_val);
226                 ch_free(e->e_nname.bv_val);
227                 e->e_name.bv_val = NULL;
228                 e->e_nname.bv_val = NULL;
229         }
230 #else
231         /* We had to construct the dn and ndn as well, in a single block */
232         if( e->e_name.bv_val ) {
233                 free( e->e_name.bv_val );
234         }
235 #endif
236         /* In tool mode the e_bv buffer is realloc'd, leave it alone */
237         if( !(slapMode & SLAP_TOOL_MODE) ) {
238                 free( e->e_bv.bv_val );
239         }
240
241         free( e );
242
243         return 0;
244 }
245
246 int bdb_entry_release(
247         BackendDB *be,
248         Connection *c,
249         Operation *o,
250         Entry *e,
251         int rw )
252 {
253         struct bdb_info *bdb = (struct bdb_info *) be->be_private;
254  
255         /* slapMode : SLAP_SERVER_MODE, SLAP_TOOL_MODE,
256                         SLAP_TRUNCATE_MODE, SLAP_UNDEFINED_MODE */
257  
258         if ( slapMode == SLAP_SERVER_MODE ) {
259                 /* free entry and reader or writer lock */
260                 bdb_unlocked_cache_return_entry_rw( &bdb->bi_cache, e, rw );
261         } else {
262                 if (e->e_private != NULL)
263                         free (e->e_private);
264                 e->e_private = NULL;
265                 bdb_entry_return ( e );
266         }
267  
268         return 0;
269 }