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