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