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