]> git.sur5r.net Git - openldap/blob - servers/slapd/add.c
ITS#4134 additional fix
[openldap] / servers / slapd / add.c
1 /* $OpenLDAP$ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
3  *
4  * Copyright 1998-2005 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 #include <ac/string.h>
30 #include <ac/time.h>
31 #include <ac/socket.h>
32
33 #include "lutil.h"
34 #include "slap.h"
35
36 int
37 do_add( Operation *op, SlapReply *rs )
38 {
39         BerElement      *ber = op->o_ber;
40         char            *last;
41         struct berval   dn = BER_BVNULL;
42         ber_len_t       len;
43         ber_tag_t       tag;
44         Modifications   *modlist = NULL;
45         Modifications   **modtail = &modlist;
46         Modifications   tmp;
47         char            textbuf[ SLAP_TEXT_BUFLEN ];
48         size_t          textlen = sizeof( textbuf );
49         int             rc = 0;
50
51         Debug( LDAP_DEBUG_TRACE, "do_add\n", 0, 0, 0 );
52         /*
53          * Parse the add request.  It looks like this:
54          *
55          *      AddRequest := [APPLICATION 14] SEQUENCE {
56          *              name    DistinguishedName,
57          *              attrs   SEQUENCE OF SEQUENCE {
58          *                      type    AttributeType,
59          *                      values  SET OF AttributeValue
60          *              }
61          *      }
62          */
63
64         /* get the name */
65         if ( ber_scanf( ber, "{m", /*}*/ &dn ) == LBER_ERROR ) {
66                 Debug( LDAP_DEBUG_ANY, "do_add: ber_scanf failed\n", 0, 0, 0 );
67                 send_ldap_discon( op, rs, LDAP_PROTOCOL_ERROR, "decoding error" );
68                 return SLAPD_DISCONNECT;
69         }
70
71         op->ora_e = (Entry *) ch_calloc( 1, sizeof(Entry) );
72
73         rs->sr_err = dnPrettyNormal( NULL, &dn, &op->o_req_dn, &op->o_req_ndn,
74                 op->o_tmpmemctx );
75
76         if ( rs->sr_err != LDAP_SUCCESS ) {
77                 Debug( LDAP_DEBUG_ANY, "do_add: invalid dn (%s)\n", dn.bv_val, 0, 0 );
78                 send_ldap_error( op, rs, LDAP_INVALID_DN_SYNTAX, "invalid DN" );
79                 goto done;
80         }
81
82         ber_dupbv( &op->ora_e->e_name, &op->o_req_dn );
83         ber_dupbv( &op->ora_e->e_nname, &op->o_req_ndn );
84
85         Debug( LDAP_DEBUG_ARGS, "do_add: dn (%s)\n", op->ora_e->e_dn, 0, 0 );
86
87         /* get the attrs */
88         for ( tag = ber_first_element( ber, &len, &last ); tag != LBER_DEFAULT;
89             tag = ber_next_element( ber, &len, last ) )
90         {
91                 Modifications *mod;
92                 ber_tag_t rtag;
93
94                 tmp.sml_nvalues = NULL;
95
96                 rtag = ber_scanf( ber, "{m{W}}", &tmp.sml_type, &tmp.sml_values );
97
98                 if ( rtag == LBER_ERROR ) {
99                         Debug( LDAP_DEBUG_ANY, "do_add: decoding error\n", 0, 0, 0 );
100                         send_ldap_discon( op, rs, LDAP_PROTOCOL_ERROR, "decoding error" );
101                         rs->sr_err = SLAPD_DISCONNECT;
102                         goto done;
103                 }
104
105                 if ( tmp.sml_values == NULL ) {
106                         Debug( LDAP_DEBUG_ANY, "no values for type %s\n",
107                                 tmp.sml_type.bv_val, 0, 0 );
108                         send_ldap_error( op, rs, LDAP_PROTOCOL_ERROR,
109                                 "no values for attribute type" );
110                         goto done;
111                 }
112
113                 mod  = (Modifications *) ch_malloc( sizeof(Modifications) );
114                 mod->sml_op = LDAP_MOD_ADD;
115                 mod->sml_flags = 0;
116                 mod->sml_next = NULL;
117                 mod->sml_desc = NULL;
118                 mod->sml_type = tmp.sml_type;
119                 mod->sml_values = tmp.sml_values;
120                 mod->sml_nvalues = NULL;
121
122                 *modtail = mod;
123                 modtail = &mod->sml_next;
124         }
125
126         if ( ber_scanf( ber, /*{*/ "}") == LBER_ERROR ) {
127                 Debug( LDAP_DEBUG_ANY, "do_add: ber_scanf failed\n", 0, 0, 0 );
128                 send_ldap_discon( op, rs, LDAP_PROTOCOL_ERROR, "decoding error" );
129                 rs->sr_err = SLAPD_DISCONNECT;
130                 goto done;
131         }
132
133         if ( get_ctrls( op, rs, 1 ) != LDAP_SUCCESS ) {
134                 Debug( LDAP_DEBUG_ANY, "do_add: get_ctrls failed\n", 0, 0, 0 );
135                 goto done;
136         } 
137
138         if ( modlist == NULL ) {
139                 send_ldap_error( op, rs, LDAP_PROTOCOL_ERROR,
140                         "no attributes provided" );
141                 goto done;
142         }
143
144         Statslog( LDAP_DEBUG_STATS, "%s ADD dn=\"%s\"\n",
145             op->o_log_prefix, op->ora_e->e_name.bv_val, 0, 0, 0 );
146
147         if ( dn_match( &op->ora_e->e_nname, &slap_empty_bv ) ) {
148                 /* protocolError may be a more appropriate error */
149                 send_ldap_error( op, rs, LDAP_ALREADY_EXISTS,
150                         "root DSE already exists" );
151                 goto done;
152
153         } else if ( dn_match( &op->ora_e->e_nname, &frontendDB->be_schemandn ) ) {
154                 send_ldap_error( op, rs, LDAP_ALREADY_EXISTS,
155                         "subschema subentry already exists" );
156                 goto done;
157         }
158
159         rs->sr_err = slap_mods_check( modlist, &rs->sr_text,
160                 textbuf, textlen, NULL );
161
162         if ( rs->sr_err != LDAP_SUCCESS ) {
163                 send_ldap_result( op, rs );
164                 goto done;
165         }
166
167         /* temporary; remove if not invoking backend function */
168         op->ora_modlist = modlist;
169
170         /* call this so global overlays/SLAPI have access to ora_e */
171         rs->sr_err = slap_mods2entry( op->ora_modlist, &op->ora_e,
172                 1, 0, &rs->sr_text, textbuf, textlen );
173         if ( rs->sr_err != LDAP_SUCCESS ) {
174                 send_ldap_result( op, rs );
175                 goto done;
176         }
177
178         op->o_bd = frontendDB;
179         rc = frontendDB->be_add( op, rs );
180         if ( rc == 0 ) {
181                 if ( op->ora_e != NULL && op->o_private != NULL ) {
182                         BackendDB       *bd = op->o_bd;
183
184                         op->o_bd = (BackendDB *)op->o_private;
185                         op->o_private = NULL;
186
187                         be_entry_release_w( op, op->ora_e );
188
189                         op->ora_e = NULL;
190                         op->o_bd = bd;
191                         op->o_private = NULL;
192                 }
193         }
194
195 done:;
196         if ( modlist != NULL ) {
197                 slap_mods_free( modlist, 0 );
198         }
199
200         if ( op->ora_e != NULL ) {
201                 entry_free( op->ora_e );
202         }
203         op->o_tmpfree( op->o_req_dn.bv_val, op->o_tmpmemctx );
204         op->o_tmpfree( op->o_req_ndn.bv_val, op->o_tmpmemctx );
205
206         return rc;
207 }
208
209 int
210 fe_op_add( Operation *op, SlapReply *rs )
211 {
212         int             manageDSAit;
213         Modifications   *modlist = op->ora_modlist;
214         Modifications   **modtail = &modlist;
215         int             rc = 0;
216         BackendDB *op_be;
217         char            textbuf[ SLAP_TEXT_BUFLEN ];
218         size_t          textlen = sizeof( textbuf );
219
220         manageDSAit = get_manageDSAit( op );
221
222         /*
223          * We could be serving multiple database backends.  Select the
224          * appropriate one, or send a referral to our "referral server"
225          * if we don't hold it.
226          */
227         op->o_bd = select_backend( &op->ora_e->e_nname, manageDSAit, 1 );
228         if ( op->o_bd == NULL ) {
229                 rs->sr_ref = referral_rewrite( default_referral,
230                         NULL, &op->ora_e->e_name, LDAP_SCOPE_DEFAULT );
231                 if ( !rs->sr_ref ) rs->sr_ref = default_referral;
232                 if ( rs->sr_ref ) {
233                         rs->sr_err = LDAP_REFERRAL;
234                         op->o_bd = frontendDB;
235                         send_ldap_result( op, rs );
236                         op->o_bd = NULL;
237
238                         if ( rs->sr_ref != default_referral ) {
239                                 ber_bvarray_free( rs->sr_ref );
240                         }
241                 } else {
242                         op->o_bd = frontendDB;
243                         send_ldap_error( op, rs, LDAP_UNWILLING_TO_PERFORM,
244                                 "no global superior knowledge" );
245                         op->o_bd = NULL;
246                 }
247                 goto done;
248         }
249
250         /* If we've got a glued backend, check the real backend */
251         op_be = op->o_bd;
252         if ( SLAP_GLUE_INSTANCE( op->o_bd )) {
253                 op->o_bd = select_backend( &op->ora_e->e_nname, manageDSAit, 0 );
254         }
255
256         /* check restrictions */
257         if( backend_check_restrictions( op, rs, NULL ) != LDAP_SUCCESS ) {
258                 send_ldap_result( op, rs );
259                 goto done;
260         }
261
262         /* check for referrals */
263         if( backend_check_referrals( op, rs ) != LDAP_SUCCESS ) {
264                 goto done;
265         }
266
267         rs->sr_err = slap_mods_obsolete_check( op, modlist,
268                 &rs->sr_text, textbuf, textlen );
269
270         if ( rs->sr_err != LDAP_SUCCESS ) {
271                 send_ldap_result( op, rs );
272                 goto done;
273         }
274
275         /*
276          * do the add if 1 && (2 || 3)
277          * 1) there is an add function implemented in this backend;
278          * 2) this backend is master for what it holds;
279          * 3) it's a replica and the dn supplied is the updatedn.
280          */
281         if ( op->o_bd->be_add ) {
282                 /* do the update here */
283                 int repl_user = be_isupdate( op );
284 #ifndef SLAPD_MULTIMASTER
285                 if ( !SLAP_SHADOW(op->o_bd) || repl_user )
286 #endif
287                 {
288                         int             update = !BER_BVISEMPTY( &op->o_bd->be_update_ndn );
289                         slap_callback   cb = { NULL, slap_replog_cb, NULL, NULL };
290
291                         op->o_bd = op_be;
292
293                         if ( !update ) {
294                                 rs->sr_err = slap_mods_no_user_mod_check( op, modlist,
295                                         &rs->sr_text, textbuf, textlen );
296
297                                 if ( rs->sr_err != LDAP_SUCCESS ) {
298                                         send_ldap_result( op, rs );
299                                         goto done;
300                                 }
301                         }
302
303                         if ( !repl_user ) {
304                                 /* go to the last mod */
305                                 for ( modtail = &modlist;
306                                                 *modtail != NULL;
307                                                 modtail = &(*modtail)->sml_next )
308                                 {
309                                         assert( (*modtail)->sml_op == LDAP_MOD_ADD );
310                                         assert( (*modtail)->sml_desc != NULL );
311                                 }
312
313
314                                 /* check for duplicate values */
315                                 rs->sr_err = slap_mods_no_repl_user_mod_check( op,
316                                         modlist, &rs->sr_text, textbuf, textlen );
317                                 if ( rs->sr_err != LDAP_SUCCESS ) {
318                                         send_ldap_result( op, rs );
319                                         goto done;
320                                 }
321
322                                 rs->sr_err = slap_mods2entry( *modtail, &op->ora_e,
323                                         0, 0, &rs->sr_text, textbuf, textlen );
324                                 if ( rs->sr_err != LDAP_SUCCESS ) {
325                                         send_ldap_result( op, rs );
326                                         goto done;
327                                 }
328                         }
329
330 #ifdef SLAPD_MULTIMASTER
331                         if ( !repl_user )
332 #endif
333                         {
334                                 cb.sc_next = op->o_callback;
335                                 op->o_callback = &cb;
336                         }
337                         rc = op->o_bd->be_add( op, rs );
338                         if ( rc == LDAP_SUCCESS ) {
339                                 /* NOTE: be_entry_release_w() is
340                                  * called by do_add(), so that global
341                                  * overlays on the way back can
342                                  * at least read the entry */
343                                 op->o_private = op->o_bd;
344                         }
345
346 #ifndef SLAPD_MULTIMASTER
347                 } else {
348                         BerVarray defref = NULL;
349
350                         defref = op->o_bd->be_update_refs
351                                 ? op->o_bd->be_update_refs : default_referral;
352
353                         if ( defref != NULL ) {
354                                 rs->sr_ref = referral_rewrite( defref,
355                                         NULL, &op->ora_e->e_name, LDAP_SCOPE_DEFAULT );
356                                 if ( rs->sr_ref == NULL ) rs->sr_ref = defref;
357                                 rs->sr_err = LDAP_REFERRAL;
358                                 if (!rs->sr_ref) rs->sr_ref = default_referral;
359                                 send_ldap_result( op, rs );
360
361                                 if ( rs->sr_ref != default_referral ) {
362                                         ber_bvarray_free( rs->sr_ref );
363                                 }
364                         } else {
365                                 send_ldap_error( op, rs,
366                                         LDAP_UNWILLING_TO_PERFORM,
367                                         "shadow context; no update referral" );
368                         }
369 #endif /* SLAPD_MULTIMASTER */
370                 }
371         } else {
372             Debug( LDAP_DEBUG_ARGS, "    do_add: no backend support\n", 0, 0, 0 );
373             send_ldap_error( op, rs, LDAP_UNWILLING_TO_PERFORM,
374                         "operation not supported within namingContext" );
375         }
376
377 done:;
378         return rc;
379 }
380
381 int
382 slap_mods2entry(
383         Modifications *mods,
384         Entry **e,
385         int initial,
386         int dup,
387         const char **text,
388         char *textbuf, size_t textlen )
389 {
390         Attribute **tail;
391
392         if ( initial ) {
393                 assert( (*e)->e_attrs == NULL );
394         }
395
396         for ( tail = &(*e)->e_attrs; *tail != NULL; tail = &(*tail)->a_next )
397                 ;
398
399         *text = textbuf;
400
401         for( ; mods != NULL; mods = mods->sml_next ) {
402                 Attribute *attr;
403
404                 assert( mods->sml_desc != NULL );
405
406                 attr = attr_find( (*e)->e_attrs, mods->sml_desc );
407
408                 if( attr != NULL ) {
409 #define SLURPD_FRIENDLY
410 #ifdef SLURPD_FRIENDLY
411                         ber_len_t i,j;
412
413                         if ( !initial ) {
414                                 /*      
415                                  * This check allows overlays to override operational
416                                  * attributes by setting them directly in the entry.
417                                  * We assume slap_mods_no_user_mod_check() was called
418                                  * with the user modifications.
419                                  */
420                                 *text = NULL;
421                                 return LDAP_SUCCESS;
422                         }
423
424                         for( i=0; attr->a_vals[i].bv_val; i++ ) {
425                                 /* count them */
426                         }
427                         for( j=0; mods->sml_values[j].bv_val; j++ ) {
428                                 /* count them */
429                         }
430                         j++;    /* NULL */
431                         
432                         attr->a_vals = ch_realloc( attr->a_vals,
433                                 sizeof( struct berval ) * (i+j) );
434
435                         /* should check for duplicates */
436
437                         if ( dup ) {
438                                 for ( j = 0; mods->sml_values[j].bv_val; j++ ) {
439                                         ber_dupbv( &attr->a_vals[i+j], &mods->sml_values[j] );
440                                 }
441                                 BER_BVZERO( &attr->a_vals[i+j] );
442                                 j++;
443                         } else {
444                                 AC_MEMCPY( &attr->a_vals[i], mods->sml_values,
445                                         sizeof( struct berval ) * j );
446                         }
447
448                         if( mods->sml_nvalues ) {
449                                 attr->a_nvals = ch_realloc( attr->a_nvals,
450                                         sizeof( struct berval ) * (i+j) );
451                                 if ( dup ) {
452                                         for ( j = 0; mods->sml_nvalues[j].bv_val; j++ ) {
453                                                 ber_dupbv( &attr->a_nvals[i+j], &mods->sml_nvalues[j] );
454                                         }
455                                         BER_BVZERO( &attr->a_nvals[i+j] );      
456                                 } else {
457                                         AC_MEMCPY( &attr->a_nvals[i], mods->sml_nvalues,
458                                                 sizeof( struct berval ) * j );
459                                 }
460                         } else {
461                                 attr->a_nvals = attr->a_vals;
462                         }
463
464                         continue;
465 #else
466                         snprintf( textbuf, textlen,
467                                 "attribute '%s' provided more than once",
468                                 mods->sml_desc->ad_cname.bv_val );
469                         return LDAP_TYPE_OR_VALUE_EXISTS;
470 #endif
471                 }
472
473                 if( mods->sml_values[1].bv_val != NULL ) {
474                         /* check for duplicates */
475                         int             i, j, rc, match;
476                         MatchingRule *mr = mods->sml_desc->ad_type->sat_equality;
477
478                         for ( i = 1; mods->sml_values[i].bv_val != NULL; i++ ) {
479                                 /* test asserted values against themselves */
480                                 for( j = 0; j < i; j++ ) {
481                                         rc = ordered_value_match( &match, mods->sml_desc, mr,
482                                                 SLAP_MR_EQUALITY
483                                                 | SLAP_MR_VALUE_OF_ATTRIBUTE_SYNTAX
484                                                 | SLAP_MR_ASSERTED_VALUE_NORMALIZED_MATCH
485                                                 | SLAP_MR_ATTRIBUTE_VALUE_NORMALIZED_MATCH,
486                                                 mods->sml_nvalues
487                                                         ? &mods->sml_nvalues[i]
488                                                         : &mods->sml_values[i],
489                                                 mods->sml_nvalues
490                                                         ? &mods->sml_nvalues[j]
491                                                         : &mods->sml_values[j],
492                                                 text );
493
494                                         if ( rc == LDAP_SUCCESS && match == 0 ) {
495                                                 /* value exists already */
496                                                 snprintf( textbuf, textlen,
497                                                         "%s: value #%d provided more than once",
498                                                         mods->sml_desc->ad_cname.bv_val, j );
499                                                 return LDAP_TYPE_OR_VALUE_EXISTS;
500
501                                         } else if ( rc != LDAP_SUCCESS ) {
502                                                 return rc;
503                                         }
504                                 }
505                         }
506                 }
507
508                 attr = ch_calloc( 1, sizeof(Attribute) );
509
510                 /* move ad to attr structure */
511                 attr->a_desc = mods->sml_desc;
512
513                 /* move values to attr structure */
514                 /*      should check for duplicates */
515                 if ( dup ) { 
516                         int i;
517                         for ( i = 0; mods->sml_values[i].bv_val; i++ ) /* EMPTY */;
518                         attr->a_vals = (BerVarray) ch_calloc( i+1, sizeof( BerValue ));
519                         for ( i = 0; mods->sml_values[i].bv_val; i++ ) {
520                                 ber_dupbv( &attr->a_vals[i], &mods->sml_values[i] );
521                         }
522                         BER_BVZERO( &attr->a_vals[i] );
523                 } else {
524                         attr->a_vals = mods->sml_values;
525                 }
526
527                 if ( mods->sml_nvalues ) {
528                         if ( dup ) {
529                                 int i;
530                                 for ( i = 0; mods->sml_nvalues[i].bv_val; i++ ) /* EMPTY */;
531                                 attr->a_nvals = (BerVarray) ch_calloc( i+1, sizeof( BerValue ));
532                                 for ( i = 0; mods->sml_nvalues[i].bv_val; i++ ) {
533                                         ber_dupbv( &attr->a_nvals[i], &mods->sml_nvalues[i] );
534                                 }
535                                 BER_BVZERO( &attr->a_nvals[i] );
536                         } else {
537                                 attr->a_nvals = mods->sml_nvalues;
538                         }
539                 } else {
540                         attr->a_nvals = attr->a_vals;
541                 }
542
543                 *tail = attr;
544                 tail = &attr->a_next;
545         }
546
547         *text = NULL;
548
549         return LDAP_SUCCESS;
550 }
551
552 int
553 slap_entry2mods(
554         Entry *e,
555         Modifications **mods,
556         const char **text,
557         char *textbuf, size_t textlen )
558 {
559         Modifications   *modhead = NULL;
560         Modifications   *mod;
561         Modifications   **modtail = &modhead;
562         Attribute               *a_new;
563         AttributeDescription    *a_new_desc;
564         int                             i, count;
565
566         a_new = e->e_attrs;
567
568         while ( a_new != NULL ) {
569                 a_new_desc = a_new->a_desc;
570                 mod = (Modifications *) malloc( sizeof( Modifications ));
571                 
572                 mod->sml_op = LDAP_MOD_REPLACE;
573                 mod->sml_flags = 0;
574
575                 mod->sml_type = a_new_desc->ad_cname;
576
577                 for ( count = 0; a_new->a_vals[count].bv_val; count++ ) /* EMPTY */;
578
579                 mod->sml_values = (struct berval*) malloc(
580                         (count+1) * sizeof( struct berval) );
581
582                 /* see slap_mods_check() comments...
583                  * if a_vals == a_nvals, there is no normalizer.
584                  * in this case, mod->sml_nvalues must be left NULL.
585                  */
586                 if ( a_new->a_vals != a_new->a_nvals ) {
587                         mod->sml_nvalues = (struct berval*) malloc(
588                                 (count+1) * sizeof( struct berval) );
589                 } else {
590                         mod->sml_nvalues = NULL;
591                 }
592
593                 for ( i = 0; i < count; i++ ) {
594                         ber_dupbv(mod->sml_values+i, a_new->a_vals+i); 
595                         if ( mod->sml_nvalues ) {
596                                 ber_dupbv( mod->sml_nvalues+i, a_new->a_nvals+i ); 
597                         } 
598                 }
599
600                 mod->sml_values[count].bv_val = NULL; 
601                 mod->sml_values[count].bv_len = 0; 
602
603                 if ( mod->sml_nvalues ) {
604                         mod->sml_nvalues[count].bv_val = NULL; 
605                         mod->sml_nvalues[count].bv_len = 0; 
606                 }
607
608                 mod->sml_desc = a_new_desc;
609                 mod->sml_next =NULL;
610                 *modtail = mod;
611                 modtail = &mod->sml_next;
612                 a_new = a_new->a_next; 
613         }
614
615         *mods = modhead;
616
617         return LDAP_SUCCESS;
618 }
619
620 int slap_add_opattrs(
621         Operation *op,
622         const char **text,
623         char *textbuf,
624         size_t textlen,
625         int manage_ctxcsn )
626 {
627         struct berval name, timestamp, csn = BER_BVNULL;
628         struct berval nname, tmp;
629         char timebuf[ LDAP_LUTIL_GENTIME_BUFSIZE ];
630         char csnbuf[ LDAP_LUTIL_CSNSTR_BUFSIZE ];
631         Attribute *a;
632
633         a = attr_find( op->ora_e->e_attrs,
634                 slap_schema.si_ad_structuralObjectClass );
635
636         if ( !a ) {
637                 Attribute *oc;
638                 int rc;
639
640                 oc = attr_find( op->ora_e->e_attrs, slap_schema.si_ad_objectClass );
641                 if ( oc ) {
642                         rc = structural_class( oc->a_vals, &tmp, NULL, text,
643                                 textbuf, textlen );
644                         if( rc != LDAP_SUCCESS ) return rc;
645
646                         attr_merge_one( op->ora_e, slap_schema.si_ad_structuralObjectClass,
647                                 &tmp, NULL );
648                 }
649         }
650
651         if ( SLAP_LASTMOD( op->o_bd ) ) {
652                 char *ptr;
653                 timestamp.bv_val = timebuf;
654                 if ( BER_BVISEMPTY( &op->o_csn )) {
655                         if ( SLAP_SHADOW( op->o_bd ))
656                                 manage_ctxcsn = 0;
657                         csn.bv_val = csnbuf;
658                         csn.bv_len = sizeof(csnbuf);
659                         slap_get_csn( op, &csn, manage_ctxcsn );
660                 } else {
661                         csn = op->o_csn;
662                 }
663                 ptr = strchr( csn.bv_val, '#' );
664                 if ( ptr ) {
665                         timestamp.bv_len = ptr - csn.bv_val;
666                         if ( timestamp.bv_len >= sizeof(timebuf) )
667                                 timestamp.bv_len = sizeof(timebuf) - 1;
668                         strncpy( timebuf, csn.bv_val, timestamp.bv_len );
669                         timebuf[timestamp.bv_len] = '\0';
670                 } else {
671                         time_t now = slap_get_time();
672
673                         timestamp.bv_len = sizeof(timebuf);
674
675                         slap_timestamp( &now, &timestamp );
676                 }
677
678                 if ( BER_BVISEMPTY( &op->o_dn ) ) {
679                         BER_BVSTR( &name, SLAPD_ANONYMOUS );
680                         nname = name;
681                 } else {
682                         name = op->o_dn;
683                         nname = op->o_ndn;
684                 }
685
686                 a = attr_find( op->ora_e->e_attrs,
687                         slap_schema.si_ad_entryUUID );
688                 if ( !a ) {
689                         char uuidbuf[ LDAP_LUTIL_UUIDSTR_BUFSIZE ];
690
691                         tmp.bv_len = lutil_uuidstr( uuidbuf, sizeof( uuidbuf ) );
692                         tmp.bv_val = uuidbuf;
693                         
694                         attr_merge_normalize_one( op->ora_e,
695                                 slap_schema.si_ad_entryUUID, &tmp, op->o_tmpmemctx );
696                 }
697
698                 a = attr_find( op->ora_e->e_attrs,
699                         slap_schema.si_ad_creatorsName );
700                 if ( !a ) {
701                         attr_merge_one( op->ora_e,
702                                 slap_schema.si_ad_creatorsName, &name, &nname );
703                 }
704
705                 a = attr_find( op->ora_e->e_attrs,
706                         slap_schema.si_ad_createTimestamp );
707                 if ( !a ) {
708                         attr_merge_one( op->ora_e,
709                                 slap_schema.si_ad_createTimestamp, &timestamp, NULL );
710                 }
711
712                 a = attr_find( op->ora_e->e_attrs,
713                         slap_schema.si_ad_entryCSN );
714                 if ( !a ) {
715                         attr_merge_one( op->ora_e,
716                                 slap_schema.si_ad_entryCSN, &csn, NULL );
717                 }
718
719                 a = attr_find( op->ora_e->e_attrs,
720                         slap_schema.si_ad_modifiersName );
721                 if ( !a ) {
722                         attr_merge_one( op->ora_e,
723                                 slap_schema.si_ad_modifiersName, &name, &nname );
724                 }
725
726                 a = attr_find( op->ora_e->e_attrs,
727                         slap_schema.si_ad_modifyTimestamp );
728                 if ( !a ) {
729                         attr_merge_one( op->ora_e,
730                                 slap_schema.si_ad_modifyTimestamp, &timestamp, NULL );
731                 }
732
733         }
734         return LDAP_SUCCESS;
735 }