]> git.sur5r.net Git - openldap/blob - servers/slapd/syncrepl.c
allow addiion of suffix entry when default referral is defined (ITS#4310)
[openldap] / servers / slapd / syncrepl.c
1 /* syncrepl.c -- Replication Engine which uses the LDAP Sync protocol */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 2003-2006 The OpenLDAP Foundation.
6  * Portions Copyright 2003 by IBM Corporation.
7  * Portions Copyright 2003 by Howard Chu, Symas Corporation.
8  * All rights reserved.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted only as authorized by the OpenLDAP
12  * Public License.
13  *
14  * A copy of this license is available in the file LICENSE in the
15  * top-level directory of the distribution or, alternatively, at
16  * <http://www.OpenLDAP.org/license.html>.
17  */
18
19 #include "portable.h"
20
21 #include <stdio.h>
22
23 #include <ac/string.h>
24 #include <ac/socket.h>
25
26 #include "lutil.h"
27 #include "slap.h"
28 #include "lutil_ldap.h"
29
30 #include "config.h"
31
32 #include "ldap_rq.h"
33
34 struct nonpresent_entry {
35         struct berval *npe_name;
36         struct berval *npe_nname;
37         LDAP_LIST_ENTRY(nonpresent_entry) npe_link;
38 };
39
40 #define SYNCDATA_DEFAULT        0       /* entries are plain LDAP entries */
41 #define SYNCDATA_ACCESSLOG      1       /* entries are accesslog format */
42 #define SYNCDATA_CHANGELOG      2       /* entries are changelog format */
43
44 #define SYNCLOG_LOGGING         0       /* doing a log-based update */
45 #define SYNCLOG_FALLBACK        1       /* doing a full refresh */
46
47 #define RETRYNUM_FOREVER        (-1)    /* retry forever */
48 #define RETRYNUM_TAIL           (-2)    /* end of retrynum array */
49 #define RETRYNUM_VALID(n)       ((n) >= RETRYNUM_FOREVER)       /* valid retrynum */
50 #define RETRYNUM_FINITE(n)      ((n) > RETRYNUM_FOREVER)        /* not forever */
51
52 typedef struct syncinfo_s {
53         struct slap_backend_db *si_be;
54         struct re_s                     *si_re;
55         long                            si_rid;
56         slap_bindconf           si_bindconf;
57         struct berval           si_base;
58         struct berval           si_logbase;
59         struct berval           si_filterstr;
60         struct berval           si_logfilterstr;
61         int                                     si_scope;
62         int                                     si_attrsonly;
63         char                            *si_anfile;
64         AttributeName           *si_anlist;
65         AttributeName           *si_exanlist;
66         char                            **si_attrs;
67         char                            **si_exattrs;
68         int                                     si_allattrs;
69         int                                     si_allopattrs;
70         int                                     si_schemachecking;
71         int                                     si_type;        /* the active type */
72         int                                     si_ctype;       /* the configured type */
73         time_t                          si_interval;
74         time_t                          *si_retryinterval;
75         int                                     *si_retrynum_init;
76         int                                     *si_retrynum;
77         struct sync_cookie      si_syncCookie;
78         int                                     si_manageDSAit;
79         int                                     si_slimit;
80         int                                     si_tlimit;
81         int                                     si_refreshDelete;
82         int                                     si_refreshPresent;
83         int                                     si_syncdata;
84         int                                     si_logstate;
85         int                                     si_conn_setup;
86         Avlnode                         *si_presentlist;
87         LDAP                            *si_ld;
88         LDAP_LIST_HEAD(np, nonpresent_entry) si_nonpresentlist;
89         ldap_pvt_thread_mutex_t si_mutex;
90 } syncinfo_t;
91
92 static int syncuuid_cmp( const void *, const void * );
93 static void avl_ber_bvfree( void * );
94 static void syncrepl_del_nonpresent( Operation *, syncinfo_t *, BerVarray );
95 static int syncrepl_message_to_op(
96                                         syncinfo_t *, Operation *, LDAPMessage * );
97 static int syncrepl_message_to_entry(
98                                         syncinfo_t *, Operation *, LDAPMessage *,
99                                         Modifications **, Entry **, int );
100 static int syncrepl_entry(
101                                         syncinfo_t *, Operation*, Entry*,
102                                         Modifications**,int, struct berval*,
103                                         struct sync_cookie *,
104                                         struct berval * );
105 static void syncrepl_updateCookie(
106                                         syncinfo_t *, Operation *, struct berval *,
107                                         struct sync_cookie * );
108 static struct berval * slap_uuidstr_from_normalized(
109                                         struct berval *, struct berval *, void * );
110
111 /* callback functions */
112 static int dn_callback( struct slap_op *, struct slap_rep * );
113 static int nonpresent_callback( struct slap_op *, struct slap_rep * );
114 static int null_callback( struct slap_op *, struct slap_rep * );
115
116 static AttributeDescription *sync_descs[4];
117
118 static void
119 init_syncrepl(syncinfo_t *si)
120 {
121         int i, j, k, l, n;
122         char **attrs, **exattrs;
123
124         if ( !sync_descs[0] ) {
125                 sync_descs[0] = slap_schema.si_ad_objectClass;
126                 sync_descs[1] = slap_schema.si_ad_structuralObjectClass;
127                 sync_descs[2] = slap_schema.si_ad_entryCSN;
128                 sync_descs[3] = NULL;
129         }
130
131         if ( si->si_allattrs && si->si_allopattrs )
132                 attrs = NULL;
133         else
134                 attrs = anlist2attrs( si->si_anlist );
135
136         if ( attrs ) {
137                 if ( si->si_allattrs ) {
138                         i = 0;
139                         while ( attrs[i] ) {
140                                 if ( !is_at_operational( at_find( attrs[i] ))) {
141                                         for ( j = i; attrs[j] != NULL; j++ ) {
142                                                 if ( j == i )
143                                                         ch_free( attrs[i] );
144                                                 attrs[j] = attrs[j+1];
145                                         }
146                                 } else {
147                                         i++;
148                                 }
149                         }
150                         attrs = ( char ** ) ch_realloc( attrs, (i + 2)*sizeof( char * ) );
151                         attrs[i] = ch_strdup("*");
152                         attrs[i + 1] = NULL;
153
154                 } else if ( si->si_allopattrs ) {
155                         i = 0;
156                         while ( attrs[i] ) {
157                                 if ( is_at_operational( at_find( attrs[i] ))) {
158                                         for ( j = i; attrs[j] != NULL; j++ ) {
159                                                 if ( j == i )
160                                                         ch_free( attrs[i] );
161                                                 attrs[j] = attrs[j+1];
162                                         }
163                                 } else {
164                                         i++;
165                                 }
166                         }
167                         attrs = ( char ** ) ch_realloc( attrs, (i + 2)*sizeof( char * ) );
168                         attrs[i] = ch_strdup("+");
169                         attrs[i + 1] = NULL;
170                 }
171
172                 for ( i = 0; sync_descs[i] != NULL; i++ ) {
173                         j = 0;
174                         while ( attrs[j] ) {
175                                 if ( !strcmp( attrs[j], sync_descs[i]->ad_cname.bv_val )) {
176                                         for ( k = j; attrs[k] != NULL; k++ ) {
177                                                 if ( k == j )
178                                                         ch_free( attrs[k] );
179                                                 attrs[k] = attrs[k+1];
180                                         }
181                                 } else {
182                                         j++;
183                                 }
184                         }
185                 }
186
187                 for ( n = 0; attrs[ n ] != NULL; n++ ) /* empty */;
188
189                 if ( si->si_allopattrs ) {
190                         attrs = ( char ** ) ch_realloc( attrs, (n + 2)*sizeof( char * ));
191                 } else {
192                         attrs = ( char ** ) ch_realloc( attrs, (n + 4)*sizeof( char * ));
193                 }
194
195                 if ( attrs == NULL ) {
196                         Debug( LDAP_DEBUG_ANY, "out of memory\n", 0, 0, 0 );
197                 }
198
199                 /* Add Attributes */
200                 if ( si->si_allopattrs ) {
201                         attrs[n++] = ch_strdup( sync_descs[0]->ad_cname.bv_val );
202                 } else {
203                         for ( i = 0; sync_descs[ i ] != NULL; i++ ) {
204                                 attrs[ n++ ] = ch_strdup ( sync_descs[i]->ad_cname.bv_val );
205                         }
206                 }
207                 attrs[ n ] = NULL;
208
209         } else {
210
211                 i = 0;
212                 if ( si->si_allattrs == si->si_allopattrs ) {
213                         attrs = (char**) ch_malloc( 3 * sizeof(char*) );
214                         attrs[i++] = ch_strdup( "*" );
215                         attrs[i++] = ch_strdup( "+" );
216                 } else if ( si->si_allattrs && !si->si_allopattrs ) {
217                         for ( n = 0; sync_descs[ n ] != NULL; n++ ) ;
218                         attrs = (char**) ch_malloc( (n+1)* sizeof(char*) );
219                         attrs[i++] = ch_strdup( "*" );
220                         for ( j = 1; sync_descs[ j ] != NULL; j++ ) {
221                                 attrs[i++] = ch_strdup ( sync_descs[j]->ad_cname.bv_val );
222                         }
223                 } else if ( !si->si_allattrs && si->si_allopattrs ) {
224                         attrs = (char**) ch_malloc( 3 * sizeof(char*) );
225                         attrs[i++] = ch_strdup( "+" );
226                         attrs[i++] = ch_strdup( sync_descs[0]->ad_cname.bv_val );
227                 }
228                 attrs[i] = NULL;
229         }
230         
231         si->si_attrs = attrs;
232
233         exattrs = anlist2attrs( si->si_exanlist );
234
235         if ( exattrs ) {
236                 for ( n = 0; exattrs[n] != NULL; n++ ) ;
237
238                 for ( i = 0; sync_descs[i] != NULL; i++ ) {
239                         j = 0;
240                         while ( exattrs[j] != NULL ) {
241                                 if ( !strcmp( exattrs[j], sync_descs[i]->ad_cname.bv_val )) {
242                                         ch_free( exattrs[j] );
243                                         for ( k = j; exattrs[k] != NULL; k++ ) {
244                                                 exattrs[k] = exattrs[k+1];
245                                         }
246                                 } else {
247                                         j++;
248                                 }
249                         }
250                 }
251
252                 for ( i = 0; exattrs[i] != NULL; i++ ) {
253                         for ( j = 0; si->si_anlist[j].an_name.bv_val; j++ ) {
254                                 ObjectClass     *oc;
255                                 if ( ( oc = si->si_anlist[j].an_oc ) ) {
256                                         k = 0;
257                                         while ( oc->soc_required[k] ) {
258                                                 if ( !strcmp( exattrs[i],
259                                                          oc->soc_required[k]->sat_cname.bv_val )) {
260                                                         ch_free( exattrs[i] );
261                                                         for ( l = i; exattrs[l]; l++ ) {
262                                                                 exattrs[l] = exattrs[l+1];
263                                                         }
264                                                 } else {
265                                                         k++;
266                                                 }
267                                         }
268                                 }
269                         }
270                 }
271
272                 for ( i = 0; exattrs[i] != NULL; i++ ) ;
273
274                 if ( i != n )
275                         exattrs = (char **) ch_realloc( exattrs, (i + 1)*sizeof(char *));
276         }
277
278         si->si_exattrs = exattrs;       
279 }
280
281 typedef struct logschema {
282         struct berval ls_dn;
283         struct berval ls_req;
284         struct berval ls_mod;
285         struct berval ls_newRdn;
286         struct berval ls_delRdn;
287         struct berval ls_newSup;
288 } logschema;
289
290 static logschema changelog_sc = {
291         BER_BVC("targetDN"),
292         BER_BVC("changeType"),
293         BER_BVC("changes"),
294         BER_BVC("newRDN"),
295         BER_BVC("deleteOldRDN"),
296         BER_BVC("newSuperior")
297 };
298
299 static logschema accesslog_sc = {
300         BER_BVC("reqDN"),
301         BER_BVC("reqType"),
302         BER_BVC("reqMod"),
303         BER_BVC("reqNewRDN"),
304         BER_BVC("reqDeleteOldRDN"),
305         BER_BVC("reqNewSuperior")
306 };
307
308 static int
309 ldap_sync_search(
310         syncinfo_t *si,
311         void *ctx )
312 {
313         BerElementBuffer berbuf;
314         BerElement *ber = (BerElement *)&berbuf;
315         LDAPControl c[2], *ctrls[3];
316         struct timeval timeout;
317         ber_int_t       msgid;
318         int rc;
319         int rhint;
320         char *base;
321         char **attrs, *lattrs[8];
322         char *filter;
323         int attrsonly;
324         int scope;
325
326         /* setup LDAP SYNC control */
327         ber_init2( ber, NULL, LBER_USE_DER );
328         ber_set_option( ber, LBER_OPT_BER_MEMCTX, &ctx );
329
330         /* If we're using a log but we have no state, then fallback to
331          * normal mode for a full refresh.
332          */
333         if ( si->si_syncdata && BER_BVISEMPTY( &si->si_syncCookie.ctxcsn ))
334                 si->si_logstate = SYNCLOG_FALLBACK;
335
336         /* Use the log parameters if we're in log mode */
337         if ( si->si_syncdata && si->si_logstate == SYNCLOG_LOGGING ) {
338                 logschema *ls;
339                 if ( si->si_syncdata == SYNCDATA_ACCESSLOG )
340                         ls = &accesslog_sc;
341                 else
342                         ls = &changelog_sc;
343                 lattrs[0] = ls->ls_dn.bv_val;
344                 lattrs[1] = ls->ls_req.bv_val;
345                 lattrs[2] = ls->ls_mod.bv_val;
346                 lattrs[3] = ls->ls_newRdn.bv_val;
347                 lattrs[4] = ls->ls_delRdn.bv_val;
348                 lattrs[5] = ls->ls_newSup.bv_val;
349                 lattrs[6] = slap_schema.si_ad_entryCSN->ad_cname.bv_val;
350                 lattrs[7] = NULL;
351
352                 rhint = 0;
353                 base = si->si_logbase.bv_val;
354                 filter = si->si_logfilterstr.bv_val;
355                 attrs = lattrs;
356                 attrsonly = 0;
357                 scope = LDAP_SCOPE_SUBTREE;
358         } else {
359                 rhint = 1;
360                 base = si->si_base.bv_val;
361                 filter = si->si_filterstr.bv_val;
362                 attrs = si->si_attrs;
363                 attrsonly = si->si_attrsonly;
364                 scope = si->si_scope;
365         }
366         if ( si->si_syncdata && si->si_logstate == SYNCLOG_FALLBACK ) {
367                 si->si_type = LDAP_SYNC_REFRESH_ONLY;
368         } else {
369                 si->si_type = si->si_ctype;
370         }
371
372         if ( !BER_BVISNULL( &si->si_syncCookie.octet_str ) )
373         {
374                 ber_printf( ber, "{eOb}",
375                         abs(si->si_type), &si->si_syncCookie.octet_str, rhint );
376         } else {
377                 ber_printf( ber, "{eb}",
378                         abs(si->si_type), rhint );
379         }
380
381         if ( (rc = ber_flatten2( ber, &c[0].ldctl_value, 0 )) == LBER_ERROR ) {
382                 ber_free_buf( ber );
383                 return rc;
384         }
385
386         c[0].ldctl_oid = LDAP_CONTROL_SYNC;
387         c[0].ldctl_iscritical = si->si_type < 0;
388         ctrls[0] = &c[0];
389
390         if ( !BER_BVISNULL( &si->si_bindconf.sb_authzId ) ) {
391                 c[1].ldctl_oid = LDAP_CONTROL_PROXY_AUTHZ;
392                 c[1].ldctl_value = si->si_bindconf.sb_authzId;
393                 c[1].ldctl_iscritical = 1;
394                 ctrls[1] = &c[1];
395                 ctrls[2] = NULL;
396         } else {
397                 ctrls[1] = NULL;
398         }
399
400         timeout.tv_sec = si->si_tlimit;
401         timeout.tv_usec = 0;
402
403         rc = ldap_search_ext( si->si_ld, base, scope, filter, attrs, attrsonly,
404                 ctrls, NULL, si->si_tlimit > 0 ? &timeout : NULL,
405                 si->si_slimit, &msgid );
406         ber_free_buf( ber );
407         return rc;
408 }
409
410 static int
411 do_syncrep1(
412         Operation *op,
413         syncinfo_t *si )
414 {
415         int     rc;
416         int cmdline_cookie_found = 0;
417
418         struct sync_cookie      *sc = NULL;
419         struct berval   *psub;
420 #ifdef HAVE_TLS
421         void    *ssl;
422 #endif
423
424         psub = &si->si_be->be_nsuffix[0];
425
426         /* Init connection to master */
427         rc = ldap_initialize( &si->si_ld, si->si_bindconf.sb_uri.bv_val );
428         if ( rc != LDAP_SUCCESS ) {
429                 Debug( LDAP_DEBUG_ANY,
430                         "do_syncrep1: ldap_initialize failed (%s)\n",
431                         si->si_bindconf.sb_uri.bv_val, 0, 0 );
432                 return rc;
433         }
434
435         op->o_protocol = LDAP_VERSION3;
436         ldap_set_option( si->si_ld, LDAP_OPT_PROTOCOL_VERSION, &op->o_protocol );
437
438         /* Bind to master */
439
440         if ( si->si_bindconf.sb_tls ) {
441                 rc = ldap_start_tls_s( si->si_ld, NULL, NULL );
442                 if( rc != LDAP_SUCCESS ) {
443                         Debug( LDAP_DEBUG_ANY,
444                                 "%s: ldap_start_tls failed (%d)\n",
445                                 si->si_bindconf.sb_tls == SB_TLS_CRITICAL ? "Error" : "Warning",
446                                 rc, 0 );
447                         if( si->si_bindconf.sb_tls == SB_TLS_CRITICAL ) goto done;
448                 }
449         }
450
451         if ( si->si_bindconf.sb_method == LDAP_AUTH_SASL ) {
452 #ifdef HAVE_CYRUS_SASL
453                 void *defaults;
454
455                 if ( si->si_bindconf.sb_secprops != NULL ) {
456                         rc = ldap_set_option( si->si_ld,
457                                 LDAP_OPT_X_SASL_SECPROPS, si->si_bindconf.sb_secprops);
458
459                         if( rc != LDAP_OPT_SUCCESS ) {
460                                 Debug( LDAP_DEBUG_ANY, "Error: ldap_set_option "
461                                         "(%s,SECPROPS,\"%s\") failed!\n",
462                                         si->si_bindconf.sb_uri.bv_val, si->si_bindconf.sb_secprops, 0 );
463                                 goto done;
464                         }
465                 }
466
467                 defaults = lutil_sasl_defaults( si->si_ld,
468                         si->si_bindconf.sb_saslmech.bv_val,
469                         si->si_bindconf.sb_realm.bv_val,
470                         si->si_bindconf.sb_authcId.bv_val,
471                         si->si_bindconf.sb_cred.bv_val,
472                         si->si_bindconf.sb_authzId.bv_val );
473
474                 rc = ldap_sasl_interactive_bind_s( si->si_ld,
475                                 si->si_bindconf.sb_binddn.bv_val,
476                                 si->si_bindconf.sb_saslmech.bv_val,
477                                 NULL, NULL,
478                                 LDAP_SASL_QUIET,
479                                 lutil_sasl_interact,
480                                 defaults );
481
482                 lutil_sasl_freedefs( defaults );
483
484                 /* FIXME: different error behaviors according to
485                  *      1) return code
486                  *      2) on err policy : exit, retry, backoff ...
487                  */
488                 if ( rc != LDAP_SUCCESS ) {
489                         static struct berval bv_GSSAPI = BER_BVC( "GSSAPI" );
490
491                         Debug( LDAP_DEBUG_ANY, "do_syncrep1: "
492                                 "ldap_sasl_interactive_bind_s failed (%d)\n",
493                                 rc, 0, 0 );
494
495                         /* FIXME (see above comment) */
496                         /* if Kerberos credentials cache is not active, retry */
497                         if ( ber_bvcmp( &si->si_bindconf.sb_saslmech, &bv_GSSAPI ) == 0 &&
498                                 rc == LDAP_LOCAL_ERROR )
499                         {
500                                 rc = LDAP_SERVER_DOWN;
501                         }
502
503                         goto done;
504                 }
505 #else /* HAVE_CYRUS_SASL */
506                 /* Should never get here, we trapped this at config time */
507                 assert(0);
508                 Debug( LDAP_DEBUG_SYNC, "not compiled with SASL support\n", 0, 0, 0 );
509                 rc = LDAP_OTHER;
510                 goto done;
511 #endif
512
513         } else if ( si->si_bindconf.sb_method == LDAP_AUTH_SIMPLE ) {
514                 rc = ldap_sasl_bind_s( si->si_ld,
515                         si->si_bindconf.sb_binddn.bv_val, LDAP_SASL_SIMPLE,
516                         &si->si_bindconf.sb_cred, NULL, NULL, NULL );
517                 if ( rc != LDAP_SUCCESS ) {
518                         Debug( LDAP_DEBUG_ANY, "do_syncrep1: "
519                                 "ldap_sasl_bind_s failed (%d)\n", rc, 0, 0 );
520                         goto done;
521                 }
522         }
523
524         /* Set SSF to strongest of TLS, SASL SSFs */
525         op->o_sasl_ssf = 0;
526         op->o_tls_ssf = 0;
527         op->o_transport_ssf = 0;
528 #ifdef HAVE_TLS
529         if ( ldap_get_option( si->si_ld, LDAP_OPT_X_TLS_SSL_CTX, &ssl )
530                 == LDAP_SUCCESS && ssl != NULL )
531         {
532                 op->o_tls_ssf = ldap_pvt_tls_get_strength( ssl );
533         }
534 #endif /* HAVE_TLS */
535         ldap_get_option( si->si_ld, LDAP_OPT_X_SASL_SSF, &op->o_sasl_ssf );
536         op->o_ssf = ( op->o_sasl_ssf > op->o_tls_ssf )
537                 ?  op->o_sasl_ssf : op->o_tls_ssf;
538
539
540         if ( BER_BVISNULL( &si->si_syncCookie.octet_str )) {
541                 /* get contextCSN shadow replica from database */
542                 BerVarray csn = NULL;
543
544                 assert( si->si_rid < 1000 );
545                 op->o_req_ndn = op->o_bd->be_nsuffix[0];
546                 op->o_req_dn = op->o_req_ndn;
547
548                 /* try to read stored contextCSN */
549                 backend_attribute( op, NULL, &op->o_req_ndn,
550                         slap_schema.si_ad_contextCSN, &csn, ACL_READ );
551                 if ( csn ) {
552                         ch_free( si->si_syncCookie.ctxcsn.bv_val );
553                         ber_dupbv( &si->si_syncCookie.ctxcsn, csn );
554                         ber_bvarray_free_x( csn, op->o_tmpmemctx );
555                 }
556
557                 si->si_syncCookie.rid = si->si_rid;
558
559                 LDAP_STAILQ_FOREACH( sc, &slap_sync_cookie, sc_next ) {
560                         if ( si->si_rid == sc->rid ) {
561                                 cmdline_cookie_found = 1;
562                                 break;
563                         }
564                 }
565
566                 if ( cmdline_cookie_found ) {
567                         /* cookie is supplied in the command line */
568
569                         LDAP_STAILQ_REMOVE( &slap_sync_cookie, sc, sync_cookie, sc_next );
570
571                         /* ctxcsn wasn't parsed yet, do it now */
572                         slap_parse_sync_cookie( sc, op->o_tmpmemctx );
573                         if ( BER_BVISNULL( &sc->ctxcsn ) ) {
574                                 /* if cmdline cookie does not have ctxcsn */
575                                 /* component, set it to an initial value */
576                                 slap_init_sync_cookie_ctxcsn( sc );
577                         }
578                         slap_sync_cookie_free( &si->si_syncCookie, 0 );
579                         slap_dup_sync_cookie( &si->si_syncCookie, sc );
580                         slap_sync_cookie_free( sc, 1 );
581                 }
582
583                 slap_compose_sync_cookie( NULL, &si->si_syncCookie.octet_str,
584                         &si->si_syncCookie.ctxcsn, si->si_syncCookie.rid );
585         }
586
587         rc = ldap_sync_search( si, op->o_tmpmemctx );
588
589         if( rc != LDAP_SUCCESS ) {
590                 Debug( LDAP_DEBUG_ANY, "do_syncrep1: "
591                         "ldap_search_ext: %s (%d)\n", ldap_err2string( rc ), rc, 0 );
592         }
593
594 done:
595         if ( rc ) {
596                 if ( si->si_ld ) {
597                         ldap_unbind_ext( si->si_ld, NULL, NULL );
598                         si->si_ld = NULL;
599                 }
600         }
601
602         return rc;
603 }
604
605 static int
606 do_syncrep2(
607         Operation *op,
608         syncinfo_t *si )
609 {
610         LDAPControl     **rctrls = NULL;
611         LDAPControl     *rctrlp;
612
613         BerElementBuffer berbuf;
614         BerElement      *ber = (BerElement *)&berbuf;
615
616         LDAPMessage     *res = NULL;
617         LDAPMessage     *msg = NULL;
618
619         char            *retoid = NULL;
620         struct berval   *retdata = NULL;
621
622         Entry           *entry = NULL;
623
624         int             syncstate;
625         struct berval   syncUUID = BER_BVNULL;
626         struct sync_cookie      syncCookie = { BER_BVNULL };
627         struct sync_cookie      syncCookie_req = { BER_BVNULL };
628         struct berval           cookie = BER_BVNULL;
629
630         int     rc, err, i;
631         ber_len_t       len;
632
633         int rc_efree = 1;
634
635         struct berval   *psub;
636         Modifications   *modlist = NULL;
637
638         const char              *text;
639         int                             match;
640
641         struct timeval *tout_p = NULL;
642         struct timeval tout = { 0, 0 };
643
644         int             refreshDeletes = 0;
645         int             refreshDone = 1;
646         BerVarray syncUUIDs = NULL;
647         ber_tag_t si_tag;
648
649         if ( slapd_shutdown ) {
650                 rc = -2;
651                 goto done;
652         }
653
654         ber_init2( ber, NULL, LBER_USE_DER );
655         ber_set_option( ber, LBER_OPT_BER_MEMCTX, &op->o_tmpmemctx );
656
657         Debug( LDAP_DEBUG_TRACE, "=>do_syncrep2\n", 0, 0, 0 );
658
659         psub = &si->si_be->be_nsuffix[0];
660
661         slap_dup_sync_cookie( &syncCookie_req, &si->si_syncCookie );
662
663         if ( abs(si->si_type) == LDAP_SYNC_REFRESH_AND_PERSIST ) {
664                 tout_p = &tout;
665         } else {
666                 tout_p = NULL;
667         }
668
669         while (( rc = ldap_result( si->si_ld, LDAP_RES_ANY, LDAP_MSG_ONE,
670                 tout_p, &res )) > 0 )
671         {
672                 if ( slapd_shutdown ) {
673                         rc = -2;
674                         goto done;
675                 }
676                 for( msg = ldap_first_message( si->si_ld, res );
677                         msg != NULL;
678                         msg = ldap_next_message( si->si_ld, msg ) )
679                 {
680                         if ( slapd_shutdown ) {
681                                 rc = -2;
682                                 goto done;
683                         }
684                         switch( ldap_msgtype( msg ) ) {
685                         case LDAP_RES_SEARCH_ENTRY:
686                                 ldap_get_entry_controls( si->si_ld, msg, &rctrls );
687                                 /* we can't work without the control */
688                                 if ( !rctrls ) {
689                                         Debug( LDAP_DEBUG_ANY, "do_syncrep2: "
690                                                 "got search entry without "
691                                                 "control\n", 0, 0, 0 );
692                                         rc = -1;
693                                         goto done;
694                                 }
695                                 rctrlp = *rctrls;
696                                 ber_init2( ber, &rctrlp->ldctl_value, LBER_USE_DER );
697                                 ber_scanf( ber, "{em" /*"}"*/, &syncstate, &syncUUID );
698                                 /* FIXME: what if syncUUID is NULL or empty?
699                                  * (happens with back-sql...) */
700                                 if ( BER_BVISEMPTY( &syncUUID ) ) {
701                                         Debug( LDAP_DEBUG_ANY, "do_syncrep2: "
702                                                 "got empty syncUUID\n", 0, 0, 0 );
703                                         ldap_controls_free( rctrls );
704                                         rc = -1;
705                                         goto done;
706                                 }
707                                 if ( ber_peek_tag( ber, &len ) == LDAP_TAG_SYNC_COOKIE ) {
708                                         ber_scanf( ber, /*"{"*/ "m}", &cookie );
709                                         if ( !BER_BVISNULL( &cookie ) ) {
710                                                 ch_free( syncCookie.octet_str.bv_val );
711                                                 ber_dupbv( &syncCookie.octet_str, &cookie );
712                                         }
713                                         if ( !BER_BVISNULL( &syncCookie.octet_str ) )
714                                         {
715                                                 slap_parse_sync_cookie( &syncCookie, NULL );
716                                         }
717                                 }
718                                 if ( si->si_syncdata && si->si_logstate == SYNCLOG_LOGGING ) {
719                                         entry = NULL;
720                                         modlist = NULL;
721                                         if ( syncrepl_message_to_op( si, op, msg ) == LDAP_SUCCESS &&
722                                                 !BER_BVISNULL( &syncCookie.ctxcsn ) ) {
723                                                 syncrepl_updateCookie( si, op, psub, &syncCookie );
724                                         }
725                                 } else if ( syncrepl_message_to_entry( si, op, msg,
726                                         &modlist, &entry, syncstate ) == LDAP_SUCCESS ) {
727                                         rc_efree = syncrepl_entry( si, op, entry, &modlist,
728                                                 syncstate, &syncUUID, &syncCookie_req, &syncCookie.ctxcsn );
729                                         if ( !BER_BVISNULL( &syncCookie.ctxcsn ) )
730                                         {
731                                                 syncrepl_updateCookie( si, op, psub, &syncCookie );
732                                         }
733                                 }
734                                 ldap_controls_free( rctrls );
735                                 if ( modlist ) {
736                                         slap_mods_free( modlist, 1 );
737                                 }
738                                 if ( rc_efree && entry ) {
739                                         entry_free( entry );
740                                 }
741                                 entry = NULL;
742                                 break;
743
744                         case LDAP_RES_SEARCH_REFERENCE:
745                                 Debug( LDAP_DEBUG_ANY,
746                                         "do_syncrep2: reference received error\n", 0, 0, 0 );
747                                 break;
748
749                         case LDAP_RES_SEARCH_RESULT:
750                                 Debug( LDAP_DEBUG_SYNC,
751                                         "do_syncrep2: LDAP_RES_SEARCH_RESULT\n", 0, 0, 0 );
752                                 ldap_parse_result( si->si_ld, msg, &err, NULL, NULL, NULL,
753                                         &rctrls, 0 );
754 #ifdef LDAP_X_SYNC_REFRESH_REQUIRED
755                                 if ( err == LDAP_X_SYNC_REFRESH_REQUIRED ) {
756                                         /* map old result code to registered code */
757                                         err = LDAP_SYNC_REFRESH_REQUIRED;
758                                 }
759 #endif
760                                 if ( err == LDAP_SYNC_REFRESH_REQUIRED ) {
761                                         if ( si->si_logstate == SYNCLOG_LOGGING ) {
762                                                 si->si_logstate = SYNCLOG_FALLBACK;
763                                         }
764                                         rc = err;
765                                         goto done;
766                                 }
767                                 if ( rctrls ) {
768                                         rctrlp = *rctrls;
769                                         ber_init2( ber, &rctrlp->ldctl_value, LBER_USE_DER );
770
771                                         ber_scanf( ber, "{" /*"}"*/);
772                                         if ( ber_peek_tag( ber, &len ) == LDAP_TAG_SYNC_COOKIE ) {
773                                                 ber_scanf( ber, "m", &cookie );
774                                                 if ( !BER_BVISNULL( &cookie ) ) {
775                                                         ch_free( syncCookie.octet_str.bv_val );
776                                                         ber_dupbv( &syncCookie.octet_str, &cookie);
777                                                 }
778                                                 if ( !BER_BVISNULL( &syncCookie.octet_str ) )
779                                                 {
780                                                         slap_parse_sync_cookie( &syncCookie, NULL );
781                                                 }
782                                         }
783                                         if ( ber_peek_tag( ber, &len ) == LDAP_TAG_REFRESHDELETES )
784                                         {
785                                                 ber_scanf( ber, "b", &refreshDeletes );
786                                         }
787                                         ber_scanf( ber, /*"{"*/ "}" );
788                                 }
789                                 if ( BER_BVISNULL( &syncCookie_req.ctxcsn )) {
790                                         match = -1;
791                                 } else if ( BER_BVISNULL( &syncCookie.ctxcsn )) {
792                                         match = 1;
793                                 } else {
794                                         value_match( &match, slap_schema.si_ad_entryCSN,
795                                                 slap_schema.si_ad_entryCSN->ad_type->sat_ordering,
796                                                 SLAP_MR_VALUE_OF_ATTRIBUTE_SYNTAX,
797                                                 &syncCookie_req.ctxcsn, &syncCookie.ctxcsn,
798                                                 &text );
799                                 }
800                                 if ( !BER_BVISNULL( &syncCookie.ctxcsn ) &&
801                                         match < 0 && err == LDAP_SUCCESS )
802                                 {
803                                         syncrepl_updateCookie( si, op, psub, &syncCookie );
804                                 }
805                                 if ( rctrls ) {
806                                         ldap_controls_free( rctrls );
807                                 }
808                                 if (si->si_type != LDAP_SYNC_REFRESH_AND_PERSIST) {
809                                         /* FIXME : different error behaviors according to
810                                          *      1) err code : LDAP_BUSY ...
811                                          *      2) on err policy : stop service, stop sync, retry
812                                          */
813                                         if ( refreshDeletes == 0 && match < 0 &&
814                                                 err == LDAP_SUCCESS )
815                                         {
816                                                 syncrepl_del_nonpresent( op, si, NULL );
817                                         } else {
818                                                 avl_free( si->si_presentlist, avl_ber_bvfree );
819                                                 si->si_presentlist = NULL;
820                                         }
821                                 }
822                                 if ( err == LDAP_SUCCESS
823                                         && si->si_logstate == SYNCLOG_FALLBACK ) {
824                                         si->si_logstate = SYNCLOG_LOGGING;
825                                         rc = LDAP_SYNC_REFRESH_REQUIRED;
826                                 } else {
827                                         rc = -2;
828                                 }
829                                 goto done;
830                                 break;
831
832                         case LDAP_RES_INTERMEDIATE:
833                                 rc = ldap_parse_intermediate( si->si_ld, msg,
834                                         &retoid, &retdata, NULL, 0 );
835                                 if ( !rc && !strcmp( retoid, LDAP_SYNC_INFO ) ) {
836                                         ber_init2( ber, retdata, LBER_USE_DER );
837
838                                         switch ( si_tag = ber_peek_tag( ber, &len )) {
839                                         ber_tag_t tag;
840                                         case LDAP_TAG_SYNC_NEW_COOKIE:
841                                                 Debug( LDAP_DEBUG_SYNC,
842                                                         "do_syncrep2: %s - %s%s\n", 
843                                                         "LDAP_RES_INTERMEDIATE", 
844                                                         "NEW_COOKIE", "\n" );
845                                                 ber_scanf( ber, "tm", &tag, &cookie );
846                                                 break;
847                                         case LDAP_TAG_SYNC_REFRESH_DELETE:
848                                         case LDAP_TAG_SYNC_REFRESH_PRESENT:
849                                                 Debug( LDAP_DEBUG_SYNC,
850                                                         "do_syncrep2: %s - %s%s\n", 
851                                                         "LDAP_RES_INTERMEDIATE", 
852                                                         si_tag == LDAP_TAG_SYNC_REFRESH_PRESENT ?
853                                                         "REFRESH_PRESENT" : "REFRESH_DELETE",
854                                                         "\n" );
855                                                 if ( si_tag == LDAP_TAG_SYNC_REFRESH_DELETE ) {
856                                                         si->si_refreshDelete = 1;
857                                                 } else {
858                                                         si->si_refreshPresent = 1;
859                                                 }
860                                                 ber_scanf( ber, "t{" /*"}"*/, &tag );
861                                                 if ( ber_peek_tag( ber, &len ) == LDAP_TAG_SYNC_COOKIE )
862                                                 {
863                                                         ber_scanf( ber, "m", &cookie );
864                                                         if ( !BER_BVISNULL( &cookie ) ) {
865                                                                 ch_free( syncCookie.octet_str.bv_val );
866                                                                 ber_dupbv( &syncCookie.octet_str, &cookie );
867                                                         }
868                                                         if ( !BER_BVISNULL( &syncCookie.octet_str ) )
869                                                         {
870                                                                 slap_parse_sync_cookie( &syncCookie, NULL );
871                                                         }
872                                                 }
873                                                 if ( ber_peek_tag( ber, &len ) ==
874                                                         LDAP_TAG_REFRESHDONE )
875                                                 {
876                                                         ber_scanf( ber, "b", &refreshDone );
877                                                 }
878                                                 ber_scanf( ber, /*"{"*/ "}" );
879                                                 break;
880                                         case LDAP_TAG_SYNC_ID_SET:
881                                                 Debug( LDAP_DEBUG_SYNC,
882                                                         "do_syncrep2: %s - %s%s\n", 
883                                                         "LDAP_RES_INTERMEDIATE", 
884                                                         "SYNC_ID_SET",
885                                                         "\n" );
886                                                 ber_scanf( ber, "t{" /*"}"*/, &tag );
887                                                 if ( ber_peek_tag( ber, &len ) ==
888                                                         LDAP_TAG_SYNC_COOKIE )
889                                                 {
890                                                         ber_scanf( ber, "m", &cookie );
891                                                         if ( !BER_BVISNULL( &cookie ) ) {
892                                                                 ch_free( syncCookie.octet_str.bv_val );
893                                                                 ber_dupbv( &syncCookie.octet_str, &cookie );
894                                                         }
895                                                         if ( !BER_BVISNULL( &syncCookie.octet_str ) )
896                                                         {
897                                                                 slap_parse_sync_cookie( &syncCookie, NULL );
898                                                         }
899                                                 }
900                                                 if ( ber_peek_tag( ber, &len ) ==
901                                                         LDAP_TAG_REFRESHDELETES )
902                                                 {
903                                                         ber_scanf( ber, "b", &refreshDeletes );
904                                                 }
905                                                 ber_scanf( ber, "[W]", &syncUUIDs );
906                                                 ber_scanf( ber, /*"{"*/ "}" );
907                                                 if ( refreshDeletes ) {
908                                                         syncrepl_del_nonpresent( op, si, syncUUIDs );
909                                                         ber_bvarray_free_x( syncUUIDs, op->o_tmpmemctx );
910                                                 } else {
911                                                         for ( i = 0; !BER_BVISNULL( &syncUUIDs[i] ); i++ ) {
912                                                                 struct berval *syncuuid_bv;
913                                                                 syncuuid_bv = ber_dupbv( NULL, &syncUUIDs[i] );
914                                                                 slap_sl_free( syncUUIDs[i].bv_val,op->o_tmpmemctx );
915                                                                 avl_insert( &si->si_presentlist,
916                                                                         (caddr_t) syncuuid_bv,
917                                                                         syncuuid_cmp, avl_dup_error );
918                                                         }
919                                                         slap_sl_free( syncUUIDs, op->o_tmpmemctx );
920                                                 }
921                                                 break;
922                                         default:
923                                                 Debug( LDAP_DEBUG_ANY,
924                                                         "do_syncrep2 : unknown syncinfo tag (%ld)\n",
925                                                 (long) si_tag, 0, 0 );
926                                                 ldap_memfree( retoid );
927                                                 ber_bvfree( retdata );
928                                                 continue;
929                                         }
930
931                                         if ( BER_BVISNULL( &syncCookie_req.ctxcsn )) {
932                                                 match = -1;
933                                         } else if ( BER_BVISNULL( &syncCookie.ctxcsn )) {
934                                                 match = 1;
935                                         } else {
936                                                 value_match( &match, slap_schema.si_ad_entryCSN,
937                                                         slap_schema.si_ad_entryCSN->ad_type->sat_ordering,
938                                                         SLAP_MR_VALUE_OF_ATTRIBUTE_SYNTAX,
939                                                         &syncCookie_req.ctxcsn,
940                                                         &syncCookie.ctxcsn, &text );
941                                         }
942
943                                         if ( !BER_BVISNULL( &syncCookie.ctxcsn ) &&
944                                                 match < 0 )
945                                         {
946                                                 syncrepl_updateCookie( si, op, psub, &syncCookie);
947                                         }
948
949                                         if ( si->si_refreshPresent == 1 ) {
950                                                 if ( match < 0 ) {
951                                                         syncrepl_del_nonpresent( op, si, NULL );
952                                                 }
953                                         } 
954
955                                         ldap_memfree( retoid );
956                                         ber_bvfree( retdata );
957                                         break;
958
959                                 } else {
960                                         Debug( LDAP_DEBUG_ANY, "do_syncrep2 : "
961                                                 "unknown intermediate response (%d)\n",
962                                                 rc, 0, 0 );
963                                         ldap_memfree( retoid );
964                                         ber_bvfree( retdata );
965                                         break;
966                                 }
967                                 break;
968
969                         default:
970                                 Debug( LDAP_DEBUG_ANY, "do_syncrep2 : "
971                                         "unknown message\n", 0, 0, 0 );
972                                 break;
973
974                         }
975                         if ( !BER_BVISNULL( &syncCookie.octet_str )) {
976                                 slap_sync_cookie_free( &syncCookie_req, 0 );
977                                 slap_dup_sync_cookie( &syncCookie_req, &syncCookie );
978                                 slap_sync_cookie_free( &syncCookie, 0 );
979                         }
980                 }
981                 ldap_msgfree( res );
982                 res = NULL;
983         }
984
985         if ( rc == -1 ) {
986                 const char *errstr;
987
988                 ldap_get_option( si->si_ld, LDAP_OPT_ERROR_NUMBER, &rc );
989                 errstr = ldap_err2string( rc );
990                 
991                 Debug( LDAP_DEBUG_ANY,
992                         "do_syncrep2 : %s\n", errstr, 0, 0 );
993         }
994
995 done:
996         slap_sync_cookie_free( &syncCookie, 0 );
997         slap_sync_cookie_free( &syncCookie_req, 0 );
998
999         if ( res ) ldap_msgfree( res );
1000
1001         if ( rc && rc != LDAP_SYNC_REFRESH_REQUIRED && si->si_ld ) {
1002                 if ( si->si_conn_setup ) {
1003                         ber_socket_t s;
1004                         ldap_get_option( si->si_ld, LDAP_OPT_DESC, &s );
1005                         connection_client_stop( s );
1006                         si->si_conn_setup = 0;
1007                 }
1008                 ldap_unbind_ext( si->si_ld, NULL, NULL );
1009                 si->si_ld = NULL;
1010         }
1011
1012         return rc;
1013 }
1014
1015 static void *
1016 do_syncrepl(
1017         void    *ctx,
1018         void    *arg )
1019 {
1020         struct re_s* rtask = arg;
1021         syncinfo_t *si = ( syncinfo_t * ) rtask->arg;
1022         Connection conn = {0};
1023         OperationBuffer opbuf;
1024         Operation *op;
1025         int rc = LDAP_SUCCESS;
1026         int dostop = 0;
1027         ber_socket_t s;
1028         int i, defer = 1;
1029         Backend *be;
1030
1031         Debug( LDAP_DEBUG_TRACE, "=>do_syncrepl\n", 0, 0, 0 );
1032
1033         if ( si == NULL )
1034                 return NULL;
1035
1036         ldap_pvt_thread_mutex_lock( &si->si_mutex );
1037
1038         switch( abs( si->si_type )) {
1039         case LDAP_SYNC_REFRESH_ONLY:
1040         case LDAP_SYNC_REFRESH_AND_PERSIST:
1041                 break;
1042         default:
1043                 ldap_pvt_thread_mutex_unlock( &si->si_mutex );
1044                 return NULL;
1045         }
1046
1047         if ( slapd_shutdown ) {
1048                 if ( si->si_ld ) {
1049                         if ( si->si_conn_setup ) {
1050                                 ldap_get_option( si->si_ld, LDAP_OPT_DESC, &s );
1051                                 connection_client_stop( s );
1052                                 si->si_conn_setup = 0;
1053                         }
1054                         ldap_unbind_ext( si->si_ld, NULL, NULL );
1055                         si->si_ld = NULL;
1056                 }
1057                 ldap_pvt_thread_mutex_unlock( &si->si_mutex );
1058                 return NULL;
1059         }
1060
1061         op = (Operation *) &opbuf;
1062         connection_fake_init( &conn, op, ctx );
1063
1064         /* use global malloc for now */
1065         op->o_tmpmemctx = NULL;
1066         op->o_tmpmfuncs = &ch_mfuncs;
1067
1068         op->o_managedsait = SLAP_CONTROL_NONCRITICAL;
1069         op->o_bd = be = si->si_be;
1070         op->o_dn = op->o_bd->be_rootdn;
1071         op->o_ndn = op->o_bd->be_rootndn;
1072
1073         /* Establish session, do search */
1074         if ( !si->si_ld ) {
1075                 si->si_refreshDelete = 0;
1076                 si->si_refreshPresent = 0;
1077                 rc = do_syncrep1( op, si );
1078         }
1079
1080 reload:
1081         /* Process results */
1082         if ( rc == LDAP_SUCCESS ) {
1083                 ldap_get_option( si->si_ld, LDAP_OPT_DESC, &s );
1084
1085                 rc = do_syncrep2( op, si );
1086                 if ( rc == LDAP_SYNC_REFRESH_REQUIRED ) {
1087                         rc = ldap_sync_search( si, op->o_tmpmemctx );
1088                         goto reload;
1089                 }
1090
1091                 if ( abs(si->si_type) == LDAP_SYNC_REFRESH_AND_PERSIST ) {
1092                         /* If we succeeded, enable the connection for further listening.
1093                          * If we failed, tear down the connection and reschedule.
1094                          */
1095                         if ( rc == LDAP_SUCCESS ) {
1096                                 if ( si->si_conn_setup ) {
1097                                         connection_client_enable( s );
1098                                 } else {
1099                                         rc = connection_client_setup( s, do_syncrepl, arg );
1100                                         if ( rc == 0 )
1101                                                 si->si_conn_setup = 1;
1102                                 } 
1103                         } else if ( si->si_conn_setup ) {
1104                                 dostop = 1;
1105                         }
1106                 } else {
1107                         if ( rc == -2 ) rc = 0;
1108                 }
1109         }
1110
1111         /* At this point, we have 4 cases:
1112          * 1) for any hard failure, give up and remove this task
1113          * 2) for ServerDown, reschedule this task to run
1114          * 3) for Refresh and Success, reschedule to run
1115          * 4) for Persist and Success, reschedule to defer
1116          */
1117         ldap_pvt_thread_mutex_lock( &slapd_rq.rq_mutex );
1118
1119         if ( ldap_pvt_runqueue_isrunning( &slapd_rq, rtask )) {
1120                 ldap_pvt_runqueue_stoptask( &slapd_rq, rtask );
1121         }
1122
1123         if ( dostop ) {
1124                 connection_client_stop( s );
1125         }
1126
1127         if ( rc == LDAP_SUCCESS ) {
1128                 if ( si->si_type == LDAP_SYNC_REFRESH_ONLY ) {
1129                         defer = 0;
1130                 }
1131                 rtask->interval.tv_sec = si->si_interval;
1132                 ldap_pvt_runqueue_resched( &slapd_rq, rtask, defer );
1133                 if ( si->si_retrynum ) {
1134                         for ( i = 0; si->si_retrynum_init[i] != RETRYNUM_TAIL; i++ ) {
1135                                 si->si_retrynum[i] = si->si_retrynum_init[i];
1136                         }
1137                         si->si_retrynum[i] = RETRYNUM_TAIL;
1138                 }
1139         } else {
1140                 for ( i = 0; si->si_retrynum && si->si_retrynum[i] <= 0; i++ ) {
1141                         if ( si->si_retrynum[i] == RETRYNUM_FOREVER || si->si_retrynum[i] == RETRYNUM_TAIL )
1142                                 break;
1143                 }
1144
1145                 if ( !si->si_retrynum || si->si_retrynum[i] == RETRYNUM_TAIL ) {
1146                         ldap_pvt_runqueue_remove( &slapd_rq, rtask );
1147                 } else if ( RETRYNUM_VALID( si->si_retrynum[i] ) ) {
1148                         if ( si->si_retrynum[i] > 0 )
1149                                 si->si_retrynum[i]--;
1150                         rtask->interval.tv_sec = si->si_retryinterval[i];
1151                         ldap_pvt_runqueue_resched( &slapd_rq, rtask, 0 );
1152                         slap_wake_listener();
1153                 }
1154         }
1155         
1156         ldap_pvt_thread_mutex_unlock( &slapd_rq.rq_mutex );
1157         ldap_pvt_thread_mutex_unlock( &si->si_mutex );
1158
1159         return NULL;
1160 }
1161
1162 static slap_verbmasks modops[] = {
1163         { BER_BVC("add"), LDAP_REQ_ADD },
1164         { BER_BVC("delete"), LDAP_REQ_DELETE },
1165         { BER_BVC("modify"), LDAP_REQ_MODIFY },
1166         { BER_BVC("modrdn"), LDAP_REQ_MODRDN},
1167         { BER_BVNULL, 0 }
1168 };
1169
1170 static Modifications *
1171 syncrepl_accesslog_mods(
1172         syncinfo_t *si,
1173         struct berval *vals
1174 )
1175 {
1176         char *colon;
1177         const char *text;
1178         AttributeDescription *ad;
1179         struct berval bv, bv2;
1180         short op;
1181         Modifications *mod = NULL, *modlist = NULL, **modtail;
1182         int i;
1183
1184         modtail = &modlist;
1185
1186         for (i=0; !BER_BVISNULL( &vals[i] ); i++) {
1187                 ad = NULL;
1188                 bv = vals[i];
1189
1190                 colon = ber_bvchr( &bv, ':' );
1191                 if ( !colon )
1192                         continue;       /* invalid */
1193                 bv.bv_len = colon - bv.bv_val;
1194                 if ( slap_bv2ad( &bv, &ad, &text )) {
1195                         /* Invalid */
1196                         continue;
1197                 }
1198                 /* Ignore dynamically generated attrs */
1199                 if ( ad->ad_type->sat_flags & SLAP_AT_DYNAMIC )
1200                         continue;
1201                 /* Ignore excluded attrs */
1202                 if ( ldap_charray_inlist( si->si_exattrs,
1203                         ad->ad_type->sat_cname.bv_val ))
1204                         continue;
1205
1206                 switch(colon[1]) {
1207                 case '+':       op = LDAP_MOD_ADD; break;
1208                 case '-':       op = LDAP_MOD_DELETE; break;
1209                 case '=':       op = LDAP_MOD_REPLACE; break;
1210                 case '#':       op = LDAP_MOD_INCREMENT; break;
1211                 default:        continue;
1212                 }
1213
1214                 if ( !mod || ad != mod->sml_desc || op != mod->sml_op ) {
1215                         mod = (Modifications *) ch_malloc( sizeof( Modifications ));
1216                         mod->sml_flags = 0;
1217                         mod->sml_op = op;
1218                         mod->sml_next = NULL;
1219                         mod->sml_desc = ad;
1220                         mod->sml_type = ad->ad_cname;
1221                         mod->sml_values = NULL;
1222                         mod->sml_nvalues = NULL;
1223
1224                         *modtail = mod;
1225                         modtail = &mod->sml_next;
1226                 }
1227                 if ( colon[2] == ' ' ) {
1228                         bv.bv_val = colon + 3;
1229                         bv.bv_len = vals[i].bv_len - ( bv.bv_val - vals[i].bv_val );
1230                         ber_dupbv( &bv2, &bv );
1231                         ber_bvarray_add( &mod->sml_values, &bv2 );
1232                 }
1233         }
1234         return modlist;
1235 }
1236
1237 static Modifications *
1238 syncrepl_changelog_mods(
1239         syncinfo_t *si,
1240         struct berval *vals
1241 )
1242 {
1243         return NULL;    /* FIXME */
1244 }
1245
1246 static int
1247 syncrepl_message_to_op(
1248         syncinfo_t      *si,
1249         Operation       *op,
1250         LDAPMessage     *msg
1251 )
1252 {
1253         BerElement      *ber = NULL;
1254         Modifications   *modlist = NULL;
1255         logschema *ls;
1256         SlapReply rs = { REP_RESULT };
1257         slap_callback cb = { NULL, null_callback, NULL, NULL };
1258
1259         const char      *text;
1260         char txtbuf[SLAP_TEXT_BUFLEN];
1261         size_t textlen = sizeof txtbuf;
1262
1263         struct berval   bdn, dn = BER_BVNULL, ndn;
1264         struct berval   bv, *bvals = NULL;
1265         struct berval   rdn = BER_BVNULL, sup = BER_BVNULL,
1266                 prdn = BER_BVNULL, nrdn = BER_BVNULL,
1267                 psup = BER_BVNULL, nsup = BER_BVNULL;
1268         int             rc, deleteOldRdn = 0;
1269
1270         if ( ldap_msgtype( msg ) != LDAP_RES_SEARCH_ENTRY ) {
1271                 Debug( LDAP_DEBUG_ANY,
1272                         "Message type should be entry (%d)", ldap_msgtype( msg ), 0, 0 );
1273                 return -1;
1274         }
1275
1276         if ( si->si_syncdata == SYNCDATA_ACCESSLOG )
1277                 ls = &accesslog_sc;
1278         else
1279                 ls = &changelog_sc;
1280
1281         rc = ldap_get_dn_ber( si->si_ld, msg, &ber, &bdn );
1282
1283         if ( rc != LDAP_SUCCESS ) {
1284                 Debug( LDAP_DEBUG_ANY,
1285                         "syncrepl_message_to_op : dn get failed (%d)", rc, 0, 0 );
1286                 return rc;
1287         }
1288
1289         op->o_tag = LBER_DEFAULT;
1290
1291         while (( rc = ldap_get_attribute_ber( si->si_ld, msg, ber, &bv, &bvals ))
1292                 == LDAP_SUCCESS ) {
1293                 if ( bv.bv_val == NULL )
1294                         break;
1295
1296                 if ( !ber_bvstrcasecmp( &bv, &ls->ls_dn )) {
1297                         bdn = bvals[0];
1298                         dnPrettyNormal( NULL, &bdn, &dn, &ndn, op->o_tmpmemctx );
1299                         ber_dupbv( &op->o_req_dn, &dn );
1300                         ber_dupbv( &op->o_req_ndn, &ndn );
1301                         slap_sl_free( ndn.bv_val, op->o_tmpmemctx );
1302                         slap_sl_free( dn.bv_val, op->o_tmpmemctx );
1303                 } else if ( !ber_bvstrcasecmp( &bv, &ls->ls_req )) {
1304                         int i = verb_to_mask( bvals[0].bv_val, modops );
1305                         if ( i < 0 ) {
1306                                 Debug( LDAP_DEBUG_ANY,
1307                                         "syncrepl_message_to_op : unknown op %s",
1308                                         bvals[0].bv_val, 0, 0 );
1309                                 ch_free( bvals );
1310                                 rc = -1;
1311                                 goto done;
1312                         }
1313                         op->o_tag = modops[i].mask;
1314                 } else if ( !ber_bvstrcasecmp( &bv, &ls->ls_mod )) {
1315                         /* Parse attribute into modlist */
1316                         if ( si->si_syncdata == SYNCDATA_ACCESSLOG )
1317                                 modlist = syncrepl_accesslog_mods( si, bvals );
1318                         else
1319                                 modlist = syncrepl_changelog_mods( si, bvals );
1320                 } else if ( !ber_bvstrcasecmp( &bv, &ls->ls_newRdn )) {
1321                         rdn = bvals[0];
1322                 } else if ( !ber_bvstrcasecmp( &bv, &ls->ls_delRdn )) {
1323                         if ( !ber_bvstrcasecmp( &slap_true_bv, bvals ))
1324                                 deleteOldRdn = 1;
1325                 } else if ( !ber_bvstrcasecmp( &bv, &ls->ls_newSup )) {
1326                         sup = bvals[0];
1327                 } else if ( !ber_bvstrcasecmp( &bv,
1328                         &slap_schema.si_ad_entryCSN->ad_cname )) {
1329                         slap_queue_csn( op, bvals );
1330                 }
1331                 ch_free( bvals );
1332         }
1333
1334         /* If we didn't get a mod type or a target DN, bail out */
1335         if ( op->o_tag == LBER_DEFAULT || BER_BVISNULL( &dn )) {
1336                 rc = -1;
1337                 goto done;
1338         }
1339
1340         op->o_callback = &cb;
1341
1342         switch( op->o_tag ) {
1343         case LDAP_REQ_ADD:
1344         case LDAP_REQ_MODIFY:
1345                 /* If we didn't get required data, bail */
1346                 if ( !modlist ) goto done;
1347
1348                 rc = slap_mods_check( modlist, &text, txtbuf, textlen, NULL );
1349
1350                 if ( rc != LDAP_SUCCESS ) {
1351                         Debug( LDAP_DEBUG_ANY, "syncrepl_message_to_op: mods check (%s)\n",
1352                                 text, 0, 0 );
1353                         goto done;
1354                 }
1355
1356                 if ( op->o_tag == LDAP_REQ_ADD ) {
1357                         op->ora_e = ( Entry * ) ch_calloc( 1, sizeof( Entry ) );
1358                         op->ora_e->e_name = op->o_req_dn;
1359                         op->ora_e->e_nname = op->o_req_ndn;
1360                         rc = slap_mods2entry( modlist, &op->ora_e, 1, 0, &text, txtbuf, textlen);
1361                         if( rc != LDAP_SUCCESS ) {
1362                                 Debug( LDAP_DEBUG_ANY, "syncrepl_message_to_op: mods2entry (%s)\n",
1363                                         text, 0, 0 );
1364                         } else {
1365                                 rc = op->o_bd->be_add( op, &rs );
1366                         }
1367                         be_entry_release_w( op, op->ora_e );
1368                 } else {
1369                         op->orm_modlist = modlist;
1370                         rc = op->o_bd->be_modify( op, &rs );
1371                 }
1372                 break;
1373         case LDAP_REQ_MODRDN:
1374                 if ( BER_BVISNULL( &rdn )) goto done;
1375
1376                 if ( rdnPretty( NULL, &rdn, &prdn, NULL ))
1377                         goto done;
1378                 if ( rdnNormalize( 0, NULL, NULL, &rdn, &nrdn, NULL ))
1379                         goto done;
1380                 if ( !BER_BVISNULL( &sup )) {
1381                         if ( dnPrettyNormal( NULL, &sup, &psup, &nsup, NULL ))
1382                                 goto done;
1383                         op->orr_newSup = &psup;
1384                         op->orr_nnewSup = &nsup;
1385                 }
1386                 op->orr_newrdn = prdn;
1387                 op->orr_nnewrdn = nrdn;
1388                 op->orr_deleteoldrdn = deleteOldRdn;
1389                 op->orr_modlist = NULL;
1390                 if ( slap_modrdn2mods( op, &rs ))
1391                         goto done;
1392                 rc = op->o_bd->be_modrdn( op, &rs );
1393                 slap_mods_free( op->orr_modlist, 1 );
1394                 break;
1395         case LDAP_REQ_DELETE:
1396                 rc = op->o_bd->be_delete( op, &rs );
1397                 break;
1398         }
1399 done:
1400         slap_graduate_commit_csn( op );
1401         if ( modlist )
1402                 slap_mods_free( modlist, op->o_tag != LDAP_REQ_ADD );
1403         if ( !BER_BVISNULL( &rdn )) {
1404                 if ( !BER_BVISNULL( &nsup ))
1405                         ch_free( nsup.bv_val );
1406                 if ( !BER_BVISNULL( &psup ))
1407                         ch_free( psup.bv_val );
1408                 if ( !BER_BVISNULL( &nrdn ))
1409                         ch_free( nrdn.bv_val );
1410                 if ( !BER_BVISNULL( &prdn ))
1411                         ch_free( prdn.bv_val );
1412         }
1413         ber_free ( ber, 0 );
1414         return rc;
1415 }
1416
1417 static int
1418 syncrepl_message_to_entry(
1419         syncinfo_t      *si,
1420         Operation       *op,
1421         LDAPMessage     *msg,
1422         Modifications   **modlist,
1423         Entry                   **entry,
1424         int             syncstate
1425 )
1426 {
1427         Entry           *e = NULL;
1428         BerElement      *ber = NULL;
1429         Modifications   tmp;
1430         Modifications   *mod;
1431         Modifications   **modtail = modlist;
1432
1433         const char      *text;
1434         char txtbuf[SLAP_TEXT_BUFLEN];
1435         size_t textlen = sizeof txtbuf;
1436
1437         struct berval   bdn = {0, NULL}, dn, ndn;
1438         int             rc;
1439
1440         *modlist = NULL;
1441
1442         if ( ldap_msgtype( msg ) != LDAP_RES_SEARCH_ENTRY ) {
1443                 Debug( LDAP_DEBUG_ANY,
1444                         "Message type should be entry (%d)", ldap_msgtype( msg ), 0, 0 );
1445                 return -1;
1446         }
1447
1448         op->o_tag = LDAP_REQ_ADD;
1449
1450         rc = ldap_get_dn_ber( si->si_ld, msg, &ber, &bdn );
1451
1452         if ( rc != LDAP_SUCCESS ) {
1453                 Debug( LDAP_DEBUG_ANY,
1454                         "syncrepl_message_to_entry : dn get failed (%d)", rc, 0, 0 );
1455                 return rc;
1456         }
1457
1458         dnPrettyNormal( NULL, &bdn, &dn, &ndn, op->o_tmpmemctx );
1459         ber_dupbv( &op->o_req_dn, &dn );
1460         ber_dupbv( &op->o_req_ndn, &ndn );
1461         slap_sl_free( ndn.bv_val, op->o_tmpmemctx );
1462         slap_sl_free( dn.bv_val, op->o_tmpmemctx );
1463
1464         if ( syncstate == LDAP_SYNC_PRESENT || syncstate == LDAP_SYNC_DELETE ) {
1465                 if ( entry )
1466                         *entry = NULL;
1467                 return LDAP_SUCCESS;
1468         }
1469
1470         if ( entry == NULL ) {
1471                 return -1;
1472         }
1473
1474         e = ( Entry * ) ch_calloc( 1, sizeof( Entry ) );
1475         *entry = e;
1476         e->e_name = op->o_req_dn;
1477         e->e_nname = op->o_req_ndn;
1478
1479         while ( ber_remaining( ber ) ) {
1480                 if ( (ber_scanf( ber, "{mW}", &tmp.sml_type, &tmp.sml_values ) ==
1481                         LBER_ERROR ) || BER_BVISNULL( &tmp.sml_type ) )
1482                 {
1483                         break;
1484                 }
1485
1486                 mod  = (Modifications *) ch_malloc( sizeof( Modifications ));
1487
1488                 mod->sml_op = LDAP_MOD_REPLACE;
1489                 mod->sml_flags = 0;
1490                 mod->sml_next = NULL;
1491                 mod->sml_desc = NULL;
1492                 mod->sml_type = tmp.sml_type;
1493                 mod->sml_values = tmp.sml_values;
1494                 mod->sml_nvalues = NULL;
1495
1496                 *modtail = mod;
1497                 modtail = &mod->sml_next;
1498         }
1499
1500         if ( *modlist == NULL ) {
1501                 Debug( LDAP_DEBUG_ANY, "syncrepl_message_to_entry: no attributes\n",
1502                         0, 0, 0 );
1503                 rc = -1;
1504                 goto done;
1505         }
1506
1507         rc = slap_mods_check( *modlist, &text, txtbuf, textlen, NULL );
1508
1509         if ( rc != LDAP_SUCCESS ) {
1510                 Debug( LDAP_DEBUG_ANY, "syncrepl_message_to_entry: mods check (%s)\n",
1511                         text, 0, 0 );
1512                 goto done;
1513         }
1514
1515         /* Strip out dynamically generated attrs */
1516         for ( modtail = modlist; *modtail ; ) {
1517                 mod = *modtail;
1518                 if ( mod->sml_desc->ad_type->sat_flags & SLAP_AT_DYNAMIC ) {
1519                         *modtail = mod->sml_next;
1520                         slap_mod_free( &mod->sml_mod, 0 );
1521                         ch_free( mod );
1522                 } else {
1523                         modtail = &mod->sml_next;
1524                 }
1525         }
1526
1527         /* Strip out attrs in exattrs list */
1528         for ( modtail = modlist; *modtail ; ) {
1529                 mod = *modtail;
1530                 if ( ldap_charray_inlist( si->si_exattrs,
1531                                         mod->sml_desc->ad_type->sat_cname.bv_val )) {
1532                         *modtail = mod->sml_next;
1533                         slap_mod_free( &mod->sml_mod, 0 );
1534                         ch_free( mod );
1535                 } else {
1536                         modtail = &mod->sml_next;
1537                 }
1538         }
1539         
1540         rc = slap_mods2entry( *modlist, &e, 1, 1, &text, txtbuf, textlen);
1541         if( rc != LDAP_SUCCESS ) {
1542                 Debug( LDAP_DEBUG_ANY, "syncrepl_message_to_entry: mods2entry (%s)\n",
1543                         text, 0, 0 );
1544         }
1545
1546 done:
1547         ber_free ( ber, 0 );
1548         if ( rc != LDAP_SUCCESS ) {
1549                 if ( e ) {
1550                         entry_free( e );
1551                         *entry = e = NULL;
1552                 }
1553         }
1554
1555         return rc;
1556 }
1557
1558 static struct berval generic_filterstr = BER_BVC("(objectclass=*)");
1559
1560 /* During a refresh, we may get an LDAP_SYNC_ADD for an already existing
1561  * entry if a previous refresh was interrupted before sending us a new
1562  * context state. We try to compare the new entry to the existing entry
1563  * and ignore the new entry if they are the same.
1564  *
1565  * Also, we may get an update where the entryDN has changed, due to
1566  * a ModDn on the provider. We detect this as well, so we can issue
1567  * the corresponding operation locally.
1568  *
1569  * In the case of a modify, we get a list of all the attributes
1570  * in the original entry. Rather than deleting the entry and re-adding it,
1571  * we issue a Modify request that deletes all the attributes and adds all
1572  * the new ones. This avoids the issue of trying to delete/add a non-leaf
1573  * entry.
1574  *
1575  * We don't try to otherwise distinguish ModDN from Modify; in the case of
1576  * a ModDN we will issue both operations on the local database.
1577  */
1578 typedef struct dninfo {
1579         Entry *new_entry;
1580         struct berval dn;
1581         struct berval ndn;
1582         int renamed;    /* Was an existing entry renamed? */
1583         int wasChanged; /* are the attributes changed? */
1584         int attrs;              /* how many attribute types are in the ads list */
1585         AttributeDescription **ads;
1586 } dninfo;
1587
1588 static int
1589 syncrepl_entry(
1590         syncinfo_t* si,
1591         Operation *op,
1592         Entry* entry,
1593         Modifications** modlist,
1594         int syncstate,
1595         struct berval* syncUUID,
1596         struct sync_cookie* syncCookie_req,
1597         struct berval* syncCSN )
1598 {
1599         Backend *be = op->o_bd;
1600         slap_callback   cb = { NULL, NULL, NULL, NULL };
1601         struct berval   *syncuuid_bv = NULL;
1602         struct berval   syncUUID_strrep = BER_BVNULL;
1603         struct berval   uuid_bv = BER_BVNULL;
1604
1605         SlapReply       rs_search = {REP_RESULT};
1606         SlapReply       rs_delete = {REP_RESULT};
1607         SlapReply       rs_add = {REP_RESULT};
1608         SlapReply       rs_modify = {REP_RESULT};
1609         Filter f = {0};
1610 #ifdef LDAP_COMP_MATCH
1611         AttributeAssertion ava = { NULL, BER_BVNULL, NULL };
1612 #else
1613         AttributeAssertion ava = { NULL, BER_BVNULL };
1614 #endif
1615         int rc = LDAP_SUCCESS;
1616         int ret = LDAP_SUCCESS;
1617
1618         struct berval pdn = BER_BVNULL;
1619         dninfo dni = {0};
1620         int     retry = 1;
1621
1622         switch( syncstate ) {
1623         case LDAP_SYNC_PRESENT:
1624                 Debug( LDAP_DEBUG_SYNC, "%s: %s\n",
1625                                         "syncrepl_entry",
1626                                         "LDAP_RES_SEARCH_ENTRY(LDAP_SYNC_PRESENT)", 0 );
1627                 break;
1628         case LDAP_SYNC_ADD:
1629                 Debug( LDAP_DEBUG_SYNC, "%s: %s\n",
1630                                         "syncrepl_entry",
1631                                         "LDAP_RES_SEARCH_ENTRY(LDAP_SYNC_ADD)", 0 );
1632                 break;
1633         case LDAP_SYNC_DELETE:
1634                 Debug( LDAP_DEBUG_SYNC, "%s: %s\n",
1635                                         "syncrepl_entry",
1636                                         "LDAP_RES_SEARCH_ENTRY(LDAP_SYNC_DELETE)", 0 );
1637                 break;
1638         case LDAP_SYNC_MODIFY:
1639                 Debug( LDAP_DEBUG_SYNC, "%s: %s\n",
1640                                         "syncrepl_entry",
1641                                         "LDAP_RES_SEARCH_ENTRY(LDAP_SYNC_MODIFY)", 0 );
1642                 break;
1643         default:
1644                 Debug( LDAP_DEBUG_ANY, "%s: %s\n",
1645                                         "syncrepl_entry",
1646                                         "LDAP_RES_SEARCH_ENTRY(UNKNOWN syncstate)", 0 );
1647         }
1648
1649         if (( syncstate == LDAP_SYNC_PRESENT || syncstate == LDAP_SYNC_ADD )) {
1650                 if ( !si->si_refreshPresent ) {
1651                         syncuuid_bv = ber_dupbv( NULL, syncUUID );
1652                         avl_insert( &si->si_presentlist, (caddr_t) syncuuid_bv,
1653                                 syncuuid_cmp, avl_dup_error );
1654                 }
1655         }
1656
1657         if ( syncstate == LDAP_SYNC_PRESENT ) {
1658                 return 0;
1659         } else if ( syncstate != LDAP_SYNC_DELETE ) {
1660                 if ( entry == NULL ) {
1661                         return 0;
1662                 }
1663         }
1664
1665         f.f_choice = LDAP_FILTER_EQUALITY;
1666         f.f_ava = &ava;
1667         ava.aa_desc = slap_schema.si_ad_entryUUID;
1668         (void)slap_uuidstr_from_normalized( &syncUUID_strrep, syncUUID, op->o_tmpmemctx );
1669         ava.aa_value = *syncUUID;
1670         op->ors_filter = &f;
1671
1672         op->ors_filterstr.bv_len = STRLENOF( "(entryUUID=)" ) + syncUUID_strrep.bv_len;
1673         op->ors_filterstr.bv_val = (char *) slap_sl_malloc(
1674                 op->ors_filterstr.bv_len + 1, op->o_tmpmemctx ); 
1675         AC_MEMCPY( op->ors_filterstr.bv_val, "(entryUUID=", STRLENOF( "(entryUUID=" ) );
1676         AC_MEMCPY( &op->ors_filterstr.bv_val[STRLENOF( "(entryUUID=" )],
1677                 syncUUID_strrep.bv_val, syncUUID_strrep.bv_len );
1678         op->ors_filterstr.bv_val[op->ors_filterstr.bv_len - 1] = ')';
1679         op->ors_filterstr.bv_val[op->ors_filterstr.bv_len] = '\0';
1680
1681         op->o_tag = LDAP_REQ_SEARCH;
1682         op->ors_scope = LDAP_SCOPE_SUBTREE;
1683         op->ors_deref = LDAP_DEREF_NEVER;
1684
1685         /* get the entry for this UUID */
1686         op->o_req_dn = si->si_base;
1687         op->o_req_ndn = si->si_base;
1688
1689         op->o_time = slap_get_time();
1690         op->ors_tlimit = SLAP_NO_LIMIT;
1691         op->ors_slimit = 1;
1692
1693         op->ors_attrs = slap_anlist_all_attributes;
1694         op->ors_attrsonly = 0;
1695
1696         /* set callback function */
1697         op->o_callback = &cb;
1698         cb.sc_response = dn_callback;
1699         cb.sc_private = &dni;
1700         dni.new_entry = entry;
1701
1702         if ( limits_check( op, &rs_search ) == 0 ) {
1703                 rc = be->be_search( op, &rs_search );
1704                 Debug( LDAP_DEBUG_SYNC,
1705                                 "syncrepl_entry: %s (%d)\n", 
1706                                 "be_search", rc, 0 );
1707         }
1708
1709         if ( !BER_BVISNULL( &op->ors_filterstr ) ) {
1710                 slap_sl_free( op->ors_filterstr.bv_val, op->o_tmpmemctx );
1711         }
1712
1713         cb.sc_response = null_callback;
1714         cb.sc_private = si;
1715
1716         if ( entry && !BER_BVISNULL( &entry->e_name ) ) {
1717                 Debug( LDAP_DEBUG_SYNC,
1718                                 "syncrepl_entry: %s\n",
1719                                 entry->e_name.bv_val, 0, 0 );
1720         } else {
1721                 Debug( LDAP_DEBUG_SYNC,
1722                                 "syncrepl_entry: %s\n",
1723                                 dni.dn.bv_val ? dni.dn.bv_val : "(null)", 0, 0 );
1724         }
1725
1726         if ( syncstate != LDAP_SYNC_DELETE ) {
1727                 Attribute       *a = attr_find( entry->e_attrs, slap_schema.si_ad_entryUUID );
1728
1729                 if ( a == NULL ) {
1730                         /* add if missing */
1731                         attr_merge_one( entry, slap_schema.si_ad_entryUUID,
1732                                 &syncUUID_strrep, syncUUID );
1733
1734                 } else if ( !bvmatch( &a->a_nvals[0], syncUUID ) ) {
1735                         /* replace only if necessary */
1736                         if ( a->a_nvals != a->a_vals ) {
1737                                 ber_memfree( a->a_nvals[0].bv_val );
1738                                 ber_dupbv( &a->a_nvals[0], syncUUID );
1739                         }
1740                         ber_memfree( a->a_vals[0].bv_val );
1741                         ber_dupbv( &a->a_vals[0], &syncUUID_strrep );
1742                 }
1743         }
1744
1745         switch ( syncstate ) {
1746         case LDAP_SYNC_ADD:
1747         case LDAP_SYNC_MODIFY:
1748                 {
1749                         Attribute *a = attr_find( entry->e_attrs, slap_schema.si_ad_entryCSN );
1750                         if ( a )
1751                                 op->o_csn = a->a_vals[0];
1752                 }
1753 retry_add:;
1754                 if ( BER_BVISNULL( &dni.dn )) {
1755
1756                         op->o_req_dn = entry->e_name;
1757                         op->o_req_ndn = entry->e_nname;
1758                         op->o_tag = LDAP_REQ_ADD;
1759                         op->ora_e = entry;
1760
1761                         rc = be->be_add( op, &rs_add );
1762                         Debug( LDAP_DEBUG_SYNC,
1763                                         "syncrepl_entry: %s (%d)\n", 
1764                                         "be_add", rc, 0 );
1765                         switch ( rs_add.sr_err ) {
1766                         case LDAP_SUCCESS:
1767                                 be_entry_release_w( op, entry );
1768                                 ret = 0;
1769                                 break;
1770
1771                         case LDAP_REFERRAL:
1772                         /* we assume that LDAP_NO_SUCH_OBJECT is returned 
1773                          * only if the suffix entry is not present */
1774                         case LDAP_NO_SUCH_OBJECT:
1775                                 syncrepl_add_glue( op, entry );
1776                                 ret = 0;
1777                                 break;
1778
1779                         /* if an entry was added via syncrepl_add_glue(),
1780                          * it likely has no entryUUID, so the previous
1781                          * be_search() doesn't find it.  In this case,
1782                          * give syncrepl a chance to modify it. Also
1783                          * allow for entries that were recreated with the
1784                          * same DN but a different entryUUID.
1785                          */
1786                         case LDAP_ALREADY_EXISTS:
1787                                 if ( retry ) {
1788                                         Operation       op2 = *op;
1789                                         SlapReply       rs2 = { 0 };
1790                                         slap_callback   cb2 = { 0 };
1791
1792                                         op2.o_tag = LDAP_REQ_SEARCH;
1793                                         op2.o_req_dn = entry->e_name;
1794                                         op2.o_req_ndn = entry->e_nname;
1795                                         op2.ors_scope = LDAP_SCOPE_BASE;
1796                                         op2.ors_deref = LDAP_DEREF_NEVER;
1797                                         op2.ors_attrs = slap_anlist_all_attributes;
1798                                         op2.ors_attrsonly = 0;
1799                                         op2.ors_limit = NULL;
1800                                         op2.ors_slimit = 1;
1801                                         op2.ors_tlimit = SLAP_NO_LIMIT;
1802
1803                                         f.f_choice = LDAP_FILTER_PRESENT;
1804                                         f.f_desc = slap_schema.si_ad_objectClass;
1805                                         op2.ors_filter = &f;
1806                                         op2.ors_filterstr = generic_filterstr;
1807
1808                                         op2.o_callback = &cb2;
1809                                         cb2.sc_response = dn_callback;
1810                                         cb2.sc_private = &dni;
1811
1812                                         be->be_search( &op2, &rs2 );
1813
1814                                         retry = 0;
1815                                         goto retry_add;
1816                                 }
1817                                 /* FALLTHRU */
1818
1819                         default:
1820                                 Debug( LDAP_DEBUG_ANY,
1821                                         "syncrepl_entry : be_add failed (%d)\n",
1822                                         rs_add.sr_err, 0, 0 );
1823                                 ret = 1;
1824                                 break;
1825                         }
1826                         goto done;
1827                 }
1828                 /* FALLTHRU */
1829                 op->o_req_dn = dni.dn;
1830                 op->o_req_ndn = dni.ndn;
1831                 if ( dni.renamed ) {
1832                         struct berval noldp, newp, nnewp;
1833
1834                         op->o_tag = LDAP_REQ_MODRDN;
1835                         dnRdn( &entry->e_name, &op->orr_newrdn );
1836                         dnRdn( &entry->e_nname, &op->orr_nnewrdn );
1837
1838                         dnParent( &dni.ndn, &noldp );
1839                         dnParent( &entry->e_nname, &nnewp );
1840                         if ( !dn_match( &noldp, &newp )) {
1841                                 dnParent( &entry->e_name, &newp );
1842                                 op->orr_newSup = &newp;
1843                                 op->orr_nnewSup = &nnewp;
1844                         }
1845                         op->orr_deleteoldrdn = 0;
1846                         op->orr_modlist = NULL;
1847                         if ( slap_modrdn2mods( op, &rs_modify )) {
1848                                 ret = 1;
1849                                 goto done;
1850                         }
1851                         rc = be->be_modrdn( op, &rs_modify );
1852                         slap_mods_free( op->orr_modlist, 1 );
1853                         Debug( LDAP_DEBUG_SYNC,
1854                                         "syncrepl_entry: %s (%d)\n", 
1855                                         "be_modrdn", rc, 0 );
1856                         if ( rs_modify.sr_err == LDAP_SUCCESS ) {
1857                                 op->o_req_dn = entry->e_name;
1858                                 op->o_req_ndn = entry->e_nname;
1859                         } else {
1860                                 ret = 1;
1861                                 goto done;
1862                         }
1863                 }
1864                 if ( dni.wasChanged ) {
1865                         Modifications *mod, *modhead = NULL;
1866                         Modifications *modtail = NULL;
1867                         int i;
1868
1869                         op->o_tag = LDAP_REQ_MODIFY;
1870
1871                         assert( *modlist != NULL );
1872
1873                         /* Delete all the old attrs */
1874                         for ( i = 0; i < dni.attrs; i++ ) {
1875                                 mod = ch_malloc( sizeof( Modifications ) );
1876                                 mod->sml_op = LDAP_MOD_DELETE;
1877                                 mod->sml_flags = 0;
1878                                 mod->sml_desc = dni.ads[i];
1879                                 mod->sml_type = mod->sml_desc->ad_cname;
1880                                 mod->sml_values = NULL;
1881                                 mod->sml_nvalues = NULL;
1882                                 if ( !modhead ) modhead = mod;
1883                                 if ( modtail ) {
1884                                         modtail->sml_next = mod;
1885                                 }
1886                                 modtail = mod;
1887                         }
1888
1889                         /* Append passed in list to ours */
1890                         if ( modtail ) {
1891                                 modtail->sml_next = *modlist;
1892                                 *modlist = modhead;
1893                         } else {
1894                                 mod = *modlist;
1895                         }
1896
1897                         /* Find end of this list */
1898                         for ( ; mod != NULL; mod = mod->sml_next ) {
1899                                 modtail = mod;
1900                         }
1901
1902                         mod = (Modifications *)ch_calloc(1, sizeof(Modifications));
1903                         mod->sml_op = LDAP_MOD_REPLACE;
1904                         mod->sml_flags = 0;
1905                         mod->sml_desc = slap_schema.si_ad_entryUUID;
1906                         mod->sml_type = mod->sml_desc->ad_cname;
1907                         ber_dupbv( &uuid_bv, &syncUUID_strrep );
1908                         ber_bvarray_add( &mod->sml_values, &uuid_bv );
1909                         ber_dupbv( &uuid_bv, syncUUID );
1910                         ber_bvarray_add( &mod->sml_nvalues, &uuid_bv );
1911                         modtail->sml_next = mod;
1912                                         
1913                         op->o_tag = LDAP_REQ_MODIFY;
1914                         op->orm_modlist = *modlist;
1915
1916                         rc = be->be_modify( op, &rs_modify );
1917                         Debug( LDAP_DEBUG_SYNC,
1918                                         "syncrepl_entry: %s (%d)\n", 
1919                                         "be_modify", rc, 0 );
1920                         if ( rs_modify.sr_err != LDAP_SUCCESS ) {
1921                                 Debug( LDAP_DEBUG_ANY,
1922                                         "syncrepl_entry : be_modify failed (%d)\n",
1923                                         rs_modify.sr_err, 0, 0 );
1924                         }
1925                 }
1926                 ret = 1;
1927                 goto done;
1928         case LDAP_SYNC_DELETE :
1929                 if ( !BER_BVISNULL( &dni.dn )) {
1930                         op->o_req_dn = dni.dn;
1931                         op->o_req_ndn = dni.ndn;
1932                         op->o_tag = LDAP_REQ_DELETE;
1933                         rc = be->be_delete( op, &rs_delete );
1934                         Debug( LDAP_DEBUG_SYNC,
1935                                         "syncrepl_entry: %s (%d)\n", 
1936                                         "be_delete", rc, 0 );
1937
1938                         while ( rs_delete.sr_err == LDAP_SUCCESS
1939                                 && op->o_delete_glue_parent ) {
1940                                 op->o_delete_glue_parent = 0;
1941                                 if ( !be_issuffix( op->o_bd, &op->o_req_ndn )) {
1942                                         slap_callback cb = { NULL };
1943                                         cb.sc_response = slap_null_cb;
1944                                         dnParent( &op->o_req_ndn, &pdn );
1945                                         op->o_req_dn = pdn;
1946                                         op->o_req_ndn = pdn;
1947                                         op->o_callback = &cb;
1948                                         op->o_bd->be_delete( op, &rs_delete );
1949                                 } else {
1950                                         break;
1951                                 }
1952                         }
1953                 }
1954                 ret = 0;
1955                 goto done;
1956
1957         default :
1958                 Debug( LDAP_DEBUG_ANY,
1959                         "syncrepl_entry : unknown syncstate\n", 0, 0, 0 );
1960                 ret = 1;
1961                 goto done;
1962         }
1963
1964 done :
1965         if ( !BER_BVISNULL( &syncUUID_strrep ) ) {
1966                 slap_sl_free( syncUUID_strrep.bv_val, op->o_tmpmemctx );
1967                 BER_BVZERO( &syncUUID_strrep );
1968         }
1969         if ( dni.ads ) {
1970                 op->o_tmpfree( dni.ads, op->o_tmpmemctx );
1971         }
1972         if ( !BER_BVISNULL( &dni.ndn ) ) {
1973                 op->o_tmpfree( dni.ndn.bv_val, op->o_tmpmemctx );
1974         }
1975         if ( !BER_BVISNULL( &dni.dn ) ) {
1976                 op->o_tmpfree( dni.dn.bv_val, op->o_tmpmemctx );
1977         }
1978         BER_BVZERO( &op->o_csn );
1979         return ret;
1980 }
1981
1982 static struct berval gcbva[] = {
1983         BER_BVC("top"),
1984         BER_BVC("glue"),
1985         BER_BVNULL
1986 };
1987
1988 #define NP_DELETE_ONE   2
1989
1990 static void
1991 syncrepl_del_nonpresent(
1992         Operation *op,
1993         syncinfo_t *si,
1994         BerVarray uuids )
1995 {
1996         Backend* be = op->o_bd;
1997         slap_callback   cb = { NULL };
1998         SlapReply       rs_search = {REP_RESULT};
1999         SlapReply       rs_delete = {REP_RESULT};
2000         SlapReply       rs_modify = {REP_RESULT};
2001         struct nonpresent_entry *np_list, *np_prev;
2002         int rc;
2003         AttributeName   an[2];
2004
2005         struct berval pdn = BER_BVNULL;
2006
2007         op->o_req_dn = si->si_base;
2008         op->o_req_ndn = si->si_base;
2009
2010         cb.sc_response = nonpresent_callback;
2011         cb.sc_private = si;
2012
2013         op->o_callback = &cb;
2014         op->o_tag = LDAP_REQ_SEARCH;
2015         op->ors_scope = si->si_scope;
2016         op->ors_deref = LDAP_DEREF_NEVER;
2017         op->o_time = slap_get_time();
2018         op->ors_tlimit = SLAP_NO_LIMIT;
2019
2020
2021         if ( uuids ) {
2022                 Filter uf;
2023 #ifdef LDAP_COMP_MATCH
2024                 AttributeAssertion eq = { NULL, BER_BVNULL, NULL };
2025 #else
2026                 AttributeAssertion eq = { NULL, BER_BVNULL };
2027 #endif
2028                 int i;
2029
2030                 op->ors_attrsonly = 1;
2031                 op->ors_attrs = slap_anlist_no_attrs;
2032                 op->ors_limit = NULL;
2033                 op->ors_filter = &uf;
2034
2035                 uf.f_ava = &eq;
2036                 uf.f_av_desc = slap_schema.si_ad_entryUUID;
2037                 uf.f_next = NULL;
2038                 uf.f_choice = LDAP_FILTER_EQUALITY;
2039                 si->si_refreshDelete |= NP_DELETE_ONE;
2040
2041                 for (i=0; uuids[i].bv_val; i++) {
2042                         op->ors_slimit = 1;
2043                         uf.f_av_value = uuids[i];
2044                         rc = be->be_search( op, &rs_search );
2045                 }
2046                 si->si_refreshDelete ^= NP_DELETE_ONE;
2047         } else {
2048                 memset( &an[0], 0, 2 * sizeof( AttributeName ) );
2049                 an[0].an_name = slap_schema.si_ad_entryUUID->ad_cname;
2050                 an[0].an_desc = slap_schema.si_ad_entryUUID;
2051                 op->ors_attrs = an;
2052                 op->ors_slimit = SLAP_NO_LIMIT;
2053                 op->ors_attrsonly = 0;
2054                 op->ors_filter = str2filter_x( op, si->si_filterstr.bv_val );
2055                 op->ors_filterstr = si->si_filterstr;
2056                 op->o_nocaching = 1;
2057
2058                 if ( limits_check( op, &rs_search ) == 0 ) {
2059                         rc = be->be_search( op, &rs_search );
2060                 }
2061                 if ( op->ors_filter ) filter_free_x( op, op->ors_filter );
2062         }
2063
2064         op->o_nocaching = 0;
2065
2066         if ( !LDAP_LIST_EMPTY( &si->si_nonpresentlist ) ) {
2067
2068                 slap_queue_csn( op, &si->si_syncCookie.ctxcsn );
2069
2070                 np_list = LDAP_LIST_FIRST( &si->si_nonpresentlist );
2071                 while ( np_list != NULL ) {
2072                         LDAP_LIST_REMOVE( np_list, npe_link );
2073                         np_prev = np_list;
2074                         np_list = LDAP_LIST_NEXT( np_list, npe_link );
2075                         op->o_tag = LDAP_REQ_DELETE;
2076                         op->o_callback = &cb;
2077                         cb.sc_response = null_callback;
2078                         cb.sc_private = si;
2079                         op->o_req_dn = *np_prev->npe_name;
2080                         op->o_req_ndn = *np_prev->npe_nname;
2081                         rc = op->o_bd->be_delete( op, &rs_delete );
2082
2083                         if ( rs_delete.sr_err == LDAP_NOT_ALLOWED_ON_NONLEAF ) {
2084                                 Modifications mod1, mod2;
2085                                 mod1.sml_op = LDAP_MOD_REPLACE;
2086                                 mod1.sml_flags = 0;
2087                                 mod1.sml_desc = slap_schema.si_ad_objectClass;
2088                                 mod1.sml_type = mod1.sml_desc->ad_cname;
2089                                 mod1.sml_values = &gcbva[0];
2090                                 mod1.sml_nvalues = NULL;
2091                                 mod1.sml_next = &mod2;
2092
2093                                 mod2.sml_op = LDAP_MOD_REPLACE;
2094                                 mod2.sml_flags = 0;
2095                                 mod2.sml_desc = slap_schema.si_ad_structuralObjectClass;
2096                                 mod2.sml_type = mod2.sml_desc->ad_cname;
2097                                 mod2.sml_values = &gcbva[1];
2098                                 mod2.sml_nvalues = NULL;
2099                                 mod2.sml_next = NULL;
2100
2101                                 op->o_tag = LDAP_REQ_MODIFY;
2102                                 op->orm_modlist = &mod1;
2103
2104                                 rc = be->be_modify( op, &rs_modify );
2105                         }
2106
2107                         while ( rs_delete.sr_err == LDAP_SUCCESS &&
2108                                         op->o_delete_glue_parent ) {
2109                                 op->o_delete_glue_parent = 0;
2110                                 if ( !be_issuffix( op->o_bd, &op->o_req_ndn )) {
2111                                         slap_callback cb = { NULL };
2112                                         cb.sc_response = slap_null_cb;
2113                                         dnParent( &op->o_req_ndn, &pdn );
2114                                         op->o_req_dn = pdn;
2115                                         op->o_req_ndn = pdn;
2116                                         op->o_callback = &cb;
2117                                         /* give it a root privil ? */
2118                                         op->o_bd->be_delete( op, &rs_delete );
2119                                 } else {
2120                                         break;
2121                             }
2122                         }
2123
2124                         op->o_delete_glue_parent = 0;
2125
2126                         ber_bvfree( np_prev->npe_name );
2127                         ber_bvfree( np_prev->npe_nname );
2128                         ch_free( np_prev );
2129                 }
2130
2131                 slap_graduate_commit_csn( op );
2132         }
2133
2134         return;
2135 }
2136
2137 void
2138 syncrepl_add_glue(
2139         Operation* op,
2140         Entry *e )
2141 {
2142         Backend *be = op->o_bd;
2143         slap_callback cb = { NULL };
2144         Attribute       *a;
2145         int     rc;
2146         int suffrdns;
2147         int i;
2148         struct berval dn = BER_BVNULL;
2149         struct berval ndn = BER_BVNULL;
2150         Entry   *glue;
2151         SlapReply       rs_add = {REP_RESULT};
2152         struct berval   ptr, nptr;
2153         char            *comma;
2154
2155         op->o_tag = LDAP_REQ_ADD;
2156         op->o_callback = &cb;
2157         cb.sc_response = null_callback;
2158         cb.sc_private = NULL;
2159
2160         dn = e->e_name;
2161         ndn = e->e_nname;
2162
2163         /* count RDNs in suffix */
2164         if ( !BER_BVISEMPTY( &be->be_nsuffix[0] ) ) {
2165                 for ( i = 0, ptr = be->be_nsuffix[0], comma = ptr.bv_val; comma != NULL; comma = ber_bvchr( &ptr, ',' ) ) {
2166                         comma++;
2167                         ptr.bv_len -= comma - ptr.bv_val;
2168                         ptr.bv_val = comma;
2169                         i++;
2170                 }
2171                 suffrdns = i;
2172         } else {
2173                 /* suffix is "" */
2174                 suffrdns = 0;
2175         }
2176
2177         /* Start with BE suffix */
2178         ptr = dn;
2179         for ( i = 0; i < suffrdns; i++ ) {
2180                 comma = ber_bvrchr( &ptr, ',' );
2181                 if ( comma != NULL ) {
2182                         ptr.bv_len = comma - ptr.bv_val;
2183                 } else {
2184                         ptr.bv_len = 0;
2185                         break;
2186                 }
2187         }
2188         
2189         if ( !BER_BVISEMPTY( &ptr ) ) {
2190                 dn.bv_len -= ptr.bv_len + 1;
2191                 dn.bv_val += ptr.bv_len + 1;
2192         }
2193
2194         /* the normalizedDNs are always the same length, no counting
2195          * required.
2196          */
2197         nptr = ndn;
2198         if ( ndn.bv_len > be->be_nsuffix[0].bv_len ) {
2199                 ndn.bv_val += ndn.bv_len - be->be_nsuffix[0].bv_len;
2200                 ndn.bv_len = be->be_nsuffix[0].bv_len;
2201
2202                 nptr.bv_len = ndn.bv_val - nptr.bv_val - 1;
2203
2204         } else {
2205                 nptr.bv_len = 0;
2206         }
2207
2208         while ( ndn.bv_val > e->e_nname.bv_val ) {
2209                 glue = (Entry *) ch_calloc( 1, sizeof(Entry) );
2210                 ber_dupbv( &glue->e_name, &dn );
2211                 ber_dupbv( &glue->e_nname, &ndn );
2212
2213                 a = ch_calloc( 1, sizeof( Attribute ));
2214                 a->a_desc = slap_schema.si_ad_objectClass;
2215
2216                 a->a_vals = ch_calloc( 3, sizeof( struct berval ));
2217                 ber_dupbv( &a->a_vals[0], &gcbva[0] );
2218                 ber_dupbv( &a->a_vals[1], &gcbva[1] );
2219                 ber_dupbv( &a->a_vals[2], &gcbva[2] );
2220
2221                 a->a_nvals = a->a_vals;
2222
2223                 a->a_next = glue->e_attrs;
2224                 glue->e_attrs = a;
2225
2226                 a = ch_calloc( 1, sizeof( Attribute ));
2227                 a->a_desc = slap_schema.si_ad_structuralObjectClass;
2228
2229                 a->a_vals = ch_calloc( 2, sizeof( struct berval ));
2230                 ber_dupbv( &a->a_vals[0], &gcbva[1] );
2231                 ber_dupbv( &a->a_vals[1], &gcbva[2] );
2232
2233                 a->a_nvals = a->a_vals;
2234
2235                 a->a_next = glue->e_attrs;
2236                 glue->e_attrs = a;
2237
2238                 op->o_req_dn = glue->e_name;
2239                 op->o_req_ndn = glue->e_nname;
2240                 op->ora_e = glue;
2241                 rc = be->be_add ( op, &rs_add );
2242                 if ( rs_add.sr_err == LDAP_SUCCESS ) {
2243                         be_entry_release_w( op, glue );
2244                 } else {
2245                 /* incl. ALREADY EXIST */
2246                         entry_free( glue );
2247                 }
2248
2249                 /* Move to next child */
2250                 comma = ber_bvrchr( &ptr, ',' );
2251                 if ( comma == NULL ) {
2252                         break;
2253                 }
2254                 ptr.bv_len = comma - ptr.bv_val;
2255                 
2256                 dn.bv_val = ++comma;
2257                 dn.bv_len = e->e_name.bv_len - (dn.bv_val - e->e_name.bv_val);
2258
2259                 comma = ber_bvrchr( &nptr, ',' );
2260                 assert( comma != NULL );
2261                 nptr.bv_len = comma - nptr.bv_val;
2262
2263                 ndn.bv_val = ++comma;
2264                 ndn.bv_len = e->e_nname.bv_len - (ndn.bv_val - e->e_nname.bv_val);
2265         }
2266
2267         op->o_req_dn = e->e_name;
2268         op->o_req_ndn = e->e_nname;
2269         op->ora_e = e;
2270         rc = be->be_add ( op, &rs_add );
2271         if ( rs_add.sr_err == LDAP_SUCCESS ) {
2272                 be_entry_release_w( op, e );
2273         } else {
2274                 entry_free( e );
2275         }
2276
2277         return;
2278 }
2279
2280 static void
2281 syncrepl_updateCookie(
2282         syncinfo_t *si,
2283         Operation *op,
2284         struct berval *pdn,
2285         struct sync_cookie *syncCookie )
2286 {
2287         Backend *be = op->o_bd;
2288         Modifications mod = { { 0 } };
2289         struct berval vals[ 2 ];
2290
2291         int rc;
2292
2293         slap_callback cb = { NULL };
2294         SlapReply       rs_modify = {REP_RESULT};
2295
2296         slap_sync_cookie_free( &si->si_syncCookie, 0 );
2297         slap_dup_sync_cookie( &si->si_syncCookie, syncCookie );
2298
2299         mod.sml_op = LDAP_MOD_REPLACE;
2300         mod.sml_desc = slap_schema.si_ad_contextCSN;
2301         mod.sml_type = mod.sml_desc->ad_cname;
2302         mod.sml_values = vals;
2303         vals[0] = si->si_syncCookie.ctxcsn;
2304         vals[1].bv_val = NULL;
2305         vals[1].bv_len = 0;
2306
2307         slap_queue_csn( op, &si->si_syncCookie.ctxcsn );
2308
2309         op->o_tag = LDAP_REQ_MODIFY;
2310
2311         assert( si->si_rid < 1000 );
2312
2313         cb.sc_response = null_callback;
2314         cb.sc_private = si;
2315
2316         op->o_callback = &cb;
2317         op->o_req_dn = op->o_bd->be_suffix[0];
2318         op->o_req_ndn = op->o_bd->be_nsuffix[0];
2319
2320         /* update contextCSN */
2321         op->o_msgid = SLAP_SYNC_UPDATE_MSGID;
2322         op->orm_modlist = &mod;
2323         rc = be->be_modify( op, &rs_modify );
2324         op->o_msgid = 0;
2325
2326         if ( rs_modify.sr_err != LDAP_SUCCESS ) {
2327                 Debug( LDAP_DEBUG_ANY,
2328                         "be_modify failed (%d)\n", rs_modify.sr_err, 0, 0 );
2329         }
2330
2331         slap_graduate_commit_csn( op );
2332
2333         return;
2334 }
2335
2336 static int
2337 dn_callback(
2338         Operation*      op,
2339         SlapReply*      rs )
2340 {
2341         dninfo *dni = op->o_callback->sc_private;
2342
2343         if ( rs->sr_type == REP_SEARCH ) {
2344                 if ( !BER_BVISNULL( &dni->dn ) ) {
2345                         Debug( LDAP_DEBUG_ANY,
2346                                 "dn_callback : consistency error - "
2347                                 "entryUUID is not unique\n", 0, 0, 0 );
2348                 } else {
2349                         ber_dupbv_x( &dni->dn, &rs->sr_entry->e_name, op->o_tmpmemctx );
2350                         ber_dupbv_x( &dni->ndn, &rs->sr_entry->e_nname, op->o_tmpmemctx );
2351                         /* If there is a new entry, see if it differs from the old.
2352                          * We compare the non-normalized values so that cosmetic changes
2353                          * in the provider are always propagated.
2354                          */
2355                         if ( dni->new_entry ) {
2356                                 Attribute *old, *new;
2357                                 int i;
2358
2359                                 /* Did the DN change? Note that we don't explicitly try to
2360                                  * discover if the deleteOldRdn argument applies here. It
2361                                  * would save an unnecessary Modify if we detected it, but
2362                                  * that's a fair amount of trouble to compare the two attr
2363                                  * lists in detail. (Just test normalized DN; we ignore
2364                                  * insignificant changes here.)
2365                                  */
2366                                 if ( !dn_match( &rs->sr_entry->e_nname,
2367                                                 &dni->new_entry->e_nname ) )
2368                                 {
2369                                         dni->renamed = 1;
2370                                 }
2371
2372                                 for ( i = 0, old = rs->sr_entry->e_attrs;
2373                                                 old;
2374                                                 i++, old = old->a_next )
2375                                         ;
2376
2377                                 dni->attrs = i;
2378
2379                                 /* We assume that attributes are saved in the same order
2380                                  * in the remote and local databases. So if we walk through
2381                                  * the attributeDescriptions one by one they should match in
2382                                  * lock step. If not, we signal a change. Otherwise we test
2383                                  * all the values...
2384                                  */
2385                                 for ( old = rs->sr_entry->e_attrs, new = dni->new_entry->e_attrs;
2386                                                 old && new;
2387                                                 old = old->a_next, new = new->a_next )
2388                                 {
2389                                         if ( old->a_desc != new->a_desc ) {
2390                                                 dni->wasChanged = 1;
2391                                                 break;
2392                                         }
2393                                         for ( i = 0; ; i++ ) {
2394                                                 int nold, nnew;
2395                                                 nold = BER_BVISNULL( &old->a_vals[i] );
2396                                                 nnew = BER_BVISNULL( &new->a_vals[i] );
2397                                                 /* If both are empty, stop looking */
2398                                                 if ( nold && nnew ) {
2399                                                         break;
2400                                                 }
2401                                                 /* If they are different, stop looking */
2402                                                 if ( nold != nnew ) {
2403                                                         dni->wasChanged = 1;
2404                                                         break;
2405                                                 }
2406                                                 if ( ber_bvcmp( &old->a_vals[i], &new->a_vals[i] )) {
2407                                                         dni->wasChanged = 1;
2408                                                         break;
2409                                                 }
2410                                         }
2411                                         if ( dni->wasChanged ) break;
2412                                 }
2413                                 if ( dni->wasChanged ) {
2414                                         dni->ads = op->o_tmpalloc( dni->attrs *
2415                                                 sizeof(AttributeDescription *), op->o_tmpmemctx );
2416                                         i = 0;
2417                                         for ( old = rs->sr_entry->e_attrs; old; old = old->a_next ) {
2418                                                 dni->ads[i] = old->a_desc;
2419                                                 i++;
2420                                         }
2421                                 }
2422                         }
2423                 }
2424         } else if ( rs->sr_type == REP_RESULT ) {
2425                 if ( rs->sr_err == LDAP_SIZELIMIT_EXCEEDED ) {
2426                         Debug( LDAP_DEBUG_ANY,
2427                                 "dn_callback : consistency error - "
2428                                 "entryUUID is not unique\n", 0, 0, 0 );
2429                 }
2430         }
2431
2432         return LDAP_SUCCESS;
2433 }
2434
2435 static int
2436 nonpresent_callback(
2437         Operation*      op,
2438         SlapReply*      rs )
2439 {
2440         syncinfo_t *si = op->o_callback->sc_private;
2441         Attribute *a;
2442         int count = 0;
2443         struct berval* present_uuid = NULL;
2444         struct nonpresent_entry *np_entry;
2445
2446         if ( rs->sr_type == REP_RESULT ) {
2447                 count = avl_free( si->si_presentlist, avl_ber_bvfree );
2448                 si->si_presentlist = NULL;
2449
2450         } else if ( rs->sr_type == REP_SEARCH ) {
2451                 if ( !(si->si_refreshDelete & NP_DELETE_ONE )) {
2452                         a = attr_find( rs->sr_entry->e_attrs, slap_schema.si_ad_entryUUID );
2453
2454                         if ( a == NULL ) return 0;
2455
2456                         present_uuid = avl_find( si->si_presentlist, &a->a_nvals[0],
2457                                 syncuuid_cmp );
2458                 }
2459
2460                 if ( present_uuid == NULL ) {
2461                         np_entry = (struct nonpresent_entry *)
2462                                 ch_calloc( 1, sizeof( struct nonpresent_entry ));
2463                         np_entry->npe_name = ber_dupbv( NULL, &rs->sr_entry->e_name );
2464                         np_entry->npe_nname = ber_dupbv( NULL, &rs->sr_entry->e_nname );
2465                         LDAP_LIST_INSERT_HEAD( &si->si_nonpresentlist, np_entry, npe_link );
2466
2467                 } else {
2468                         avl_delete( &si->si_presentlist,
2469                                         &a->a_nvals[0], syncuuid_cmp );
2470                         ch_free( present_uuid->bv_val );
2471                         ch_free( present_uuid );
2472                 }
2473         }
2474         return LDAP_SUCCESS;
2475 }
2476
2477 static int
2478 null_callback(
2479         Operation*      op,
2480         SlapReply*      rs )
2481 {
2482         if ( rs->sr_err != LDAP_SUCCESS &&
2483                 rs->sr_err != LDAP_REFERRAL &&
2484                 rs->sr_err != LDAP_ALREADY_EXISTS &&
2485                 rs->sr_err != LDAP_NO_SUCH_OBJECT &&
2486                 rs->sr_err != LDAP_NOT_ALLOWED_ON_NONLEAF )
2487         {
2488                 Debug( LDAP_DEBUG_ANY,
2489                         "null_callback : error code 0x%x\n",
2490                         rs->sr_err, 0, 0 );
2491         }
2492         return LDAP_SUCCESS;
2493 }
2494
2495 static struct berval *
2496 slap_uuidstr_from_normalized(
2497         struct berval* uuidstr,
2498         struct berval* normalized,
2499         void *ctx )
2500 {
2501         struct berval *new;
2502         unsigned char nibble;
2503         int i, d = 0;
2504
2505         if ( normalized == NULL ) return NULL;
2506         if ( normalized->bv_len != 16 ) return NULL;
2507
2508         if ( uuidstr ) {
2509                 new = uuidstr;
2510         } else {
2511                 new = (struct berval *)slap_sl_malloc( sizeof(struct berval), ctx );
2512                 if ( new == NULL ) {
2513                         return NULL;
2514                 }
2515         }
2516
2517         new->bv_len = 36;
2518
2519         if ( ( new->bv_val = slap_sl_malloc( new->bv_len + 1, ctx ) ) == NULL ) {
2520                 if ( new != uuidstr ) {
2521                         slap_sl_free( new, ctx );
2522                 }
2523                 return NULL;
2524         }
2525
2526         for ( i = 0; i < 16; i++ ) {
2527                 if ( i == 4 || i == 6 || i == 8 || i == 10 ) {
2528                         new->bv_val[(i<<1)+d] = '-';
2529                         d += 1;
2530                 }
2531
2532                 nibble = (normalized->bv_val[i] >> 4) & 0xF;
2533                 if ( nibble < 10 ) {
2534                         new->bv_val[(i<<1)+d] = nibble + '0';
2535                 } else {
2536                         new->bv_val[(i<<1)+d] = nibble - 10 + 'a';
2537                 }
2538
2539                 nibble = (normalized->bv_val[i]) & 0xF;
2540                 if ( nibble < 10 ) {
2541                         new->bv_val[(i<<1)+d+1] = nibble + '0';
2542                 } else {
2543                         new->bv_val[(i<<1)+d+1] = nibble - 10 + 'a';
2544                 }
2545         }
2546
2547         new->bv_val[new->bv_len] = '\0';
2548         return new;
2549 }
2550
2551 static int
2552 syncuuid_cmp( const void* v_uuid1, const void* v_uuid2 )
2553 {
2554         const struct berval *uuid1 = v_uuid1;
2555         const struct berval *uuid2 = v_uuid2;
2556         int rc = uuid1->bv_len - uuid2->bv_len;
2557         if ( rc ) return rc;
2558         return ( memcmp( uuid1->bv_val, uuid2->bv_val, uuid1->bv_len ) );
2559 }
2560
2561 static void
2562 avl_ber_bvfree( void *v_bv )
2563 {
2564         struct berval   *bv = (struct berval *)v_bv;
2565         
2566         if( v_bv == NULL ) return;
2567         if ( !BER_BVISNULL( bv ) ) {
2568                 ch_free( bv->bv_val );
2569         }
2570         ch_free( (char *) bv );
2571 }
2572
2573 void
2574 syncinfo_free( syncinfo_t *sie )
2575 {
2576         ldap_pvt_thread_mutex_destroy( &sie->si_mutex );
2577
2578         bindconf_free( &sie->si_bindconf );
2579
2580         if ( sie->si_filterstr.bv_val ) {
2581                 ch_free( sie->si_filterstr.bv_val );
2582         }
2583         if ( sie->si_base.bv_val ) {
2584                 ch_free( sie->si_base.bv_val );
2585         }
2586         if ( sie->si_attrs ) {
2587                 int i = 0;
2588                 while ( sie->si_attrs[i] != NULL ) {
2589                         ch_free( sie->si_attrs[i] );
2590                         i++;
2591                 }
2592                 ch_free( sie->si_attrs );
2593         }
2594         if ( sie->si_exattrs ) {
2595                 int i = 0;
2596                 while ( sie->si_exattrs[i] != NULL ) {
2597                         ch_free( sie->si_exattrs[i] );
2598                         i++;
2599                 }
2600                 ch_free( sie->si_exattrs );
2601         }
2602         if ( sie->si_anlist ) {
2603                 int i = 0;
2604                 while ( sie->si_anlist[i].an_name.bv_val != NULL ) {
2605                         ch_free( sie->si_anlist[i].an_name.bv_val );
2606                         i++;
2607                 }
2608                 ch_free( sie->si_anlist );
2609         }
2610         if ( sie->si_exanlist ) {
2611                 int i = 0;
2612                 while ( sie->si_exanlist[i].an_name.bv_val != NULL ) {
2613                         ch_free( sie->si_exanlist[i].an_name.bv_val );
2614                         i++;
2615                 }
2616                 ch_free( sie->si_exanlist );
2617         }
2618         if ( sie->si_retryinterval ) {
2619                 ch_free( sie->si_retryinterval );
2620         }
2621         if ( sie->si_retrynum ) {
2622                 ch_free( sie->si_retrynum );
2623         }
2624         if ( sie->si_retrynum_init ) {
2625                 ch_free( sie->si_retrynum_init );
2626         }
2627         slap_sync_cookie_free( &sie->si_syncCookie, 0 );
2628         if ( sie->si_presentlist ) {
2629             avl_free( sie->si_presentlist, avl_ber_bvfree );
2630         }
2631         if ( sie->si_ld ) {
2632                 ldap_unbind_ext( sie->si_ld, NULL, NULL );
2633         }
2634         while ( !LDAP_LIST_EMPTY( &sie->si_nonpresentlist )) {
2635                 struct nonpresent_entry* npe;
2636                 npe = LDAP_LIST_FIRST( &sie->si_nonpresentlist );
2637                 LDAP_LIST_REMOVE( npe, npe_link );
2638                 if ( npe->npe_name ) {
2639                         if ( npe->npe_name->bv_val ) {
2640                                 ch_free( npe->npe_name->bv_val );
2641                         }
2642                         ch_free( npe->npe_name );
2643                 }
2644                 if ( npe->npe_nname ) {
2645                         if ( npe->npe_nname->bv_val ) {
2646                                 ch_free( npe->npe_nname->bv_val );
2647                         }
2648                         ch_free( npe->npe_nname );
2649                 }
2650                 ch_free( npe );
2651         }
2652         ch_free( sie );
2653 }
2654
2655
2656
2657 /* NOTE: used & documented in slapd.conf(5) */
2658 #define IDSTR                   "rid"
2659 #define PROVIDERSTR             "provider"
2660 #define SCHEMASTR               "schemachecking"
2661 #define FILTERSTR               "filter"
2662 #define SEARCHBASESTR           "searchbase"
2663 #define SCOPESTR                "scope"
2664 #define ATTRSONLYSTR            "attrsonly"
2665 #define ATTRSSTR                "attrs"
2666 #define TYPESTR                 "type"
2667 #define INTERVALSTR             "interval"
2668 #define RETRYSTR                "retry"
2669 #define SLIMITSTR               "sizelimit"
2670 #define TLIMITSTR               "timelimit"
2671 #define SYNCDATASTR             "syncdata"
2672
2673 /* FIXME: undocumented */
2674 #define LOGBASESTR      "logbase"
2675 #define LOGFILTERSTR    "logfilter"
2676 #define OLDAUTHCSTR             "bindprincipal"
2677 #define EXATTRSSTR              "exattrs"
2678 #define MANAGEDSAITSTR          "manageDSAit"
2679
2680 /* FIXME: unused */
2681 #define LASTMODSTR              "lastmod"
2682 #define LMGENSTR                "gen"
2683 #define LMNOSTR                 "no"
2684 #define LMREQSTR                "req"
2685 #define SRVTABSTR               "srvtab"
2686 #define SUFFIXSTR               "suffix"
2687
2688 /* mandatory */
2689 #define GOT_ID                  0x0001
2690 #define GOT_PROVIDER            0x0002
2691
2692 /* check */
2693 #define GOT_ALL                 (GOT_ID|GOT_PROVIDER)
2694
2695 static struct {
2696         struct berval key;
2697         int val;
2698 } scopes[] = {
2699         { BER_BVC("base"), LDAP_SCOPE_BASE },
2700         { BER_BVC("one"), LDAP_SCOPE_ONELEVEL },
2701         { BER_BVC("onelevel"), LDAP_SCOPE_ONELEVEL },   /* OpenLDAP extension */
2702         { BER_BVC("children"), LDAP_SCOPE_SUBORDINATE },
2703         { BER_BVC("subordinate"), LDAP_SCOPE_SUBORDINATE },
2704         { BER_BVC("sub"), LDAP_SCOPE_SUBTREE },
2705         { BER_BVC("subtree"), LDAP_SCOPE_SUBTREE },     /* OpenLDAP extension */
2706         { BER_BVNULL, 0 }
2707 };
2708
2709 static slap_verbmasks datamodes[] = {
2710         { BER_BVC("default"), SYNCDATA_DEFAULT },
2711         { BER_BVC("accesslog"), SYNCDATA_ACCESSLOG },
2712         { BER_BVC("changelog"), SYNCDATA_CHANGELOG },
2713         { BER_BVNULL, 0 }
2714 };
2715
2716 static int
2717 parse_syncrepl_line(
2718         ConfigArgs      *c,
2719         syncinfo_t      *si )
2720 {
2721         int     gots = 0;
2722         int     i;
2723         char    *val;
2724
2725         for ( i = 1; i < c->argc; i++ ) {
2726                 if ( !strncasecmp( c->argv[ i ], IDSTR "=",
2727                                         STRLENOF( IDSTR "=" ) ) )
2728                 {
2729                         int tmp;
2730                         /* '\0' string terminator accounts for '=' */
2731                         val = c->argv[ i ] + STRLENOF( IDSTR "=" );
2732                         if ( lutil_atoi( &tmp, val ) != 0 ) {
2733                                 snprintf( c->msg, sizeof( c->msg ),
2734                                         "Error: parse_syncrepl_line: "
2735                                         "unable to parse syncrepl id \"%s\"", val );
2736                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->msg, 0 );
2737                                 return -1;
2738                         }
2739                         if ( tmp >= 1000 || tmp < 0 ) {
2740                                 snprintf( c->msg, sizeof( c->msg ),
2741                                         "Error: parse_syncrepl_line: "
2742                                         "syncrepl id %d is out of range [0..999]", tmp );
2743                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->msg, 0 );
2744                                 return -1;
2745                         }
2746                         si->si_rid = tmp;
2747                         gots |= GOT_ID;
2748                 } else if ( !strncasecmp( c->argv[ i ], PROVIDERSTR "=",
2749                                         STRLENOF( PROVIDERSTR "=" ) ) )
2750                 {
2751                         val = c->argv[ i ] + STRLENOF( PROVIDERSTR "=" );
2752                         ber_str2bv( val, 0, 1, &si->si_bindconf.sb_uri );
2753                         gots |= GOT_PROVIDER;
2754                 } else if ( !strncasecmp( c->argv[ i ], SCHEMASTR "=",
2755                                         STRLENOF( SCHEMASTR "=" ) ) )
2756                 {
2757                         val = c->argv[ i ] + STRLENOF( SCHEMASTR "=" );
2758                         if ( !strncasecmp( val, "on", STRLENOF( "on" ) )) {
2759                                 si->si_schemachecking = 1;
2760                         } else if ( !strncasecmp( val, "off", STRLENOF( "off" ) ) ) {
2761                                 si->si_schemachecking = 0;
2762                         } else {
2763                                 si->si_schemachecking = 1;
2764                         }
2765                 } else if ( !strncasecmp( c->argv[ i ], FILTERSTR "=",
2766                                         STRLENOF( FILTERSTR "=" ) ) )
2767                 {
2768                         val = c->argv[ i ] + STRLENOF( FILTERSTR "=" );
2769                         if ( si->si_filterstr.bv_val )
2770                                 ch_free( si->si_filterstr.bv_val );
2771                         ber_str2bv( val, 0, 1, &si->si_filterstr );
2772                 } else if ( !strncasecmp( c->argv[ i ], LOGFILTERSTR "=",
2773                                         STRLENOF( LOGFILTERSTR "=" ) ) )
2774                 {
2775                         val = c->argv[ i ] + STRLENOF( LOGFILTERSTR "=" );
2776                         if ( si->si_logfilterstr.bv_val )
2777                                 ch_free( si->si_logfilterstr.bv_val );
2778                         ber_str2bv( val, 0, 1, &si->si_logfilterstr );
2779                 } else if ( !strncasecmp( c->argv[ i ], SEARCHBASESTR "=",
2780                                         STRLENOF( SEARCHBASESTR "=" ) ) )
2781                 {
2782                         struct berval   bv;
2783                         int             rc;
2784
2785                         val = c->argv[ i ] + STRLENOF( SEARCHBASESTR "=" );
2786                         if ( si->si_base.bv_val ) {
2787                                 ch_free( si->si_base.bv_val );
2788                         }
2789                         ber_str2bv( val, 0, 0, &bv );
2790                         rc = dnNormalize( 0, NULL, NULL, &bv, &si->si_base, NULL );
2791                         if ( rc != LDAP_SUCCESS ) {
2792                                 snprintf( c->msg, sizeof( c->msg ),
2793                                         "Invalid base DN \"%s\": %d (%s)",
2794                                         val, rc, ldap_err2string( rc ) );
2795                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->msg, 0 );
2796                                 return -1;
2797                         }
2798                 } else if ( !strncasecmp( c->argv[ i ], LOGBASESTR "=",
2799                                         STRLENOF( LOGBASESTR "=" ) ) )
2800                 {
2801                         struct berval   bv;
2802                         int             rc;
2803
2804                         val = c->argv[ i ] + STRLENOF( LOGBASESTR "=" );
2805                         if ( si->si_logbase.bv_val ) {
2806                                 ch_free( si->si_logbase.bv_val );
2807                         }
2808                         ber_str2bv( val, 0, 0, &bv );
2809                         rc = dnNormalize( 0, NULL, NULL, &bv, &si->si_logbase, NULL );
2810                         if ( rc != LDAP_SUCCESS ) {
2811                                 snprintf( c->msg, sizeof( c->msg ),
2812                                         "Invalid logbase DN \"%s\": %d (%s)",
2813                                         val, rc, ldap_err2string( rc ) );
2814                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->msg, 0 );
2815                                 return -1;
2816                         }
2817                 } else if ( !strncasecmp( c->argv[ i ], SCOPESTR "=",
2818                                         STRLENOF( SCOPESTR "=" ) ) )
2819                 {
2820                         int j;
2821                         val = c->argv[ i ] + STRLENOF( SCOPESTR "=" );
2822                         for ( j=0; !BER_BVISNULL(&scopes[j].key); j++ ) {
2823                                 if (!strcasecmp( val, scopes[j].key.bv_val )) {
2824                                         si->si_scope = scopes[j].val;
2825                                         break;
2826                                 }
2827                         }
2828                         if ( BER_BVISNULL(&scopes[j].key) ) {
2829                                 snprintf( c->msg, sizeof( c->msg ),
2830                                         "Error: parse_syncrepl_line: "
2831                                         "unknown scope \"%s\"", val);
2832                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->msg, 0 );
2833                                 return -1;
2834                         }
2835                 } else if ( !strncasecmp( c->argv[ i ], ATTRSONLYSTR,
2836                                         STRLENOF( ATTRSONLYSTR ) ) )
2837                 {
2838                         si->si_attrsonly = 1;
2839                 } else if ( !strncasecmp( c->argv[ i ], ATTRSSTR "=",
2840                                         STRLENOF( ATTRSSTR "=" ) ) )
2841                 {
2842                         val = c->argv[ i ] + STRLENOF( ATTRSSTR "=" );
2843                         if ( !strncasecmp( val, ":include:", STRLENOF(":include:") ) ) {
2844                                 char *attr_fname;
2845                                 attr_fname = ch_strdup( val + STRLENOF(":include:") );
2846                                 si->si_anlist = file2anlist( si->si_anlist, attr_fname, " ,\t" );
2847                                 if ( si->si_anlist == NULL ) {
2848                                         ch_free( attr_fname );
2849                                         return -1;
2850                                 }
2851                                 si->si_anfile = attr_fname;
2852                         } else {
2853                                 char *str, *s, *next;
2854                                 char delimstr[] = " ,\t";
2855                                 str = ch_strdup( val );
2856                                 for ( s = ldap_pvt_strtok( str, delimstr, &next );
2857                                                 s != NULL;
2858                                                 s = ldap_pvt_strtok( NULL, delimstr, &next ) )
2859                                 {
2860                                         if ( strlen(s) == 1 && *s == '*' ) {
2861                                                 si->si_allattrs = 1;
2862                                                 *(val + ( s - str )) = delimstr[0];
2863                                         }
2864                                         if ( strlen(s) == 1 && *s == '+' ) {
2865                                                 si->si_allopattrs = 1;
2866                                                 *(val + ( s - str )) = delimstr[0];
2867                                         }
2868                                 }
2869                                 ch_free( str );
2870                                 si->si_anlist = str2anlist( si->si_anlist, val, " ,\t" );
2871                                 if ( si->si_anlist == NULL ) {
2872                                         return -1;
2873                                 }
2874                         }
2875                 } else if ( !strncasecmp( c->argv[ i ], EXATTRSSTR "=",
2876                                         STRLENOF( EXATTRSSTR "=" ) ) )
2877                 {
2878                         val = c->argv[ i ] + STRLENOF( EXATTRSSTR "=" );
2879                         if ( !strncasecmp( val, ":include:", STRLENOF(":include:") )) {
2880                                 char *attr_fname;
2881                                 attr_fname = ch_strdup( val + STRLENOF(":include:") );
2882                                 si->si_exanlist = file2anlist(
2883                                         si->si_exanlist, attr_fname, " ,\t" );
2884                                 if ( si->si_exanlist == NULL ) {
2885                                         ch_free( attr_fname );
2886                                         return -1;
2887                                 }
2888                                 ch_free( attr_fname );
2889                         } else {
2890                                 si->si_exanlist = str2anlist( si->si_exanlist, val, " ,\t" );
2891                                 if ( si->si_exanlist == NULL ) {
2892                                         return -1;
2893                                 }
2894                         }
2895                 } else if ( !strncasecmp( c->argv[ i ], TYPESTR "=",
2896                                         STRLENOF( TYPESTR "=" ) ) )
2897                 {
2898                         val = c->argv[ i ] + STRLENOF( TYPESTR "=" );
2899                         if ( !strncasecmp( val, "refreshOnly",
2900                                                 STRLENOF("refreshOnly") ) )
2901                         {
2902                                 si->si_type = si->si_ctype = LDAP_SYNC_REFRESH_ONLY;
2903                         } else if ( !strncasecmp( val, "refreshAndPersist",
2904                                                 STRLENOF("refreshAndPersist") ) )
2905                         {
2906                                 si->si_type = si->si_ctype = LDAP_SYNC_REFRESH_AND_PERSIST;
2907                                 si->si_interval = 60;
2908                         } else {
2909                                 snprintf( c->msg, sizeof( c->msg ),
2910                                         "Error: parse_syncrepl_line: "
2911                                         "unknown sync type \"%s\"", val);
2912                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->msg, 0 );
2913                                 return -1;
2914                         }
2915                 } else if ( !strncasecmp( c->argv[ i ], INTERVALSTR "=",
2916                                         STRLENOF( INTERVALSTR "=" ) ) )
2917                 {
2918                         val = c->argv[ i ] + STRLENOF( INTERVALSTR "=" );
2919                         if ( si->si_type == LDAP_SYNC_REFRESH_AND_PERSIST ) {
2920                                 si->si_interval = 0;
2921                         } else if ( strchr( val, ':' ) != NULL ) {
2922                                 char *next, *ptr = val;
2923                                 unsigned dd, hh, mm, ss;
2924                                 dd = strtoul( ptr, &next, 10 );
2925                                 if ( next == ptr || next[0] != ':' ) {
2926                                         snprintf( c->msg, sizeof( c->msg ),
2927                                                 "Error: parse_syncrepl_line: "
2928                                                 "invalid interval \"%s\", unable to parse days", val );
2929                                         Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->msg, 0 );
2930                                         return -1;
2931                                 }
2932                                 ptr = next + 1;
2933                                 hh = strtoul( ptr, &next, 10 );
2934                                 if ( next == ptr || next[0] != ':' || hh > 24 ) {
2935                                         snprintf( c->msg, sizeof( c->msg ),
2936                                                 "Error: parse_syncrepl_line: "
2937                                                 "invalid interval \"%s\", unable to parse hours", val );
2938                                         Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->msg, 0 );
2939                                         return -1;
2940                                 }
2941                                 ptr = next + 1;
2942                                 mm = strtoul( ptr, &next, 10 );
2943                                 if ( next == ptr || next[0] != ':' || mm > 60 ) {
2944                                         snprintf( c->msg, sizeof( c->msg ),
2945                                                 "Error: parse_syncrepl_line: "
2946                                                 "invalid interval \"%s\", unable to parse minutes", val );
2947                                         Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->msg, 0 );
2948                                         return -1;
2949                                 }
2950                                 ptr = next + 1;
2951                                 ss = strtoul( ptr, &next, 10 );
2952                                 if ( next == ptr || next[0] != '\0' || ss > 60 ) {
2953                                         snprintf( c->msg, sizeof( c->msg ),
2954                                                 "Error: parse_syncrepl_line: "
2955                                                 "invalid interval \"%s\", unable to parse seconds", val );
2956                                         Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->msg, 0 );
2957                                         return -1;
2958                                 }
2959                                 si->si_interval = (( dd * 24 + hh ) * 60 + mm ) * 60 + ss;
2960                         } else {
2961                                 unsigned long   t;
2962
2963                                 if ( lutil_parse_time( val, &t ) != 0 ) {
2964                                         snprintf( c->msg, sizeof( c->msg ),
2965                                                 "Error: parse_syncrepl_line: "
2966                                                 "invalid interval \"%s\"", val );
2967                                         Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->msg, 0 );
2968                                         return -1;
2969                                 }
2970                                 si->si_interval = (time_t)t;
2971                         }
2972                         if ( si->si_interval < 0 ) {
2973                                 snprintf( c->msg, sizeof( c->msg ),
2974                                         "Error: parse_syncrepl_line: "
2975                                         "invalid interval \"%ld\"",
2976                                         (long) si->si_interval);
2977                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->msg, 0 );
2978                                 return -1;
2979                         }
2980                 } else if ( !strncasecmp( c->argv[ i ], RETRYSTR "=",
2981                                         STRLENOF( RETRYSTR "=" ) ) )
2982                 {
2983                         char **retry_list;
2984                         int j, k, n;
2985
2986                         val = c->argv[ i ] + STRLENOF( RETRYSTR "=" );
2987                         retry_list = (char **) ch_calloc( 1, sizeof( char * ));
2988                         retry_list[0] = NULL;
2989
2990                         slap_str2clist( &retry_list, val, " ,\t" );
2991
2992                         for ( k = 0; retry_list && retry_list[k]; k++ ) ;
2993                         n = k / 2;
2994                         if ( k % 2 ) {
2995                                 snprintf( c->msg, sizeof( c->msg ),
2996                                         "Error: incomplete syncrepl retry list" );
2997                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->msg, 0 );
2998                                 for ( k = 0; retry_list && retry_list[k]; k++ ) {
2999                                         ch_free( retry_list[k] );
3000                                 }
3001                                 ch_free( retry_list );
3002                                 return 1;
3003                         }
3004                         si->si_retryinterval = (time_t *) ch_calloc( n + 1, sizeof( time_t ));
3005                         si->si_retrynum = (int *) ch_calloc( n + 1, sizeof( int ));
3006                         si->si_retrynum_init = (int *) ch_calloc( n + 1, sizeof( int ));
3007                         for ( j = 0; j < n; j++ ) {
3008                                 unsigned long   t;
3009                                 if ( lutil_atoul( &t, retry_list[j*2] ) != 0 ) {
3010                                         snprintf( c->msg, sizeof( c->msg ),
3011                                                 "Error: invalid retry interval \"%s\" (#%d)",
3012                                                 retry_list[j*2], j );
3013                                         Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->msg, 0 );
3014                                         /* do some cleanup */
3015                                         return 1;
3016                                 }
3017                                 si->si_retryinterval[j] = (time_t)t;
3018                                 if ( *retry_list[j*2+1] == '+' ) {
3019                                         si->si_retrynum_init[j] = RETRYNUM_FOREVER;
3020                                         si->si_retrynum[j] = RETRYNUM_FOREVER;
3021                                         j++;
3022                                         break;
3023                                 } else {
3024                                         if ( lutil_atoi( &si->si_retrynum_init[j], retry_list[j*2+1] ) != 0
3025                                                         || si->si_retrynum_init[j] <= 0 )
3026                                         {
3027                                                 snprintf( c->msg, sizeof( c->msg ),
3028                                                         "Error: invalid initial retry number \"%s\" (#%d)",
3029                                                         retry_list[j*2+1], j );
3030                                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->msg, 0 );
3031                                                 /* do some cleanup */
3032                                                 return 1;
3033                                         }
3034                                         if ( lutil_atoi( &si->si_retrynum[j], retry_list[j*2+1] ) != 0
3035                                                         || si->si_retrynum[j] <= 0 )
3036                                         {
3037                                                 snprintf( c->msg, sizeof( c->msg ),
3038                                                         "Error: invalid retry number \"%s\" (#%d)",
3039                                                         retry_list[j*2+1], j );
3040                                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->msg, 0 );
3041                                                 /* do some cleanup */
3042                                                 return 1;
3043                                         }
3044                                 }
3045                         }
3046                         si->si_retrynum_init[j] = RETRYNUM_TAIL;
3047                         si->si_retrynum[j] = RETRYNUM_TAIL;
3048                         si->si_retryinterval[j] = 0;
3049                         
3050                         for ( k = 0; retry_list && retry_list[k]; k++ ) {
3051                                 ch_free( retry_list[k] );
3052                         }
3053                         ch_free( retry_list );
3054                 } else if ( !strncasecmp( c->argv[ i ], MANAGEDSAITSTR "=",
3055                                         STRLENOF( MANAGEDSAITSTR "=" ) ) )
3056                 {
3057                         val = c->argv[ i ] + STRLENOF( MANAGEDSAITSTR "=" );
3058                         if ( lutil_atoi( &si->si_manageDSAit, val ) != 0
3059                                 || si->si_manageDSAit < 0 || si->si_manageDSAit > 1 )
3060                         {
3061                                 snprintf( c->msg, sizeof( c->msg ),
3062                                         "invalid manageDSAit value \"%s\".\n",
3063                                         val );
3064                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->msg, 0 );
3065                                 return 1;
3066                         }
3067                 } else if ( !strncasecmp( c->argv[ i ], SLIMITSTR "=",
3068                                         STRLENOF( SLIMITSTR "=") ) )
3069                 {
3070                         val = c->argv[ i ] + STRLENOF( SLIMITSTR "=" );
3071                         if ( strcasecmp( val, "unlimited" ) == 0 ) {
3072                                 si->si_slimit = 0;
3073
3074                         } else if ( lutil_atoi( &si->si_slimit, val ) != 0 || val < 0 ) {
3075                                 snprintf( c->msg, sizeof( c->msg ),
3076                                         "invalid size limit value \"%s\".\n",
3077                                         val );
3078                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->msg, 0 );
3079                                 return 1;
3080                         }
3081                 } else if ( !strncasecmp( c->argv[ i ], TLIMITSTR "=",
3082                                         STRLENOF( TLIMITSTR "=" ) ) )
3083                 {
3084                         val = c->argv[ i ] + STRLENOF( TLIMITSTR "=" );
3085                         if ( strcasecmp( val, "unlimited" ) == 0 ) {
3086                                 si->si_tlimit = 0;
3087
3088                         } else if ( lutil_atoi( &si->si_tlimit, val ) != 0 || val < 0 ) {
3089                                 snprintf( c->msg, sizeof( c->msg ),
3090                                         "invalid time limit value \"%s\".\n",
3091                                         val );
3092                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->msg, 0 );
3093                                 return 1;
3094                         }
3095                 } else if ( !strncasecmp( c->argv[ i ], SYNCDATASTR "=",
3096                                         STRLENOF( SYNCDATASTR "=" ) ) )
3097                 {
3098                         val = c->argv[ i ] + STRLENOF( SYNCDATASTR "=" );
3099                         si->si_syncdata = verb_to_mask( val, datamodes );
3100                 } else if ( bindconf_parse( c->argv[i], &si->si_bindconf ) ) {
3101                         snprintf( c->msg, sizeof( c->msg ),
3102                                 "Error: parse_syncrepl_line: "
3103                                 "unknown keyword \"%s\"\n", c->argv[ i ] );
3104                         Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->msg, 0 );
3105                         return -1;
3106                 }
3107         }
3108
3109         if ( gots != GOT_ALL ) {
3110                 snprintf( c->msg, sizeof( c->msg ),
3111                         "Error: Malformed \"syncrepl\" line in slapd config file" );
3112                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->msg, 0 );
3113                 return -1;
3114         }
3115
3116         return 0;
3117 }
3118
3119 static int
3120 add_syncrepl(
3121         ConfigArgs *c )
3122 {
3123         syncinfo_t *si;
3124         int     rc = 0;
3125
3126         if ( !( c->be->be_search && c->be->be_add && c->be->be_modify && c->be->be_delete ) ) {
3127                 Debug( LDAP_DEBUG_ANY, "%s: database %s does not support operations "
3128                         "required for syncrepl\n", c->log, c->be->be_type, 0 );
3129                 return 1;
3130         }
3131         si = (syncinfo_t *) ch_calloc( 1, sizeof( syncinfo_t ) );
3132
3133         if ( si == NULL ) {
3134                 Debug( LDAP_DEBUG_ANY, "out of memory in add_syncrepl\n", 0, 0, 0 );
3135                 return 1;
3136         }
3137
3138         si->si_bindconf.sb_tls = SB_TLS_OFF;
3139         si->si_bindconf.sb_method = LDAP_AUTH_SIMPLE;
3140         si->si_schemachecking = 0;
3141         ber_str2bv( "(objectclass=*)", STRLENOF("(objectclass=*)"), 1,
3142                 &si->si_filterstr );
3143         si->si_base.bv_val = NULL;
3144         si->si_scope = LDAP_SCOPE_SUBTREE;
3145         si->si_attrsonly = 0;
3146         si->si_anlist = (AttributeName *) ch_calloc( 1, sizeof( AttributeName ));
3147         si->si_exanlist = (AttributeName *) ch_calloc( 1, sizeof( AttributeName ));
3148         si->si_attrs = NULL;
3149         si->si_allattrs = 0;
3150         si->si_allopattrs = 0;
3151         si->si_exattrs = NULL;
3152         si->si_type = si->si_ctype = LDAP_SYNC_REFRESH_ONLY;
3153         si->si_interval = 86400;
3154         si->si_retryinterval = NULL;
3155         si->si_retrynum_init = NULL;
3156         si->si_retrynum = NULL;
3157         si->si_manageDSAit = 0;
3158         si->si_tlimit = 0;
3159         si->si_slimit = 0;
3160         si->si_conn_setup = 0;
3161
3162         si->si_presentlist = NULL;
3163         LDAP_LIST_INIT( &si->si_nonpresentlist );
3164         ldap_pvt_thread_mutex_init( &si->si_mutex );
3165
3166         rc = parse_syncrepl_line( c, si );
3167
3168         if ( rc == 0 ) {
3169                 si->si_be = c->be;
3170                 init_syncrepl( si );
3171                 si->si_re = ldap_pvt_runqueue_insert( &slapd_rq, si->si_interval,
3172                         do_syncrepl, si, "do_syncrepl", c->be->be_suffix[0].bv_val );
3173                 if ( !si->si_re )
3174                         rc = -1;
3175         }
3176         if ( rc < 0 ) {
3177                 Debug( LDAP_DEBUG_ANY, "failed to add syncinfo\n", 0, 0, 0 );
3178                 syncinfo_free( si );    
3179                 return 1;
3180         } else {
3181                 Debug( LDAP_DEBUG_CONFIG,
3182                         "Config: ** successfully added syncrepl \"%s\"\n",
3183                         BER_BVISNULL( &si->si_bindconf.sb_uri ) ?
3184                         "(null)" : si->si_bindconf.sb_uri.bv_val, 0, 0 );
3185                 if ( !si->si_schemachecking ) {
3186                         SLAP_DBFLAGS(c->be) |= SLAP_DBFLAG_NO_SCHEMA_CHECK;
3187                 }
3188                 c->be->be_syncinfo = si;
3189                 return 0;
3190         }
3191 }
3192
3193 static void
3194 syncrepl_unparse( syncinfo_t *si, struct berval *bv )
3195 {
3196         struct berval bc, uri;
3197         char buf[BUFSIZ*2], *ptr;
3198         int i;
3199
3200 #define WHATSLEFT       ( sizeof( buf ) - ( ptr - buf ) )
3201
3202         BER_BVZERO( bv );
3203
3204         /* temporarily inhibit bindconf from printing URI */
3205         uri = si->si_bindconf.sb_uri;
3206         BER_BVZERO( &si->si_bindconf.sb_uri );
3207         bindconf_unparse( &si->si_bindconf, &bc );
3208         si->si_bindconf.sb_uri = uri;
3209
3210         ptr = buf;
3211         ptr += snprintf( ptr, WHATSLEFT, IDSTR "=%03ld " PROVIDERSTR "=%s",
3212                 si->si_rid, si->si_bindconf.sb_uri.bv_val );
3213         if ( ptr - buf >= sizeof( buf ) ) return;
3214         if ( !BER_BVISNULL( &bc )) {
3215                 if ( WHATSLEFT <= bc.bv_len ) {
3216                         free( bc.bv_val );
3217                         return;
3218                 }
3219                 ptr = lutil_strcopy( ptr, bc.bv_val );
3220                 free( bc.bv_val );
3221         }
3222         if ( !BER_BVISEMPTY( &si->si_filterstr )) {
3223                 if ( WHATSLEFT <= STRLENOF( " " FILTERSTR "=\"" "\"" ) + si->si_filterstr.bv_len ) return;
3224                 ptr = lutil_strcopy( ptr, " " FILTERSTR "=\"" );
3225                 ptr = lutil_strcopy( ptr, si->si_filterstr.bv_val );
3226                 *ptr++ = '"';
3227         }
3228         if ( !BER_BVISNULL( &si->si_base )) {
3229                 if ( WHATSLEFT <= STRLENOF( " " SEARCHBASESTR "=\"" "\"" ) + si->si_base.bv_len ) return;
3230                 ptr = lutil_strcopy( ptr, " " SEARCHBASESTR "=\"" );
3231                 ptr = lutil_strcopy( ptr, si->si_base.bv_val );
3232                 *ptr++ = '"';
3233         }
3234         if ( !BER_BVISEMPTY( &si->si_logfilterstr )) {
3235                 if ( WHATSLEFT <= STRLENOF( " " LOGFILTERSTR "=\"" "\"" ) + si->si_logfilterstr.bv_len ) return;
3236                 ptr = lutil_strcopy( ptr, " " LOGFILTERSTR "=\"" );
3237                 ptr = lutil_strcopy( ptr, si->si_logfilterstr.bv_val );
3238                 *ptr++ = '"';
3239         }
3240         if ( !BER_BVISNULL( &si->si_logbase )) {
3241                 if ( WHATSLEFT <= STRLENOF( " " LOGBASESTR "=\"" "\"" ) + si->si_logbase.bv_len ) return;
3242                 ptr = lutil_strcopy( ptr, " " LOGBASESTR "=\"" );
3243                 ptr = lutil_strcopy( ptr, si->si_logbase.bv_val );
3244                 *ptr++ = '"';
3245         }
3246         for (i=0; !BER_BVISNULL(&scopes[i].key);i++) {
3247                 if ( si->si_scope == scopes[i].val ) {
3248                         if ( WHATSLEFT <= STRLENOF( " " SCOPESTR "=" ) + scopes[i].key.bv_len ) return;
3249                         ptr = lutil_strcopy( ptr, " " SCOPESTR "=" );
3250                         ptr = lutil_strcopy( ptr, scopes[i].key.bv_val );
3251                         break;
3252                 }
3253         }
3254         if ( si->si_attrsonly ) {
3255                 if ( WHATSLEFT <= STRLENOF( " " ATTRSONLYSTR "=\"" "\"" ) ) return;
3256                 ptr = lutil_strcopy( ptr, " " ATTRSONLYSTR );
3257         }
3258         if ( si->si_anfile ) {
3259                 if ( WHATSLEFT <= STRLENOF( " " ATTRSSTR "=\":include:" "\"" ) + strlen( si->si_anfile ) ) return;
3260                 ptr = lutil_strcopy( ptr, " " ATTRSSTR "=:include:\"" );
3261                 ptr = lutil_strcopy( ptr, si->si_anfile );
3262                 *ptr++ = '"';
3263         } else if ( si->si_allattrs || si->si_allopattrs ||
3264                 ( si->si_anlist && !BER_BVISNULL(&si->si_anlist[0].an_name) ))
3265         {
3266                 char *old;
3267
3268                 if ( WHATSLEFT <= STRLENOF( " " ATTRSONLYSTR "=\"" "\"" ) ) return;
3269                 ptr = lutil_strcopy( ptr, " " ATTRSSTR "=\"" );
3270                 old = ptr;
3271                 /* FIXME: add check for overflow */
3272                 ptr = anlist_unparse( si->si_anlist, ptr, WHATSLEFT );
3273                 if ( si->si_allattrs ) {
3274                         if ( WHATSLEFT <= STRLENOF( ",*\"" ) ) return;
3275                         if ( old != ptr ) *ptr++ = ',';
3276                         *ptr++ = '*';
3277                 }
3278                 if ( si->si_allopattrs ) {
3279                         if ( WHATSLEFT <= STRLENOF( ",+\"" ) ) return;
3280                         if ( old != ptr ) *ptr++ = ',';
3281                         *ptr++ = '+';
3282                 }
3283                 *ptr++ = '"';
3284         }
3285         if ( si->si_exanlist && !BER_BVISNULL(&si->si_exanlist[0].an_name) ) {
3286                 if ( WHATSLEFT <= STRLENOF( " " EXATTRSSTR "=" ) ) return;
3287                 ptr = lutil_strcopy( ptr, " " EXATTRSSTR "=" );
3288                 /* FIXME: add check for overflow */
3289                 ptr = anlist_unparse( si->si_exanlist, ptr, WHATSLEFT );
3290         }
3291         if ( WHATSLEFT <= STRLENOF( " " SCHEMASTR "=" ) + STRLENOF( "off" ) ) return;
3292         ptr = lutil_strcopy( ptr, " " SCHEMASTR "=" );
3293         ptr = lutil_strcopy( ptr, si->si_schemachecking ? "on" : "off" );
3294         
3295         if ( WHATSLEFT <= STRLENOF( " " TYPESTR "=" ) + STRLENOF( "refreshAndPersist" ) ) return;
3296         ptr = lutil_strcopy( ptr, " " TYPESTR "=" );
3297         ptr = lutil_strcopy( ptr, si->si_type == LDAP_SYNC_REFRESH_AND_PERSIST ?
3298                 "refreshAndPersist" : "refreshOnly" );
3299
3300         if ( si->si_type == LDAP_SYNC_REFRESH_ONLY ) {
3301                 int dd, hh, mm, ss;
3302
3303                 dd = si->si_interval;
3304                 ss = dd % 60;
3305                 dd /= 60;
3306                 mm = dd % 60;
3307                 dd /= 60;
3308                 hh = dd % 24;
3309                 dd /= 24;
3310                 ptr = lutil_strcopy( ptr, " " INTERVALSTR "=" );
3311                 ptr += snprintf( ptr, WHATSLEFT, "%02d:%02d:%02d:%02d", dd, hh, mm, ss );
3312                 if ( ptr - buf >= sizeof( buf ) ) return;
3313         } else if ( si->si_retryinterval ) {
3314                 int space=0;
3315                 if ( WHATSLEFT <= STRLENOF( " " RETRYSTR "=\"" "\"" ) ) return;
3316                 ptr = lutil_strcopy( ptr, " " RETRYSTR "=\"" );
3317                 for (i=0; si->si_retryinterval[i]; i++) {
3318                         if ( space ) *ptr++ = ' ';
3319                         space = 1;
3320                         ptr += snprintf( ptr, WHATSLEFT, "%ld ", (long) si->si_retryinterval[i] );
3321                         if ( si->si_retrynum_init[i] == RETRYNUM_FOREVER )
3322                                 *ptr++ = '+';
3323                         else
3324                                 ptr += snprintf( ptr, WHATSLEFT, "%d", si->si_retrynum_init[i] );
3325                 }
3326                 if ( WHATSLEFT <= STRLENOF( "\"" ) ) return;
3327                 *ptr++ = '"';
3328         }
3329
3330         if ( si->si_slimit ) {
3331                 if ( WHATSLEFT <= STRLENOF( " " SLIMITSTR "=" ) ) return;
3332                 ptr = lutil_strcopy( ptr, " " SLIMITSTR "=" );
3333                 ptr += snprintf( ptr, WHATSLEFT, "%d", si->si_slimit );
3334         }
3335
3336         if ( si->si_tlimit ) {
3337                 if ( WHATSLEFT <= STRLENOF( " " TLIMITSTR "=" ) ) return;
3338                 ptr = lutil_strcopy( ptr, " " TLIMITSTR "=" );
3339                 ptr += snprintf( ptr, WHATSLEFT, "%d", si->si_tlimit );
3340         }
3341
3342         if ( si->si_syncdata ) {
3343                 if ( enum_to_verb( datamodes, si->si_syncdata, &bc ) >= 0 ) {
3344                         if ( WHATSLEFT <= STRLENOF( " " SYNCDATASTR "=" ) + bc.bv_len ) return;
3345                         ptr = lutil_strcopy( ptr, " " SYNCDATASTR "=" );
3346                         ptr = lutil_strcopy( ptr, bc.bv_val );
3347                 }
3348         }
3349         bc.bv_len = ptr - buf;
3350         bc.bv_val = buf;
3351         ber_dupbv( bv, &bc );
3352 }
3353
3354 int
3355 syncrepl_config( ConfigArgs *c )
3356 {
3357         if (c->op == SLAP_CONFIG_EMIT) {
3358                 if ( c->be->be_syncinfo ) {
3359                         struct berval bv;
3360                         syncrepl_unparse( c->be->be_syncinfo, &bv ); 
3361                         ber_bvarray_add( &c->rvalue_vals, &bv );
3362                         return 0;
3363                 }
3364                 return 1;
3365         } else if ( c->op == LDAP_MOD_DELETE ) {
3366                 struct re_s *re;
3367
3368                 if ( c->be->be_syncinfo ) {
3369                         re = c->be->be_syncinfo->si_re;
3370                         if ( re ) {
3371                                 if ( ldap_pvt_runqueue_isrunning( &slapd_rq, re ) )
3372                                         ldap_pvt_runqueue_stoptask( &slapd_rq, re );
3373                                 ldap_pvt_runqueue_remove( &slapd_rq, re );
3374                         }
3375                         syncinfo_free( c->be->be_syncinfo );
3376                         c->be->be_syncinfo = NULL;
3377                 }
3378                 SLAP_DBFLAGS( c->be ) &= ~(SLAP_DBFLAG_SHADOW|SLAP_DBFLAG_SYNC_SHADOW);
3379                 return 0;
3380         }
3381         if ( SLAP_SHADOW( c->be ) ) {
3382                 Debug(LDAP_DEBUG_ANY, "%s: "
3383                         "syncrepl: database already shadowed.\n",
3384                         c->log, 0, 0);
3385                 return(1);
3386         } else if ( add_syncrepl( c ) ) {
3387                 return(1);
3388         }
3389         return config_sync_shadow( c );
3390 }