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