]> git.sur5r.net Git - openldap/blob - servers/slapd/syncrepl.c
don't return entry if requested attr is not present (ITS#5650)
[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-2008 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 typedef struct cookie_state {
41         ldap_pvt_thread_mutex_t cs_mutex;
42         int     cs_num;
43         int cs_age;
44         struct berval *cs_vals;
45         int *cs_sids;
46 } cookie_state;
47         
48 #define SYNCDATA_DEFAULT        0       /* entries are plain LDAP entries */
49 #define SYNCDATA_ACCESSLOG      1       /* entries are accesslog format */
50 #define SYNCDATA_CHANGELOG      2       /* entries are changelog format */
51
52 #define SYNCLOG_LOGGING         0       /* doing a log-based update */
53 #define SYNCLOG_FALLBACK        1       /* doing a full refresh */
54
55 #define RETRYNUM_FOREVER        (-1)    /* retry forever */
56 #define RETRYNUM_TAIL           (-2)    /* end of retrynum array */
57 #define RETRYNUM_VALID(n)       ((n) >= RETRYNUM_FOREVER)       /* valid retrynum */
58 #define RETRYNUM_FINITE(n)      ((n) > RETRYNUM_FOREVER)        /* not forever */
59
60 typedef struct syncinfo_s {
61         struct syncinfo_s       *si_next;
62         BackendDB               *si_be;
63         BackendDB               *si_wbe;
64         struct re_s             *si_re;
65         int                     si_rid;
66         char                    si_ridtxt[ STRLENOF("rid=999") + 1 ];
67         slap_bindconf           si_bindconf;
68         struct berval           si_base;
69         struct berval           si_logbase;
70         struct berval           si_filterstr;
71         struct berval           si_logfilterstr;
72         int                     si_scope;
73         int                     si_attrsonly;
74         char                    *si_anfile;
75         AttributeName           *si_anlist;
76         AttributeName           *si_exanlist;
77         char                    **si_attrs;
78         char                    **si_exattrs;
79         int                     si_allattrs;
80         int                     si_allopattrs;
81         int                     si_schemachecking;
82         int                     si_type;        /* the active type */
83         int                     si_ctype;       /* the configured type */
84         time_t                  si_interval;
85         time_t                  *si_retryinterval;
86         int                     *si_retrynum_init;
87         int                     *si_retrynum;
88         struct sync_cookie      si_syncCookie;
89         cookie_state            *si_cookieState;
90         int                     si_cookieAge;
91         int                     si_manageDSAit;
92         int                     si_slimit;
93         int                     si_tlimit;
94         int                     si_refreshDelete;
95         int                     si_refreshPresent;
96         int                     si_refreshDone;
97         int                     si_syncdata;
98         int                     si_logstate;
99         ber_int_t       si_msgid;
100         Avlnode                 *si_presentlist;
101         LDAP                    *si_ld;
102         Connection              *si_conn;
103         LDAP_LIST_HEAD(np, nonpresent_entry)    si_nonpresentlist;
104         ldap_pvt_thread_mutex_t si_mutex;
105 } syncinfo_t;
106
107 static int syncuuid_cmp( const void *, const void * );
108 static int avl_presentlist_insert( syncinfo_t* si, struct berval *syncUUID );
109 static void syncrepl_del_nonpresent( Operation *, syncinfo_t *, BerVarray, struct sync_cookie *, int );
110 static int syncrepl_message_to_op(
111                                         syncinfo_t *, Operation *, LDAPMessage * );
112 static int syncrepl_message_to_entry(
113                                         syncinfo_t *, Operation *, LDAPMessage *,
114                                         Modifications **, Entry **, int );
115 static int syncrepl_entry(
116                                         syncinfo_t *, Operation*, Entry*,
117                                         Modifications**,int, struct berval*,
118                                         struct berval *cookieCSN );
119 static int syncrepl_updateCookie(
120                                         syncinfo_t *, Operation *, struct berval *,
121                                         struct sync_cookie * );
122 static struct berval * slap_uuidstr_from_normalized(
123                                         struct berval *, struct berval *, void * );
124
125 /* callback functions */
126 static int dn_callback( Operation *, SlapReply * );
127 static int nonpresent_callback( Operation *, SlapReply * );
128 static int null_callback( Operation *, SlapReply * );
129
130 static AttributeDescription *sync_descs[4];
131
132 static const char *
133 syncrepl_state2str( int state )
134 {
135         switch ( state ) {
136         case LDAP_SYNC_PRESENT:
137                 return "PRESENT";
138
139         case LDAP_SYNC_ADD:
140                 return "ADD";
141
142         case LDAP_SYNC_MODIFY:
143                 return "MODIFY";
144
145         case LDAP_SYNC_DELETE:
146                 return "DELETE";
147         }
148
149         return "UNKNOWN";
150 }
151
152 static void
153 init_syncrepl(syncinfo_t *si)
154 {
155         int i, j, k, l, n;
156         char **attrs, **exattrs;
157
158         if ( !sync_descs[0] ) {
159                 sync_descs[0] = slap_schema.si_ad_objectClass;
160                 sync_descs[1] = slap_schema.si_ad_structuralObjectClass;
161                 sync_descs[2] = slap_schema.si_ad_entryCSN;
162                 sync_descs[3] = NULL;
163         }
164
165         if ( si->si_allattrs && si->si_allopattrs )
166                 attrs = NULL;
167         else
168                 attrs = anlist2attrs( si->si_anlist );
169
170         if ( attrs ) {
171                 if ( si->si_allattrs ) {
172                         i = 0;
173                         while ( attrs[i] ) {
174                                 if ( !is_at_operational( at_find( attrs[i] ) ) ) {
175                                         for ( j = i; attrs[j] != NULL; j++ ) {
176                                                 if ( j == i )
177                                                         ch_free( attrs[i] );
178                                                 attrs[j] = attrs[j+1];
179                                         }
180                                 } else {
181                                         i++;
182                                 }
183                         }
184                         attrs = ( char ** ) ch_realloc( attrs, (i + 2)*sizeof( char * ) );
185                         attrs[i] = ch_strdup("*");
186                         attrs[i + 1] = NULL;
187
188                 } else if ( si->si_allopattrs ) {
189                         i = 0;
190                         while ( attrs[i] ) {
191                                 if ( is_at_operational( at_find( attrs[i] ) ) ) {
192                                         for ( j = i; attrs[j] != NULL; j++ ) {
193                                                 if ( j == i )
194                                                         ch_free( attrs[i] );
195                                                 attrs[j] = attrs[j+1];
196                                         }
197                                 } else {
198                                         i++;
199                                 }
200                         }
201                         attrs = ( char ** ) ch_realloc( attrs, (i + 2)*sizeof( char * ) );
202                         attrs[i] = ch_strdup("+");
203                         attrs[i + 1] = NULL;
204                 }
205
206                 for ( i = 0; sync_descs[i] != NULL; i++ ) {
207                         j = 0;
208                         while ( attrs[j] ) {
209                                 if ( !strcmp( attrs[j], sync_descs[i]->ad_cname.bv_val ) ) {
210                                         for ( k = j; attrs[k] != NULL; k++ ) {
211                                                 if ( k == j )
212                                                         ch_free( attrs[k] );
213                                                 attrs[k] = attrs[k+1];
214                                         }
215                                 } else {
216                                         j++;
217                                 }
218                         }
219                 }
220
221                 for ( n = 0; attrs[ n ] != NULL; n++ ) /* empty */;
222
223                 if ( si->si_allopattrs ) {
224                         attrs = ( char ** ) ch_realloc( attrs, (n + 2)*sizeof( char * ) );
225                 } else {
226                         attrs = ( char ** ) ch_realloc( attrs, (n + 4)*sizeof( char * ) );
227                 }
228
229                 /* Add Attributes */
230                 if ( si->si_allopattrs ) {
231                         attrs[n++] = ch_strdup( sync_descs[0]->ad_cname.bv_val );
232                 } else {
233                         for ( i = 0; sync_descs[ i ] != NULL; i++ ) {
234                                 attrs[ n++ ] = ch_strdup ( sync_descs[i]->ad_cname.bv_val );
235                         }
236                 }
237                 attrs[ n ] = NULL;
238
239         } else {
240
241                 i = 0;
242                 if ( si->si_allattrs == si->si_allopattrs ) {
243                         attrs = (char**) ch_malloc( 3 * sizeof(char*) );
244                         attrs[i++] = ch_strdup( "*" );
245                         attrs[i++] = ch_strdup( "+" );
246                 } else if ( si->si_allattrs && !si->si_allopattrs ) {
247                         for ( n = 0; sync_descs[ n ] != NULL; n++ ) ;
248                         attrs = (char**) ch_malloc( (n+1)* sizeof(char*) );
249                         attrs[i++] = ch_strdup( "*" );
250                         for ( j = 1; sync_descs[ j ] != NULL; j++ ) {
251                                 attrs[i++] = ch_strdup ( sync_descs[j]->ad_cname.bv_val );
252                         }
253                 } else if ( !si->si_allattrs && si->si_allopattrs ) {
254                         attrs = (char**) ch_malloc( 3 * sizeof(char*) );
255                         attrs[i++] = ch_strdup( "+" );
256                         attrs[i++] = ch_strdup( sync_descs[0]->ad_cname.bv_val );
257                 }
258                 attrs[i] = NULL;
259         }
260         
261         si->si_attrs = attrs;
262
263         exattrs = anlist2attrs( si->si_exanlist );
264
265         if ( exattrs ) {
266                 for ( n = 0; exattrs[n] != NULL; n++ ) ;
267
268                 for ( i = 0; sync_descs[i] != NULL; i++ ) {
269                         j = 0;
270                         while ( exattrs[j] != NULL ) {
271                                 if ( !strcmp( exattrs[j], sync_descs[i]->ad_cname.bv_val ) ) {
272                                         ch_free( exattrs[j] );
273                                         for ( k = j; exattrs[k] != NULL; k++ ) {
274                                                 exattrs[k] = exattrs[k+1];
275                                         }
276                                 } else {
277                                         j++;
278                                 }
279                         }
280                 }
281
282                 for ( i = 0; exattrs[i] != NULL; i++ ) {
283                         for ( j = 0; si->si_anlist[j].an_name.bv_val; j++ ) {
284                                 ObjectClass     *oc;
285                                 if ( ( oc = si->si_anlist[j].an_oc ) ) {
286                                         k = 0;
287                                         while ( oc->soc_required[k] ) {
288                                                 if ( !strcmp( exattrs[i],
289                                                          oc->soc_required[k]->sat_cname.bv_val ) ) {
290                                                         ch_free( exattrs[i] );
291                                                         for ( l = i; exattrs[l]; l++ ) {
292                                                                 exattrs[l] = exattrs[l+1];
293                                                         }
294                                                 } else {
295                                                         k++;
296                                                 }
297                                         }
298                                 }
299                         }
300                 }
301
302                 for ( i = 0; exattrs[i] != NULL; i++ ) ;
303
304                 if ( i != n )
305                         exattrs = (char **) ch_realloc( exattrs, (i + 1)*sizeof(char *) );
306         }
307
308         si->si_exattrs = exattrs;       
309 }
310
311 typedef struct logschema {
312         struct berval ls_dn;
313         struct berval ls_req;
314         struct berval ls_mod;
315         struct berval ls_newRdn;
316         struct berval ls_delRdn;
317         struct berval ls_newSup;
318 } logschema;
319
320 static logschema changelog_sc = {
321         BER_BVC("targetDN"),
322         BER_BVC("changeType"),
323         BER_BVC("changes"),
324         BER_BVC("newRDN"),
325         BER_BVC("deleteOldRDN"),
326         BER_BVC("newSuperior")
327 };
328
329 static logschema accesslog_sc = {
330         BER_BVC("reqDN"),
331         BER_BVC("reqType"),
332         BER_BVC("reqMod"),
333         BER_BVC("reqNewRDN"),
334         BER_BVC("reqDeleteOldRDN"),
335         BER_BVC("reqNewSuperior")
336 };
337
338 static int
339 ldap_sync_search(
340         syncinfo_t *si,
341         void *ctx )
342 {
343         BerElementBuffer berbuf;
344         BerElement *ber = (BerElement *)&berbuf;
345         LDAPControl c[2], *ctrls[3];
346         int rc;
347         int rhint;
348         char *base;
349         char **attrs, *lattrs[8];
350         char *filter;
351         int attrsonly;
352         int scope;
353
354         /* setup LDAP SYNC control */
355         ber_init2( ber, NULL, LBER_USE_DER );
356         ber_set_option( ber, LBER_OPT_BER_MEMCTX, &ctx );
357
358         /* If we're using a log but we have no state, then fallback to
359          * normal mode for a full refresh.
360          */
361         if ( si->si_syncdata && !si->si_syncCookie.numcsns ) {
362                 si->si_logstate = SYNCLOG_FALLBACK;
363         }
364
365         /* Use the log parameters if we're in log mode */
366         if ( si->si_syncdata && si->si_logstate == SYNCLOG_LOGGING ) {
367                 logschema *ls;
368                 if ( si->si_syncdata == SYNCDATA_ACCESSLOG )
369                         ls = &accesslog_sc;
370                 else
371                         ls = &changelog_sc;
372                 lattrs[0] = ls->ls_dn.bv_val;
373                 lattrs[1] = ls->ls_req.bv_val;
374                 lattrs[2] = ls->ls_mod.bv_val;
375                 lattrs[3] = ls->ls_newRdn.bv_val;
376                 lattrs[4] = ls->ls_delRdn.bv_val;
377                 lattrs[5] = ls->ls_newSup.bv_val;
378                 lattrs[6] = slap_schema.si_ad_entryCSN->ad_cname.bv_val;
379                 lattrs[7] = NULL;
380
381                 rhint = 0;
382                 base = si->si_logbase.bv_val;
383                 filter = si->si_logfilterstr.bv_val;
384                 attrs = lattrs;
385                 attrsonly = 0;
386                 scope = LDAP_SCOPE_SUBTREE;
387         } else {
388                 rhint = 1;
389                 base = si->si_base.bv_val;
390                 filter = si->si_filterstr.bv_val;
391                 attrs = si->si_attrs;
392                 attrsonly = si->si_attrsonly;
393                 scope = si->si_scope;
394         }
395         if ( si->si_syncdata && si->si_logstate == SYNCLOG_FALLBACK ) {
396                 si->si_type = LDAP_SYNC_REFRESH_ONLY;
397         } else {
398                 si->si_type = si->si_ctype;
399         }
400
401         if ( !BER_BVISNULL( &si->si_syncCookie.octet_str ) )
402         {
403                 ber_printf( ber, "{eOb}",
404                         abs(si->si_type), &si->si_syncCookie.octet_str, rhint );
405         } else {
406                 ber_printf( ber, "{eb}",
407                         abs(si->si_type), rhint );
408         }
409
410         if ( (rc = ber_flatten2( ber, &c[0].ldctl_value, 0 ) ) == LBER_ERROR ) {
411                 ber_free_buf( ber );
412                 return rc;
413         }
414
415         c[0].ldctl_oid = LDAP_CONTROL_SYNC;
416         c[0].ldctl_iscritical = si->si_type < 0;
417         ctrls[0] = &c[0];
418
419         if ( !BER_BVISNULL( &si->si_bindconf.sb_authzId ) ) {
420                 c[1].ldctl_oid = LDAP_CONTROL_PROXY_AUTHZ;
421                 c[1].ldctl_value = si->si_bindconf.sb_authzId;
422                 c[1].ldctl_iscritical = 1;
423                 ctrls[1] = &c[1];
424                 ctrls[2] = NULL;
425         } else {
426                 ctrls[1] = NULL;
427         }
428
429         rc = ldap_search_ext( si->si_ld, base, scope, filter, attrs, attrsonly,
430                 ctrls, NULL, NULL, si->si_slimit, &si->si_msgid );
431         ber_free_buf( ber );
432         return rc;
433 }
434
435 static int
436 check_syncprov(
437         Operation *op,
438         syncinfo_t *si )
439 {
440         AttributeName at[2];
441         Attribute a = {0};
442         Entry e = {0};
443         SlapReply rs = {0};
444         int i, j, changed = 0;
445
446         /* Look for contextCSN from syncprov overlay. If
447          * there's no overlay, this will be a no-op. That means
448          * this is a pure consumer, so local changes will not be
449          * allowed, and all changes will already be reflected in
450          * the cookieState.
451          */
452         a.a_desc = slap_schema.si_ad_contextCSN;
453         e.e_attrs = &a;
454         e.e_name = op->o_bd->be_suffix[0];
455         e.e_nname = op->o_bd->be_nsuffix[0];
456         at[0].an_name = a.a_desc->ad_cname;
457         at[0].an_desc = a.a_desc;
458         BER_BVZERO( &at[1].an_name );
459         rs.sr_entry = &e;
460         rs.sr_flags = REP_ENTRY_MODIFIABLE;
461         rs.sr_attrs = at;
462         op->o_req_dn = e.e_name;
463         op->o_req_ndn = e.e_nname;
464
465         ldap_pvt_thread_mutex_lock( &si->si_cookieState->cs_mutex );
466         i = backend_operational( op, &rs );
467         if ( i == LDAP_SUCCESS && a.a_nvals ) {
468                 int num = a.a_numvals;
469                 /* check for differences */
470                 if ( num != si->si_cookieState->cs_num ) {
471                         changed = 1;
472                 } else {
473                         for ( i=0; i<num; i++ ) {
474                                 if ( ber_bvcmp( &a.a_nvals[i],
475                                         &si->si_cookieState->cs_vals[i] )) {
476                                         changed =1;
477                                         break;
478                                 }
479                         }
480                 }
481                 if ( changed ) {
482                         ber_bvarray_free( si->si_cookieState->cs_vals );
483                         ch_free( si->si_cookieState->cs_sids );
484                         si->si_cookieState->cs_num = num;
485                         si->si_cookieState->cs_vals = a.a_nvals;
486                         si->si_cookieState->cs_sids = slap_parse_csn_sids( a.a_nvals,
487                                 num, NULL );
488                         si->si_cookieState->cs_age++;
489                 } else {
490                         ber_bvarray_free( a.a_nvals );
491                 }
492                 ber_bvarray_free( a.a_vals );
493         }
494         /* See if the cookieState has changed due to anything outside
495          * this particular consumer. That includes other consumers in
496          * the same context, or local changes detected above.
497          */
498         if ( si->si_cookieState->cs_num > 0 && si->si_cookieAge !=
499                 si->si_cookieState->cs_age ) {
500                 if ( !si->si_syncCookie.numcsns ) {
501                         ber_bvarray_free( si->si_syncCookie.ctxcsn );
502                         ber_bvarray_dup_x( &si->si_syncCookie.ctxcsn,
503                                 si->si_cookieState->cs_vals, NULL );
504                         changed = 1;
505                 } else {
506                         for (i=0; !BER_BVISNULL( &si->si_syncCookie.ctxcsn[i] ); i++) {
507                                 /* bogus, just dup everything */
508                                 if ( si->si_syncCookie.sids[i] == -1 ) {
509                                         ber_bvarray_free( si->si_syncCookie.ctxcsn );
510                                         ber_bvarray_dup_x( &si->si_syncCookie.ctxcsn,
511                                                 si->si_cookieState->cs_vals, NULL );
512                                         changed = 1;
513                                         break;
514                                 }
515                                 for (j=0; j<si->si_cookieState->cs_num; j++) {
516                                         if ( si->si_syncCookie.sids[i] !=
517                                                 si->si_cookieState->cs_sids[j] )
518                                                 continue;
519                                         if ( bvmatch( &si->si_syncCookie.ctxcsn[i],
520                                                 &si->si_cookieState->cs_vals[j] ))
521                                                 break;
522                                         ber_bvreplace( &si->si_syncCookie.ctxcsn[i],
523                                                 &si->si_cookieState->cs_vals[j] );
524                                         changed = 1;
525                                         break;
526                                 }
527                         }
528                 }
529         }
530         if ( changed ) {
531                 si->si_cookieAge = si->si_cookieState->cs_age;
532                 ch_free( si->si_syncCookie.octet_str.bv_val );
533                 slap_compose_sync_cookie( NULL, &si->si_syncCookie.octet_str,
534                         si->si_syncCookie.ctxcsn, si->si_syncCookie.rid,
535                         si->si_syncCookie.sid );
536         }
537         ldap_pvt_thread_mutex_unlock( &si->si_cookieState->cs_mutex );
538         return changed;
539 }
540
541 static int
542 do_syncrep1(
543         Operation *op,
544         syncinfo_t *si )
545 {
546         int     rc;
547         int cmdline_cookie_found = 0;
548
549         struct sync_cookie      *sc = NULL;
550 #ifdef HAVE_TLS
551         void    *ssl;
552 #endif
553
554         rc = slap_client_connect( &si->si_ld, &si->si_bindconf );
555         if ( rc != LDAP_SUCCESS ) {
556                 goto done;
557         }
558         op->o_protocol = LDAP_VERSION3;
559
560         /* Set SSF to strongest of TLS, SASL SSFs */
561         op->o_sasl_ssf = 0;
562         op->o_tls_ssf = 0;
563         op->o_transport_ssf = 0;
564 #ifdef HAVE_TLS
565         if ( ldap_get_option( si->si_ld, LDAP_OPT_X_TLS_SSL_CTX, &ssl )
566                 == LDAP_SUCCESS && ssl != NULL )
567         {
568                 op->o_tls_ssf = ldap_pvt_tls_get_strength( ssl );
569         }
570 #endif /* HAVE_TLS */
571         {
572                 ber_len_t ssf; /* ITS#5403, 3864 LDAP_OPT_X_SASL_SSF probably ought
573                                                   to use sasl_ssf_t but currently uses ber_len_t */
574                 ldap_get_option( si->si_ld, LDAP_OPT_X_SASL_SSF, &ssf );
575                 op->o_sasl_ssf = ssf;
576         }
577         op->o_ssf = ( op->o_sasl_ssf > op->o_tls_ssf )
578                 ?  op->o_sasl_ssf : op->o_tls_ssf;
579
580         ldap_set_option( si->si_ld, LDAP_OPT_TIMELIMIT, &si->si_tlimit );
581
582         rc = LDAP_DEREF_NEVER;  /* actually could allow DEREF_FINDING */
583         ldap_set_option( si->si_ld, LDAP_OPT_DEREF, &rc );
584
585         si->si_syncCookie.rid = si->si_rid;
586
587         /* whenever there are multiple data sources possible, advertise sid */
588         si->si_syncCookie.sid = ( SLAP_MULTIMASTER( si->si_be ) || si->si_be != si->si_wbe ) ?
589                 slap_serverID : -1;
590
591         /* We've just started up, or the remote server hasn't sent us
592          * any meaningful state.
593          */
594         if ( BER_BVISNULL( &si->si_syncCookie.octet_str ) ) {
595                 int i;
596
597                 LDAP_STAILQ_FOREACH( sc, &slap_sync_cookie, sc_next ) {
598                         if ( si->si_rid == sc->rid ) {
599                                 cmdline_cookie_found = 1;
600                                 break;
601                         }
602                 }
603
604                 if ( cmdline_cookie_found ) {
605                         /* cookie is supplied in the command line */
606
607                         LDAP_STAILQ_REMOVE( &slap_sync_cookie, sc, sync_cookie, sc_next );
608
609                         /* ctxcsn wasn't parsed yet, do it now */
610                         slap_parse_sync_cookie( sc, op->o_tmpmemctx );
611                         slap_sync_cookie_free( &si->si_syncCookie, 0 );
612                         slap_dup_sync_cookie( &si->si_syncCookie, sc );
613                         slap_sync_cookie_free( sc, 1 );
614                 } else {
615                         ldap_pvt_thread_mutex_lock( &si->si_cookieState->cs_mutex );
616                         if ( !si->si_cookieState->cs_num ) {
617                                 /* get contextCSN shadow replica from database */
618                                 BerVarray csn = NULL;
619                                 void *ctx = op->o_tmpmemctx;
620
621                                 op->o_req_ndn = op->o_bd->be_nsuffix[0];
622                                 op->o_req_dn = op->o_req_ndn;
623
624                                 /* try to read stored contextCSN */
625                                 op->o_tmpmemctx = NULL;
626                                 backend_attribute( op, NULL, &op->o_req_ndn,
627                                         slap_schema.si_ad_contextCSN, &csn, ACL_READ );
628                                 op->o_tmpmemctx = ctx;
629                                 if ( csn ) {
630                                         si->si_cookieState->cs_vals = csn;
631                                         for (i=0; !BER_BVISNULL( &csn[i] ); i++);
632                                         si->si_cookieState->cs_num = i;
633                                         si->si_cookieState->cs_sids = slap_parse_csn_sids( csn, i, NULL );
634                                 }
635                         }
636                         if ( si->si_cookieState->cs_num ) {
637                                 ber_bvarray_free( si->si_syncCookie.ctxcsn );
638                                 if ( ber_bvarray_dup_x( &si->si_syncCookie.ctxcsn,
639                                         si->si_cookieState->cs_vals, NULL )) {
640                                         rc = LDAP_NO_MEMORY;
641                                         ldap_pvt_thread_mutex_unlock( &si->si_cookieState->cs_mutex );
642                                         goto done;
643                                 }
644                                 si->si_syncCookie.numcsns = si->si_cookieState->cs_num;
645                                 si->si_syncCookie.sids = ch_malloc( si->si_cookieState->cs_num *
646                                         sizeof(int) );
647                                 for ( i=0; i<si->si_syncCookie.numcsns; i++ )
648                                         si->si_syncCookie.sids[i] = si->si_cookieState->cs_sids[i];
649                         }
650                         ldap_pvt_thread_mutex_unlock( &si->si_cookieState->cs_mutex );
651                 }
652
653                 slap_compose_sync_cookie( NULL, &si->si_syncCookie.octet_str,
654                         si->si_syncCookie.ctxcsn, si->si_syncCookie.rid,
655                         si->si_syncCookie.sid );
656         } else {
657                 /* Look for contextCSN from syncprov overlay. */
658                 check_syncprov( op, si );
659         }
660
661         si->si_refreshDone = 0;
662
663         rc = ldap_sync_search( si, op->o_tmpmemctx );
664
665         if( rc != LDAP_SUCCESS ) {
666                 Debug( LDAP_DEBUG_ANY, "do_syncrep1: %s "
667                         "ldap_search_ext: %s (%d)\n",
668                         si->si_ridtxt, ldap_err2string( rc ), rc );
669         }
670
671 done:
672         if ( rc ) {
673                 if ( si->si_ld ) {
674                         ldap_unbind_ext( si->si_ld, NULL, NULL );
675                         si->si_ld = NULL;
676                 }
677         }
678
679         return rc;
680 }
681
682 static int
683 compare_csns( struct sync_cookie *sc1, struct sync_cookie *sc2, int *which )
684 {
685         int i, j, match = 0;
686         const char *text;
687
688         *which = 0;
689
690         if ( sc1->numcsns < sc2->numcsns ) {
691                 *which = sc1->numcsns;
692                 return -1;
693         }
694
695         for (j=0; j<sc2->numcsns; j++) {
696                 for (i=0; i<sc1->numcsns; i++) {
697                         if ( sc1->sids[i] != sc2->sids[j] )
698                                 continue;
699                         value_match( &match, slap_schema.si_ad_entryCSN,
700                                 slap_schema.si_ad_entryCSN->ad_type->sat_ordering,
701                                 SLAP_MR_VALUE_OF_ATTRIBUTE_SYNTAX,
702                                 &sc1->ctxcsn[i], &sc2->ctxcsn[j], &text );
703                         if ( match < 0 ) {
704                                 *which = j;
705                                 return match;
706                         }
707                         break;
708                 }
709                 if ( i == sc1->numcsns ) {
710                         /* sc2 has a sid sc1 lacks */
711                         *which = j;
712                         return -1;
713                 }
714         }
715         return match;
716 }
717
718 #define SYNC_PAUSED     -3
719
720 static int
721 do_syncrep2(
722         Operation *op,
723         syncinfo_t *si )
724 {
725         LDAPControl     **rctrls = NULL;
726         LDAPControl     *rctrlp;
727
728         BerElementBuffer berbuf;
729         BerElement      *ber = (BerElement *)&berbuf;
730
731         LDAPMessage     *msg = NULL;
732
733         char            *retoid = NULL;
734         struct berval   *retdata = NULL;
735
736         Entry           *entry = NULL;
737
738         int             syncstate;
739         struct berval   syncUUID = BER_BVNULL;
740         struct sync_cookie      syncCookie = { NULL };
741         struct sync_cookie      syncCookie_req = { NULL };
742         struct berval           cookie = BER_BVNULL;
743
744         int             rc,
745                         err = LDAP_SUCCESS;
746         ber_len_t       len;
747
748         struct berval   *psub;
749         Modifications   *modlist = NULL;
750
751         int                             match, m;
752
753         struct timeval *tout_p = NULL;
754         struct timeval tout = { 0, 0 };
755
756         int             refreshDeletes = 0;
757         BerVarray syncUUIDs = NULL;
758         ber_tag_t si_tag;
759
760         if ( slapd_shutdown ) {
761                 rc = -2;
762                 goto done;
763         }
764
765         ber_init2( ber, NULL, LBER_USE_DER );
766         ber_set_option( ber, LBER_OPT_BER_MEMCTX, &op->o_tmpmemctx );
767
768         Debug( LDAP_DEBUG_TRACE, "=>do_syncrep2 %s\n", si->si_ridtxt, 0, 0 );
769
770         psub = &si->si_be->be_nsuffix[0];
771
772         slap_dup_sync_cookie( &syncCookie_req, &si->si_syncCookie );
773
774         if ( abs(si->si_type) == LDAP_SYNC_REFRESH_AND_PERSIST ) {
775                 tout_p = &tout;
776         } else {
777                 tout_p = NULL;
778         }
779
780         while ( ( rc = ldap_result( si->si_ld, si->si_msgid, LDAP_MSG_ONE,
781                 tout_p, &msg ) ) > 0 )
782         {
783                 if ( slapd_shutdown ) {
784                         rc = -2;
785                         goto done;
786                 }
787                 switch( ldap_msgtype( msg ) ) {
788                 case LDAP_RES_SEARCH_ENTRY:
789                         ldap_get_entry_controls( si->si_ld, msg, &rctrls );
790                         /* we can't work without the control */
791                         rctrlp = NULL;
792                         if ( rctrls ) {
793                                 LDAPControl **next;
794                                 /* NOTE: make sure we use the right one;
795                                  * a better approach would be to run thru
796                                  * the whole list and take care of all */
797                                 rctrlp = ldap_control_find( LDAP_CONTROL_SYNC_STATE, rctrls, &next );
798                                 if ( next && ldap_control_find( LDAP_CONTROL_SYNC_STATE, next, NULL ) )
799                                 {
800                                         Debug( LDAP_DEBUG_ANY, "do_syncrep2: %s "
801                                                 "got search entry with multiple "
802                                                 "Sync State control\n", si->si_ridtxt, 0, 0 );
803                                         rc = -1;
804                                         goto done;
805                                 }
806                         }
807                         if ( rctrlp == NULL ) {
808                                 Debug( LDAP_DEBUG_ANY, "do_syncrep2: %s "
809                                         "got search entry without "
810                                         "Sync State control\n", si->si_ridtxt, 0, 0 );
811                                 rc = -1;
812                                 goto done;
813                         }
814                         ber_init2( ber, &rctrlp->ldctl_value, LBER_USE_DER );
815                         ber_scanf( ber, "{em" /*"}"*/, &syncstate, &syncUUID );
816                         /* FIXME: what if syncUUID is NULL or empty?
817                          * (happens with back-sql...) */
818                         if ( BER_BVISEMPTY( &syncUUID ) ) {
819                                 Debug( LDAP_DEBUG_ANY, "do_syncrep2: %s "
820                                         "got empty syncUUID with LDAP_SYNC_%s\n",
821                                         si->si_ridtxt,
822                                         syncrepl_state2str( syncstate ), 0 );
823                                 ldap_controls_free( rctrls );
824                                 rc = -1;
825                                 goto done;
826                         }
827                         if ( ber_peek_tag( ber, &len ) == LDAP_TAG_SYNC_COOKIE ) {
828                                 ber_scanf( ber, /*"{"*/ "m}", &cookie );
829
830                                 Debug( LDAP_DEBUG_SYNC, "do_syncrep2: cookie=%s\n",
831                                         BER_BVISNULL( &cookie ) ? "" : cookie.bv_val, 0, 0 );
832
833                                 if ( !BER_BVISNULL( &cookie ) ) {
834                                         ch_free( syncCookie.octet_str.bv_val );
835                                         ber_dupbv( &syncCookie.octet_str, &cookie );
836                                 }
837                                 if ( !BER_BVISNULL( &syncCookie.octet_str ) )
838                                 {
839                                         slap_parse_sync_cookie( &syncCookie, NULL );
840                                         if ( syncCookie.ctxcsn ) {
841                                                 int i, sid = slap_parse_csn_sid( syncCookie.ctxcsn );
842                                                 for ( i =0; i<si->si_cookieState->cs_num; i++ ) {
843                                                         if ( si->si_cookieState->cs_sids[i] == sid && 
844                                                                 ber_bvcmp( syncCookie.ctxcsn, &si->si_cookieState->cs_vals[i] ) <= 0 ) {
845                                                                 Debug( LDAP_DEBUG_SYNC, "do_syncrep2: %s CSN too old, ignoring %s\n",
846                                                                         si->si_ridtxt, syncCookie.ctxcsn->bv_val, 0 );
847                                                                 ldap_controls_free( rctrls );
848                                                                 rc = 0;
849                                                                 goto done;
850                                                         }
851                                                 }
852                                         }
853                                 }
854                         }
855                         rc = 0;
856                         if ( si->si_syncdata && si->si_logstate == SYNCLOG_LOGGING ) {
857                                 modlist = NULL;
858                                 if ( ( rc = syncrepl_message_to_op( si, op, msg ) ) == LDAP_SUCCESS &&
859                                         syncCookie.ctxcsn )
860                                 {
861                                         rc = syncrepl_updateCookie( si, op, psub, &syncCookie );
862                                 } else switch ( rc ) {
863                                         case LDAP_ALREADY_EXISTS:
864                                         case LDAP_NO_SUCH_OBJECT:
865                                         case LDAP_NO_SUCH_ATTRIBUTE:
866                                         case LDAP_TYPE_OR_VALUE_EXISTS:
867                                                 rc = LDAP_SYNC_REFRESH_REQUIRED;
868                                                 si->si_logstate = SYNCLOG_FALLBACK;
869                                                 ldap_abandon_ext( si->si_ld, si->si_msgid, NULL, NULL );
870                                                 break;
871                                         default:
872                                                 break;
873                                 }
874                         } else if ( ( rc = syncrepl_message_to_entry( si, op, msg,
875                                 &modlist, &entry, syncstate ) ) == LDAP_SUCCESS )
876                         {
877                                 if ( ( rc = syncrepl_entry( si, op, entry, &modlist,
878                                         syncstate, &syncUUID, syncCookie.ctxcsn ) ) == LDAP_SUCCESS &&
879                                         syncCookie.ctxcsn )
880                                 {
881                                         rc = syncrepl_updateCookie( si, op, psub, &syncCookie );
882                                 }
883                         }
884                         ldap_controls_free( rctrls );
885                         if ( modlist ) {
886                                 slap_mods_free( modlist, 1 );
887                         }
888                         if ( rc )
889                                 goto done;
890                         break;
891
892                 case LDAP_RES_SEARCH_REFERENCE:
893                         Debug( LDAP_DEBUG_ANY,
894                                 "do_syncrep2: %s reference received error\n",
895                                 si->si_ridtxt, 0, 0 );
896                         break;
897
898                 case LDAP_RES_SEARCH_RESULT:
899                         Debug( LDAP_DEBUG_SYNC,
900                                 "do_syncrep2: %s LDAP_RES_SEARCH_RESULT\n",
901                                 si->si_ridtxt, 0, 0 );
902                         ldap_parse_result( si->si_ld, msg, &err, NULL, NULL, NULL,
903                                 &rctrls, 0 );
904 #ifdef LDAP_X_SYNC_REFRESH_REQUIRED
905                         if ( err == LDAP_X_SYNC_REFRESH_REQUIRED ) {
906                                 /* map old result code to registered code */
907                                 err = LDAP_SYNC_REFRESH_REQUIRED;
908                         }
909 #endif
910                         if ( err == LDAP_SYNC_REFRESH_REQUIRED ) {
911                                 if ( si->si_logstate == SYNCLOG_LOGGING ) {
912                                         si->si_logstate = SYNCLOG_FALLBACK;
913                                 }
914                                 rc = err;
915                                 goto done;
916                         }
917                         if ( err ) {
918                                 Debug( LDAP_DEBUG_ANY,
919                                         "do_syncrep2: %s LDAP_RES_SEARCH_RESULT (%d) %s\n",
920                                         si->si_ridtxt, err, ldap_err2string( err ) );
921                         }
922                         if ( rctrls ) {
923                                 rctrlp = *rctrls;
924                                 ber_init2( ber, &rctrlp->ldctl_value, LBER_USE_DER );
925
926                                 ber_scanf( ber, "{" /*"}"*/);
927                                 if ( ber_peek_tag( ber, &len ) == LDAP_TAG_SYNC_COOKIE ) {
928                                         ber_scanf( ber, "m", &cookie );
929
930                                         Debug( LDAP_DEBUG_SYNC, "do_syncrep2: cookie=%s\n",
931                                                 BER_BVISNULL( &cookie ) ? "" : cookie.bv_val, 0, 0 );
932
933                                         if ( !BER_BVISNULL( &cookie ) ) {
934                                                 ch_free( syncCookie.octet_str.bv_val );
935                                                 ber_dupbv( &syncCookie.octet_str, &cookie);
936                                         }
937                                         if ( !BER_BVISNULL( &syncCookie.octet_str ) )
938                                         {
939                                                 slap_parse_sync_cookie( &syncCookie, NULL );
940                                         }
941                                 }
942                                 if ( ber_peek_tag( ber, &len ) == LDAP_TAG_REFRESHDELETES )
943                                 {
944                                         ber_scanf( ber, "b", &refreshDeletes );
945                                 }
946                                 ber_scanf( ber, /*"{"*/ "}" );
947                         }
948                         if ( SLAP_MULTIMASTER( op->o_bd ) && check_syncprov( op, si )) {
949                                 slap_sync_cookie_free( &syncCookie_req, 0 );
950                                 slap_dup_sync_cookie( &syncCookie_req, &si->si_syncCookie );
951                         }
952                         if ( !syncCookie.ctxcsn ) {
953                                 match = 1;
954                         } else if ( !syncCookie_req.ctxcsn ) {
955                                 match = -1;
956                                 m = 0;
957                         } else {
958                                 match = compare_csns( &syncCookie_req, &syncCookie, &m );
959                         }
960                         if ( rctrls ) {
961                                 ldap_controls_free( rctrls );
962                         }
963                         if (si->si_type != LDAP_SYNC_REFRESH_AND_PERSIST) {
964                                 /* FIXME : different error behaviors according to
965                                  *      1) err code : LDAP_BUSY ...
966                                  *      2) on err policy : stop service, stop sync, retry
967                                  */
968                                 if ( refreshDeletes == 0 && match < 0 &&
969                                         err == LDAP_SUCCESS &&
970                                         syncCookie_req.numcsns == syncCookie.numcsns )
971                                 {
972                                         syncrepl_del_nonpresent( op, si, NULL,
973                                                 &syncCookie, m );
974                                 } else {
975                                         avl_free( si->si_presentlist, ch_free );
976                                         si->si_presentlist = NULL;
977                                 }
978                         }
979                         if ( syncCookie.ctxcsn && match < 0 && err == LDAP_SUCCESS )
980                         {
981                                 rc = syncrepl_updateCookie( si, op, psub, &syncCookie );
982                         }
983                         if ( err == LDAP_SUCCESS
984                                 && si->si_logstate == SYNCLOG_FALLBACK ) {
985                                 si->si_logstate = SYNCLOG_LOGGING;
986                                 rc = LDAP_SYNC_REFRESH_REQUIRED;
987                         } else {
988                                 rc = -2;
989                         }
990                         goto done;
991                         break;
992
993                 case LDAP_RES_INTERMEDIATE:
994                         rc = ldap_parse_intermediate( si->si_ld, msg,
995                                 &retoid, &retdata, NULL, 0 );
996                         if ( !rc && !strcmp( retoid, LDAP_SYNC_INFO ) ) {
997                                 ber_init2( ber, retdata, LBER_USE_DER );
998
999                                 switch ( si_tag = ber_peek_tag( ber, &len ) ) {
1000                                 ber_tag_t tag;
1001                                 case LDAP_TAG_SYNC_NEW_COOKIE:
1002                                         Debug( LDAP_DEBUG_SYNC,
1003                                                 "do_syncrep2: %s %s - %s\n", 
1004                                                 si->si_ridtxt,
1005                                                 "LDAP_RES_INTERMEDIATE", 
1006                                                 "NEW_COOKIE" );
1007                                         ber_scanf( ber, "tm", &tag, &cookie );
1008                                         break;
1009                                 case LDAP_TAG_SYNC_REFRESH_DELETE:
1010                                 case LDAP_TAG_SYNC_REFRESH_PRESENT:
1011                                         Debug( LDAP_DEBUG_SYNC,
1012                                                 "do_syncrep2: %s %s - %s\n", 
1013                                                 si->si_ridtxt,
1014                                                 "LDAP_RES_INTERMEDIATE", 
1015                                                 si_tag == LDAP_TAG_SYNC_REFRESH_PRESENT ?
1016                                                 "REFRESH_PRESENT" : "REFRESH_DELETE" );
1017                                         if ( si_tag == LDAP_TAG_SYNC_REFRESH_DELETE ) {
1018                                                 si->si_refreshDelete = 1;
1019                                         } else {
1020                                                 si->si_refreshPresent = 1;
1021                                         }
1022                                         ber_scanf( ber, "t{" /*"}"*/, &tag );
1023                                         if ( ber_peek_tag( ber, &len ) == LDAP_TAG_SYNC_COOKIE )
1024                                         {
1025                                                 ber_scanf( ber, "m", &cookie );
1026
1027                                                 Debug( LDAP_DEBUG_SYNC, "do_syncrep2: cookie=%s\n",
1028                                                         BER_BVISNULL( &cookie ) ? "" : cookie.bv_val, 0, 0 );
1029
1030                                                 if ( !BER_BVISNULL( &cookie ) ) {
1031                                                         ch_free( syncCookie.octet_str.bv_val );
1032                                                         ber_dupbv( &syncCookie.octet_str, &cookie );
1033                                                 }
1034                                                 if ( !BER_BVISNULL( &syncCookie.octet_str ) )
1035                                                 {
1036                                                         slap_parse_sync_cookie( &syncCookie, NULL );
1037                                                 }
1038                                         }
1039                                         /* Defaults to TRUE */
1040                                         if ( ber_peek_tag( ber, &len ) ==
1041                                                 LDAP_TAG_REFRESHDONE )
1042                                         {
1043                                                 ber_scanf( ber, "b", &si->si_refreshDone );
1044                                         } else
1045                                         {
1046                                                 si->si_refreshDone = 1;
1047                                         }
1048                                         ber_scanf( ber, /*"{"*/ "}" );
1049                                         break;
1050                                 case LDAP_TAG_SYNC_ID_SET:
1051                                         Debug( LDAP_DEBUG_SYNC,
1052                                                 "do_syncrep2: %s %s - %s\n", 
1053                                                 si->si_ridtxt,
1054                                                 "LDAP_RES_INTERMEDIATE", 
1055                                                 "SYNC_ID_SET" );
1056                                         ber_scanf( ber, "t{" /*"}"*/, &tag );
1057                                         if ( ber_peek_tag( ber, &len ) ==
1058                                                 LDAP_TAG_SYNC_COOKIE )
1059                                         {
1060                                                 ber_scanf( ber, "m", &cookie );
1061
1062                                                 Debug( LDAP_DEBUG_SYNC, "do_syncrep2: cookie=%s\n",
1063                                                         BER_BVISNULL( &cookie ) ? "" : cookie.bv_val, 0, 0 );
1064
1065                                                 if ( !BER_BVISNULL( &cookie ) ) {
1066                                                         ch_free( syncCookie.octet_str.bv_val );
1067                                                         ber_dupbv( &syncCookie.octet_str, &cookie );
1068                                                 }
1069                                                 if ( !BER_BVISNULL( &syncCookie.octet_str ) )
1070                                                 {
1071                                                         slap_parse_sync_cookie( &syncCookie, NULL );
1072                                                         compare_csns( &syncCookie_req, &syncCookie, &m );
1073                                                 }
1074                                         }
1075                                         if ( ber_peek_tag( ber, &len ) ==
1076                                                 LDAP_TAG_REFRESHDELETES )
1077                                         {
1078                                                 ber_scanf( ber, "b", &refreshDeletes );
1079                                         }
1080                                         ber_scanf( ber, "[W]", &syncUUIDs );
1081                                         ber_scanf( ber, /*"{"*/ "}" );
1082                                         if ( refreshDeletes ) {
1083                                                 syncrepl_del_nonpresent( op, si, syncUUIDs,
1084                                                         &syncCookie, m );
1085                                                 ber_bvarray_free_x( syncUUIDs, op->o_tmpmemctx );
1086                                         } else {
1087                                                 int i;
1088                                                 for ( i = 0; !BER_BVISNULL( &syncUUIDs[i] ); i++ ) {
1089                                                         (void)avl_presentlist_insert( si, &syncUUIDs[i] );
1090                                                         slap_sl_free( syncUUIDs[i].bv_val, op->o_tmpmemctx );
1091                                                 }
1092                                                 slap_sl_free( syncUUIDs, op->o_tmpmemctx );
1093                                         }
1094                                         slap_sync_cookie_free( &syncCookie, 0 );
1095                                         break;
1096                                 default:
1097                                         Debug( LDAP_DEBUG_ANY,
1098                                                 "do_syncrep2: %s unknown syncinfo tag (%ld)\n",
1099                                                 si->si_ridtxt, (long) si_tag, 0 );
1100                                         ldap_memfree( retoid );
1101                                         ber_bvfree( retdata );
1102                                         continue;
1103                                 }
1104
1105                                 if ( SLAP_MULTIMASTER( op->o_bd ) && check_syncprov( op, si )) {
1106                                         slap_sync_cookie_free( &syncCookie_req, 0 );
1107                                         slap_dup_sync_cookie( &syncCookie_req, &si->si_syncCookie );
1108                                 }
1109                                 if ( !syncCookie.ctxcsn ) {
1110                                         match = 1;
1111                                 } else if ( !syncCookie_req.ctxcsn ) {
1112                                         match = -1;
1113                                         m = 0;
1114                                 } else {
1115                                         match = compare_csns( &syncCookie_req, &syncCookie, &m );
1116                                 }
1117
1118                                 if ( match < 0 ) {
1119                                         if ( si->si_refreshPresent == 1 &&
1120                                                 syncCookie_req.numcsns == syncCookie.numcsns ) {
1121                                                 syncrepl_del_nonpresent( op, si, NULL,
1122                                                         &syncCookie, m );
1123                                         }
1124
1125                                         if ( syncCookie.ctxcsn )
1126                                         {
1127                                                 rc = syncrepl_updateCookie( si, op, psub, &syncCookie);
1128                                         }
1129                                 } 
1130
1131                                 ldap_memfree( retoid );
1132                                 ber_bvfree( retdata );
1133                                 break;
1134
1135                         } else {
1136                                 Debug( LDAP_DEBUG_ANY, "do_syncrep2: %s "
1137                                         "unknown intermediate response (%d)\n",
1138                                         si->si_ridtxt, rc, 0 );
1139                                 ldap_memfree( retoid );
1140                                 ber_bvfree( retdata );
1141                                 break;
1142                         }
1143                         break;
1144
1145                 default:
1146                         Debug( LDAP_DEBUG_ANY, "do_syncrep2: %s "
1147                                 "unknown message (0x%02lx)\n",
1148                                 si->si_ridtxt,
1149                                 (unsigned long)ldap_msgtype( msg ), 0 );
1150                         break;
1151
1152                 }
1153                 if ( !BER_BVISNULL( &syncCookie.octet_str ) ) {
1154                         slap_sync_cookie_free( &syncCookie_req, 0 );
1155                         slap_dup_sync_cookie( &syncCookie_req, &syncCookie );
1156                         slap_sync_cookie_free( &syncCookie, 0 );
1157                 }
1158                 ldap_msgfree( msg );
1159                 msg = NULL;
1160                 if ( ldap_pvt_thread_pool_pausing( &connection_pool )) {
1161                         slap_sync_cookie_free( &syncCookie, 0 );
1162                         slap_sync_cookie_free( &syncCookie_req, 0 );
1163                         return SYNC_PAUSED;
1164                 }
1165         }
1166
1167         if ( rc == -1 ) {
1168                 ldap_get_option( si->si_ld, LDAP_OPT_ERROR_NUMBER, &rc );
1169                 err = rc;
1170         }
1171
1172 done:
1173         if ( err != LDAP_SUCCESS ) {
1174                 Debug( LDAP_DEBUG_ANY,
1175                         "do_syncrep2: %s (%d) %s\n",
1176                         si->si_ridtxt, err, ldap_err2string( err ) );
1177         }
1178
1179         slap_sync_cookie_free( &syncCookie, 0 );
1180         slap_sync_cookie_free( &syncCookie_req, 0 );
1181
1182         if ( msg ) ldap_msgfree( msg );
1183
1184         if ( rc && rc != LDAP_SYNC_REFRESH_REQUIRED && si->si_ld ) {
1185                 if ( si->si_conn ) {
1186                         connection_client_stop( si->si_conn );
1187                         si->si_conn = NULL;
1188                 }
1189                 ldap_unbind_ext( si->si_ld, NULL, NULL );
1190                 si->si_ld = NULL;
1191         }
1192
1193         return rc;
1194 }
1195
1196 static void *
1197 do_syncrepl(
1198         void    *ctx,
1199         void    *arg )
1200 {
1201         struct re_s* rtask = arg;
1202         syncinfo_t *si = ( syncinfo_t * ) rtask->arg;
1203         Connection conn = {0};
1204         OperationBuffer opbuf;
1205         Operation *op;
1206         int rc = LDAP_SUCCESS;
1207         int dostop = 0, do_setup = 0;
1208         ber_socket_t s;
1209         int i, defer = 1, fail = 0;
1210         Backend *be;
1211
1212         Debug( LDAP_DEBUG_TRACE, "=>do_syncrepl %s\n", si->si_ridtxt, 0, 0 );
1213
1214         if ( si == NULL )
1215                 return NULL;
1216
1217         /* There will never be more than one instance active */
1218         ldap_pvt_thread_mutex_lock( &si->si_mutex );
1219
1220         switch( abs( si->si_type ) ) {
1221         case LDAP_SYNC_REFRESH_ONLY:
1222         case LDAP_SYNC_REFRESH_AND_PERSIST:
1223                 break;
1224         default:
1225                 ldap_pvt_thread_mutex_unlock( &si->si_mutex );
1226                 return NULL;
1227         }
1228
1229         if ( slapd_shutdown ) {
1230                 if ( si->si_ld ) {
1231                         if ( si->si_conn ) {
1232                                 connection_client_stop( si->si_conn );
1233                                 si->si_conn = NULL;
1234                         }
1235                         ldap_unbind_ext( si->si_ld, NULL, NULL );
1236                         si->si_ld = NULL;
1237                 }
1238                 ldap_pvt_thread_mutex_unlock( &si->si_mutex );
1239                 return NULL;
1240         }
1241
1242         connection_fake_init( &conn, &opbuf, ctx );
1243         op = &opbuf.ob_op;
1244
1245         /* use global malloc for now */
1246         op->o_tmpmemctx = NULL;
1247         op->o_tmpmfuncs = &ch_mfuncs;
1248
1249         op->o_managedsait = SLAP_CONTROL_NONCRITICAL;
1250         be = si->si_be;
1251
1252         /* Coordinate contextCSN updates with any syncprov overlays
1253          * in use. This may be complicated by the use of the glue
1254          * overlay.
1255          *
1256          * Typically there is a single syncprov mastering the entire
1257          * glued tree. In that case, our contextCSN updates should
1258          * go to the master DB. But if there is no syncprov on the
1259          * master DB, then nothing special is needed here.
1260          *
1261          * Alternatively, there may be individual syncprov overlays
1262          * on each glued branch. In that case, each syncprov only
1263          * knows about changes within its own branch. And so our
1264          * contextCSN updates should only go to the local DB.
1265          */
1266         if ( !si->si_wbe ) {
1267                 if ( SLAP_GLUE_SUBORDINATE( be ) && !overlay_is_inst( be, "syncprov" )) {
1268                         BackendDB * top_be = select_backend( &be->be_nsuffix[0], 1 );
1269                         if ( overlay_is_inst( top_be, "syncprov" ))
1270                                 si->si_wbe = select_backend( &be->be_nsuffix[0], 1 );
1271                         else
1272                                 si->si_wbe = be;
1273                 } else {
1274                         si->si_wbe = be;
1275                 }
1276         }
1277         if ( !si->si_schemachecking )
1278                 op->o_no_schema_check = 1;
1279
1280         /* Establish session, do search */
1281         if ( !si->si_ld ) {
1282                 si->si_refreshDelete = 0;
1283                 si->si_refreshPresent = 0;
1284
1285                 /* use main DB when retrieving contextCSN */
1286                 op->o_bd = si->si_wbe;
1287                 op->o_dn = op->o_bd->be_rootdn;
1288                 op->o_ndn = op->o_bd->be_rootndn;
1289                 rc = do_syncrep1( op, si );
1290         }
1291
1292 reload:
1293         /* Process results */
1294         if ( rc == LDAP_SUCCESS ) {
1295                 ldap_get_option( si->si_ld, LDAP_OPT_DESC, &s );
1296
1297                 /* use current DB */
1298                 op->o_bd = be;
1299                 op->o_dn = op->o_bd->be_rootdn;
1300                 op->o_ndn = op->o_bd->be_rootndn;
1301                 rc = do_syncrep2( op, si );
1302                 if ( rc == LDAP_SYNC_REFRESH_REQUIRED ) {
1303                         rc = ldap_sync_search( si, op->o_tmpmemctx );
1304                         goto reload;
1305                 }
1306
1307                 /* We got deleted while running on cn=config */
1308                 if ( !si->si_ctype ) {
1309                         if ( si->si_conn )
1310                                 dostop = 1;
1311                         rc = -1;
1312                 }
1313
1314                 if ( rc != SYNC_PAUSED ) {
1315                         if ( abs(si->si_type) == LDAP_SYNC_REFRESH_AND_PERSIST ) {
1316                                 /* If we succeeded, enable the connection for further listening.
1317                                  * If we failed, tear down the connection and reschedule.
1318                                  */
1319                                 if ( rc == LDAP_SUCCESS ) {
1320                                         if ( si->si_conn ) {
1321                                                 connection_client_enable( si->si_conn );
1322                                                 goto success;
1323                                         } else {
1324                                                 do_setup = 1;
1325                                         } 
1326                                 } else if ( si->si_conn ) {
1327                                         dostop = 1;
1328                                 }
1329                         } else {
1330                                 if ( rc == -2 ) rc = 0;
1331                         }
1332                 }
1333         }
1334
1335         /* At this point, we have 5 cases:
1336          * 1) for any hard failure, give up and remove this task
1337          * 2) for ServerDown, reschedule this task to run later
1338          * 3) for threadpool pause, reschedule to run immediately
1339          * 4) for Refresh and Success, reschedule to run
1340          * 5) for Persist and Success, reschedule to defer
1341          */
1342         ldap_pvt_thread_mutex_lock( &slapd_rq.rq_mutex );
1343
1344         if ( ldap_pvt_runqueue_isrunning( &slapd_rq, rtask ) ) {
1345                 ldap_pvt_runqueue_stoptask( &slapd_rq, rtask );
1346         }
1347
1348         if ( dostop ) {
1349                 connection_client_stop( si->si_conn );
1350                 si->si_conn = NULL;
1351         }
1352
1353         if ( rc == SYNC_PAUSED ) {
1354                 rtask->interval.tv_sec = 0;
1355                 ldap_pvt_runqueue_resched( &slapd_rq, rtask, 0 );
1356                 rc = 0;
1357         } else if ( rc == LDAP_SUCCESS ) {
1358                 if ( si->si_type == LDAP_SYNC_REFRESH_ONLY ) {
1359                         defer = 0;
1360                 }
1361                 rtask->interval.tv_sec = si->si_interval;
1362                 ldap_pvt_runqueue_resched( &slapd_rq, rtask, defer );
1363                 if ( si->si_retrynum ) {
1364                         for ( i = 0; si->si_retrynum_init[i] != RETRYNUM_TAIL; i++ ) {
1365                                 si->si_retrynum[i] = si->si_retrynum_init[i];
1366                         }
1367                         si->si_retrynum[i] = RETRYNUM_TAIL;
1368                 }
1369         } else {
1370                 for ( i = 0; si->si_retrynum && si->si_retrynum[i] <= 0; i++ ) {
1371                         if ( si->si_retrynum[i] == RETRYNUM_FOREVER || si->si_retrynum[i] == RETRYNUM_TAIL )
1372                                 break;
1373                 }
1374
1375                 if ( !si->si_ctype
1376                         || !si->si_retrynum || si->si_retrynum[i] == RETRYNUM_TAIL ) {
1377                         ldap_pvt_runqueue_remove( &slapd_rq, rtask );
1378                         fail = RETRYNUM_TAIL;
1379                 } else if ( RETRYNUM_VALID( si->si_retrynum[i] ) ) {
1380                         if ( si->si_retrynum[i] > 0 )
1381                                 si->si_retrynum[i]--;
1382                         fail = si->si_retrynum[i];
1383                         rtask->interval.tv_sec = si->si_retryinterval[i];
1384                         ldap_pvt_runqueue_resched( &slapd_rq, rtask, 0 );
1385                         slap_wake_listener();
1386                 }
1387         }
1388
1389         ldap_pvt_thread_mutex_unlock( &slapd_rq.rq_mutex );
1390
1391         if ( do_setup )
1392                 si->si_conn = connection_client_setup( s, do_syncrepl, arg );
1393
1394 success:
1395         ldap_pvt_thread_mutex_unlock( &si->si_mutex );
1396
1397         if ( rc ) {
1398                 if ( fail == RETRYNUM_TAIL ) {
1399                         Debug( LDAP_DEBUG_ANY,
1400                                 "do_syncrepl: %s quitting\n",
1401                                 si->si_ridtxt, 0, 0 );
1402                 } else if ( fail > 0 ) {
1403                         Debug( LDAP_DEBUG_ANY,
1404                                 "do_syncrepl: %s retrying (%d retries left)\n",
1405                                 si->si_ridtxt, fail, 0 );
1406                 } else {
1407                         Debug( LDAP_DEBUG_ANY,
1408                                 "do_syncrepl: %s retrying\n",
1409                                 si->si_ridtxt, 0, 0 );
1410                 }
1411         }
1412
1413         /* Do final delete cleanup */
1414         if ( !si->si_ctype ) {
1415                 cookie_state *cs = NULL;
1416                 syncinfo_t **sip;
1417
1418                 cs = be->be_syncinfo->si_cookieState;
1419                 for ( sip = &be->be_syncinfo; *sip != si; sip = &(*sip)->si_next );
1420                 *sip = si->si_next;
1421                 syncinfo_free( si, 0 );
1422                 if ( !be->be_syncinfo ) {
1423                         SLAP_DBFLAGS( be ) &= ~(SLAP_DBFLAG_SHADOW|SLAP_DBFLAG_SYNC_SHADOW);
1424                         if ( cs ) {
1425                                 ch_free( cs->cs_sids );
1426                                 ber_bvarray_free( cs->cs_vals );
1427                                 ldap_pvt_thread_mutex_destroy( &cs->cs_mutex );
1428                                 ch_free( cs );
1429                         }
1430                 }
1431         }
1432         return NULL;
1433 }
1434
1435 static slap_verbmasks modops[] = {
1436         { BER_BVC("add"), LDAP_REQ_ADD },
1437         { BER_BVC("delete"), LDAP_REQ_DELETE },
1438         { BER_BVC("modify"), LDAP_REQ_MODIFY },
1439         { BER_BVC("modrdn"), LDAP_REQ_MODRDN},
1440         { BER_BVNULL, 0 }
1441 };
1442
1443 static Modifications *
1444 syncrepl_accesslog_mods(
1445         syncinfo_t *si,
1446         struct berval *vals
1447 )
1448 {
1449         char *colon;
1450         const char *text;
1451         AttributeDescription *ad;
1452         struct berval bv, bv2;
1453         short op;
1454         Modifications *mod = NULL, *modlist = NULL, **modtail;
1455         int i;
1456
1457         modtail = &modlist;
1458
1459         for (i=0; !BER_BVISNULL( &vals[i] ); i++) {
1460                 ad = NULL;
1461                 bv = vals[i];
1462
1463                 colon = ber_bvchr( &bv, ':' );
1464                 if ( !colon ) {
1465                         /* Invalid */
1466                         continue;
1467                 }
1468
1469                 bv.bv_len = colon - bv.bv_val;
1470                 if ( slap_bv2ad( &bv, &ad, &text ) ) {
1471                         /* Invalid */
1472                         continue;
1473                 }
1474
1475                 /* Ignore dynamically generated attrs */
1476                 if ( ad->ad_type->sat_flags & SLAP_AT_DYNAMIC ) {
1477                         continue;
1478                 }
1479
1480                 /* Ignore excluded attrs */
1481                 if ( ldap_charray_inlist( si->si_exattrs,
1482                         ad->ad_type->sat_cname.bv_val ) )
1483                 {
1484                         continue;
1485                 }
1486
1487                 switch(colon[1]) {
1488                 case '+':       op = LDAP_MOD_ADD; break;
1489                 case '-':       op = LDAP_MOD_DELETE; break;
1490                 case '=':       op = LDAP_MOD_REPLACE; break;
1491                 case '#':       op = LDAP_MOD_INCREMENT; break;
1492                 default:        continue;
1493                 }
1494
1495                 if ( !mod || ad != mod->sml_desc || op != mod->sml_op ) {
1496                         mod = (Modifications *) ch_malloc( sizeof( Modifications ) );
1497                         mod->sml_flags = 0;
1498                         mod->sml_op = op;
1499                         mod->sml_next = NULL;
1500                         mod->sml_desc = ad;
1501                         mod->sml_type = ad->ad_cname;
1502                         mod->sml_values = NULL;
1503                         mod->sml_nvalues = NULL;
1504                         mod->sml_numvals = 0;
1505
1506                         *modtail = mod;
1507                         modtail = &mod->sml_next;
1508                 }
1509                 if ( colon[2] == ' ' ) {
1510                         bv.bv_val = colon + 3;
1511                         bv.bv_len = vals[i].bv_len - ( bv.bv_val - vals[i].bv_val );
1512                         ber_dupbv( &bv2, &bv );
1513                         ber_bvarray_add( &mod->sml_values, &bv2 );
1514                         mod->sml_numvals++;
1515                 }
1516         }
1517         return modlist;
1518 }
1519
1520 static Modifications *
1521 syncrepl_changelog_mods(
1522         syncinfo_t *si,
1523         struct berval *vals
1524 )
1525 {
1526         return NULL;    /* FIXME */
1527 }
1528
1529 static int
1530 syncrepl_message_to_op(
1531         syncinfo_t      *si,
1532         Operation       *op,
1533         LDAPMessage     *msg
1534 )
1535 {
1536         BerElement      *ber = NULL;
1537         Modifications   *modlist = NULL;
1538         logschema *ls;
1539         SlapReply rs = { REP_RESULT };
1540         slap_callback cb = { NULL, null_callback, NULL, NULL };
1541
1542         const char      *text;
1543         char txtbuf[SLAP_TEXT_BUFLEN];
1544         size_t textlen = sizeof txtbuf;
1545
1546         struct berval   bdn, dn = BER_BVNULL, ndn;
1547         struct berval   bv, *bvals = NULL;
1548         struct berval   rdn = BER_BVNULL, sup = BER_BVNULL,
1549                 prdn = BER_BVNULL, nrdn = BER_BVNULL,
1550                 psup = BER_BVNULL, nsup = BER_BVNULL;
1551         int             rc, deleteOldRdn = 0, freeReqDn = 0;
1552
1553         if ( ldap_msgtype( msg ) != LDAP_RES_SEARCH_ENTRY ) {
1554                 Debug( LDAP_DEBUG_ANY, "syncrepl_message_to_op: %s "
1555                         "Message type should be entry (%d)",
1556                         si->si_ridtxt, ldap_msgtype( msg ), 0 );
1557                 return -1;
1558         }
1559
1560         if ( si->si_syncdata == SYNCDATA_ACCESSLOG )
1561                 ls = &accesslog_sc;
1562         else
1563                 ls = &changelog_sc;
1564
1565         rc = ldap_get_dn_ber( si->si_ld, msg, &ber, &bdn );
1566
1567         if ( rc != LDAP_SUCCESS ) {
1568                 Debug( LDAP_DEBUG_ANY,
1569                         "syncrepl_message_to_op: %s dn get failed (%d)",
1570                         si->si_ridtxt, rc, 0 );
1571                 return rc;
1572         }
1573
1574         op->o_tag = LBER_DEFAULT;
1575         op->o_bd = si->si_wbe;
1576
1577         while (( rc = ldap_get_attribute_ber( si->si_ld, msg, ber, &bv, &bvals ) )
1578                 == LDAP_SUCCESS ) {
1579                 if ( bv.bv_val == NULL )
1580                         break;
1581
1582                 if ( !ber_bvstrcasecmp( &bv, &ls->ls_dn ) ) {
1583                         bdn = bvals[0];
1584                         dnPrettyNormal( NULL, &bdn, &dn, &ndn, op->o_tmpmemctx );
1585                         ber_dupbv( &op->o_req_dn, &dn );
1586                         ber_dupbv( &op->o_req_ndn, &ndn );
1587                         slap_sl_free( ndn.bv_val, op->o_tmpmemctx );
1588                         slap_sl_free( dn.bv_val, op->o_tmpmemctx );
1589                         freeReqDn = 1;
1590                 } else if ( !ber_bvstrcasecmp( &bv, &ls->ls_req ) ) {
1591                         int i = verb_to_mask( bvals[0].bv_val, modops );
1592                         if ( i < 0 ) {
1593                                 Debug( LDAP_DEBUG_ANY,
1594                                         "syncrepl_message_to_op: %s unknown op %s",
1595                                         si->si_ridtxt, bvals[0].bv_val, 0 );
1596                                 ch_free( bvals );
1597                                 rc = -1;
1598                                 goto done;
1599                         }
1600                         op->o_tag = modops[i].mask;
1601                 } else if ( !ber_bvstrcasecmp( &bv, &ls->ls_mod ) ) {
1602                         /* Parse attribute into modlist */
1603                         if ( si->si_syncdata == SYNCDATA_ACCESSLOG ) {
1604                                 modlist = syncrepl_accesslog_mods( si, bvals );
1605                         } else {
1606                                 modlist = syncrepl_changelog_mods( si, bvals );
1607                         }
1608                 } else if ( !ber_bvstrcasecmp( &bv, &ls->ls_newRdn ) ) {
1609                         rdn = bvals[0];
1610                 } else if ( !ber_bvstrcasecmp( &bv, &ls->ls_delRdn ) ) {
1611                         if ( !ber_bvstrcasecmp( &slap_true_bv, bvals ) ) {
1612                                 deleteOldRdn = 1;
1613                         }
1614                 } else if ( !ber_bvstrcasecmp( &bv, &ls->ls_newSup ) ) {
1615                         sup = bvals[0];
1616                 } else if ( !ber_bvstrcasecmp( &bv,
1617                         &slap_schema.si_ad_entryCSN->ad_cname ) )
1618                 {
1619                         slap_queue_csn( op, bvals );
1620                 }
1621                 ch_free( bvals );
1622         }
1623
1624         /* If we didn't get a mod type or a target DN, bail out */
1625         if ( op->o_tag == LBER_DEFAULT || BER_BVISNULL( &dn ) ) {
1626                 rc = -1;
1627                 goto done;
1628         }
1629
1630         op->o_callback = &cb;
1631         slap_op_time( &op->o_time, &op->o_tincr );
1632
1633         switch( op->o_tag ) {
1634         case LDAP_REQ_ADD:
1635         case LDAP_REQ_MODIFY:
1636                 /* If we didn't get required data, bail */
1637                 if ( !modlist ) goto done;
1638
1639                 rc = slap_mods_check( op, modlist, &text, txtbuf, textlen, NULL );
1640
1641                 if ( rc != LDAP_SUCCESS ) {
1642                         Debug( LDAP_DEBUG_ANY, "syncrepl_message_to_op: %s "
1643                                 "mods check (%s)\n",
1644                                 si->si_ridtxt, text, 0 );
1645                         goto done;
1646                 }
1647
1648                 if ( op->o_tag == LDAP_REQ_ADD ) {
1649                         Entry *e = entry_alloc();
1650                         op->ora_e = e;
1651                         op->ora_e->e_name = op->o_req_dn;
1652                         op->ora_e->e_nname = op->o_req_ndn;
1653                         freeReqDn = 0;
1654                         rc = slap_mods2entry( modlist, &op->ora_e, 1, 0, &text, txtbuf, textlen);
1655                         if( rc != LDAP_SUCCESS ) {
1656                                 Debug( LDAP_DEBUG_ANY, "syncrepl_message_to_op: %s "
1657                                 "mods2entry (%s)\n",
1658                                         si->si_ridtxt, text, 0 );
1659                         } else {
1660                                 rc = op->o_bd->be_add( op, &rs );
1661                                 Debug( LDAP_DEBUG_SYNC,
1662                                         "syncrepl_message_to_op: %s be_add %s (%d)\n", 
1663                                         si->si_ridtxt, op->o_req_dn.bv_val, rc );
1664                         }
1665                         if ( e == op->ora_e )
1666                                 be_entry_release_w( op, op->ora_e );
1667                 } else {
1668                         op->orm_modlist = modlist;
1669                         op->o_bd = si->si_wbe;
1670                         rc = op->o_bd->be_modify( op, &rs );
1671                         modlist = op->orm_modlist;
1672                         Debug( rc ? LDAP_DEBUG_ANY : LDAP_DEBUG_SYNC,
1673                                 "syncrepl_message_to_op: %s be_modify %s (%d)\n", 
1674                                 si->si_ridtxt, op->o_req_dn.bv_val, rc );
1675                         op->o_bd = si->si_be;
1676                 }
1677                 break;
1678         case LDAP_REQ_MODRDN:
1679                 if ( BER_BVISNULL( &rdn ) ) goto done;
1680
1681                 if ( rdnPretty( NULL, &rdn, &prdn, NULL ) ) {
1682                         goto done;
1683                 }
1684                 if ( rdnNormalize( 0, NULL, NULL, &rdn, &nrdn, NULL ) ) {
1685                         goto done;
1686                 }
1687                 if ( !BER_BVISNULL( &sup ) ) {
1688                         if ( dnPrettyNormal( NULL, &sup, &psup, &nsup, NULL ) ) {
1689                                 goto done;
1690                         }
1691                         op->orr_newSup = &psup;
1692                         op->orr_nnewSup = &nsup;
1693                 } else {
1694                         op->orr_newSup = NULL;
1695                         op->orr_nnewSup = NULL;
1696                 }
1697                 op->orr_newrdn = prdn;
1698                 op->orr_nnewrdn = nrdn;
1699                 op->orr_deleteoldrdn = deleteOldRdn;
1700                 op->orr_modlist = NULL;
1701                 if ( slap_modrdn2mods( op, &rs ) ) {
1702                         goto done;
1703                 }
1704
1705                 /* Append modlist for operational attrs */
1706                 {
1707                         Modifications *m;
1708
1709                         for ( m = op->orr_modlist; m->sml_next; m = m->sml_next )
1710                                 ;
1711                         m->sml_next = modlist;
1712                         modlist = NULL;
1713                 }
1714                 rc = op->o_bd->be_modrdn( op, &rs );
1715                 slap_mods_free( op->orr_modlist, 1 );
1716                 Debug( rc ? LDAP_DEBUG_ANY : LDAP_DEBUG_SYNC,
1717                         "syncrepl_message_to_op: %s be_modrdn %s (%d)\n", 
1718                         si->si_ridtxt, op->o_req_dn.bv_val, rc );
1719                 break;
1720         case LDAP_REQ_DELETE:
1721                 rc = op->o_bd->be_delete( op, &rs );
1722                 Debug( rc ? LDAP_DEBUG_ANY : LDAP_DEBUG_SYNC,
1723                         "syncrepl_message_to_op: %s be_delete %s (%d)\n", 
1724                         si->si_ridtxt, op->o_req_dn.bv_val, rc );
1725                 break;
1726         }
1727 done:
1728         slap_graduate_commit_csn( op );
1729         op->o_bd = si->si_be;
1730         op->o_tmpfree( op->o_csn.bv_val, op->o_tmpmemctx );
1731         BER_BVZERO( &op->o_csn );
1732         if ( modlist ) {
1733                 slap_mods_free( modlist, op->o_tag != LDAP_REQ_ADD );
1734         }
1735         if ( !BER_BVISNULL( &rdn ) ) {
1736                 if ( !BER_BVISNULL( &nsup ) ) {
1737                         ch_free( nsup.bv_val );
1738                 }
1739                 if ( !BER_BVISNULL( &psup ) ) {
1740                         ch_free( psup.bv_val );
1741                 }
1742                 if ( !BER_BVISNULL( &nrdn ) ) {
1743                         ch_free( nrdn.bv_val );
1744                 }
1745                 if ( !BER_BVISNULL( &prdn ) ) {
1746                         ch_free( prdn.bv_val );
1747                 }
1748         }
1749         if ( freeReqDn ) {
1750                 ch_free( op->o_req_ndn.bv_val );
1751                 ch_free( op->o_req_dn.bv_val );
1752         }
1753         ber_free( ber, 0 );
1754         return rc;
1755 }
1756
1757 static int
1758 syncrepl_message_to_entry(
1759         syncinfo_t      *si,
1760         Operation       *op,
1761         LDAPMessage     *msg,
1762         Modifications   **modlist,
1763         Entry                   **entry,
1764         int             syncstate
1765 )
1766 {
1767         Entry           *e = NULL;
1768         BerElement      *ber = NULL;
1769         Modifications   tmp;
1770         Modifications   *mod;
1771         Modifications   **modtail = modlist;
1772
1773         const char      *text;
1774         char txtbuf[SLAP_TEXT_BUFLEN];
1775         size_t textlen = sizeof txtbuf;
1776
1777         struct berval   bdn = BER_BVNULL, dn, ndn;
1778         int             rc, is_ctx;
1779
1780         *modlist = NULL;
1781
1782         if ( ldap_msgtype( msg ) != LDAP_RES_SEARCH_ENTRY ) {
1783                 Debug( LDAP_DEBUG_ANY, "syncrepl_message_to_entry: %s "
1784                         "Message type should be entry (%d)",
1785                         si->si_ridtxt, ldap_msgtype( msg ), 0 );
1786                 return -1;
1787         }
1788
1789         op->o_tag = LDAP_REQ_ADD;
1790
1791         rc = ldap_get_dn_ber( si->si_ld, msg, &ber, &bdn );
1792         if ( rc != LDAP_SUCCESS ) {
1793                 Debug( LDAP_DEBUG_ANY,
1794                         "syncrepl_message_to_entry: %s dn get failed (%d)",
1795                         si->si_ridtxt, rc, 0 );
1796                 return rc;
1797         }
1798
1799         if ( syncstate == LDAP_SYNC_PRESENT || syncstate == LDAP_SYNC_DELETE ) {
1800                 /* NOTE: this could be done even before decoding the DN,
1801                  * although encoding errors wouldn't be detected */
1802                 rc = LDAP_SUCCESS;
1803                 goto done;
1804         }
1805
1806         if ( entry == NULL ) {
1807                 return -1;
1808         }
1809
1810         dnPrettyNormal( NULL, &bdn, &dn, &ndn, op->o_tmpmemctx );
1811         ber_dupbv( &op->o_req_dn, &dn );
1812         ber_dupbv( &op->o_req_ndn, &ndn );
1813         slap_sl_free( ndn.bv_val, op->o_tmpmemctx );
1814         slap_sl_free( dn.bv_val, op->o_tmpmemctx );
1815
1816         is_ctx = dn_match( &op->o_req_ndn, &op->o_bd->be_nsuffix[0] );
1817
1818         e = entry_alloc();
1819         e->e_name = op->o_req_dn;
1820         e->e_nname = op->o_req_ndn;
1821
1822         while ( ber_remaining( ber ) ) {
1823                 if ( (ber_scanf( ber, "{mW}", &tmp.sml_type, &tmp.sml_values ) ==
1824                         LBER_ERROR ) || BER_BVISNULL( &tmp.sml_type ) )
1825                 {
1826                         break;
1827                 }
1828
1829                 /* Drop all updates to the contextCSN of the context entry
1830                  * (ITS#4622, etc.)
1831                  */
1832                 if ( is_ctx && !strcasecmp( tmp.sml_type.bv_val,
1833                         slap_schema.si_ad_contextCSN->ad_cname.bv_val )) {
1834                         ber_bvarray_free( tmp.sml_values );
1835                         continue;
1836                 }
1837
1838                 mod  = (Modifications *) ch_malloc( sizeof( Modifications ) );
1839
1840                 mod->sml_op = LDAP_MOD_REPLACE;
1841                 mod->sml_flags = 0;
1842                 mod->sml_next = NULL;
1843                 mod->sml_desc = NULL;
1844                 mod->sml_type = tmp.sml_type;
1845                 mod->sml_values = tmp.sml_values;
1846                 mod->sml_nvalues = NULL;
1847                 mod->sml_numvals = 0;   /* slap_mods_check will set this */
1848
1849                 *modtail = mod;
1850                 modtail = &mod->sml_next;
1851         }
1852
1853         if ( *modlist == NULL ) {
1854                 Debug( LDAP_DEBUG_ANY, "syncrepl_message_to_entry: %s no attributes\n",
1855                         si->si_ridtxt, 0, 0 );
1856                 rc = -1;
1857                 goto done;
1858         }
1859
1860         rc = slap_mods_check( op, *modlist, &text, txtbuf, textlen, NULL );
1861
1862         if ( rc != LDAP_SUCCESS ) {
1863                 Debug( LDAP_DEBUG_ANY, "syncrepl_message_to_entry: %s mods check (%s)\n",
1864                         si->si_ridtxt, text, 0 );
1865                 goto done;
1866         }
1867
1868         /* Strip out dynamically generated attrs */
1869         for ( modtail = modlist; *modtail ; ) {
1870                 mod = *modtail;
1871                 if ( mod->sml_desc->ad_type->sat_flags & SLAP_AT_DYNAMIC ) {
1872                         *modtail = mod->sml_next;
1873                         slap_mod_free( &mod->sml_mod, 0 );
1874                         ch_free( mod );
1875                 } else {
1876                         modtail = &mod->sml_next;
1877                 }
1878         }
1879
1880         /* Strip out attrs in exattrs list */
1881         for ( modtail = modlist; *modtail ; ) {
1882                 mod = *modtail;
1883                 if ( ldap_charray_inlist( si->si_exattrs,
1884                         mod->sml_desc->ad_type->sat_cname.bv_val ) )
1885                 {
1886                         *modtail = mod->sml_next;
1887                         slap_mod_free( &mod->sml_mod, 0 );
1888                         ch_free( mod );
1889                 } else {
1890                         modtail = &mod->sml_next;
1891                 }
1892         }
1893
1894         rc = slap_mods2entry( *modlist, &e, 1, 1, &text, txtbuf, textlen);
1895         if( rc != LDAP_SUCCESS ) {
1896                 Debug( LDAP_DEBUG_ANY, "syncrepl_message_to_entry: %s mods2entry (%s)\n",
1897                         si->si_ridtxt, text, 0 );
1898         }
1899
1900 done:
1901         ber_free( ber, 0 );
1902         if ( rc != LDAP_SUCCESS ) {
1903                 if ( e ) {
1904                         entry_free( e );
1905                         e = NULL;
1906                 }
1907         }
1908         if ( entry )
1909                 *entry = e;
1910
1911         return rc;
1912 }
1913
1914 static struct berval generic_filterstr = BER_BVC("(objectclass=*)");
1915
1916 /* During a refresh, we may get an LDAP_SYNC_ADD for an already existing
1917  * entry if a previous refresh was interrupted before sending us a new
1918  * context state. We try to compare the new entry to the existing entry
1919  * and ignore the new entry if they are the same.
1920  *
1921  * Also, we may get an update where the entryDN has changed, due to
1922  * a ModDn on the provider. We detect this as well, so we can issue
1923  * the corresponding operation locally.
1924  *
1925  * In the case of a modify, we get a list of all the attributes
1926  * in the original entry. Rather than deleting the entry and re-adding it,
1927  * we issue a Modify request that deletes all the attributes and adds all
1928  * the new ones. This avoids the issue of trying to delete/add a non-leaf
1929  * entry.
1930  *
1931  * We otherwise distinguish ModDN from Modify; in the case of
1932  * a ModDN we just use the CSN, modifyTimestamp and modifiersName
1933  * operational attributes from the entry, and do a regular ModDN.
1934  */
1935 typedef struct dninfo {
1936         Entry *new_entry;
1937         struct berval dn;
1938         struct berval ndn;
1939         int renamed;    /* Was an existing entry renamed? */
1940         int delOldRDN;  /* Was old RDN deleted? */
1941         Modifications **modlist;        /* the modlist we received */
1942         Modifications *mods;    /* the modlist we compared */
1943 } dninfo;
1944
1945 /* return 1 if inserted, 0 otherwise */
1946 static int
1947 avl_presentlist_insert(
1948         syncinfo_t* si,
1949         struct berval *syncUUID )
1950 {
1951         struct berval *syncuuid_bv = ch_malloc( sizeof( struct berval ) + syncUUID->bv_len + 1 );
1952
1953         syncuuid_bv->bv_len = syncUUID->bv_len;
1954         syncuuid_bv->bv_val = (char *)&syncuuid_bv[1];
1955         AC_MEMCPY( syncuuid_bv->bv_val, syncUUID->bv_val, syncUUID->bv_len );
1956         syncuuid_bv->bv_val[ syncuuid_bv->bv_len ] = '\0';
1957
1958         if ( avl_insert( &si->si_presentlist, (caddr_t) syncuuid_bv,
1959                 syncuuid_cmp, avl_dup_error ) )
1960         {
1961                 ch_free( syncuuid_bv );
1962                 return 0;
1963         }
1964
1965         return 1;
1966 }
1967
1968 static int
1969 syncrepl_entry(
1970         syncinfo_t* si,
1971         Operation *op,
1972         Entry* entry,
1973         Modifications** modlist,
1974         int syncstate,
1975         struct berval* syncUUID,
1976         struct berval* syncCSN )
1977 {
1978         Backend *be = op->o_bd;
1979         slap_callback   cb = { NULL, NULL, NULL, NULL };
1980         int syncuuid_inserted = 0;
1981         struct berval   syncUUID_strrep = BER_BVNULL;
1982
1983         SlapReply       rs_search = {REP_RESULT};
1984         SlapReply       rs_delete = {REP_RESULT};
1985         SlapReply       rs_add = {REP_RESULT};
1986         SlapReply       rs_modify = {REP_RESULT};
1987         Filter f = {0};
1988         AttributeAssertion ava = ATTRIBUTEASSERTION_INIT;
1989         int rc = LDAP_SUCCESS;
1990
1991         struct berval pdn = BER_BVNULL;
1992         dninfo dni = {0};
1993         int     retry = 1;
1994         int     freecsn = 1;
1995
1996         Debug( LDAP_DEBUG_SYNC,
1997                 "syncrepl_entry: %s LDAP_RES_SEARCH_ENTRY(LDAP_SYNC_%s)\n",
1998                 si->si_ridtxt, syncrepl_state2str( syncstate ), 0 );
1999
2000         if (( syncstate == LDAP_SYNC_PRESENT || syncstate == LDAP_SYNC_ADD ) ) {
2001                 if ( !si->si_refreshPresent && !si->si_refreshDone ) {
2002                         syncuuid_inserted = avl_presentlist_insert( si, syncUUID );
2003                 }
2004         }
2005
2006         if ( syncstate == LDAP_SYNC_PRESENT ) {
2007                 return 0;
2008         } else if ( syncstate != LDAP_SYNC_DELETE ) {
2009                 if ( entry == NULL ) {
2010                         return 0;
2011                 }
2012         }
2013
2014         (void)slap_uuidstr_from_normalized( &syncUUID_strrep, syncUUID, op->o_tmpmemctx );
2015         if ( syncstate != LDAP_SYNC_DELETE ) {
2016                 Attribute       *a = attr_find( entry->e_attrs, slap_schema.si_ad_entryUUID );
2017
2018                 if ( a == NULL ) {
2019                         /* add if missing */
2020                         attr_merge_one( entry, slap_schema.si_ad_entryUUID,
2021                                 &syncUUID_strrep, syncUUID );
2022
2023                 } else if ( !bvmatch( &a->a_nvals[0], syncUUID ) ) {
2024                         /* replace only if necessary */
2025                         if ( a->a_nvals != a->a_vals ) {
2026                                 ber_memfree( a->a_nvals[0].bv_val );
2027                                 ber_dupbv( &a->a_nvals[0], syncUUID );
2028                         }
2029                         ber_memfree( a->a_vals[0].bv_val );
2030                         ber_dupbv( &a->a_vals[0], &syncUUID_strrep );
2031                 }
2032         }
2033
2034         f.f_choice = LDAP_FILTER_EQUALITY;
2035         f.f_ava = &ava;
2036         ava.aa_desc = slap_schema.si_ad_entryUUID;
2037         ava.aa_value = *syncUUID;
2038
2039         if ( syncuuid_inserted ) {
2040                 Debug( LDAP_DEBUG_SYNC, "syncrepl_entry: %s inserted UUID %s\n",
2041                         si->si_ridtxt, syncUUID_strrep.bv_val, 0 );
2042         }
2043         op->ors_filter = &f;
2044
2045         op->ors_filterstr.bv_len = STRLENOF( "(entryUUID=)" ) + syncUUID_strrep.bv_len;
2046         op->ors_filterstr.bv_val = (char *) slap_sl_malloc(
2047                 op->ors_filterstr.bv_len + 1, op->o_tmpmemctx ); 
2048         AC_MEMCPY( op->ors_filterstr.bv_val, "(entryUUID=", STRLENOF( "(entryUUID=" ) );
2049         AC_MEMCPY( &op->ors_filterstr.bv_val[STRLENOF( "(entryUUID=" )],
2050                 syncUUID_strrep.bv_val, syncUUID_strrep.bv_len );
2051         op->ors_filterstr.bv_val[op->ors_filterstr.bv_len - 1] = ')';
2052         op->ors_filterstr.bv_val[op->ors_filterstr.bv_len] = '\0';
2053
2054         op->o_tag = LDAP_REQ_SEARCH;
2055         op->ors_scope = LDAP_SCOPE_SUBTREE;
2056         op->ors_deref = LDAP_DEREF_NEVER;
2057
2058         /* get the entry for this UUID */
2059         op->o_req_dn = si->si_base;
2060         op->o_req_ndn = si->si_base;
2061
2062         op->o_time = slap_get_time();
2063         op->ors_tlimit = SLAP_NO_LIMIT;
2064         op->ors_slimit = 1;
2065
2066         op->ors_attrs = slap_anlist_all_attributes;
2067         op->ors_attrsonly = 0;
2068
2069         /* set callback function */
2070         op->o_callback = &cb;
2071         cb.sc_response = dn_callback;
2072         cb.sc_private = &dni;
2073         dni.new_entry = entry;
2074         dni.modlist = modlist;
2075
2076         if ( limits_check( op, &rs_search ) == 0 ) {
2077                 rc = be->be_search( op, &rs_search );
2078                 Debug( LDAP_DEBUG_SYNC,
2079                                 "syncrepl_entry: %s be_search (%d)\n", 
2080                                 si->si_ridtxt, rc, 0 );
2081         }
2082
2083         if ( !BER_BVISNULL( &op->ors_filterstr ) ) {
2084                 slap_sl_free( op->ors_filterstr.bv_val, op->o_tmpmemctx );
2085         }
2086
2087         cb.sc_response = null_callback;
2088         cb.sc_private = si;
2089
2090         if ( entry && !BER_BVISNULL( &entry->e_name ) ) {
2091                 Debug( LDAP_DEBUG_SYNC,
2092                                 "syncrepl_entry: %s %s\n",
2093                                 si->si_ridtxt, entry->e_name.bv_val, 0 );
2094         } else {
2095                 Debug( LDAP_DEBUG_SYNC,
2096                                 "syncrepl_entry: %s %s\n",
2097                                 si->si_ridtxt, dni.dn.bv_val ? dni.dn.bv_val : "(null)", 0 );
2098         }
2099
2100         assert( BER_BVISNULL( &op->o_csn ) );
2101         if ( syncCSN ) {
2102                 slap_queue_csn( op, syncCSN );
2103         }
2104
2105         slap_op_time( &op->o_time, &op->o_tincr );
2106         switch ( syncstate ) {
2107         case LDAP_SYNC_ADD:
2108         case LDAP_SYNC_MODIFY:
2109                 if ( BER_BVISNULL( &op->o_csn ))
2110                 {
2111
2112                         Attribute *a = attr_find( entry->e_attrs, slap_schema.si_ad_entryCSN );
2113                         if ( a ) {
2114                                 /* FIXME: op->o_csn is assumed to be
2115                                  * on the thread's slab; this needs
2116                                  * to be cleared ASAP.
2117                                  * What happens if already present?
2118                                  */
2119                                 assert( BER_BVISNULL( &op->o_csn ) );
2120                                 op->o_csn = a->a_vals[0];
2121                                 freecsn = 0;
2122                         }
2123                 }
2124 retry_add:;
2125                 if ( BER_BVISNULL( &dni.dn ) ) {
2126
2127                         op->o_req_dn = entry->e_name;
2128                         op->o_req_ndn = entry->e_nname;
2129                         op->o_tag = LDAP_REQ_ADD;
2130                         op->ora_e = entry;
2131                         op->o_bd = si->si_wbe;
2132
2133                         rc = op->o_bd->be_add( op, &rs_add );
2134                         Debug( LDAP_DEBUG_SYNC,
2135                                         "syncrepl_entry: %s be_add (%d)\n", 
2136                                         si->si_ridtxt, rc, 0 );
2137                         switch ( rs_add.sr_err ) {
2138                         case LDAP_SUCCESS:
2139                                 if ( op->ora_e == entry ) {
2140                                         be_entry_release_w( op, entry );
2141                                 }
2142                                 entry = NULL;
2143                                 break;
2144
2145                         case LDAP_REFERRAL:
2146                         /* we assume that LDAP_NO_SUCH_OBJECT is returned 
2147                          * only if the suffix entry is not present */
2148                         case LDAP_NO_SUCH_OBJECT:
2149                                 rc = syncrepl_add_glue( op, entry );
2150                                 entry = NULL;
2151                                 break;
2152
2153                         /* if an entry was added via syncrepl_add_glue(),
2154                          * it likely has no entryUUID, so the previous
2155                          * be_search() doesn't find it.  In this case,
2156                          * give syncrepl a chance to modify it. Also
2157                          * allow for entries that were recreated with the
2158                          * same DN but a different entryUUID.
2159                          */
2160                         case LDAP_ALREADY_EXISTS:
2161                                 if ( retry ) {
2162                                         Operation       op2 = *op;
2163                                         SlapReply       rs2 = { 0 };
2164                                         slap_callback   cb2 = { 0 };
2165
2166                                         op2.o_bd = be;
2167                                         op2.o_tag = LDAP_REQ_SEARCH;
2168                                         op2.o_req_dn = entry->e_name;
2169                                         op2.o_req_ndn = entry->e_nname;
2170                                         op2.ors_scope = LDAP_SCOPE_BASE;
2171                                         op2.ors_deref = LDAP_DEREF_NEVER;
2172                                         op2.ors_attrs = slap_anlist_all_attributes;
2173                                         op2.ors_attrsonly = 0;
2174                                         op2.ors_limit = NULL;
2175                                         op2.ors_slimit = 1;
2176                                         op2.ors_tlimit = SLAP_NO_LIMIT;
2177
2178                                         f.f_choice = LDAP_FILTER_PRESENT;
2179                                         f.f_desc = slap_schema.si_ad_objectClass;
2180                                         op2.ors_filter = &f;
2181                                         op2.ors_filterstr = generic_filterstr;
2182
2183                                         op2.o_callback = &cb2;
2184                                         cb2.sc_response = dn_callback;
2185                                         cb2.sc_private = &dni;
2186
2187                                         rc = be->be_search( &op2, &rs2 );
2188                                         if ( rc ) goto done;
2189
2190                                         retry = 0;
2191                                         slap_op_time( &op->o_time, &op->o_tincr );
2192                                         goto retry_add;
2193                                 }
2194                                 /* FALLTHRU */
2195
2196                         default:
2197                                 Debug( LDAP_DEBUG_ANY,
2198                                         "syncrepl_entry: %s be_add failed (%d)\n",
2199                                         si->si_ridtxt, rs_add.sr_err, 0 );
2200                                 break;
2201                         }
2202                         op->o_bd = be;
2203                         goto done;
2204                 }
2205                 /* FALLTHRU */
2206                 op->o_req_dn = dni.dn;
2207                 op->o_req_ndn = dni.ndn;
2208                 if ( dni.renamed ) {
2209                         struct berval noldp, newp, nnewp;
2210
2211                         op->o_tag = LDAP_REQ_MODRDN;
2212                         dnRdn( &entry->e_name, &op->orr_newrdn );
2213                         dnRdn( &entry->e_nname, &op->orr_nnewrdn );
2214
2215                         dnParent( &dni.ndn, &noldp );
2216                         dnParent( &entry->e_nname, &nnewp );
2217                         if ( !dn_match( &noldp, &nnewp ) ) {
2218                                 dnParent( &entry->e_name, &newp );
2219                                 op->orr_newSup = &newp;
2220                                 op->orr_nnewSup = &nnewp;
2221                         } else {
2222                                 op->orr_newSup = NULL;
2223                                 op->orr_nnewSup = NULL;
2224                         }
2225                         op->orr_deleteoldrdn = dni.delOldRDN;
2226                         op->orr_modlist = NULL;
2227                         if ( ( rc = slap_modrdn2mods( op, &rs_modify ) ) ) {
2228                                 goto done;
2229                         }
2230
2231                         /* RDNs must be NUL-terminated for back-ldap */
2232                         noldp = op->orr_newrdn;
2233                         ber_dupbv_x( &op->orr_newrdn, &noldp, op->o_tmpmemctx );
2234                         noldp = op->orr_nnewrdn;
2235                         ber_dupbv_x( &op->orr_nnewrdn, &noldp, op->o_tmpmemctx );
2236
2237                         /* Setup opattrs too */
2238                         {
2239                                 static AttributeDescription *nullattr = NULL;
2240                                 static AttributeDescription **const opattrs[] = {
2241                                         &slap_schema.si_ad_entryCSN,
2242                                         &slap_schema.si_ad_modifiersName,
2243                                         &slap_schema.si_ad_modifyTimestamp,
2244                                         &nullattr
2245                                 };
2246                                 AttributeDescription *opattr;
2247                                 Modifications *mod, **modtail, **ml;
2248                                 int i;
2249
2250                                 for ( mod = op->orr_modlist;
2251                                         mod->sml_next;
2252                                         mod = mod->sml_next )
2253                                         ;
2254                                 modtail = &mod->sml_next;
2255
2256                                 /* pull mod off incoming modlist, append to orr_modlist */
2257                                 for ( i = 0; (opattr = *opattrs[i]) != NULL; i++ ) {
2258                                         for ( ml = modlist; *ml; ml = &(*ml)->sml_next )
2259                                         {
2260                                                 if ( (*ml)->sml_desc == opattr ) {
2261                                                         mod = *ml;
2262                                                         *ml = mod->sml_next;
2263                                                         mod->sml_next = NULL;
2264                                                         *modtail = mod;
2265                                                         modtail = &mod->sml_next;
2266                                                         break;
2267                                                 }
2268                                         }
2269                                 }
2270                         }
2271                         op->o_bd = si->si_wbe;
2272                         rc = op->o_bd->be_modrdn( op, &rs_modify );
2273                         op->o_tmpfree( op->orr_nnewrdn.bv_val, op->o_tmpmemctx );
2274                         op->o_tmpfree( op->orr_newrdn.bv_val, op->o_tmpmemctx );
2275
2276                         slap_mods_free( op->orr_modlist, 1 );
2277                         Debug( LDAP_DEBUG_SYNC,
2278                                         "syncrepl_entry: %s be_modrdn (%d)\n", 
2279                                         si->si_ridtxt, rc, 0 );
2280                         op->o_bd = be;
2281                         goto done;
2282                 }
2283                 if ( dni.mods ) {
2284                         op->o_tag = LDAP_REQ_MODIFY;
2285                         op->orm_modlist = dni.mods;
2286                         op->orm_no_opattrs = 1;
2287                         op->o_bd = si->si_wbe;
2288
2289                         rc = op->o_bd->be_modify( op, &rs_modify );
2290                         slap_mods_free( op->orm_modlist, 1 );
2291                         op->orm_no_opattrs = 0;
2292                         Debug( LDAP_DEBUG_SYNC,
2293                                         "syncrepl_entry: %s be_modify (%d)\n", 
2294                                         si->si_ridtxt, rc, 0 );
2295                         if ( rs_modify.sr_err != LDAP_SUCCESS ) {
2296                                 Debug( LDAP_DEBUG_ANY,
2297                                         "syncrepl_entry: %s be_modify failed (%d)\n",
2298                                         si->si_ridtxt, rs_modify.sr_err, 0 );
2299                         }
2300                         op->o_bd = be;
2301                 } else {
2302                         Debug( LDAP_DEBUG_SYNC,
2303                                         "syncrepl_entry: %s entry unchanged, ignored (%s)\n", 
2304                                         si->si_ridtxt, op->o_req_dn.bv_val, 0 );
2305                 }
2306                 goto done;
2307         case LDAP_SYNC_DELETE :
2308                 if ( !BER_BVISNULL( &dni.dn ) ) {
2309                         op->o_req_dn = dni.dn;
2310                         op->o_req_ndn = dni.ndn;
2311                         op->o_tag = LDAP_REQ_DELETE;
2312                         op->o_bd = si->si_wbe;
2313                         rc = op->o_bd->be_delete( op, &rs_delete );
2314                         Debug( LDAP_DEBUG_SYNC,
2315                                         "syncrepl_entry: %s be_delete (%d)\n", 
2316                                         si->si_ridtxt, rc, 0 );
2317
2318                         while ( rs_delete.sr_err == LDAP_SUCCESS
2319                                 && op->o_delete_glue_parent ) {
2320                                 op->o_delete_glue_parent = 0;
2321                                 if ( !be_issuffix( be, &op->o_req_ndn ) ) {
2322                                         slap_callback cb = { NULL };
2323                                         cb.sc_response = slap_null_cb;
2324                                         dnParent( &op->o_req_ndn, &pdn );
2325                                         op->o_req_dn = pdn;
2326                                         op->o_req_ndn = pdn;
2327                                         op->o_callback = &cb;
2328                                         op->o_bd->be_delete( op, &rs_delete );
2329                                 } else {
2330                                         break;
2331                                 }
2332                         }
2333                         op->o_bd = be;
2334                 }
2335                 goto done;
2336
2337         default :
2338                 Debug( LDAP_DEBUG_ANY,
2339                         "syncrepl_entry: %s unknown syncstate\n", si->si_ridtxt, 0, 0 );
2340                 goto done;
2341         }
2342
2343 done:
2344         if ( !BER_BVISNULL( &syncUUID_strrep ) ) {
2345                 slap_sl_free( syncUUID_strrep.bv_val, op->o_tmpmemctx );
2346                 BER_BVZERO( &syncUUID_strrep );
2347         }
2348         if ( !BER_BVISNULL( &dni.ndn ) ) {
2349                 op->o_tmpfree( dni.ndn.bv_val, op->o_tmpmemctx );
2350         }
2351         if ( !BER_BVISNULL( &dni.dn ) ) {
2352                 op->o_tmpfree( dni.dn.bv_val, op->o_tmpmemctx );
2353         }
2354         if ( entry ) {
2355                 entry_free( entry );
2356         }
2357         if ( syncCSN ) {
2358                 slap_graduate_commit_csn( op );
2359         }
2360         if ( !BER_BVISNULL( &op->o_csn ) && freecsn ) {
2361                 op->o_tmpfree( op->o_csn.bv_val, op->o_tmpmemctx );
2362         }
2363         BER_BVZERO( &op->o_csn );
2364         return rc;
2365 }
2366
2367 static struct berval gcbva[] = {
2368         BER_BVC("top"),
2369         BER_BVC("glue"),
2370         BER_BVNULL
2371 };
2372
2373 #define NP_DELETE_ONE   2
2374
2375 static void
2376 syncrepl_del_nonpresent(
2377         Operation *op,
2378         syncinfo_t *si,
2379         BerVarray uuids,
2380         struct sync_cookie *sc,
2381         int m )
2382 {
2383         Backend* be = op->o_bd;
2384         slap_callback   cb = { NULL };
2385         SlapReply       rs_search = {REP_RESULT};
2386         SlapReply       rs_delete = {REP_RESULT};
2387         SlapReply       rs_modify = {REP_RESULT};
2388         struct nonpresent_entry *np_list, *np_prev;
2389         int rc;
2390         AttributeName   an[2];
2391
2392         struct berval pdn = BER_BVNULL;
2393         struct berval csn;
2394
2395         op->o_req_dn = si->si_base;
2396         op->o_req_ndn = si->si_base;
2397
2398         cb.sc_response = nonpresent_callback;
2399         cb.sc_private = si;
2400
2401         op->o_callback = &cb;
2402         op->o_tag = LDAP_REQ_SEARCH;
2403         op->ors_scope = si->si_scope;
2404         op->ors_deref = LDAP_DEREF_NEVER;
2405         op->o_time = slap_get_time();
2406         op->ors_tlimit = SLAP_NO_LIMIT;
2407
2408
2409         if ( uuids ) {
2410                 Filter uf;
2411                 AttributeAssertion eq = ATTRIBUTEASSERTION_INIT;
2412                 int i;
2413
2414                 op->ors_attrsonly = 1;
2415                 op->ors_attrs = slap_anlist_no_attrs;
2416                 op->ors_limit = NULL;
2417                 op->ors_filter = &uf;
2418
2419                 uf.f_ava = &eq;
2420                 uf.f_av_desc = slap_schema.si_ad_entryUUID;
2421                 uf.f_next = NULL;
2422                 uf.f_choice = LDAP_FILTER_EQUALITY;
2423                 si->si_refreshDelete |= NP_DELETE_ONE;
2424
2425                 for (i=0; uuids[i].bv_val; i++) {
2426                         op->ors_slimit = 1;
2427                         uf.f_av_value = uuids[i];
2428                         filter2bv_x( op, op->ors_filter, &op->ors_filterstr );
2429                         rc = be->be_search( op, &rs_search );
2430                         op->o_tmpfree( op->ors_filterstr.bv_val, op->o_tmpmemctx );
2431                 }
2432                 si->si_refreshDelete ^= NP_DELETE_ONE;
2433         } else {
2434                 Filter *cf, *of;
2435
2436                 memset( &an[0], 0, 2 * sizeof( AttributeName ) );
2437                 an[0].an_name = slap_schema.si_ad_entryUUID->ad_cname;
2438                 an[0].an_desc = slap_schema.si_ad_entryUUID;
2439                 op->ors_attrs = an;
2440                 op->ors_slimit = SLAP_NO_LIMIT;
2441                 op->ors_attrsonly = 0;
2442                 op->ors_filter = str2filter_x( op, si->si_filterstr.bv_val );
2443                 /* In multimaster, updates can continue to arrive while
2444                  * we're searching. Limit the search result to entries
2445                  * older than all of our cookie CSNs.
2446                  */
2447                 if ( SLAP_MULTIMASTER( op->o_bd )) {
2448                         Filter *f;
2449                         int i;
2450                         cf = op->o_tmpalloc( (sc->numcsns+1) * sizeof(Filter) +
2451                                 sc->numcsns * sizeof(AttributeAssertion), op->o_tmpmemctx );
2452                         f = cf;
2453                         f->f_choice = LDAP_FILTER_AND;
2454                         f->f_next = NULL;
2455                         f->f_and = f+1;
2456                         of = f->f_and;
2457                         for ( i=0; i<sc->numcsns; i++ ) {
2458                                 f = of;
2459                                 f->f_choice = LDAP_FILTER_LE;
2460                                 f->f_ava = (AttributeAssertion *)(f+1);
2461                                 f->f_av_desc = slap_schema.si_ad_entryCSN;
2462                                 f->f_av_value = sc->ctxcsn[i];
2463                                 f->f_next = (Filter *)(f->f_ava+1);
2464                                 of = f->f_next;
2465                         }
2466                         f->f_next = op->ors_filter;
2467                         of = op->ors_filter;
2468                         op->ors_filter = cf;
2469                         filter2bv_x( op, op->ors_filter, &op->ors_filterstr );
2470                 } else {
2471                         cf = NULL;
2472                         op->ors_filterstr = si->si_filterstr;
2473                 }
2474                 op->o_nocaching = 1;
2475
2476                 if ( limits_check( op, &rs_search ) == 0 ) {
2477                         rc = be->be_search( op, &rs_search );
2478                 }
2479                 if ( SLAP_MULTIMASTER( op->o_bd )) {
2480                         op->o_tmpfree( cf, op->o_tmpmemctx );
2481                         op->ors_filter = of;
2482                 }
2483                 if ( op->ors_filter ) filter_free_x( op, op->ors_filter );
2484
2485         }
2486
2487         op->o_nocaching = 0;
2488
2489         if ( !LDAP_LIST_EMPTY( &si->si_nonpresentlist ) ) {
2490
2491                 if ( sc->ctxcsn && !BER_BVISNULL( &sc->ctxcsn[m] ) ) {
2492                         csn = sc->ctxcsn[m];
2493                 } else {
2494                         csn = si->si_syncCookie.ctxcsn[0];
2495                 }
2496
2497                 op->o_bd = si->si_wbe;
2498                 slap_queue_csn( op, &csn );
2499
2500                 np_list = LDAP_LIST_FIRST( &si->si_nonpresentlist );
2501                 while ( np_list != NULL ) {
2502                         LDAP_LIST_REMOVE( np_list, npe_link );
2503                         np_prev = np_list;
2504                         np_list = LDAP_LIST_NEXT( np_list, npe_link );
2505                         op->o_tag = LDAP_REQ_DELETE;
2506                         op->o_callback = &cb;
2507                         cb.sc_response = null_callback;
2508                         cb.sc_private = si;
2509                         op->o_req_dn = *np_prev->npe_name;
2510                         op->o_req_ndn = *np_prev->npe_nname;
2511                         rc = op->o_bd->be_delete( op, &rs_delete );
2512                         Debug( LDAP_DEBUG_SYNC,
2513                                 "syncrepl_del_nonpresent: %s be_delete %s (%d)\n", 
2514                                 si->si_ridtxt, op->o_req_dn.bv_val, rc );
2515
2516                         if ( rs_delete.sr_err == LDAP_NOT_ALLOWED_ON_NONLEAF ) {
2517                                 Modifications mod1, mod2;
2518                                 mod1.sml_op = LDAP_MOD_REPLACE;
2519                                 mod1.sml_flags = 0;
2520                                 mod1.sml_desc = slap_schema.si_ad_objectClass;
2521                                 mod1.sml_type = mod1.sml_desc->ad_cname;
2522                                 mod1.sml_numvals = 2;
2523                                 mod1.sml_values = &gcbva[0];
2524                                 mod1.sml_nvalues = NULL;
2525                                 mod1.sml_next = &mod2;
2526
2527                                 mod2.sml_op = LDAP_MOD_REPLACE;
2528                                 mod2.sml_flags = 0;
2529                                 mod2.sml_desc = slap_schema.si_ad_structuralObjectClass;
2530                                 mod2.sml_type = mod2.sml_desc->ad_cname;
2531                                 mod2.sml_numvals = 1;
2532                                 mod2.sml_values = &gcbva[1];
2533                                 mod2.sml_nvalues = NULL;
2534                                 mod2.sml_next = NULL;
2535
2536                                 op->o_tag = LDAP_REQ_MODIFY;
2537                                 op->orm_modlist = &mod1;
2538
2539                                 rc = op->o_bd->be_modify( op, &rs_modify );
2540                                 if ( mod2.sml_next ) slap_mods_free( mod2.sml_next, 1 );
2541                         }
2542
2543                         while ( rs_delete.sr_err == LDAP_SUCCESS &&
2544                                         op->o_delete_glue_parent ) {
2545                                 op->o_delete_glue_parent = 0;
2546                                 if ( !be_issuffix( be, &op->o_req_ndn ) ) {
2547                                         slap_callback cb = { NULL };
2548                                         cb.sc_response = slap_null_cb;
2549                                         dnParent( &op->o_req_ndn, &pdn );
2550                                         op->o_req_dn = pdn;
2551                                         op->o_req_ndn = pdn;
2552                                         op->o_callback = &cb;
2553                                         /* give it a root privil ? */
2554                                         op->o_bd->be_delete( op, &rs_delete );
2555                                 } else {
2556                                         break;
2557                                 }
2558                         }
2559
2560                         op->o_delete_glue_parent = 0;
2561
2562                         ber_bvfree( np_prev->npe_name );
2563                         ber_bvfree( np_prev->npe_nname );
2564                         ch_free( np_prev );
2565
2566                         if ( slapd_shutdown ) {
2567                                 break;
2568                         }
2569                 }
2570
2571                 slap_graduate_commit_csn( op );
2572                 op->o_bd = be;
2573
2574                 op->o_tmpfree( op->o_csn.bv_val, op->o_tmpmemctx );
2575                 BER_BVZERO( &op->o_csn );
2576         }
2577
2578         return;
2579 }
2580
2581 int
2582 syncrepl_add_glue(
2583         Operation* op,
2584         Entry *e )
2585 {
2586         Backend *be = op->o_bd;
2587         slap_callback cb = { NULL };
2588         Attribute       *a;
2589         int     rc;
2590         int suffrdns;
2591         int i;
2592         struct berval dn = BER_BVNULL;
2593         struct berval ndn = BER_BVNULL;
2594         Entry   *glue;
2595         SlapReply       rs_add = {REP_RESULT};
2596         struct berval   ptr, nptr;
2597         char            *comma;
2598
2599         op->o_tag = LDAP_REQ_ADD;
2600         op->o_callback = &cb;
2601         cb.sc_response = null_callback;
2602         cb.sc_private = NULL;
2603
2604         dn = e->e_name;
2605         ndn = e->e_nname;
2606
2607         /* count RDNs in suffix */
2608         if ( !BER_BVISEMPTY( &be->be_nsuffix[0] ) ) {
2609                 for ( i = 0, ptr = be->be_nsuffix[0], comma = ptr.bv_val; comma != NULL; comma = ber_bvchr( &ptr, ',' ) ) {
2610                         comma++;
2611                         ptr.bv_len -= comma - ptr.bv_val;
2612                         ptr.bv_val = comma;
2613                         i++;
2614                 }
2615                 suffrdns = i;
2616         } else {
2617                 /* suffix is "" */
2618                 suffrdns = 0;
2619         }
2620
2621         /* Start with BE suffix */
2622         ptr = dn;
2623         for ( i = 0; i < suffrdns; i++ ) {
2624                 comma = ber_bvrchr( &ptr, ',' );
2625                 if ( comma != NULL ) {
2626                         ptr.bv_len = comma - ptr.bv_val;
2627                 } else {
2628                         ptr.bv_len = 0;
2629                         break;
2630                 }
2631         }
2632         
2633         if ( !BER_BVISEMPTY( &ptr ) ) {
2634                 dn.bv_len -= ptr.bv_len + 1;
2635                 dn.bv_val += ptr.bv_len + 1;
2636         }
2637
2638         /* the normalizedDNs are always the same length, no counting
2639          * required.
2640          */
2641         nptr = ndn;
2642         if ( ndn.bv_len > be->be_nsuffix[0].bv_len ) {
2643                 ndn.bv_val += ndn.bv_len - be->be_nsuffix[0].bv_len;
2644                 ndn.bv_len = be->be_nsuffix[0].bv_len;
2645
2646                 nptr.bv_len = ndn.bv_val - nptr.bv_val - 1;
2647
2648         } else {
2649                 nptr.bv_len = 0;
2650         }
2651
2652         while ( ndn.bv_val > e->e_nname.bv_val ) {
2653                 glue = entry_alloc();
2654                 ber_dupbv( &glue->e_name, &dn );
2655                 ber_dupbv( &glue->e_nname, &ndn );
2656
2657                 a = attr_alloc( slap_schema.si_ad_objectClass );
2658
2659                 a->a_numvals = 2;
2660                 a->a_vals = ch_calloc( 3, sizeof( struct berval ) );
2661                 ber_dupbv( &a->a_vals[0], &gcbva[0] );
2662                 ber_dupbv( &a->a_vals[1], &gcbva[1] );
2663                 ber_dupbv( &a->a_vals[2], &gcbva[2] );
2664
2665                 a->a_nvals = a->a_vals;
2666
2667                 a->a_next = glue->e_attrs;
2668                 glue->e_attrs = a;
2669
2670                 a = attr_alloc( slap_schema.si_ad_structuralObjectClass );
2671
2672                 a->a_numvals = 1;
2673                 a->a_vals = ch_calloc( 2, sizeof( struct berval ) );
2674                 ber_dupbv( &a->a_vals[0], &gcbva[1] );
2675                 ber_dupbv( &a->a_vals[1], &gcbva[2] );
2676
2677                 a->a_nvals = a->a_vals;
2678
2679                 a->a_next = glue->e_attrs;
2680                 glue->e_attrs = a;
2681
2682                 op->o_req_dn = glue->e_name;
2683                 op->o_req_ndn = glue->e_nname;
2684                 op->ora_e = glue;
2685                 rc = be->be_add ( op, &rs_add );
2686                 if ( rs_add.sr_err == LDAP_SUCCESS ) {
2687                         if ( op->ora_e == glue )
2688                                 be_entry_release_w( op, glue );
2689                 } else {
2690                 /* incl. ALREADY EXIST */
2691                         entry_free( glue );
2692                         if ( rs_add.sr_err != LDAP_ALREADY_EXISTS ) {
2693                                 entry_free( e );
2694                                 return rc;
2695                         }
2696                 }
2697
2698                 /* Move to next child */
2699                 comma = ber_bvrchr( &ptr, ',' );
2700                 if ( comma == NULL ) {
2701                         break;
2702                 }
2703                 ptr.bv_len = comma - ptr.bv_val;
2704                 
2705                 dn.bv_val = ++comma;
2706                 dn.bv_len = e->e_name.bv_len - (dn.bv_val - e->e_name.bv_val);
2707
2708                 comma = ber_bvrchr( &nptr, ',' );
2709                 assert( comma != NULL );
2710                 nptr.bv_len = comma - nptr.bv_val;
2711
2712                 ndn.bv_val = ++comma;
2713                 ndn.bv_len = e->e_nname.bv_len - (ndn.bv_val - e->e_nname.bv_val);
2714         }
2715
2716         op->o_req_dn = e->e_name;
2717         op->o_req_ndn = e->e_nname;
2718         op->ora_e = e;
2719         rc = be->be_add ( op, &rs_add );
2720         if ( rs_add.sr_err == LDAP_SUCCESS ) {
2721                 if ( op->ora_e == e )
2722                         be_entry_release_w( op, e );
2723         } else {
2724                 entry_free( e );
2725         }
2726
2727         return rc;
2728 }
2729
2730 static int
2731 syncrepl_updateCookie(
2732         syncinfo_t *si,
2733         Operation *op,
2734         struct berval *pdn,
2735         struct sync_cookie *syncCookie )
2736 {
2737         Backend *be = op->o_bd;
2738         Modifications mod;
2739         struct berval first = BER_BVNULL;
2740
2741         int rc, i, j, len;
2742
2743         slap_callback cb = { NULL };
2744         SlapReply       rs_modify = {REP_RESULT};
2745
2746         mod.sml_op = LDAP_MOD_REPLACE;
2747         mod.sml_desc = slap_schema.si_ad_contextCSN;
2748         mod.sml_type = mod.sml_desc->ad_cname;
2749         mod.sml_flags = SLAP_MOD_INTERNAL;
2750         mod.sml_nvalues = NULL;
2751         mod.sml_next = NULL;
2752
2753         ldap_pvt_thread_mutex_lock( &si->si_cookieState->cs_mutex );
2754
2755         /* clone the cookieState CSNs so we can Replace the whole thing */
2756         mod.sml_numvals = si->si_cookieState->cs_num;
2757         mod.sml_values = op->o_tmpalloc(( mod.sml_numvals+1 )*sizeof(struct berval), op->o_tmpmemctx );
2758         for ( i=0; i<mod.sml_numvals; i++ )
2759                 mod.sml_values[i] = si->si_cookieState->cs_vals[i];
2760         BER_BVZERO( &mod.sml_values[i] );
2761
2762         /* find any CSNs in the syncCookie that are newer than the cookieState */
2763         for ( i=0; i<syncCookie->numcsns; i++ ) {
2764                 for ( j=0; j<si->si_cookieState->cs_num; j++ ) {
2765                         if ( syncCookie->sids[i] != si->si_cookieState->cs_sids[j] )
2766                                 continue;
2767                         len = syncCookie->ctxcsn[i].bv_len;
2768                         if ( len > si->si_cookieState->cs_vals[j].bv_len )
2769                                 len = si->si_cookieState->cs_vals[j].bv_len;
2770                         if ( memcmp( syncCookie->ctxcsn[i].bv_val,
2771                                 si->si_cookieState->cs_vals[j].bv_val, len ) > 0 ) {
2772                                 mod.sml_values[j] = syncCookie->ctxcsn[i];
2773                                 if ( BER_BVISNULL( &first ))
2774                                         first = syncCookie->ctxcsn[i];
2775                         }
2776                         break;
2777                 }
2778                 /* there was no match for this SID, it's a new CSN */
2779                 if ( j == si->si_cookieState->cs_num ) {
2780                         mod.sml_values = op->o_tmprealloc( mod.sml_values,
2781                                 ( mod.sml_numvals+2 )*sizeof(struct berval), op->o_tmpmemctx );
2782                         mod.sml_values[mod.sml_numvals++] = syncCookie->ctxcsn[i];
2783                         BER_BVZERO( &mod.sml_values[mod.sml_numvals] );
2784                         if ( BER_BVISNULL( &first ))
2785                                 first = syncCookie->ctxcsn[i];
2786                 }
2787         }
2788         /* Should never happen, ITS#5065 */
2789         if ( BER_BVISNULL( &first )) {
2790                 ldap_pvt_thread_mutex_unlock( &si->si_cookieState->cs_mutex );
2791                 op->o_tmpfree( mod.sml_values, op->o_tmpmemctx );
2792                 return 0;
2793         }
2794         op->o_bd = si->si_wbe;
2795         slap_queue_csn( op, &first );
2796
2797         op->o_tag = LDAP_REQ_MODIFY;
2798
2799         cb.sc_response = null_callback;
2800         cb.sc_private = si;
2801
2802         op->o_callback = &cb;
2803         op->o_req_dn = op->o_bd->be_suffix[0];
2804         op->o_req_ndn = op->o_bd->be_nsuffix[0];
2805
2806         /* update contextCSN */
2807         op->o_msgid = SLAP_SYNC_UPDATE_MSGID;
2808
2809         op->orm_modlist = &mod;
2810         op->orm_no_opattrs = 1;
2811         rc = op->o_bd->be_modify( op, &rs_modify );
2812         op->orm_no_opattrs = 0;
2813         op->o_msgid = 0;
2814
2815         if ( rs_modify.sr_err == LDAP_SUCCESS ) {
2816                 slap_sync_cookie_free( &si->si_syncCookie, 0 );
2817                 slap_dup_sync_cookie( &si->si_syncCookie, syncCookie );
2818                 /* If we replaced any old values */
2819                 for ( i=0; i<si->si_cookieState->cs_num; i++ ) {
2820                         if ( mod.sml_values[i].bv_val != si->si_cookieState->cs_vals[i].bv_val )
2821                                         ber_bvreplace( &si->si_cookieState->cs_vals[i],
2822                                                 &mod.sml_values[i] );
2823                 }
2824                 /* Handle any added values */
2825                 if ( i < mod.sml_numvals ) {
2826                         si->si_cookieState->cs_num = mod.sml_numvals;
2827                         value_add( &si->si_cookieState->cs_vals, &mod.sml_values[i] );
2828                         free( si->si_cookieState->cs_sids );
2829                         si->si_cookieState->cs_sids = slap_parse_csn_sids(
2830                                 si->si_cookieState->cs_vals, si->si_cookieState->cs_num, NULL );
2831                 }
2832
2833                 si->si_cookieState->cs_age++;
2834                 si->si_cookieAge = si->si_cookieState->cs_age;
2835         } else {
2836                 Debug( LDAP_DEBUG_ANY,
2837                         "syncrepl_updateCookie: %s be_modify failed (%d)\n",
2838                         si->si_ridtxt, rs_modify.sr_err, 0 );
2839         }
2840         ldap_pvt_thread_mutex_unlock( &si->si_cookieState->cs_mutex );
2841
2842         op->o_bd = be;
2843         op->o_tmpfree( op->o_csn.bv_val, op->o_tmpmemctx );
2844         BER_BVZERO( &op->o_csn );
2845         if ( mod.sml_next ) slap_mods_free( mod.sml_next, 1 );
2846         op->o_tmpfree( mod.sml_values, op->o_tmpmemctx );
2847
2848         return rc;
2849 }
2850
2851 static void
2852 attr_cmp( Operation *op, Attribute *old, Attribute *new,
2853         Modifications ***mret, Modifications ***mcur )
2854 {
2855         int i, j;
2856         Modifications *mod, **modtail;
2857
2858         modtail = *mret;
2859
2860         if ( old ) {
2861                 int n, o, nn, no;
2862                 struct berval **adds, **dels;
2863                 /* count old and new */
2864                 for ( o=0; old->a_vals[o].bv_val; o++ ) ;
2865                 for ( n=0; new->a_vals[n].bv_val; n++ ) ;
2866
2867                 /* there MUST be both old and new values */
2868                 assert( o != 0 );
2869                 assert( n != 0 );
2870                 j = 0;
2871
2872                 adds = op->o_tmpalloc( sizeof(struct berval *) * n, op->o_tmpmemctx );
2873                 dels = op->o_tmpalloc( sizeof(struct berval *) * o, op->o_tmpmemctx );
2874
2875                 for ( i=0; i<o; i++ ) dels[i] = &old->a_vals[i];
2876                 for ( i=0; i<n; i++ ) adds[i] = &new->a_vals[i];
2877
2878                 nn = n; no = o;
2879
2880                 for ( i=0; i<o; i++ ) {
2881                         for ( j=0; j<n; j++ ) {
2882                                 if ( !adds[j] )
2883                                         continue;
2884                                 if ( bvmatch( dels[i], adds[j] ) ) {
2885                                         no--;
2886                                         nn--;
2887                                         adds[j] = NULL;
2888                                         dels[i] = NULL;
2889                                         break;
2890                                 }
2891                         }
2892                 }
2893
2894                 /* Don't delete/add an objectClass, always use the replace op.
2895                  * Modify would fail if provider has replaced entry with a new,
2896                  * and the new explicitly includes a superior of a class that was
2897                  * only included implicitly in the old entry.  Ref ITS#5517.
2898                  */
2899                 if ( nn && no < o && old->a_desc == slap_schema.si_ad_objectClass )
2900                         no = o;
2901
2902                 i = j;
2903                 /* all old values were deleted, just use the replace op */
2904                 if ( no == o ) {
2905                         i = j-1;
2906                 } else if ( no ) {
2907                 /* delete some values */
2908                         mod = ch_malloc( sizeof( Modifications ) );
2909                         mod->sml_op = LDAP_MOD_DELETE;
2910                         mod->sml_flags = 0;
2911                         mod->sml_desc = old->a_desc;
2912                         mod->sml_type = mod->sml_desc->ad_cname;
2913                         mod->sml_numvals = no;
2914                         mod->sml_values = ch_malloc( ( no + 1 ) * sizeof(struct berval) );
2915                         if ( old->a_vals != old->a_nvals ) {
2916                                 mod->sml_nvalues = ch_malloc( ( no + 1 ) * sizeof(struct berval) );
2917                         } else {
2918                                 mod->sml_nvalues = NULL;
2919                         }
2920                         j = 0;
2921                         for ( i = 0; i < o; i++ ) {
2922                                 if ( !dels[i] ) continue;
2923                                 ber_dupbv( &mod->sml_values[j], &old->a_vals[i] );
2924                                 if ( mod->sml_nvalues ) {
2925                                         ber_dupbv( &mod->sml_nvalues[j], &old->a_nvals[i] );
2926                                 }
2927                                 j++;
2928                         }
2929                         BER_BVZERO( &mod->sml_values[j] );
2930                         if ( mod->sml_nvalues ) {
2931                                 BER_BVZERO( &mod->sml_nvalues[j] );
2932                         }
2933                         *modtail = mod;
2934                         modtail = &mod->sml_next;
2935                         i = j;
2936                 }
2937                 op->o_tmpfree( dels, op->o_tmpmemctx );
2938                 /* some values were added */
2939                 if ( nn && no < o ) {
2940                         mod = ch_malloc( sizeof( Modifications ) );
2941                         mod->sml_op = LDAP_MOD_ADD;
2942                         mod->sml_flags = 0;
2943                         mod->sml_desc = old->a_desc;
2944                         mod->sml_type = mod->sml_desc->ad_cname;
2945                         mod->sml_numvals = nn;
2946                         mod->sml_values = ch_malloc( ( nn + 1 ) * sizeof(struct berval) );
2947                         if ( old->a_vals != old->a_nvals ) {
2948                                 mod->sml_nvalues = ch_malloc( ( nn + 1 ) * sizeof(struct berval) );
2949                         } else {
2950                                 mod->sml_nvalues = NULL;
2951                         }
2952                         j = 0;
2953                         for ( i = 0; i < n; i++ ) {
2954                                 if ( !adds[i] ) continue;
2955                                 ber_dupbv( &mod->sml_values[j], &new->a_vals[i] );
2956                                 if ( mod->sml_nvalues ) {
2957                                         ber_dupbv( &mod->sml_nvalues[j], &new->a_nvals[i] );
2958                                 }
2959                                 j++;
2960                         }
2961                         BER_BVZERO( &mod->sml_values[j] );
2962                         if ( mod->sml_nvalues ) {
2963                                 BER_BVZERO( &mod->sml_nvalues[j] );
2964                         }
2965                         *modtail = mod;
2966                         modtail = &mod->sml_next;
2967                         i = j;
2968                 }
2969                 op->o_tmpfree( adds, op->o_tmpmemctx );
2970         } else {
2971                 /* new attr, just use the new mod */
2972                 i = 0;
2973                 j = 1;
2974         }
2975         /* advance to next element */
2976         mod = **mcur;
2977         if ( mod ) {
2978                 if ( i != j ) {
2979                         **mcur = mod->sml_next;
2980                         *modtail = mod;
2981                         modtail = &mod->sml_next;
2982                 } else {
2983                         *mcur = &mod->sml_next;
2984                 }
2985         }
2986         *mret = modtail;
2987 }
2988
2989 static int
2990 dn_callback(
2991         Operation*      op,
2992         SlapReply*      rs )
2993 {
2994         dninfo *dni = op->o_callback->sc_private;
2995
2996         if ( rs->sr_type == REP_SEARCH ) {
2997                 if ( !BER_BVISNULL( &dni->dn ) ) {
2998                         Debug( LDAP_DEBUG_ANY,
2999                                 "dn_callback : consistency error - "
3000                                 "entryUUID is not unique\n", 0, 0, 0 );
3001                 } else {
3002                         ber_dupbv_x( &dni->dn, &rs->sr_entry->e_name, op->o_tmpmemctx );
3003                         ber_dupbv_x( &dni->ndn, &rs->sr_entry->e_nname, op->o_tmpmemctx );
3004                         /* If there is a new entry, see if it differs from the old.
3005                          * We compare the non-normalized values so that cosmetic changes
3006                          * in the provider are always propagated.
3007                          */
3008                         if ( dni->new_entry ) {
3009                                 Modifications **modtail, **ml;
3010                                 Attribute *old, *new;
3011                                 int is_ctx;
3012
3013                                 is_ctx = dn_match( &rs->sr_entry->e_nname,
3014                                         &op->o_bd->be_nsuffix[0] );
3015
3016                                 /* Did the DN change?
3017                                  */
3018                                 if ( !dn_match( &rs->sr_entry->e_name,
3019                                                 &dni->new_entry->e_name ) )
3020                                 {
3021                                         struct berval oldRDN, oldVal;
3022                                         AttributeDescription *ad = NULL;
3023                                         Attribute *a;
3024
3025                                         dni->renamed = 1;
3026                                         /* See if the oldRDN was deleted */
3027                                         dnRdn( &rs->sr_entry->e_nname, &oldRDN );
3028                                         oldVal.bv_val = strchr(oldRDN.bv_val, '=') + 1;
3029                                         oldVal.bv_len = oldRDN.bv_len - ( oldVal.bv_val -
3030                                                 oldRDN.bv_val );
3031                                         oldRDN.bv_len -= oldVal.bv_len + 2;
3032                                         slap_bv2ad( &oldRDN, &ad, &rs->sr_text );
3033                                         a = attr_find( dni->new_entry->e_attrs, ad );
3034                                         if ( !a || attr_valfind( a,
3035                                                 SLAP_MR_ASSERTED_VALUE_NORMALIZED_MATCH |
3036                                                 SLAP_MR_ATTRIBUTE_VALUE_NORMALIZED_MATCH |
3037                                                 SLAP_MR_VALUE_OF_SYNTAX,
3038                                                 &oldVal, NULL, op->o_tmpmemctx ) != LDAP_SUCCESS )
3039                                         {
3040                                                 dni->delOldRDN = 1;
3041                                         }
3042                                         /* OK, this was just a modDN, we're done */
3043                                         return LDAP_SUCCESS;
3044                                 }
3045
3046                                 modtail = &dni->mods;
3047                                 ml = dni->modlist;
3048
3049                                 /* Make sure new entry is actually newer than old entry */
3050                                 old = attr_find( rs->sr_entry->e_attrs,
3051                                         slap_schema.si_ad_entryCSN );
3052                                 new = attr_find( dni->new_entry->e_attrs,
3053                                         slap_schema.si_ad_entryCSN );
3054                                 if ( new && old ) {
3055                                         int rc, len = old->a_vals[0].bv_len;
3056                                         if ( len > new->a_vals[0].bv_len )
3057                                                 len = new->a_vals[0].bv_len;
3058                                         rc = memcmp( old->a_vals[0].bv_val,
3059                                                 new->a_vals[0].bv_val, len );
3060                                         if ( rc > 0 ) {
3061                                                 Debug( LDAP_DEBUG_SYNC,
3062                                                         "dn_callback : new entry is older than ours "
3063                                                         "%s ours %s, new %s\n",
3064                                                         rs->sr_entry->e_name.bv_val,
3065                                                         old->a_vals[0].bv_val,
3066                                                         new->a_vals[0].bv_val );
3067                                                 return LDAP_SUCCESS;
3068                                         } else if ( rc == 0 ) {
3069                                                 Debug( LDAP_DEBUG_SYNC,
3070                                                         "dn_callback : entries have identical CSN "
3071                                                         "%s %s\n",
3072                                                         rs->sr_entry->e_name.bv_val,
3073                                                         old->a_vals[0].bv_val, 0 );
3074                                                 return LDAP_SUCCESS;
3075                                         }
3076                                 }
3077
3078                                 /* We assume that attributes are saved in the same order
3079                                  * in the remote and local databases. So if we walk through
3080                                  * the attributeDescriptions one by one they should match in
3081                                  * lock step. If not, look for an add or delete.
3082                                  */
3083                                 for ( old = rs->sr_entry->e_attrs, new = dni->new_entry->e_attrs;
3084                                                 old && new; )
3085                                 {
3086                                         /* If we've seen this before, use its mod now */
3087                                         if ( new->a_flags & SLAP_ATTR_IXADD ) {
3088                                                 attr_cmp( op, NULL, new, &modtail, &ml );
3089                                                 new = new->a_next;
3090                                                 continue;
3091                                         }
3092                                         /* Skip contextCSN */
3093                                         if ( is_ctx && old->a_desc ==
3094                                                 slap_schema.si_ad_contextCSN ) {
3095                                                 old = old->a_next;
3096                                                 continue;
3097                                         }
3098
3099                                         if ( old->a_desc != new->a_desc ) {
3100                                                 Modifications *mod;
3101                                                 Attribute *tmp;
3102
3103                                                 /* If it's just been re-added later,
3104                                                  * remember that we've seen it.
3105                                                  */
3106                                                 tmp = attr_find( new, old->a_desc );
3107                                                 if ( tmp ) {
3108                                                         tmp->a_flags |= SLAP_ATTR_IXADD;
3109                                                 } else {
3110                                                         /* If it's a new attribute, pull it in.
3111                                                          */
3112                                                         tmp = attr_find( old, new->a_desc );
3113                                                         if ( !tmp ) {
3114                                                                 attr_cmp( op, NULL, new, &modtail, &ml );
3115                                                                 new = new->a_next;
3116                                                                 continue;
3117                                                         }
3118                                                         /* Delete old attr */
3119                                                         mod = ch_malloc( sizeof( Modifications ) );
3120                                                         mod->sml_op = LDAP_MOD_DELETE;
3121                                                         mod->sml_flags = 0;
3122                                                         mod->sml_desc = old->a_desc;
3123                                                         mod->sml_type = mod->sml_desc->ad_cname;
3124                                                         mod->sml_numvals = 0;
3125                                                         mod->sml_values = NULL;
3126                                                         mod->sml_nvalues = NULL;
3127                                                         *modtail = mod;
3128                                                         modtail = &mod->sml_next;
3129                                                 }
3130                                                 old = old->a_next;
3131                                                 continue;
3132                                         }
3133                                         /* kludge - always update modifiersName so that it
3134                                          * stays co-located with the other mod opattrs. But only
3135                                          * if we know there are other valid mods.
3136                                          */
3137                                         if ( old->a_desc == slap_schema.si_ad_modifiersName &&
3138                                                 dni->mods )
3139                                                 attr_cmp( op, NULL, new, &modtail, &ml );
3140                                         else
3141                                                 attr_cmp( op, old, new, &modtail, &ml );
3142                                         new = new->a_next;
3143                                         old = old->a_next;
3144                                 }
3145                                 *modtail = *ml;
3146                                 *ml = NULL;
3147                         }
3148                 }
3149         } else if ( rs->sr_type == REP_RESULT ) {
3150                 if ( rs->sr_err == LDAP_SIZELIMIT_EXCEEDED ) {
3151                         Debug( LDAP_DEBUG_ANY,
3152                                 "dn_callback : consistency error - "
3153                                 "entryUUID is not unique\n", 0, 0, 0 );
3154                 }
3155         }
3156
3157         return LDAP_SUCCESS;
3158 }
3159
3160 static int
3161 nonpresent_callback(
3162         Operation*      op,
3163         SlapReply*      rs )
3164 {
3165         syncinfo_t *si = op->o_callback->sc_private;
3166         Attribute *a;
3167         int count = 0;
3168         struct berval* present_uuid = NULL;
3169         struct nonpresent_entry *np_entry;
3170
3171         if ( rs->sr_type == REP_RESULT ) {
3172                 count = avl_free( si->si_presentlist, ch_free );
3173                 si->si_presentlist = NULL;
3174
3175         } else if ( rs->sr_type == REP_SEARCH ) {
3176                 if ( !( si->si_refreshDelete & NP_DELETE_ONE ) ) {
3177                         a = attr_find( rs->sr_entry->e_attrs, slap_schema.si_ad_entryUUID );
3178
3179                         if ( a ) {
3180                                 present_uuid = avl_find( si->si_presentlist, &a->a_nvals[0],
3181                                         syncuuid_cmp );
3182                         }
3183
3184                         if ( LogTest( LDAP_DEBUG_SYNC ) ) {
3185                                 char buf[sizeof("rid=999 not")];
3186
3187                                 snprintf( buf, sizeof(buf), "%s %s", si->si_ridtxt,
3188                                         present_uuid ? "got" : "not" );
3189
3190                                 Debug( LDAP_DEBUG_SYNC, "nonpresent_callback: %s UUID %s, dn %s\n",
3191                                         buf, a ? a->a_vals[0].bv_val : "<missing>", rs->sr_entry->e_name.bv_val );
3192                         }
3193
3194                         if ( a == NULL ) return 0;
3195                 }
3196
3197                 if ( present_uuid == NULL ) {
3198                         np_entry = (struct nonpresent_entry *)
3199                                 ch_calloc( 1, sizeof( struct nonpresent_entry ) );
3200                         np_entry->npe_name = ber_dupbv( NULL, &rs->sr_entry->e_name );
3201                         np_entry->npe_nname = ber_dupbv( NULL, &rs->sr_entry->e_nname );
3202                         LDAP_LIST_INSERT_HEAD( &si->si_nonpresentlist, np_entry, npe_link );
3203
3204                 } else {
3205                         avl_delete( &si->si_presentlist,
3206                                 &a->a_nvals[0], syncuuid_cmp );
3207                         ch_free( present_uuid );
3208                 }
3209         }
3210         return LDAP_SUCCESS;
3211 }
3212
3213 static int
3214 null_callback(
3215         Operation*      op,
3216         SlapReply*      rs )
3217 {
3218         if ( rs->sr_err != LDAP_SUCCESS &&
3219                 rs->sr_err != LDAP_REFERRAL &&
3220                 rs->sr_err != LDAP_ALREADY_EXISTS &&
3221                 rs->sr_err != LDAP_NO_SUCH_OBJECT &&
3222                 rs->sr_err != LDAP_NOT_ALLOWED_ON_NONLEAF )
3223         {
3224                 Debug( LDAP_DEBUG_ANY,
3225                         "null_callback : error code 0x%x\n",
3226                         rs->sr_err, 0, 0 );
3227         }
3228         return LDAP_SUCCESS;
3229 }
3230
3231 static struct berval *
3232 slap_uuidstr_from_normalized(
3233         struct berval* uuidstr,
3234         struct berval* normalized,
3235         void *ctx )
3236 {
3237 #if 0
3238         struct berval *new;
3239         unsigned char nibble;
3240         int i, d = 0;
3241
3242         if ( normalized == NULL ) return NULL;
3243         if ( normalized->bv_len != 16 ) return NULL;
3244
3245         if ( uuidstr ) {
3246                 new = uuidstr;
3247         } else {
3248                 new = (struct berval *)slap_sl_malloc( sizeof(struct berval), ctx );
3249                 if ( new == NULL ) {
3250                         return NULL;
3251                 }
3252         }
3253
3254         new->bv_len = 36;
3255
3256         if ( ( new->bv_val = slap_sl_malloc( new->bv_len + 1, ctx ) ) == NULL ) {
3257                 if ( new != uuidstr ) {
3258                         slap_sl_free( new, ctx );
3259                 }
3260                 return NULL;
3261         }
3262
3263         for ( i = 0; i < 16; i++ ) {
3264                 if ( i == 4 || i == 6 || i == 8 || i == 10 ) {
3265                         new->bv_val[(i<<1)+d] = '-';
3266                         d += 1;
3267                 }
3268
3269                 nibble = (normalized->bv_val[i] >> 4) & 0xF;
3270                 if ( nibble < 10 ) {
3271                         new->bv_val[(i<<1)+d] = nibble + '0';
3272                 } else {
3273                         new->bv_val[(i<<1)+d] = nibble - 10 + 'a';
3274                 }
3275
3276                 nibble = (normalized->bv_val[i]) & 0xF;
3277                 if ( nibble < 10 ) {
3278                         new->bv_val[(i<<1)+d+1] = nibble + '0';
3279                 } else {
3280                         new->bv_val[(i<<1)+d+1] = nibble - 10 + 'a';
3281                 }
3282         }
3283
3284         new->bv_val[new->bv_len] = '\0';
3285         return new;
3286 #endif
3287
3288         struct berval   *new;
3289         int             rc = 0;
3290
3291         if ( normalized == NULL ) return NULL;
3292         if ( normalized->bv_len != 16 ) return NULL;
3293
3294         if ( uuidstr ) {
3295                 new = uuidstr;
3296
3297         } else {
3298                 new = (struct berval *)slap_sl_malloc( sizeof(struct berval), ctx );
3299                 if ( new == NULL ) {
3300                         return NULL;
3301                 }
3302         }
3303
3304         new->bv_len = 36;
3305
3306         if ( ( new->bv_val = slap_sl_malloc( new->bv_len + 1, ctx ) ) == NULL ) {
3307                 rc = 1;
3308                 goto done;
3309         }
3310
3311         rc = lutil_uuidstr_from_normalized( normalized->bv_val,
3312                 normalized->bv_len, new->bv_val, new->bv_len + 1 );
3313
3314 done:;
3315         if ( rc == -1 ) {
3316                 if ( new != NULL ) {
3317                         if ( new->bv_val != NULL ) {
3318                                 slap_sl_free( new->bv_val, ctx );
3319                         }
3320
3321                         if ( new != uuidstr ) {
3322                                 slap_sl_free( new, ctx );
3323                         }
3324                 }
3325                 new = NULL;
3326
3327         } else {
3328                 new->bv_len = rc;
3329         }
3330
3331         return new;
3332 }
3333
3334 static int
3335 syncuuid_cmp( const void* v_uuid1, const void* v_uuid2 )
3336 {
3337         const struct berval *uuid1 = v_uuid1;
3338         const struct berval *uuid2 = v_uuid2;
3339         int rc = uuid1->bv_len - uuid2->bv_len;
3340         if ( rc ) return rc;
3341         return ( memcmp( uuid1->bv_val, uuid2->bv_val, uuid1->bv_len ) );
3342 }
3343
3344 void
3345 syncinfo_free( syncinfo_t *sie, int free_all )
3346 {
3347         syncinfo_t *si_next;
3348
3349         if ( free_all && sie->si_cookieState ) {
3350                 ch_free( sie->si_cookieState->cs_sids );
3351                 ber_bvarray_free( sie->si_cookieState->cs_vals );
3352                 ldap_pvt_thread_mutex_destroy( &sie->si_cookieState->cs_mutex );
3353                 ch_free( sie->si_cookieState );
3354         }
3355         do {
3356                 si_next = sie->si_next;
3357
3358                 if ( sie->si_ld ) {
3359                         if ( sie->si_conn ) {
3360                                 connection_client_stop( sie->si_conn );
3361                                 sie->si_conn = NULL;
3362                         }
3363                         ldap_unbind_ext( sie->si_ld, NULL, NULL );
3364                 }
3365         
3366                 /* re-fetch it, in case it was already removed */
3367                 ldap_pvt_thread_mutex_lock( &slapd_rq.rq_mutex );
3368                 sie->si_re = ldap_pvt_runqueue_find( &slapd_rq, do_syncrepl, sie );
3369                 if ( sie->si_re ) {
3370                         if ( ldap_pvt_runqueue_isrunning( &slapd_rq, sie->si_re ) )
3371                                 ldap_pvt_runqueue_stoptask( &slapd_rq, sie->si_re );
3372                         ldap_pvt_runqueue_remove( &slapd_rq, sie->si_re );
3373                 }
3374         
3375                 ldap_pvt_thread_mutex_unlock( &slapd_rq.rq_mutex );
3376                 ldap_pvt_thread_mutex_destroy( &sie->si_mutex );
3377         
3378                 bindconf_free( &sie->si_bindconf );
3379         
3380                 if ( sie->si_filterstr.bv_val ) {
3381                         ch_free( sie->si_filterstr.bv_val );
3382                 }
3383                 if ( sie->si_logfilterstr.bv_val ) {
3384                         ch_free( sie->si_logfilterstr.bv_val );
3385                 }
3386                 if ( sie->si_base.bv_val ) {
3387                         ch_free( sie->si_base.bv_val );
3388                 }
3389                 if ( sie->si_logbase.bv_val ) {
3390                         ch_free( sie->si_logbase.bv_val );
3391                 }
3392                 if ( sie->si_attrs ) {
3393                         int i = 0;
3394                         while ( sie->si_attrs[i] != NULL ) {
3395                                 ch_free( sie->si_attrs[i] );
3396                                 i++;
3397                         }
3398                         ch_free( sie->si_attrs );
3399                 }
3400                 if ( sie->si_exattrs ) {
3401                         int i = 0;
3402                         while ( sie->si_exattrs[i] != NULL ) {
3403                                 ch_free( sie->si_exattrs[i] );
3404                                 i++;
3405                         }
3406                         ch_free( sie->si_exattrs );
3407                 }
3408                 if ( sie->si_anlist ) {
3409                         int i = 0;
3410                         while ( sie->si_anlist[i].an_name.bv_val != NULL ) {
3411                                 ch_free( sie->si_anlist[i].an_name.bv_val );
3412                                 i++;
3413                         }
3414                         ch_free( sie->si_anlist );
3415                 }
3416                 if ( sie->si_exanlist ) {
3417                         int i = 0;
3418                         while ( sie->si_exanlist[i].an_name.bv_val != NULL ) {
3419                                 ch_free( sie->si_exanlist[i].an_name.bv_val );
3420                                 i++;
3421                         }
3422                         ch_free( sie->si_exanlist );
3423                 }
3424                 if ( sie->si_retryinterval ) {
3425                         ch_free( sie->si_retryinterval );
3426                 }
3427                 if ( sie->si_retrynum ) {
3428                         ch_free( sie->si_retrynum );
3429                 }
3430                 if ( sie->si_retrynum_init ) {
3431                         ch_free( sie->si_retrynum_init );
3432                 }
3433                 slap_sync_cookie_free( &sie->si_syncCookie, 0 );
3434                 if ( sie->si_presentlist ) {
3435                     avl_free( sie->si_presentlist, ch_free );
3436                 }
3437                 while ( !LDAP_LIST_EMPTY( &sie->si_nonpresentlist ) ) {
3438                         struct nonpresent_entry* npe;
3439                         npe = LDAP_LIST_FIRST( &sie->si_nonpresentlist );
3440                         LDAP_LIST_REMOVE( npe, npe_link );
3441                         if ( npe->npe_name ) {
3442                                 if ( npe->npe_name->bv_val ) {
3443                                         ch_free( npe->npe_name->bv_val );
3444                                 }
3445                                 ch_free( npe->npe_name );
3446                         }
3447                         if ( npe->npe_nname ) {
3448                                 if ( npe->npe_nname->bv_val ) {
3449                                         ch_free( npe->npe_nname->bv_val );
3450                                 }
3451                                 ch_free( npe->npe_nname );
3452                         }
3453                         ch_free( npe );
3454                 }
3455                 ch_free( sie );
3456                 sie = si_next;
3457         } while ( free_all && si_next );
3458 }
3459
3460
3461
3462 /* NOTE: used & documented in slapd.conf(5) */
3463 #define IDSTR                   "rid"
3464 #define PROVIDERSTR             "provider"
3465 #define SCHEMASTR               "schemachecking"
3466 #define FILTERSTR               "filter"
3467 #define SEARCHBASESTR           "searchbase"
3468 #define SCOPESTR                "scope"
3469 #define ATTRSONLYSTR            "attrsonly"
3470 #define ATTRSSTR                "attrs"
3471 #define TYPESTR                 "type"
3472 #define INTERVALSTR             "interval"
3473 #define RETRYSTR                "retry"
3474 #define SLIMITSTR               "sizelimit"
3475 #define TLIMITSTR               "timelimit"
3476 #define SYNCDATASTR             "syncdata"
3477 #define LOGBASESTR              "logbase"
3478 #define LOGFILTERSTR    "logfilter"
3479
3480 /* FIXME: undocumented */
3481 #define EXATTRSSTR              "exattrs"
3482 #define MANAGEDSAITSTR          "manageDSAit"
3483
3484 /* mandatory */
3485 #define GOT_ID                  0x0001
3486 #define GOT_PROVIDER    0x0002
3487 #define GOT_BASE                0x0004
3488
3489 /* check */
3490 #define GOT_ALL                 (GOT_ID|GOT_PROVIDER|GOT_BASE)
3491
3492 static struct {
3493         struct berval key;
3494         int val;
3495 } scopes[] = {
3496         { BER_BVC("base"), LDAP_SCOPE_BASE },
3497         { BER_BVC("one"), LDAP_SCOPE_ONELEVEL },
3498         { BER_BVC("onelevel"), LDAP_SCOPE_ONELEVEL },   /* OpenLDAP extension */
3499         { BER_BVC("children"), LDAP_SCOPE_SUBORDINATE },
3500         { BER_BVC("subord"), LDAP_SCOPE_SUBORDINATE },
3501         { BER_BVC("subordinate"), LDAP_SCOPE_SUBORDINATE },
3502         { BER_BVC("sub"), LDAP_SCOPE_SUBTREE },
3503         { BER_BVC("subtree"), LDAP_SCOPE_SUBTREE },     /* OpenLDAP extension */
3504         { BER_BVNULL, 0 }
3505 };
3506
3507 static slap_verbmasks datamodes[] = {
3508         { BER_BVC("default"), SYNCDATA_DEFAULT },
3509         { BER_BVC("accesslog"), SYNCDATA_ACCESSLOG },
3510         { BER_BVC("changelog"), SYNCDATA_CHANGELOG },
3511         { BER_BVNULL, 0 }
3512 };
3513
3514 static int
3515 parse_syncrepl_line(
3516         ConfigArgs      *c,
3517         syncinfo_t      *si )
3518 {
3519         int     gots = 0;
3520         int     i;
3521         char    *val;
3522
3523         for ( i = 1; i < c->argc; i++ ) {
3524                 if ( !strncasecmp( c->argv[ i ], IDSTR "=",
3525                                         STRLENOF( IDSTR "=" ) ) )
3526                 {
3527                         int tmp;
3528                         /* '\0' string terminator accounts for '=' */
3529                         val = c->argv[ i ] + STRLENOF( IDSTR "=" );
3530                         if ( lutil_atoi( &tmp, val ) != 0 ) {
3531                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
3532                                         "Error: parse_syncrepl_line: "
3533                                         "unable to parse syncrepl id \"%s\"", val );
3534                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3535                                 return -1;
3536                         }
3537                         if ( tmp > SLAP_SYNC_SID_MAX || tmp < 0 ) {
3538                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
3539                                         "Error: parse_syncrepl_line: "
3540                                         "syncrepl id %d is out of range [0..4095]", tmp );
3541                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3542                                 return -1;
3543                         }
3544                         si->si_rid = tmp;
3545                         sprintf( si->si_ridtxt, IDSTR "=%03d", si->si_rid );
3546                         gots |= GOT_ID;
3547                 } else if ( !strncasecmp( c->argv[ i ], PROVIDERSTR "=",
3548                                         STRLENOF( PROVIDERSTR "=" ) ) )
3549                 {
3550                         val = c->argv[ i ] + STRLENOF( PROVIDERSTR "=" );
3551                         ber_str2bv( val, 0, 1, &si->si_bindconf.sb_uri );
3552                         gots |= GOT_PROVIDER;
3553                 } else if ( !strncasecmp( c->argv[ i ], SCHEMASTR "=",
3554                                         STRLENOF( SCHEMASTR "=" ) ) )
3555                 {
3556                         val = c->argv[ i ] + STRLENOF( SCHEMASTR "=" );
3557                         if ( !strncasecmp( val, "on", STRLENOF( "on" ) ) ) {
3558                                 si->si_schemachecking = 1;
3559                         } else if ( !strncasecmp( val, "off", STRLENOF( "off" ) ) ) {
3560                                 si->si_schemachecking = 0;
3561                         } else {
3562                                 si->si_schemachecking = 1;
3563                         }
3564                 } else if ( !strncasecmp( c->argv[ i ], FILTERSTR "=",
3565                                         STRLENOF( FILTERSTR "=" ) ) )
3566                 {
3567                         val = c->argv[ i ] + STRLENOF( FILTERSTR "=" );
3568                         if ( si->si_filterstr.bv_val )
3569                                 ch_free( si->si_filterstr.bv_val );
3570                         ber_str2bv( val, 0, 1, &si->si_filterstr );
3571                 } else if ( !strncasecmp( c->argv[ i ], LOGFILTERSTR "=",
3572                                         STRLENOF( LOGFILTERSTR "=" ) ) )
3573                 {
3574                         val = c->argv[ i ] + STRLENOF( LOGFILTERSTR "=" );
3575                         if ( si->si_logfilterstr.bv_val )
3576                                 ch_free( si->si_logfilterstr.bv_val );
3577                         ber_str2bv( val, 0, 1, &si->si_logfilterstr );
3578                 } else if ( !strncasecmp( c->argv[ i ], SEARCHBASESTR "=",
3579                                         STRLENOF( SEARCHBASESTR "=" ) ) )
3580                 {
3581                         struct berval   bv;
3582                         int             rc;
3583
3584                         val = c->argv[ i ] + STRLENOF( SEARCHBASESTR "=" );
3585                         if ( si->si_base.bv_val ) {
3586                                 ch_free( si->si_base.bv_val );
3587                         }
3588                         ber_str2bv( val, 0, 0, &bv );
3589                         rc = dnNormalize( 0, NULL, NULL, &bv, &si->si_base, NULL );
3590                         if ( rc != LDAP_SUCCESS ) {
3591                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
3592                                         "Invalid base DN \"%s\": %d (%s)",
3593                                         val, rc, ldap_err2string( rc ) );
3594                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3595                                 return -1;
3596                         }
3597                         if ( !be_issubordinate( c->be, &si->si_base ) ) {
3598                                 ch_free( si->si_base.bv_val );
3599                                 BER_BVZERO( &si->si_base );
3600                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
3601                                         "Base DN \"%s\" is not within the database naming context",
3602                                         val );
3603                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3604                                 return -1;
3605                         }
3606                         gots |= GOT_BASE;
3607                 } else if ( !strncasecmp( c->argv[ i ], LOGBASESTR "=",
3608                                         STRLENOF( LOGBASESTR "=" ) ) )
3609                 {
3610                         struct berval   bv;
3611                         int             rc;
3612
3613                         val = c->argv[ i ] + STRLENOF( LOGBASESTR "=" );
3614                         if ( si->si_logbase.bv_val ) {
3615                                 ch_free( si->si_logbase.bv_val );
3616                         }
3617                         ber_str2bv( val, 0, 0, &bv );
3618                         rc = dnNormalize( 0, NULL, NULL, &bv, &si->si_logbase, NULL );
3619                         if ( rc != LDAP_SUCCESS ) {
3620                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
3621                                         "Invalid logbase DN \"%s\": %d (%s)",
3622                                         val, rc, ldap_err2string( rc ) );
3623                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3624                                 return -1;
3625                         }
3626                 } else if ( !strncasecmp( c->argv[ i ], SCOPESTR "=",
3627                                         STRLENOF( SCOPESTR "=" ) ) )
3628                 {
3629                         int j;
3630                         val = c->argv[ i ] + STRLENOF( SCOPESTR "=" );
3631                         for ( j = 0; !BER_BVISNULL(&scopes[j].key); j++ ) {
3632                                 if (!strcasecmp( val, scopes[j].key.bv_val ) ) {
3633                                         si->si_scope = scopes[j].val;
3634                                         break;
3635                                 }
3636                         }
3637                         if ( BER_BVISNULL(&scopes[j].key) ) {
3638                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
3639                                         "Error: parse_syncrepl_line: "
3640                                         "unknown scope \"%s\"", val);
3641                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3642                                 return -1;
3643                         }
3644                 } else if ( !strncasecmp( c->argv[ i ], ATTRSONLYSTR,
3645                                         STRLENOF( ATTRSONLYSTR ) ) )
3646                 {
3647                         si->si_attrsonly = 1;
3648                 } else if ( !strncasecmp( c->argv[ i ], ATTRSSTR "=",
3649                                         STRLENOF( ATTRSSTR "=" ) ) )
3650                 {
3651                         val = c->argv[ i ] + STRLENOF( ATTRSSTR "=" );
3652                         if ( !strncasecmp( val, ":include:", STRLENOF(":include:") ) ) {
3653                                 char *attr_fname;
3654                                 attr_fname = ch_strdup( val + STRLENOF(":include:") );
3655                                 si->si_anlist = file2anlist( si->si_anlist, attr_fname, " ,\t" );
3656                                 if ( si->si_anlist == NULL ) {
3657                                         ch_free( attr_fname );
3658                                         return -1;
3659                                 }
3660                                 si->si_anfile = attr_fname;
3661                         } else {
3662                                 char *str, *s, *next;
3663                                 const char *delimstr = " ,\t";
3664                                 str = ch_strdup( val );
3665                                 for ( s = ldap_pvt_strtok( str, delimstr, &next );
3666                                                 s != NULL;
3667                                                 s = ldap_pvt_strtok( NULL, delimstr, &next ) )
3668                                 {
3669                                         if ( strlen(s) == 1 && *s == '*' ) {
3670                                                 si->si_allattrs = 1;
3671                                                 val[ s - str ] = delimstr[0];
3672                                         }
3673                                         if ( strlen(s) == 1 && *s == '+' ) {
3674                                                 si->si_allopattrs = 1;
3675                                                 val [ s - str ] = delimstr[0];
3676                                         }
3677                                 }
3678                                 ch_free( str );
3679                                 si->si_anlist = str2anlist( si->si_anlist, val, " ,\t" );
3680                                 if ( si->si_anlist == NULL ) {
3681                                         return -1;
3682                                 }
3683                         }
3684                 } else if ( !strncasecmp( c->argv[ i ], EXATTRSSTR "=",
3685                                         STRLENOF( EXATTRSSTR "=" ) ) )
3686                 {
3687                         val = c->argv[ i ] + STRLENOF( EXATTRSSTR "=" );
3688                         if ( !strncasecmp( val, ":include:", STRLENOF(":include:") ) ) {
3689                                 char *attr_fname;
3690                                 attr_fname = ch_strdup( val + STRLENOF(":include:") );
3691                                 si->si_exanlist = file2anlist(
3692                                         si->si_exanlist, attr_fname, " ,\t" );
3693                                 if ( si->si_exanlist == NULL ) {
3694                                         ch_free( attr_fname );
3695                                         return -1;
3696                                 }
3697                                 ch_free( attr_fname );
3698                         } else {
3699                                 si->si_exanlist = str2anlist( si->si_exanlist, val, " ,\t" );
3700                                 if ( si->si_exanlist == NULL ) {
3701                                         return -1;
3702                                 }
3703                         }
3704                 } else if ( !strncasecmp( c->argv[ i ], TYPESTR "=",
3705                                         STRLENOF( TYPESTR "=" ) ) )
3706                 {
3707                         val = c->argv[ i ] + STRLENOF( TYPESTR "=" );
3708                         if ( !strncasecmp( val, "refreshOnly",
3709                                                 STRLENOF("refreshOnly") ) )
3710                         {
3711                                 si->si_type = si->si_ctype = LDAP_SYNC_REFRESH_ONLY;
3712                         } else if ( !strncasecmp( val, "refreshAndPersist",
3713                                                 STRLENOF("refreshAndPersist") ) )
3714                         {
3715                                 si->si_type = si->si_ctype = LDAP_SYNC_REFRESH_AND_PERSIST;
3716                                 si->si_interval = 60;
3717                         } else {
3718                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
3719                                         "Error: parse_syncrepl_line: "
3720                                         "unknown sync type \"%s\"", val);
3721                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3722                                 return -1;
3723                         }
3724                 } else if ( !strncasecmp( c->argv[ i ], INTERVALSTR "=",
3725                                         STRLENOF( INTERVALSTR "=" ) ) )
3726                 {
3727                         val = c->argv[ i ] + STRLENOF( INTERVALSTR "=" );
3728                         if ( si->si_type == LDAP_SYNC_REFRESH_AND_PERSIST ) {
3729                                 si->si_interval = 0;
3730                         } else if ( strchr( val, ':' ) != NULL ) {
3731                                 char *next, *ptr = val;
3732                                 int dd, hh, mm, ss;
3733
3734                                 dd = strtol( ptr, &next, 10 );
3735                                 if ( next == ptr || next[0] != ':' || dd < 0 ) {
3736                                         snprintf( c->cr_msg, sizeof( c->cr_msg ),
3737                                                 "Error: parse_syncrepl_line: "
3738                                                 "invalid interval \"%s\", unable to parse days", val );
3739                                         Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3740                                         return -1;
3741                                 }
3742                                 ptr = next + 1;
3743                                 hh = strtol( ptr, &next, 10 );
3744                                 if ( next == ptr || next[0] != ':' || hh < 0 || hh > 24 ) {
3745                                         snprintf( c->cr_msg, sizeof( c->cr_msg ),
3746                                                 "Error: parse_syncrepl_line: "
3747                                                 "invalid interval \"%s\", unable to parse hours", val );
3748                                         Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3749                                         return -1;
3750                                 }
3751                                 ptr = next + 1;
3752                                 mm = strtol( ptr, &next, 10 );
3753                                 if ( next == ptr || next[0] != ':' || mm < 0 || mm > 60 ) {
3754                                         snprintf( c->cr_msg, sizeof( c->cr_msg ),
3755                                                 "Error: parse_syncrepl_line: "
3756                                                 "invalid interval \"%s\", unable to parse minutes", val );
3757                                         Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3758                                         return -1;
3759                                 }
3760                                 ptr = next + 1;
3761                                 ss = strtol( ptr, &next, 10 );
3762                                 if ( next == ptr || next[0] != '\0' || ss < 0 || ss > 60 ) {
3763                                         snprintf( c->cr_msg, sizeof( c->cr_msg ),
3764                                                 "Error: parse_syncrepl_line: "
3765                                                 "invalid interval \"%s\", unable to parse seconds", val );
3766                                         Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3767                                         return -1;
3768                                 }
3769                                 si->si_interval = (( dd * 24 + hh ) * 60 + mm ) * 60 + ss;
3770                         } else {
3771                                 unsigned long   t;
3772
3773                                 if ( lutil_parse_time( val, &t ) != 0 ) {
3774                                         snprintf( c->cr_msg, sizeof( c->cr_msg ),
3775                                                 "Error: parse_syncrepl_line: "
3776                                                 "invalid interval \"%s\"", val );
3777                                         Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3778                                         return -1;
3779                                 }
3780                                 si->si_interval = (time_t)t;
3781                         }
3782                         if ( si->si_interval < 0 ) {
3783                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
3784                                         "Error: parse_syncrepl_line: "
3785                                         "invalid interval \"%ld\"",
3786                                         (long) si->si_interval);
3787                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3788                                 return -1;
3789                         }
3790                 } else if ( !strncasecmp( c->argv[ i ], RETRYSTR "=",
3791                                         STRLENOF( RETRYSTR "=" ) ) )
3792                 {
3793                         char **retry_list;
3794                         int j, k, n;
3795
3796                         val = c->argv[ i ] + STRLENOF( RETRYSTR "=" );
3797                         retry_list = (char **) ch_calloc( 1, sizeof( char * ) );
3798                         retry_list[0] = NULL;
3799
3800                         slap_str2clist( &retry_list, val, " ,\t" );
3801
3802                         for ( k = 0; retry_list && retry_list[k]; k++ ) ;
3803                         n = k / 2;
3804                         if ( k % 2 ) {
3805                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
3806                                         "Error: incomplete syncrepl retry list" );
3807                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3808                                 for ( k = 0; retry_list && retry_list[k]; k++ ) {
3809                                         ch_free( retry_list[k] );
3810                                 }
3811                                 ch_free( retry_list );
3812                                 return 1;
3813                         }
3814                         si->si_retryinterval = (time_t *) ch_calloc( n + 1, sizeof( time_t ) );
3815                         si->si_retrynum = (int *) ch_calloc( n + 1, sizeof( int ) );
3816                         si->si_retrynum_init = (int *) ch_calloc( n + 1, sizeof( int ) );
3817                         for ( j = 0; j < n; j++ ) {
3818                                 unsigned long   t;
3819                                 if ( lutil_atoul( &t, retry_list[j*2] ) != 0 ) {
3820                                         snprintf( c->cr_msg, sizeof( c->cr_msg ),
3821                                                 "Error: invalid retry interval \"%s\" (#%d)",
3822                                                 retry_list[j*2], j );
3823                                         Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3824                                         /* do some cleanup */
3825                                         return 1;
3826                                 }
3827                                 si->si_retryinterval[j] = (time_t)t;
3828                                 if ( *retry_list[j*2+1] == '+' ) {
3829                                         si->si_retrynum_init[j] = RETRYNUM_FOREVER;
3830                                         si->si_retrynum[j] = RETRYNUM_FOREVER;
3831                                         j++;
3832                                         break;
3833                                 } else {
3834                                         if ( lutil_atoi( &si->si_retrynum_init[j], retry_list[j*2+1] ) != 0
3835                                                         || si->si_retrynum_init[j] <= 0 )
3836                                         {
3837                                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
3838                                                         "Error: invalid initial retry number \"%s\" (#%d)",
3839                                                         retry_list[j*2+1], j );
3840                                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3841                                                 /* do some cleanup */
3842                                                 return 1;
3843                                         }
3844                                         if ( lutil_atoi( &si->si_retrynum[j], retry_list[j*2+1] ) != 0
3845                                                         || si->si_retrynum[j] <= 0 )
3846                                         {
3847                                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
3848                                                         "Error: invalid retry number \"%s\" (#%d)",
3849                                                         retry_list[j*2+1], j );
3850                                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3851                                                 /* do some cleanup */
3852                                                 return 1;
3853                                         }
3854                                 }
3855                         }
3856                         si->si_retrynum_init[j] = RETRYNUM_TAIL;
3857                         si->si_retrynum[j] = RETRYNUM_TAIL;
3858                         si->si_retryinterval[j] = 0;
3859                         
3860                         for ( k = 0; retry_list && retry_list[k]; k++ ) {
3861                                 ch_free( retry_list[k] );
3862                         }
3863                         ch_free( retry_list );
3864                 } else if ( !strncasecmp( c->argv[ i ], MANAGEDSAITSTR "=",
3865                                         STRLENOF( MANAGEDSAITSTR "=" ) ) )
3866                 {
3867                         val = c->argv[ i ] + STRLENOF( MANAGEDSAITSTR "=" );
3868                         if ( lutil_atoi( &si->si_manageDSAit, val ) != 0
3869                                 || si->si_manageDSAit < 0 || si->si_manageDSAit > 1 )
3870                         {
3871                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
3872                                         "invalid manageDSAit value \"%s\".\n",
3873                                         val );
3874                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3875                                 return 1;
3876                         }
3877                 } else if ( !strncasecmp( c->argv[ i ], SLIMITSTR "=",
3878                                         STRLENOF( SLIMITSTR "=") ) )
3879                 {
3880                         val = c->argv[ i ] + STRLENOF( SLIMITSTR "=" );
3881                         if ( strcasecmp( val, "unlimited" ) == 0 ) {
3882                                 si->si_slimit = 0;
3883
3884                         } else if ( lutil_atoi( &si->si_slimit, val ) != 0 || si->si_slimit < 0 ) {
3885                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
3886                                         "invalid size limit value \"%s\".\n",
3887                                         val );
3888                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3889                                 return 1;
3890                         }
3891                 } else if ( !strncasecmp( c->argv[ i ], TLIMITSTR "=",
3892                                         STRLENOF( TLIMITSTR "=" ) ) )
3893                 {
3894                         val = c->argv[ i ] + STRLENOF( TLIMITSTR "=" );
3895                         if ( strcasecmp( val, "unlimited" ) == 0 ) {
3896                                 si->si_tlimit = 0;
3897
3898                         } else if ( lutil_atoi( &si->si_tlimit, val ) != 0 || si->si_tlimit < 0 ) {
3899                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
3900                                         "invalid time limit value \"%s\".\n",
3901                                         val );
3902                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3903                                 return 1;
3904                         }
3905                 } else if ( !strncasecmp( c->argv[ i ], SYNCDATASTR "=",
3906                                         STRLENOF( SYNCDATASTR "=" ) ) )
3907                 {
3908                         val = c->argv[ i ] + STRLENOF( SYNCDATASTR "=" );
3909                         si->si_syncdata = verb_to_mask( val, datamodes );
3910                 } else if ( bindconf_parse( c->argv[i], &si->si_bindconf ) ) {
3911                         snprintf( c->cr_msg, sizeof( c->cr_msg ),
3912                                 "Error: parse_syncrepl_line: "
3913                                 "unable to parse \"%s\"\n", c->argv[ i ] );
3914                         Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3915                         return -1;
3916                 }
3917         }
3918
3919         if ( gots != GOT_ALL ) {
3920                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
3921                         "Error: Malformed \"syncrepl\" line in slapd config file, missing%s%s%s",
3922                         gots & GOT_ID ? "" : " "IDSTR,
3923                         gots & GOT_PROVIDER ? "" : " "PROVIDERSTR,
3924                         gots & GOT_BASE ? "" : " "SEARCHBASESTR );
3925                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3926                 return -1;
3927         }
3928
3929         return 0;
3930 }
3931
3932 static int
3933 add_syncrepl(
3934         ConfigArgs *c )
3935 {
3936         syncinfo_t *si;
3937         int     rc = 0;
3938
3939         if ( !( c->be->be_search && c->be->be_add && c->be->be_modify && c->be->be_delete ) ) {
3940                 snprintf( c->cr_msg, sizeof(c->cr_msg), "database %s does not support "
3941                         "operations required for syncrepl", c->be->be_type );
3942                 Debug( LDAP_DEBUG_ANY, "%s: %s\n", c->log, c->cr_msg, 0 );
3943                 return 1;
3944         }
3945         if ( BER_BVISEMPTY( &c->be->be_rootdn ) ) {
3946                 strcpy( c->cr_msg, "rootDN must be defined before syncrepl may be used" );
3947                 Debug( LDAP_DEBUG_ANY, "%s: %s\n", c->log, c->cr_msg, 0 );
3948                 return 1;
3949         }
3950         si = (syncinfo_t *) ch_calloc( 1, sizeof( syncinfo_t ) );
3951
3952         if ( si == NULL ) {
3953                 Debug( LDAP_DEBUG_ANY, "out of memory in add_syncrepl\n", 0, 0, 0 );
3954                 return 1;
3955         }
3956
3957         si->si_bindconf.sb_tls = SB_TLS_OFF;
3958         si->si_bindconf.sb_method = LDAP_AUTH_SIMPLE;
3959         si->si_schemachecking = 0;
3960         ber_str2bv( "(objectclass=*)", STRLENOF("(objectclass=*)"), 1,
3961                 &si->si_filterstr );
3962         si->si_base.bv_val = NULL;
3963         si->si_scope = LDAP_SCOPE_SUBTREE;
3964         si->si_attrsonly = 0;
3965         si->si_anlist = (AttributeName *) ch_calloc( 1, sizeof( AttributeName ) );
3966         si->si_exanlist = (AttributeName *) ch_calloc( 1, sizeof( AttributeName ) );
3967         si->si_attrs = NULL;
3968         si->si_allattrs = 0;
3969         si->si_allopattrs = 0;
3970         si->si_exattrs = NULL;
3971         si->si_type = si->si_ctype = LDAP_SYNC_REFRESH_ONLY;
3972         si->si_interval = 86400;
3973         si->si_retryinterval = NULL;
3974         si->si_retrynum_init = NULL;
3975         si->si_retrynum = NULL;
3976         si->si_manageDSAit = 0;
3977         si->si_tlimit = 0;
3978         si->si_slimit = 0;
3979
3980         si->si_presentlist = NULL;
3981         LDAP_LIST_INIT( &si->si_nonpresentlist );
3982         ldap_pvt_thread_mutex_init( &si->si_mutex );
3983
3984         rc = parse_syncrepl_line( c, si );
3985
3986         if ( rc == 0 ) {
3987                 /* Must be LDAPv3 because we need controls */
3988                 switch ( si->si_bindconf.sb_version ) {
3989                 case 0:
3990                         /* not explicitly set */
3991                         si->si_bindconf.sb_version = LDAP_VERSION3;
3992                         break;
3993                 case 3:
3994                         /* explicitly set */
3995                         break;
3996                 default:
3997                         Debug( LDAP_DEBUG_ANY,
3998                                 "version %d incompatible with syncrepl\n",
3999                                 si->si_bindconf.sb_version, 0, 0 );
4000                         syncinfo_free( si, 0 ); 
4001                         return 1;
4002                 }
4003
4004                 si->si_be = c->be;
4005                 if ( slapMode & SLAP_SERVER_MODE ) {
4006                         Listener **l = slapd_get_listeners();
4007                         int isMe = 0;
4008
4009                         /* check if URL points to current server. If so, ignore
4010                          * this configuration. We require an exact match. Just
4011                          * in case they really want to do this, they can vary
4012                          * the case of the URL to allow it.
4013                          */
4014                         if ( l && !SLAP_DBHIDDEN( c->be ) ) {
4015                                 int i;
4016                                 for ( i=0; l[i]; i++ ) {
4017                                         if ( bvmatch( &l[i]->sl_url, &si->si_bindconf.sb_uri ) ) {
4018                                                 isMe = 1;
4019                                                 break;
4020                                         }
4021                                 }
4022                         }
4023
4024                         if ( !isMe ) {
4025                                 init_syncrepl( si );
4026                                 ldap_pvt_thread_mutex_lock( &slapd_rq.rq_mutex );
4027                                 si->si_re = ldap_pvt_runqueue_insert( &slapd_rq,
4028                                         si->si_interval, do_syncrepl, si, "do_syncrepl",
4029                                         si->si_ridtxt );
4030                                 ldap_pvt_thread_mutex_unlock( &slapd_rq.rq_mutex );
4031                                 if ( si->si_re )
4032                                         rc = config_sync_shadow( c ) ? -1 : 0;
4033                                 else
4034                                         rc = -1;
4035                         }
4036                 } else {
4037                         /* mirrormode still needs to see this flag in tool mode */
4038                         rc = config_sync_shadow( c ) ? -1 : 0;
4039                 }
4040         }
4041
4042 #ifdef HAVE_TLS
4043         /* Use main slapd defaults */
4044         bindconf_tls_defaults( &si->si_bindconf );
4045 #endif
4046         if ( rc < 0 ) {
4047                 Debug( LDAP_DEBUG_ANY, "failed to add syncinfo\n", 0, 0, 0 );
4048                 syncinfo_free( si, 0 ); 
4049                 return 1;
4050         } else {
4051                 Debug( LDAP_DEBUG_CONFIG,
4052                         "Config: ** successfully added syncrepl \"%s\"\n",
4053                         BER_BVISNULL( &si->si_bindconf.sb_uri ) ?
4054                         "(null)" : si->si_bindconf.sb_uri.bv_val, 0, 0 );
4055                 if ( !si->si_schemachecking ) {
4056                         SLAP_DBFLAGS(c->be) |= SLAP_DBFLAG_NO_SCHEMA_CHECK;
4057                 }
4058                 if ( c->be->be_syncinfo ) {
4059                         si->si_cookieState = c->be->be_syncinfo->si_cookieState;
4060                 } else {
4061                         si->si_cookieState = ch_calloc( 1, sizeof( cookie_state ));
4062                         ldap_pvt_thread_mutex_init( &si->si_cookieState->cs_mutex );
4063                 }
4064                 si->si_next = c->be->be_syncinfo;
4065                 c->be->be_syncinfo = si;
4066                 return 0;
4067         }
4068 }
4069
4070 static void
4071 syncrepl_unparse( syncinfo_t *si, struct berval *bv )
4072 {
4073         struct berval bc, uri;
4074         char buf[BUFSIZ*2], *ptr;
4075         int i;
4076
4077 #define WHATSLEFT       ( sizeof( buf ) - ( ptr - buf ) )
4078
4079         BER_BVZERO( bv );
4080
4081         /* temporarily inhibit bindconf from printing URI */
4082         uri = si->si_bindconf.sb_uri;
4083         BER_BVZERO( &si->si_bindconf.sb_uri );
4084         si->si_bindconf.sb_version = 0;
4085         bindconf_unparse( &si->si_bindconf, &bc );
4086         si->si_bindconf.sb_uri = uri;
4087         si->si_bindconf.sb_version = LDAP_VERSION3;
4088
4089         ptr = buf;
4090         assert( si->si_rid >= 0 && si->si_rid <= SLAP_SYNC_SID_MAX );
4091         ptr += snprintf( ptr, WHATSLEFT, IDSTR "=%03d " PROVIDERSTR "=%s",
4092                 si->si_rid, si->si_bindconf.sb_uri.bv_val );
4093         if ( ptr - buf >= sizeof( buf ) ) return;
4094         if ( !BER_BVISNULL( &bc ) ) {
4095                 if ( WHATSLEFT <= bc.bv_len ) {
4096                         free( bc.bv_val );
4097                         return;
4098                 }
4099                 ptr = lutil_strcopy( ptr, bc.bv_val );
4100                 free( bc.bv_val );
4101         }
4102         if ( !BER_BVISEMPTY( &si->si_filterstr ) ) {
4103                 if ( WHATSLEFT <= STRLENOF( " " FILTERSTR "=\"" "\"" ) + si->si_filterstr.bv_len ) return;
4104                 ptr = lutil_strcopy( ptr, " " FILTERSTR "=\"" );
4105                 ptr = lutil_strcopy( ptr, si->si_filterstr.bv_val );
4106                 *ptr++ = '"';
4107         }
4108         if ( !BER_BVISNULL( &si->si_base ) ) {
4109                 if ( WHATSLEFT <= STRLENOF( " " SEARCHBASESTR "=\"" "\"" ) + si->si_base.bv_len ) return;
4110                 ptr = lutil_strcopy( ptr, " " SEARCHBASESTR "=\"" );
4111                 ptr = lutil_strcopy( ptr, si->si_base.bv_val );
4112                 *ptr++ = '"';
4113         }
4114         if ( !BER_BVISEMPTY( &si->si_logfilterstr ) ) {
4115                 if ( WHATSLEFT <= STRLENOF( " " LOGFILTERSTR "=\"" "\"" ) + si->si_logfilterstr.bv_len ) return;
4116                 ptr = lutil_strcopy( ptr, " " LOGFILTERSTR "=\"" );
4117                 ptr = lutil_strcopy( ptr, si->si_logfilterstr.bv_val );
4118                 *ptr++ = '"';
4119         }
4120         if ( !BER_BVISNULL( &si->si_logbase ) ) {
4121                 if ( WHATSLEFT <= STRLENOF( " " LOGBASESTR "=\"" "\"" ) + si->si_logbase.bv_len ) return;
4122                 ptr = lutil_strcopy( ptr, " " LOGBASESTR "=\"" );
4123                 ptr = lutil_strcopy( ptr, si->si_logbase.bv_val );
4124                 *ptr++ = '"';
4125         }
4126         for (i=0; !BER_BVISNULL(&scopes[i].key);i++) {
4127                 if ( si->si_scope == scopes[i].val ) {
4128                         if ( WHATSLEFT <= STRLENOF( " " SCOPESTR "=" ) + scopes[i].key.bv_len ) return;
4129                         ptr = lutil_strcopy( ptr, " " SCOPESTR "=" );
4130                         ptr = lutil_strcopy( ptr, scopes[i].key.bv_val );
4131                         break;
4132                 }
4133         }
4134         if ( si->si_attrsonly ) {
4135                 if ( WHATSLEFT <= STRLENOF( " " ATTRSONLYSTR "=\"" "\"" ) ) return;
4136                 ptr = lutil_strcopy( ptr, " " ATTRSONLYSTR );
4137         }
4138         if ( si->si_anfile ) {
4139                 if ( WHATSLEFT <= STRLENOF( " " ATTRSSTR "=\":include:" "\"" ) + strlen( si->si_anfile ) ) return;
4140                 ptr = lutil_strcopy( ptr, " " ATTRSSTR "=:include:\"" );
4141                 ptr = lutil_strcopy( ptr, si->si_anfile );
4142                 *ptr++ = '"';
4143         } else if ( si->si_allattrs || si->si_allopattrs ||
4144                 ( si->si_anlist && !BER_BVISNULL(&si->si_anlist[0].an_name) ) )
4145         {
4146                 char *old;
4147
4148                 if ( WHATSLEFT <= STRLENOF( " " ATTRSONLYSTR "=\"" "\"" ) ) return;
4149                 ptr = lutil_strcopy( ptr, " " ATTRSSTR "=\"" );
4150                 old = ptr;
4151                 /* FIXME: add check for overflow */
4152                 ptr = anlist_unparse( si->si_anlist, ptr, WHATSLEFT );
4153                 if ( si->si_allattrs ) {
4154                         if ( WHATSLEFT <= STRLENOF( ",*\"" ) ) return;
4155                         if ( old != ptr ) *ptr++ = ',';
4156                         *ptr++ = '*';
4157                 }
4158                 if ( si->si_allopattrs ) {
4159                         if ( WHATSLEFT <= STRLENOF( ",+\"" ) ) return;
4160                         if ( old != ptr ) *ptr++ = ',';
4161                         *ptr++ = '+';
4162                 }
4163                 *ptr++ = '"';
4164         }
4165         if ( si->si_exanlist && !BER_BVISNULL(&si->si_exanlist[0].an_name) ) {
4166                 if ( WHATSLEFT <= STRLENOF( " " EXATTRSSTR "=" ) ) return;
4167                 ptr = lutil_strcopy( ptr, " " EXATTRSSTR "=" );
4168                 /* FIXME: add check for overflow */
4169                 ptr = anlist_unparse( si->si_exanlist, ptr, WHATSLEFT );
4170         }
4171         if ( WHATSLEFT <= STRLENOF( " " SCHEMASTR "=" ) + STRLENOF( "off" ) ) return;
4172         ptr = lutil_strcopy( ptr, " " SCHEMASTR "=" );
4173         ptr = lutil_strcopy( ptr, si->si_schemachecking ? "on" : "off" );
4174         
4175         if ( WHATSLEFT <= STRLENOF( " " TYPESTR "=" ) + STRLENOF( "refreshAndPersist" ) ) return;
4176         ptr = lutil_strcopy( ptr, " " TYPESTR "=" );
4177         ptr = lutil_strcopy( ptr, si->si_type == LDAP_SYNC_REFRESH_AND_PERSIST ?
4178                 "refreshAndPersist" : "refreshOnly" );
4179
4180         if ( si->si_type == LDAP_SYNC_REFRESH_ONLY ) {
4181                 int dd, hh, mm, ss;
4182
4183                 dd = si->si_interval;
4184                 ss = dd % 60;
4185                 dd /= 60;
4186                 mm = dd % 60;
4187                 dd /= 60;
4188                 hh = dd % 24;
4189                 dd /= 24;
4190                 ptr = lutil_strcopy( ptr, " " INTERVALSTR "=" );
4191                 ptr += snprintf( ptr, WHATSLEFT, "%02d:%02d:%02d:%02d", dd, hh, mm, ss );
4192                 if ( ptr - buf >= sizeof( buf ) ) return;
4193         } else if ( si->si_retryinterval ) {
4194                 int space=0;
4195                 if ( WHATSLEFT <= STRLENOF( " " RETRYSTR "=\"" "\"" ) ) return;
4196                 ptr = lutil_strcopy( ptr, " " RETRYSTR "=\"" );
4197                 for (i=0; si->si_retryinterval[i]; i++) {
4198                         if ( space ) *ptr++ = ' ';
4199                         space = 1;
4200                         ptr += snprintf( ptr, WHATSLEFT, "%ld ", (long) si->si_retryinterval[i] );
4201                         if ( si->si_retrynum_init[i] == RETRYNUM_FOREVER )
4202                                 *ptr++ = '+';
4203                         else
4204                                 ptr += snprintf( ptr, WHATSLEFT, "%d", si->si_retrynum_init[i] );
4205                 }
4206                 if ( WHATSLEFT <= STRLENOF( "\"" ) ) return;
4207                 *ptr++ = '"';
4208         }
4209
4210         if ( si->si_slimit ) {
4211                 if ( WHATSLEFT <= STRLENOF( " " SLIMITSTR "=" ) ) return;
4212                 ptr = lutil_strcopy( ptr, " " SLIMITSTR "=" );
4213                 ptr += snprintf( ptr, WHATSLEFT, "%d", si->si_slimit );
4214         }
4215
4216         if ( si->si_tlimit ) {
4217                 if ( WHATSLEFT <= STRLENOF( " " TLIMITSTR "=" ) ) return;
4218                 ptr = lutil_strcopy( ptr, " " TLIMITSTR "=" );
4219                 ptr += snprintf( ptr, WHATSLEFT, "%d", si->si_tlimit );
4220         }
4221
4222         if ( si->si_syncdata ) {
4223                 if ( enum_to_verb( datamodes, si->si_syncdata, &bc ) >= 0 ) {
4224                         if ( WHATSLEFT <= STRLENOF( " " SYNCDATASTR "=" ) + bc.bv_len ) return;
4225                         ptr = lutil_strcopy( ptr, " " SYNCDATASTR "=" );
4226                         ptr = lutil_strcopy( ptr, bc.bv_val );
4227                 }
4228         }
4229         bc.bv_len = ptr - buf;
4230         bc.bv_val = buf;
4231         ber_dupbv( bv, &bc );
4232 }
4233
4234 int
4235 syncrepl_config( ConfigArgs *c )
4236 {
4237         if (c->op == SLAP_CONFIG_EMIT) {
4238                 if ( c->be->be_syncinfo ) {
4239                         struct berval bv;
4240                         syncinfo_t *si;
4241
4242                         for ( si = c->be->be_syncinfo; si; si=si->si_next ) {
4243                                 syncrepl_unparse( si, &bv ); 
4244                                 ber_bvarray_add( &c->rvalue_vals, &bv );
4245                         }
4246                         return 0;
4247                 }
4248                 return 1;
4249         } else if ( c->op == LDAP_MOD_DELETE ) {
4250                 cookie_state *cs = NULL;
4251                 if ( c->be->be_syncinfo ) {
4252                         syncinfo_t *si, **sip;
4253                         int i;
4254
4255                         cs = c->be->be_syncinfo->si_cookieState;
4256                         for ( sip = &c->be->be_syncinfo, i=0; *sip; i++ ) {
4257                                 si = *sip;
4258                                 if ( c->valx == -1 || i == c->valx ) {
4259                                         int isrunning = 0;
4260                                         *sip = si->si_next;
4261                                         /* If the task is currently active, we have to leave
4262                                          * it running. It will exit on its own. This will only
4263                                          * happen when running on the cn=config DB.
4264                                          */
4265                                         if ( si->si_re ) {
4266                                                 ldap_pvt_thread_mutex_lock( &slapd_rq.rq_mutex );
4267                                                 isrunning = ldap_pvt_runqueue_isrunning( &slapd_rq, si->si_re );
4268                                                 ldap_pvt_thread_mutex_unlock( &slapd_rq.rq_mutex );
4269                                         }
4270                                         if ( si->si_re && isrunning ) {
4271                                                 si->si_ctype = 0;
4272                                         } else {
4273                                                 syncinfo_free( si, 0 );
4274                                         }
4275                                         if ( i == c->valx )
4276                                                 break;
4277                                 } else {
4278                                         sip = &si->si_next;
4279                                 }
4280                         }
4281                 }
4282                 if ( !c->be->be_syncinfo ) {
4283                         SLAP_DBFLAGS( c->be ) &= ~(SLAP_DBFLAG_SHADOW|SLAP_DBFLAG_SYNC_SHADOW);
4284                         if ( cs ) {
4285                                 ber_bvarray_free( cs->cs_vals );
4286                                 ldap_pvt_thread_mutex_destroy( &cs->cs_mutex );
4287                                 ch_free( cs );
4288                         }
4289                 }
4290                 return 0;
4291         }
4292         if ( SLAP_SLURP_SHADOW( c->be ) ) {
4293                 Debug(LDAP_DEBUG_ANY, "%s: "
4294                         "syncrepl: database already shadowed.\n",
4295                         c->log, 0, 0);
4296                 return(1);
4297         } else {
4298                 return add_syncrepl( c );
4299         }
4300 }