]> git.sur5r.net Git - openldap/blob - servers/slapd/syncrepl.c
a0de80d99ca48a34b138ca172d6ff18803d3cb3d
[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 mods from this op:
2232                          * If delOldRDN is TRUE then we should see a delete modop
2233                          * for oldDesc. The valid cases are:
2234                          *  oldNattr had only one value, newDesc == oldDesc:
2235                          *    we'll see a replace modop for oldDesc
2236                          *  oldNattr had only one value, newDesc != oldDesc:
2237                          *    we'll see a delete modop for oldDesc with no values
2238                          *  oldNattr had multiple values:
2239                          *    we'll see a delete modop for oldDesc / old RDN value
2240                          *
2241                          * If the modop has only one value, just drop it; it's already
2242                          * present in orr_modlist. Otherwise, if we see a delete for
2243                          * oldDesc with more values, we must remove the old RDN value
2244                          * from that modop since it's already in orr_modlist.
2245                          *
2246                          * Likewise if we see a replace on oldDesc with multiple values,
2247                          * we must drop the new RDN value and turn it into an add.
2248                          *
2249                          * We should also see an add modop for newDesc. (But not if
2250                          * we got a replace modop due to delOldRDN.) If it has
2251                          * multiple values, we'll have to drop the new RDN value.
2252                          */
2253                         modtail = &op->orr_modlist;
2254                         if ( dni.delOldRDN ) {
2255                                 for ( ml = &dni.mods; *ml; ml = &(*ml)->sml_next ) {
2256                                         if ( (*ml)->sml_desc == dni.oldDesc ) {
2257                                                 short sm_op;
2258                                                 mod = *ml;
2259                                                 if ( mod->sml_op == LDAP_MOD_REPLACE &&
2260                                                         dni.oldDesc != dni.newDesc ) {
2261                                                         /* This Replace is due to other Mods.
2262                                                          * Just let it ride.
2263                                                          */
2264                                                         continue;
2265                                                 }
2266                                                 if ( mod->sml_numvals <= 1 &&
2267                                                         dni.oldNattr->a_numvals == 1 &&
2268                                                         ( mod->sml_op == LDAP_MOD_DELETE ||
2269                                                           mod->sml_op == LDAP_MOD_REPLACE )) {
2270                                                         /* Drop this op */
2271                                                         *ml = mod->sml_next;
2272                                                         mod->sml_next = NULL;
2273                                                         slap_mods_free( mod, 1 );
2274                                                         if ( mod->sml_op == LDAP_MOD_REPLACE )
2275                                                                 got_replace = 1;
2276                                                         break;
2277                                                 }
2278                                                 if ( mod->sml_op == LDAP_MOD_ADD )
2279                                                         continue;
2280                                                 if ( mod->sml_op == LDAP_MOD_DELETE && mod->sml_numvals == 0 )
2281                                                         continue;
2282                                                 if ( mod->sml_op == LDAP_MOD_REPLACE ) {
2283                                                         got_replace = 1;
2284                                                         sm_op = SLAP_MOD_SOFTADD;
2285                                                 } else {
2286                                                         sm_op = LDAP_MOD_DELETE;
2287                                                 }
2288                                                 for ( m2 = op->orr_modlist; m2; m2=m2->sml_next ) {
2289                                                         if ( m2->sml_desc == dni.oldDesc &&
2290                                                                 m2->sml_op == sm_op ) break;
2291                                                 }
2292                                                 for ( i=0; i<mod->sml_numvals; i++ ) {
2293                                                         if ( bvmatch( &mod->sml_values[i], &m2->sml_values[0] )) {
2294                                                                 mod->sml_numvals--;
2295                                                                 ch_free( mod->sml_values[i].bv_val );
2296                                                                 mod->sml_values[i] = mod->sml_values[mod->sml_numvals];
2297                                                                 BER_BVZERO( &mod->sml_values[mod->sml_numvals] );
2298                                                                 if ( mod->sml_nvalues ) {
2299                                                                         ch_free( mod->sml_nvalues[i].bv_val );
2300                                                                         mod->sml_nvalues[i] = mod->sml_nvalues[mod->sml_numvals];
2301                                                                         BER_BVZERO( &mod->sml_nvalues[mod->sml_numvals] );
2302                                                                 }
2303                                                                 break;
2304                                                         }
2305                                                 }
2306                                                 break;
2307                                         }
2308                                 }
2309                         }
2310                         if ( !got_replace ) {
2311                                 for ( ml = &dni.mods; *ml; ml = &(*ml)->sml_next ) {
2312                                         if ( (*ml)->sml_desc == dni.newDesc ) {
2313                                                 mod = *ml;
2314                                                 if ( mod->sml_op != LDAP_MOD_ADD )
2315                                                         continue;
2316                                                 if ( mod->sml_numvals == 1 ) {
2317                                                         /* Drop this op */
2318                                                         *ml = mod->sml_next;
2319                                                         mod->sml_next = NULL;
2320                                                         slap_mods_free( mod, 1 );
2321                                                         break;
2322                                                 }
2323                                                 for ( m2 = op->orr_modlist; m2; m2=m2->sml_next ) {
2324                                                         if ( m2->sml_desc == dni.oldDesc &&
2325                                                                 m2->sml_op == SLAP_MOD_SOFTADD ) break;
2326                                                 }
2327                                                 for ( i=0; i<mod->sml_numvals; i++ ) {
2328                                                         if ( bvmatch( &mod->sml_values[i], &m2->sml_values[0] )) {
2329                                                                 mod->sml_numvals--;
2330                                                                 ch_free( mod->sml_values[i].bv_val );
2331                                                                 mod->sml_values[i] = mod->sml_values[mod->sml_numvals];
2332                                                                 BER_BVZERO( &mod->sml_values[mod->sml_numvals] );
2333                                                                 if ( mod->sml_nvalues ) {
2334                                                                         ch_free( mod->sml_nvalues[i].bv_val );
2335                                                                         mod->sml_nvalues[i] = mod->sml_nvalues[mod->sml_numvals];
2336                                                                         BER_BVZERO( &mod->sml_nvalues[mod->sml_numvals] );
2337                                                                 }
2338                                                                 break;
2339                                                         }
2340                                                 }
2341                                                 break;
2342                                         }
2343                                 }
2344                         }
2345                                         
2346                         /* RDNs must be NUL-terminated for back-ldap */
2347                         noldp = op->orr_newrdn;
2348                         ber_dupbv_x( &op->orr_newrdn, &noldp, op->o_tmpmemctx );
2349                         noldp = op->orr_nnewrdn;
2350                         ber_dupbv_x( &op->orr_nnewrdn, &noldp, op->o_tmpmemctx );
2351
2352                         /* Setup opattrs too */
2353                         {
2354                                 static AttributeDescription *nullattr = NULL;
2355                                 static AttributeDescription **const opattrs[] = {
2356                                         &slap_schema.si_ad_entryCSN,
2357                                         &slap_schema.si_ad_modifiersName,
2358                                         &slap_schema.si_ad_modifyTimestamp,
2359                                         &nullattr
2360                                 };
2361                                 AttributeDescription *opattr;
2362                                 int i;
2363
2364                                 modtail = &m2;
2365                                 /* pull mod off incoming modlist */
2366                                 for ( i = 0; (opattr = *opattrs[i]) != NULL; i++ ) {
2367                                         for ( ml = &dni.mods; *ml; ml = &(*ml)->sml_next )
2368                                         {
2369                                                 if ( (*ml)->sml_desc == opattr ) {
2370                                                         mod = *ml;
2371                                                         *ml = mod->sml_next;
2372                                                         mod->sml_next = NULL;
2373                                                         *modtail = mod;
2374                                                         modtail = &mod->sml_next;
2375                                                         break;
2376                                                 }
2377                                         }
2378                                 }
2379                                 /* If there are still Modifications left, put the opattrs
2380                                  * back, and let be_modify run. Otherwise, append the opattrs
2381                                  * to the orr_modlist.
2382                                  */
2383                                 if ( dni.mods ) {
2384                                         mod = dni.mods;
2385                                 } else {
2386                                         mod = op->orr_modlist;
2387                                 }
2388                                 for ( ; mod->sml_next; mod=mod->sml_next );
2389                                 mod->sml_next = m2;
2390                         }
2391                         op->o_bd = si->si_wbe;
2392                         rc = op->o_bd->be_modrdn( op, &rs_modify );
2393                         op->o_tmpfree( op->orr_nnewrdn.bv_val, op->o_tmpmemctx );
2394                         op->o_tmpfree( op->orr_newrdn.bv_val, op->o_tmpmemctx );
2395
2396                         slap_mods_free( op->orr_modlist, 1 );
2397                         Debug( LDAP_DEBUG_SYNC,
2398                                         "syncrepl_entry: %s be_modrdn (%d)\n", 
2399                                         si->si_ridtxt, rc, 0 );
2400                         op->o_bd = be;
2401                         /* Renamed entries may still have other mods so just fallthru */
2402                         op->o_req_dn = entry->e_name;
2403                         op->o_req_ndn = entry->e_nname;
2404                 }
2405                 if ( dni.mods ) {
2406                         op->o_tag = LDAP_REQ_MODIFY;
2407                         op->orm_modlist = dni.mods;
2408                         op->orm_no_opattrs = 1;
2409                         op->o_bd = si->si_wbe;
2410
2411                         rc = op->o_bd->be_modify( op, &rs_modify );
2412                         slap_mods_free( op->orm_modlist, 1 );
2413                         op->orm_no_opattrs = 0;
2414                         Debug( LDAP_DEBUG_SYNC,
2415                                         "syncrepl_entry: %s be_modify (%d)\n", 
2416                                         si->si_ridtxt, rc, 0 );
2417                         if ( rs_modify.sr_err != LDAP_SUCCESS ) {
2418                                 Debug( LDAP_DEBUG_ANY,
2419                                         "syncrepl_entry: %s be_modify failed (%d)\n",
2420                                         si->si_ridtxt, rs_modify.sr_err, 0 );
2421                         }
2422                         op->o_bd = be;
2423                 } else if ( !dni.renamed ) {
2424                         Debug( LDAP_DEBUG_SYNC,
2425                                         "syncrepl_entry: %s entry unchanged, ignored (%s)\n", 
2426                                         si->si_ridtxt, op->o_req_dn.bv_val, 0 );
2427                 }
2428                 goto done;
2429         case LDAP_SYNC_DELETE :
2430                 if ( !BER_BVISNULL( &dni.dn ) ) {
2431                         op->o_req_dn = dni.dn;
2432                         op->o_req_ndn = dni.ndn;
2433                         op->o_tag = LDAP_REQ_DELETE;
2434                         op->o_bd = si->si_wbe;
2435                         rc = op->o_bd->be_delete( op, &rs_delete );
2436                         Debug( LDAP_DEBUG_SYNC,
2437                                         "syncrepl_entry: %s be_delete (%d)\n", 
2438                                         si->si_ridtxt, rc, 0 );
2439
2440                         while ( rs_delete.sr_err == LDAP_SUCCESS
2441                                 && op->o_delete_glue_parent ) {
2442                                 op->o_delete_glue_parent = 0;
2443                                 if ( !be_issuffix( be, &op->o_req_ndn ) ) {
2444                                         slap_callback cb = { NULL };
2445                                         cb.sc_response = slap_null_cb;
2446                                         dnParent( &op->o_req_ndn, &pdn );
2447                                         op->o_req_dn = pdn;
2448                                         op->o_req_ndn = pdn;
2449                                         op->o_callback = &cb;
2450                                         op->o_bd->be_delete( op, &rs_delete );
2451                                 } else {
2452                                         break;
2453                                 }
2454                         }
2455                         op->o_bd = be;
2456                 }
2457                 goto done;
2458
2459         default :
2460                 Debug( LDAP_DEBUG_ANY,
2461                         "syncrepl_entry: %s unknown syncstate\n", si->si_ridtxt, 0, 0 );
2462                 goto done;
2463         }
2464
2465 done:
2466         if ( !BER_BVISNULL( &syncUUID_strrep ) ) {
2467                 slap_sl_free( syncUUID_strrep.bv_val, op->o_tmpmemctx );
2468                 BER_BVZERO( &syncUUID_strrep );
2469         }
2470         if ( !BER_BVISNULL( &dni.ndn ) ) {
2471                 op->o_tmpfree( dni.ndn.bv_val, op->o_tmpmemctx );
2472         }
2473         if ( !BER_BVISNULL( &dni.dn ) ) {
2474                 op->o_tmpfree( dni.dn.bv_val, op->o_tmpmemctx );
2475         }
2476         if ( entry ) {
2477                 entry_free( entry );
2478         }
2479         if ( syncCSN ) {
2480                 slap_graduate_commit_csn( op );
2481         }
2482         if ( !BER_BVISNULL( &op->o_csn ) && freecsn ) {
2483                 op->o_tmpfree( op->o_csn.bv_val, op->o_tmpmemctx );
2484         }
2485         BER_BVZERO( &op->o_csn );
2486         return rc;
2487 }
2488
2489 static struct berval gcbva[] = {
2490         BER_BVC("top"),
2491         BER_BVC("glue"),
2492         BER_BVNULL
2493 };
2494
2495 #define NP_DELETE_ONE   2
2496
2497 static void
2498 syncrepl_del_nonpresent(
2499         Operation *op,
2500         syncinfo_t *si,
2501         BerVarray uuids,
2502         struct sync_cookie *sc,
2503         int m )
2504 {
2505         Backend* be = op->o_bd;
2506         slap_callback   cb = { NULL };
2507         SlapReply       rs_search = {REP_RESULT};
2508         SlapReply       rs_delete = {REP_RESULT};
2509         SlapReply       rs_modify = {REP_RESULT};
2510         struct nonpresent_entry *np_list, *np_prev;
2511         int rc;
2512         AttributeName   an[2];
2513
2514         struct berval pdn = BER_BVNULL;
2515         struct berval csn;
2516
2517         op->o_req_dn = si->si_base;
2518         op->o_req_ndn = si->si_base;
2519
2520         cb.sc_response = nonpresent_callback;
2521         cb.sc_private = si;
2522
2523         op->o_callback = &cb;
2524         op->o_tag = LDAP_REQ_SEARCH;
2525         op->ors_scope = si->si_scope;
2526         op->ors_deref = LDAP_DEREF_NEVER;
2527         op->o_time = slap_get_time();
2528         op->ors_tlimit = SLAP_NO_LIMIT;
2529
2530
2531         if ( uuids ) {
2532                 Filter uf;
2533                 AttributeAssertion eq = ATTRIBUTEASSERTION_INIT;
2534                 int i;
2535
2536                 op->ors_attrsonly = 1;
2537                 op->ors_attrs = slap_anlist_no_attrs;
2538                 op->ors_limit = NULL;
2539                 op->ors_filter = &uf;
2540
2541                 uf.f_ava = &eq;
2542                 uf.f_av_desc = slap_schema.si_ad_entryUUID;
2543                 uf.f_next = NULL;
2544                 uf.f_choice = LDAP_FILTER_EQUALITY;
2545                 si->si_refreshDelete |= NP_DELETE_ONE;
2546
2547                 for (i=0; uuids[i].bv_val; i++) {
2548                         op->ors_slimit = 1;
2549                         uf.f_av_value = uuids[i];
2550                         filter2bv_x( op, op->ors_filter, &op->ors_filterstr );
2551                         rc = be->be_search( op, &rs_search );
2552                         op->o_tmpfree( op->ors_filterstr.bv_val, op->o_tmpmemctx );
2553                 }
2554                 si->si_refreshDelete ^= NP_DELETE_ONE;
2555         } else {
2556                 Filter *cf, *of;
2557
2558                 memset( &an[0], 0, 2 * sizeof( AttributeName ) );
2559                 an[0].an_name = slap_schema.si_ad_entryUUID->ad_cname;
2560                 an[0].an_desc = slap_schema.si_ad_entryUUID;
2561                 op->ors_attrs = an;
2562                 op->ors_slimit = SLAP_NO_LIMIT;
2563                 op->ors_attrsonly = 0;
2564                 op->ors_filter = str2filter_x( op, si->si_filterstr.bv_val );
2565                 /* In multimaster, updates can continue to arrive while
2566                  * we're searching. Limit the search result to entries
2567                  * older than all of our cookie CSNs.
2568                  */
2569                 if ( SLAP_MULTIMASTER( op->o_bd )) {
2570                         Filter *f;
2571                         int i;
2572                         cf = op->o_tmpalloc( (sc->numcsns+1) * sizeof(Filter) +
2573                                 sc->numcsns * sizeof(AttributeAssertion), op->o_tmpmemctx );
2574                         f = cf;
2575                         f->f_choice = LDAP_FILTER_AND;
2576                         f->f_next = NULL;
2577                         f->f_and = f+1;
2578                         of = f->f_and;
2579                         for ( i=0; i<sc->numcsns; i++ ) {
2580                                 f = of;
2581                                 f->f_choice = LDAP_FILTER_LE;
2582                                 f->f_ava = (AttributeAssertion *)(f+1);
2583                                 f->f_av_desc = slap_schema.si_ad_entryCSN;
2584                                 f->f_av_value = sc->ctxcsn[i];
2585                                 f->f_next = (Filter *)(f->f_ava+1);
2586                                 of = f->f_next;
2587                         }
2588                         f->f_next = op->ors_filter;
2589                         of = op->ors_filter;
2590                         op->ors_filter = cf;
2591                         filter2bv_x( op, op->ors_filter, &op->ors_filterstr );
2592                 } else {
2593                         cf = NULL;
2594                         op->ors_filterstr = si->si_filterstr;
2595                 }
2596                 op->o_nocaching = 1;
2597
2598                 if ( limits_check( op, &rs_search ) == 0 ) {
2599                         rc = be->be_search( op, &rs_search );
2600                 }
2601                 if ( SLAP_MULTIMASTER( op->o_bd )) {
2602                         op->o_tmpfree( cf, op->o_tmpmemctx );
2603                         op->ors_filter = of;
2604                 }
2605                 if ( op->ors_filter ) filter_free_x( op, op->ors_filter, 1 );
2606                 if ( op->ors_filterstr.bv_val != si->si_filterstr.bv_val ) {
2607                         op->o_tmpfree( op->ors_filterstr.bv_val, op->o_tmpmemctx );
2608                 }
2609
2610         }
2611
2612         op->o_nocaching = 0;
2613
2614         if ( !LDAP_LIST_EMPTY( &si->si_nonpresentlist ) ) {
2615
2616                 if ( sc->ctxcsn && !BER_BVISNULL( &sc->ctxcsn[m] ) ) {
2617                         csn = sc->ctxcsn[m];
2618                 } else {
2619                         csn = si->si_syncCookie.ctxcsn[0];
2620                 }
2621
2622                 op->o_bd = si->si_wbe;
2623                 slap_queue_csn( op, &csn );
2624
2625                 np_list = LDAP_LIST_FIRST( &si->si_nonpresentlist );
2626                 while ( np_list != NULL ) {
2627                         LDAP_LIST_REMOVE( np_list, npe_link );
2628                         np_prev = np_list;
2629                         np_list = LDAP_LIST_NEXT( np_list, npe_link );
2630                         op->o_tag = LDAP_REQ_DELETE;
2631                         op->o_callback = &cb;
2632                         cb.sc_response = null_callback;
2633                         cb.sc_private = si;
2634                         op->o_req_dn = *np_prev->npe_name;
2635                         op->o_req_ndn = *np_prev->npe_nname;
2636                         rc = op->o_bd->be_delete( op, &rs_delete );
2637                         Debug( LDAP_DEBUG_SYNC,
2638                                 "syncrepl_del_nonpresent: %s be_delete %s (%d)\n", 
2639                                 si->si_ridtxt, op->o_req_dn.bv_val, rc );
2640
2641                         if ( rs_delete.sr_err == LDAP_NOT_ALLOWED_ON_NONLEAF ) {
2642                                 Modifications mod1, mod2;
2643                                 mod1.sml_op = LDAP_MOD_REPLACE;
2644                                 mod1.sml_flags = 0;
2645                                 mod1.sml_desc = slap_schema.si_ad_objectClass;
2646                                 mod1.sml_type = mod1.sml_desc->ad_cname;
2647                                 mod1.sml_numvals = 2;
2648                                 mod1.sml_values = &gcbva[0];
2649                                 mod1.sml_nvalues = NULL;
2650                                 mod1.sml_next = &mod2;
2651
2652                                 mod2.sml_op = LDAP_MOD_REPLACE;
2653                                 mod2.sml_flags = 0;
2654                                 mod2.sml_desc = slap_schema.si_ad_structuralObjectClass;
2655                                 mod2.sml_type = mod2.sml_desc->ad_cname;
2656                                 mod2.sml_numvals = 1;
2657                                 mod2.sml_values = &gcbva[1];
2658                                 mod2.sml_nvalues = NULL;
2659                                 mod2.sml_next = NULL;
2660
2661                                 op->o_tag = LDAP_REQ_MODIFY;
2662                                 op->orm_modlist = &mod1;
2663
2664                                 rc = op->o_bd->be_modify( op, &rs_modify );
2665                                 if ( mod2.sml_next ) slap_mods_free( mod2.sml_next, 1 );
2666                         }
2667
2668                         while ( rs_delete.sr_err == LDAP_SUCCESS &&
2669                                         op->o_delete_glue_parent ) {
2670                                 op->o_delete_glue_parent = 0;
2671                                 if ( !be_issuffix( be, &op->o_req_ndn ) ) {
2672                                         slap_callback cb = { NULL };
2673                                         cb.sc_response = slap_null_cb;
2674                                         dnParent( &op->o_req_ndn, &pdn );
2675                                         op->o_req_dn = pdn;
2676                                         op->o_req_ndn = pdn;
2677                                         op->o_callback = &cb;
2678                                         /* give it a root privil ? */
2679                                         op->o_bd->be_delete( op, &rs_delete );
2680                                 } else {
2681                                         break;
2682                                 }
2683                         }
2684
2685                         op->o_delete_glue_parent = 0;
2686
2687                         ber_bvfree( np_prev->npe_name );
2688                         ber_bvfree( np_prev->npe_nname );
2689                         ch_free( np_prev );
2690
2691                         if ( slapd_shutdown ) {
2692                                 break;
2693                         }
2694                 }
2695
2696                 slap_graduate_commit_csn( op );
2697                 op->o_bd = be;
2698
2699                 op->o_tmpfree( op->o_csn.bv_val, op->o_tmpmemctx );
2700                 BER_BVZERO( &op->o_csn );
2701         }
2702
2703         return;
2704 }
2705
2706 int
2707 syncrepl_add_glue(
2708         Operation* op,
2709         Entry *e )
2710 {
2711         Backend *be = op->o_bd;
2712         slap_callback cb = { NULL };
2713         Attribute       *a;
2714         int     rc;
2715         int suffrdns;
2716         int i;
2717         struct berval dn = BER_BVNULL;
2718         struct berval ndn = BER_BVNULL;
2719         Entry   *glue;
2720         SlapReply       rs_add = {REP_RESULT};
2721         struct berval   ptr, nptr;
2722         char            *comma;
2723
2724         op->o_tag = LDAP_REQ_ADD;
2725         op->o_callback = &cb;
2726         cb.sc_response = null_callback;
2727         cb.sc_private = NULL;
2728
2729         dn = e->e_name;
2730         ndn = e->e_nname;
2731
2732         /* count RDNs in suffix */
2733         if ( !BER_BVISEMPTY( &be->be_nsuffix[0] ) ) {
2734                 for ( i = 0, ptr = be->be_nsuffix[0], comma = ptr.bv_val; comma != NULL; comma = ber_bvchr( &ptr, ',' ) ) {
2735                         comma++;
2736                         ptr.bv_len -= comma - ptr.bv_val;
2737                         ptr.bv_val = comma;
2738                         i++;
2739                 }
2740                 suffrdns = i;
2741         } else {
2742                 /* suffix is "" */
2743                 suffrdns = 0;
2744         }
2745
2746         /* Start with BE suffix */
2747         ptr = dn;
2748         for ( i = 0; i < suffrdns; i++ ) {
2749                 comma = ber_bvrchr( &ptr, ',' );
2750                 if ( comma != NULL ) {
2751                         ptr.bv_len = comma - ptr.bv_val;
2752                 } else {
2753                         ptr.bv_len = 0;
2754                         break;
2755                 }
2756         }
2757         
2758         if ( !BER_BVISEMPTY( &ptr ) ) {
2759                 dn.bv_len -= ptr.bv_len + 1;
2760                 dn.bv_val += ptr.bv_len + 1;
2761         }
2762
2763         /* the normalizedDNs are always the same length, no counting
2764          * required.
2765          */
2766         nptr = ndn;
2767         if ( ndn.bv_len > be->be_nsuffix[0].bv_len ) {
2768                 ndn.bv_val += ndn.bv_len - be->be_nsuffix[0].bv_len;
2769                 ndn.bv_len = be->be_nsuffix[0].bv_len;
2770
2771                 nptr.bv_len = ndn.bv_val - nptr.bv_val - 1;
2772
2773         } else {
2774                 nptr.bv_len = 0;
2775         }
2776
2777         while ( ndn.bv_val > e->e_nname.bv_val ) {
2778                 glue = entry_alloc();
2779                 ber_dupbv( &glue->e_name, &dn );
2780                 ber_dupbv( &glue->e_nname, &ndn );
2781
2782                 a = attr_alloc( slap_schema.si_ad_objectClass );
2783
2784                 a->a_numvals = 2;
2785                 a->a_vals = ch_calloc( 3, sizeof( struct berval ) );
2786                 ber_dupbv( &a->a_vals[0], &gcbva[0] );
2787                 ber_dupbv( &a->a_vals[1], &gcbva[1] );
2788                 ber_dupbv( &a->a_vals[2], &gcbva[2] );
2789
2790                 a->a_nvals = a->a_vals;
2791
2792                 a->a_next = glue->e_attrs;
2793                 glue->e_attrs = a;
2794
2795                 a = attr_alloc( slap_schema.si_ad_structuralObjectClass );
2796
2797                 a->a_numvals = 1;
2798                 a->a_vals = ch_calloc( 2, sizeof( struct berval ) );
2799                 ber_dupbv( &a->a_vals[0], &gcbva[1] );
2800                 ber_dupbv( &a->a_vals[1], &gcbva[2] );
2801
2802                 a->a_nvals = a->a_vals;
2803
2804                 a->a_next = glue->e_attrs;
2805                 glue->e_attrs = a;
2806
2807                 op->o_req_dn = glue->e_name;
2808                 op->o_req_ndn = glue->e_nname;
2809                 op->ora_e = glue;
2810                 rc = be->be_add ( op, &rs_add );
2811                 if ( rs_add.sr_err == LDAP_SUCCESS ) {
2812                         if ( op->ora_e == glue )
2813                                 be_entry_release_w( op, glue );
2814                 } else {
2815                 /* incl. ALREADY EXIST */
2816                         entry_free( glue );
2817                         if ( rs_add.sr_err != LDAP_ALREADY_EXISTS ) {
2818                                 entry_free( e );
2819                                 return rc;
2820                         }
2821                 }
2822
2823                 /* Move to next child */
2824                 comma = ber_bvrchr( &ptr, ',' );
2825                 if ( comma == NULL ) {
2826                         break;
2827                 }
2828                 ptr.bv_len = comma - ptr.bv_val;
2829                 
2830                 dn.bv_val = ++comma;
2831                 dn.bv_len = e->e_name.bv_len - (dn.bv_val - e->e_name.bv_val);
2832
2833                 comma = ber_bvrchr( &nptr, ',' );
2834                 assert( comma != NULL );
2835                 nptr.bv_len = comma - nptr.bv_val;
2836
2837                 ndn.bv_val = ++comma;
2838                 ndn.bv_len = e->e_nname.bv_len - (ndn.bv_val - e->e_nname.bv_val);
2839         }
2840
2841         op->o_req_dn = e->e_name;
2842         op->o_req_ndn = e->e_nname;
2843         op->ora_e = e;
2844         rc = be->be_add ( op, &rs_add );
2845         if ( rs_add.sr_err == LDAP_SUCCESS ) {
2846                 if ( op->ora_e == e )
2847                         be_entry_release_w( op, e );
2848         } else {
2849                 entry_free( e );
2850         }
2851
2852         return rc;
2853 }
2854
2855 static int
2856 syncrepl_updateCookie(
2857         syncinfo_t *si,
2858         Operation *op,
2859         struct berval *pdn,
2860         struct sync_cookie *syncCookie )
2861 {
2862         Backend *be = op->o_bd;
2863         Modifications mod;
2864         struct berval first = BER_BVNULL;
2865
2866         int rc, i, j;
2867         ber_len_t len;
2868
2869         slap_callback cb = { NULL };
2870         SlapReply       rs_modify = {REP_RESULT};
2871
2872         mod.sml_op = LDAP_MOD_REPLACE;
2873         mod.sml_desc = slap_schema.si_ad_contextCSN;
2874         mod.sml_type = mod.sml_desc->ad_cname;
2875         mod.sml_flags = SLAP_MOD_INTERNAL;
2876         mod.sml_nvalues = NULL;
2877         mod.sml_next = NULL;
2878
2879         ldap_pvt_thread_mutex_lock( &si->si_cookieState->cs_mutex );
2880
2881         /* clone the cookieState CSNs so we can Replace the whole thing */
2882         mod.sml_numvals = si->si_cookieState->cs_num;
2883         mod.sml_values = op->o_tmpalloc(( mod.sml_numvals+1 )*sizeof(struct berval), op->o_tmpmemctx );
2884         for ( i=0; i<mod.sml_numvals; i++ )
2885                 mod.sml_values[i] = si->si_cookieState->cs_vals[i];
2886         BER_BVZERO( &mod.sml_values[i] );
2887
2888         /* find any CSNs in the syncCookie that are newer than the cookieState */
2889         for ( i=0; i<syncCookie->numcsns; i++ ) {
2890                 for ( j=0; j<si->si_cookieState->cs_num; j++ ) {
2891                         if ( syncCookie->sids[i] != si->si_cookieState->cs_sids[j] )
2892                                 continue;
2893                         len = syncCookie->ctxcsn[i].bv_len;
2894                         if ( len > si->si_cookieState->cs_vals[j].bv_len )
2895                                 len = si->si_cookieState->cs_vals[j].bv_len;
2896                         if ( memcmp( syncCookie->ctxcsn[i].bv_val,
2897                                 si->si_cookieState->cs_vals[j].bv_val, len ) > 0 ) {
2898                                 mod.sml_values[j] = syncCookie->ctxcsn[i];
2899                                 if ( BER_BVISNULL( &first ) ) {
2900                                         first = syncCookie->ctxcsn[i];
2901
2902                                 } else if ( memcmp( syncCookie->ctxcsn[i].bv_val, first.bv_val, first.bv_len ) > 0 )
2903                                 {
2904                                         first = syncCookie->ctxcsn[i];
2905                                 }
2906                         }
2907                         break;
2908                 }
2909                 /* there was no match for this SID, it's a new CSN */
2910                 if ( j == si->si_cookieState->cs_num ) {
2911                         mod.sml_values = op->o_tmprealloc( mod.sml_values,
2912                                 ( mod.sml_numvals+2 )*sizeof(struct berval), op->o_tmpmemctx );
2913                         mod.sml_values[mod.sml_numvals++] = syncCookie->ctxcsn[i];
2914                         BER_BVZERO( &mod.sml_values[mod.sml_numvals] );
2915                         if ( BER_BVISNULL( &first ) ) {
2916                                 first = syncCookie->ctxcsn[i];
2917                         } else if ( memcmp( syncCookie->ctxcsn[i].bv_val, first.bv_val, first.bv_len ) > 0 )
2918                         {
2919                                 first = syncCookie->ctxcsn[i];
2920                         }
2921                 }
2922         }
2923         /* Should never happen, ITS#5065 */
2924         if ( BER_BVISNULL( &first )) {
2925                 ldap_pvt_thread_mutex_unlock( &si->si_cookieState->cs_mutex );
2926                 op->o_tmpfree( mod.sml_values, op->o_tmpmemctx );
2927                 return 0;
2928         }
2929         op->o_bd = si->si_wbe;
2930         slap_queue_csn( op, &first );
2931
2932         op->o_tag = LDAP_REQ_MODIFY;
2933
2934         cb.sc_response = null_callback;
2935         cb.sc_private = si;
2936
2937         op->o_callback = &cb;
2938         op->o_req_dn = op->o_bd->be_suffix[0];
2939         op->o_req_ndn = op->o_bd->be_nsuffix[0];
2940
2941         /* update contextCSN */
2942         op->o_dont_replicate = 1;
2943
2944         op->orm_modlist = &mod;
2945         op->orm_no_opattrs = 1;
2946         rc = op->o_bd->be_modify( op, &rs_modify );
2947         op->orm_no_opattrs = 0;
2948         op->o_dont_replicate = 0;
2949
2950         if ( rs_modify.sr_err == LDAP_SUCCESS ) {
2951                 slap_sync_cookie_free( &si->si_syncCookie, 0 );
2952                 slap_dup_sync_cookie( &si->si_syncCookie, syncCookie );
2953                 /* If we replaced any old values */
2954                 for ( i=0; i<si->si_cookieState->cs_num; i++ ) {
2955                         if ( mod.sml_values[i].bv_val != si->si_cookieState->cs_vals[i].bv_val )
2956                                         ber_bvreplace( &si->si_cookieState->cs_vals[i],
2957                                                 &mod.sml_values[i] );
2958                 }
2959                 /* Handle any added values */
2960                 if ( i < mod.sml_numvals ) {
2961                         si->si_cookieState->cs_num = mod.sml_numvals;
2962                         value_add( &si->si_cookieState->cs_vals, &mod.sml_values[i] );
2963                         free( si->si_cookieState->cs_sids );
2964                         si->si_cookieState->cs_sids = slap_parse_csn_sids(
2965                                 si->si_cookieState->cs_vals, si->si_cookieState->cs_num, NULL );
2966                 }
2967
2968                 si->si_cookieState->cs_age++;
2969                 si->si_cookieAge = si->si_cookieState->cs_age;
2970         } else {
2971                 Debug( LDAP_DEBUG_ANY,
2972                         "syncrepl_updateCookie: %s be_modify failed (%d)\n",
2973                         si->si_ridtxt, rs_modify.sr_err, 0 );
2974         }
2975         ldap_pvt_thread_mutex_unlock( &si->si_cookieState->cs_mutex );
2976
2977         op->o_bd = be;
2978         op->o_tmpfree( op->o_csn.bv_val, op->o_tmpmemctx );
2979         BER_BVZERO( &op->o_csn );
2980         if ( mod.sml_next ) slap_mods_free( mod.sml_next, 1 );
2981         op->o_tmpfree( mod.sml_values, op->o_tmpmemctx );
2982
2983         return rc;
2984 }
2985
2986 static void
2987 attr_cmp( Operation *op, Attribute *old, Attribute *new,
2988         Modifications ***mret, Modifications ***mcur )
2989 {
2990         int i, j;
2991         Modifications *mod, **modtail;
2992
2993         modtail = *mret;
2994
2995         if ( old ) {
2996                 int n, o, nn, no;
2997                 struct berval **adds, **dels;
2998                 /* count old and new */
2999                 for ( o=0; old->a_vals[o].bv_val; o++ ) ;
3000                 for ( n=0; new->a_vals[n].bv_val; n++ ) ;
3001
3002                 /* there MUST be both old and new values */
3003                 assert( o != 0 );
3004                 assert( n != 0 );
3005                 j = 0;
3006
3007                 adds = op->o_tmpalloc( sizeof(struct berval *) * n, op->o_tmpmemctx );
3008                 dels = op->o_tmpalloc( sizeof(struct berval *) * o, op->o_tmpmemctx );
3009
3010                 for ( i=0; i<o; i++ ) dels[i] = &old->a_vals[i];
3011                 for ( i=0; i<n; i++ ) adds[i] = &new->a_vals[i];
3012
3013                 nn = n; no = o;
3014
3015                 for ( i=0; i<o; i++ ) {
3016                         for ( j=0; j<n; j++ ) {
3017                                 if ( !adds[j] )
3018                                         continue;
3019                                 if ( bvmatch( dels[i], adds[j] ) ) {
3020                                         no--;
3021                                         nn--;
3022                                         adds[j] = NULL;
3023                                         dels[i] = NULL;
3024                                         break;
3025                                 }
3026                         }
3027                 }
3028
3029                 /* Don't delete/add an objectClass, always use the replace op.
3030                  * Modify would fail if provider has replaced entry with a new,
3031                  * and the new explicitly includes a superior of a class that was
3032                  * only included implicitly in the old entry.  Ref ITS#5517.
3033                  *
3034                  * Also use replace op if attr has no equality matching rule.
3035                  * (ITS#5781)
3036                  */
3037                 if ( nn && no < o &&
3038                         ( old->a_desc == slap_schema.si_ad_objectClass ||
3039                          !old->a_desc->ad_type->sat_equality ))
3040                         no = o;
3041
3042                 i = j;
3043                 /* all old values were deleted, just use the replace op */
3044                 if ( no == o ) {
3045                         i = j-1;
3046                 } else if ( no ) {
3047                 /* delete some values */
3048                         mod = ch_malloc( sizeof( Modifications ) );
3049                         mod->sml_op = LDAP_MOD_DELETE;
3050                         mod->sml_flags = 0;
3051                         mod->sml_desc = old->a_desc;
3052                         mod->sml_type = mod->sml_desc->ad_cname;
3053                         mod->sml_numvals = no;
3054                         mod->sml_values = ch_malloc( ( no + 1 ) * sizeof(struct berval) );
3055                         if ( old->a_vals != old->a_nvals ) {
3056                                 mod->sml_nvalues = ch_malloc( ( no + 1 ) * sizeof(struct berval) );
3057                         } else {
3058                                 mod->sml_nvalues = NULL;
3059                         }
3060                         j = 0;
3061                         for ( i = 0; i < o; i++ ) {
3062                                 if ( !dels[i] ) continue;
3063                                 ber_dupbv( &mod->sml_values[j], &old->a_vals[i] );
3064                                 if ( mod->sml_nvalues ) {
3065                                         ber_dupbv( &mod->sml_nvalues[j], &old->a_nvals[i] );
3066                                 }
3067                                 j++;
3068                         }
3069                         BER_BVZERO( &mod->sml_values[j] );
3070                         if ( mod->sml_nvalues ) {
3071                                 BER_BVZERO( &mod->sml_nvalues[j] );
3072                         }
3073                         *modtail = mod;
3074                         modtail = &mod->sml_next;
3075                         i = j;
3076                 }
3077                 op->o_tmpfree( dels, op->o_tmpmemctx );
3078                 /* some values were added */
3079                 if ( nn && no < o ) {
3080                         mod = ch_malloc( sizeof( Modifications ) );
3081                         mod->sml_op = LDAP_MOD_ADD;
3082                         mod->sml_flags = 0;
3083                         mod->sml_desc = old->a_desc;
3084                         mod->sml_type = mod->sml_desc->ad_cname;
3085                         mod->sml_numvals = nn;
3086                         mod->sml_values = ch_malloc( ( nn + 1 ) * sizeof(struct berval) );
3087                         if ( old->a_vals != old->a_nvals ) {
3088                                 mod->sml_nvalues = ch_malloc( ( nn + 1 ) * sizeof(struct berval) );
3089                         } else {
3090                                 mod->sml_nvalues = NULL;
3091                         }
3092                         j = 0;
3093                         for ( i = 0; i < n; i++ ) {
3094                                 if ( !adds[i] ) continue;
3095                                 ber_dupbv( &mod->sml_values[j], &new->a_vals[i] );
3096                                 if ( mod->sml_nvalues ) {
3097                                         ber_dupbv( &mod->sml_nvalues[j], &new->a_nvals[i] );
3098                                 }
3099                                 j++;
3100                         }
3101                         BER_BVZERO( &mod->sml_values[j] );
3102                         if ( mod->sml_nvalues ) {
3103                                 BER_BVZERO( &mod->sml_nvalues[j] );
3104                         }
3105                         *modtail = mod;
3106                         modtail = &mod->sml_next;
3107                         i = j;
3108                 }
3109                 op->o_tmpfree( adds, op->o_tmpmemctx );
3110         } else {
3111                 /* new attr, just use the new mod */
3112                 i = 0;
3113                 j = 1;
3114         }
3115         /* advance to next element */
3116         mod = **mcur;
3117         if ( mod ) {
3118                 if ( i != j ) {
3119                         **mcur = mod->sml_next;
3120                         *modtail = mod;
3121                         modtail = &mod->sml_next;
3122                 } else {
3123                         *mcur = &mod->sml_next;
3124                 }
3125         }
3126         *mret = modtail;
3127 }
3128
3129 static int
3130 dn_callback(
3131         Operation*      op,
3132         SlapReply*      rs )
3133 {
3134         dninfo *dni = op->o_callback->sc_private;
3135
3136         if ( rs->sr_type == REP_SEARCH ) {
3137                 if ( !BER_BVISNULL( &dni->dn ) ) {
3138                         Debug( LDAP_DEBUG_ANY,
3139                                 "dn_callback : consistency error - "
3140                                 "entryUUID is not unique\n", 0, 0, 0 );
3141                 } else {
3142                         ber_dupbv_x( &dni->dn, &rs->sr_entry->e_name, op->o_tmpmemctx );
3143                         ber_dupbv_x( &dni->ndn, &rs->sr_entry->e_nname, op->o_tmpmemctx );
3144                         /* If there is a new entry, see if it differs from the old.
3145                          * We compare the non-normalized values so that cosmetic changes
3146                          * in the provider are always propagated.
3147                          */
3148                         if ( dni->new_entry ) {
3149                                 Modifications **modtail, **ml;
3150                                 Attribute *old, *new;
3151                                 struct berval old_rdn, new_rdn;
3152                                 struct berval old_p, new_p;
3153                                 int is_ctx, new_sup = 0;
3154
3155                                 /* Make sure new entry is actually newer than old entry */
3156                                 old = attr_find( rs->sr_entry->e_attrs,
3157                                         slap_schema.si_ad_entryCSN );
3158                                 new = attr_find( dni->new_entry->e_attrs,
3159                                         slap_schema.si_ad_entryCSN );
3160                                 if ( new && old ) {
3161                                         int rc;
3162                                         ber_len_t len = old->a_vals[0].bv_len;
3163                                         if ( len > new->a_vals[0].bv_len )
3164                                                 len = new->a_vals[0].bv_len;
3165                                         rc = memcmp( old->a_vals[0].bv_val,
3166                                                 new->a_vals[0].bv_val, len );
3167                                         if ( rc > 0 ) {
3168                                                 Debug( LDAP_DEBUG_SYNC,
3169                                                         "dn_callback : new entry is older than ours "
3170                                                         "%s ours %s, new %s\n",
3171                                                         rs->sr_entry->e_name.bv_val,
3172                                                         old->a_vals[0].bv_val,
3173                                                         new->a_vals[0].bv_val );
3174                                                 return LDAP_SUCCESS;
3175                                         } else if ( rc == 0 ) {
3176                                                 Debug( LDAP_DEBUG_SYNC,
3177                                                         "dn_callback : entries have identical CSN "
3178                                                         "%s %s\n",
3179                                                         rs->sr_entry->e_name.bv_val,
3180                                                         old->a_vals[0].bv_val, 0 );
3181                                                 return LDAP_SUCCESS;
3182                                         }
3183                                 }
3184
3185                                 is_ctx = dn_match( &rs->sr_entry->e_nname,
3186                                         &op->o_bd->be_nsuffix[0] );
3187
3188                                 /* Did the DN change?
3189                                  * case changes in the parent are ignored,
3190                                  * we only want to know if the RDN was
3191                                  * actually changed.
3192                                  */
3193                                 dnRdn( &rs->sr_entry->e_name, &old_rdn );
3194                                 dnRdn( &dni->new_entry->e_name, &new_rdn );
3195                                 dnParent( &rs->sr_entry->e_nname, &old_p );
3196                                 dnParent( &dni->new_entry->e_nname, &new_p );
3197
3198                                 new_sup = !dn_match( &old_p, &new_p );
3199                                 if ( !dn_match( &old_rdn, &new_rdn ) || new_sup )
3200                                 {
3201                                         struct berval oldRDN, oldVal;
3202                                         AttributeDescription *ad = NULL;
3203                                         int oldpos, newpos;
3204                                         Attribute *a;
3205
3206                                         dni->renamed = 1;
3207                                         if ( new_sup )
3208                                                 dni->nnewSup = new_p;
3209
3210                                         /* See if the oldRDN was deleted */
3211                                         dnRdn( &rs->sr_entry->e_nname, &oldRDN );
3212                                         oldVal.bv_val = strchr(oldRDN.bv_val, '=') + 1;
3213                                         oldVal.bv_len = oldRDN.bv_len - ( oldVal.bv_val -
3214                                                 oldRDN.bv_val );
3215                                         oldRDN.bv_len -= oldVal.bv_len + 1;
3216                                         slap_bv2ad( &oldRDN, &ad, &rs->sr_text );
3217                                         dni->oldDesc = ad;
3218                                         for ( oldpos=0, a=rs->sr_entry->e_attrs;
3219                                                 a && a->a_desc != ad; oldpos++, a=a->a_next );
3220                                         dni->oldNattr = a;
3221                                         for ( newpos=0, a=dni->new_entry->e_attrs;
3222                                                 a && a->a_desc != ad; newpos++, a=a->a_next );
3223                                         if ( !a || oldpos != newpos || attr_valfind( a,
3224                                                 SLAP_MR_ASSERTED_VALUE_NORMALIZED_MATCH |
3225                                                 SLAP_MR_ATTRIBUTE_VALUE_NORMALIZED_MATCH |
3226                                                 SLAP_MR_VALUE_OF_SYNTAX,
3227                                                 &oldVal, NULL, op->o_tmpmemctx ) != LDAP_SUCCESS )
3228                                         {
3229                                                 dni->delOldRDN = 1;
3230                                         }
3231                                         /* Get the newRDN's desc */
3232                                         dnRdn( &dni->new_entry->e_nname, &oldRDN );
3233                                         oldVal.bv_val = strchr(oldRDN.bv_val, '=');
3234                                         oldRDN.bv_len = oldVal.bv_val - oldRDN.bv_val;
3235                                         ad = NULL;
3236                                         slap_bv2ad( &oldRDN, &ad, &rs->sr_text );
3237                                         dni->newDesc = ad;
3238
3239                                         /* A ModDN has happened, but in Refresh mode other
3240                                          * changes may have occurred before we picked it up.
3241                                          * So fallthru to regular Modify processing.
3242                                          */
3243                                 }
3244
3245                                 modtail = &dni->mods;
3246                                 ml = dni->modlist;
3247
3248                                 /* We assume that attributes are saved in the same order
3249                                  * in the remote and local databases. So if we walk through
3250                                  * the attributeDescriptions one by one they should match in
3251                                  * lock step. If not, look for an add or delete.
3252                                  */
3253                                 for ( old = rs->sr_entry->e_attrs, new = dni->new_entry->e_attrs;
3254                                                 old && new; )
3255                                 {
3256                                         /* If we've seen this before, use its mod now */
3257                                         if ( new->a_flags & SLAP_ATTR_IXADD ) {
3258                                                 attr_cmp( op, NULL, new, &modtail, &ml );
3259                                                 new = new->a_next;
3260                                                 continue;
3261                                         }
3262                                         /* Skip contextCSN */
3263                                         if ( is_ctx && old->a_desc ==
3264                                                 slap_schema.si_ad_contextCSN ) {
3265                                                 old = old->a_next;
3266                                                 continue;
3267                                         }
3268
3269                                         if ( old->a_desc != new->a_desc ) {
3270                                                 Modifications *mod;
3271                                                 Attribute *tmp;
3272
3273                                                 /* If it's just been re-added later,
3274                                                  * remember that we've seen it.
3275                                                  */
3276                                                 tmp = attr_find( new, old->a_desc );
3277                                                 if ( tmp ) {
3278                                                         tmp->a_flags |= SLAP_ATTR_IXADD;
3279                                                 } else {
3280                                                         /* If it's a new attribute, pull it in.
3281                                                          */
3282                                                         tmp = attr_find( old, new->a_desc );
3283                                                         if ( !tmp ) {
3284                                                                 attr_cmp( op, NULL, new, &modtail, &ml );
3285                                                                 new = new->a_next;
3286                                                                 continue;
3287                                                         }
3288                                                         /* Delete old attr */
3289                                                         mod = ch_malloc( sizeof( Modifications ) );
3290                                                         mod->sml_op = LDAP_MOD_DELETE;
3291                                                         mod->sml_flags = 0;
3292                                                         mod->sml_desc = old->a_desc;
3293                                                         mod->sml_type = mod->sml_desc->ad_cname;
3294                                                         mod->sml_numvals = 0;
3295                                                         mod->sml_values = NULL;
3296                                                         mod->sml_nvalues = NULL;
3297                                                         *modtail = mod;
3298                                                         modtail = &mod->sml_next;
3299                                                 }
3300                                                 old = old->a_next;
3301                                                 continue;
3302                                         }
3303                                         /* kludge - always update modifiersName so that it
3304                                          * stays co-located with the other mod opattrs. But only
3305                                          * if we know there are other valid mods.
3306                                          */
3307                                         if ( old->a_desc == slap_schema.si_ad_modifiersName &&
3308                                                 dni->mods )
3309                                                 attr_cmp( op, NULL, new, &modtail, &ml );
3310                                         else
3311                                                 attr_cmp( op, old, new, &modtail, &ml );
3312                                         new = new->a_next;
3313                                         old = old->a_next;
3314                                 }
3315                                 *modtail = *ml;
3316                                 *ml = NULL;
3317                         }
3318                 }
3319         } else if ( rs->sr_type == REP_RESULT ) {
3320                 if ( rs->sr_err == LDAP_SIZELIMIT_EXCEEDED ) {
3321                         Debug( LDAP_DEBUG_ANY,
3322                                 "dn_callback : consistency error - "
3323                                 "entryUUID is not unique\n", 0, 0, 0 );
3324                 }
3325         }
3326
3327         return LDAP_SUCCESS;
3328 }
3329
3330 static int
3331 nonpresent_callback(
3332         Operation*      op,
3333         SlapReply*      rs )
3334 {
3335         syncinfo_t *si = op->o_callback->sc_private;
3336         Attribute *a;
3337         int count = 0;
3338         struct berval* present_uuid = NULL;
3339         struct nonpresent_entry *np_entry;
3340
3341         if ( rs->sr_type == REP_RESULT ) {
3342                 count = avl_free( si->si_presentlist, ch_free );
3343                 si->si_presentlist = NULL;
3344
3345         } else if ( rs->sr_type == REP_SEARCH ) {
3346                 if ( !( si->si_refreshDelete & NP_DELETE_ONE ) ) {
3347                         a = attr_find( rs->sr_entry->e_attrs, slap_schema.si_ad_entryUUID );
3348
3349                         if ( a ) {
3350                                 present_uuid = avl_find( si->si_presentlist, &a->a_nvals[0],
3351                                         syncuuid_cmp );
3352                         }
3353
3354                         if ( LogTest( LDAP_DEBUG_SYNC ) ) {
3355                                 char buf[sizeof("rid=999 non")];
3356
3357                                 snprintf( buf, sizeof(buf), "%s %s", si->si_ridtxt,
3358                                         present_uuid ? "" : "non" );
3359
3360                                 Debug( LDAP_DEBUG_SYNC, "nonpresent_callback: %spresent UUID %s, dn %s\n",
3361                                         buf, a ? a->a_vals[0].bv_val : "<missing>", rs->sr_entry->e_name.bv_val );
3362                         }
3363
3364                         if ( a == NULL ) return 0;
3365                 }
3366
3367                 if ( present_uuid == NULL ) {
3368                         np_entry = (struct nonpresent_entry *)
3369                                 ch_calloc( 1, sizeof( struct nonpresent_entry ) );
3370                         np_entry->npe_name = ber_dupbv( NULL, &rs->sr_entry->e_name );
3371                         np_entry->npe_nname = ber_dupbv( NULL, &rs->sr_entry->e_nname );
3372                         LDAP_LIST_INSERT_HEAD( &si->si_nonpresentlist, np_entry, npe_link );
3373
3374                 } else {
3375                         avl_delete( &si->si_presentlist,
3376                                 &a->a_nvals[0], syncuuid_cmp );
3377                         ch_free( present_uuid );
3378                 }
3379         }
3380         return LDAP_SUCCESS;
3381 }
3382
3383 static int
3384 null_callback(
3385         Operation*      op,
3386         SlapReply*      rs )
3387 {
3388         if ( rs->sr_err != LDAP_SUCCESS &&
3389                 rs->sr_err != LDAP_REFERRAL &&
3390                 rs->sr_err != LDAP_ALREADY_EXISTS &&
3391                 rs->sr_err != LDAP_NO_SUCH_OBJECT &&
3392                 rs->sr_err != LDAP_NOT_ALLOWED_ON_NONLEAF )
3393         {
3394                 Debug( LDAP_DEBUG_ANY,
3395                         "null_callback : error code 0x%x\n",
3396                         rs->sr_err, 0, 0 );
3397         }
3398         return LDAP_SUCCESS;
3399 }
3400
3401 static struct berval *
3402 slap_uuidstr_from_normalized(
3403         struct berval* uuidstr,
3404         struct berval* normalized,
3405         void *ctx )
3406 {
3407 #if 0
3408         struct berval *new;
3409         unsigned char nibble;
3410         int i, d = 0;
3411
3412         if ( normalized == NULL ) return NULL;
3413         if ( normalized->bv_len != 16 ) return NULL;
3414
3415         if ( uuidstr ) {
3416                 new = uuidstr;
3417         } else {
3418                 new = (struct berval *)slap_sl_malloc( sizeof(struct berval), ctx );
3419                 if ( new == NULL ) {
3420                         return NULL;
3421                 }
3422         }
3423
3424         new->bv_len = 36;
3425
3426         if ( ( new->bv_val = slap_sl_malloc( new->bv_len + 1, ctx ) ) == NULL ) {
3427                 if ( new != uuidstr ) {
3428                         slap_sl_free( new, ctx );
3429                 }
3430                 return NULL;
3431         }
3432
3433         for ( i = 0; i < 16; i++ ) {
3434                 if ( i == 4 || i == 6 || i == 8 || i == 10 ) {
3435                         new->bv_val[(i<<1)+d] = '-';
3436                         d += 1;
3437                 }
3438
3439                 nibble = (normalized->bv_val[i] >> 4) & 0xF;
3440                 if ( nibble < 10 ) {
3441                         new->bv_val[(i<<1)+d] = nibble + '0';
3442                 } else {
3443                         new->bv_val[(i<<1)+d] = nibble - 10 + 'a';
3444                 }
3445
3446                 nibble = (normalized->bv_val[i]) & 0xF;
3447                 if ( nibble < 10 ) {
3448                         new->bv_val[(i<<1)+d+1] = nibble + '0';
3449                 } else {
3450                         new->bv_val[(i<<1)+d+1] = nibble - 10 + 'a';
3451                 }
3452         }
3453
3454         new->bv_val[new->bv_len] = '\0';
3455         return new;
3456 #endif
3457
3458         struct berval   *new;
3459         int             rc = 0;
3460
3461         if ( normalized == NULL ) return NULL;
3462         if ( normalized->bv_len != 16 ) return NULL;
3463
3464         if ( uuidstr ) {
3465                 new = uuidstr;
3466
3467         } else {
3468                 new = (struct berval *)slap_sl_malloc( sizeof(struct berval), ctx );
3469                 if ( new == NULL ) {
3470                         return NULL;
3471                 }
3472         }
3473
3474         new->bv_len = 36;
3475
3476         if ( ( new->bv_val = slap_sl_malloc( new->bv_len + 1, ctx ) ) == NULL ) {
3477                 rc = 1;
3478                 goto done;
3479         }
3480
3481         rc = lutil_uuidstr_from_normalized( normalized->bv_val,
3482                 normalized->bv_len, new->bv_val, new->bv_len + 1 );
3483
3484 done:;
3485         if ( rc == -1 ) {
3486                 if ( new != NULL ) {
3487                         if ( new->bv_val != NULL ) {
3488                                 slap_sl_free( new->bv_val, ctx );
3489                         }
3490
3491                         if ( new != uuidstr ) {
3492                                 slap_sl_free( new, ctx );
3493                         }
3494                 }
3495                 new = NULL;
3496
3497         } else {
3498                 new->bv_len = rc;
3499         }
3500
3501         return new;
3502 }
3503
3504 static int
3505 syncuuid_cmp( const void* v_uuid1, const void* v_uuid2 )
3506 {
3507         const struct berval *uuid1 = v_uuid1;
3508         const struct berval *uuid2 = v_uuid2;
3509         int rc = uuid1->bv_len - uuid2->bv_len;
3510         if ( rc ) return rc;
3511         return ( memcmp( uuid1->bv_val, uuid2->bv_val, uuid1->bv_len ) );
3512 }
3513
3514 void
3515 syncinfo_free( syncinfo_t *sie, int free_all )
3516 {
3517         syncinfo_t *si_next;
3518
3519         if ( free_all && sie->si_cookieState ) {
3520                 ch_free( sie->si_cookieState->cs_sids );
3521                 ber_bvarray_free( sie->si_cookieState->cs_vals );
3522                 ldap_pvt_thread_mutex_destroy( &sie->si_cookieState->cs_mutex );
3523                 ch_free( sie->si_cookieState );
3524         }
3525         do {
3526                 si_next = sie->si_next;
3527
3528                 if ( sie->si_ld ) {
3529                         if ( sie->si_conn ) {
3530                                 connection_client_stop( sie->si_conn );
3531                                 sie->si_conn = NULL;
3532                         }
3533                         ldap_unbind_ext( sie->si_ld, NULL, NULL );
3534                 }
3535         
3536                 /* re-fetch it, in case it was already removed */
3537                 ldap_pvt_thread_mutex_lock( &slapd_rq.rq_mutex );
3538                 sie->si_re = ldap_pvt_runqueue_find( &slapd_rq, do_syncrepl, sie );
3539                 if ( sie->si_re ) {
3540                         if ( ldap_pvt_runqueue_isrunning( &slapd_rq, sie->si_re ) )
3541                                 ldap_pvt_runqueue_stoptask( &slapd_rq, sie->si_re );
3542                         ldap_pvt_runqueue_remove( &slapd_rq, sie->si_re );
3543                 }
3544         
3545                 ldap_pvt_thread_mutex_unlock( &slapd_rq.rq_mutex );
3546                 ldap_pvt_thread_mutex_destroy( &sie->si_mutex );
3547         
3548                 bindconf_free( &sie->si_bindconf );
3549         
3550                 if ( sie->si_filterstr.bv_val ) {
3551                         ch_free( sie->si_filterstr.bv_val );
3552                 }
3553                 if ( sie->si_logfilterstr.bv_val ) {
3554                         ch_free( sie->si_logfilterstr.bv_val );
3555                 }
3556                 if ( sie->si_base.bv_val ) {
3557                         ch_free( sie->si_base.bv_val );
3558                 }
3559                 if ( sie->si_logbase.bv_val ) {
3560                         ch_free( sie->si_logbase.bv_val );
3561                 }
3562                 if ( sie->si_attrs ) {
3563                         int i = 0;
3564                         while ( sie->si_attrs[i] != NULL ) {
3565                                 ch_free( sie->si_attrs[i] );
3566                                 i++;
3567                         }
3568                         ch_free( sie->si_attrs );
3569                 }
3570                 if ( sie->si_exattrs ) {
3571                         int i = 0;
3572                         while ( sie->si_exattrs[i] != NULL ) {
3573                                 ch_free( sie->si_exattrs[i] );
3574                                 i++;
3575                         }
3576                         ch_free( sie->si_exattrs );
3577                 }
3578                 if ( sie->si_anlist ) {
3579                         int i = 0;
3580                         while ( sie->si_anlist[i].an_name.bv_val != NULL ) {
3581                                 ch_free( sie->si_anlist[i].an_name.bv_val );
3582                                 i++;
3583                         }
3584                         ch_free( sie->si_anlist );
3585                 }
3586                 if ( sie->si_exanlist ) {
3587                         int i = 0;
3588                         while ( sie->si_exanlist[i].an_name.bv_val != NULL ) {
3589                                 ch_free( sie->si_exanlist[i].an_name.bv_val );
3590                                 i++;
3591                         }
3592                         ch_free( sie->si_exanlist );
3593                 }
3594                 if ( sie->si_retryinterval ) {
3595                         ch_free( sie->si_retryinterval );
3596                 }
3597                 if ( sie->si_retrynum ) {
3598                         ch_free( sie->si_retrynum );
3599                 }
3600                 if ( sie->si_retrynum_init ) {
3601                         ch_free( sie->si_retrynum_init );
3602                 }
3603                 slap_sync_cookie_free( &sie->si_syncCookie, 0 );
3604                 if ( sie->si_presentlist ) {
3605                     avl_free( sie->si_presentlist, ch_free );
3606                 }
3607                 while ( !LDAP_LIST_EMPTY( &sie->si_nonpresentlist ) ) {
3608                         struct nonpresent_entry* npe;
3609                         npe = LDAP_LIST_FIRST( &sie->si_nonpresentlist );
3610                         LDAP_LIST_REMOVE( npe, npe_link );
3611                         if ( npe->npe_name ) {
3612                                 if ( npe->npe_name->bv_val ) {
3613                                         ch_free( npe->npe_name->bv_val );
3614                                 }
3615                                 ch_free( npe->npe_name );
3616                         }
3617                         if ( npe->npe_nname ) {
3618                                 if ( npe->npe_nname->bv_val ) {
3619                                         ch_free( npe->npe_nname->bv_val );
3620                                 }
3621                                 ch_free( npe->npe_nname );
3622                         }
3623                         ch_free( npe );
3624                 }
3625                 ch_free( sie );
3626                 sie = si_next;
3627         } while ( free_all && si_next );
3628 }
3629
3630
3631
3632 /* NOTE: used & documented in slapd.conf(5) */
3633 #define IDSTR                   "rid"
3634 #define PROVIDERSTR             "provider"
3635 #define SCHEMASTR               "schemachecking"
3636 #define FILTERSTR               "filter"
3637 #define SEARCHBASESTR           "searchbase"
3638 #define SCOPESTR                "scope"
3639 #define ATTRSONLYSTR            "attrsonly"
3640 #define ATTRSSTR                "attrs"
3641 #define TYPESTR                 "type"
3642 #define INTERVALSTR             "interval"
3643 #define RETRYSTR                "retry"
3644 #define SLIMITSTR               "sizelimit"
3645 #define TLIMITSTR               "timelimit"
3646 #define SYNCDATASTR             "syncdata"
3647 #define LOGBASESTR              "logbase"
3648 #define LOGFILTERSTR    "logfilter"
3649
3650 /* FIXME: undocumented */
3651 #define EXATTRSSTR              "exattrs"
3652 #define MANAGEDSAITSTR          "manageDSAit"
3653
3654 /* mandatory */
3655 enum {
3656         GOT_RID                 = 0x00000001U,
3657         GOT_PROVIDER            = 0x00000002U,
3658         GOT_SCHEMACHECKING      = 0x00000004U,
3659         GOT_FILTER              = 0x00000008U,
3660         GOT_SEARCHBASE          = 0x00000010U,
3661         GOT_SCOPE               = 0x00000020U,
3662         GOT_ATTRSONLY           = 0x00000040U,
3663         GOT_ATTRS               = 0x00000080U,
3664         GOT_TYPE                = 0x00000100U,
3665         GOT_INTERVAL            = 0x00000200U,
3666         GOT_RETRY               = 0x00000400U,
3667         GOT_SLIMIT              = 0x00000800U,
3668         GOT_TLIMIT              = 0x00001000U,
3669         GOT_SYNCDATA            = 0x00002000U,
3670         GOT_LOGBASE             = 0x00004000U,
3671         GOT_LOGFILTER           = 0x00008000U,
3672         GOT_EXATTRS             = 0x00010000U,
3673         GOT_MANAGEDSAIT         = 0x00020000U,
3674         GOT_BINDCONF            = 0x00040000U,
3675
3676 /* check */
3677         GOT_REQUIRED            = (GOT_RID|GOT_PROVIDER|GOT_SEARCHBASE)
3678 };
3679
3680 static struct {
3681         struct berval key;
3682         int val;
3683 } scopes[] = {
3684         { BER_BVC("base"), LDAP_SCOPE_BASE },
3685         { BER_BVC("one"), LDAP_SCOPE_ONELEVEL },
3686         { BER_BVC("onelevel"), LDAP_SCOPE_ONELEVEL },   /* OpenLDAP extension */
3687         { BER_BVC("children"), LDAP_SCOPE_SUBORDINATE },
3688         { BER_BVC("subord"), LDAP_SCOPE_SUBORDINATE },
3689         { BER_BVC("subordinate"), LDAP_SCOPE_SUBORDINATE },
3690         { BER_BVC("sub"), LDAP_SCOPE_SUBTREE },
3691         { BER_BVC("subtree"), LDAP_SCOPE_SUBTREE },     /* OpenLDAP extension */
3692         { BER_BVNULL, 0 }
3693 };
3694
3695 static slap_verbmasks datamodes[] = {
3696         { BER_BVC("default"), SYNCDATA_DEFAULT },
3697         { BER_BVC("accesslog"), SYNCDATA_ACCESSLOG },
3698         { BER_BVC("changelog"), SYNCDATA_CHANGELOG },
3699         { BER_BVNULL, 0 }
3700 };
3701
3702 static int
3703 parse_syncrepl_retry(
3704         ConfigArgs      *c,
3705         char            *arg,
3706         syncinfo_t      *si )
3707 {
3708         char **retry_list;
3709         int j, k, n;
3710         int use_default = 0;
3711
3712         char *val = arg + STRLENOF( RETRYSTR "=" );
3713         if ( strcasecmp( val, "undefined" ) == 0 ) {
3714                 val = "3600 +";
3715                 use_default = 1;
3716         }
3717
3718         retry_list = (char **) ch_calloc( 1, sizeof( char * ) );
3719         retry_list[0] = NULL;
3720
3721         slap_str2clist( &retry_list, val, " ,\t" );
3722
3723         for ( k = 0; retry_list && retry_list[k]; k++ ) ;
3724         n = k / 2;
3725         if ( k % 2 ) {
3726                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
3727                         "Error: incomplete syncrepl retry list" );
3728                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3729                 for ( k = 0; retry_list && retry_list[k]; k++ ) {
3730                         ch_free( retry_list[k] );
3731                 }
3732                 ch_free( retry_list );
3733                 return 1;
3734         }
3735         si->si_retryinterval = (time_t *) ch_calloc( n + 1, sizeof( time_t ) );
3736         si->si_retrynum = (int *) ch_calloc( n + 1, sizeof( int ) );
3737         si->si_retrynum_init = (int *) ch_calloc( n + 1, sizeof( int ) );
3738         for ( j = 0; j < n; j++ ) {
3739                 unsigned long   t;
3740                 if ( lutil_atoul( &t, retry_list[j*2] ) != 0 ) {
3741                         snprintf( c->cr_msg, sizeof( c->cr_msg ),
3742                                 "Error: invalid retry interval \"%s\" (#%d)",
3743                                 retry_list[j*2], j );
3744                         Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3745                         /* do some cleanup */
3746                         return 1;
3747                 }
3748                 si->si_retryinterval[j] = (time_t)t;
3749                 if ( *retry_list[j*2+1] == '+' ) {
3750                         si->si_retrynum_init[j] = RETRYNUM_FOREVER;
3751                         si->si_retrynum[j] = RETRYNUM_FOREVER;
3752                         j++;
3753                         break;
3754                 } else {
3755                         if ( lutil_atoi( &si->si_retrynum_init[j], retry_list[j*2+1] ) != 0
3756                                         || si->si_retrynum_init[j] <= 0 )
3757                         {
3758                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
3759                                         "Error: invalid initial retry number \"%s\" (#%d)",
3760                                         retry_list[j*2+1], j );
3761                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3762                                 /* do some cleanup */
3763                                 return 1;
3764                         }
3765                         if ( lutil_atoi( &si->si_retrynum[j], retry_list[j*2+1] ) != 0
3766                                         || si->si_retrynum[j] <= 0 )
3767                         {
3768                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
3769                                         "Error: invalid retry number \"%s\" (#%d)",
3770                                         retry_list[j*2+1], j );
3771                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3772                                 /* do some cleanup */
3773                                 return 1;
3774                         }
3775                 }
3776         }
3777         si->si_retrynum_init[j] = RETRYNUM_TAIL;
3778         si->si_retrynum[j] = RETRYNUM_TAIL;
3779         si->si_retryinterval[j] = 0;
3780         
3781         for ( k = 0; retry_list && retry_list[k]; k++ ) {
3782                 ch_free( retry_list[k] );
3783         }
3784         ch_free( retry_list );
3785         if ( !use_default ) {
3786                 si->si_got |= GOT_RETRY;
3787         }
3788
3789         return 0;
3790 }
3791
3792 static int
3793 parse_syncrepl_line(
3794         ConfigArgs      *c,
3795         syncinfo_t      *si )
3796 {
3797         int     i;
3798         char    *val;
3799
3800         for ( i = 1; i < c->argc; i++ ) {
3801                 if ( !strncasecmp( c->argv[ i ], IDSTR "=",
3802                                         STRLENOF( IDSTR "=" ) ) )
3803                 {
3804                         int tmp;
3805                         /* '\0' string terminator accounts for '=' */
3806                         val = c->argv[ i ] + STRLENOF( IDSTR "=" );
3807                         if ( lutil_atoi( &tmp, val ) != 0 ) {
3808                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
3809                                         "Error: parse_syncrepl_line: "
3810                                         "unable to parse syncrepl id \"%s\"", val );
3811                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3812                                 return -1;
3813                         }
3814                         if ( tmp > SLAP_SYNC_SID_MAX || tmp < 0 ) {
3815                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
3816                                         "Error: parse_syncrepl_line: "
3817                                         "syncrepl id %d is out of range [0..4095]", tmp );
3818                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3819                                 return -1;
3820                         }
3821                         si->si_rid = tmp;
3822                         sprintf( si->si_ridtxt, IDSTR "=%03d", si->si_rid );
3823                         si->si_got |= GOT_RID;
3824                 } else if ( !strncasecmp( c->argv[ i ], PROVIDERSTR "=",
3825                                         STRLENOF( PROVIDERSTR "=" ) ) )
3826                 {
3827                         val = c->argv[ i ] + STRLENOF( PROVIDERSTR "=" );
3828                         ber_str2bv( val, 0, 1, &si->si_bindconf.sb_uri );
3829                         si->si_got |= GOT_PROVIDER;
3830                 } else if ( !strncasecmp( c->argv[ i ], SCHEMASTR "=",
3831                                         STRLENOF( SCHEMASTR "=" ) ) )
3832                 {
3833                         val = c->argv[ i ] + STRLENOF( SCHEMASTR "=" );
3834                         if ( !strncasecmp( val, "on", STRLENOF( "on" ) ) ) {
3835                                 si->si_schemachecking = 1;
3836                         } else if ( !strncasecmp( val, "off", STRLENOF( "off" ) ) ) {
3837                                 si->si_schemachecking = 0;
3838                         } else {
3839                                 si->si_schemachecking = 1;
3840                         }
3841                         si->si_got |= GOT_SCHEMACHECKING;
3842                 } else if ( !strncasecmp( c->argv[ i ], FILTERSTR "=",
3843                                         STRLENOF( FILTERSTR "=" ) ) )
3844                 {
3845                         val = c->argv[ i ] + STRLENOF( FILTERSTR "=" );
3846                         if ( si->si_filterstr.bv_val )
3847                                 ch_free( si->si_filterstr.bv_val );
3848                         ber_str2bv( val, 0, 1, &si->si_filterstr );
3849                         si->si_got |= GOT_FILTER;
3850                 } else if ( !strncasecmp( c->argv[ i ], LOGFILTERSTR "=",
3851                                         STRLENOF( LOGFILTERSTR "=" ) ) )
3852                 {
3853                         val = c->argv[ i ] + STRLENOF( LOGFILTERSTR "=" );
3854                         if ( si->si_logfilterstr.bv_val )
3855                                 ch_free( si->si_logfilterstr.bv_val );
3856                         ber_str2bv( val, 0, 1, &si->si_logfilterstr );
3857                         si->si_got |= GOT_LOGFILTER;
3858                 } else if ( !strncasecmp( c->argv[ i ], SEARCHBASESTR "=",
3859                                         STRLENOF( SEARCHBASESTR "=" ) ) )
3860                 {
3861                         struct berval   bv;
3862                         int             rc;
3863
3864                         val = c->argv[ i ] + STRLENOF( SEARCHBASESTR "=" );
3865                         if ( si->si_base.bv_val ) {
3866                                 ch_free( si->si_base.bv_val );
3867                         }
3868                         ber_str2bv( val, 0, 0, &bv );
3869                         rc = dnNormalize( 0, NULL, NULL, &bv, &si->si_base, NULL );
3870                         if ( rc != LDAP_SUCCESS ) {
3871                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
3872                                         "Invalid base DN \"%s\": %d (%s)",
3873                                         val, rc, ldap_err2string( rc ) );
3874                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3875                                 return -1;
3876                         }
3877                         if ( !be_issubordinate( c->be, &si->si_base ) ) {
3878                                 ch_free( si->si_base.bv_val );
3879                                 BER_BVZERO( &si->si_base );
3880                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
3881                                         "Base DN \"%s\" is not within the database naming context",
3882                                         val );
3883                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3884                                 return -1;
3885                         }
3886                         si->si_got |= GOT_SEARCHBASE;
3887                 } else if ( !strncasecmp( c->argv[ i ], LOGBASESTR "=",
3888                                         STRLENOF( LOGBASESTR "=" ) ) )
3889                 {
3890                         struct berval   bv;
3891                         int             rc;
3892
3893                         val = c->argv[ i ] + STRLENOF( LOGBASESTR "=" );
3894                         if ( si->si_logbase.bv_val ) {
3895                                 ch_free( si->si_logbase.bv_val );
3896                         }
3897                         ber_str2bv( val, 0, 0, &bv );
3898                         rc = dnNormalize( 0, NULL, NULL, &bv, &si->si_logbase, NULL );
3899                         if ( rc != LDAP_SUCCESS ) {
3900                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
3901                                         "Invalid logbase DN \"%s\": %d (%s)",
3902                                         val, rc, ldap_err2string( rc ) );
3903                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3904                                 return -1;
3905                         }
3906                         si->si_got |= GOT_LOGBASE;
3907                 } else if ( !strncasecmp( c->argv[ i ], SCOPESTR "=",
3908                                         STRLENOF( SCOPESTR "=" ) ) )
3909                 {
3910                         int j;
3911                         val = c->argv[ i ] + STRLENOF( SCOPESTR "=" );
3912                         for ( j = 0; !BER_BVISNULL(&scopes[j].key); j++ ) {
3913                                 if (!strcasecmp( val, scopes[j].key.bv_val ) ) {
3914                                         si->si_scope = scopes[j].val;
3915                                         break;
3916                                 }
3917                         }
3918                         if ( BER_BVISNULL(&scopes[j].key) ) {
3919                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
3920                                         "Error: parse_syncrepl_line: "
3921                                         "unknown scope \"%s\"", val);
3922                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3923                                 return -1;
3924                         }
3925                         si->si_got |= GOT_SCOPE;
3926                 } else if ( !strncasecmp( c->argv[ i ], ATTRSONLYSTR,
3927                                         STRLENOF( ATTRSONLYSTR ) ) )
3928                 {
3929                         si->si_attrsonly = 1;
3930                         si->si_got |= GOT_ATTRSONLY;
3931                 } else if ( !strncasecmp( c->argv[ i ], ATTRSSTR "=",
3932                                         STRLENOF( ATTRSSTR "=" ) ) )
3933                 {
3934                         val = c->argv[ i ] + STRLENOF( ATTRSSTR "=" );
3935                         if ( !strncasecmp( val, ":include:", STRLENOF(":include:") ) ) {
3936                                 char *attr_fname;
3937                                 attr_fname = ch_strdup( val + STRLENOF(":include:") );
3938                                 si->si_anlist = file2anlist( si->si_anlist, attr_fname, " ,\t" );
3939                                 if ( si->si_anlist == NULL ) {
3940                                         ch_free( attr_fname );
3941                                         return -1;
3942                                 }
3943                                 si->si_anfile = attr_fname;
3944                         } else {
3945                                 char *str, *s, *next;
3946                                 const char *delimstr = " ,\t";
3947                                 str = ch_strdup( val );
3948                                 for ( s = ldap_pvt_strtok( str, delimstr, &next );
3949                                                 s != NULL;
3950                                                 s = ldap_pvt_strtok( NULL, delimstr, &next ) )
3951                                 {
3952                                         if ( strlen(s) == 1 && *s == '*' ) {
3953                                                 si->si_allattrs = 1;
3954                                                 val[ s - str ] = delimstr[0];
3955                                         }
3956                                         if ( strlen(s) == 1 && *s == '+' ) {
3957                                                 si->si_allopattrs = 1;
3958                                                 val [ s - str ] = delimstr[0];
3959                                         }
3960                                 }
3961                                 ch_free( str );
3962                                 si->si_anlist = str2anlist( si->si_anlist, val, " ,\t" );
3963                                 if ( si->si_anlist == NULL ) {
3964                                         return -1;
3965                                 }
3966                         }
3967                         si->si_got |= GOT_ATTRS;
3968                 } else if ( !strncasecmp( c->argv[ i ], EXATTRSSTR "=",
3969                                         STRLENOF( EXATTRSSTR "=" ) ) )
3970                 {
3971                         val = c->argv[ i ] + STRLENOF( EXATTRSSTR "=" );
3972                         if ( !strncasecmp( val, ":include:", STRLENOF(":include:") ) ) {
3973                                 char *attr_fname;
3974                                 attr_fname = ch_strdup( val + STRLENOF(":include:") );
3975                                 si->si_exanlist = file2anlist(
3976                                         si->si_exanlist, attr_fname, " ,\t" );
3977                                 if ( si->si_exanlist == NULL ) {
3978                                         ch_free( attr_fname );
3979                                         return -1;
3980                                 }
3981                                 ch_free( attr_fname );
3982                         } else {
3983                                 si->si_exanlist = str2anlist( si->si_exanlist, val, " ,\t" );
3984                                 if ( si->si_exanlist == NULL ) {
3985                                         return -1;
3986                                 }
3987                         }
3988                         si->si_got |= GOT_EXATTRS;
3989                 } else if ( !strncasecmp( c->argv[ i ], TYPESTR "=",
3990                                         STRLENOF( TYPESTR "=" ) ) )
3991                 {
3992                         val = c->argv[ i ] + STRLENOF( TYPESTR "=" );
3993                         if ( !strncasecmp( val, "refreshOnly",
3994                                                 STRLENOF("refreshOnly") ) )
3995                         {
3996                                 si->si_type = si->si_ctype = LDAP_SYNC_REFRESH_ONLY;
3997                         } else if ( !strncasecmp( val, "refreshAndPersist",
3998                                                 STRLENOF("refreshAndPersist") ) )
3999                         {
4000                                 si->si_type = si->si_ctype = LDAP_SYNC_REFRESH_AND_PERSIST;
4001                                 si->si_interval = 60;
4002                         } else {
4003                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4004                                         "Error: parse_syncrepl_line: "
4005                                         "unknown sync type \"%s\"", val);
4006                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4007                                 return -1;
4008                         }
4009                         si->si_got |= GOT_TYPE;
4010                 } else if ( !strncasecmp( c->argv[ i ], INTERVALSTR "=",
4011                                         STRLENOF( INTERVALSTR "=" ) ) )
4012                 {
4013                         val = c->argv[ i ] + STRLENOF( INTERVALSTR "=" );
4014                         if ( si->si_type == LDAP_SYNC_REFRESH_AND_PERSIST ) {
4015                                 si->si_interval = 0;
4016                         } else if ( strchr( val, ':' ) != NULL ) {
4017                                 char *next, *ptr = val;
4018                                 int dd, hh, mm, ss;
4019
4020                                 dd = strtol( ptr, &next, 10 );
4021                                 if ( next == ptr || next[0] != ':' || dd < 0 ) {
4022                                         snprintf( c->cr_msg, sizeof( c->cr_msg ),
4023                                                 "Error: parse_syncrepl_line: "
4024                                                 "invalid interval \"%s\", unable to parse days", val );
4025                                         Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4026                                         return -1;
4027                                 }
4028                                 ptr = next + 1;
4029                                 hh = strtol( ptr, &next, 10 );
4030                                 if ( next == ptr || next[0] != ':' || hh < 0 || hh > 24 ) {
4031                                         snprintf( c->cr_msg, sizeof( c->cr_msg ),
4032                                                 "Error: parse_syncrepl_line: "
4033                                                 "invalid interval \"%s\", unable to parse hours", val );
4034                                         Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4035                                         return -1;
4036                                 }
4037                                 ptr = next + 1;
4038                                 mm = strtol( ptr, &next, 10 );
4039                                 if ( next == ptr || next[0] != ':' || mm < 0 || mm > 60 ) {
4040                                         snprintf( c->cr_msg, sizeof( c->cr_msg ),
4041                                                 "Error: parse_syncrepl_line: "
4042                                                 "invalid interval \"%s\", unable to parse minutes", val );
4043                                         Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4044                                         return -1;
4045                                 }
4046                                 ptr = next + 1;
4047                                 ss = strtol( ptr, &next, 10 );
4048                                 if ( next == ptr || next[0] != '\0' || ss < 0 || ss > 60 ) {
4049                                         snprintf( c->cr_msg, sizeof( c->cr_msg ),
4050                                                 "Error: parse_syncrepl_line: "
4051                                                 "invalid interval \"%s\", unable to parse seconds", val );
4052                                         Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4053                                         return -1;
4054                                 }
4055                                 si->si_interval = (( dd * 24 + hh ) * 60 + mm ) * 60 + ss;
4056                         } else {
4057                                 unsigned long   t;
4058
4059                                 if ( lutil_parse_time( val, &t ) != 0 ) {
4060                                         snprintf( c->cr_msg, sizeof( c->cr_msg ),
4061                                                 "Error: parse_syncrepl_line: "
4062                                                 "invalid interval \"%s\"", val );
4063                                         Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4064                                         return -1;
4065                                 }
4066                                 si->si_interval = (time_t)t;
4067                         }
4068                         if ( si->si_interval < 0 ) {
4069                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4070                                         "Error: parse_syncrepl_line: "
4071                                         "invalid interval \"%ld\"",
4072                                         (long) si->si_interval);
4073                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4074                                 return -1;
4075                         }
4076                         si->si_got |= GOT_INTERVAL;
4077                 } else if ( !strncasecmp( c->argv[ i ], RETRYSTR "=",
4078                                         STRLENOF( RETRYSTR "=" ) ) )
4079                 {
4080                         if ( parse_syncrepl_retry( c, c->argv[ i ], si ) ) {
4081                                 return 1;
4082                         }
4083                 } else if ( !strncasecmp( c->argv[ i ], MANAGEDSAITSTR "=",
4084                                         STRLENOF( MANAGEDSAITSTR "=" ) ) )
4085                 {
4086                         val = c->argv[ i ] + STRLENOF( MANAGEDSAITSTR "=" );
4087                         if ( lutil_atoi( &si->si_manageDSAit, val ) != 0
4088                                 || si->si_manageDSAit < 0 || si->si_manageDSAit > 1 )
4089                         {
4090                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4091                                         "invalid manageDSAit value \"%s\".\n",
4092                                         val );
4093                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4094                                 return 1;
4095                         }
4096                         si->si_got |= GOT_MANAGEDSAIT;
4097                 } else if ( !strncasecmp( c->argv[ i ], SLIMITSTR "=",
4098                                         STRLENOF( SLIMITSTR "=") ) )
4099                 {
4100                         val = c->argv[ i ] + STRLENOF( SLIMITSTR "=" );
4101                         if ( strcasecmp( val, "unlimited" ) == 0 ) {
4102                                 si->si_slimit = 0;
4103
4104                         } else if ( lutil_atoi( &si->si_slimit, val ) != 0 || si->si_slimit < 0 ) {
4105                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4106                                         "invalid size limit value \"%s\".\n",
4107                                         val );
4108                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4109                                 return 1;
4110                         }
4111                         si->si_got |= GOT_SLIMIT;
4112                 } else if ( !strncasecmp( c->argv[ i ], TLIMITSTR "=",
4113                                         STRLENOF( TLIMITSTR "=" ) ) )
4114                 {
4115                         val = c->argv[ i ] + STRLENOF( TLIMITSTR "=" );
4116                         if ( strcasecmp( val, "unlimited" ) == 0 ) {
4117                                 si->si_tlimit = 0;
4118
4119                         } else if ( lutil_atoi( &si->si_tlimit, val ) != 0 || si->si_tlimit < 0 ) {
4120                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4121                                         "invalid time limit value \"%s\".\n",
4122                                         val );
4123                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4124                                 return 1;
4125                         }
4126                         si->si_got |= GOT_TLIMIT;
4127                 } else if ( !strncasecmp( c->argv[ i ], SYNCDATASTR "=",
4128                                         STRLENOF( SYNCDATASTR "=" ) ) )
4129                 {
4130                         val = c->argv[ i ] + STRLENOF( SYNCDATASTR "=" );
4131                         si->si_syncdata = verb_to_mask( val, datamodes );
4132                         si->si_got |= GOT_SYNCDATA;
4133                 } else if ( bindconf_parse( c->argv[i], &si->si_bindconf ) ) {
4134                         snprintf( c->cr_msg, sizeof( c->cr_msg ),
4135                                 "Error: parse_syncrepl_line: "
4136                                 "unable to parse \"%s\"\n", c->argv[ i ] );
4137                         Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4138                         return -1;
4139                 }
4140                 si->si_got |= GOT_BINDCONF;
4141         }
4142
4143         if ( ( si->si_got & GOT_REQUIRED ) != GOT_REQUIRED ) {
4144                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4145                         "Error: Malformed \"syncrepl\" line in slapd config file, missing%s%s%s",
4146                         si->si_got & GOT_RID ? "" : " "IDSTR,
4147                         si->si_got & GOT_PROVIDER ? "" : " "PROVIDERSTR,
4148                         si->si_got & GOT_SEARCHBASE ? "" : " "SEARCHBASESTR );
4149                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4150                 return -1;
4151         }
4152
4153         if ( !( si->si_got & GOT_RETRY ) ) {
4154                 Debug( LDAP_DEBUG_ANY, "syncrepl %s " SEARCHBASESTR "=\"%s\": no retry defined, using default\n", 
4155                         si->si_ridtxt, c->be->be_suffix ? c->be->be_suffix[ 0 ].bv_val : "(null)", 0 );
4156                 if ( si->si_retryinterval == NULL ) {
4157                         if ( parse_syncrepl_retry( c, "retry=undefined", si ) ) {
4158                                 return 1;
4159                         }
4160                 }
4161         }
4162
4163         return 0;
4164 }
4165
4166 static int
4167 add_syncrepl(
4168         ConfigArgs *c )
4169 {
4170         syncinfo_t *si;
4171         int     rc = 0;
4172
4173         if ( !( c->be->be_search && c->be->be_add && c->be->be_modify && c->be->be_delete ) ) {
4174                 snprintf( c->cr_msg, sizeof(c->cr_msg), "database %s does not support "
4175                         "operations required for syncrepl", c->be->be_type );
4176                 Debug( LDAP_DEBUG_ANY, "%s: %s\n", c->log, c->cr_msg, 0 );
4177                 return 1;
4178         }
4179         if ( BER_BVISEMPTY( &c->be->be_rootdn ) ) {
4180                 strcpy( c->cr_msg, "rootDN must be defined before syncrepl may be used" );
4181                 Debug( LDAP_DEBUG_ANY, "%s: %s\n", c->log, c->cr_msg, 0 );
4182                 return 1;
4183         }
4184         si = (syncinfo_t *) ch_calloc( 1, sizeof( syncinfo_t ) );
4185
4186         if ( si == NULL ) {
4187                 Debug( LDAP_DEBUG_ANY, "out of memory in add_syncrepl\n", 0, 0, 0 );
4188                 return 1;
4189         }
4190
4191         si->si_bindconf.sb_tls = SB_TLS_OFF;
4192         si->si_bindconf.sb_method = LDAP_AUTH_SIMPLE;
4193         si->si_schemachecking = 0;
4194         ber_str2bv( "(objectclass=*)", STRLENOF("(objectclass=*)"), 1,
4195                 &si->si_filterstr );
4196         si->si_base.bv_val = NULL;
4197         si->si_scope = LDAP_SCOPE_SUBTREE;
4198         si->si_attrsonly = 0;
4199         si->si_anlist = (AttributeName *) ch_calloc( 1, sizeof( AttributeName ) );
4200         si->si_exanlist = (AttributeName *) ch_calloc( 1, sizeof( AttributeName ) );
4201         si->si_attrs = NULL;
4202         si->si_allattrs = 0;
4203         si->si_allopattrs = 0;
4204         si->si_exattrs = NULL;
4205         si->si_type = si->si_ctype = LDAP_SYNC_REFRESH_ONLY;
4206         si->si_interval = 86400;
4207         si->si_retryinterval = NULL;
4208         si->si_retrynum_init = NULL;
4209         si->si_retrynum = NULL;
4210         si->si_manageDSAit = 0;
4211         si->si_tlimit = 0;
4212         si->si_slimit = 0;
4213
4214         si->si_presentlist = NULL;
4215         LDAP_LIST_INIT( &si->si_nonpresentlist );
4216         ldap_pvt_thread_mutex_init( &si->si_mutex );
4217
4218         rc = parse_syncrepl_line( c, si );
4219
4220         if ( rc == 0 ) {
4221                 /* Must be LDAPv3 because we need controls */
4222                 switch ( si->si_bindconf.sb_version ) {
4223                 case 0:
4224                         /* not explicitly set */
4225                         si->si_bindconf.sb_version = LDAP_VERSION3;
4226                         break;
4227                 case 3:
4228                         /* explicitly set */
4229                         break;
4230                 default:
4231                         Debug( LDAP_DEBUG_ANY,
4232                                 "version %d incompatible with syncrepl\n",
4233                                 si->si_bindconf.sb_version, 0, 0 );
4234                         syncinfo_free( si, 0 ); 
4235                         return 1;
4236                 }
4237
4238                 si->si_be = c->be;
4239                 if ( slapMode & SLAP_SERVER_MODE ) {
4240                         Listener **l = slapd_get_listeners();
4241                         int isMe = 0;
4242
4243                         /* check if URL points to current server. If so, ignore
4244                          * this configuration. We require an exact match. Just
4245                          * in case they really want to do this, they can vary
4246                          * the case of the URL to allow it.
4247                          */
4248                         if ( l && !SLAP_DBHIDDEN( c->be ) ) {
4249                                 int i;
4250                                 for ( i=0; l[i]; i++ ) {
4251                                         if ( bvmatch( &l[i]->sl_url, &si->si_bindconf.sb_uri ) ) {
4252                                                 isMe = 1;
4253                                                 break;
4254                                         }
4255                                 }
4256                         }
4257
4258                         if ( !isMe ) {
4259                                 init_syncrepl( si );
4260                                 ldap_pvt_thread_mutex_lock( &slapd_rq.rq_mutex );
4261                                 si->si_re = ldap_pvt_runqueue_insert( &slapd_rq,
4262                                         si->si_interval, do_syncrepl, si, "do_syncrepl",
4263                                         si->si_ridtxt );
4264                                 ldap_pvt_thread_mutex_unlock( &slapd_rq.rq_mutex );
4265                                 if ( si->si_re )
4266                                         rc = config_sync_shadow( c ) ? -1 : 0;
4267                                 else
4268                                         rc = -1;
4269                         }
4270                 } else {
4271                         /* mirrormode still needs to see this flag in tool mode */
4272                         rc = config_sync_shadow( c ) ? -1 : 0;
4273                 }
4274         }
4275
4276 #ifdef HAVE_TLS
4277         /* Use main slapd defaults */
4278         bindconf_tls_defaults( &si->si_bindconf );
4279 #endif
4280         if ( rc < 0 ) {
4281                 Debug( LDAP_DEBUG_ANY, "failed to add syncinfo\n", 0, 0, 0 );
4282                 syncinfo_free( si, 0 ); 
4283                 return 1;
4284         } else {
4285                 Debug( LDAP_DEBUG_CONFIG,
4286                         "Config: ** successfully added syncrepl \"%s\"\n",
4287                         BER_BVISNULL( &si->si_bindconf.sb_uri ) ?
4288                         "(null)" : si->si_bindconf.sb_uri.bv_val, 0, 0 );
4289                 if ( c->be->be_syncinfo ) {
4290                         si->si_cookieState = c->be->be_syncinfo->si_cookieState;
4291                 } else {
4292                         si->si_cookieState = ch_calloc( 1, sizeof( cookie_state ));
4293                         ldap_pvt_thread_mutex_init( &si->si_cookieState->cs_mutex );
4294                 }
4295                 si->si_next = c->be->be_syncinfo;
4296                 c->be->be_syncinfo = si;
4297                 return 0;
4298         }
4299 }
4300
4301 static void
4302 syncrepl_unparse( syncinfo_t *si, struct berval *bv )
4303 {
4304         struct berval bc, uri;
4305         char buf[BUFSIZ*2], *ptr;
4306         ber_len_t len;
4307         int i;
4308 #       define WHATSLEFT        ((ber_len_t) (&buf[sizeof( buf )] - ptr))
4309
4310         BER_BVZERO( bv );
4311
4312         /* temporarily inhibit bindconf from printing URI */
4313         uri = si->si_bindconf.sb_uri;
4314         BER_BVZERO( &si->si_bindconf.sb_uri );
4315         si->si_bindconf.sb_version = 0;
4316         bindconf_unparse( &si->si_bindconf, &bc );
4317         si->si_bindconf.sb_uri = uri;
4318         si->si_bindconf.sb_version = LDAP_VERSION3;
4319
4320         ptr = buf;
4321         assert( si->si_rid >= 0 && si->si_rid <= SLAP_SYNC_SID_MAX );
4322         len = snprintf( ptr, WHATSLEFT, IDSTR "=%03d " PROVIDERSTR "=%s",
4323                 si->si_rid, si->si_bindconf.sb_uri.bv_val );
4324         if ( len >= sizeof( buf ) ) return;
4325         ptr += len;
4326         if ( !BER_BVISNULL( &bc ) ) {
4327                 if ( WHATSLEFT <= bc.bv_len ) {
4328                         free( bc.bv_val );
4329                         return;
4330                 }
4331                 ptr = lutil_strcopy( ptr, bc.bv_val );
4332                 free( bc.bv_val );
4333         }
4334         if ( !BER_BVISEMPTY( &si->si_filterstr ) ) {
4335                 if ( WHATSLEFT <= STRLENOF( " " FILTERSTR "=\"" "\"" ) + si->si_filterstr.bv_len ) return;
4336                 ptr = lutil_strcopy( ptr, " " FILTERSTR "=\"" );
4337                 ptr = lutil_strcopy( ptr, si->si_filterstr.bv_val );
4338                 *ptr++ = '"';
4339         }
4340         if ( !BER_BVISNULL( &si->si_base ) ) {
4341                 if ( WHATSLEFT <= STRLENOF( " " SEARCHBASESTR "=\"" "\"" ) + si->si_base.bv_len ) return;
4342                 ptr = lutil_strcopy( ptr, " " SEARCHBASESTR "=\"" );
4343                 ptr = lutil_strcopy( ptr, si->si_base.bv_val );
4344                 *ptr++ = '"';
4345         }
4346         if ( !BER_BVISEMPTY( &si->si_logfilterstr ) ) {
4347                 if ( WHATSLEFT <= STRLENOF( " " LOGFILTERSTR "=\"" "\"" ) + si->si_logfilterstr.bv_len ) return;
4348                 ptr = lutil_strcopy( ptr, " " LOGFILTERSTR "=\"" );
4349                 ptr = lutil_strcopy( ptr, si->si_logfilterstr.bv_val );
4350                 *ptr++ = '"';
4351         }
4352         if ( !BER_BVISNULL( &si->si_logbase ) ) {
4353                 if ( WHATSLEFT <= STRLENOF( " " LOGBASESTR "=\"" "\"" ) + si->si_logbase.bv_len ) return;
4354                 ptr = lutil_strcopy( ptr, " " LOGBASESTR "=\"" );
4355                 ptr = lutil_strcopy( ptr, si->si_logbase.bv_val );
4356                 *ptr++ = '"';
4357         }
4358         for (i=0; !BER_BVISNULL(&scopes[i].key);i++) {
4359                 if ( si->si_scope == scopes[i].val ) {
4360                         if ( WHATSLEFT <= STRLENOF( " " SCOPESTR "=" ) + scopes[i].key.bv_len ) return;
4361                         ptr = lutil_strcopy( ptr, " " SCOPESTR "=" );
4362                         ptr = lutil_strcopy( ptr, scopes[i].key.bv_val );
4363                         break;
4364                 }
4365         }
4366         if ( si->si_attrsonly ) {
4367                 if ( WHATSLEFT <= STRLENOF( " " ATTRSONLYSTR "=\"" "\"" ) ) return;
4368                 ptr = lutil_strcopy( ptr, " " ATTRSONLYSTR );
4369         }
4370         if ( si->si_anfile ) {
4371                 if ( WHATSLEFT <= STRLENOF( " " ATTRSSTR "=\":include:" "\"" ) + strlen( si->si_anfile ) ) return;
4372                 ptr = lutil_strcopy( ptr, " " ATTRSSTR "=:include:\"" );
4373                 ptr = lutil_strcopy( ptr, si->si_anfile );
4374                 *ptr++ = '"';
4375         } else if ( si->si_allattrs || si->si_allopattrs ||
4376                 ( si->si_anlist && !BER_BVISNULL(&si->si_anlist[0].an_name) ) )
4377         {
4378                 char *old;
4379
4380                 if ( WHATSLEFT <= STRLENOF( " " ATTRSONLYSTR "=\"" "\"" ) ) return;
4381                 ptr = lutil_strcopy( ptr, " " ATTRSSTR "=\"" );
4382                 old = ptr;
4383                 ptr = anlist_unparse( si->si_anlist, ptr, WHATSLEFT );
4384                 if ( ptr == NULL ) return;
4385                 if ( si->si_allattrs ) {
4386                         if ( WHATSLEFT <= STRLENOF( ",*\"" ) ) return;
4387                         if ( old != ptr ) *ptr++ = ',';
4388                         *ptr++ = '*';
4389                 }
4390                 if ( si->si_allopattrs ) {
4391                         if ( WHATSLEFT <= STRLENOF( ",+\"" ) ) return;
4392                         if ( old != ptr ) *ptr++ = ',';
4393                         *ptr++ = '+';
4394                 }
4395                 *ptr++ = '"';
4396         }
4397         if ( si->si_exanlist && !BER_BVISNULL(&si->si_exanlist[0].an_name) ) {
4398                 if ( WHATSLEFT <= STRLENOF( " " EXATTRSSTR "=" ) ) return;
4399                 ptr = lutil_strcopy( ptr, " " EXATTRSSTR "=" );
4400                 ptr = anlist_unparse( si->si_exanlist, ptr, WHATSLEFT );
4401                 if ( ptr == NULL ) return;
4402         }
4403         if ( WHATSLEFT <= STRLENOF( " " SCHEMASTR "=" ) + STRLENOF( "off" ) ) return;
4404         ptr = lutil_strcopy( ptr, " " SCHEMASTR "=" );
4405         ptr = lutil_strcopy( ptr, si->si_schemachecking ? "on" : "off" );
4406         
4407         if ( WHATSLEFT <= STRLENOF( " " TYPESTR "=" ) + STRLENOF( "refreshAndPersist" ) ) return;
4408         ptr = lutil_strcopy( ptr, " " TYPESTR "=" );
4409         ptr = lutil_strcopy( ptr, si->si_type == LDAP_SYNC_REFRESH_AND_PERSIST ?
4410                 "refreshAndPersist" : "refreshOnly" );
4411
4412         if ( si->si_type == LDAP_SYNC_REFRESH_ONLY ) {
4413                 int dd, hh, mm, ss;
4414
4415                 dd = si->si_interval;
4416                 ss = dd % 60;
4417                 dd /= 60;
4418                 mm = dd % 60;
4419                 dd /= 60;
4420                 hh = dd % 24;
4421                 dd /= 24;
4422                 len = snprintf( ptr, WHATSLEFT, " %s=%02d:%02d:%02d:%02d",
4423                         INTERVALSTR, dd, hh, mm, ss );
4424                 if ( len >= WHATSLEFT ) return;
4425                 ptr += len;
4426         }
4427
4428         if ( si->si_got & GOT_RETRY ) {
4429                 const char *space = "";
4430                 if ( WHATSLEFT <= STRLENOF( " " RETRYSTR "=\"" "\"" ) ) return;
4431                 ptr = lutil_strcopy( ptr, " " RETRYSTR "=\"" );
4432                 for (i=0; si->si_retryinterval[i]; i++) {
4433                         len = snprintf( ptr, WHATSLEFT, "%s%ld ", space,
4434                                 (long) si->si_retryinterval[i] );
4435                         space = " ";
4436                         if ( WHATSLEFT - 1 <= len ) return;
4437                         ptr += len;
4438                         if ( si->si_retrynum_init[i] == RETRYNUM_FOREVER )
4439                                 *ptr++ = '+';
4440                         else {
4441                                 len = snprintf( ptr, WHATSLEFT, "%d", si->si_retrynum_init[i] );
4442                                 if ( WHATSLEFT <= len ) return;
4443                                 ptr += len;
4444                         }
4445                 }
4446                 if ( WHATSLEFT <= STRLENOF( "\"" ) ) return;
4447                 *ptr++ = '"';
4448         } else {
4449                 ptr = lutil_strcopy( ptr, " " RETRYSTR "=undefined" );
4450         }
4451
4452         if ( si->si_slimit ) {
4453                 len = snprintf( ptr, WHATSLEFT, " " SLIMITSTR "=%d", si->si_slimit );
4454                 if ( WHATSLEFT <= len ) return;
4455                 ptr += len;
4456         }
4457
4458         if ( si->si_tlimit ) {
4459                 len = snprintf( ptr, WHATSLEFT, " " TLIMITSTR "=%d", si->si_tlimit );
4460                 if ( WHATSLEFT <= len ) return;
4461                 ptr += len;
4462         }
4463
4464         if ( si->si_syncdata ) {
4465                 if ( enum_to_verb( datamodes, si->si_syncdata, &bc ) >= 0 ) {
4466                         if ( WHATSLEFT <= STRLENOF( " " SYNCDATASTR "=" ) + bc.bv_len ) return;
4467                         ptr = lutil_strcopy( ptr, " " SYNCDATASTR "=" );
4468                         ptr = lutil_strcopy( ptr, bc.bv_val );
4469                 }
4470         }
4471         bc.bv_len = ptr - buf;
4472         bc.bv_val = buf;
4473         ber_dupbv( bv, &bc );
4474 }
4475
4476 int
4477 syncrepl_config( ConfigArgs *c )
4478 {
4479         if (c->op == SLAP_CONFIG_EMIT) {
4480                 if ( c->be->be_syncinfo ) {
4481                         struct berval bv;
4482                         syncinfo_t *si;
4483
4484                         for ( si = c->be->be_syncinfo; si; si=si->si_next ) {
4485                                 syncrepl_unparse( si, &bv ); 
4486                                 ber_bvarray_add( &c->rvalue_vals, &bv );
4487                         }
4488                         return 0;
4489                 }
4490                 return 1;
4491         } else if ( c->op == LDAP_MOD_DELETE ) {
4492                 cookie_state *cs = NULL;
4493                 if ( c->be->be_syncinfo ) {
4494                         syncinfo_t *si, **sip;
4495                         int i;
4496
4497                         cs = c->be->be_syncinfo->si_cookieState;
4498                         for ( sip = &c->be->be_syncinfo, i=0; *sip; i++ ) {
4499                                 si = *sip;
4500                                 if ( c->valx == -1 || i == c->valx ) {
4501                                         int isrunning = 0;
4502                                         *sip = si->si_next;
4503                                         /* If the task is currently active, we have to leave
4504                                          * it running. It will exit on its own. This will only
4505                                          * happen when running on the cn=config DB.
4506                                          */
4507                                         if ( si->si_re ) {
4508                                                 ldap_pvt_thread_mutex_lock( &slapd_rq.rq_mutex );
4509                                                 isrunning = ldap_pvt_runqueue_isrunning( &slapd_rq, si->si_re );
4510                                                 ldap_pvt_thread_mutex_unlock( &slapd_rq.rq_mutex );
4511                                         }
4512                                         if ( si->si_re && isrunning ) {
4513                                                 si->si_ctype = 0;
4514                                         } else {
4515                                                 syncinfo_free( si, 0 );
4516                                         }
4517                                         if ( i == c->valx )
4518                                                 break;
4519                                 } else {
4520                                         sip = &si->si_next;
4521                                 }
4522                         }
4523                 }
4524                 if ( !c->be->be_syncinfo ) {
4525                         SLAP_DBFLAGS( c->be ) &= ~(SLAP_DBFLAG_SHADOW|SLAP_DBFLAG_SYNC_SHADOW);
4526                         if ( cs ) {
4527                                 ber_bvarray_free( cs->cs_vals );
4528                                 ldap_pvt_thread_mutex_destroy( &cs->cs_mutex );
4529                                 ch_free( cs );
4530                         }
4531                 }
4532                 return 0;
4533         }
4534         if ( SLAP_SLURP_SHADOW( c->be ) ) {
4535                 Debug(LDAP_DEBUG_ANY, "%s: "
4536                         "syncrepl: database already shadowed.\n",
4537                         c->log, 0, 0);
4538                 return(1);
4539         } else {
4540                 return add_syncrepl( c );
4541         }
4542 }