]> git.sur5r.net Git - openldap/blob - servers/slapd/back-bdb/modify.c
b00b60236c36116fbc6f2c90a483af970aa38a13
[openldap] / servers / slapd / back-bdb / modify.c
1 /* modify.c - bdb backend modify routine */
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 #include <ac/time.h>
13
14 #include "back-bdb.h"
15 #include "external.h"
16
17 int bdb_modify_internal(
18         BackendDB *be,
19         Connection *conn,
20         Operation *op,
21         DB_TXN *tid,
22         Modifications *modlist,
23         Entry *e,
24         const char **text,
25         char *textbuf,
26         size_t textlen )
27 {
28         int rc, err;
29         Modification    *mod;
30         Modifications   *ml;
31         Attribute       *save_attrs;
32         Attribute       *ap;
33
34         Debug( LDAP_DEBUG_TRACE, "bdb_modify_internal: 0x%08lx: %s\n",
35                 e->e_id, e->e_dn, 0);
36
37         if ( !acl_check_modlist( be, conn, op, e, modlist )) {
38                 return LDAP_INSUFFICIENT_ACCESS;
39         }
40
41         save_attrs = e->e_attrs;
42         e->e_attrs = attrs_dup( e->e_attrs );
43
44         for ( ml = modlist; ml != NULL; ml = ml->sml_next ) {
45                 mod = &ml->sml_mod;
46
47                 switch ( mod->sm_op ) {
48                 case LDAP_MOD_ADD:
49                         Debug(LDAP_DEBUG_ARGS, "bdb_modify_internal: add\n", 0, 0, 0);
50                         err = modify_add_values( e, mod, text, textbuf, textlen );
51                         if( err != LDAP_SUCCESS ) {
52                                 Debug(LDAP_DEBUG_ARGS, "bdb_modify_internal: %d %s\n",
53                                         err, *text, 0);
54                         }
55                         break;
56
57                 case LDAP_MOD_DELETE:
58                         Debug(LDAP_DEBUG_ARGS, "bdb_modify_internal: delete\n", 0, 0, 0);
59                         err = modify_delete_values( e, mod, text, textbuf, textlen );
60                         assert( err != LDAP_TYPE_OR_VALUE_EXISTS );
61                         if( err != LDAP_SUCCESS ) {
62                                 Debug(LDAP_DEBUG_ARGS, "bdb_modify_internal: %d %s\n",
63                                         err, *text, 0);
64                         }
65                         break;
66
67                 case LDAP_MOD_REPLACE:
68                         Debug(LDAP_DEBUG_ARGS, "bdb_modify_internal: replace\n", 0, 0, 0);
69                         err = modify_replace_values( e, mod, text, textbuf, textlen );
70                         assert( err != LDAP_TYPE_OR_VALUE_EXISTS );
71                         if( err != LDAP_SUCCESS ) {
72                                 Debug(LDAP_DEBUG_ARGS, "bdb_modify_internal: %d %s\n",
73                                         err, *text, 0);
74                         }
75                         break;
76
77                 case SLAP_MOD_SOFTADD:
78                         Debug(LDAP_DEBUG_ARGS, "bdb_modify_internal: softadd\n", 0, 0, 0);
79                         /* Avoid problems in index_add_mods()
80                          * We need to add index if necessary.
81                          */
82                         mod->sm_op = LDAP_MOD_ADD;
83
84                         err = modify_add_values( e, mod, text, textbuf, textlen );
85                         if ( err == LDAP_TYPE_OR_VALUE_EXISTS ) {
86                                 err = LDAP_SUCCESS;
87                         }
88
89                         if( err != LDAP_SUCCESS ) {
90                                 Debug(LDAP_DEBUG_ARGS, "bdb_modify_internal: %d %s\n",
91                                         err, *text, 0);
92                         }
93                         break;
94
95                 default:
96                         Debug(LDAP_DEBUG_ANY, "bdb_modify_internal: invalid op %d\n",
97                                 mod->sm_op, 0, 0);
98                         *text = "Invalid modify operation";
99                         err = LDAP_OTHER;
100                         Debug(LDAP_DEBUG_ARGS, "bdb_modify_internal: %d %s\n",
101                                 err, *text, 0);
102                 }
103
104                 if ( err != LDAP_SUCCESS ) {
105                         attrs_free( e->e_attrs );
106                         e->e_attrs = save_attrs;
107                         /* unlock entry, delete from cache */
108                         return err; 
109                 }
110
111                 /* If objectClass was modified, reset the flags */
112                 if ( mod->sm_desc == slap_schema.si_ad_objectClass ) {
113                         e->e_ocflags = 0;
114                 }
115
116                 /* check if modified attribute was indexed */
117                 err = bdb_index_is_indexed( be, mod->sm_desc );
118                 if ( err == LDAP_SUCCESS ) {
119                         ap = attr_find( save_attrs, mod->sm_desc );
120                         if ( ap ) ap->a_flags |= SLAP_ATTR_IXDEL;
121
122                         ap = attr_find( e->e_attrs, mod->sm_desc );
123                         if ( ap ) ap->a_flags |= SLAP_ATTR_IXADD;
124                 }
125         }
126
127         /* check that the entry still obeys the schema */
128         rc = entry_schema_check( be, e, save_attrs, text, textbuf, textlen );
129         if ( rc != LDAP_SUCCESS ) {
130                 attrs_free( e->e_attrs );
131                 e->e_attrs = save_attrs;
132                 Debug( LDAP_DEBUG_ANY, "entry failed schema check: %s\n",
133                         *text, 0, 0 );
134                 return rc;
135         }
136
137         /* update the indices of the modified attributes */
138
139         /* start with deleting the old index entries */
140         for ( ap = save_attrs; ap != NULL; ap = ap->a_next ) {
141                 if ( ap->a_flags & SLAP_ATTR_IXDEL ) {
142                         rc = bdb_index_values( be, tid, ap->a_desc, ap->a_vals,
143                                                e->e_id, SLAP_INDEX_DELETE_OP );
144                         if ( rc != LDAP_SUCCESS ) {
145                                 attrs_free( e->e_attrs );
146                                 e->e_attrs = save_attrs;
147                                 Debug( LDAP_DEBUG_ANY,
148                                        "Attribute index delete failure",
149                                        0, 0, 0 );
150                                 return rc;
151                         }
152                         ap->a_flags &= ~SLAP_ATTR_IXDEL;
153                 }
154         }
155
156         /* add the new index entries */
157         for ( ap = e->e_attrs; ap != NULL; ap = ap->a_next ) {
158                 if (ap->a_flags & SLAP_ATTR_IXADD) {
159                         rc = bdb_index_values( be, tid, ap->a_desc, ap->a_vals,
160                                                e->e_id, SLAP_INDEX_ADD_OP );
161                         if ( rc != LDAP_SUCCESS ) {
162                                 attrs_free( e->e_attrs );
163                                 e->e_attrs = save_attrs;
164                                 Debug( LDAP_DEBUG_ANY,
165                                        "Attribute index add failure",
166                                        0, 0, 0 );
167                                 return rc;
168                         }
169                         ap->a_flags &= ~SLAP_ATTR_IXADD;
170                 }
171         }
172
173         return rc;
174 }
175
176
177 int
178 bdb_modify(
179         BackendDB       *be,
180         Connection      *conn,
181         Operation       *op,
182         struct berval   *dn,
183         struct berval   *ndn,
184         Modifications   *modlist )
185 {
186         struct bdb_info *bdb = (struct bdb_info *) be->be_private;
187         int rc;
188         Entry           *matched;
189         Entry           *e;
190         int             manageDSAit = get_manageDSAit( op );
191         const char *text = NULL;
192         char textbuf[SLAP_TEXT_BUFLEN];
193         size_t textlen = sizeof textbuf;
194         DB_TXN  *ltid = NULL;
195         struct bdb_op_info opinfo;
196
197         Debug( LDAP_DEBUG_ARGS, "bdb_modify: %s\n", dn->bv_val, 0, 0 );
198
199         if( 0 ) {
200 retry:  /* transaction retry */
201                 Debug(LDAP_DEBUG_TRACE,
202                         "bdb_modify: retrying...\n", 0, 0, 0);
203                 rc = txn_abort( ltid );
204                 ltid = NULL;
205                 op->o_private = NULL;
206                 if( rc != 0 ) {
207                         rc = LDAP_OTHER;
208                         text = "internal error";
209                         goto return_results;
210                 }
211                 ldap_pvt_thread_yield();
212         }
213
214         if( bdb->bi_txn ) {
215                 /* begin transaction */
216                 rc = txn_begin( bdb->bi_dbenv, NULL, &ltid, 
217                         bdb->bi_db_opflags );
218                 text = NULL;
219                 if( rc != 0 ) {
220                         Debug( LDAP_DEBUG_TRACE,
221                                 "bdb_modify: txn_begin failed: %s (%d)\n",
222                                 db_strerror(rc), rc, 0 );
223                         rc = LDAP_OTHER;
224                         text = "internal error";
225                         goto return_results;
226                 }
227         }
228
229         opinfo.boi_bdb = be;
230         opinfo.boi_txn = ltid;
231         opinfo.boi_err = 0;
232         op->o_private = &opinfo;
233
234         /* get entry */
235         rc = bdb_dn2entry( be, ltid, ndn, &e, &matched, 0 );
236
237         if ( rc != 0 ) {
238                 Debug( LDAP_DEBUG_TRACE,
239                         "bdb_modify: dn2entry failed (%d)\n",
240                         rc, 0, 0 );
241                 switch( rc ) {
242                 case DB_LOCK_DEADLOCK:
243                 case DB_LOCK_NOTGRANTED:
244                         goto retry;
245                 case DB_NOTFOUND:
246                         break;
247                 default:
248                         rc = LDAP_OTHER;
249                 }
250                 text = "internal error";
251                 goto return_results;
252         }
253
254         /* acquire and lock entry */
255         if ( e == NULL ) {
256                 char* matched_dn = NULL;
257                 BerVarray refs;
258
259                 if ( matched != NULL ) {
260                         matched_dn = ch_strdup( matched->e_dn );
261                         refs = is_entry_referral( matched )
262                                 ? get_entry_referrals( be, conn, op, matched )
263                                 : NULL;
264                         bdb_entry_return( be, matched );
265                         matched = NULL;
266
267                 } else {
268                         refs = referral_rewrite( default_referral,
269                                 NULL, dn, LDAP_SCOPE_DEFAULT );
270                 }
271
272                 send_ldap_result( conn, op, rc = LDAP_REFERRAL,
273                         matched_dn, NULL, refs, NULL );
274
275                 ber_bvarray_free( refs );
276                 free( matched_dn );
277
278                 return rc;
279         }
280
281         if ( !manageDSAit && is_entry_referral( e ) ) {
282                 /* parent is a referral, don't allow add */
283                 /* parent is an alias, don't allow add */
284                 BerVarray refs = get_entry_referrals( be,
285                         conn, op, e );
286
287                 Debug( LDAP_DEBUG_TRACE,
288                         "bdb_modify: entry is referral\n",
289                         0, 0, 0 );
290
291                 send_ldap_result( conn, op, rc = LDAP_REFERRAL,
292                         e->e_dn, NULL, refs, NULL );
293
294                 ber_bvarray_free( refs );
295                 goto done;
296         }
297         
298         /* Modify the entry */
299         rc = bdb_modify_internal( be, conn, op, ltid, modlist, e,
300                 &text, textbuf, textlen );
301
302         if( rc != LDAP_SUCCESS ) {
303                 Debug( LDAP_DEBUG_TRACE,
304                         "bdb_modify: modify failed (%d)\n",
305                         rc, 0, 0 );
306                 switch( rc ) {
307                 case DB_LOCK_DEADLOCK:
308                 case DB_LOCK_NOTGRANTED:
309                         goto retry;
310                 }
311                 goto return_results;
312         }
313
314         /* change the entry itself */
315         rc = bdb_id2entry_update( be, ltid, e );
316         if ( rc != 0 ) {
317                 Debug( LDAP_DEBUG_TRACE,
318                         "bdb_modify: id2entry update failed (%d)\n",
319                         rc, 0, 0 );
320                 switch( rc ) {
321                 case DB_LOCK_DEADLOCK:
322                 case DB_LOCK_NOTGRANTED:
323                         goto retry;
324                 }
325                 text = "entry update failed";
326                 goto return_results;
327         }
328
329         if( bdb->bi_txn ) {
330                 rc = txn_commit( ltid, 0 );
331         }
332         ltid = NULL;
333         op->o_private = NULL;
334
335         if( rc != 0 ) {
336                 Debug( LDAP_DEBUG_TRACE,
337                         "bdb_modify: txn_commit failed: %s (%d)\n",
338                         db_strerror(rc), rc, 0 );
339                 rc = LDAP_OTHER;
340                 text = "commit failed";
341
342         } else {
343                 Debug( LDAP_DEBUG_TRACE,
344                         "bdb_modify: updated id=%08lx dn=\"%s\"\n",
345                         e->e_id, e->e_dn, 0 );
346                 rc = LDAP_SUCCESS;
347                 text = NULL;
348         }
349
350 return_results:
351         send_ldap_result( conn, op, rc,
352                 NULL, text, NULL, NULL );
353
354         if( rc == LDAP_SUCCESS && bdb->bi_txn_cp ) {
355                 ldap_pvt_thread_yield();
356                 TXN_CHECKPOINT( bdb->bi_dbenv,
357                         bdb->bi_txn_cp_kbyte, bdb->bi_txn_cp_min, 0 );
358         }
359
360 done:
361         if( ltid != NULL ) {
362                 txn_abort( ltid );
363                 op->o_private = NULL;
364         }
365
366         if( e != NULL ) {
367                 bdb_entry_return( be, e );
368         }
369         return rc;
370 }
371