]> git.sur5r.net Git - openldap/blob - servers/slapd/modify.c
Cleanup SLAPI namespace
[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 = slapi_int_call_plugins( 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                         slap_callback cb = { NULL, slap_replog_cb, NULL, NULL };
476
477                         rs->sr_err = slap_mods_check( modlist, update, &rs->sr_text,
478                                 textbuf, textlen, NULL );
479
480                         if( rs->sr_err != LDAP_SUCCESS ) {
481                                 send_ldap_result( op, rs );
482                                 goto cleanup;
483                         }
484
485                         if ( !repl_user ) {
486                                 for( modtail = &modlist;
487                                         *modtail != NULL;
488                                         modtail = &(*modtail)->sml_next )
489                                 {
490                                         /* empty */
491                                 }
492
493                                 rs->sr_err = slap_mods_opattrs( op, modlist, modtail,
494                                         &rs->sr_text, textbuf, textlen );
495                                 if( rs->sr_err != LDAP_SUCCESS ) {
496                                         send_ldap_result( op, rs );
497                                         goto cleanup;
498                                 }
499                         }
500
501                         op->orm_modlist = modlist;
502 #ifdef SLAPD_MULTIMASTER
503                         if ( !repl_user )
504 #endif
505                         {
506                                 /* but we log only the ones not from a replicator user */
507                                 cb.sc_next = op->o_callback;
508                                 op->o_callback = &cb;
509                         }
510                         op->o_bd->be_modify( op, rs );
511
512 #ifndef SLAPD_MULTIMASTER
513                 /* send a referral */
514                 } else {
515                         BerVarray defref = NULL;
516                         if ( !LDAP_STAILQ_EMPTY( &op->o_bd->be_syncinfo )) {
517                                 syncinfo_t *si;
518                                 LDAP_STAILQ_FOREACH( si, &op->o_bd->be_syncinfo, si_next ) {
519                                         struct berval tmpbv;
520                                         ber_dupbv( &tmpbv, &si->si_provideruri_bv[0] );
521                                         ber_bvarray_add( &defref, &tmpbv );
522                                 }
523                         } else {
524                                 defref = op->o_bd->be_update_refs
525                                                 ? op->o_bd->be_update_refs : default_referral;
526                         }
527                         if ( defref != NULL ) {
528                                 rs->sr_ref = referral_rewrite( defref,
529                                         NULL, &op->o_req_dn,
530                                         LDAP_SCOPE_DEFAULT );
531                                 if (!rs->sr_ref) rs->sr_ref = defref;
532                                 rs->sr_err = LDAP_REFERRAL;
533                                 send_ldap_result( op, rs );
534                                 if (rs->sr_ref != defref) {
535                                         ber_bvarray_free( rs->sr_ref );
536                                 }
537                         } else {
538                                 send_ldap_error( op, rs,
539                                                 LDAP_UNWILLING_TO_PERFORM,
540                                                 "referral missing" );
541                         }
542 #endif
543                 }
544         } else {
545                 send_ldap_error( op, rs, LDAP_UNWILLING_TO_PERFORM,
546                     "operation not supported within namingContext" );
547         }
548
549 #if defined( LDAP_SLAPI )
550         } /* modlist != NULL */
551
552         if ( pb != NULL && slapi_int_call_plugins( op->o_bd, SLAPI_PLUGIN_POST_MODIFY_FN, pb ) < 0 ) {
553 #ifdef NEW_LOGGING
554                 LDAP_LOG( OPERATION, INFO, "do_modify: modify postoperation plugins "
555                                 "failed\n", 0, 0, 0 );
556 #else
557                 Debug(LDAP_DEBUG_TRACE, "do_modify: modify postoperation plugins "
558                                 "failed.\n", 0, 0, 0);
559 #endif
560         }
561 #endif /* defined( LDAP_SLAPI ) */
562
563 cleanup:
564
565         slap_graduate_commit_csn( op );
566
567         op->o_tmpfree( op->o_req_dn.bv_val, op->o_tmpmemctx );
568         op->o_tmpfree( op->o_req_ndn.bv_val, op->o_tmpmemctx );
569         if ( modlist != NULL ) slap_mods_free( modlist );
570 #if defined( LDAP_SLAPI )
571         if ( modv != NULL ) slapi_int_free_ldapmods( modv );
572 #endif
573         return rs->sr_err;
574 }
575
576 /*
577  * Do basic attribute type checking and syntax validation.
578  */
579 int slap_mods_check(
580         Modifications *ml,
581         int update,
582         const char **text,
583         char *textbuf,
584         size_t textlen,
585         void *ctx )
586 {
587         int rc;
588
589         for( ; ml != NULL; ml = ml->sml_next ) {
590                 AttributeDescription *ad = NULL;
591
592                 /* convert to attribute description */
593                 rc = slap_bv2ad( &ml->sml_type, &ml->sml_desc, text );
594
595                 if( rc != LDAP_SUCCESS ) {
596                         snprintf( textbuf, textlen, "%s: %s",
597                                 ml->sml_type.bv_val, *text );
598                         *text = textbuf;
599                         return rc;
600                 }
601
602                 ad = ml->sml_desc;
603
604                 if( slap_syntax_is_binary( ad->ad_type->sat_syntax )
605                         && !slap_ad_is_binary( ad ))
606                 {
607                         /* attribute requires binary transfer */
608                         snprintf( textbuf, textlen,
609                                 "%s: requires ;binary transfer",
610                                 ml->sml_type.bv_val );
611                         *text = textbuf;
612                         return LDAP_UNDEFINED_TYPE;
613                 }
614
615                 if( !slap_syntax_is_binary( ad->ad_type->sat_syntax )
616                         && slap_ad_is_binary( ad ))
617                 {
618                         /* attribute requires binary transfer */
619                         snprintf( textbuf, textlen,
620                                 "%s: disallows ;binary transfer",
621                                 ml->sml_type.bv_val );
622                         *text = textbuf;
623                         return LDAP_UNDEFINED_TYPE;
624                 }
625
626                 if( slap_ad_is_tag_range( ad )) {
627                         /* attribute requires binary transfer */
628                         snprintf( textbuf, textlen,
629                                 "%s: inappropriate use of tag range option",
630                                 ml->sml_type.bv_val );
631                         *text = textbuf;
632                         return LDAP_UNDEFINED_TYPE;
633                 }
634
635                 if (!update && is_at_no_user_mod( ad->ad_type )) {
636                         /* user modification disallowed */
637                         snprintf( textbuf, textlen,
638                                 "%s: no user modification allowed",
639                                 ml->sml_type.bv_val );
640                         *text = textbuf;
641                         return LDAP_CONSTRAINT_VIOLATION;
642                 }
643
644                 if ( is_at_obsolete( ad->ad_type ) &&
645                         (( ml->sml_op != LDAP_MOD_REPLACE &&
646                                 ml->sml_op != LDAP_MOD_DELETE ) ||
647                                         ml->sml_values != NULL ))
648                 {
649                         /*
650                          * attribute is obsolete,
651                          * only allow replace/delete with no values
652                          */
653                         snprintf( textbuf, textlen,
654                                 "%s: attribute is obsolete",
655                                 ml->sml_type.bv_val );
656                         *text = textbuf;
657                         return LDAP_CONSTRAINT_VIOLATION;
658                 }
659
660                 if ( ml->sml_op == LDAP_MOD_INCREMENT &&
661 #ifdef SLAPD_REAL_SYNTAX
662                         !is_at_syntax( ad->ad_type, SLAPD_REAL_SYNTAX ) &&
663 #endif
664                         !is_at_syntax( ad->ad_type, SLAPD_INTEGER_SYNTAX ) )
665                 {
666                         /*
667                          * attribute values must be INTEGER or REAL
668                          */
669                         snprintf( textbuf, textlen,
670                                 "%s: attribute syntax inappropriate for increment",
671                                 ml->sml_type.bv_val );
672                         *text = textbuf;
673                         return LDAP_CONSTRAINT_VIOLATION;
674                 }
675
676                 /*
677                  * check values
678                  */
679                 if( ml->sml_values != NULL ) {
680                         ber_len_t nvals;
681                         slap_syntax_validate_func *validate =
682                                 ad->ad_type->sat_syntax->ssyn_validate;
683                         slap_syntax_transform_func *pretty =
684                                 ad->ad_type->sat_syntax->ssyn_pretty;
685  
686                         if( !pretty && !validate ) {
687                                 *text = "no validator for syntax";
688                                 snprintf( textbuf, textlen,
689                                         "%s: no validator for syntax %s",
690                                         ml->sml_type.bv_val,
691                                         ad->ad_type->sat_syntax->ssyn_oid );
692                                 *text = textbuf;
693                                 return LDAP_INVALID_SYNTAX;
694                         }
695
696                         /*
697                          * check that each value is valid per syntax
698                          *      and pretty if appropriate
699                          */
700                         for( nvals = 0; ml->sml_values[nvals].bv_val; nvals++ ) {
701                                 struct berval pval;
702                                 if( pretty ) {
703                                         rc = pretty( ad->ad_type->sat_syntax,
704                                                 &ml->sml_values[nvals], &pval, ctx );
705                                 } else {
706                                         rc = validate( ad->ad_type->sat_syntax,
707                                                 &ml->sml_values[nvals] );
708                                 }
709
710                                 if( rc != 0 ) {
711                                         snprintf( textbuf, textlen,
712                                                 "%s: value #%ld invalid per syntax",
713                                                 ml->sml_type.bv_val, (long) nvals );
714                                         *text = textbuf;
715                                         return LDAP_INVALID_SYNTAX;
716                                 }
717
718                                 if( pretty ) {
719                                         ber_memfree_x( ml->sml_values[nvals].bv_val, ctx );
720                                         ml->sml_values[nvals] = pval;
721                                 }
722                         }
723
724                         /*
725                          * a rough single value check... an additional check is needed
726                          * to catch add of single value to existing single valued attribute
727                          */
728                         if ((ml->sml_op == LDAP_MOD_ADD || ml->sml_op == LDAP_MOD_REPLACE)
729                                 && nvals > 1 && is_at_single_value( ad->ad_type ))
730                         {
731                                 snprintf( textbuf, textlen,
732                                         "%s: multiple values provided",
733                                         ml->sml_type.bv_val );
734                                 *text = textbuf;
735                                 return LDAP_CONSTRAINT_VIOLATION;
736                         }
737
738                         /* if the type has a normalizer, generate the
739                          * normalized values. otherwise leave them NULL.
740                          *
741                          * this is different from the rule for attributes
742                          * in an entry - in an attribute list, the normalized
743                          * value is set equal to the non-normalized value
744                          * when there is no normalizer.
745                          */
746                         if( nvals && ad->ad_type->sat_equality &&
747                                 ad->ad_type->sat_equality->smr_normalize )
748                         {
749                                 ml->sml_nvalues = ber_memalloc_x(
750                                         (nvals+1)*sizeof(struct berval), ctx );
751
752                                 for( nvals = 0; ml->sml_values[nvals].bv_val; nvals++ ) {
753                                         rc = ad->ad_type->sat_equality->smr_normalize(
754                                                 SLAP_MR_VALUE_OF_ATTRIBUTE_SYNTAX,
755                                                 ad->ad_type->sat_syntax,
756                                                 ad->ad_type->sat_equality,
757                                                 &ml->sml_values[nvals], &ml->sml_nvalues[nvals], ctx );
758                                         if( rc ) {
759 #ifdef NEW_LOGGING
760                                                 LDAP_LOG( OPERATION, DETAIL1,
761                                                         "str2entry:  NULL (ssyn_normalize %d)\n",
762                                                         rc, 0, 0 );
763 #else
764                                                 Debug( LDAP_DEBUG_ANY,
765                                                         "<= str2entry NULL (ssyn_normalize %d)\n",
766                                                         rc, 0, 0 );
767 #endif
768                                                 snprintf( textbuf, textlen,
769                                                         "%s: value #%ld normalization failed",
770                                                         ml->sml_type.bv_val, (long) nvals );
771                                                 *text = textbuf;
772                                                 return rc;
773                                         }
774                                 }
775
776                                 ml->sml_nvalues[nvals].bv_val = NULL;
777                                 ml->sml_nvalues[nvals].bv_len = 0;
778                         }
779                 }
780         }
781
782         return LDAP_SUCCESS;
783 }
784
785 int slap_mods_opattrs(
786         Operation *op,
787         Modifications *mods,
788         Modifications **modtail,
789         const char **text,
790         char *textbuf, size_t textlen )
791 {
792         struct berval name, timestamp, csn;
793         struct berval nname;
794         char timebuf[ LDAP_LUTIL_GENTIME_BUFSIZE ];
795         char csnbuf[ LDAP_LUTIL_CSNSTR_BUFSIZE ];
796         Modifications *mod;
797
798         int mop = op->o_tag == LDAP_REQ_ADD
799                 ? LDAP_MOD_ADD : LDAP_MOD_REPLACE;
800
801         assert( modtail != NULL );
802         assert( *modtail == NULL );
803
804         if ( SLAP_LASTMOD( op->o_bd )) {
805                 struct tm *ltm;
806 #ifdef HAVE_GMTIME_R
807                 struct tm ltm_buf;
808 #endif
809                 time_t now = slap_get_time();
810
811 #ifdef HAVE_GMTIME_R
812                 ltm = gmtime_r( &now, &ltm_buf );
813 #else
814                 ldap_pvt_thread_mutex_lock( &gmtime_mutex );
815                 ltm = gmtime( &now );
816 #endif /* HAVE_GMTIME_R */
817                 lutil_gentime( timebuf, sizeof(timebuf), ltm );
818
819                 slap_get_csn( op, csnbuf, sizeof(csnbuf), &csn, 1 );
820
821 #ifndef HAVE_GMTIME_R
822                 ldap_pvt_thread_mutex_unlock( &gmtime_mutex );
823 #endif
824
825                 timestamp.bv_val = timebuf;
826                 timestamp.bv_len = strlen(timebuf);
827
828                 if( op->o_dn.bv_len == 0 ) {
829                         name.bv_val = SLAPD_ANONYMOUS;
830                         name.bv_len = sizeof(SLAPD_ANONYMOUS)-1;
831                         nname = name;
832                 } else {
833                         name = op->o_dn;
834                         nname = op->o_ndn;
835                 }
836         }
837
838         if( op->o_tag == LDAP_REQ_ADD ) {
839                 struct berval tmpval;
840
841                 if( global_schemacheck ) {
842                         int rc = mods_structural_class( mods, &tmpval,
843                                 text, textbuf, textlen );
844                         if( rc != LDAP_SUCCESS ) return rc;
845
846                         mod = (Modifications *) ch_malloc( sizeof( Modifications ) );
847                         mod->sml_op = mop;
848                         mod->sml_type.bv_val = NULL;
849                         mod->sml_desc = slap_schema.si_ad_structuralObjectClass;
850                         mod->sml_values =
851                                 (BerVarray) ch_malloc( 2 * sizeof( struct berval ) );
852                         ber_dupbv( &mod->sml_values[0], &tmpval );
853                         mod->sml_values[1].bv_len = 0;
854                         mod->sml_values[1].bv_val = NULL;
855                         assert( mod->sml_values[0].bv_val );
856                         mod->sml_nvalues =
857                                 (BerVarray) ch_malloc( 2 * sizeof( struct berval ) );
858                         ber_dupbv( &mod->sml_nvalues[0], &tmpval );
859                         mod->sml_nvalues[1].bv_len = 0;
860                         mod->sml_nvalues[1].bv_val = NULL;
861                         assert( mod->sml_nvalues[0].bv_val );
862                         *modtail = mod;
863                         modtail = &mod->sml_next;
864                 }
865
866                 if ( SLAP_LASTMOD( op->o_bd )) {
867                         char uuidbuf[ LDAP_LUTIL_UUIDSTR_BUFSIZE ];
868
869                         tmpval.bv_len = lutil_uuidstr( uuidbuf, sizeof( uuidbuf ) );
870                         tmpval.bv_val = uuidbuf;
871                 
872                         mod = (Modifications *) ch_malloc( sizeof( Modifications ) );
873                         mod->sml_op = mop;
874                         mod->sml_type.bv_val = NULL;
875                         mod->sml_desc = slap_schema.si_ad_entryUUID;
876                         mod->sml_values =
877                                 (BerVarray) ch_malloc( 2 * sizeof( struct berval ) );
878                         ber_dupbv( &mod->sml_values[0], &tmpval );
879                         mod->sml_values[1].bv_len = 0;
880                         mod->sml_values[1].bv_val = NULL;
881                         assert( mod->sml_values[0].bv_val );
882                         mod->sml_nvalues =
883                                 (BerVarray) ch_malloc( 2 * sizeof( struct berval ) );
884                         (*mod->sml_desc->ad_type->sat_equality->smr_normalize)(
885                                         SLAP_MR_VALUE_OF_ATTRIBUTE_SYNTAX,
886                                         mod->sml_desc->ad_type->sat_syntax,
887                                         mod->sml_desc->ad_type->sat_equality,
888                                         mod->sml_values, mod->sml_nvalues, NULL );
889                         mod->sml_nvalues[1].bv_len = 0;
890                         mod->sml_nvalues[1].bv_val = NULL;
891                         *modtail = mod;
892                         modtail = &mod->sml_next;
893
894                         mod = (Modifications *) ch_malloc( sizeof( Modifications ) );
895                         mod->sml_op = mop;
896                         mod->sml_type.bv_val = NULL;
897                         mod->sml_desc = slap_schema.si_ad_creatorsName;
898                         mod->sml_values =
899                                 (BerVarray) ch_malloc( 2 * sizeof( struct berval ) );
900                         ber_dupbv( &mod->sml_values[0], &name );
901                         mod->sml_values[1].bv_len = 0;
902                         mod->sml_values[1].bv_val = NULL;
903                         assert( mod->sml_values[0].bv_val );
904                         mod->sml_nvalues =
905                                 (BerVarray) ch_malloc( 2 * sizeof( struct berval ) );
906                         ber_dupbv( &mod->sml_nvalues[0], &nname );
907                         mod->sml_nvalues[1].bv_len = 0;
908                         mod->sml_nvalues[1].bv_val = NULL;
909                         assert( mod->sml_nvalues[0].bv_val );
910                         *modtail = mod;
911                         modtail = &mod->sml_next;
912
913                         mod = (Modifications *) ch_malloc( sizeof( Modifications ) );
914                         mod->sml_op = mop;
915                         mod->sml_type.bv_val = NULL;
916                         mod->sml_desc = slap_schema.si_ad_createTimestamp;
917                         mod->sml_values =
918                                 (BerVarray) ch_malloc( 2 * sizeof( struct berval ) );
919                         ber_dupbv( &mod->sml_values[0], &timestamp );
920                         mod->sml_values[1].bv_len = 0;
921                         mod->sml_values[1].bv_val = NULL;
922                         assert( mod->sml_values[0].bv_val );
923                         mod->sml_nvalues = NULL;
924                         *modtail = mod;
925                         modtail = &mod->sml_next;
926                 }
927         }
928
929         if ( SLAP_LASTMOD( op->o_bd )) {
930                 mod = (Modifications *) ch_malloc( sizeof( Modifications ) );
931                 mod->sml_op = mop;
932                 mod->sml_type.bv_val = NULL;
933                 mod->sml_desc = slap_schema.si_ad_entryCSN;
934                 mod->sml_values = (BerVarray) ch_malloc( 2 * sizeof( struct berval ) );
935                 ber_dupbv( &mod->sml_values[0], &csn );
936                 mod->sml_values[1].bv_len = 0;
937                 mod->sml_values[1].bv_val = NULL;
938                 assert( mod->sml_values[0].bv_val );
939                 mod->sml_nvalues = NULL;
940                 *modtail = mod;
941                 modtail = &mod->sml_next;
942
943                 mod = (Modifications *) ch_malloc( sizeof( Modifications ) );
944                 mod->sml_op = mop;
945                 mod->sml_type.bv_val = NULL;
946                 mod->sml_desc = slap_schema.si_ad_modifiersName;
947                 mod->sml_values = (BerVarray) ch_malloc( 2 * sizeof( struct berval ) );
948                 ber_dupbv( &mod->sml_values[0], &name );
949                 mod->sml_values[1].bv_len = 0;
950                 mod->sml_values[1].bv_val = NULL;
951                 assert( mod->sml_values[0].bv_val );
952                 mod->sml_nvalues =
953                         (BerVarray) ch_malloc( 2 * sizeof( struct berval ) );
954                 ber_dupbv( &mod->sml_nvalues[0], &nname );
955                 mod->sml_nvalues[1].bv_len = 0;
956                 mod->sml_nvalues[1].bv_val = NULL;
957                 assert( mod->sml_nvalues[0].bv_val );
958                 *modtail = mod;
959                 modtail = &mod->sml_next;
960
961                 mod = (Modifications *) ch_malloc( sizeof( Modifications ) );
962                 mod->sml_op = mop;
963                 mod->sml_type.bv_val = NULL;
964                 mod->sml_desc = slap_schema.si_ad_modifyTimestamp;
965                 mod->sml_values = (BerVarray) ch_malloc( 2 * sizeof( struct berval ) );
966                 ber_dupbv( &mod->sml_values[0], &timestamp );
967                 mod->sml_values[1].bv_len = 0;
968                 mod->sml_values[1].bv_val = NULL;
969                 assert( mod->sml_values[0].bv_val );
970                 mod->sml_nvalues = NULL;
971                 *modtail = mod;
972                 modtail = &mod->sml_next;
973         }
974
975         *modtail = NULL;
976         return LDAP_SUCCESS;
977 }
978