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