]> git.sur5r.net Git - openldap/blob - servers/slapd/back-bdb2/modrdn.c
Modify meaning of SLAPD_CHILD_MODIFICATION_ENTRY_ACL to augment
[openldap] / servers / slapd / back-bdb2 / modrdn.c
1 /* modrdn.c - bdb2 backend modrdn routine */
2
3 /*
4  * LDAP v3 newSuperior support.
5  *
6  * Copyright 1999, Juan C. Gomez, All rights reserved.
7  * This software is not subject to any license of Silicon Graphics 
8  * Inc. or Purdue University.
9  *
10  * Redistribution and use in source and binary forms are permitted
11  * without restriction or fee of any kind as long as this notice
12  * is preserved.
13  *
14  */
15
16 #include "portable.h"
17
18 #include <stdio.h>
19
20 #include <ac/string.h>
21 #include <ac/socket.h>
22
23 #include "slap.h"
24 #include "back-bdb2.h"
25 #include "proto-back-bdb2.h"
26
27 static int
28 bdb2i_back_modrdn_internal(
29     BackendDB   *be,
30     Connection  *conn,
31     Operation   *op,
32     char        *dn,
33     char        *newrdn,
34     int         deleteoldrdn,
35     char        *newSuperior
36 )
37 {
38         struct ldbminfo *li = (struct ldbminfo *) be->be_private;
39         char            *matched = NULL;
40         char            *p_dn = NULL, *p_ndn = NULL;
41         char            *new_dn = NULL, *new_ndn = NULL;
42         char            sep[2];
43         Entry           *e, *p = NULL;
44         int                     rc = -1;
45         /* Added to support LDAP v2 correctly (deleteoldrdn thing) */
46         char            *new_rdn_val = NULL;    /* Val of new rdn */
47         char            *new_rdn_type = NULL;   /* Type of new rdn */
48         char            *old_rdn;               /* Old rdn's attr type & val */
49         char            *old_rdn_type = NULL;   /* Type of old rdn attr. */
50         char            *old_rdn_val = NULL;    /* Old rdn attribute value */
51         struct berval   bv;                     /* Stores new rdn att */
52         struct berval   *bvals[2];              /* Stores new rdn att */
53         LDAPMod         mod;                    /* Used to delete old rdn */
54         /* Added to support newSuperior */ 
55         Entry           *np = NULL;     /* newSuperior Entry */
56         char            *np_dn = NULL;  /* newSuperior dn */
57         char            *np_ndn = NULL; /* newSuperior ndn */
58         char            *new_parent_dn = NULL;  /* np_dn, p_dn, or NULL */
59
60         Debug( LDAP_DEBUG_TRACE, "==>ldbm_back_modrdn(newSuperior=%s)\n",
61                (newSuperior ? newSuperior : "NULL"),
62                0, 0 );
63
64         /* get entry with writer lock */
65         if ( (e = bdb2i_dn2entry_w( be, dn, &matched )) == NULL ) {
66                 send_ldap_result( conn, op, LDAP_NO_SUCH_OBJECT, matched, "" );
67                 if ( matched != NULL ) {
68                         free( matched );
69                 }
70                 return( -1 );
71         }
72
73 #ifdef SLAPD_CHILD_MODIFICATION_WITH_ENTRY_ACL
74                 /* check parent for "children" acl */
75         if ( ! access_allowed( be, conn, op, e,
76                 "entry", NULL, ACL_WRITE ) )
77         {
78                 Debug( LDAP_DEBUG_TRACE, "no access to entry\n", 0,
79                         0, 0 );
80                 send_ldap_result( conn, op, LDAP_INSUFFICIENT_ACCESS,
81                         "", "" );
82                 goto return_results;
83         }
84 #endif
85
86         if ( (p_ndn = dn_parent( be, e->e_ndn )) != NULL ) {
87                 /* parent + rdn + separator(s) + null */
88                 if( (p = bdb2i_dn2entry_w( be, p_ndn, &matched )) == NULL) {
89                         Debug( LDAP_DEBUG_TRACE, "parent does not exist\n",
90                                 0, 0, 0);
91                         send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR,
92                                 "", "");
93                         goto return_results;
94                 }
95
96                 /* check parent for "children" acl */
97                 if ( ! access_allowed( be, conn, op, p,
98                         "children", NULL, ACL_WRITE ) )
99                 {
100                         Debug( LDAP_DEBUG_TRACE, "no access to parent\n", 0,
101                                 0, 0 );
102                         send_ldap_result( conn, op, LDAP_INSUFFICIENT_ACCESS,
103                                 "", "" );
104                         goto return_results;
105                 }
106
107                 p_dn = dn_parent( be, e->e_dn );
108
109                 Debug( LDAP_DEBUG_TRACE, "ldbm_back_modrdn: parent dn=%s\n",
110                        p_dn, 0, 0 );
111
112
113         } else {
114                 /* no parent, modrdn entry directly under root */
115                 if( ! be_isroot( be, op->o_ndn ) ) {
116                         Debug( LDAP_DEBUG_TRACE, "no parent & not root\n",
117                                 0, 0, 0);
118                         send_ldap_result( conn, op, LDAP_INSUFFICIENT_ACCESS,
119                                 "", "");
120                         goto return_results;
121                 }
122
123                 Debug( LDAP_DEBUG_TRACE,
124                        "ldbm_back_modrdn: no parent!, working on root\n",
125                        0, 0, 0 );
126
127         }
128
129         new_parent_dn = p_dn;   /* New Parent unless newSuperior given */
130
131         if ( (np_dn = newSuperior) != NULL) {
132
133
134                 Debug( LDAP_DEBUG_TRACE, 
135                        "ldbm_back_modrdn: new parent requested...\n",
136                        0, 0, 0 );
137
138                 np_ndn = dn_normalize_case( ch_strdup( np_dn ) );
139
140                 /* newSuperior == oldParent?, if so ==> ERROR */
141
142                 /* newSuperior == entry being moved?, if so ==> ERROR */
143
144                 /* Get Entry with dn=newSuperior. Does newSuperior exist? */
145
146                 if( (np = bdb2i_dn2entry_w( be, np_ndn, &matched )) == NULL) {
147
148                         Debug( LDAP_DEBUG_TRACE,
149                                "ldbm_back_modrdn: newSup(ndn=%s) not here!\n",
150                                np_ndn, 0, 0);
151                         send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR, "",
152                                           "");
153                         goto return_results;
154                 }
155
156                 Debug( LDAP_DEBUG_TRACE,
157                        "ldbm_back_modrdn: wr to new parent OK np=%p, id=%d\n",
158                        np, np->e_id, 0 );
159             
160                 /* check newSuperior for "children" acl */
161                 if ( !access_allowed( be, conn, op, np, "children", NULL,
162                                       ACL_WRITE ) )
163                 {
164                         Debug( LDAP_DEBUG_TRACE,
165                                "ldbm_back_modrdn: no wr to newSup children\n",
166                                0, 0, 0 );
167                         send_ldap_result( conn, op, LDAP_INSUFFICIENT_ACCESS,
168                                           "", "" );
169                         goto return_results;
170                 }
171
172                 Debug( LDAP_DEBUG_TRACE,
173                        "ldbm_back_modrdn: wr to new parent's children OK\n",
174                        0, 0 , 0 );
175
176
177                 new_parent_dn = np_dn;
178
179         }
180         
181         /* Build target dn and make sure target entry doesn't exist already. */
182
183         build_new_dn( &new_dn, e->e_dn, new_parent_dn, newrdn ); 
184
185
186         new_ndn = dn_normalize_case( ch_strdup( new_dn ) );
187
188         Debug( LDAP_DEBUG_TRACE, "ldbm_back_modrdn: new ndn=%s\n",
189                new_ndn, 0, 0 );
190
191         if ( (bdb2i_dn2id ( be, new_ndn ) ) != NOID ) {
192                 send_ldap_result( conn, op, LDAP_ALREADY_EXISTS, NULL, NULL );
193                 goto return_results;
194         }
195
196         /* check for abandon */
197         ldap_pvt_thread_mutex_lock( &op->o_abandonmutex );
198         if ( op->o_abandon ) {
199                 ldap_pvt_thread_mutex_unlock( &op->o_abandonmutex );
200                 goto return_results;
201         }
202         ldap_pvt_thread_mutex_unlock( &op->o_abandonmutex );
203
204         /* add new one */
205         if ( bdb2i_dn2id_add( be, new_ndn, e->e_id ) != 0 ) {
206                 send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR, NULL, NULL );
207                 goto return_results;
208         }
209
210         /* delete old one */
211         if ( bdb2i_dn2id_delete( be, e->e_ndn ) != 0 ) {
212                 send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR, NULL, NULL );
213                 goto return_results;
214         }
215
216         (void) bdb2i_cache_delete_entry( &li->li_cache, e );
217         free( e->e_dn );
218         free( e->e_ndn );
219         e->e_dn = new_dn;
220         e->e_ndn = new_ndn;
221
222         /* Get attribute type and attribute value of our new rdn, we will
223          * need to add that to our new entry
224          */
225
226         if ( (new_rdn_type = rdn_attr_type( newrdn )) == NULL ) {
227             
228                 Debug( LDAP_DEBUG_TRACE,
229                        "ldbm_back_modrdn: can't figure out type of newrdn\n",
230                        0, 0, 0 );
231                 send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR, "", "" );
232                 goto return_results;            
233
234         }
235
236         if ( (new_rdn_val = rdn_attr_value( newrdn )) == NULL ) {
237             
238                 Debug( LDAP_DEBUG_TRACE,
239                        "ldbm_back_modrdn: can't figure out val of newrdn\n",
240                        0, 0, 0 );
241                 send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR, "", "" );
242                 goto return_results;            
243
244         }
245
246         Debug( LDAP_DEBUG_TRACE,
247                "ldbm_back_modrdn: new_rdn_val=%s, new_rdn_type=%s\n",
248                new_rdn_val, new_rdn_type, 0 );
249
250         /* Retrieve the old rdn from the entry's dn */
251
252         if ( (old_rdn = dn_rdn( be, dn )) == NULL ) {
253
254                 Debug( LDAP_DEBUG_TRACE,
255                        "ldbm_back_modrdn: can't figure out old_rdn from dn\n",
256                        0, 0, 0 );
257                 send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR, "", "" );
258                 goto return_results;            
259
260         }
261
262         if ( (old_rdn_type = rdn_attr_type( old_rdn )) == NULL ) {
263             
264                 Debug( LDAP_DEBUG_TRACE,
265                        "ldbm_back_modrdn: can't figure out the old_rdn type\n",
266                        0, 0, 0 );
267                 send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR, "", "" );
268                 goto return_results;            
269                 
270         }
271         
272         if ( strcasecmp( old_rdn_type, new_rdn_type ) != 0 ) {
273
274             /* Not a big deal but we may say something */
275             Debug( LDAP_DEBUG_TRACE,
276                    "ldbm_back_modrdn: old_rdn_type=%s, new_rdn_type=%s!\n",
277                    old_rdn_type, new_rdn_type, 0 );
278             
279         }               
280
281         if ( dn_type( old_rdn ) == DN_X500 ) {
282
283                 Debug( LDAP_DEBUG_TRACE, "ldbm_back_modrdn: DN_X500\n",
284                        0, 0, 0 );
285
286                 bvals[0] = &bv;         /* Array of bervals */
287                 bvals[1] = NULL;
288
289                 /* Remove old rdn value if required */
290
291                 if (deleteoldrdn) {
292
293                         /* Get value of old rdn */
294         
295                         if ((old_rdn_val = rdn_attr_value( old_rdn ))
296                             == NULL) {
297                             
298                                 Debug( LDAP_DEBUG_TRACE,
299                                        "ldbm_back_modrdn: can't figure out old_rdn_val from old_rdn\n",
300                                        0, 0, 0 );
301                                 send_ldap_result( conn, op,
302                                                   LDAP_OPERATIONS_ERROR,
303                                                   "", "" );
304                                 goto return_results;            
305
306
307                         }
308
309                         /* Remove old value of rdn as an attribute. */
310                     
311                         bv.bv_val = old_rdn_val;
312                         bv.bv_len = strlen(old_rdn_val);
313
314                         /* No need to normalize old_rdn_type, delete_values()
315                          * does that for us
316                          */
317                         mod.mod_type = old_rdn_type;    
318                         mod.mod_bvalues = bvals;
319                         mod.mod_op = LDAP_MOD_DELETE;   /* XXX:really needed?*/
320
321                         /* Assembly mod structure */
322
323                         if ( delete_values( e, &mod, op->o_ndn )
324                              != LDAP_SUCCESS ) {
325
326                                 /* Could not find old_rdn as an attribute or
327                                  * the old value was not present. Return an 
328                                  * error.
329                                  */
330                                 Debug( LDAP_DEBUG_TRACE,
331                                        "ldbm_back_modrdn: old rdn not found or att type doesn't exist\n",
332                                        0, 0, 0);
333                                 send_ldap_result( conn, op,
334                                                   LDAP_OPERATIONS_ERROR,
335                                                   "", "");
336                                 goto return_results;
337
338                         }
339
340                         Debug( LDAP_DEBUG_TRACE,
341                                "ldbm_back_modrdn: removed old_rdn_val=%s\n",
342                                old_rdn_val, 0, 0 );
343                 
344                 }/* if (deleteoldrdn) */
345
346                 /* Add new attribute value to the entry.
347                  */
348
349                 bv.bv_val = new_rdn_val;
350                 bv.bv_len = strlen(new_rdn_val);
351                 
352                 
353                 Debug( LDAP_DEBUG_TRACE,
354                        "ldbm_back_modrdn: adding new rdn attr val =%s\n",
355                        new_rdn_val, 0, 0 );
356                 
357                 /* No need to normalize new_rdn_type, attr_merge does it */
358
359                 attr_merge( e, new_rdn_type, bvals );
360         
361                 /* Update new_rdn_type if it is an index */
362
363                 bdb2i_index_add_values( be, new_rdn_type, bvals, e->e_id );
364         
365         } else {
366             
367
368                 Debug( LDAP_DEBUG_TRACE, "ldbm_back_modrdn: DNS DN\n",
369                        0, 0, 0 );
370                 /* XXXV3: not sure of what to do here */
371                 Debug( LDAP_DEBUG_TRACE,
372                        "ldbm_back_modrdn: not fully implemented...\n",
373                        0, 0, 0 );  
374
375         }
376
377         (void) bdb2i_cache_update_entry( &li->li_cache, e );
378
379         /* id2entry index */
380         if ( bdb2i_id2entry_add( be, e ) != 0 ) {
381                 entry_free( e );
382                 send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR, "", "" );
383                 goto return_results;
384         }
385
386         send_ldap_result( conn, op, LDAP_SUCCESS, NULL, NULL );
387         rc = 0;
388
389 return_results:
390         /* NOTE:
391          * new_dn and new_ndn are not deallocated because they are used by
392          * the cache entry.
393          */
394         if( p_dn != NULL ) free( p_dn );
395         if( p_ndn != NULL ) free( p_ndn );
396
397         if( matched != NULL ) free( matched );
398
399         /* LDAP v2 supporting correct attribute handling. */
400         if( new_rdn_type != NULL ) free(new_rdn_type);
401         if( new_rdn_val != NULL ) free(new_rdn_val);
402         if( old_rdn != NULL ) free(old_rdn);
403         if( old_rdn_type != NULL ) free(old_rdn_type);
404         if( old_rdn_val != NULL ) free(old_rdn_val);
405
406         /* LDAP v3 Support */
407         if ( np_dn != NULL ) free( np_dn );
408         if ( np_ndn != NULL ) free( np_ndn );
409
410         if( p != NULL ) {
411                 /* free parent and writer lock */
412                 bdb2i_cache_return_entry_w( &li->li_cache, p );
413
414         }
415
416         /* free entry and writer lock */
417         bdb2i_cache_return_entry_w( &li->li_cache, e );
418         return( rc );
419 }
420
421
422 int
423 bdb2_back_modrdn(
424     BackendDB   *be,
425     Connection  *conn,
426     Operation   *op,
427     char        *dn,
428     char        *newrdn,
429     int         deleteoldrdn,
430     char        *newSuperior
431 )
432 {
433         DB_LOCK         lock;
434         struct ldbminfo *li = (struct ldbminfo *) be->be_private;
435         struct timeval  time1;
436         int             ret;
437
438         bdb2i_start_timing( be->bd_info, &time1 );
439
440         if ( bdb2i_enter_backend_w( &lock ) != 0 ) {
441
442                 send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR, "", "" );
443                 return( -1 );
444
445         }
446
447         ret = bdb2i_back_modrdn_internal( be, conn, op, dn,
448                                         newrdn, deleteoldrdn,
449                                         newSuperior );
450
451         (void) bdb2i_leave_backend_w( lock );
452         bdb2i_stop_timing( be->bd_info, time1, "MODRDN", conn, op );
453
454         return( ret );
455 }
456
457