]> git.sur5r.net Git - openldap/blob - servers/slapd/modify.c
a21ad0b2a6626f44fc45ee0846bb9ac15c4c4a43
[openldap] / servers / slapd / modify.c
1 /* $OpenLDAP$ */
2 /*
3  * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
4  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
5  */
6 /*
7  * Copyright (c) 1995 Regents of the University of Michigan.
8  * All rights reserved.
9  *
10  * Redistribution and use in source and binary forms are permitted
11  * provided that this notice is preserved and that due credit is given
12  * to the University of Michigan at Ann Arbor. The name of the University
13  * may not be used to endorse or promote products derived from this
14  * software without specific prior written permission. This software
15  * is provided ``as is'' without express or implied warranty.
16  */
17
18 #include "portable.h"
19
20 #include <stdio.h>
21
22 #include <ac/socket.h>
23 #include <ac/string.h>
24 #include <ac/time.h>
25
26 #include "ldap_pvt.h"
27 #include "slap.h"
28
29
30 int
31 do_modify(
32     Connection  *conn,
33     Operation   *op )
34 {
35         char            *dn, *ndn = NULL;
36         char            *last;
37         ber_tag_t       tag;
38         ber_len_t       len;
39         LDAPModList     *modlist = NULL;
40         LDAPModList     **modtail = &modlist;
41 #ifdef LDAP_DEBUG
42         LDAPModList *tmp;
43 #endif
44         Modifications *mods = NULL;
45         Backend         *be;
46         int rc;
47         const char      *text;
48
49         Debug( LDAP_DEBUG_TRACE, "do_modify\n", 0, 0, 0 );
50
51         /*
52          * Parse the modify request.  It looks like this:
53          *
54          *      ModifyRequest := [APPLICATION 6] SEQUENCE {
55          *              name    DistinguishedName,
56          *              mods    SEQUENCE OF SEQUENCE {
57          *                      operation       ENUMERATED {
58          *                              add     (0),
59          *                              delete  (1),
60          *                              replace (2)
61          *                      },
62          *                      modification    SEQUENCE {
63          *                              type    AttributeType,
64          *                              values  SET OF AttributeValue
65          *                      }
66          *              }
67          *      }
68          */
69
70         if ( ber_scanf( op->o_ber, "{a" /*}*/, &dn ) == LBER_ERROR ) {
71                 Debug( LDAP_DEBUG_ANY, "do_modify: ber_scanf failed\n", 0, 0, 0 );
72                 send_ldap_disconnect( conn, op,
73                         LDAP_PROTOCOL_ERROR, "decoding error" );
74                 return SLAPD_DISCONNECT;
75         }
76
77         Debug( LDAP_DEBUG_ARGS, "do_modify: dn (%s)\n", dn, 0, 0 );
78
79         /* collect modifications & save for later */
80
81         for ( tag = ber_first_element( op->o_ber, &len, &last );
82             tag != LBER_DEFAULT;
83             tag = ber_next_element( op->o_ber, &len, last ) )
84         {
85                 ber_int_t mop;
86
87                 (*modtail) = (LDAPModList *) ch_calloc( 1, sizeof(LDAPModList) );
88
89                 if ( ber_scanf( op->o_ber, "{i{a[V]}}", &mop,
90                     &(*modtail)->ml_type, &(*modtail)->ml_bvalues )
91                     == LBER_ERROR )
92                 {
93                         send_ldap_disconnect( conn, op,
94                                 LDAP_PROTOCOL_ERROR, "decoding modlist error" );
95                         rc = SLAPD_DISCONNECT;
96                         goto cleanup;
97                 }
98
99                 switch( mop ) {
100                 case LDAP_MOD_ADD:
101                         if ( (*modtail)->ml_bvalues == NULL ) {
102                                 Debug( LDAP_DEBUG_ANY,
103                                         "do_modify: modify/add operation (%ld) requires values\n",
104                                         (long) mop, 0, 0 );
105                                 send_ldap_result( conn, op, LDAP_PROTOCOL_ERROR,
106                                         NULL, "modify/add operation requires values",
107                                         NULL, NULL );
108                                 rc = LDAP_PROTOCOL_ERROR;
109                                 goto cleanup;
110                         }
111
112                         /* fall through */
113
114                 case LDAP_MOD_DELETE:
115                 case LDAP_MOD_REPLACE:
116                         break;
117
118                 default: {
119                                 Debug( LDAP_DEBUG_ANY,
120                                         "do_modify: invalid modify operation (%ld)\n",
121                                         (long) mop, 0, 0 );
122                                 send_ldap_result( conn, op, LDAP_PROTOCOL_ERROR,
123                                         NULL, "unrecognized modify operation", NULL, NULL );
124                                 rc = LDAP_PROTOCOL_ERROR;
125                                 goto cleanup;
126                         }
127                 }
128
129                 (*modtail)->ml_op = mop;
130                 modtail = &(*modtail)->ml_next;
131         }
132         *modtail = NULL;
133
134         if( (rc = get_ctrls( conn, op, 1 )) != LDAP_SUCCESS ) {
135                 Debug( LDAP_DEBUG_ANY, "do_modify: get_ctrls failed\n", 0, 0, 0 );
136                 goto cleanup;
137         }
138
139         ndn = ch_strdup( dn );
140
141         if(     dn_normalize( ndn ) == NULL ) {
142                 Debug( LDAP_DEBUG_ANY, "do_modify: invalid dn (%s)\n", dn, 0, 0 );
143                 send_ldap_result( conn, op, rc = LDAP_INVALID_DN_SYNTAX, NULL,
144                     "invalid DN", NULL, NULL );
145                 goto cleanup;
146         }
147
148 #ifdef LDAP_DEBUG
149         Debug( LDAP_DEBUG_ARGS, "modifications:\n", 0, 0, 0 );
150         for ( tmp = modlist; tmp != NULL; tmp = tmp->ml_next ) {
151                 Debug( LDAP_DEBUG_ARGS, "\t%s: %s\n",
152                         tmp->ml_op == LDAP_MOD_ADD
153                                 ? "add" : (tmp->ml_op == LDAP_MOD_DELETE
154                                         ? "delete" : "replace"), tmp->ml_type, 0 );
155         }
156 #endif
157
158         Statslog( LDAP_DEBUG_STATS, "conn=%ld op=%d MOD dn=\"%s\"\n",
159             op->o_connid, op->o_opid, dn, 0, 0 );
160
161         /*
162          * We could be serving multiple database backends.  Select the
163          * appropriate one, or send a referral to our "referral server"
164          * if we don't hold it.
165          */
166         if ( (be = select_backend( ndn )) == NULL ) {
167                 send_ldap_result( conn, op, rc = LDAP_REFERRAL,
168                         NULL, NULL, default_referral, NULL );
169                 goto cleanup;
170         }
171
172         /* check restrictions */
173         rc = backend_check_restrictions( be, conn, op, NULL, &text ) ;
174         if( rc != LDAP_SUCCESS ) {
175                 send_ldap_result( conn, op, rc,
176                         NULL, text, NULL, NULL );
177                 goto cleanup;
178         }
179
180         /* check for referrals */
181         rc = backend_check_referrals( be, conn, op, dn, ndn );
182         if ( rc != LDAP_SUCCESS ) {
183                 goto cleanup;
184         }
185
186         /* deref suffix alias if appropriate */
187         ndn = suffix_alias( be, ndn );
188
189         /*
190          * do the modify if 1 && (2 || 3)
191          * 1) there is a modify function implemented in this backend;
192          * 2) this backend is master for what it holds;
193          * 3) it's a replica and the dn supplied is the update_ndn.
194          */
195         if ( be->be_modify ) {
196                 /* do the update here */
197 #ifndef SLAPD_MULTIMASTER
198                 /* we don't have to check for replicator dn
199                  * because we accept each modify request
200                  */
201                 if ( be->be_update_ndn == NULL ||
202                         strcmp( be->be_update_ndn, op->o_ndn ) == 0 )
203 #endif
204                 {
205                         int update = be->be_update_ndn != NULL;
206                         const char *text;
207                         rc = slap_modlist2mods( modlist, update, &mods, &text );
208
209                         if( rc != LDAP_SUCCESS ) {
210                                 send_ldap_result( conn, op, rc,
211                                         NULL, text, NULL, NULL );
212                                 goto cleanup;
213                         }
214
215                         if ( (be->be_lastmod == ON || (be->be_lastmod == UNDEFINED &&
216                                 global_lastmod == ON)) && !update )
217                         {
218                                 Modifications **modstail;
219                                 for( modstail = &mods;
220                                         *modstail != NULL;
221                                         modstail = &(*modstail)->sml_next )
222                                 {
223                                         /* empty */
224                                 }
225                                 rc = slap_mods_opattrs( op, modstail, &text );
226
227                                 if( rc != LDAP_SUCCESS ) {
228                                         send_ldap_result( conn, op, rc,
229                                                 NULL, text,
230                                                 NULL, NULL );
231                                         goto cleanup;
232                                 }
233                         }
234
235                         if ( (*be->be_modify)( be, conn, op, dn, ndn, mods ) == 0 
236 #ifdef SLAPD_MULTIMASTER
237                                 && ( be->be_update_ndn == NULL ||
238                                         strcmp( be->be_update_ndn, op->o_ndn ) != 0 )
239 #endif
240                         ) {
241                                 /* but we log only the ones not from a replicator user */
242                                 replog( be, op, dn, mods );
243                         }
244
245 #ifndef SLAPD_MULTIMASTER
246                 /* send a referral */
247                 } else {
248                         send_ldap_result( conn, op, rc = LDAP_REFERRAL, NULL, NULL,
249                                 be->be_update_refs ? be->be_update_refs : default_referral,
250                                 NULL );
251 #endif
252                 }
253         } else {
254                 send_ldap_result( conn, op, rc = LDAP_UNWILLING_TO_PERFORM,
255                     NULL, "operation not supported within namingContext", NULL, NULL );
256         }
257
258 cleanup:
259         free( dn );
260         if( ndn != NULL ) free( ndn );
261         if ( modlist != NULL )
262                 slap_modlist_free( modlist );
263         if ( mods != NULL )
264                 slap_mods_free( mods );
265         return rc;
266 }
267
268 /*
269  * convert a raw list of modifications to internal format
270  * Do basic attribute type checking and syntax validation.
271  */
272 int slap_modlist2mods(
273         LDAPModList *ml,
274         int update,
275         Modifications **mods,
276         const char **text )
277 {
278         int rc;
279         Modifications **modtail = mods;
280
281         for( ; ml != NULL; ml = ml->ml_next ) {
282                 Modifications *mod;
283                 AttributeDescription *ad = NULL;
284
285                 mod = (Modifications *)
286                         ch_calloc( 1, sizeof(Modifications) );
287
288                 /* copy the op */
289                 mod->sml_op = ml->ml_op;
290
291                 /* convert to attribute description */
292                 rc = slap_str2ad( ml->ml_type, &mod->sml_desc, text );
293
294                 if( rc != LDAP_SUCCESS ) {
295                         slap_mods_free( mod );
296                         return rc;
297                 }
298
299                 ad = mod->sml_desc;
300
301                 if( slap_syntax_is_binary( ad->ad_type->sat_syntax )
302                         && !slap_ad_is_binary( ad ))
303                 {
304                         /* attribute requires binary transfer */
305                         slap_mods_free( mod );
306                         *text = "attribute requires ;binary transfer";
307                         return LDAP_UNDEFINED_TYPE;
308                 }
309
310                 if( !slap_syntax_is_binary( ad->ad_type->sat_syntax )
311                         && slap_ad_is_binary( ad ))
312                 {
313                         /* attribute requires binary transfer */
314                         slap_mods_free( mod );
315                         *text = "attribute disallows ;binary transfer";
316                         return LDAP_UNDEFINED_TYPE;
317                 }
318
319                 if (!update && is_at_no_user_mod( ad->ad_type )) {
320                         /* user modification disallowed */
321                         slap_mods_free( mod );
322                         *text = "no user modification allowed";
323                         return LDAP_CONSTRAINT_VIOLATION;
324                 }
325
326                 /*
327                  * check values
328                  */
329                 if( ml->ml_bvalues != NULL ) {
330                         ber_len_t nvals;
331                         slap_syntax_validate_func *validate =
332                                 ad->ad_type->sat_syntax->ssyn_validate;
333
334                         if( !validate ) {
335                                 Debug( LDAP_DEBUG_TRACE,
336                                         "modlist2mods: no validator for syntax %s\n",
337                                         ad->ad_type->sat_syntax->ssyn_oid, 0, 0 );
338                                 slap_mods_free( mod );
339                                 *text = "no validator for syntax";
340                                 return LDAP_INVALID_SYNTAX;
341                         }
342
343                         /*
344                          * check that each value is valid per syntax
345                          */
346                         for( nvals = 0; ml->ml_bvalues[nvals]; nvals++ ) {
347                                 rc = validate( ad->ad_type->sat_syntax, ml->ml_bvalues[nvals] );
348
349                                 if( rc != 0 ) {
350                                         slap_mods_free( mod );
351                                         *text = "value contains invalid data";
352                                         return LDAP_INVALID_SYNTAX;
353                                 }
354                         }
355
356                         /*
357                          * a rough single value check... an additional check is needed
358                          * to catch add of single value to existing single valued attribute
359                          */
360                         if( ( mod->sml_op == LDAP_MOD_ADD || mod->sml_op == LDAP_MOD_REPLACE )
361                                 && nvals > 1 && is_at_single_value( ad->ad_type ))
362                         {
363                                 slap_mods_free( mod );
364                                 *text = "multiple values provided";
365                                 return LDAP_INVALID_SYNTAX;
366                         }
367                 }
368
369                 mod->sml_bvalues = ml->ml_bvalues;
370                 ml->ml_values = NULL;
371
372                 *modtail = mod;
373                 modtail = &mod->sml_next;
374         }
375
376         return LDAP_SUCCESS;
377 }
378
379 int slap_mods_opattrs(
380         Operation *op,
381         Modifications **modtail,
382         const char **text )
383 {
384         struct berval name, timestamp;
385         time_t now = slap_get_time();
386         char timebuf[22];
387         struct tm *ltm;
388         Modifications *mod;
389
390         int mop = op->o_tag == LDAP_REQ_ADD
391                 ? LDAP_MOD_ADD : LDAP_MOD_REPLACE;
392
393         assert( modtail != NULL );
394         assert( *modtail == NULL );
395
396         ldap_pvt_thread_mutex_lock( &gmtime_mutex );
397         ltm = gmtime( &now );
398         strftime( timebuf, sizeof(timebuf), "%Y%m%d%H%M%SZ", ltm );
399         ldap_pvt_thread_mutex_unlock( &gmtime_mutex );
400         timestamp.bv_val = timebuf;
401         timestamp.bv_len = strlen(timebuf);
402
403         if( op->o_dn == NULL || op->o_dn[0] == '\0' ) {
404                 name.bv_val = SLAPD_ANONYMOUS;
405                 name.bv_len = sizeof(SLAPD_ANONYMOUS)-1;
406         } else {
407                 name.bv_val = op->o_dn;
408                 name.bv_len = strlen( op->o_dn );
409         }
410
411         if( op->o_tag == LDAP_REQ_ADD ) {
412                 mod = (Modifications *) ch_calloc( 1, sizeof( Modifications ) );
413                 mod->sml_op = mop;
414                 mod->sml_desc = ad_dup( slap_schema.si_ad_creatorsName );
415                 mod->sml_bvalues = (struct berval **) malloc( 2 * sizeof( struct berval * ) );
416                 mod->sml_bvalues[0] = ber_bvdup( &name );
417                 mod->sml_bvalues[1] = NULL;
418
419                 *modtail = mod;
420                 modtail = &mod->sml_next;
421
422                 mod = (Modifications *) ch_calloc( 1, sizeof( Modifications ) );
423                 mod->sml_op = mop;
424                 mod->sml_desc = ad_dup( slap_schema.si_ad_createTimestamp );
425                 mod->sml_bvalues = (struct berval **) malloc( 2 * sizeof( struct berval * ) );
426                 mod->sml_bvalues[0] = ber_bvdup( &timestamp );
427                 mod->sml_bvalues[1] = NULL;
428                 *modtail = mod;
429                 modtail = &mod->sml_next;
430         }
431
432         mod = (Modifications *) ch_calloc( 1, sizeof( Modifications ) );
433         mod->sml_op = mop;
434         mod->sml_desc = ad_dup( slap_schema.si_ad_modifiersName );
435         mod->sml_bvalues = (struct berval **) malloc( 2 * sizeof( struct berval * ) );
436         mod->sml_bvalues[0] = ber_bvdup( &name );
437         mod->sml_bvalues[1] = NULL;
438         *modtail = mod;
439         modtail = &mod->sml_next;
440
441         mod = (Modifications *) ch_calloc( 1, sizeof( Modifications ) );
442         mod->sml_op = mop;
443         mod->sml_desc = ad_dup( slap_schema.si_ad_modifyTimestamp );
444         mod->sml_bvalues = (struct berval **) malloc( 2 * sizeof( struct berval * ) );
445         mod->sml_bvalues[0] = ber_bvdup( &timestamp );
446         mod->sml_bvalues[1] = NULL;
447         *modtail = mod;
448         modtail = &mod->sml_next;
449
450         return LDAP_SUCCESS;
451 }
452
453
454 void
455 slap_mod_free(
456         Modification    *mod,
457         int                             freeit
458 )
459 {
460         ad_free( mod->sm_desc, 1 );
461
462         if ( mod->sm_bvalues != NULL )
463                 ber_bvecfree( mod->sm_bvalues );
464
465         if( freeit )
466                 free( mod );
467 }
468
469 void
470 slap_mods_free(
471     Modifications       *ml
472 )
473 {
474         Modifications *next;
475
476         for ( ; ml != NULL; ml = next ) {
477                 next = ml->sml_next;
478
479                 slap_mod_free( &ml->sml_mod, 0 );
480                 free( ml );
481         }
482 }
483
484 void
485 slap_modlist_free(
486     LDAPModList *ml
487 )
488 {
489         LDAPModList *next;
490
491         for ( ; ml != NULL; ml = next ) {
492                 next = ml->ml_next;
493
494                 if (ml->ml_type)
495                         free( ml->ml_type );
496
497                 if ( ml->ml_bvalues != NULL )
498                         ber_bvecfree( ml->ml_bvalues );
499
500                 free( ml );
501         }
502 }