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