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