]> git.sur5r.net Git - openldap/blob - servers/slapd/back-bdb/tools.c
1612db3b31e65d8f5ed97cfd1ed410d93cc00651
[openldap] / servers / slapd / back-bdb / tools.c
1 /* tools.c - tools for slap tools */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 1998-2002 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 static DBC *cursor = NULL;
16 static DBT key, data;
17
18 int bdb_tool_entry_open(
19         BackendDB *be, int mode )
20 {
21         /* initialize key and data thangs */
22         DBTzero( &key );
23         DBTzero( &data );
24         key.flags = DB_DBT_REALLOC;
25         data.flags = DB_DBT_REALLOC;
26
27         return 0;
28 }
29
30 int bdb_tool_entry_close(
31         BackendDB *be )
32 {
33         struct bdb_info *bdb = (struct bdb_info *) be->be_private;
34
35         assert( be != NULL );
36
37         if( key.data ) {
38                 ch_free( key.data );
39                 key.data = NULL;
40         }
41         if( data.data ) {
42                 ch_free( data.data );
43                 data.data = NULL;
44         }
45
46         if( cursor ) {
47                 cursor->c_close( cursor );
48                 cursor = NULL;
49         }
50
51         return 0;
52 }
53
54 ID bdb_tool_entry_next(
55         BackendDB *be )
56 {
57         int rc;
58         ID id;
59         struct bdb_info *bdb = (struct bdb_info *) be->be_private;
60
61         assert( be != NULL );
62         assert( slapMode & SLAP_TOOL_MODE );
63         assert( bdb != NULL );
64         
65         if (cursor == NULL) {
66                 rc = bdb->bi_id2entry->bdi_db->cursor(
67                         bdb->bi_id2entry->bdi_db, NULL, &cursor,
68                         bdb->bi_db_opflags );
69                 if( rc != 0 ) {
70                         return NOID;
71                 }
72         }
73
74         rc = cursor->c_get( cursor, &key, &data, DB_NEXT );
75
76         if( rc != 0 ) {
77                 return NOID;
78         }
79
80         if( data.data == NULL ) {
81                 return NOID;
82         }
83
84         AC_MEMCPY( &id, key.data, key.size );
85         return id;
86 }
87
88 Entry* bdb_tool_entry_get( BackendDB *be, ID id )
89 {
90         int rc;
91         Entry *e;
92         struct berval bv;
93
94         assert( be != NULL );
95         assert( slapMode & SLAP_TOOL_MODE );
96         assert( data.data != NULL );
97
98         DBT2bv( &data, &bv );
99
100         rc = entry_decode( &bv, &e );
101
102         if( rc == LDAP_SUCCESS ) {
103                 e->e_id = id;
104         }
105
106 #ifdef BDB_HIER
107         bdb_fix_dn(be, id, e);
108 #endif
109
110         return e;
111 }
112
113 ID bdb_tool_entry_put(
114         BackendDB *be,
115         Entry *e,
116         struct berval *text )
117 {
118         int rc;
119         struct bdb_info *bdb = (struct bdb_info *) be->be_private;
120         DB_TXN *tid = NULL;
121         struct berval pdn;
122
123         assert( be != NULL );
124         assert( slapMode & SLAP_TOOL_MODE );
125
126         assert( text );
127         assert( text->bv_val );
128         assert( text->bv_val[0] == '\0' );
129
130         Debug( LDAP_DEBUG_TRACE, "=> bdb_tool_entry_put( %ld, \"%s\" )\n",
131                 (long) e->e_id, e->e_dn, 0 );
132
133         if( bdb->bi_txn ) {
134                 rc = txn_begin( bdb->bi_dbenv, NULL, &tid, 
135                         bdb->bi_db_opflags );
136                 if( rc != 0 ) {
137                         snprintf( text->bv_val, text->bv_len,
138                                         "txn_begin failed: %s (%d)",
139                                         db_strerror(rc), rc );
140                         Debug( LDAP_DEBUG_ANY,
141                                 "=> bdb_tool_entry_put: %s\n",
142                                  text->bv_val, 0, 0 );
143                         return NOID;
144                 }
145         }
146
147         rc = bdb_next_id( be, tid, &e->e_id );
148         if( rc != 0 ) {
149                 snprintf( text->bv_val, text->bv_len,
150                                 "next_id failed: %s (%d)",
151                                 db_strerror(rc), rc );
152                 Debug( LDAP_DEBUG_ANY,
153                         "=> bdb_tool_entry_put: %s\n", text->bv_val, 0, 0 );
154                 goto done;
155         }
156
157         /* add dn2id indices */
158         if ( be_issuffix( be, &e->e_nname ) ) {
159                 pdn = slap_empty_bv;
160         } else {
161                 rc = dnParent( &e->e_nname, &pdn );
162                 if ( rc != LDAP_SUCCESS ) {
163                         Debug( LDAP_DEBUG_ANY, "=> bdb_tool_entry_put: "
164                                 "dnParent(\"%s\") failed\n",
165                                 e->e_nname.bv_val, 0, 0 );
166                         
167                         goto done;
168                 }
169         }
170         rc = bdb_dn2id_add( be, tid, &pdn, e );
171         if( rc != 0 ) {
172                 snprintf( text->bv_val, text->bv_len, 
173                                 "dn2id_add failed: %s (%d)",
174                                 db_strerror(rc), rc );
175                 Debug( LDAP_DEBUG_ANY,
176                         "=> bdb_tool_entry_put: %s\n", text->bv_val, 0, 0 );
177                 goto done;
178         }
179
180         /* id2entry index */
181         rc = bdb_id2entry_add( be, tid, e );
182         if( rc != 0 ) {
183                 snprintf( text->bv_val, text->bv_len,
184                                 "id2entry_add failed: %s (%d)",
185                                 db_strerror(rc), rc );
186                 Debug( LDAP_DEBUG_ANY,
187                         "=> bdb_tool_entry_put: %s\n", text->bv_val, 0, 0 );
188                 goto done;
189         }
190
191         rc = bdb_index_entry_add( be, tid, e, e->e_attrs );
192         if( rc != 0 ) {
193                 snprintf( text->bv_val, text->bv_len,
194                                 "index_entry_add failed: %s (%d)",
195                                 db_strerror(rc), rc );
196                 Debug( LDAP_DEBUG_ANY,
197                         "=> bdb_tool_entry_put: %s\n", text->bv_val, 0, 0 );
198                 goto done;
199         }
200
201 done:
202         if( bdb->bi_txn ) {
203                 if( rc == 0 ) {
204                         rc = txn_commit( tid, 0 );
205                         if( rc != 0 ) {
206                                 snprintf( text->bv_val, text->bv_len,
207                                                 "txn_commit failed: %s (%d)",
208                                                 db_strerror(rc), rc );
209                                 Debug( LDAP_DEBUG_ANY,
210                                         "=> bdb_tool_entry_put: %s\n",
211                                         text->bv_val, 0, 0 );
212                                 e->e_id = NOID;
213                         }
214
215                 } else {
216                         txn_abort( tid );
217                         snprintf( text->bv_val, text->bv_len,
218                                         "txn_aborted! %s (%d)",
219                                         db_strerror(rc), rc );
220                         Debug( LDAP_DEBUG_ANY,
221                                 "=> bdb_tool_entry_put: %s\n",
222                                 text->bv_val, 0, 0 );
223                         e->e_id = NOID;
224                 }
225         }
226
227         return e->e_id;
228 }
229
230 int bdb_tool_entry_reindex(
231         BackendDB *be,
232         ID id )
233 {
234         struct bdb_info *bi = (struct bdb_info *) be->be_private;
235         int rc;
236         Entry *e;
237         DB_TXN *tid = NULL;
238         struct berval pdn;
239
240         Debug( LDAP_DEBUG_ARGS, "=> bdb_tool_entry_reindex( %ld )\n",
241                 (long) id, 0, 0 );
242
243         e = bdb_tool_entry_get( be, id );
244
245         if( e == NULL ) {
246                 Debug( LDAP_DEBUG_ANY,
247                         "bdb_tool_entry_reindex:: could not locate id=%ld\n",
248                         (long) id, 0, 0 );
249                 return -1;
250         }
251
252         if( bi->bi_txn ) {
253                 rc = txn_begin( bi->bi_dbenv, NULL, &tid, bi->bi_db_opflags );
254                 if( rc != 0 ) {
255                         Debug( LDAP_DEBUG_ANY,
256                                 "=> bdb_tool_entry_reindex: txn_begin failed: %s (%d)\n",
257                                 db_strerror(rc), rc, 0 );
258                         goto done;
259                 }
260         }
261         
262         /*
263          * just (re)add them for now
264          * assume that some other routine (not yet implemented)
265          * will zap index databases
266          *
267          */
268
269         Debug( LDAP_DEBUG_TRACE, "=> bdb_tool_entry_reindex( %ld, \"%s\" )\n",
270                 (long) id, e->e_dn, 0 );
271
272         /* add dn2id indices */
273         if ( be_issuffix( be, &e->e_nname ) ) {
274                 pdn = slap_empty_bv;
275         } else {
276                 rc = dnParent( &e->e_nname, &pdn );
277                 if ( rc != LDAP_SUCCESS ) {
278                         Debug( LDAP_DEBUG_ANY, "=> bdb_tool_entry_reindex: "
279                                         "dnParent(\"%s\") failed\n",
280                                         e->e_nname.bv_val, 0, 0 );
281                         goto done;
282                 }
283         }
284         rc = bdb_dn2id_add( be, tid, &pdn, e );
285         if( rc != 0 && rc != DB_KEYEXIST ) {
286                 Debug( LDAP_DEBUG_ANY,
287                         "=> bdb_tool_entry_reindex: dn2id_add failed: %s (%d)\n",
288                         db_strerror(rc), rc, 0 );
289                 goto done;
290         }
291
292         rc = bdb_index_entry_add( be, tid, e, e->e_attrs );
293
294 done:
295         if( bi->bi_txn ) {
296                 if( rc == 0 ) {
297                         rc = txn_commit( tid, 0 );
298                         if( rc != 0 ) {
299                                 Debug( LDAP_DEBUG_ANY,
300                                         "=> bdb_tool_entry_reindex: txn_commit failed: %s (%d)\n",
301                                         db_strerror(rc), rc, 0 );
302                                 e->e_id = NOID;
303                         }
304
305                 } else {
306                         txn_abort( tid );
307                         Debug( LDAP_DEBUG_ANY,
308                                 "=> bdb_tool_entry_reindex: txn_aborted! %s (%d)\n",
309                                 db_strerror(rc), rc, 0 );
310                         e->e_id = NOID;
311                 }
312         }
313
314         return rc;
315 }