]> git.sur5r.net Git - openldap/blob - servers/slapd/syncrepl.c
8e15a439347316ecfebef520f00cbeaa193d1bbc
[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-2004 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 "ldap_rq.h"
31
32 /* FIXME: for ldap_ld_free() */
33 #undef ldap_debug
34 #include "../../libraries/libldap/ldap-int.h"
35
36 #define SYNCREPL_STR    "syncreplxxx"
37 #define CN_STR  "cn="
38
39 static const struct berval slap_syncrepl_bvc = BER_BVC(SYNCREPL_STR);
40 static const struct berval slap_syncrepl_cn_bvc = BER_BVC(CN_STR SYNCREPL_STR);
41
42 static int syncuuid_cmp( const void *, const void * );
43 static void avl_ber_bvfree( void * );
44 static void syncrepl_del_nonpresent( Operation *, syncinfo_t *, BerVarray );
45
46 /* callback functions */
47 static int dn_callback( struct slap_op *, struct slap_rep * );
48 static int nonpresent_callback( struct slap_op *, struct slap_rep * );
49 static int null_callback( struct slap_op *, struct slap_rep * );
50
51 static AttributeDescription *sync_descs[4];
52
53 void
54 init_syncrepl(syncinfo_t *si)
55 {
56         int i, j, k, l, n;
57         char **attrs, **exattrs;
58
59         if ( !sync_descs[0] ) {
60                 sync_descs[0] = slap_schema.si_ad_objectClass;
61                 sync_descs[1] = slap_schema.si_ad_structuralObjectClass;
62                 sync_descs[2] = slap_schema.si_ad_entryCSN;
63                 sync_descs[3] = NULL;
64         }
65
66         if ( si->si_allattrs && si->si_allopattrs )
67                 attrs = NULL;
68         else
69                 attrs = anlist2attrs( si->si_anlist );
70
71         if ( attrs ) {
72                 if ( si->si_allattrs ) {
73                         i = 0;
74                         while ( attrs[i] ) {
75                                 if ( !is_at_operational( at_find( attrs[i] ))) {
76                                         for ( j = i; attrs[j] != NULL; j++ ) {
77                                                 if ( j == i )
78                                                         ch_free( attrs[i] );
79                                                 attrs[j] = attrs[j+1];
80                                         }
81                                 } else {
82                                         i++;
83                                 }
84                         }
85                         attrs = ( char ** ) ch_realloc( attrs, (i + 2)*sizeof( char * ) );
86                         attrs[i] = ch_strdup("*");
87                         attrs[i + 1] = NULL;
88
89                 } else if ( si->si_allopattrs ) {
90                         i = 0;
91                         while ( attrs[i] ) {
92                                 if ( is_at_operational( at_find( attrs[i] ))) {
93                                         for ( j = i; attrs[j] != NULL; j++ ) {
94                                                 if ( j == i )
95                                                         ch_free( attrs[i] );
96                                                 attrs[j] = attrs[j+1];
97                                         }
98                                 } else {
99                                         i++;
100                                 }
101                         }
102                         attrs = ( char ** ) ch_realloc( attrs, (i + 2)*sizeof( char * ) );
103                         attrs[i] = ch_strdup("+");
104                         attrs[i + 1] = NULL;
105                 }
106
107                 for ( i = 0; sync_descs[i] != NULL; i++ ) {
108                         j = 0;
109                         while ( attrs[j] ) {
110                                 if ( !strcmp( attrs[j], sync_descs[i]->ad_cname.bv_val )) {
111                                         for ( k = j; attrs[k] != NULL; k++ ) {
112                                                 if ( k == j )
113                                                         ch_free( attrs[k] );
114                                                 attrs[k] = attrs[k+1];
115                                         }
116                                 } else {
117                                         j++;
118                                 }
119                         }
120                 }
121
122                 for ( n = 0; attrs[ n ] != NULL; n++ ) /* empty */;
123
124                 if ( si->si_allopattrs ) {
125                         attrs = ( char ** ) ch_realloc( attrs, (n + 2)*sizeof( char * ));
126                 } else {
127                         attrs = ( char ** ) ch_realloc( attrs, (n + 4)*sizeof( char * ));
128                 }
129
130                 if ( attrs == NULL ) {
131                         Debug( LDAP_DEBUG_ANY, "out of memory\n", 0,0,0 );
132                 }
133
134                 /* Add Attributes */
135                 if ( si->si_allopattrs ) {
136                         attrs[n++] = ch_strdup( sync_descs[0]->ad_cname.bv_val );
137                 } else {
138                         for ( i = 0; sync_descs[ i ] != NULL; i++ ) {
139                                 attrs[ n++ ] = ch_strdup ( sync_descs[i]->ad_cname.bv_val );
140                         }
141                 }
142                 attrs[ n ] = NULL;
143
144         } else {
145
146                 i = 0;
147                 if ( si->si_allattrs == si->si_allopattrs ) {
148                         attrs = (char**) ch_malloc( 3 * sizeof(char*) );
149                         attrs[i++] = ch_strdup( "*" );
150                         attrs[i++] = ch_strdup( "+" );
151                 } else if ( si->si_allattrs && !si->si_allopattrs ) {
152                         for ( n = 0; sync_descs[ n ] != NULL; n++ ) ;
153                         attrs = (char**) ch_malloc( (n+1)* sizeof(char*) );
154                         attrs[i++] = ch_strdup( "*" );
155                         for ( j = 1; sync_descs[ j ] != NULL; j++ ) {
156                                 attrs[i++] = ch_strdup ( sync_descs[j]->ad_cname.bv_val );
157                         }
158                 } else if ( !si->si_allattrs && si->si_allopattrs ) {
159                         attrs = (char**) ch_malloc( 3 * sizeof(char*) );
160                         attrs[i++] = ch_strdup( "+" );
161                         attrs[i++] = ch_strdup( sync_descs[0]->ad_cname.bv_val );
162                 }
163                 attrs[i] = NULL;
164         }
165         
166         si->si_attrs = attrs;
167
168         exattrs = anlist2attrs( si->si_exanlist );
169
170         if ( exattrs ) {
171                 for ( n = 0; exattrs[n] != NULL; n++ ) ;
172
173                 for ( i = 0; sync_descs[i] != NULL; i++ ) {
174                         j = 0;
175                         while ( exattrs[j] != NULL ) {
176                                 if ( !strcmp( exattrs[j], sync_descs[i]->ad_cname.bv_val )) {
177                                         for ( k = j; exattrs[k] != NULL; k++ ) {
178                                                 if ( k == j )
179                                                         ch_free( exattrs[k] );
180                                                 exattrs[k] = exattrs[k+1];
181                                         }
182                                 } else {
183                                         j++;
184                                 }
185                         }
186                 }
187
188                 for ( i = 0; exattrs[i] != NULL; i++ ) {
189                         for ( j = 0; si->si_anlist[j].an_name.bv_val; j++ ) {
190                                 ObjectClass     *oc;
191                                 if ( ( oc = si->si_anlist[j].an_oc ) ) {
192                                         k = 0;
193                                         while ( oc->soc_required[k] ) {
194                                                 if ( !strcmp( exattrs[i],
195                                                          oc->soc_required[k]->sat_cname.bv_val )) {
196                                                         for ( l = i; exattrs[l]; l++ ) {
197                                                                 if ( l == i )
198                                                                         ch_free( exattrs[i] );
199                                                                 exattrs[l] = exattrs[l+1];
200                                                         }
201                                                 } else {
202                                                         k++;
203                                                 }
204                                         }
205                                 }
206                         }
207                 }
208
209                 for ( i = 0; exattrs[i] != NULL; i++ ) ;
210
211                 if ( i != n )
212                         exattrs = (char **) ch_realloc( exattrs, (i + 1)*sizeof(char *));
213         }
214
215         si->si_exattrs = exattrs;       
216 }
217
218 static int
219 ldap_sync_search(
220         syncinfo_t *si,
221         void *ctx )
222 {
223         BerElementBuffer berbuf;
224         BerElement *ber = (BerElement *)&berbuf;
225         LDAPControl c[2], *ctrls[3];
226         struct timeval timeout;
227         ber_int_t       msgid;
228         int rc;
229
230         /* setup LDAP SYNC control */
231         ber_init2( ber, NULL, LBER_USE_DER );
232         ber_set_option( ber, LBER_OPT_BER_MEMCTX, &ctx );
233
234         if ( si->si_syncCookie.octet_str &&
235                 !BER_BVISNULL( &si->si_syncCookie.octet_str[0] ) )
236         {
237                 ber_printf( ber, "{eO}",
238                         abs(si->si_type),
239                         &si->si_syncCookie.octet_str[0] );
240         } else {
241                 ber_printf( ber, "{e}",
242                         abs(si->si_type) );
243         }
244
245         if ( (rc = ber_flatten2( ber, &c[0].ldctl_value, 0 )) == LBER_ERROR ) {
246                 ber_free_buf( ber );
247                 return rc;
248         }
249
250         c[0].ldctl_oid = LDAP_CONTROL_SYNC;
251         c[0].ldctl_iscritical = si->si_type < 0;
252         ctrls[0] = &c[0];
253
254         if ( si->si_authzId ) {
255                 c[1].ldctl_oid = LDAP_CONTROL_PROXY_AUTHZ;
256                 ber_str2bv( si->si_authzId, 0, 0, &c[1].ldctl_value );
257                 c[1].ldctl_iscritical = 1;
258                 ctrls[1] = &c[1];
259                 ctrls[2] = NULL;
260         } else {
261                 ctrls[1] = NULL;
262         }
263
264         timeout.tv_sec = si->si_tlimit;
265         timeout.tv_usec = 0;
266
267         rc = ldap_search_ext( si->si_ld, si->si_base.bv_val, si->si_scope,
268                 si->si_filterstr.bv_val, si->si_attrs, si->si_attrsonly,
269                 ctrls, NULL, si->si_tlimit > 0 ? &timeout : NULL,
270                 si->si_slimit, &msgid );
271         ber_free_buf( ber );
272         return rc;
273 }
274
275 static int
276 do_syncrep1(
277         Operation *op,
278         syncinfo_t *si )
279 {
280         int     rc;
281         int cmdline_cookie_found = 0;
282
283         char syncrepl_cbuf[sizeof(CN_STR SYNCREPL_STR)];
284         struct berval syncrepl_cn_bv;
285         struct sync_cookie      *sc = NULL;
286         struct berval   *psub;
287 #ifdef HAVE_TLS
288         void    *ssl;
289 #endif
290
291         psub = &si->si_be->be_nsuffix[0];
292
293         /* Init connection to master */
294         rc = ldap_initialize( &si->si_ld, si->si_provideruri );
295         if ( rc != LDAP_SUCCESS ) {
296                 Debug( LDAP_DEBUG_ANY,
297                         "do_syncrep1: ldap_initialize failed (%s)\n",
298                         si->si_provideruri, 0, 0 );
299                 return rc;
300         }
301
302         op->o_protocol = LDAP_VERSION3;
303         ldap_set_option( si->si_ld, LDAP_OPT_PROTOCOL_VERSION, &op->o_protocol );
304
305         /* Bind to master */
306
307         if ( si->si_tls ) {
308                 rc = ldap_start_tls_s( si->si_ld, NULL, NULL );
309                 if( rc != LDAP_SUCCESS ) {
310                         Debug( LDAP_DEBUG_ANY,
311                                 "%s: ldap_start_tls failed (%d)\n",
312                                 si->si_tls == SYNCINFO_TLS_CRITICAL ? "Error" : "Warning",
313                                 rc, 0 );
314                         if( si->si_tls == SYNCINFO_TLS_CRITICAL ) goto done;
315                 }
316         }
317
318         if ( si->si_bindmethod == LDAP_AUTH_SASL ) {
319 #ifdef HAVE_CYRUS_SASL
320                 void *defaults;
321
322                 if ( si->si_secprops != NULL ) {
323                         rc = ldap_set_option( si->si_ld,
324                                 LDAP_OPT_X_SASL_SECPROPS, si->si_secprops);
325
326                         if( rc != LDAP_OPT_SUCCESS ) {
327                                 Debug( LDAP_DEBUG_ANY, "Error: ldap_set_option "
328                                         "(%s,SECPROPS,\"%s\") failed!\n",
329                                         si->si_provideruri, si->si_secprops, 0 );
330                                 goto done;
331                         }
332                 }
333
334                 defaults = lutil_sasl_defaults( si->si_ld, si->si_saslmech,
335                         si->si_realm, si->si_authcId, si->si_passwd, si->si_authzId );
336
337                 rc = ldap_sasl_interactive_bind_s( si->si_ld,
338                                 si->si_binddn,
339                                 si->si_saslmech,
340                                 NULL, NULL,
341                                 LDAP_SASL_QUIET,
342                                 lutil_sasl_interact,
343                                 defaults );
344
345                 lutil_sasl_freedefs( defaults );
346
347                 /* FIXME: different error behaviors according to
348                  *      1) return code
349                  *      2) on err policy : exit, retry, backoff ...
350                  */
351                 if ( rc != LDAP_SUCCESS ) {
352                         Debug( LDAP_DEBUG_ANY, "do_syncrep1: "
353                                 "ldap_sasl_interactive_bind_s failed (%d)\n",
354                                 rc, 0, 0 );
355
356                         /* FIXME (see above comment) */
357                         /* if Kerberos credentials cache is not active, retry */
358                         if ( strcmp( si->si_saslmech, "GSSAPI" ) == 0 &&
359                                 rc == LDAP_LOCAL_ERROR )
360                         {
361                                 rc = LDAP_SERVER_DOWN;
362                         }
363
364                         goto done;
365                 }
366 #else /* HAVE_CYRUS_SASL */
367                 /* Should never get here, we trapped this at config time */
368                 assert(0);
369                 fprintf( stderr, "not compiled with SASL support\n" );
370                 rc = LDAP_OTHER;
371                 goto done;
372 #endif
373
374         } else {
375                 rc = ldap_bind_s( si->si_ld,
376                         si->si_binddn, si->si_passwd, si->si_bindmethod );
377                 if ( rc != LDAP_SUCCESS ) {
378                         Debug( LDAP_DEBUG_ANY, "do_syncrep1: "
379                                 "ldap_bind_s failed (%d)\n", rc, 0, 0 );
380                         goto done;
381                 }
382         }
383
384         /* Set SSF to strongest of TLS, SASL SSFs */
385         op->o_sasl_ssf = 0;
386         op->o_tls_ssf = 0;
387         op->o_transport_ssf = 0;
388 #ifdef HAVE_TLS
389         if ( ldap_get_option( si->si_ld, LDAP_OPT_X_TLS_SSL_CTX, &ssl )
390                 == LDAP_SUCCESS && ssl != NULL )
391         {
392                 op->o_tls_ssf = ldap_pvt_tls_get_strength( ssl );
393         }
394 #endif /* HAVE_TLS */
395         ldap_get_option( si->si_ld, LDAP_OPT_X_SASL_SSF, &op->o_sasl_ssf );
396         op->o_ssf = ( op->o_sasl_ssf > op->o_tls_ssf )
397                 ?  op->o_sasl_ssf : op->o_tls_ssf;
398
399         /* get syncrepl cookie of shadow replica from subentry */
400         assert( si->si_rid < 1000 );
401         syncrepl_cn_bv.bv_val = syncrepl_cbuf;
402         syncrepl_cn_bv.bv_len = snprintf( syncrepl_cbuf, sizeof(syncrepl_cbuf),
403                 CN_STR "syncrepl%ld", si->si_rid );
404         build_new_dn( &op->o_req_ndn, psub, &syncrepl_cn_bv, op->o_tmpmemctx );
405         op->o_req_dn = op->o_req_ndn;
406
407         LDAP_STAILQ_FOREACH( sc, &slap_sync_cookie, sc_next ) {
408                 if ( si->si_rid == sc->rid ) {
409                         cmdline_cookie_found = 1;
410                         break;
411                 }
412         }
413
414         if ( cmdline_cookie_found ) {
415                 /* cookie is supplied in the command line */
416                 BerVarray cookie = NULL;
417                 struct berval cookie_bv;
418
419                 LDAP_STAILQ_REMOVE( &slap_sync_cookie, sc, sync_cookie, sc_next );
420                 slap_sync_cookie_free( &si->si_syncCookie, 0 );
421
422                 /* read stored cookie if it exists */
423                 backend_attribute( op, NULL, &op->o_req_ndn,
424                         slap_schema.si_ad_syncreplCookie, &cookie, ACL_READ );
425
426                 if ( !cookie ) {
427                         /* no stored cookie */
428                         if ( sc->ctxcsn == NULL ||
429                                  BER_BVISNULL( sc->ctxcsn ) ) {
430                                 /* if cmdline cookie does not have ctxcsn */
431                                 /* component, set it to an initial value */
432                                 slap_init_sync_cookie_ctxcsn( sc );
433                         }
434                         slap_dup_sync_cookie( &si->si_syncCookie, sc );
435                         slap_sync_cookie_free( sc, 1 );
436                         sc = NULL;
437
438                 } else {
439                         /* stored cookie */
440                         struct berval newcookie = BER_BVNULL;
441                         ber_dupbv( &cookie_bv, &cookie[0] );
442                         ber_bvarray_add( &si->si_syncCookie.octet_str, &cookie_bv );
443                         slap_parse_sync_cookie( &si->si_syncCookie );
444                         ber_bvarray_free( si->si_syncCookie.octet_str );
445                         si->si_syncCookie.octet_str = NULL;
446                         ber_bvarray_free_x( cookie, op->o_tmpmemctx );
447                         if ( sc->sid != -1 ) {
448                                 /* command line cookie wins */
449                                 si->si_syncCookie.sid = sc->sid;
450                         }
451                         if ( sc->ctxcsn != NULL ) {
452                                 /* command line cookie wins */
453                                 if ( si->si_syncCookie.ctxcsn ) {
454                                         ber_bvarray_free( si->si_syncCookie.ctxcsn );
455                                         si->si_syncCookie.ctxcsn = NULL;
456                                 }
457                                 ber_dupbv( &cookie_bv, &sc->ctxcsn[0] );
458                                 ber_bvarray_add( &si->si_syncCookie.ctxcsn, &cookie_bv );
459                         }
460                         if ( sc->rid != -1 ) {
461                                 /* command line cookie wins */
462                                 si->si_syncCookie.rid = sc->rid;
463                         }
464                         slap_sync_cookie_free( sc, 1 );
465                         sc = NULL;
466                         slap_compose_sync_cookie( NULL, &newcookie,
467                                         &si->si_syncCookie.ctxcsn[0],
468                                         si->si_syncCookie.sid, si->si_syncCookie.rid );
469                         ber_bvarray_add( &si->si_syncCookie.octet_str, &newcookie );
470                 }
471
472         } else {
473                 /* no command line cookie is specified */
474                 if ( si->si_syncCookie.octet_str == NULL ) {
475                         BerVarray cookie = NULL;
476                         struct berval cookie_bv;
477                         /* try to read stored cookie */
478                         backend_attribute( op, NULL, &op->o_req_ndn,
479                                 slap_schema.si_ad_syncreplCookie, &cookie, ACL_READ );
480                         if ( cookie ) {
481                                 ber_dupbv( &cookie_bv, &cookie[0] );
482                                 ber_bvarray_add( &si->si_syncCookie.octet_str, &cookie_bv );
483                                 slap_parse_sync_cookie( &si->si_syncCookie );
484                                 ber_bvarray_free_x( cookie, op->o_tmpmemctx );
485                         }
486                 }
487         }
488
489         rc = ldap_sync_search( si, op->o_tmpmemctx );
490
491         if( rc != LDAP_SUCCESS ) {
492                 Debug( LDAP_DEBUG_ANY, "do_syncrep1: "
493                         "ldap_search_ext: %s (%d)\n", ldap_err2string( rc ), rc, 0 );
494         }
495
496 done:
497         if ( rc ) {
498                 if ( si->si_ld ) {
499                         ldap_unbind( si->si_ld );
500                         si->si_ld = NULL;
501                 }
502         }
503
504         slap_sl_free( op->o_req_ndn.bv_val, op->o_tmpmemctx );
505
506         return rc;
507 }
508
509 static int
510 do_syncrep2(
511         Operation *op,
512         syncinfo_t *si )
513 {
514         LDAPControl     **rctrls = NULL;
515         LDAPControl     *rctrlp;
516
517         BerElementBuffer berbuf;
518         BerElement      *ber = (BerElement *)&berbuf;
519
520         LDAPMessage     *res = NULL;
521         LDAPMessage     *msg = NULL;
522
523         char            *retoid = NULL;
524         struct berval   *retdata = NULL;
525
526         Entry           *entry = NULL;
527
528         int             syncstate;
529         struct berval   syncUUID = BER_BVNULL;
530         struct sync_cookie      syncCookie = { NULL, -1, NULL };
531         struct sync_cookie      syncCookie_req = { NULL, -1, NULL };
532         struct berval           cookie = BER_BVNULL;
533
534         int     rc, err, i;
535         ber_len_t       len;
536
537         int rc_efree = 1;
538
539         struct berval   *psub;
540         Modifications   *modlist = NULL;
541
542         const char              *text;
543         int                             match;
544
545         struct timeval *tout_p = NULL;
546         struct timeval tout = { 0, 0 };
547
548         int             refreshDeletes = 0;
549         int             refreshDone = 1;
550         BerVarray syncUUIDs = NULL;
551         ber_tag_t si_tag;
552
553         if ( slapd_shutdown ) {
554                 rc = -2;
555                 goto done;
556         }
557
558         ber_init2( ber, NULL, LBER_USE_DER );
559         ber_set_option( ber, LBER_OPT_BER_MEMCTX, &op->o_tmpmemctx );
560
561         Debug( LDAP_DEBUG_TRACE, "=>do_syncrep2\n", 0, 0, 0 );
562
563         psub = &si->si_be->be_nsuffix[0];
564
565         slap_dup_sync_cookie( &syncCookie_req, &si->si_syncCookie );
566
567         if ( abs(si->si_type) == LDAP_SYNC_REFRESH_AND_PERSIST ) {
568                 tout_p = &tout;
569         } else {
570                 tout_p = NULL;
571         }
572
573         while (( rc = ldap_result( si->si_ld, LDAP_RES_ANY, LDAP_MSG_ONE,
574                 tout_p, &res )) > 0 )
575         {
576                 if ( slapd_shutdown ) {
577                         rc = -2;
578                         goto done;
579                 }
580                 for( msg = ldap_first_message( si->si_ld, res );
581                         msg != NULL;
582                         msg = ldap_next_message( si->si_ld, msg ) )
583                 {
584                         switch( ldap_msgtype( msg ) ) {
585                         case LDAP_RES_SEARCH_ENTRY:
586                                 ldap_get_entry_controls( si->si_ld, msg, &rctrls );
587                                 /* we can't work without the control */
588                                 if ( !rctrls ) {
589                                         Debug( LDAP_DEBUG_ANY, "do_syncrep2: "
590                                                 "got search entry without "
591                                                 "control\n", 0, 0, 0 );
592                                         rc = -1;
593                                         goto done;
594                                 }
595                                 rctrlp = *rctrls;
596                                 ber_init2( ber, &rctrlp->ldctl_value, LBER_USE_DER );
597                                 ber_scanf( ber, "{em" /*"}"*/, &syncstate, &syncUUID );
598                                 if ( ber_peek_tag( ber, &len ) == LDAP_TAG_SYNC_COOKIE ) {
599                                         ber_scanf( ber, /*"{"*/ "m}", &cookie );
600                                         if ( !BER_BVISNULL( &cookie ) ) {
601                                                 struct berval tmp_bv;
602                                                 ber_dupbv( &tmp_bv, &cookie );
603                                                 ber_bvarray_add( &syncCookie.octet_str, &tmp_bv );
604                                         }
605                                         if ( syncCookie.octet_str &&
606                                                         !BER_BVISNULL( &syncCookie.octet_str[0] ) )
607                                         {
608                                                 slap_parse_sync_cookie( &syncCookie );
609                                         }
610                                 }
611                                 if ( syncrepl_message_to_entry( si, op, msg,
612                                         &modlist, &entry, syncstate ) == LDAP_SUCCESS ) {
613                                         rc_efree = syncrepl_entry( si, op, entry, &modlist,
614                                                 syncstate, &syncUUID, &syncCookie_req, syncCookie.ctxcsn );
615                                         if ( syncCookie.octet_str &&
616                                                 !BER_BVISNULL( &syncCookie.octet_str[0] ) )
617                                         {
618                                                 syncrepl_updateCookie( si, op, psub, &syncCookie );
619                                         }
620                                 }
621                                 ldap_controls_free( rctrls );
622                                 if ( modlist ) {
623                                         slap_mods_free( modlist );
624                                 }
625                                 if ( rc_efree && entry ) {
626                                         entry_free( entry );
627                                 }
628                                 entry = NULL;
629                                 break;
630
631                         case LDAP_RES_SEARCH_REFERENCE:
632                                 Debug( LDAP_DEBUG_ANY,
633                                         "do_syncrep2: reference received error\n", 0, 0, 0 );
634                                 break;
635
636                         case LDAP_RES_SEARCH_RESULT:
637                                 Debug( LDAP_DEBUG_SYNC,
638                                         "do_syncrep2: LDAP_RES_SEARCH_RESULT\n", 0, 0, 0 );
639                                 ldap_parse_result( si->si_ld, msg, &err, NULL, NULL, NULL,
640                                         &rctrls, 0 );
641                                 if ( rctrls ) {
642                                         rctrlp = *rctrls;
643                                         ber_init2( ber, &rctrlp->ldctl_value, LBER_USE_DER );
644
645                                         ber_scanf( ber, "{" /*"}"*/);
646                                         if ( ber_peek_tag( ber, &len ) == LDAP_TAG_SYNC_COOKIE ) {
647                                                 ber_scanf( ber, "m", &cookie );
648                                                 if ( !BER_BVISNULL( &cookie ) ) {
649                                                         struct berval tmp_bv;
650                                                         ber_dupbv( &tmp_bv, &cookie );
651                                                         ber_bvarray_add( &syncCookie.octet_str, &tmp_bv);
652                                                 }
653                                                 if ( syncCookie.octet_str &&
654                                                         !BER_BVISNULL( &syncCookie.octet_str[0] ) )
655                                                 {
656                                                         slap_parse_sync_cookie( &syncCookie );
657                                                 }
658                                         }
659                                         if ( ber_peek_tag( ber, &len ) == LDAP_TAG_REFRESHDELETES )
660                                         {
661                                                 ber_scanf( ber, "b", &refreshDeletes );
662                                         }
663                                         ber_scanf( ber, /*"{"*/ "}" );
664                                 }
665                                 if ( syncCookie_req.ctxcsn == NULL ) {
666                                         match = -1;
667                                 } else if ( syncCookie.ctxcsn == NULL ) {
668                                         match = 1;
669                                 } else {
670                                         value_match( &match, slap_schema.si_ad_entryCSN,
671                                                 slap_schema.si_ad_entryCSN->ad_type->sat_ordering,
672                                                 SLAP_MR_VALUE_OF_ATTRIBUTE_SYNTAX,
673                                                 &syncCookie_req.ctxcsn[0], &syncCookie.ctxcsn[0],
674                                                 &text );
675                                 }
676                                 if ( syncCookie.octet_str && !BER_BVISNULL( syncCookie.octet_str ) &&
677                                         match < 0 && err == LDAP_SUCCESS )
678                                 {
679                                         syncrepl_updateCookie( si, op, psub, &syncCookie );
680                                 }
681                                 if ( rctrls ) {
682                                         ldap_controls_free( rctrls );
683                                 }
684                                 if (si->si_type != LDAP_SYNC_REFRESH_AND_PERSIST) {
685                                         /* FIXME : different error behaviors according to
686                                          *      1) err code : LDAP_BUSY ...
687                                          *      2) on err policy : stop service, stop sync, retry
688                                          */
689                                         if ( refreshDeletes == 0 && match < 0 &&
690                                                 err == LDAP_SUCCESS )
691                                         {
692                                                 syncrepl_del_nonpresent( op, si, NULL );
693                                         } else {
694                                                 avl_free( si->si_presentlist, avl_ber_bvfree );
695                                                 si->si_presentlist = NULL;
696                                         }
697                                 }
698                                 rc = -2;
699                                 goto done;
700                                 break;
701
702                         case LDAP_RES_INTERMEDIATE:
703                                 rc = ldap_parse_intermediate( si->si_ld, msg,
704                                         &retoid, &retdata, NULL, 0 );
705                                 if ( !rc && !strcmp( retoid, LDAP_SYNC_INFO ) ) {
706                                         ber_init2( ber, retdata, LBER_USE_DER );
707
708                                         switch ( si_tag = ber_peek_tag( ber, &len )) {
709                                         ber_tag_t tag;
710                                         case LDAP_TAG_SYNC_NEW_COOKIE:
711                                                 Debug( LDAP_DEBUG_SYNC,
712                                                         "do_syncrep2: %s - %s%s\n", 
713                                                         "LDAP_RES_INTERMEDIATE", 
714                                                         "NEW_COOKIE", "\n" );
715                                                 ber_scanf( ber, "tm", &tag, &cookie );
716                                                 break;
717                                         case LDAP_TAG_SYNC_REFRESH_DELETE:
718                                         case LDAP_TAG_SYNC_REFRESH_PRESENT:
719                                                 Debug( LDAP_DEBUG_SYNC,
720                                                         "do_syncrep2: %s - %s%s\n", 
721                                                         "LDAP_RES_INTERMEDIATE", 
722                                                         si_tag == LDAP_TAG_SYNC_REFRESH_PRESENT ?
723                                                         "REFRESH_PRESENT" : "REFRESH_DELETE",
724                                                         "\n" );
725                                                 if ( si_tag == LDAP_TAG_SYNC_REFRESH_DELETE ) {
726                                                         si->si_refreshDelete = 1;
727                                                 } else {
728                                                         si->si_refreshPresent = 1;
729                                                 }
730                                                 ber_scanf( ber, "t{" /*"}"*/, &tag );
731                                                 if ( ber_peek_tag( ber, &len ) == LDAP_TAG_SYNC_COOKIE )
732                                                 {
733                                                         ber_scanf( ber, "m", &cookie );
734                                                         if ( !BER_BVISNULL( &cookie ) ) {
735                                                                 struct berval tmp_bv;
736                                                                 ber_dupbv( &tmp_bv, &cookie );
737                                                                 ber_bvarray_add( &syncCookie.octet_str,
738                                                                         &tmp_bv);
739                                                         }
740                                                         if ( syncCookie.octet_str &&
741                                                                 !BER_BVISNULL( &syncCookie.octet_str[0] ) )
742                                                         {
743                                                                 slap_parse_sync_cookie( &syncCookie );
744                                                         }
745                                                 }
746                                                 if ( ber_peek_tag( ber, &len ) ==
747                                                         LDAP_TAG_REFRESHDONE )
748                                                 {
749                                                         ber_scanf( ber, "b", &refreshDone );
750                                                 }
751                                                 ber_scanf( ber, /*"{"*/ "}" );
752                                                 break;
753                                         case LDAP_TAG_SYNC_ID_SET:
754                                                 Debug( LDAP_DEBUG_SYNC,
755                                                         "do_syncrep2: %s - %s%s\n", 
756                                                         "LDAP_RES_INTERMEDIATE", 
757                                                         "SYNC_ID_SET",
758                                                         "\n" );
759                                                 ber_scanf( ber, "t{" /*"}"*/, &tag );
760                                                 if ( ber_peek_tag( ber, &len ) ==
761                                                         LDAP_TAG_SYNC_COOKIE )
762                                                 {
763                                                         ber_scanf( ber, "m", &cookie );
764                                                         if ( !BER_BVISNULL( &cookie ) ) {
765                                                                 struct berval tmp_bv;
766                                                                 ber_dupbv( &tmp_bv, &cookie );
767                                                                 ber_bvarray_add( &syncCookie.octet_str,
768                                                                         &tmp_bv );
769                                                         }
770                                                         if ( syncCookie.octet_str &&
771                                                                         !BER_BVISNULL( &syncCookie.octet_str[0] ) )
772                                                         {
773                                                                 slap_parse_sync_cookie( &syncCookie );
774                                                         }
775                                                 }
776                                                 if ( ber_peek_tag( ber, &len ) ==
777                                                         LDAP_TAG_REFRESHDELETES )
778                                                 {
779                                                         ber_scanf( ber, "b", &refreshDeletes );
780                                                 }
781                                                 ber_scanf( ber, "[W]", &syncUUIDs );
782                                                 ber_scanf( ber, /*"{"*/ "}" );
783                                                 if ( refreshDeletes ) {
784                                                         syncrepl_del_nonpresent( op, si, syncUUIDs );
785                                                         ber_bvarray_free_x( syncUUIDs, op->o_tmpmemctx );
786                                                 } else {
787                                                         for ( i = 0; !BER_BVISNULL( &syncUUIDs[i] ); i++ ) {
788                                                                 struct berval *syncuuid_bv;
789                                                                 syncuuid_bv = ber_dupbv( NULL, &syncUUIDs[i] );
790                                                                 slap_sl_free( syncUUIDs[i].bv_val,op->o_tmpmemctx );
791                                                                 avl_insert( &si->si_presentlist,
792                                                                         (caddr_t) syncuuid_bv,
793                                                                         syncuuid_cmp, avl_dup_error );
794                                                         }
795                                                         slap_sl_free( syncUUIDs, op->o_tmpmemctx );
796                                                 }
797                                                 break;
798                                         default:
799                                                 Debug( LDAP_DEBUG_ANY,
800                                                         "do_syncrep2 : unknown syncinfo tag (%ld)\n",
801                                                 (long) si_tag, 0, 0 );
802                                                 ldap_memfree( retoid );
803                                                 ber_bvfree( retdata );
804                                                 continue;
805                                         }
806
807                                         if ( syncCookie_req.ctxcsn == NULL ) {
808                                                 match = -1;
809                                         } else if ( syncCookie.ctxcsn == NULL ) {
810                                                 match = 1;
811                                         } else {
812                                                 value_match( &match, slap_schema.si_ad_entryCSN,
813                                                         slap_schema.si_ad_entryCSN->ad_type->sat_ordering,
814                                                         SLAP_MR_VALUE_OF_ATTRIBUTE_SYNTAX,
815                                                         &syncCookie_req.ctxcsn[0],
816                                                         &syncCookie.ctxcsn[0], &text );
817                                         }
818
819                                         if ( syncCookie.ctxcsn && !BER_BVISNULL( &syncCookie.ctxcsn[0] ) &&
820                                                 match < 0 )
821                                         {
822                                                 syncrepl_updateCookie( si, op, psub, &syncCookie);
823                                         }
824
825                                         if ( si->si_refreshPresent == 1 ) {
826                                                 if ( match < 0 ) {
827                                                         syncrepl_del_nonpresent( op, si, NULL );
828                                                 }
829                                         } 
830
831                                         ldap_memfree( retoid );
832                                         ber_bvfree( retdata );
833                                         break;
834
835                                 } else {
836                                         Debug( LDAP_DEBUG_ANY, "do_syncrep2 : "
837                                                 "unknown intermediate response (%d)\n",
838                                                 rc, 0, 0 );
839                                         ldap_memfree( retoid );
840                                         ber_bvfree( retdata );
841                                         break;
842                                 }
843                                 break;
844
845                         default:
846                                 Debug( LDAP_DEBUG_ANY, "do_syncrep2 : "
847                                         "unknown message\n", 0, 0, 0 );
848                                 break;
849
850                         }
851                         if ( syncCookie.octet_str ) {
852                                 slap_sync_cookie_free( &syncCookie_req, 0 );
853                                 slap_dup_sync_cookie( &syncCookie_req, &syncCookie );
854                                 slap_sync_cookie_free( &syncCookie, 0 );
855                         }
856                 }
857                 ldap_msgfree( res );
858                 res = NULL;
859         }
860
861         if ( rc == -1 ) {
862                 const char *errstr;
863
864                 ldap_get_option( si->si_ld, LDAP_OPT_ERROR_NUMBER, &rc );
865                 errstr = ldap_err2string( rc );
866                 
867                 Debug( LDAP_DEBUG_ANY,
868                         "do_syncrep2 : %s\n", errstr, 0, 0 );
869         }
870
871 done:
872         slap_sync_cookie_free( &syncCookie, 0 );
873         slap_sync_cookie_free( &syncCookie_req, 0 );
874
875         if ( res ) ldap_msgfree( res );
876
877         if ( rc && si->si_ld ) {
878                 ldap_unbind( si->si_ld );
879                 si->si_ld = NULL;
880         }
881
882         return rc;
883 }
884
885 void *
886 do_syncrepl(
887         void    *ctx,
888         void    *arg )
889 {
890         struct re_s* rtask = arg;
891         syncinfo_t *si = ( syncinfo_t * ) rtask->arg;
892         Connection conn = {0};
893         char opbuf[OPERATION_BUFFER_SIZE];
894         Operation *op;
895         int rc = LDAP_SUCCESS;
896         int first = 0;
897         int dostop = 0;
898         ber_socket_t s;
899         int i, defer = 1;
900         Backend *be;
901
902         Debug( LDAP_DEBUG_TRACE, "=>do_syncrepl\n", 0, 0, 0 );
903
904         if ( si == NULL )
905                 return NULL;
906
907         switch( abs( si->si_type )) {
908         case LDAP_SYNC_REFRESH_ONLY:
909         case LDAP_SYNC_REFRESH_AND_PERSIST:
910                 break;
911         default:
912                 return NULL;
913         }
914
915         if ( slapd_shutdown ) {
916                 if ( si->si_ld ) {
917                         ldap_get_option( si->si_ld, LDAP_OPT_DESC, &s );
918                         connection_client_stop( s );
919                         ldap_unbind( si->si_ld );
920                         si->si_ld = NULL;
921                 }
922                 return NULL;
923         }
924
925         op = (Operation *)opbuf;
926         connection_fake_init( &conn, op, ctx );
927
928         /* use global malloc for now */
929         op->o_tmpmemctx = NULL;
930         op->o_tmpmfuncs = &ch_mfuncs;
931
932         op->o_dn = si->si_updatedn;
933         op->o_ndn = si->si_updatedn;
934         op->o_managedsait = SLAP_CONTROL_NONCRITICAL;
935         op->o_bd = be = si->si_be;
936
937         /* Establish session, do search */
938         if ( !si->si_ld ) {
939                 first = 1;
940                 si->si_refreshDelete = 0;
941                 si->si_refreshPresent = 0;
942                 rc = do_syncrep1( op, si );
943         }
944
945         /* Process results */
946         if ( rc == LDAP_SUCCESS ) {
947                 ldap_get_option( si->si_ld, LDAP_OPT_DESC, &s );
948
949                 rc = do_syncrep2( op, si );
950
951                 if ( abs(si->si_type) == LDAP_SYNC_REFRESH_AND_PERSIST ) {
952                         /* If we succeeded, enable the connection for further listening.
953                          * If we failed, tear down the connection and reschedule.
954                          */
955                         if ( rc == LDAP_SUCCESS ) {
956                                 if ( first ) {
957                                         rc = connection_client_setup( s, do_syncrepl, arg );
958                                 } else {
959                                         connection_client_enable( s );
960                                 } 
961                         } else if ( !first ) {
962                                 dostop = 1;
963                         }
964                 } else {
965                         if ( rc == -2 ) rc = 0;
966                 }
967         }
968
969         /* At this point, we have 4 cases:
970          * 1) for any hard failure, give up and remove this task
971          * 2) for ServerDown, reschedule this task to run
972          * 3) for Refresh and Success, reschedule to run
973          * 4) for Persist and Success, reschedule to defer
974          */
975         ldap_pvt_thread_mutex_lock( &slapd_rq.rq_mutex );
976
977         if ( ldap_pvt_runqueue_isrunning( &slapd_rq, rtask )) {
978                 ldap_pvt_runqueue_stoptask( &slapd_rq, rtask );
979         }
980
981         if ( dostop ) {
982                 connection_client_stop( s );
983         }
984
985         if ( rc == LDAP_SUCCESS ) {
986                 if ( si->si_type == LDAP_SYNC_REFRESH_ONLY ) {
987                         defer = 0;
988                 }
989                 rtask->interval.tv_sec = si->si_interval;
990                 ldap_pvt_runqueue_resched( &slapd_rq, rtask, defer );
991                 if ( si->si_retrynum ) {
992                         for ( i = 0; si->si_retrynum_init[i] != -2; i++ ) {
993                                 si->si_retrynum[i] = si->si_retrynum_init[i];
994                         }
995                         si->si_retrynum[i] = -2;
996                 }
997         } else {
998                 for ( i = 0; si->si_retrynum && si->si_retrynum[i] <= 0; i++ ) {
999                         if ( si->si_retrynum[i] == -1  || si->si_retrynum[i] == -2 )
1000                                 break;
1001                 }
1002
1003                 if ( !si->si_retrynum || si->si_retrynum[i] == -2 ) {
1004                         ldap_pvt_runqueue_remove( &slapd_rq, rtask );
1005                         LDAP_STAILQ_REMOVE( &be->be_syncinfo, si, syncinfo_s, si_next );
1006                         syncinfo_free( si );
1007                 } else if ( si->si_retrynum[i] >= -1 ) {
1008                         if ( si->si_retrynum[i] > 0 )
1009                                 si->si_retrynum[i]--;
1010                         rtask->interval.tv_sec = si->si_retryinterval[i];
1011                         ldap_pvt_runqueue_resched( &slapd_rq, rtask, 0 );
1012                         slap_wake_listener();
1013                 }
1014         }
1015         
1016         ldap_pvt_thread_mutex_unlock( &slapd_rq.rq_mutex );
1017
1018         return NULL;
1019 }
1020
1021 int
1022 syncrepl_message_to_entry(
1023         syncinfo_t      *si,
1024         Operation       *op,
1025         LDAPMessage     *msg,
1026         Modifications   **modlist,
1027         Entry                   **entry,
1028         int             syncstate
1029 )
1030 {
1031         Entry           *e = NULL;
1032         BerElement      *ber = NULL;
1033         Modifications   tmp;
1034         Modifications   *mod;
1035         Modifications   **modtail = modlist;
1036
1037         const char      *text;
1038         char txtbuf[SLAP_TEXT_BUFLEN];
1039         size_t textlen = sizeof txtbuf;
1040
1041         struct berval   bdn = {0, NULL}, dn, ndn;
1042         int             rc;
1043
1044         *modlist = NULL;
1045
1046         if ( ldap_msgtype( msg ) != LDAP_RES_SEARCH_ENTRY ) {
1047                 Debug( LDAP_DEBUG_ANY,
1048                         "Message type should be entry (%d)", ldap_msgtype( msg ), 0, 0 );
1049                 return -1;
1050         }
1051
1052         op->o_tag = LDAP_REQ_ADD;
1053
1054         rc = ldap_get_dn_ber( si->si_ld, msg, &ber, &bdn );
1055
1056         if ( rc != LDAP_SUCCESS ) {
1057                 Debug( LDAP_DEBUG_ANY,
1058                         "syncrepl_message_to_entry : dn get failed (%d)", rc, 0, 0 );
1059                 return rc;
1060         }
1061
1062         dnPrettyNormal( NULL, &bdn, &dn, &ndn, op->o_tmpmemctx );
1063         ber_dupbv( &op->o_req_dn, &dn );
1064         ber_dupbv( &op->o_req_ndn, &ndn );
1065         slap_sl_free( ndn.bv_val, op->o_tmpmemctx );
1066         slap_sl_free( dn.bv_val, op->o_tmpmemctx );
1067
1068         if ( syncstate == LDAP_SYNC_PRESENT || syncstate == LDAP_SYNC_DELETE ) {
1069                 if ( entry )
1070                         *entry = NULL;
1071                 return LDAP_SUCCESS;
1072         }
1073
1074         if ( entry == NULL ) {
1075                 return -1;
1076         }
1077
1078         e = ( Entry * ) ch_calloc( 1, sizeof( Entry ) );
1079         *entry = e;
1080         e->e_name = op->o_req_dn;
1081         e->e_nname = op->o_req_ndn;
1082
1083         while ( ber_remaining( ber ) ) {
1084                 if ( (ber_scanf( ber, "{mW}", &tmp.sml_type, &tmp.sml_values ) ==
1085                         LBER_ERROR ) || BER_BVISNULL( &tmp.sml_type ) )
1086                 {
1087                         break;
1088                 }
1089
1090                 mod  = (Modifications *) ch_malloc( sizeof( Modifications ));
1091
1092                 mod->sml_op = LDAP_MOD_REPLACE;
1093                 mod->sml_next = NULL;
1094                 mod->sml_desc = NULL;
1095                 mod->sml_type = tmp.sml_type;
1096                 mod->sml_values = tmp.sml_values;
1097                 mod->sml_nvalues = NULL;
1098
1099                 *modtail = mod;
1100                 modtail = &mod->sml_next;
1101         }
1102
1103         if ( *modlist == NULL ) {
1104                 Debug( LDAP_DEBUG_ANY, "syncrepl_message_to_entry: no attributes\n",
1105                         0, 0, 0 );
1106                 rc = -1;
1107                 goto done;
1108         }
1109
1110         rc = slap_mods_check( *modlist, &text, txtbuf, textlen, NULL );
1111
1112         if ( rc != LDAP_SUCCESS ) {
1113                 Debug( LDAP_DEBUG_ANY, "syncrepl_message_to_entry: mods check (%s)\n",
1114                         text, 0, 0 );
1115                 goto done;
1116         }
1117
1118         /* Strip out dynamically generated attrs */
1119         for ( modtail = modlist; *modtail ; ) {
1120                 mod = *modtail;
1121                 if ( mod->sml_desc->ad_type->sat_flags & SLAP_AT_DYNAMIC ) {
1122                         *modtail = mod->sml_next;
1123                         slap_mod_free( &mod->sml_mod, 0 );
1124                         ch_free( mod );
1125                 } else {
1126                         modtail = &mod->sml_next;
1127                 }
1128         }
1129
1130         /* Strip out attrs in exattrs list */
1131         for ( modtail = modlist; *modtail ; ) {
1132                 mod = *modtail;
1133                 if ( ldap_charray_inlist( si->si_exattrs,
1134                                         mod->sml_desc->ad_type->sat_cname.bv_val )) {
1135                         *modtail = mod->sml_next;
1136                         slap_mod_free( &mod->sml_mod, 0 );
1137                         ch_free( mod );
1138                 } else {
1139                         modtail = &mod->sml_next;
1140                 }
1141         }
1142         
1143         rc = slap_mods2entry( *modlist, &e, 1, 1, &text, txtbuf, textlen);
1144         if( rc != LDAP_SUCCESS ) {
1145                 Debug( LDAP_DEBUG_ANY, "syncrepl_message_to_entry: mods2entry (%s)\n",
1146                         text, 0, 0 );
1147         }
1148
1149 done:
1150         ber_free ( ber, 0 );
1151         if ( rc != LDAP_SUCCESS ) {
1152                 if ( e ) {
1153                         entry_free( e );
1154                         *entry = e = NULL;
1155                 }
1156         }
1157
1158         return rc;
1159 }
1160
1161 static struct berval generic_filterstr = BER_BVC("(objectclass=*)");
1162
1163 /* During a refresh, we may get an LDAP_SYNC_ADD for an already existing
1164  * entry if a previous refresh was interrupted before sending us a new
1165  * context state. We try to compare the new entry to the existing entry
1166  * and ignore the new entry if they are the same.
1167  *
1168  * Also, we may get an update where the entryDN has changed, due to
1169  * a ModDn on the provider. We detect this as well, so we can issue
1170  * the corresponding operation locally.
1171  *
1172  * In the case of a modify, we get a list of all the attributes
1173  * in the original entry. Rather than deleting the entry and re-adding it,
1174  * we issue a Modify request that deletes all the attributes and adds all
1175  * the new ones. This avoids the issue of trying to delete/add a non-leaf
1176  * entry.
1177  *
1178  * We don't try to otherwise distinguish ModDN from Modify; in the case of
1179  * a ModDN we will issue both operations on the local database.
1180  */
1181 typedef struct dninfo {
1182         Entry *new_entry;
1183         struct berval dn;
1184         struct berval ndn;
1185         int renamed;    /* Was an existing entry renamed? */
1186         int wasChanged; /* are the attributes changed? */
1187         int attrs;              /* how many attribute types are in the ads list */
1188         AttributeDescription **ads;
1189 } dninfo;
1190
1191 int
1192 syncrepl_entry(
1193         syncinfo_t* si,
1194         Operation *op,
1195         Entry* entry,
1196         Modifications** modlist,
1197         int syncstate,
1198         struct berval* syncUUID,
1199         struct sync_cookie* syncCookie_req,
1200         struct berval* syncCSN )
1201 {
1202         Backend *be = op->o_bd;
1203         slap_callback   cb = { NULL };
1204         struct berval   *syncuuid_bv = NULL;
1205         struct berval   syncUUID_strrep = BER_BVNULL;
1206         struct berval   uuid_bv = BER_BVNULL;
1207
1208         SlapReply       rs_search = {REP_RESULT};
1209         SlapReply       rs_delete = {REP_RESULT};
1210         SlapReply       rs_add = {REP_RESULT};
1211         SlapReply       rs_modify = {REP_RESULT};
1212         Filter f = {0};
1213         AttributeAssertion ava = {0};
1214         int rc = LDAP_SUCCESS;
1215         int ret = LDAP_SUCCESS;
1216
1217         struct berval pdn = BER_BVNULL;
1218         struct berval org_req_dn = BER_BVNULL;
1219         struct berval org_req_ndn = BER_BVNULL;
1220         struct berval org_dn = BER_BVNULL;
1221         struct berval org_ndn = BER_BVNULL;
1222         int     org_managedsait;
1223         dninfo dni = {0};
1224         int     retry = 1;
1225
1226         switch( syncstate ) {
1227         case LDAP_SYNC_PRESENT:
1228                 Debug( LDAP_DEBUG_SYNC, "%s: %s\n",
1229                                         "syncrepl_entry",
1230                                         "LDAP_RES_SEARCH_ENTRY(LDAP_SYNC_PRESENT)", 0 );
1231                 break;
1232         case LDAP_SYNC_ADD:
1233                 Debug( LDAP_DEBUG_SYNC, "%s: %s\n",
1234                                         "syncrepl_entry",
1235                                         "LDAP_RES_SEARCH_ENTRY(LDAP_SYNC_ADD)", 0 );
1236                 break;
1237         case LDAP_SYNC_DELETE:
1238                 Debug( LDAP_DEBUG_SYNC, "%s: %s\n",
1239                                         "syncrepl_entry",
1240                                         "LDAP_RES_SEARCH_ENTRY(LDAP_SYNC_DELETE)", 0 );
1241                 break;
1242         case LDAP_SYNC_MODIFY:
1243                 Debug( LDAP_DEBUG_SYNC, "%s: %s\n",
1244                                         "syncrepl_entry",
1245                                         "LDAP_RES_SEARCH_ENTRY(LDAP_SYNC_MODIFY)", 0 );
1246                 break;
1247         default:
1248                 Debug( LDAP_DEBUG_ANY, "%s: %s\n",
1249                                         "syncrepl_entry",
1250                                         "LDAP_RES_SEARCH_ENTRY(UNKNOWN syncstate)", 0 );
1251         }
1252
1253         if (( syncstate == LDAP_SYNC_PRESENT || syncstate == LDAP_SYNC_ADD )) {
1254                 if ( !si->si_refreshPresent ) {
1255                         syncuuid_bv = ber_dupbv( NULL, syncUUID );
1256                         avl_insert( &si->si_presentlist, (caddr_t) syncuuid_bv,
1257                                 syncuuid_cmp, avl_dup_error );
1258                 }
1259         }
1260
1261         if ( syncstate == LDAP_SYNC_PRESENT ) {
1262                 return 0;
1263         } else if ( syncstate != LDAP_SYNC_DELETE ) {
1264                 if ( entry == NULL ) {
1265                         return 0;
1266                 }
1267         }
1268
1269         f.f_choice = LDAP_FILTER_EQUALITY;
1270         f.f_ava = &ava;
1271         ava.aa_desc = slap_schema.si_ad_entryUUID;
1272         (void)slap_uuidstr_from_normalized( &syncUUID_strrep, syncUUID, op->o_tmpmemctx );
1273         ava.aa_value = *syncUUID;
1274         op->ors_filter = &f;
1275
1276         op->ors_filterstr.bv_len = STRLENOF( "entryUUID=" ) + syncUUID->bv_len;
1277         op->ors_filterstr.bv_val = (char *) slap_sl_malloc(
1278                 op->ors_filterstr.bv_len + 1, op->o_tmpmemctx ); 
1279         AC_MEMCPY( op->ors_filterstr.bv_val, "entryUUID=", STRLENOF( "entryUUID=" ) );
1280         AC_MEMCPY( &op->ors_filterstr.bv_val[STRLENOF( "entryUUID=" )],
1281                 syncUUID->bv_val, syncUUID->bv_len );
1282         op->ors_filterstr.bv_val[op->ors_filterstr.bv_len] = '\0';
1283
1284         op->o_tag = LDAP_REQ_SEARCH;
1285         op->ors_scope = LDAP_SCOPE_SUBTREE;
1286
1287         /* get the entry for this UUID */
1288         op->o_req_dn = si->si_base;
1289         op->o_req_ndn = si->si_base;
1290
1291         op->o_time = slap_get_time();
1292         op->ors_tlimit = SLAP_NO_LIMIT;
1293         op->ors_slimit = 1;
1294
1295         op->ors_attrs = slap_anlist_all_attributes;
1296         op->ors_attrsonly = 0;
1297
1298         /* set callback function */
1299         op->o_callback = &cb;
1300         cb.sc_response = dn_callback;
1301         cb.sc_private = &dni;
1302         dni.new_entry = entry;
1303
1304         if ( limits_check( op, &rs_search ) == 0 ) {
1305                 rc = be->be_search( op, &rs_search );
1306                 Debug( LDAP_DEBUG_SYNC,
1307                                 "syncrepl_entry: %s (%d)\n", 
1308                                 "be_search", rc, 0 );
1309         }
1310
1311         if ( !BER_BVISNULL( &op->ors_filterstr ) ) {
1312                 slap_sl_free( op->ors_filterstr.bv_val, op->o_tmpmemctx );
1313         }
1314
1315         cb.sc_response = null_callback;
1316         cb.sc_private = si;
1317
1318         if ( entry && entry->e_name.bv_val ) {
1319                 Debug( LDAP_DEBUG_SYNC,
1320                                 "syncrepl_entry: %s\n",
1321                                 entry->e_name.bv_val, 0, 0 );
1322         } else {
1323                 Debug( LDAP_DEBUG_SYNC,
1324                                 "syncrepl_entry: %s\n",
1325                                 dni.dn.bv_val ? dni.dn.bv_val : "(null)", 0, 0 );
1326         }
1327
1328         org_req_dn = op->o_req_dn;
1329         org_req_ndn = op->o_req_ndn;
1330         org_dn = op->o_dn;
1331         org_ndn = op->o_ndn;
1332         org_managedsait = get_manageDSAit( op );
1333         op->o_dn = op->o_bd->be_rootdn;
1334         op->o_ndn = op->o_bd->be_rootndn;
1335         op->o_managedsait = SLAP_CONTROL_NONCRITICAL;
1336
1337         if ( syncstate != LDAP_SYNC_DELETE ) {
1338                 attr_delete( &entry->e_attrs, slap_schema.si_ad_entryUUID );
1339                 attr_merge_one( entry, slap_schema.si_ad_entryUUID,
1340                         &syncUUID_strrep, syncUUID );
1341         }
1342
1343         switch ( syncstate ) {
1344         case LDAP_SYNC_ADD:
1345         case LDAP_SYNC_MODIFY:
1346 retry_add:;
1347                 if ( BER_BVISNULL( &dni.dn )) {
1348
1349                         op->o_req_dn = entry->e_name;
1350                         op->o_req_ndn = entry->e_nname;
1351                         op->o_tag = LDAP_REQ_ADD;
1352                         op->ora_e = entry;
1353
1354                         rc = be->be_add( op, &rs_add );
1355                         Debug( LDAP_DEBUG_SYNC,
1356                                         "syncrepl_entry: %s (%d)\n", 
1357                                         "be_add", rc, 0 );
1358                         switch ( rs_add.sr_err ) {
1359                         case LDAP_SUCCESS:
1360                                 be_entry_release_w( op, entry );
1361                                 ret = 0;
1362                                 break;
1363
1364                         case LDAP_REFERRAL:
1365                         /* we assume that LDAP_NO_SUCH_OBJECT is returned 
1366                          * only if the suffix entry is not present */
1367                         case LDAP_NO_SUCH_OBJECT:
1368                                 syncrepl_add_glue( op, entry );
1369                                 ret = 0;
1370                                 break;
1371
1372                         /* if an entry was added via syncrepl_add_glue(),
1373                          * it likely has no entryUUID, so the previous
1374                          * be_search() doesn't find it.  In this case,
1375                          * give syncrepl a chance to modify it. Also
1376                          * allow for entries that were recreated with the
1377                          * same DN but a different entryUUID.
1378                          */
1379                         case LDAP_ALREADY_EXISTS:
1380                                 if ( retry ) {
1381                                         Operation       op2 = *op;
1382                                         SlapReply       rs2 = { 0 };
1383                                         slap_callback   cb2 = { 0 };
1384
1385                                         op2.o_tag = LDAP_REQ_SEARCH;
1386                                         op2.o_req_dn = entry->e_name;
1387                                         op2.o_req_ndn = entry->e_nname;
1388                                         op2.ors_scope = LDAP_SCOPE_BASE;
1389                                         op2.ors_attrs = slap_anlist_all_attributes;
1390                                         op2.ors_attrsonly = 0;
1391                                         op2.ors_limit = NULL;
1392                                         op2.ors_slimit = 1;
1393                                         op2.ors_tlimit = SLAP_NO_LIMIT;
1394
1395                                         f.f_choice = LDAP_FILTER_PRESENT;
1396                                         f.f_desc = slap_schema.si_ad_objectClass;
1397                                         op2.ors_filter = &f;
1398                                         op2.ors_filterstr = generic_filterstr;
1399
1400                                         op2.o_callback = &cb2;
1401                                         cb2.sc_response = dn_callback;
1402                                         cb2.sc_private = &dni;
1403
1404                                         be->be_search( &op2, &rs2 );
1405
1406                                         retry = 0;
1407                                         goto retry_add;
1408                                 }
1409                                 /* FALLTHRU */
1410
1411                         default:
1412                                 Debug( LDAP_DEBUG_ANY,
1413                                         "syncrepl_entry : be_add failed (%d)\n",
1414                                         rs_add.sr_err, 0, 0 );
1415                                 ret = 1;
1416                                 break;
1417                         }
1418                         goto done;
1419                 }
1420                 /* FALLTHRU */
1421                 op->o_req_dn = dni.dn;
1422                 op->o_req_ndn = dni.ndn;
1423                 if ( dni.renamed ) {
1424                         struct berval noldp, newp, nnewp;
1425
1426                         op->o_tag = LDAP_REQ_MODRDN;
1427                         dnRdn( &entry->e_name, &op->orr_newrdn );
1428                         dnRdn( &entry->e_nname, &op->orr_nnewrdn );
1429
1430                         dnParent( &dni.ndn, &noldp );
1431                         dnParent( &entry->e_nname, &nnewp );
1432                         if ( !dn_match( &noldp, &newp )) {
1433                                 dnParent( &entry->e_name, &newp );
1434                                 op->orr_newSup = &newp;
1435                                 op->orr_nnewSup = &nnewp;
1436                         }
1437                         op->orr_deleteoldrdn = 0;
1438                         rc = be->be_modrdn( op, &rs_modify );
1439                         Debug( LDAP_DEBUG_SYNC,
1440                                         "syncrepl_entry: %s (%d)\n", 
1441                                         "be_modrdn", rc, 0 );
1442                         if ( rs_modify.sr_err == LDAP_SUCCESS ) {
1443                                 op->o_req_dn = entry->e_name;
1444                                 op->o_req_ndn = entry->e_nname;
1445                         } else {
1446                                 ret = 1;
1447                                 goto done;
1448                         }
1449                 }
1450                 if ( dni.wasChanged ) {
1451                         Modifications *mod, *modhead = NULL;
1452                         Modifications *modtail = NULL;
1453                         int i;
1454
1455                         op->o_tag = LDAP_REQ_MODIFY;
1456
1457                         assert( *modlist );
1458
1459                         /* Delete all the old attrs */
1460                         for ( i=0; i<dni.attrs; i++) {
1461                                 mod = ch_malloc( sizeof(Modifications));
1462                                 mod->sml_op = LDAP_MOD_DELETE;
1463                                 mod->sml_desc = dni.ads[i];
1464                                 mod->sml_type =mod->sml_desc->ad_cname;
1465                                 mod->sml_values = NULL;
1466                                 mod->sml_nvalues = NULL;
1467                                 if ( !modhead ) modhead = mod;
1468                                 if ( modtail ) {
1469                                         modtail->sml_next = mod;
1470                                 }
1471                                 modtail = mod;
1472                         }
1473
1474                         /* Append passed in list to ours */
1475                         if ( modtail ) {
1476                                 modtail->sml_next = *modlist;
1477                                 *modlist = modhead;
1478                         } else {
1479                                 mod = *modlist;
1480                         }
1481
1482                         /* Find end of this list */
1483                         for ( ; mod != NULL; mod = mod->sml_next ) {
1484                                 modtail = mod;
1485                         }
1486
1487                         mod = (Modifications *)ch_calloc(1, sizeof(Modifications));
1488                         mod->sml_op = LDAP_MOD_REPLACE;
1489                         mod->sml_desc = slap_schema.si_ad_entryUUID;
1490                         mod->sml_type = mod->sml_desc->ad_cname;
1491                         ber_dupbv( &uuid_bv, &syncUUID_strrep );
1492                         ber_bvarray_add( &mod->sml_values, &uuid_bv );
1493                         ber_dupbv( &uuid_bv, syncUUID );
1494                         ber_bvarray_add( &mod->sml_nvalues, &uuid_bv );
1495                         modtail->sml_next = mod;
1496                                         
1497                         op->o_tag = LDAP_REQ_MODIFY;
1498                         op->orm_modlist = *modlist;
1499
1500                         rc = be->be_modify( op, &rs_modify );
1501                         Debug( LDAP_DEBUG_SYNC,
1502                                         "syncrepl_entry: %s (%d)\n", 
1503                                         "be_modify", rc, 0 );
1504                         if ( rs_modify.sr_err != LDAP_SUCCESS ) {
1505                                 Debug( LDAP_DEBUG_ANY,
1506                                         "syncrepl_entry : be_modify failed (%d)\n",
1507                                         rs_modify.sr_err, 0, 0 );
1508                         }
1509                 }
1510                 ret = 1;
1511                 goto done;
1512         case LDAP_SYNC_DELETE :
1513                 if ( !BER_BVISNULL( &dni.dn )) {
1514                         op->o_req_dn = dni.dn;
1515                         op->o_req_ndn = dni.ndn;
1516                         op->o_tag = LDAP_REQ_DELETE;
1517                         rc = be->be_delete( op, &rs_delete );
1518                         Debug( LDAP_DEBUG_SYNC,
1519                                         "syncrepl_entry: %s (%d)\n", 
1520                                         "be_delete", rc, 0 );
1521
1522                         while ( rs_delete.sr_err == LDAP_SUCCESS
1523                                 && op->o_delete_glue_parent ) {
1524                                 op->o_delete_glue_parent = 0;
1525                                 if ( !be_issuffix( op->o_bd, &op->o_req_ndn )) {
1526                                         slap_callback cb = { NULL };
1527                                         cb.sc_response = slap_null_cb;
1528                                         dnParent( &op->o_req_ndn, &pdn );
1529                                         op->o_req_dn = pdn;
1530                                         op->o_req_ndn = pdn;
1531                                         op->o_callback = &cb;
1532                                         op->o_bd->be_delete( op, &rs_delete );
1533                                 } else {
1534                                         break;
1535                                 }
1536                         }
1537                 }
1538                 ret = 0;
1539                 goto done;
1540
1541         default :
1542                 Debug( LDAP_DEBUG_ANY,
1543                         "syncrepl_entry : unknown syncstate\n", 0, 0, 0 );
1544                 ret = 1;
1545                 goto done;
1546         }
1547
1548 done :
1549         if ( !BER_BVISNULL( &syncUUID_strrep ) ) {
1550                 slap_sl_free( syncUUID_strrep.bv_val, op->o_tmpmemctx );
1551                 BER_BVZERO( &syncUUID_strrep );
1552         }
1553         if ( dni.ads ) {
1554                 op->o_tmpfree( dni.ads, op->o_tmpmemctx );
1555         }
1556         if ( !BER_BVISNULL( &dni.ndn ) ) {
1557                 op->o_tmpfree( dni.ndn.bv_val, op->o_tmpmemctx );
1558         }
1559         if ( !BER_BVISNULL( &dni.dn ) ) {
1560                 op->o_tmpfree( dni.dn.bv_val, op->o_tmpmemctx );
1561         }
1562         return ret;
1563 }
1564
1565 static struct berval gcbva[] = {
1566         BER_BVC("top"),
1567         BER_BVC("glue"),
1568         BER_BVNULL
1569 };
1570
1571 #define NP_DELETE_ONE   2
1572
1573 static void
1574 syncrepl_del_nonpresent(
1575         Operation *op,
1576         syncinfo_t *si,
1577         BerVarray uuids )
1578 {
1579         Backend* be = op->o_bd;
1580         slap_callback   cb = { NULL };
1581         SlapReply       rs_search = {REP_RESULT};
1582         SlapReply       rs_delete = {REP_RESULT};
1583         SlapReply       rs_modify = {REP_RESULT};
1584         struct nonpresent_entry *np_list, *np_prev;
1585         int rc;
1586         Modifications *ml;
1587         Modifications *mlnext;
1588         Modifications *mod;
1589         Modifications *modlist = NULL;
1590         Modifications **modtail;
1591         AttributeName   an[2];
1592
1593         struct berval pdn = BER_BVNULL;
1594         struct berval org_req_dn = BER_BVNULL;
1595         struct berval org_req_ndn = BER_BVNULL;
1596         struct berval org_dn = BER_BVNULL;
1597         struct berval org_ndn = BER_BVNULL;
1598         int     org_managedsait;
1599
1600         op->o_req_dn = si->si_base;
1601         op->o_req_ndn = si->si_base;
1602
1603         cb.sc_response = nonpresent_callback;
1604         cb.sc_private = si;
1605
1606         op->o_callback = &cb;
1607         op->o_tag = LDAP_REQ_SEARCH;
1608         op->ors_scope = si->si_scope;
1609         op->ors_deref = LDAP_DEREF_NEVER;
1610         op->o_time = slap_get_time();
1611         op->ors_tlimit = SLAP_NO_LIMIT;
1612
1613
1614         if ( uuids ) {
1615                 Filter uf;
1616                 AttributeAssertion eq;
1617                 int i;
1618
1619                 op->ors_attrsonly = 1;
1620                 op->ors_attrs = slap_anlist_no_attrs;
1621                 op->ors_limit = NULL;
1622                 op->ors_filter = &uf;
1623                 op->o_managedsait = SLAP_CONTROL_NONCRITICAL;
1624
1625                 uf.f_ava = &eq;
1626                 uf.f_av_desc = slap_schema.si_ad_entryUUID;
1627                 uf.f_next = NULL;
1628                 uf.f_choice = LDAP_FILTER_EQUALITY;
1629                 si->si_refreshDelete |= NP_DELETE_ONE;
1630
1631                 for (i=0; uuids[i].bv_val; i++) {
1632                         op->ors_slimit = 1;
1633                         uf.f_av_value = uuids[i];
1634                         rc = be->be_search( op, &rs_search );
1635                 }
1636                 si->si_refreshDelete ^= NP_DELETE_ONE;
1637         } else {
1638                 memset( &an[0], 0, 2 * sizeof( AttributeName ) );
1639                 an[0].an_name = slap_schema.si_ad_entryUUID->ad_cname;
1640                 an[0].an_desc = slap_schema.si_ad_entryUUID;
1641                 op->ors_attrs = an;
1642                 op->ors_slimit = SLAP_NO_LIMIT;
1643                 op->ors_attrsonly = 0;
1644                 op->ors_filter = str2filter_x( op, si->si_filterstr.bv_val );
1645                 op->ors_filterstr = si->si_filterstr;
1646                 op->o_nocaching = 1;
1647                 op->o_managedsait = SLAP_CONTROL_NONE;
1648
1649                 if ( limits_check( op, &rs_search ) == 0 ) {
1650                         rc = be->be_search( op, &rs_search );
1651                 }
1652                 if ( op->ors_filter ) filter_free_x( op, op->ors_filter );
1653         }
1654
1655         op->o_managedsait = SLAP_CONTROL_NONCRITICAL;
1656         op->o_nocaching = 0;
1657
1658         if ( !LDAP_LIST_EMPTY( &si->si_nonpresentlist ) ) {
1659                 np_list = LDAP_LIST_FIRST( &si->si_nonpresentlist );
1660                 while ( np_list != NULL ) {
1661                         LDAP_LIST_REMOVE( np_list, npe_link );
1662                         np_prev = np_list;
1663                         np_list = LDAP_LIST_NEXT( np_list, npe_link );
1664                         op->o_tag = LDAP_REQ_DELETE;
1665                         op->o_callback = &cb;
1666                         cb.sc_response = null_callback;
1667                         cb.sc_private = si;
1668                         op->o_req_dn = *np_prev->npe_name;
1669                         op->o_req_ndn = *np_prev->npe_nname;
1670                         rc = op->o_bd->be_delete( op, &rs_delete );
1671
1672                         if ( rs_delete.sr_err == LDAP_NOT_ALLOWED_ON_NONLEAF ) {
1673                                 modtail = &modlist;
1674                                 mod = (Modifications *) ch_calloc( 1, sizeof( Modifications ));
1675                                 mod->sml_op = LDAP_MOD_REPLACE;
1676                                 mod->sml_desc = slap_schema.si_ad_objectClass;
1677                                 mod->sml_type = mod->sml_desc->ad_cname;
1678                                 mod->sml_values = &gcbva[0];
1679                                 *modtail = mod;
1680                                 modtail = &mod->sml_next;
1681
1682                                 mod = (Modifications *) ch_calloc( 1, sizeof( Modifications ));
1683                                 mod->sml_op = LDAP_MOD_REPLACE;
1684                                 mod->sml_desc = slap_schema.si_ad_structuralObjectClass;
1685                                 mod->sml_type = mod->sml_desc->ad_cname;
1686                                 mod->sml_values = &gcbva[1];
1687                                 *modtail = mod;
1688                                 modtail = &mod->sml_next;
1689
1690                                 op->o_tag = LDAP_REQ_MODIFY;
1691                                 op->orm_modlist = modlist;
1692
1693                                 rc = be->be_modify( op, &rs_modify );
1694
1695                                 for ( ml = modlist; ml != NULL; ml = mlnext ) {
1696                                         mlnext = ml->sml_next;
1697                                         free( ml );
1698                                 }
1699                         }
1700
1701                         org_req_dn = op->o_req_dn;
1702                         org_req_ndn = op->o_req_ndn;
1703                         org_dn = op->o_dn;
1704                         org_ndn = op->o_ndn;
1705                         org_managedsait = get_manageDSAit( op );
1706                         op->o_dn = op->o_bd->be_rootdn;
1707                         op->o_ndn = op->o_bd->be_rootndn;
1708                         op->o_managedsait = SLAP_CONTROL_NONCRITICAL;
1709
1710                         while ( rs_delete.sr_err == LDAP_SUCCESS &&
1711                                         op->o_delete_glue_parent ) {
1712                                 op->o_delete_glue_parent = 0;
1713                                 if ( !be_issuffix( op->o_bd, &op->o_req_ndn )) {
1714                                         slap_callback cb = { NULL };
1715                                         cb.sc_response = slap_null_cb;
1716                                         dnParent( &op->o_req_ndn, &pdn );
1717                                         op->o_req_dn = pdn;
1718                                         op->o_req_ndn = pdn;
1719                                         op->o_callback = &cb;
1720                                         /* give it a root privil ? */
1721                                         op->o_bd->be_delete( op, &rs_delete );
1722                                 } else {
1723                                         break;
1724                             }
1725                         }
1726
1727                         op->o_managedsait = org_managedsait;
1728                         op->o_dn = org_dn;
1729                         op->o_ndn = org_ndn;
1730                         op->o_req_dn = org_req_dn;
1731                         op->o_req_ndn = org_req_ndn;
1732                         op->o_delete_glue_parent = 0;
1733
1734                         ber_bvfree( np_prev->npe_name );
1735                         ber_bvfree( np_prev->npe_nname );
1736                         BER_BVZERO( &op->o_req_dn );
1737                         BER_BVZERO( &op->o_req_ndn );
1738                         ch_free( np_prev );
1739                 }
1740         }
1741
1742         return;
1743 }
1744
1745 void
1746 syncrepl_add_glue(
1747         Operation* op,
1748         Entry *e )
1749 {
1750         Backend *be = op->o_bd;
1751         slap_callback cb = { NULL };
1752         Attribute       *a;
1753         int     rc;
1754         int suffrdns;
1755         int i;
1756         struct berval dn = {0, NULL};
1757         struct berval ndn = {0, NULL};
1758         Entry   *glue;
1759         SlapReply       rs_add = {REP_RESULT};
1760         char    *ptr, *comma;
1761
1762         op->o_tag = LDAP_REQ_ADD;
1763         op->o_callback = &cb;
1764         cb.sc_response = null_callback;
1765         cb.sc_private = NULL;
1766
1767         dn = e->e_name;
1768         ndn = e->e_nname;
1769
1770         /* count RDNs in suffix */
1771         if ( !BER_BVISEMPTY( &be->be_nsuffix[0] ) ) {
1772                 for ( i = 0, ptr = be->be_nsuffix[0].bv_val; ptr; ptr = strchr( ptr, ',' ) ) {
1773                         ptr++;
1774                         i++;
1775                 }
1776                 suffrdns = i;
1777         } else {
1778                 /* suffix is "" */
1779                 suffrdns = 0;
1780         }
1781
1782         /* Start with BE suffix */
1783         for ( i = 0, ptr = NULL; i < suffrdns; i++ ) {
1784                 comma = strrchr( dn.bv_val, ',' );
1785                 if ( ptr ) *ptr = ',';
1786                 if ( comma ) *comma = '\0';
1787                 ptr = comma;
1788         }
1789         if ( ptr ) {
1790                 *ptr++ = ',';
1791                 dn.bv_len -= ptr - dn.bv_val;
1792                 dn.bv_val = ptr;
1793         }
1794         /* the normalizedDNs are always the same length, no counting
1795          * required.
1796          */
1797         if ( ndn.bv_len > be->be_nsuffix[0].bv_len ) {
1798                 ndn.bv_val += ndn.bv_len - be->be_nsuffix[0].bv_len;
1799                 ndn.bv_len = be->be_nsuffix[0].bv_len;
1800         }
1801
1802         while ( ndn.bv_val > e->e_nname.bv_val ) {
1803                 glue = (Entry *) ch_calloc( 1, sizeof(Entry) );
1804                 ber_dupbv( &glue->e_name, &dn );
1805                 ber_dupbv( &glue->e_nname, &ndn );
1806
1807                 a = ch_calloc( 1, sizeof( Attribute ));
1808                 a->a_desc = slap_schema.si_ad_objectClass;
1809
1810                 a->a_vals = ch_calloc( 3, sizeof( struct berval ));
1811                 ber_dupbv( &a->a_vals[0], &gcbva[0] );
1812                 ber_dupbv( &a->a_vals[1], &gcbva[1] );
1813                 ber_dupbv( &a->a_vals[2], &gcbva[2] );
1814
1815                 a->a_nvals = a->a_vals;
1816
1817                 a->a_next = glue->e_attrs;
1818                 glue->e_attrs = a;
1819
1820                 a = ch_calloc( 1, sizeof( Attribute ));
1821                 a->a_desc = slap_schema.si_ad_structuralObjectClass;
1822
1823                 a->a_vals = ch_calloc( 2, sizeof( struct berval ));
1824                 ber_dupbv( &a->a_vals[0], &gcbva[1] );
1825                 ber_dupbv( &a->a_vals[1], &gcbva[2] );
1826
1827                 a->a_nvals = a->a_vals;
1828
1829                 a->a_next = glue->e_attrs;
1830                 glue->e_attrs = a;
1831
1832                 op->o_req_dn = glue->e_name;
1833                 op->o_req_ndn = glue->e_nname;
1834                 op->ora_e = glue;
1835                 rc = be->be_add ( op, &rs_add );
1836                 if ( rs_add.sr_err == LDAP_SUCCESS ) {
1837                         be_entry_release_w( op, glue );
1838                 } else {
1839                 /* incl. ALREADY EXIST */
1840                         entry_free( glue );
1841                 }
1842
1843                 /* Move to next child */
1844                 for (ptr = dn.bv_val-2; ptr > e->e_name.bv_val && *ptr != ','; ptr--) {
1845                         /* empty */
1846                 }
1847                 if ( ptr == e->e_name.bv_val ) break;
1848                 dn.bv_val = ++ptr;
1849                 dn.bv_len = e->e_name.bv_len - (ptr-e->e_name.bv_val);
1850                 for( ptr = ndn.bv_val-2;
1851                         ptr > e->e_nname.bv_val && *ptr != ',';
1852                         ptr--)
1853                 {
1854                         /* empty */
1855                 }
1856                 ndn.bv_val = ++ptr;
1857                 ndn.bv_len = e->e_nname.bv_len - (ptr-e->e_nname.bv_val);
1858         }
1859
1860         op->o_req_dn = e->e_name;
1861         op->o_req_ndn = e->e_nname;
1862         op->ora_e = e;
1863         rc = be->be_add ( op, &rs_add );
1864         if ( rs_add.sr_err == LDAP_SUCCESS ) {
1865                 be_entry_release_w( op, e );
1866         } else {
1867                 entry_free( e );
1868         }
1869
1870         return;
1871 }
1872
1873 static struct berval ocbva[] = {
1874         BER_BVC("top"),
1875         BER_BVC("subentry"),
1876         BER_BVC("syncConsumerSubentry"),
1877         BER_BVNULL
1878 };
1879
1880 static struct berval cnbva[] = {
1881         BER_BVNULL,
1882         BER_BVNULL
1883 };
1884
1885 static struct berval ssbva[] = {
1886         BER_BVC("{}"),
1887         BER_BVNULL
1888 };
1889
1890 static struct berval scbva[] = {
1891         BER_BVNULL,
1892         BER_BVNULL
1893 };
1894
1895 void
1896 syncrepl_updateCookie(
1897         syncinfo_t *si,
1898         Operation *op,
1899         struct berval *pdn,
1900         struct sync_cookie *syncCookie )
1901 {
1902         Backend *be = op->o_bd;
1903         Modifications *ml;
1904         Modifications *mlnext;
1905         Modifications *mod;
1906         Modifications *modlist = NULL;
1907         Modifications **modtail = &modlist;
1908
1909         const char      *text;
1910         char txtbuf[SLAP_TEXT_BUFLEN];
1911         size_t textlen = sizeof txtbuf;
1912
1913         Entry* e = NULL;
1914         int rc;
1915
1916         char syncrepl_cbuf[sizeof(CN_STR SYNCREPL_STR)];
1917         struct berval slap_syncrepl_dn_bv = BER_BVNULL;
1918         struct berval slap_syncrepl_cn_bv = BER_BVNULL;
1919         
1920         slap_callback cb = { NULL };
1921         SlapReply       rs_add = {REP_RESULT};
1922         SlapReply       rs_modify = {REP_RESULT};
1923
1924         slap_sync_cookie_free( &si->si_syncCookie, 0 );
1925         slap_dup_sync_cookie( &si->si_syncCookie, syncCookie );
1926
1927         mod = (Modifications *) ch_calloc( 1, sizeof( Modifications ));
1928         mod->sml_op = LDAP_MOD_REPLACE;
1929         mod->sml_desc = slap_schema.si_ad_objectClass;
1930         mod->sml_type = mod->sml_desc->ad_cname;
1931         mod->sml_values = ocbva;
1932         *modtail = mod;
1933         modtail = &mod->sml_next;
1934
1935         ber_dupbv( &cnbva[0], (struct berval *) &slap_syncrepl_bvc );
1936         assert( si->si_rid < 1000 );
1937         cnbva[0].bv_len = snprintf( cnbva[0].bv_val,
1938                 slap_syncrepl_bvc.bv_len + 1,
1939                 "syncrepl%ld", si->si_rid );
1940         mod = (Modifications *) ch_calloc( 1, sizeof( Modifications ));
1941         mod->sml_op = LDAP_MOD_REPLACE;
1942         mod->sml_desc = slap_schema.si_ad_cn;
1943         mod->sml_type = mod->sml_desc->ad_cname;
1944         mod->sml_values = cnbva;
1945         *modtail = mod;
1946         modtail = &mod->sml_next;
1947
1948         mod = (Modifications *) ch_calloc( 1, sizeof( Modifications ));
1949         mod->sml_op = LDAP_MOD_REPLACE;
1950         mod->sml_desc = slap_schema.si_ad_subtreeSpecification;
1951         mod->sml_type = mod->sml_desc->ad_cname;
1952         mod->sml_values = ssbva;
1953         *modtail = mod;
1954         modtail = &mod->sml_next;
1955
1956         /* Keep this last, so we can avoid touching the previous
1957          * attributes unnecessarily.
1958          */
1959         if ( scbva[0].bv_val ) ch_free( scbva[0].bv_val );
1960         ber_dupbv( &scbva[0], &si->si_syncCookie.octet_str[0] );
1961         mod = (Modifications *) ch_calloc( 1, sizeof( Modifications ));
1962         mod->sml_op = LDAP_MOD_REPLACE;
1963         mod->sml_desc = slap_schema.si_ad_syncreplCookie;
1964         mod->sml_type = mod->sml_desc->ad_cname;
1965         mod->sml_values = scbva;
1966         *modtail = mod;
1967         modtail = &mod->sml_next;
1968
1969         slap_queue_csn( op, si->si_syncCookie.ctxcsn );
1970
1971         mlnext = mod;
1972
1973         op->o_tag = LDAP_REQ_ADD;
1974         rc = slap_mods_opattrs( op, modlist, modtail,
1975                  &text, txtbuf, textlen, 0 );
1976
1977         for ( ml = modlist; ml != NULL; ml = ml->sml_next ) {
1978                 ml->sml_op = LDAP_MOD_REPLACE;
1979         }
1980
1981         if( rc != LDAP_SUCCESS ) {
1982                 Debug( LDAP_DEBUG_ANY, "syncrepl_updateCookie: mods opattrs (%s)\n",
1983                          text, 0, 0 );
1984         }
1985
1986         e = ( Entry * ) ch_calloc( 1, sizeof( Entry ));
1987
1988         slap_syncrepl_cn_bv.bv_val = syncrepl_cbuf;
1989         assert( si->si_rid < 1000 );
1990         slap_syncrepl_cn_bv.bv_len = snprintf( slap_syncrepl_cn_bv.bv_val,
1991                 slap_syncrepl_cn_bvc.bv_len + 1,
1992                 "cn=syncrepl%ld", si->si_rid );
1993
1994         build_new_dn( &slap_syncrepl_dn_bv, pdn, &slap_syncrepl_cn_bv,
1995                 op->o_tmpmemctx );
1996         ber_dupbv( &e->e_name, &slap_syncrepl_dn_bv );
1997         ber_dupbv( &e->e_nname, &slap_syncrepl_dn_bv );
1998
1999         if ( !BER_BVISNULL( &slap_syncrepl_dn_bv ) ) {
2000                 slap_sl_free( slap_syncrepl_dn_bv.bv_val, op->o_tmpmemctx );
2001         }
2002
2003         e->e_attrs = NULL;
2004
2005         rc = slap_mods2entry( modlist, &e, 1, 1, &text, txtbuf, textlen );
2006
2007         if( rc != LDAP_SUCCESS ) {
2008                 Debug( LDAP_DEBUG_ANY, "syncrepl_updateCookie: mods2entry (%s)\n",
2009                          text, 0, 0 );
2010         }
2011
2012         cb.sc_response = null_callback;
2013         cb.sc_private = si;
2014
2015         op->o_callback = &cb;
2016         op->o_req_dn = e->e_name;
2017         op->o_req_ndn = e->e_nname;
2018
2019         /* update persistent cookie */
2020 update_cookie_retry:
2021         op->o_tag = LDAP_REQ_MODIFY;
2022         /* Just modify the cookie value, not the entire entry */
2023         op->orm_modlist = mod;
2024         rc = be->be_modify( op, &rs_modify );
2025
2026         if ( rs_modify.sr_err != LDAP_SUCCESS ) {
2027                 if ( rs_modify.sr_err == LDAP_REFERRAL ||
2028                          rs_modify.sr_err == LDAP_NO_SUCH_OBJECT ) {
2029                         op->o_tag = LDAP_REQ_ADD;
2030                         op->ora_e = e;
2031                         rc = be->be_add( op, &rs_add );
2032                         if ( rs_add.sr_err != LDAP_SUCCESS ) {
2033                                 if ( rs_add.sr_err == LDAP_ALREADY_EXISTS ) {
2034                                         goto update_cookie_retry;
2035                                 } else if ( rs_add.sr_err == LDAP_REFERRAL ||
2036                                                         rs_add.sr_err == LDAP_NO_SUCH_OBJECT ) {
2037                                         Debug( LDAP_DEBUG_ANY,
2038                                                 "cookie will be non-persistent\n",
2039                                                 0, 0, 0 );
2040                                 } else {
2041                                         Debug( LDAP_DEBUG_ANY,
2042                                                 "be_add failed (%d)\n", rs_add.sr_err, 0, 0 );
2043                                 }
2044                         } else {
2045                                 be_entry_release_w( op, e );
2046                                 goto done;
2047                         }
2048                 } else {
2049                         Debug( LDAP_DEBUG_ANY,
2050                                 "be_modify failed (%d)\n", rs_modify.sr_err, 0, 0 );
2051                 }
2052         }
2053         if ( e != NULL ) {
2054                 entry_free( e );
2055         }
2056
2057 done :
2058         slap_graduate_commit_csn( op );
2059
2060
2061         if ( !BER_BVISNULL( &cnbva[0] ) ) {
2062                 ch_free( cnbva[0].bv_val );
2063                 BER_BVZERO( &cnbva[0] );
2064         }
2065         if ( !BER_BVISNULL( &scbva[0] ) ) {
2066                 ch_free( scbva[0].bv_val );
2067                 BER_BVZERO( &scbva[0] );
2068         }
2069
2070         if ( mlnext->sml_next ) {
2071                 slap_mods_free( mlnext->sml_next );
2072                 mlnext->sml_next = NULL;
2073         }
2074
2075         for (ml = modlist ; ml != NULL; ml = mlnext ) {
2076                 mlnext = ml->sml_next;
2077                 free( ml );
2078         }
2079
2080         return;
2081 }
2082
2083 int
2084 syncrepl_isupdate( Operation *op )
2085 {
2086         return ( syncrepl_isupdate_dn( op->o_bd, &op->o_ndn ));
2087 }
2088
2089 int
2090 syncrepl_isupdate_dn(
2091         Backend*                be,
2092         struct berval*  ndn )
2093 {
2094         syncinfo_t*     si;
2095         int                     ret = 0;
2096
2097         if ( !LDAP_STAILQ_EMPTY( &be->be_syncinfo )) {
2098                 LDAP_STAILQ_FOREACH( si, &be->be_syncinfo, si_next ) {
2099                         if ( ( ret = dn_match( &si->si_updatedn, ndn ) ) ) {
2100                                 return ret;
2101                         }
2102                 }
2103         }
2104         return 0;
2105 }
2106
2107 static int
2108 dn_callback(
2109         Operation*      op,
2110         SlapReply*      rs )
2111 {
2112         dninfo *dni = op->o_callback->sc_private;
2113
2114         if ( rs->sr_type == REP_SEARCH ) {
2115                 if ( !BER_BVISNULL( &dni->dn ) ) {
2116                         Debug( LDAP_DEBUG_ANY,
2117                                 "dn_callback : consistency error - "
2118                                 "entryUUID is not unique\n", 0, 0, 0 );
2119                 } else {
2120                         ber_dupbv_x( &dni->dn, &rs->sr_entry->e_name, op->o_tmpmemctx );
2121                         ber_dupbv_x( &dni->ndn, &rs->sr_entry->e_nname, op->o_tmpmemctx );
2122                         /* If there is a new entry, see if it differs from the old.
2123                          * We compare the non-normalized values so that cosmetic changes
2124                          * in the provider are always propagated.
2125                          */
2126                         if ( dni->new_entry ) {
2127                                 Attribute *old, *new;
2128                                 int i;
2129
2130                                 /* Did the DN change? Note that we don't explicitly try to
2131                                  * discover if the deleteOldRdn argument applies here. It
2132                                  * would save an unnecessary Modify if we detected it, but
2133                                  * that's a fair amount of trouble to compare the two attr
2134                                  * lists in detail.
2135                                  */
2136                                 if ( !dn_match( &rs->sr_entry->e_name,
2137                                                 &dni->new_entry->e_name ) )
2138                                 {
2139                                         dni->renamed = 1;
2140                                 }
2141
2142                                 for ( i = 0, old = rs->sr_entry->e_attrs;
2143                                                 old;
2144                                                 i++, old = old->a_next )
2145                                         ;
2146
2147                                 dni->attrs = i;
2148
2149                                 /* We assume that attributes are saved in the same order
2150                                  * in the remote and local databases. So if we walk through
2151                                  * the attributeDescriptions one by one they should match in
2152                                  * lock step. If not, we signal a change. Otherwise we test
2153                                  * all the values...
2154                                  */
2155                                 for ( old = rs->sr_entry->e_attrs, new = dni->new_entry->e_attrs;
2156                                                 old && new;
2157                                                 old = old->a_next, new = new->a_next )
2158                                 {
2159                                         if ( old->a_desc != new->a_desc ) {
2160                                                 dni->wasChanged = 1;
2161                                                 break;
2162                                         }
2163                                         for ( i = 0; ; i++ ) {
2164                                                 int nold, nnew;
2165                                                 nold = BER_BVISNULL( &old->a_vals[i] );
2166                                                 nnew = BER_BVISNULL( &new->a_vals[i] );
2167                                                 /* If both are empty, stop looking */
2168                                                 if ( nold && nnew ) {
2169                                                         break;
2170                                                 }
2171                                                 /* If they are different, stop looking */
2172                                                 if ( nold != nnew ) {
2173                                                         dni->wasChanged = 1;
2174                                                         break;
2175                                                 }
2176                                                 if ( ber_bvcmp( &old->a_vals[i], &new->a_vals[i] )) {
2177                                                         dni->wasChanged = 1;
2178                                                         break;
2179                                                 }
2180                                         }
2181                                         if ( dni->wasChanged ) break;
2182                                 }
2183                                 if ( dni->wasChanged ) {
2184                                         dni->ads = op->o_tmpalloc( dni->attrs *
2185                                                 sizeof(AttributeDescription *), op->o_tmpmemctx );
2186                                         i = 0;
2187                                         for ( old = rs->sr_entry->e_attrs; old; old = old->a_next ) {
2188                                                 dni->ads[i] = old->a_desc;
2189                                                 i++;
2190                                         }
2191                                 }
2192                         }
2193                 }
2194         } else if ( rs->sr_type == REP_RESULT ) {
2195                 if ( rs->sr_err == LDAP_SIZELIMIT_EXCEEDED ) {
2196                         Debug( LDAP_DEBUG_ANY,
2197                                 "dn_callback : consistency error - "
2198                                 "entryUUID is not unique\n", 0, 0, 0 );
2199                 }
2200         }
2201
2202         return LDAP_SUCCESS;
2203 }
2204
2205 static int
2206 nonpresent_callback(
2207         Operation*      op,
2208         SlapReply*      rs )
2209 {
2210         syncinfo_t *si = op->o_callback->sc_private;
2211         Attribute *a;
2212         int count = 0;
2213         struct berval* present_uuid = NULL;
2214         struct nonpresent_entry *np_entry;
2215
2216         if ( rs->sr_type == REP_RESULT ) {
2217                 count = avl_free( si->si_presentlist, avl_ber_bvfree );
2218                 si->si_presentlist = NULL;
2219
2220         } else if ( rs->sr_type == REP_SEARCH ) {
2221                 if ( !(si->si_refreshDelete & NP_DELETE_ONE )) {
2222                         a = attr_find( rs->sr_entry->e_attrs, slap_schema.si_ad_entryUUID );
2223
2224                         if ( a == NULL ) return 0;
2225
2226                         present_uuid = avl_find( si->si_presentlist, &a->a_nvals[0],
2227                                 syncuuid_cmp );
2228                 }
2229
2230                 if ( present_uuid == NULL ) {
2231                         np_entry = (struct nonpresent_entry *)
2232                                 ch_calloc( 1, sizeof( struct nonpresent_entry ));
2233                         np_entry->npe_name = ber_dupbv( NULL, &rs->sr_entry->e_name );
2234                         np_entry->npe_nname = ber_dupbv( NULL, &rs->sr_entry->e_nname );
2235                         LDAP_LIST_INSERT_HEAD( &si->si_nonpresentlist, np_entry, npe_link );
2236
2237                 } else {
2238                         avl_delete( &si->si_presentlist,
2239                                         &a->a_nvals[0], syncuuid_cmp );
2240                         ch_free( present_uuid->bv_val );
2241                         ch_free( present_uuid );
2242                 }
2243         }
2244         return LDAP_SUCCESS;
2245 }
2246
2247 static int
2248 null_callback(
2249         Operation*      op,
2250         SlapReply*      rs )
2251 {
2252         if ( rs->sr_err != LDAP_SUCCESS &&
2253                 rs->sr_err != LDAP_REFERRAL &&
2254                 rs->sr_err != LDAP_ALREADY_EXISTS &&
2255                 rs->sr_err != LDAP_NO_SUCH_OBJECT &&
2256                 rs->sr_err != LDAP_NOT_ALLOWED_ON_NONLEAF )
2257         {
2258                 Debug( LDAP_DEBUG_ANY,
2259                         "null_callback : error code 0x%x\n",
2260                         rs->sr_err, 0, 0 );
2261         }
2262         return LDAP_SUCCESS;
2263 }
2264
2265 Entry *
2266 slap_create_syncrepl_entry(
2267         Backend *be,
2268         struct berval *context_csn,
2269         struct berval *rdn,
2270         struct berval *cn )
2271 {
2272         Entry* e;
2273
2274         struct berval bv;
2275
2276         e = ( Entry * ) ch_calloc( 1, sizeof( Entry ));
2277
2278         attr_merge( e, slap_schema.si_ad_objectClass, ocbva, NULL );
2279
2280         attr_merge_one( e, slap_schema.si_ad_structuralObjectClass,
2281                 &ocbva[1], NULL );
2282
2283         attr_merge_one( e, slap_schema.si_ad_cn, cn, NULL );
2284
2285         if ( context_csn ) {
2286                 attr_merge_one( e, slap_schema.si_ad_syncreplCookie,
2287                         context_csn, NULL );
2288         }
2289
2290         BER_BVSTR( &bv, "{}" );
2291         attr_merge_one( e, slap_schema.si_ad_subtreeSpecification, &bv, NULL );
2292
2293         build_new_dn( &e->e_name, &be->be_nsuffix[0], rdn, NULL );
2294         ber_dupbv( &e->e_nname, &e->e_name );
2295
2296         return e;
2297 }
2298
2299 struct berval *
2300 slap_uuidstr_from_normalized(
2301         struct berval* uuidstr,
2302         struct berval* normalized,
2303         void *ctx )
2304 {
2305         struct berval *new;
2306         unsigned char nibble;
2307         int i, d = 0;
2308
2309         if ( normalized == NULL ) return NULL;
2310         if ( normalized->bv_len != 16 ) return NULL;
2311
2312         if ( uuidstr ) {
2313                 new = uuidstr;
2314         } else {
2315                 new = (struct berval *)slap_sl_malloc( sizeof(struct berval), ctx );
2316                 if ( new == NULL ) {
2317                         return NULL;
2318                 }
2319         }
2320
2321         new->bv_len = 36;
2322
2323         if ( ( new->bv_val = slap_sl_malloc( new->bv_len + 1, ctx ) ) == NULL ) {
2324                 if ( new != uuidstr ) {
2325                         slap_sl_free( new, ctx );
2326                 }
2327                 return NULL;
2328         }
2329
2330         for ( i = 0; i < 16; i++ ) {
2331                 if ( i == 4 || i == 6 || i == 8 || i == 10 ) {
2332                         new->bv_val[(i<<1)+d] = '-';
2333                         d += 1;
2334                 }
2335
2336                 nibble = (normalized->bv_val[i] >> 4) & 0xF;
2337                 if ( nibble < 10 ) {
2338                         new->bv_val[(i<<1)+d] = nibble + '0';
2339                 } else {
2340                         new->bv_val[(i<<1)+d] = nibble - 10 + 'a';
2341                 }
2342
2343                 nibble = (normalized->bv_val[i]) & 0xF;
2344                 if ( nibble < 10 ) {
2345                         new->bv_val[(i<<1)+d+1] = nibble + '0';
2346                 } else {
2347                         new->bv_val[(i<<1)+d+1] = nibble - 10 + 'a';
2348                 }
2349         }
2350
2351         new->bv_val[new->bv_len] = '\0';
2352         return new;
2353 }
2354
2355 static int
2356 syncuuid_cmp( const void* v_uuid1, const void* v_uuid2 )
2357 {
2358         const struct berval *uuid1 = v_uuid1;
2359         const struct berval *uuid2 = v_uuid2;
2360         int rc = uuid1->bv_len - uuid2->bv_len;
2361         if ( rc ) return rc;
2362         return ( memcmp( uuid1->bv_val, uuid2->bv_val, uuid1->bv_len ) );
2363 }
2364
2365 static void
2366 avl_ber_bvfree( void *v_bv )
2367 {
2368         struct berval   *bv = (struct berval *)v_bv;
2369         
2370         if( v_bv == NULL ) return;
2371         if ( !BER_BVISNULL( bv ) ) {
2372                 ch_free( bv->bv_val );
2373         }
2374         ch_free( (char *) bv );
2375 }
2376
2377 void
2378 syncinfo_free( syncinfo_t *sie )
2379 {
2380         if ( sie->si_provideruri ) {
2381                 ch_free( sie->si_provideruri );
2382         }
2383         if ( sie->si_provideruri_bv ) {
2384                 ber_bvarray_free( sie->si_provideruri_bv );
2385         }
2386         if ( sie->si_updatedn.bv_val ) {
2387                 ch_free( sie->si_updatedn.bv_val );
2388         }
2389         if ( sie->si_binddn ) {
2390                 ch_free( sie->si_binddn );
2391         }
2392         if ( sie->si_passwd ) {
2393                 ch_free( sie->si_passwd );
2394         }
2395         if ( sie->si_saslmech ) {
2396                 ch_free( sie->si_saslmech );
2397         }
2398         if ( sie->si_secprops ) {
2399                 ch_free( sie->si_secprops );
2400         }
2401         if ( sie->si_realm ) {
2402                 ch_free( sie->si_realm );
2403         }
2404         if ( sie->si_authcId ) {
2405                 ch_free( sie->si_authcId );
2406         }
2407         if ( sie->si_authzId ) {
2408                 ch_free( sie->si_authzId );
2409         }
2410         if ( sie->si_filterstr.bv_val ) {
2411                 ch_free( sie->si_filterstr.bv_val );
2412         }
2413         if ( sie->si_base.bv_val ) {
2414                 ch_free( sie->si_base.bv_val );
2415         }
2416         if ( sie->si_attrs ) {
2417                 int i = 0;
2418                 while ( sie->si_attrs[i] != NULL ) {
2419                         ch_free( sie->si_attrs[i] );
2420                         i++;
2421                 }
2422                 ch_free( sie->si_attrs );
2423         }
2424         if ( sie->si_exattrs ) {
2425                 int i = 0;
2426                 while ( sie->si_exattrs[i] != NULL ) {
2427                         ch_free( sie->si_exattrs[i] );
2428                         i++;
2429                 }
2430                 ch_free( sie->si_exattrs );
2431         }
2432         if ( sie->si_anlist ) {
2433                 int i = 0;
2434                 while ( sie->si_anlist[i].an_name.bv_val != NULL ) {
2435                         ch_free( sie->si_anlist[i].an_name.bv_val );
2436                         i++;
2437                 }
2438                 ch_free( sie->si_anlist );
2439         }
2440         if ( sie->si_exanlist ) {
2441                 int i = 0;
2442                 while ( sie->si_exanlist[i].an_name.bv_val != NULL ) {
2443                         ch_free( sie->si_exanlist[i].an_name.bv_val );
2444                         i++;
2445                 }
2446                 ch_free( sie->si_exanlist );
2447         }
2448         if ( sie->si_retryinterval ) {
2449                 ch_free( sie->si_retryinterval );
2450         }
2451         if ( sie->si_retrynum ) {
2452                 ch_free( sie->si_retrynum );
2453         }
2454         if ( sie->si_retrynum_init ) {
2455                 ch_free( sie->si_retrynum_init );
2456         }
2457         slap_sync_cookie_free( &sie->si_syncCookie, 0 );
2458         if ( sie->si_presentlist ) {
2459             avl_free( sie->si_presentlist, avl_ber_bvfree );
2460         }
2461         if ( sie->si_ld ) {
2462                 ldap_ld_free( sie->si_ld, 1, NULL, NULL );
2463         }
2464         while ( !LDAP_LIST_EMPTY( &sie->si_nonpresentlist )) {
2465                 struct nonpresent_entry* npe;
2466                 npe = LDAP_LIST_FIRST( &sie->si_nonpresentlist );
2467                 LDAP_LIST_REMOVE( npe, npe_link );
2468                 if ( npe->npe_name ) {
2469                         if ( npe->npe_name->bv_val ) {
2470                                 ch_free( npe->npe_name->bv_val );
2471                         }
2472                         ch_free( npe->npe_name );
2473                 }
2474                 if ( npe->npe_nname ) {
2475                         if ( npe->npe_nname->bv_val ) {
2476                                 ch_free( npe->npe_nname->bv_val );
2477                         }
2478                         ch_free( npe->npe_nname );
2479                 }
2480                 ch_free( npe );
2481         }
2482         ch_free( sie );
2483 }