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