]> git.sur5r.net Git - openldap/blob - servers/slapd/modify.c
Use a separate mutex for the replication timestamp
[openldap] / servers / slapd / modify.c
1 /* $OpenLDAP$ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
3  *
4  * Copyright 1998-2003 The OpenLDAP Foundation.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted only as authorized by the OpenLDAP
9  * Public License.
10  *
11  * A copy of this license is available in the file LICENSE in the
12  * top-level directory of the distribution or, alternatively, at
13  * <http://www.OpenLDAP.org/license.html>.
14  */
15 /* Portions Copyright (c) 1995 Regents of the University of Michigan.
16  * All rights reserved.
17  *
18  * Redistribution and use in source and binary forms are permitted
19  * provided that this notice is preserved and that due credit is given
20  * to the University of Michigan at Ann Arbor. The name of the University
21  * may not be used to endorse or promote products derived from this
22  * software without specific prior written permission. This software
23  * is provided ``as is'' without express or implied warranty.
24  */
25
26 #include "portable.h"
27
28 #include <stdio.h>
29
30 #include <ac/socket.h>
31 #include <ac/string.h>
32 #include <ac/time.h>
33
34 #include "ldap_pvt.h"
35 #include "slap.h"
36 #ifdef LDAP_SLAPI
37 #include "slapi.h"
38 #endif
39 #include "lutil.h"
40
41
42 int
43 do_modify(
44     Operation   *op,
45     SlapReply   *rs )
46 {
47         struct berval dn = { 0, NULL };
48         char            *last;
49         ber_tag_t       tag;
50         ber_len_t       len;
51         Modifications   *modlist = NULL;
52         Modifications   **modtail = &modlist;
53 #ifdef LDAP_DEBUG
54         Modifications *tmp;
55 #endif
56 #ifdef LDAP_SLAPI
57         LDAPMod         **modv = NULL;
58 #endif
59         int manageDSAit;
60         int increment = 0;
61
62 #ifdef NEW_LOGGING
63         LDAP_LOG( OPERATION, ENTRY, "do_modify: enter\n", 0, 0, 0 );
64 #else
65         Debug( LDAP_DEBUG_TRACE, "do_modify\n", 0, 0, 0 );
66 #endif
67
68         /*
69          * Parse the modify request.  It looks like this:
70          *
71          *      ModifyRequest := [APPLICATION 6] SEQUENCE {
72          *              name    DistinguishedName,
73          *              mods    SEQUENCE OF SEQUENCE {
74          *                      operation       ENUMERATED {
75          *                              add     (0),
76          *                              delete  (1),
77          *                              replace (2)
78          *                      },
79          *                      modification    SEQUENCE {
80          *                              type    AttributeType,
81          *                              values  SET OF AttributeValue
82          *                      }
83          *              }
84          *      }
85          */
86
87         if ( ber_scanf( op->o_ber, "{m" /*}*/, &dn ) == LBER_ERROR ) {
88 #ifdef NEW_LOGGING
89                 LDAP_LOG( OPERATION, ERR, "do_modify: ber_scanf failed\n", 0, 0, 0 );
90 #else
91                 Debug( LDAP_DEBUG_ANY, "do_modify: ber_scanf failed\n", 0, 0, 0 );
92 #endif
93
94                 send_ldap_discon( op, rs, LDAP_PROTOCOL_ERROR, "decoding error" );
95                 return SLAPD_DISCONNECT;
96         }
97
98 #ifdef NEW_LOGGING
99         LDAP_LOG( OPERATION, ARGS, "do_modify: dn (%s)\n", dn.bv_val, 0, 0 );
100 #else
101         Debug( LDAP_DEBUG_ARGS, "do_modify: dn (%s)\n", dn.bv_val, 0, 0 );
102 #endif
103
104
105         /* collect modifications & save for later */
106
107         for ( tag = ber_first_element( op->o_ber, &len, &last );
108             tag != LBER_DEFAULT;
109             tag = ber_next_element( op->o_ber, &len, last ) )
110         {
111                 ber_int_t mop;
112                 Modifications tmp, *mod;
113
114                 tmp.sml_nvalues = NULL;
115
116                 if ( ber_scanf( op->o_ber, "{i{m[W]}}", &mop,
117                     &tmp.sml_type, &tmp.sml_values )
118                     == LBER_ERROR )
119                 {
120                         send_ldap_discon( op, rs, LDAP_PROTOCOL_ERROR, "decoding modlist error" );
121                         rs->sr_err = SLAPD_DISCONNECT;
122                         goto cleanup;
123                 }
124
125                 mod = (Modifications *) ch_malloc( sizeof(Modifications) );
126                 mod->sml_op = mop;
127                 mod->sml_type = tmp.sml_type;
128                 mod->sml_values = tmp.sml_values;
129                 mod->sml_nvalues = NULL;
130                 mod->sml_desc = NULL;
131                 mod->sml_next = NULL;
132                 *modtail = mod;
133
134                 switch( mop ) {
135                 case LDAP_MOD_ADD:
136                         if ( mod->sml_values == NULL ) {
137 #ifdef NEW_LOGGING
138                                 LDAP_LOG( OPERATION, ERR, 
139                                         "do_modify: modify/add operation (%ld) requires values\n",
140                                         (long)mop, 0, 0 );
141 #else
142                                 Debug( LDAP_DEBUG_ANY,
143                                         "do_modify: modify/add operation (%ld) requires values\n",
144                                         (long) mop, 0, 0 );
145 #endif
146
147                                 send_ldap_error( op, rs, LDAP_PROTOCOL_ERROR,
148                                         "modify/add operation requires values" );
149                                 goto cleanup;
150                         }
151
152                         /* fall through */
153
154                 case LDAP_MOD_DELETE:
155                 case LDAP_MOD_REPLACE:
156                         break;
157
158                 case LDAP_MOD_INCREMENT:
159                         if( op->o_protocol >= LDAP_VERSION3 ) {
160                                 increment++;
161                                 if ( mod->sml_values == NULL ) {
162 #ifdef NEW_LOGGING
163                                         LDAP_LOG( OPERATION, ERR, "do_modify: "
164                                                 "modify/increment operation (%ld) requires value\n",
165                                                 (long)mop, 0, 0 );
166 #else
167                                         Debug( LDAP_DEBUG_ANY, "do_modify: "
168                                                 "modify/increment operation (%ld) requires value\n",
169                                                 (long) mop, 0, 0 );
170 #endif
171
172                                         send_ldap_error( op, rs, LDAP_PROTOCOL_ERROR,
173                                                 "modify/increment operation requires value" );
174                                         goto cleanup;
175                                 }
176
177                                 if( mod->sml_values[1].bv_val ) {
178 #ifdef NEW_LOGGING
179                                         LDAP_LOG( OPERATION, ERR, "do_modify: modify/increment "
180                                                 "operation (%ld) requires single value\n",
181                                                 (long)mop, 0, 0 );
182 #else
183                                         Debug( LDAP_DEBUG_ANY, "do_modify: modify/increment "
184                                                 "operation (%ld) requires single value\n",
185                                                 (long) mop, 0, 0 );
186 #endif
187
188                                         send_ldap_error( op, rs, LDAP_PROTOCOL_ERROR,
189                                                 "modify/increment operation requires single value" );
190                                         goto cleanup;
191                                 }
192
193                                 break;
194                         }
195                         /* fall thru */
196
197                 default: {
198 #ifdef NEW_LOGGING
199                                 LDAP_LOG( OPERATION, ERR, 
200                                         "do_modify: unrecognized modify operation (%ld)\n",
201                                         (long)mop, 0, 0 );
202 #else
203                                 Debug( LDAP_DEBUG_ANY,
204                                         "do_modify: unrecognized modify operation (%ld)\n",
205                                         (long) mop, 0, 0 );
206 #endif
207
208                                 send_ldap_error( op, rs, LDAP_PROTOCOL_ERROR,
209                                         "unrecognized modify operation" );
210                                 goto cleanup;
211                         }
212                 }
213
214                 modtail = &mod->sml_next;
215         }
216         *modtail = NULL;
217
218         if( get_ctrls( op, rs, 1 ) != LDAP_SUCCESS ) {
219 #ifdef NEW_LOGGING
220                 LDAP_LOG( OPERATION, ERR, "do_modify: get_ctrls failed\n", 0, 0, 0 );
221 #else
222                 Debug( LDAP_DEBUG_ANY, "do_modify: get_ctrls failed\n", 0, 0, 0 );
223 #endif
224
225                 goto cleanup;
226         }
227
228         rs->sr_err = dnPrettyNormal( NULL, &dn, &op->o_req_dn, &op->o_req_ndn,
229                 op->o_tmpmemctx );
230         if( rs->sr_err != LDAP_SUCCESS ) {
231 #ifdef NEW_LOGGING
232                 LDAP_LOG( OPERATION, INFO, "do_modify: conn %d  invalid dn (%s)\n",
233                         op->o_connid, dn.bv_val, 0 );
234 #else
235                 Debug( LDAP_DEBUG_ANY,
236                         "do_modify: invalid dn (%s)\n", dn.bv_val, 0, 0 );
237 #endif
238                 send_ldap_error( op, rs, LDAP_INVALID_DN_SYNTAX, "invalid DN" );
239                 goto cleanup;
240         }
241
242         if( op->o_req_ndn.bv_len == 0 ) {
243 #ifdef NEW_LOGGING
244                 LDAP_LOG( OPERATION, ERR, 
245                         "do_modify: attempt to modify root DSE.\n",0, 0, 0 );
246 #else
247                 Debug( LDAP_DEBUG_ANY, "do_modify: root dse!\n", 0, 0, 0 );
248 #endif
249
250                 send_ldap_error( op, rs, LDAP_UNWILLING_TO_PERFORM,
251                         "modify upon the root DSE not supported" );
252                 goto cleanup;
253
254         } else if ( bvmatch( &op->o_req_ndn, &global_schemandn ) ) {
255 #ifdef NEW_LOGGING
256                 LDAP_LOG( OPERATION, ERR,
257                         "do_modify: attempt to modify subschema subentry.\n" , 0, 0, 0  );
258 #else
259                 Debug( LDAP_DEBUG_ANY, "do_modify: subschema subentry!\n", 0, 0, 0 );
260 #endif
261
262                 send_ldap_error( op, rs, LDAP_UNWILLING_TO_PERFORM,
263                         "modification of subschema subentry not supported" );
264                 goto cleanup;
265         }
266
267 #ifdef LDAP_DEBUG
268 #ifdef NEW_LOGGING
269         LDAP_LOG( OPERATION, DETAIL1, "do_modify: modifications:\n", 0, 0, 0  );
270 #else
271         Debug( LDAP_DEBUG_ARGS, "modifications:\n", 0, 0, 0 );
272 #endif
273
274         for ( tmp = modlist; tmp != NULL; tmp = tmp->sml_next ) {
275 #ifdef NEW_LOGGING
276                 LDAP_LOG( OPERATION, DETAIL1, "\t%s:  %s\n", 
277                         tmp->sml_op == LDAP_MOD_ADD ? "add" :
278                                 (tmp->sml_op == LDAP_MOD_INCREMENT ? "increment" :
279                                         (tmp->sml_op == LDAP_MOD_DELETE ? "delete" :
280                                                 "replace")), tmp->sml_type.bv_val, 0 );
281
282                 if ( tmp->sml_values == NULL ) {
283                         LDAP_LOG( OPERATION, DETAIL1, "\t\tno values", 0, 0, 0 );
284                 } else if ( tmp->sml_values[0].bv_val == NULL ) {
285                         LDAP_LOG( OPERATION, DETAIL1, "\t\tzero values", 0, 0, 0 );
286                 } else if ( tmp->sml_values[1].bv_val == NULL ) {
287                         LDAP_LOG( OPERATION, DETAIL1, "\t\tone value", 0, 0, 0 );
288                 } else {
289                         LDAP_LOG( OPERATION, DETAIL1, "\t\tmultiple values", 0, 0, 0 );
290                 }
291
292 #else
293                 Debug( LDAP_DEBUG_ARGS, "\t%s: %s\n",
294                         tmp->sml_op == LDAP_MOD_ADD ? "add" :
295                                 (tmp->sml_op == LDAP_MOD_INCREMENT ? "increment" :
296                                 (tmp->sml_op == LDAP_MOD_DELETE ? "delete" :
297                                         "replace")), tmp->sml_type.bv_val, 0 );
298
299                 if ( tmp->sml_values == NULL ) {
300                         Debug( LDAP_DEBUG_ARGS, "%s\n",
301                            "\t\tno values", NULL, NULL );
302                 } else if ( tmp->sml_values[0].bv_val == NULL ) {
303                         Debug( LDAP_DEBUG_ARGS, "%s\n",
304                            "\t\tzero values", NULL, NULL );
305                 } else if ( tmp->sml_values[1].bv_val == NULL ) {
306                         Debug( LDAP_DEBUG_ARGS, "%s, length %ld\n",
307                            "\t\tone value", (long) tmp->sml_values[0].bv_len, NULL );
308                 } else {
309                         Debug( LDAP_DEBUG_ARGS, "%s\n",
310                            "\t\tmultiple values", NULL, NULL );
311                 }
312 #endif
313         }
314
315         if ( StatslogTest( LDAP_DEBUG_STATS ) ) {
316                 char abuf[BUFSIZ/2], *ptr = abuf;
317                 int len = 0;
318
319                 Statslog( LDAP_DEBUG_STATS, "conn=%lu op=%lu MOD dn=\"%s\"\n",
320                         op->o_connid, op->o_opid, dn.bv_val, 0, 0 );
321
322                 for ( tmp = modlist; tmp != NULL; tmp = tmp->sml_next ) {
323                         if (len + 1 + tmp->sml_type.bv_len > sizeof(abuf)) {
324                                 Statslog( LDAP_DEBUG_STATS, "conn=%lu op=%lu MOD attr=%s\n",
325                                     op->o_connid, op->o_opid, abuf, 0, 0 );
326
327                         len = 0;
328                                 ptr = abuf;
329
330                                 if( 1 + tmp->sml_type.bv_len > sizeof(abuf)) {
331                                         Statslog( LDAP_DEBUG_STATS, "conn=%lu op=%lu MOD attr=%s\n",
332                                                 op->o_connid, op->o_opid, tmp->sml_type.bv_val, 0, 0 );
333                                         continue;
334                                 }
335                         }
336                         if (len) {
337                                 *ptr++ = ' ';
338                                 len++;
339                         }
340                         ptr = lutil_strcopy(ptr, tmp->sml_type.bv_val);
341                         len += tmp->sml_type.bv_len;
342                 }
343                 if (len) {
344                         Statslog( LDAP_DEBUG_STATS, "conn=%lu op=%lu MOD attr=%s\n",
345                                 op->o_connid, op->o_opid, abuf, 0, 0 );
346                 }
347         }
348 #endif  /* LDAP_DEBUG */
349
350         manageDSAit = get_manageDSAit( op );
351
352         /*
353          * We could be serving multiple database backends.  Select the
354          * appropriate one, or send a referral to our "referral server"
355          * if we don't hold it.
356          */
357         op->o_bd = select_backend( &op->o_req_ndn, manageDSAit, 0 );
358         if ( op->o_bd == NULL ) {
359                 rs->sr_ref = referral_rewrite( default_referral,
360                         NULL, &op->o_req_dn, LDAP_SCOPE_DEFAULT );
361                 if (!rs->sr_ref) rs->sr_ref = default_referral;
362
363                 if (rs->sr_ref != NULL ) {
364                         rs->sr_err = LDAP_REFERRAL;
365                         send_ldap_result( op, rs );
366
367                         if (rs->sr_ref != default_referral) ber_bvarray_free( rs->sr_ref );
368                 } else {
369                         send_ldap_error( op, rs, LDAP_UNWILLING_TO_PERFORM,
370                                 "referral missing" );
371                 }
372                 goto cleanup;
373         }
374
375         /* check restrictions */
376         if( backend_check_restrictions( op, rs, NULL ) != LDAP_SUCCESS ) {
377                 send_ldap_result( op, rs );
378                 goto cleanup;
379         }
380
381         /* check for referrals */
382         if( backend_check_referrals( op, rs ) != LDAP_SUCCESS ) {
383                 goto cleanup;
384         }
385
386         /* check for modify/increment support */
387         if( increment && !SLAP_INCREMENT( op->o_bd ) ) {
388                 send_ldap_error( op, rs, LDAP_UNWILLING_TO_PERFORM,
389                         "modify/increment not supported in context" );
390         }
391
392 #if defined( LDAP_SLAPI )
393 #define pb      op->o_pb
394         if ( pb ) {
395                 slapi_int_pblock_set_operation( pb, op );
396                 slapi_pblock_set( pb, SLAPI_MODIFY_TARGET, (void *)dn.bv_val );
397                 slapi_pblock_set( pb, SLAPI_MANAGEDSAIT, (void *)manageDSAit );
398                 modv = slapi_int_modifications2ldapmods( &modlist );
399                 slapi_pblock_set( pb, SLAPI_MODIFY_MODS, (void *)modv );
400
401                 rs->sr_err = doPluginFNs( op->o_bd, SLAPI_PLUGIN_PRE_MODIFY_FN, pb );
402                 if ( rs->sr_err < 0 ) {
403                         /*
404                          * A preoperation plugin failure will abort the
405                          * entire operation.
406                          */
407 #ifdef NEW_LOGGING
408                         LDAP_LOG( OPERATION, INFO, "do_modify: modify preoperation plugin "
409                                         "failed\n", 0, 0, 0 );
410 #else
411                         Debug(LDAP_DEBUG_TRACE, "do_modify: modify preoperation plugin failed.\n",
412                                         0, 0, 0);
413 #endif
414                         if ( ( slapi_pblock_get( op->o_pb, SLAPI_RESULT_CODE, (void *)&rs->sr_err ) != 0 )  ||
415                                  rs->sr_err == LDAP_SUCCESS ) {
416                                 rs->sr_err = LDAP_OTHER;
417                         }
418                         slapi_int_free_ldapmods( modv );
419                         modv = NULL;
420                         goto cleanup;
421                 }
422
423                 /*
424                  * It's possible that the preoperation plugin changed the
425                  * modification array, so we need to convert it back to
426                  * a Modification list.
427                  *
428                  * Calling slapi_int_modifications2ldapmods() destroyed modlist so
429                  * we don't need to free it.
430                  */
431                 slapi_pblock_get( pb, SLAPI_MODIFY_MODS, (void **)&modv );
432                 modlist = slapi_int_ldapmods2modifications( modv );
433         }
434
435         /*
436          * NB: it is valid for the plugin to return no modifications
437          * (for example, a plugin might store some attributes elsewhere
438          * and remove them from the modification list; if only those
439          * attribute types were included in the modification request,
440          * then slapi_int_ldapmods2modifications() above will return
441          * NULL).
442          *
443          * However, the post-operation plugin should still be 
444          * called.
445          */
446         if ( modlist == NULL ) {
447                 rs->sr_err = LDAP_SUCCESS;
448                 send_ldap_result( op, rs );
449         } else {
450 #endif /* defined( LDAP_SLAPI ) */
451
452         /*
453          * do the modify if 1 && (2 || 3)
454          * 1) there is a modify function implemented in this backend;
455          * 2) this backend is master for what it holds;
456          * 3) it's a replica and the dn supplied is the update_ndn.
457          */
458         if ( op->o_bd->be_modify ) {
459                 /* do the update here */
460                 int repl_user = be_isupdate( op->o_bd, &op->o_ndn );
461
462                 /* Multimaster slapd does not have to check for replicator dn
463                  * because it accepts each modify request
464                  */
465 #ifndef SLAPD_MULTIMASTER
466                 if ( LDAP_STAILQ_EMPTY( &op->o_bd->be_syncinfo ) &&
467                         ( !op->o_bd->be_update_ndn.bv_len || repl_user ))
468 #else
469                 if ( LDAP_STAILQ_EMPTY( &op->o_bd->be_syncinfo ))
470 #endif
471                 {
472                         int update = op->o_bd->be_update_ndn.bv_len;
473                         char textbuf[SLAP_TEXT_BUFLEN];
474                         size_t textlen = sizeof textbuf;
475
476                         rs->sr_err = slap_mods_check( modlist, update, &rs->sr_text,
477                                 textbuf, textlen, NULL );
478
479                         if( rs->sr_err != LDAP_SUCCESS ) {
480                                 send_ldap_result( op, rs );
481                                 goto cleanup;
482                         }
483
484                         if ( !repl_user ) {
485                                 for( modtail = &modlist;
486                                         *modtail != NULL;
487                                         modtail = &(*modtail)->sml_next )
488                                 {
489                                         /* empty */
490                                 }
491
492                                 rs->sr_err = slap_mods_opattrs( op, modlist, modtail,
493                                         &rs->sr_text, textbuf, textlen );
494                                 if( rs->sr_err != LDAP_SUCCESS ) {
495                                         send_ldap_result( op, rs );
496                                         goto cleanup;
497                                 }
498                         }
499
500                         op->orm_modlist = modlist;
501                         repstamp( op );
502                         if ( (op->o_bd->be_modify)( op, rs ) == 0
503 #ifdef SLAPD_MULTIMASTER
504                                 && !repl_user
505 #endif
506                         ) {
507                                 /* but we log only the ones not from a replicator user */
508                                 replog( op );
509                         }
510
511 #ifndef SLAPD_MULTIMASTER
512                 /* send a referral */
513                 } else {
514                         BerVarray defref = NULL;
515                         if ( !LDAP_STAILQ_EMPTY( &op->o_bd->be_syncinfo )) {
516                                 syncinfo_t *si;
517                                 LDAP_STAILQ_FOREACH( si, &op->o_bd->be_syncinfo, si_next ) {
518                                         struct berval tmpbv;
519                                         ber_dupbv( &tmpbv, &si->si_provideruri_bv[0] );
520                                         ber_bvarray_add( &defref, &tmpbv );
521                                 }
522                         } else {
523                                 defref = op->o_bd->be_update_refs
524                                                 ? op->o_bd->be_update_refs : default_referral;
525                         }
526                         if ( defref != NULL ) {
527                                 rs->sr_ref = referral_rewrite( defref,
528                                         NULL, &op->o_req_dn,
529                                         LDAP_SCOPE_DEFAULT );
530                                 if (!rs->sr_ref) rs->sr_ref = defref;
531                                 rs->sr_err = LDAP_REFERRAL;
532                                 send_ldap_result( op, rs );
533                                 if (rs->sr_ref != defref) {
534                                         ber_bvarray_free( rs->sr_ref );
535                                 }
536                         } else {
537                                 send_ldap_error( op, rs,
538                                                 LDAP_UNWILLING_TO_PERFORM,
539                                                 "referral missing" );
540                         }
541 #endif
542                 }
543         } else {
544                 send_ldap_error( op, rs, LDAP_UNWILLING_TO_PERFORM,
545                     "operation not supported within namingContext" );
546         }
547
548 #if defined( LDAP_SLAPI )
549         } /* modlist != NULL */
550
551         if ( pb && doPluginFNs( op->o_bd, SLAPI_PLUGIN_POST_MODIFY_FN, pb ) < 0 ) {
552 #ifdef NEW_LOGGING
553                 LDAP_LOG( OPERATION, INFO, "do_modify: modify postoperation plugins "
554                                 "failed\n", 0, 0, 0 );
555 #else
556                 Debug(LDAP_DEBUG_TRACE, "do_modify: modify postoperation plugins "
557                                 "failed.\n", 0, 0, 0);
558 #endif
559         }
560 #endif /* defined( LDAP_SLAPI ) */
561
562 cleanup:
563
564         slap_graduate_commit_csn( op );
565
566         op->o_tmpfree( op->o_req_dn.bv_val, op->o_tmpmemctx );
567         op->o_tmpfree( op->o_req_ndn.bv_val, op->o_tmpmemctx );
568         if ( modlist != NULL ) slap_mods_free( modlist );
569 #if defined( LDAP_SLAPI )
570         if ( modv != NULL ) slapi_int_free_ldapmods( modv );
571 #endif
572         return rs->sr_err;
573 }
574
575 /*
576  * Do basic attribute type checking and syntax validation.
577  */
578 int slap_mods_check(
579         Modifications *ml,
580         int update,
581         const char **text,
582         char *textbuf,
583         size_t textlen,
584         void *ctx )
585 {
586         int rc;
587
588         for( ; ml != NULL; ml = ml->sml_next ) {
589                 AttributeDescription *ad = NULL;
590
591                 /* convert to attribute description */
592                 rc = slap_bv2ad( &ml->sml_type, &ml->sml_desc, text );
593
594                 if( rc != LDAP_SUCCESS ) {
595                         snprintf( textbuf, textlen, "%s: %s",
596                                 ml->sml_type.bv_val, *text );
597                         *text = textbuf;
598                         return rc;
599                 }
600
601                 ad = ml->sml_desc;
602
603                 if( slap_syntax_is_binary( ad->ad_type->sat_syntax )
604                         && !slap_ad_is_binary( ad ))
605                 {
606                         /* attribute requires binary transfer */
607                         snprintf( textbuf, textlen,
608                                 "%s: requires ;binary transfer",
609                                 ml->sml_type.bv_val );
610                         *text = textbuf;
611                         return LDAP_UNDEFINED_TYPE;
612                 }
613
614                 if( !slap_syntax_is_binary( ad->ad_type->sat_syntax )
615                         && slap_ad_is_binary( ad ))
616                 {
617                         /* attribute requires binary transfer */
618                         snprintf( textbuf, textlen,
619                                 "%s: disallows ;binary transfer",
620                                 ml->sml_type.bv_val );
621                         *text = textbuf;
622                         return LDAP_UNDEFINED_TYPE;
623                 }
624
625                 if( slap_ad_is_tag_range( ad )) {
626                         /* attribute requires binary transfer */
627                         snprintf( textbuf, textlen,
628                                 "%s: inappropriate use of tag range option",
629                                 ml->sml_type.bv_val );
630                         *text = textbuf;
631                         return LDAP_UNDEFINED_TYPE;
632                 }
633
634                 if (!update && is_at_no_user_mod( ad->ad_type )) {
635                         /* user modification disallowed */
636                         snprintf( textbuf, textlen,
637                                 "%s: no user modification allowed",
638                                 ml->sml_type.bv_val );
639                         *text = textbuf;
640                         return LDAP_CONSTRAINT_VIOLATION;
641                 }
642
643                 if ( is_at_obsolete( ad->ad_type ) &&
644                         (( ml->sml_op != LDAP_MOD_REPLACE &&
645                                 ml->sml_op != LDAP_MOD_DELETE ) ||
646                                         ml->sml_values != NULL ))
647                 {
648                         /*
649                          * attribute is obsolete,
650                          * only allow replace/delete with no values
651                          */
652                         snprintf( textbuf, textlen,
653                                 "%s: attribute is obsolete",
654                                 ml->sml_type.bv_val );
655                         *text = textbuf;
656                         return LDAP_CONSTRAINT_VIOLATION;
657                 }
658
659                 if ( ml->sml_op == LDAP_MOD_INCREMENT &&
660 #ifdef SLAPD_REAL_SYNTAX
661                         !is_at_syntax( ad->ad_type, SLAPD_REAL_SYNTAX ) &&
662 #endif
663                         !is_at_syntax( ad->ad_type, SLAPD_INTEGER_SYNTAX ) )
664                 {
665                         /*
666                          * attribute values must be INTEGER or REAL
667                          */
668                         snprintf( textbuf, textlen,
669                                 "%s: attribute syntax inappropriate for increment",
670                                 ml->sml_type.bv_val );
671                         *text = textbuf;
672                         return LDAP_CONSTRAINT_VIOLATION;
673                 }
674
675                 /*
676                  * check values
677                  */
678                 if( ml->sml_values != NULL ) {
679                         ber_len_t nvals;
680                         slap_syntax_validate_func *validate =
681                                 ad->ad_type->sat_syntax->ssyn_validate;
682                         slap_syntax_transform_func *pretty =
683                                 ad->ad_type->sat_syntax->ssyn_pretty;
684  
685                         if( !pretty && !validate ) {
686                                 *text = "no validator for syntax";
687                                 snprintf( textbuf, textlen,
688                                         "%s: no validator for syntax %s",
689                                         ml->sml_type.bv_val,
690                                         ad->ad_type->sat_syntax->ssyn_oid );
691                                 *text = textbuf;
692                                 return LDAP_INVALID_SYNTAX;
693                         }
694
695                         /*
696                          * check that each value is valid per syntax
697                          *      and pretty if appropriate
698                          */
699                         for( nvals = 0; ml->sml_values[nvals].bv_val; nvals++ ) {
700                                 struct berval pval;
701                                 if( pretty ) {
702                                         rc = pretty( ad->ad_type->sat_syntax,
703                                                 &ml->sml_values[nvals], &pval, ctx );
704                                 } else {
705                                         rc = validate( ad->ad_type->sat_syntax,
706                                                 &ml->sml_values[nvals] );
707                                 }
708
709                                 if( rc != 0 ) {
710                                         snprintf( textbuf, textlen,
711                                                 "%s: value #%ld invalid per syntax",
712                                                 ml->sml_type.bv_val, (long) nvals );
713                                         *text = textbuf;
714                                         return LDAP_INVALID_SYNTAX;
715                                 }
716
717                                 if( pretty ) {
718                                         ber_memfree_x( ml->sml_values[nvals].bv_val, ctx );
719                                         ml->sml_values[nvals] = pval;
720                                 }
721                         }
722
723                         /*
724                          * a rough single value check... an additional check is needed
725                          * to catch add of single value to existing single valued attribute
726                          */
727                         if ((ml->sml_op == LDAP_MOD_ADD || ml->sml_op == LDAP_MOD_REPLACE)
728                                 && nvals > 1 && is_at_single_value( ad->ad_type ))
729                         {
730                                 snprintf( textbuf, textlen,
731                                         "%s: multiple values provided",
732                                         ml->sml_type.bv_val );
733                                 *text = textbuf;
734                                 return LDAP_CONSTRAINT_VIOLATION;
735                         }
736
737                         /* if the type has a normalizer, generate the
738                          * normalized values. otherwise leave them NULL.
739                          *
740                          * this is different from the rule for attributes
741                          * in an entry - in an attribute list, the normalized
742                          * value is set equal to the non-normalized value
743                          * when there is no normalizer.
744                          */
745                         if( nvals && ad->ad_type->sat_equality &&
746                                 ad->ad_type->sat_equality->smr_normalize )
747                         {
748                                 ml->sml_nvalues = ber_memalloc_x(
749                                         (nvals+1)*sizeof(struct berval), ctx );
750
751                                 for( nvals = 0; ml->sml_values[nvals].bv_val; nvals++ ) {
752                                         rc = ad->ad_type->sat_equality->smr_normalize(
753                                                 SLAP_MR_VALUE_OF_ATTRIBUTE_SYNTAX,
754                                                 ad->ad_type->sat_syntax,
755                                                 ad->ad_type->sat_equality,
756                                                 &ml->sml_values[nvals], &ml->sml_nvalues[nvals], ctx );
757                                         if( rc ) {
758 #ifdef NEW_LOGGING
759                                                 LDAP_LOG( OPERATION, DETAIL1,
760                                                         "str2entry:  NULL (ssyn_normalize %d)\n",
761                                                         rc, 0, 0 );
762 #else
763                                                 Debug( LDAP_DEBUG_ANY,
764                                                         "<= str2entry NULL (ssyn_normalize %d)\n",
765                                                         rc, 0, 0 );
766 #endif
767                                                 snprintf( textbuf, textlen,
768                                                         "%s: value #%ld normalization failed",
769                                                         ml->sml_type.bv_val, (long) nvals );
770                                                 *text = textbuf;
771                                                 return rc;
772                                         }
773                                 }
774
775                                 ml->sml_nvalues[nvals].bv_val = NULL;
776                                 ml->sml_nvalues[nvals].bv_len = 0;
777                         }
778                 }
779         }
780
781         return LDAP_SUCCESS;
782 }
783
784 int slap_mods_opattrs(
785         Operation *op,
786         Modifications *mods,
787         Modifications **modtail,
788         const char **text,
789         char *textbuf, size_t textlen )
790 {
791         struct berval name, timestamp, csn;
792         struct berval nname;
793         char timebuf[ LDAP_LUTIL_GENTIME_BUFSIZE ];
794         char csnbuf[ LDAP_LUTIL_CSNSTR_BUFSIZE ];
795         Modifications *mod;
796
797         int mop = op->o_tag == LDAP_REQ_ADD
798                 ? LDAP_MOD_ADD : LDAP_MOD_REPLACE;
799
800         assert( modtail != NULL );
801         assert( *modtail == NULL );
802
803         if ( SLAP_LASTMOD( op->o_bd )) {
804                 struct tm *ltm;
805 #ifdef HAVE_GMTIME_R
806                 struct tm ltm_buf;
807 #endif
808                 time_t now = slap_get_time();
809
810 #ifdef HAVE_GMTIME_R
811                 ltm = gmtime_r( &now, &ltm_buf );
812 #else
813                 ldap_pvt_thread_mutex_lock( &gmtime_mutex );
814                 ltm = gmtime( &now );
815 #endif /* HAVE_GMTIME_R */
816                 lutil_gentime( timebuf, sizeof(timebuf), ltm );
817
818                 slap_get_csn( op, csnbuf, sizeof(csnbuf), &csn, 1 );
819
820 #ifndef HAVE_GMTIME_R
821                 ldap_pvt_thread_mutex_unlock( &gmtime_mutex );
822 #endif
823
824                 timestamp.bv_val = timebuf;
825                 timestamp.bv_len = strlen(timebuf);
826
827                 if( op->o_dn.bv_len == 0 ) {
828                         name.bv_val = SLAPD_ANONYMOUS;
829                         name.bv_len = sizeof(SLAPD_ANONYMOUS)-1;
830                         nname = name;
831                 } else {
832                         name = op->o_dn;
833                         nname = op->o_ndn;
834                 }
835         }
836
837         if( op->o_tag == LDAP_REQ_ADD ) {
838                 struct berval tmpval;
839
840                 if( global_schemacheck ) {
841                         int rc = mods_structural_class( mods, &tmpval,
842                                 text, textbuf, textlen );
843                         if( rc != LDAP_SUCCESS ) return rc;
844
845                         mod = (Modifications *) ch_malloc( sizeof( Modifications ) );
846                         mod->sml_op = mop;
847                         mod->sml_type.bv_val = NULL;
848                         mod->sml_desc = slap_schema.si_ad_structuralObjectClass;
849                         mod->sml_values =
850                                 (BerVarray) ch_malloc( 2 * sizeof( struct berval ) );
851                         ber_dupbv( &mod->sml_values[0], &tmpval );
852                         mod->sml_values[1].bv_len = 0;
853                         mod->sml_values[1].bv_val = NULL;
854                         assert( mod->sml_values[0].bv_val );
855                         mod->sml_nvalues =
856                                 (BerVarray) ch_malloc( 2 * sizeof( struct berval ) );
857                         ber_dupbv( &mod->sml_nvalues[0], &tmpval );
858                         mod->sml_nvalues[1].bv_len = 0;
859                         mod->sml_nvalues[1].bv_val = NULL;
860                         assert( mod->sml_nvalues[0].bv_val );
861                         *modtail = mod;
862                         modtail = &mod->sml_next;
863                 }
864
865                 if ( SLAP_LASTMOD( op->o_bd )) {
866                         char uuidbuf[ LDAP_LUTIL_UUIDSTR_BUFSIZE ];
867
868                         tmpval.bv_len = lutil_uuidstr( uuidbuf, sizeof( uuidbuf ) );
869                         tmpval.bv_val = uuidbuf;
870                 
871                         mod = (Modifications *) ch_malloc( sizeof( Modifications ) );
872                         mod->sml_op = mop;
873                         mod->sml_type.bv_val = NULL;
874                         mod->sml_desc = slap_schema.si_ad_entryUUID;
875                         mod->sml_values =
876                                 (BerVarray) ch_malloc( 2 * sizeof( struct berval ) );
877                         ber_dupbv( &mod->sml_values[0], &tmpval );
878                         mod->sml_values[1].bv_len = 0;
879                         mod->sml_values[1].bv_val = NULL;
880                         assert( mod->sml_values[0].bv_val );
881                         mod->sml_nvalues =
882                                 (BerVarray) ch_malloc( 2 * sizeof( struct berval ) );
883                         (*mod->sml_desc->ad_type->sat_equality->smr_normalize)(
884                                         SLAP_MR_VALUE_OF_ATTRIBUTE_SYNTAX,
885                                         mod->sml_desc->ad_type->sat_syntax,
886                                         mod->sml_desc->ad_type->sat_equality,
887                                         mod->sml_values, mod->sml_nvalues, NULL );
888                         mod->sml_nvalues[1].bv_len = 0;
889                         mod->sml_nvalues[1].bv_val = NULL;
890                         *modtail = mod;
891                         modtail = &mod->sml_next;
892
893                         mod = (Modifications *) ch_malloc( sizeof( Modifications ) );
894                         mod->sml_op = mop;
895                         mod->sml_type.bv_val = NULL;
896                         mod->sml_desc = slap_schema.si_ad_creatorsName;
897                         mod->sml_values =
898                                 (BerVarray) ch_malloc( 2 * sizeof( struct berval ) );
899                         ber_dupbv( &mod->sml_values[0], &name );
900                         mod->sml_values[1].bv_len = 0;
901                         mod->sml_values[1].bv_val = NULL;
902                         assert( mod->sml_values[0].bv_val );
903                         mod->sml_nvalues =
904                                 (BerVarray) ch_malloc( 2 * sizeof( struct berval ) );
905                         ber_dupbv( &mod->sml_nvalues[0], &nname );
906                         mod->sml_nvalues[1].bv_len = 0;
907                         mod->sml_nvalues[1].bv_val = NULL;
908                         assert( mod->sml_nvalues[0].bv_val );
909                         *modtail = mod;
910                         modtail = &mod->sml_next;
911
912                         mod = (Modifications *) ch_malloc( sizeof( Modifications ) );
913                         mod->sml_op = mop;
914                         mod->sml_type.bv_val = NULL;
915                         mod->sml_desc = slap_schema.si_ad_createTimestamp;
916                         mod->sml_values =
917                                 (BerVarray) ch_malloc( 2 * sizeof( struct berval ) );
918                         ber_dupbv( &mod->sml_values[0], &timestamp );
919                         mod->sml_values[1].bv_len = 0;
920                         mod->sml_values[1].bv_val = NULL;
921                         assert( mod->sml_values[0].bv_val );
922                         mod->sml_nvalues = NULL;
923                         *modtail = mod;
924                         modtail = &mod->sml_next;
925                 }
926         }
927
928         if ( SLAP_LASTMOD( op->o_bd )) {
929                 mod = (Modifications *) ch_malloc( sizeof( Modifications ) );
930                 mod->sml_op = mop;
931                 mod->sml_type.bv_val = NULL;
932                 mod->sml_desc = slap_schema.si_ad_entryCSN;
933                 mod->sml_values = (BerVarray) ch_malloc( 2 * sizeof( struct berval ) );
934                 ber_dupbv( &mod->sml_values[0], &csn );
935                 mod->sml_values[1].bv_len = 0;
936                 mod->sml_values[1].bv_val = NULL;
937                 assert( mod->sml_values[0].bv_val );
938                 mod->sml_nvalues = NULL;
939                 *modtail = mod;
940                 modtail = &mod->sml_next;
941
942                 mod = (Modifications *) ch_malloc( sizeof( Modifications ) );
943                 mod->sml_op = mop;
944                 mod->sml_type.bv_val = NULL;
945                 mod->sml_desc = slap_schema.si_ad_modifiersName;
946                 mod->sml_values = (BerVarray) ch_malloc( 2 * sizeof( struct berval ) );
947                 ber_dupbv( &mod->sml_values[0], &name );
948                 mod->sml_values[1].bv_len = 0;
949                 mod->sml_values[1].bv_val = NULL;
950                 assert( mod->sml_values[0].bv_val );
951                 mod->sml_nvalues =
952                         (BerVarray) ch_malloc( 2 * sizeof( struct berval ) );
953                 ber_dupbv( &mod->sml_nvalues[0], &nname );
954                 mod->sml_nvalues[1].bv_len = 0;
955                 mod->sml_nvalues[1].bv_val = NULL;
956                 assert( mod->sml_nvalues[0].bv_val );
957                 *modtail = mod;
958                 modtail = &mod->sml_next;
959
960                 mod = (Modifications *) ch_malloc( sizeof( Modifications ) );
961                 mod->sml_op = mop;
962                 mod->sml_type.bv_val = NULL;
963                 mod->sml_desc = slap_schema.si_ad_modifyTimestamp;
964                 mod->sml_values = (BerVarray) ch_malloc( 2 * sizeof( struct berval ) );
965                 ber_dupbv( &mod->sml_values[0], &timestamp );
966                 mod->sml_values[1].bv_len = 0;
967                 mod->sml_values[1].bv_val = NULL;
968                 assert( mod->sml_values[0].bv_val );
969                 mod->sml_nvalues = NULL;
970                 *modtail = mod;
971                 modtail = &mod->sml_next;
972         }
973
974         *modtail = NULL;
975         return LDAP_SUCCESS;
976 }
977