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