]> git.sur5r.net Git - openldap/blob - servers/slapd/syncrepl.c
Merge in latest changes from HEAD
[openldap] / servers / slapd / syncrepl.c
1 /* $OpenLDAP$ */
2 /*
3  * Replication Engine which uses the LDAP Sync protocol
4  */
5 /* Copyright (c) 2003 by International Business Machines, Inc.
6  *
7  * International Business Machines, Inc. (hereinafter called IBM) grants
8  * permission under its copyrights to use, copy, modify, and distribute this
9  * Software with or without fee, provided that the above copyright notice and
10  * all paragraphs of this notice appear in all copies, and that the name of IBM
11  * not be used in connection with the marketing of any product incorporating
12  * the Software or modifications thereof, without specific, written prior
13  * permission.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", AND IBM DISCLAIMS ALL WARRANTIES,
16  * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
17  * PARTICULAR PURPOSE.  IN NO EVENT SHALL IBM BE LIABLE FOR ANY SPECIAL,
18  * DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER ARISING
19  * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE, EVEN
20  * IF IBM IS APPRISED OF THE POSSIBILITY OF SUCH DAMAGES.
21  */
22
23 #include "portable.h"
24
25 #include <stdio.h>
26
27 #include <ac/string.h>
28 #include <ac/socket.h>
29 #include <db.h>
30
31 #include "ldap_pvt.h"
32 #include "lutil.h"
33 #include "slap.h"
34 #include "lutil_ldap.h"
35
36 #include "ldap_rq.h"
37
38 static void
39 syncrepl_del_nonpresent( LDAP *, Operation * );
40
41 /* callback functions */
42 static int cookie_callback( struct slap_op *, struct slap_rep * );
43 static int dn_callback( struct slap_op *, struct slap_rep * );
44 static int nonpresent_callback( struct slap_op *, struct slap_rep * );
45 static int null_callback( struct slap_op *, struct slap_rep * );
46 static int contextcsn_callback( Operation*, SlapReply* );
47
48 static AttributeDescription **sync_descs;
49
50 struct runqueue_s syncrepl_rq;
51
52 void
53 init_syncrepl()
54 {
55         sync_descs = ch_malloc( 4 * sizeof( AttributeDescription * ));
56         sync_descs[0] = slap_schema.si_ad_objectClass;
57         sync_descs[1] = slap_schema.si_ad_structuralObjectClass;
58         sync_descs[2] = slap_schema.si_ad_entryCSN;
59         sync_descs[3] = NULL;
60 }
61
62 int
63 ldap_sync_search(
64         syncinfo_t *si,
65         LDAP *ld,
66         LDAPControl **sctrls,
67         LDAPControl **cctrls,
68         int *msgidp )
69 {
70         BerElement      *ber;
71         int timelimit;
72         ber_int_t id;
73
74         int rc;
75         BerElement      *sync_ber = NULL;
76         struct berval *sync_bvalp = NULL;
77         LDAPControl c[2];
78         LDAPControl **ctrls;
79         int err;
80         struct timeval timeout;
81
82     /* setup LDAP SYNC control */
83     sync_ber = ber_alloc_t( LBER_USE_DER );
84     ber_set_option( sync_ber, LBER_OPT_BER_MEMCTX, NULL );
85
86     if ( si->syncCookie ) {
87         ber_printf( sync_ber, "{eO}", abs(si->type), si->syncCookie );
88     } else {
89         ber_printf( sync_ber, "{e}", abs(si->type) );
90     }
91
92     if ( ber_flatten( sync_ber, &sync_bvalp ) == LBER_ERROR ) {
93         ber_free( sync_ber, 1 );
94         return LBER_ERROR;
95     }
96     ber_free( sync_ber, 1 );
97
98     ctrls = (LDAPControl**) sl_calloc( 3, sizeof(LDAPControl*), NULL );
99
100     c[0].ldctl_oid = LDAP_CONTROL_SYNC;
101     c[0].ldctl_value = (*sync_bvalp);
102     c[0].ldctl_iscritical = si->type < 0;
103     ctrls[0] = &c[0];
104
105     if ( si->authzId ) {
106         c[1].ldctl_oid = LDAP_CONTROL_PROXY_AUTHZ;
107         c[1].ldctl_value.bv_val = si->authzId;
108         c[1].ldctl_value.bv_len = strlen( si->authzId );
109         c[1].ldctl_iscritical = 1;
110         ctrls[1] = &c[1];
111     } else {
112         ctrls[1] = NULL;
113     }
114
115     ctrls[2] = NULL;
116
117     err = ldap_set_option( ld, LDAP_OPT_SERVER_CONTROLS, ctrls );
118
119     ber_bvfree( sync_bvalp );
120     ch_free( ctrls );
121
122     if ( err != LDAP_OPT_SUCCESS )
123         fprintf( stderr, "Could not set controls : %d\n", err );
124
125         timeout.tv_sec = si->tlimit > 0 ? si->tlimit : 1;
126
127         rc = ldap_search_ext( ld, si->base, si->scope, si->filterstr,
128                                                   si->attrs, si->attrsonly, sctrls, cctrls,
129                                                   si->tlimit < 0 ? NULL : &timeout,
130                                                   si->slimit, msgidp );
131
132         return rc;
133 }
134
135 void *
136 do_syncrepl(
137         void    *ctx,
138         void    *arg )
139 {
140         struct re_s* rtask = arg;
141         syncinfo_t *si = ( syncinfo_t * ) rtask->arg;
142         Backend *be = si->be;
143
144         SlapReply       rs = {REP_RESULT};
145
146         LDAPControl     c[2];
147         LDAPControl     **sctrls = NULL;
148         LDAPControl     **rctrls = NULL;
149         LDAPControl     *rctrlp = NULL;
150         BerElement      *sync_ber = NULL;
151         struct berval   *sync_bvalp = NULL;
152
153         BerElement      *ctrl_ber = NULL;
154         BerElement      *res_ber = NULL;
155
156         LDAP    *ld = NULL;
157         LDAPMessage     *res = NULL;
158         LDAPMessage     *msg = NULL;
159
160         ber_int_t       msgid;
161
162         int             nresponses, nreferences, nextended, npartial;
163         int             nresponses_psearch;
164
165         int             cancel_msgid = -1;
166         char            *retoid = NULL;
167         struct berval   *retdata = NULL;
168
169         int             sync_info_arrived = 0;
170         Entry           *entry = NULL;
171
172         int             syncstate;
173         struct berval   syncUUID = { 0, NULL };
174         struct berval   syncCookie = { 0, NULL };
175         struct berval   syncCookie_req = { 0, NULL };
176
177         int     rc;
178         int     err;
179         ber_len_t       len;
180         int     syncinfo_arrived = 0;
181
182         char **tmp = NULL;
183         AttributeDescription** descs = NULL;
184
185         Connection conn;
186         Operation op = {0};
187         slap_callback   cb;
188
189         void *memctx = NULL;
190         ber_len_t memsiz;
191         
192         int i, j, k, n;
193         int rc_efree;
194
195         struct berval base_bv = { 0, NULL };
196         struct berval pbase = { 0, NULL };
197         struct berval nbase = { 0, NULL };
198         struct berval sub_bv = { 0, NULL };
199         struct berval psubrdn = { 0, NULL };
200         struct berval nsubrdn = { 0, NULL };
201         struct berval psub = { 0, NULL };
202         struct berval nsub = { 0, NULL };
203         char substr[64];
204         Modifications   *modlist = NULL;
205         Modifications   *ml, *mlnext;
206         char *def_filter_str = NULL;
207
208         const char              *text;
209         int                             match;
210
211         struct timeval *tout_p = NULL;
212         struct timeval tout = { 10, 0 };
213
214 #ifdef NEW_LOGGING
215         LDAP_LOG ( OPERATION, DETAIL1, "do_syncrepl\n", 0, 0, 0 );
216 #else
217         Debug( LDAP_DEBUG_TRACE, "=>do_syncrepl\n", 0, 0, 0 );
218 #endif
219
220         if ( si == NULL )
221                 return NULL;
222
223         if ( abs(si->type) != LDAP_SYNC_REFRESH_ONLY &&
224              abs(si->type) != LDAP_SYNC_REFRESH_AND_PERSIST ) {
225                 return NULL;
226         }
227
228         si->sync_mode = LDAP_SYNC_STATE_MODE;
229
230         /* Init connection to master */
231
232         rc = ldap_initialize( &ld, si->provideruri );
233         if ( rc != LDAP_SUCCESS ) {
234 #ifdef NEW_LOGGING
235                 LDAP_LOG( OPERATION, ERR, "do_syncrepl: "
236                         "ldap_initialize failed (%s)\n",
237                         si->provideruri, 0, 0 );
238 #else
239                 Debug( LDAP_DEBUG_ANY, "do_syncrepl: "
240                         "ldap_initialize failed (%s)\n",
241                         si->provideruri, 0, 0 );
242 #endif
243         }
244
245         op.o_protocol = LDAP_VERSION3;
246         ldap_set_option( ld, LDAP_OPT_PROTOCOL_VERSION, &op.o_protocol );
247
248         /* Bind to master */
249
250         if ( si->tls ) {
251                 rc = ldap_start_tls_s( ld, NULL, NULL );
252                 if( rc != LDAP_SUCCESS ) {
253 #ifdef NEW_LOGGING
254                         LDAP_LOG ( OPERATION, ERR, "do_syncrepl: "
255                                 "%s: ldap_start_tls failed (%d)\n",
256                                 si->tls == TLS_CRITICAL ? "Error" : "Warning",
257                                 rc, 0 );
258 #else
259                         Debug( LDAP_DEBUG_ANY,
260                                 "%s: ldap_start_tls failed (%d)\n",
261                                 si->tls == TLS_CRITICAL ? "Error" : "Warning",
262                                 rc, 0 );
263 #endif
264                         if( si->tls == TLS_CRITICAL )
265                                 return NULL;
266                 }
267         }
268
269         if ( si->bindmethod == LDAP_AUTH_SASL ) {
270 #ifdef HAVE_CYRUS_SASL
271                 void *defaults;
272
273                 if ( si->secprops != NULL ) {
274                         int err = ldap_set_option( ld,
275                                         LDAP_OPT_X_SASL_SECPROPS, si->secprops);
276
277                         if( err != LDAP_OPT_SUCCESS ) {
278 #ifdef NEW_LOGGING
279                                 LDAP_LOG ( OPERATION, ERR, "do_bind: Error: "
280                                         "ldap_set_option(%s,SECPROPS,\"%s\") failed!\n",
281                                         si->provideruri, si->secprops, 0 );
282 #else
283                                 Debug( LDAP_DEBUG_ANY, "Error: ldap_set_option "
284                                         "(%s,SECPROPS,\"%s\") failed!\n",
285                                         si->provideruri, si->secprops, NULL );
286 #endif
287                                 return NULL;
288                         }
289                 }
290
291                 defaults = lutil_sasl_defaults( ld,
292                                 si->saslmech,
293                                 si->realm,
294                                 si->authcId,
295                                 si->passwd,
296                                 si->authzId );
297
298                 rc = ldap_sasl_interactive_bind_s( ld,
299                                 si->binddn,
300                                 si->saslmech,
301                                 NULL, NULL,
302                                 LDAP_SASL_QUIET,
303                                 lutil_sasl_interact,
304                                 defaults );
305
306                 /* FIXME : different error behaviors according to
307                         1) return code
308                         2) on err policy : exit, retry, backoff ...
309                 */
310                 if ( rc != LDAP_SUCCESS ) {
311 #ifdef NEW_LOGGING
312                         LDAP_LOG ( OPERATION, ERR, "do_syncrepl: "
313                                 "ldap_sasl_interactive_bind_s failed (%d)\n",
314                                 rc, 0, 0 );
315 #else
316                         Debug( LDAP_DEBUG_ANY, "do_syncrepl: "
317                                 "ldap_sasl_interactive_bind_s failed (%d)\n",
318                                 rc, 0, 0 );
319 #endif
320                         return NULL;
321                 }
322 #else /* HAVE_CYRUS_SASL */
323                 fprintf( stderr, "not compiled with SASL support\n" );
324                 return NULL;
325 #endif
326         } else {
327                 rc = ldap_bind_s( ld, si->binddn, si->passwd, si->bindmethod );
328                 if ( rc != LDAP_SUCCESS ) {
329 #ifdef NEW_LOGGING
330                         LDAP_LOG ( OPERATION, ERR, "do_syncrepl: "
331                                 "ldap_bind_s failed (%d)\n", rc, 0, 0 );
332 #else
333                         Debug( LDAP_DEBUG_ANY, "do_syncrepl: "
334                                 "ldap_bind_s failed (%d)\n", rc, 0, 0 );
335 #endif
336                         return NULL;
337                 }
338         }
339
340         /* set thread context in syncinfo */
341         si->ctx = ctx;
342
343         /* set memory context */
344 #define SLAB_SIZE 1048576
345         memsiz = SLAB_SIZE;
346         memctx = sl_mem_create( memsiz, ctx );
347         op.o_tmpmemctx = memctx;
348         op.o_tmpmfuncs = &sl_mfuncs;
349
350         op.o_si = si;
351         op.o_tag = LDAP_REQ_SEARCH;
352         op.o_dn = si->updatedn;
353         op.o_ndn = si->updatedn;
354         op.o_callback = &cb;
355         op.o_time = slap_get_time();
356         op.o_managedsait = 1;
357         op.o_threadctx = si->ctx;
358         op.o_bd = be;
359         op.o_conn = &conn;
360         op.o_connid = op.o_conn->c_connid;
361         op.ors_scope = LDAP_SCOPE_BASE;
362         op.ors_deref = LDAP_DEREF_NEVER;
363         op.ors_slimit = 0;
364         op.ors_tlimit = 0;
365         op.ors_attrsonly = 0;
366         op.ors_attrs = NULL;
367         op.ors_filter = str2filter_x( &op, def_filter_str = "(objectClass=*)" );
368         ber_str2bv( def_filter_str, 0, 0, &op.ors_filterstr );
369
370         si->conn = &conn;
371         conn.c_send_ldap_result = slap_send_ldap_result;
372         conn.c_send_search_entry = slap_send_search_entry;
373         conn.c_send_search_reference = slap_send_search_reference;
374
375         /* get syncrepl cookie of shadow replica from subentry */
376         ber_str2bv( si->base, 0, 0, &base_bv ); 
377         dnPrettyNormal( 0, &base_bv, &pbase, &nbase, op.o_tmpmemctx );
378
379         sprintf( substr, "cn=syncrepl%d", si->id );
380         ber_str2bv( substr, 0, 0, &sub_bv );
381         dnPrettyNormal( 0, &sub_bv, &psubrdn, &nsubrdn, op.o_tmpmemctx );
382
383         build_new_dn( &op.o_req_dn, &pbase, &psubrdn, op.o_tmpmemctx );
384         build_new_dn( &op.o_req_ndn, &nbase, &nsubrdn, op.o_tmpmemctx );
385
386         /* set callback function */
387         cb.sc_response = cookie_callback;
388         cb.sc_private = si;
389
390         /* search subentry to retrieve cookie */
391         si->syncCookie = NULL;
392         be->be_search( &op, &rs );
393
394         ber_dupbv( &syncCookie_req, si->syncCookie );
395
396         psub = be->be_nsuffix[0];
397
398         for ( n = 0; si->attrs[ n ] != NULL; n++ ) ;
399
400         if ( n != 0 ) {
401                 /* Delete Attributes */
402                 descs = sync_descs;
403                 for ( i = 0; descs[i] != NULL; i++ ) {
404                         for ( j = 0; si->attrs[j] != NULL; j++ ) {
405                                 if ( !strcmp( si->attrs[j], descs[i]->ad_cname.bv_val )) {
406                                         ch_free( si->attrs[j] );
407                                         for ( k = j; si->attrs[k] != NULL; k++ ) {
408                                                 si->attrs[k] = si->attrs[k+1];
409                                         }
410                                 }
411                         }
412                 }
413                 for ( n = 0; si->attrs[ n ] != NULL; n++ );
414                 tmp = ( char ** ) ch_realloc( si->attrs, ( n + 4 ) * sizeof( char * ));
415                 if ( tmp == NULL ) {
416 #ifdef NEW_LOGGING
417                         LDAP_LOG( OPERATION, ERR, "out of memory\n", 0,0,0 );
418 #else
419                         Debug( LDAP_DEBUG_ANY, "out of memory\n", 0,0,0 );
420 #endif
421                 }
422         } else {
423                 tmp = ( char ** ) ch_realloc( si->attrs, 5 * sizeof( char * ));
424                 if ( tmp == NULL ) {
425 #ifdef NEW_LOGGING
426                         LDAP_LOG( OPERATION, ERR, "out of memory\n", 0,0,0 );
427 #else
428                         Debug( LDAP_DEBUG_ANY, "out of memory\n", 0,0,0 );
429 #endif
430                 }
431                 tmp[ n++ ] = ch_strdup( "*" );
432         }
433         
434         descs = sync_descs;
435         si->attrs = tmp;
436
437         /* Add Attributes */
438
439         for ( i = 0; descs[ i ] != NULL; i++ ) {
440                 si->attrs[ n++ ] = ch_strdup ( descs[i]->ad_cname.bv_val );
441                 si->attrs[ n ] = NULL;
442         }
443
444         rc = ldap_sync_search( si, ld, NULL, NULL, &msgid );
445         if( rc != LDAP_SUCCESS ) {
446                 fprintf( stderr, "syncrepl: ldap_search_ext: %s (%d)\n",
447                                                         ldap_err2string( rc ), rc );
448                 return NULL;
449         }
450
451         if ( abs(si->type) == LDAP_SYNC_REFRESH_AND_PERSIST ){
452                 tout_p = &tout;
453         } else {
454                 tout_p = NULL;
455         }
456
457         while (( rc = ldap_result( ld, LDAP_RES_ANY, LDAP_MSG_ONE, tout_p, &res )) >= 0 ) {
458
459                 if ( rc == 0 ) {
460                         if ( slapd_abrupt_shutdown ) {
461                                 break;
462                         } else {
463                                 continue;
464                         }
465                 }
466
467                 for ( msg = ldap_first_message( ld, res );
468                       msg != NULL;
469                       msg = ldap_next_message( ld, msg ) )
470                 {
471                         syncCookie.bv_len = 0; syncCookie.bv_val = NULL;
472                         switch( ldap_msgtype( msg ) ) {
473                         case LDAP_RES_SEARCH_ENTRY:
474                                 entry = syncrepl_message_to_entry( si, ld, &op, msg,
475                                         &modlist, &syncstate, &syncUUID, &syncCookie );
476                                 rc_efree = syncrepl_entry( si, ld, &op, entry, modlist,
477                                                 syncstate, &syncUUID, &syncCookie, !syncinfo_arrived );
478                                 if ( syncCookie.bv_len ) {
479                                         syncrepl_updateCookie( si, ld, &op, &psub, &syncCookie );
480                                 }
481                                 if ( modlist ) {
482                                         slap_mods_free( modlist );
483                                 }
484                                 if ( rc_efree ) {
485                                         entry_free( entry );
486                                 }
487                                 break;
488
489                         case LDAP_RES_SEARCH_REFERENCE:
490 #ifdef NEW_LOGGING
491                                 LDAP_LOG( OPERATION, ERR,
492                                         "do_syncrepl : reference received\n", 0, 0, 0 );
493 #else
494                                 Debug( LDAP_DEBUG_ANY,
495                                         "do_syncrepl : reference received\n", 0, 0, 0 );
496 #endif
497                                 break;
498
499                         case LDAP_RES_SEARCH_RESULT:
500                                 ldap_parse_result( ld, msg, &err, NULL, NULL, NULL, &rctrls, 0 );
501                                 if ( rctrls ) {
502                                         rctrlp = *rctrls;
503                                         ctrl_ber = ber_alloc_t( LBER_USE_DER );
504                                         ber_set_option( ctrl_ber, LBER_OPT_BER_MEMCTX, &op.o_tmpmemctx );
505                                         ber_write( ctrl_ber, rctrlp->ldctl_value.bv_val, rctrlp->ldctl_value.bv_len, 0 );
506                                         ber_reset( ctrl_ber, 1 );
507
508                                         ber_scanf( ctrl_ber, "{" /*"}"*/);
509                                         if ( ber_peek_tag( ctrl_ber, &len )
510                                                 == LDAP_SYNC_TAG_COOKIE ) {
511                                                 ber_scanf( ctrl_ber, "o", &syncCookie );
512                                         }
513                                 }
514                                 value_match( &match, slap_schema.si_ad_entryCSN,
515                                                         slap_schema.si_ad_entryCSN->ad_type->sat_ordering,
516                                                         SLAP_MR_VALUE_OF_ATTRIBUTE_SYNTAX,
517                                                         &syncCookie_req, &syncCookie, &text );
518                                 if (si->type == LDAP_SYNC_REFRESH_AND_PERSIST) {
519                                         /* FIXME : different error behaviors according to
520                                                 1) err code : LDAP_BUSY ...
521                                                 2) on err policy : stop service, stop sync, retry
522                                         */
523                                         if ( syncCookie.bv_len && match < 0) {
524                                                 syncrepl_updateCookie( si, ld, &op, &psub, &syncCookie );
525                                         }
526                                         if ( ctrl_ber )
527                                                 ber_free( ctrl_ber, 1 );
528                                         goto done;
529                                 } else {
530                                         /* FIXME : different error behaviors according to
531                                                 1) err code : LDAP_BUSY ...
532                                                 2) on err policy : stop service, stop sync, retry
533                                         */
534                                         if ( syncCookie.bv_len && match < 0 ) {
535                                                 syncrepl_updateCookie( si, ld, &op, &psub, &syncCookie);
536                                         }
537                                         if ( si->sync_mode == LDAP_SYNC_STATE_MODE && match < 0 ) {
538                                                         syncrepl_del_nonpresent( ld, &op );
539                                         }
540                                         if ( ctrl_ber )
541                                                 ber_free( ctrl_ber, 1 );
542                                         goto done;
543                                 }
544                                 break;
545
546                         case LDAP_RES_INTERMEDIATE:
547                                 rc = ldap_parse_intermediate( ld, msg,
548                                         &retoid, &retdata, NULL, 0 );
549                                 if ( !rc && !strcmp( retoid, LDAP_SYNC_INFO ) ) {
550                                         sync_info_arrived = 1;
551                                         res_ber = ber_init( retdata );
552                                         ber_scanf( res_ber, "{e" /*"}"*/, &syncstate );
553
554                                         if ( ber_peek_tag( res_ber, &len )
555                                                                 == LDAP_SYNC_TAG_COOKIE ) {
556                                                 ber_scanf( res_ber, /*"{"*/ "o}", &syncCookie );
557                                         } else {
558                                                 if ( syncstate == LDAP_SYNC_NEW_COOKIE ) {
559 #ifdef NEW_LOGGING
560                                                         LDAP_LOG( OPERATION, ERR,
561                                                                 "do_syncrepl : cookie required\n", 0, 0, 0 );
562 #else
563                                                         Debug( LDAP_DEBUG_ANY,
564                                                                 "do_syncrepl : cookie required\n", 0, 0, 0 );
565 #endif
566                                                 }
567                                         }
568
569                                         value_match( &match, slap_schema.si_ad_entryCSN,
570                                                                 slap_schema.si_ad_entryCSN->ad_type->sat_ordering,
571                                                                 SLAP_MR_VALUE_OF_ATTRIBUTE_SYNTAX,
572                                                                 &syncCookie_req, &syncCookie, &text );
573
574                                         if ( syncCookie.bv_len && match < 0 ) {
575                                                 syncrepl_updateCookie( si, ld, &op, &psub, &syncCookie);
576                                         }
577
578                                         if ( syncstate == LDAP_SYNC_STATE_MODE_DONE ) {
579                                                 if ( match < 0 ) {
580                                                         syncrepl_del_nonpresent( ld, &op );
581                                                 }
582                                                 si->sync_mode = LDAP_SYNC_LOG_MODE;
583                                         } else if ( syncstate == LDAP_SYNC_LOG_MODE_DONE ) {
584                                                 si->sync_mode = LDAP_SYNC_PERSIST_MODE;
585                                         } else if ( syncstate == LDAP_SYNC_REFRESH_DONE ) {
586                                                 si->sync_mode = LDAP_SYNC_PERSIST_MODE;
587                                         } else if ( syncstate != LDAP_SYNC_NEW_COOKIE ||
588                                                                 syncstate != LDAP_SYNC_LOG_MODE_DONE ) {
589 #ifdef NEW_LOGGING
590                                                 LDAP_LOG( OPERATION, ERR,
591                                                         "do_syncrepl : unknown sync info\n", 0, 0, 0 );
592 #else
593                                                 Debug( LDAP_DEBUG_ANY,
594                                                         "do_syncrepl : unknown sync info\n", 0, 0, 0 );
595 #endif
596                                         }
597
598                                         ldap_memfree( retoid );
599                                         ber_bvfree( retdata );
600                                         ber_free( res_ber, 1 );
601                                         break;
602                                 } else {
603 #ifdef NEW_LOGGING
604                                         LDAP_LOG( OPERATION, ERR,"do_syncrepl :"
605                                                 " unknown intermediate "
606                                                 "response\n", 0, 0, 0 );
607 #else
608                                         Debug( LDAP_DEBUG_ANY, "do_syncrepl : "
609                                                 "unknown intermediate response (%d)\n",
610                                                 rc, 0, 0 );
611 #endif
612                                         ldap_memfree( retoid );
613                                         ber_bvfree( retdata );
614                                         break;
615                                 }
616                                 break;
617                         default:
618 #ifdef NEW_LOGGING
619                                 LDAP_LOG( OPERATION, ERR, "do_syncrepl : "
620                                         "unknown message\n", 0, 0, 0 );
621 #else
622                                 Debug( LDAP_DEBUG_ANY, "do_syncrepl : "
623                                         "unknown message\n", 0, 0, 0 );
624 #endif
625                                 break;
626
627                         }
628                         if ( syncCookie.bv_val )
629                                 ch_free( syncCookie.bv_val );
630                         if ( syncUUID.bv_val )
631                                 ch_free( syncUUID.bv_val );
632                 }
633                 ldap_msgfree( res );
634         }
635
636         if ( rc == -1 ) {
637                 int errno;
638                 const char *errstr;
639
640                 ldap_get_option( ld, LDAP_OPT_ERROR_NUMBER, &errno );
641                 errstr = ldap_err2string( errno );
642                 
643 #ifdef NEW_LOGGING
644                 LDAP_LOG( OPERATION, ERR,
645                         "do_syncrepl : %s\n", errstr, 0, 0 );
646 #else
647                 Debug( LDAP_DEBUG_ANY,
648                         "do_syncrepl : %s\n", errstr, 0, 0 );
649 #endif
650         }
651
652 done:
653         if ( syncCookie.bv_val )
654                 ch_free( syncCookie.bv_val );
655         if ( syncCookie_req.bv_val )
656                 ch_free( syncCookie_req.bv_val );
657         if ( syncUUID.bv_val )
658                 ch_free( syncUUID.bv_val );
659
660         if ( res )
661                 ldap_msgfree( res );
662
663         ldap_unbind( ld );
664
665         ldap_pvt_thread_mutex_lock( &syncrepl_rq.rq_mutex );
666         ldap_pvt_runqueue_stoptask( &syncrepl_rq, rtask );
667         if ( si->type == LDAP_SYNC_REFRESH_ONLY ) {
668                 ldap_pvt_runqueue_resched( &syncrepl_rq, rtask );
669         } else {
670                 ldap_pvt_runqueue_remove( &syncrepl_rq, rtask );
671         }
672         ldap_pvt_thread_mutex_unlock( &syncrepl_rq.rq_mutex );
673
674         return NULL;
675 }
676
677 Entry*
678 syncrepl_message_to_entry(
679         syncinfo_t      *si,
680         LDAP            *ld,
681         Operation       *op,
682         LDAPMessage     *msg,
683         Modifications   **modlist,
684         int             *syncstate,
685         struct berval   *syncUUID,
686         struct berval   *syncCookie
687 )
688 {
689         Entry           *e;
690         BerElement      *ber = NULL;
691         BerElement      *tmpber;
692         struct berval   bv = {0, NULL};
693         Modifications   tmp;
694         Modifications   *mod;
695         Modifications   **modtail = modlist;
696         Backend         *be = op->o_bd;
697
698         const char      *text;
699         char txtbuf[SLAP_TEXT_BUFLEN];
700         size_t textlen = sizeof txtbuf;
701
702         struct berval   **bvals = NULL;
703         char            *dn;
704         struct berval   bdn = {0, NULL};
705         Attribute       *attr;
706         struct berval   empty_bv = { 0, NULL };
707         int             rc;
708         char            *a;
709
710         ber_len_t       len;
711         LDAPControl*    rctrlp;
712         LDAPControl**   rctrls = NULL;
713         BerElement*     ctrl_ber;
714
715         ber_tag_t       tag;
716
717         Modifications *ml = NULL;
718         AttributeDescription** descs;
719         int i;
720
721         *modlist = NULL;
722
723         if ( ldap_msgtype( msg ) != LDAP_RES_SEARCH_ENTRY ) {
724 #ifdef NEW_LOGGING
725                 LDAP_LOG( OPERATION, ERR,
726                         "Message type should be entry (%d)", ldap_msgtype( msg ), 0, 0 );
727 #else
728                 Debug( LDAP_DEBUG_ANY,
729                         "Message type should be entry (%d)", ldap_msgtype( msg ), 0, 0 );
730 #endif
731                 return NULL;
732         }
733
734         op->o_tag = LDAP_REQ_ADD;
735
736         rc = ldap_get_dn_ber( ld, msg, &ber, &bdn );
737
738         if ( rc != LDAP_SUCCESS ) {
739 #ifdef NEW_LOGGING
740                 LDAP_LOG( OPERATION, ERR,
741                         "syncrepl_message_to_entry : dn get failed (%d)", rc, 0, 0 );
742 #else
743                 Debug( LDAP_DEBUG_ANY,
744                         "syncrepl_message_to_entry : dn get failed (%d)", rc, 0, 0 );
745 #endif
746                 return NULL;
747         }
748
749         e = ( Entry * ) ch_calloc( 1, sizeof( Entry ));
750         dnPrettyNormal( NULL, &bdn, &e->e_name, &e->e_nname, NULL );
751
752         e->e_attrs = NULL;
753
754         while ( ber_remaining( ber ) ) {
755                 tag = ber_scanf( ber, "{mW}", &tmp.sml_type, &tmp.sml_values );
756
757                 if ( tag == LBER_ERROR ) break;
758                 if ( tmp.sml_type.bv_val == NULL ) break;
759
760                 mod  = (Modifications *) ch_malloc( sizeof( Modifications ));
761
762                 mod->sml_op = LDAP_MOD_REPLACE;
763                 mod->sml_next = NULL;
764                 mod->sml_desc = NULL;
765                 mod->sml_type = tmp.sml_type;
766                 mod->sml_bvalues = tmp.sml_bvalues;
767                 mod->sml_nvalues = NULL;
768
769                 *modtail = mod;
770                 modtail = &mod->sml_next;
771         }
772
773         if ( ber_scanf( ber, "}") == LBER_ERROR ) {
774 #ifdef NEW_LOGGING
775                 LDAP_LOG( OPERATION, ERR,
776                                 "syncrepl_message_to_entry: ber_scanf failed\n", 0, 0, 0 );
777 #else
778                 Debug( LDAP_DEBUG_ANY, "syncrepl_message_to_entry: ber_scanf failed\n",
779                                 0, 0, 0 );
780 #endif
781                 return NULL;
782         }
783
784         ber_free( ber, 0 );
785         tmpber = ldap_get_message_ber( msg );
786         ber = ber_dup( tmpber );
787
788         ber_scanf( ber, "{xx" );
789
790         rc = ldap_int_get_controls( ber, &rctrls );
791
792         if ( rc != LDAP_SUCCESS ) {
793 #ifdef NEW_LOGGING
794                 LDAP_LOG( OPERATION, ERR,
795                         "syncrepl_message_to_entry : control get failed (%d)", rc, 0, 0 );
796 #else
797                 Debug( LDAP_DEBUG_ANY,
798                         "syncrepl_message_to_entry : control get failed (%d)", rc, 0, 0 );
799 #endif
800                 return NULL;
801         }
802
803         if ( rctrls ) {
804                 rctrlp = *rctrls;
805                 ctrl_ber = ber_alloc_t( LBER_USE_DER );
806                 ber_set_option( ctrl_ber, LBER_OPT_BER_MEMCTX, &op->o_tmpmemctx );
807                 ber_write( ctrl_ber, rctrlp->ldctl_value.bv_val, rctrlp->ldctl_value.bv_len, 0 );
808                 ber_reset( ctrl_ber, 1 );
809                 ber_scanf( ctrl_ber, "{eo", syncstate, syncUUID );
810                 if ( ber_peek_tag( ctrl_ber, &len ) == LDAP_SYNC_TAG_COOKIE ) {
811                         ber_scanf( ctrl_ber, "o}", syncCookie );
812                 }
813                 ber_free( ctrl_ber, 1 );
814                 ldap_controls_free( rctrls );
815         } else {
816 #ifdef NEW_LOGGING
817                 LDAP_LOG( OPERATION, ERR,"syncrepl_message_to_entry : "
818                         " rctrls absent\n", 0, 0, 0 );
819 #else
820                 Debug( LDAP_DEBUG_ANY, "syncrepl_message_to_entry :"
821                         " rctrls absent\n", 0, 0, 0 );
822 #endif
823         }
824
825         if ( *syncstate == LDAP_SYNC_PRESENT || *syncstate == LDAP_SYNC_DELETE ) {
826                 goto done;
827         }
828
829         if ( *modlist == NULL ) {
830 #ifdef NEW_LOGGING
831                 LDAP_LOG( OPERATION, ERR,
832                                 "syncrepl_message_to_entry: no attributes\n", 0, 0, 0 );
833 #else
834                 Debug( LDAP_DEBUG_ANY, "syncrepl_message_to_entry: no attributes\n",
835                                 0, 0, 0 );
836 #endif
837         }
838
839         ml = *modlist;
840         while ( ml != NULL ) {
841                 AttributeDescription *ad = NULL;
842         rc = slap_bv2ad( &ml->sml_type, &ml->sml_desc, &text );
843
844                 if( rc != LDAP_SUCCESS ) {
845                         e = NULL;
846                         goto done;
847                 }
848
849                 ad = ml->sml_desc;
850                 ml->sml_desc = NULL;
851                 ml = ml->sml_next;
852         }
853
854         rc = slap_mods_check( *modlist, 1, &text, txtbuf, textlen, NULL );
855
856         if ( rc != LDAP_SUCCESS ) {
857 #ifdef NEW_LOGGING
858                 LDAP_LOG( OPERATION, ERR,
859                                 "syncrepl_message_to_entry: mods check (%s)\n", text, 0, 0 );
860 #else
861                 Debug( LDAP_DEBUG_ANY, "syncrepl_message_to_entry: mods check (%s)\n",
862                                 text, 0, 0 );
863 #endif
864                 return NULL;
865         }
866         
867         rc = slap_mods2entry( *modlist, &e, 1, 1, &text, txtbuf, textlen);
868         if( rc != LDAP_SUCCESS ) {
869 #ifdef NEW_LOGGING
870                 LDAP_LOG( OPERATION, ERR,
871                                 "syncrepl_message_to_entry: mods2entry (%s)\n", text, 0, 0 );
872 #else
873                 Debug( LDAP_DEBUG_ANY, "syncrepl_message_to_entry: mods2entry (%s)\n",
874                                 text, 0, 0 );
875 #endif
876         }
877
878 done:
879
880         ber_free ( ber, 0 );
881
882         return e;
883 }
884
885 int
886 syncuuid_cmp( const void* v_uuid1, const void* v_uuid2 )
887 {
888         const struct berval *uuid1 = v_uuid1;
889         const struct berval *uuid2 = v_uuid2;
890         int rc = uuid1->bv_len - uuid2->bv_len;
891         if ( rc ) return rc;
892         return ( strcmp( uuid1->bv_val, uuid2->bv_val ) );
893 }
894
895 int
896 syncrepl_entry(
897         syncinfo_t* si,
898         LDAP *ld,
899         Operation *op,
900         Entry* e,
901         Modifications* modlist,
902         int syncstate,
903         struct berval* syncUUID,
904         struct berval* syncCookie,
905         int refresh
906 )
907 {
908         Backend *be = op->o_bd;
909         slap_callback   cb;
910         struct berval   csn_bv = {0, NULL};
911         struct berval   *syncuuid_bv = NULL;
912         char csnbuf[ LDAP_LUTIL_CSNSTR_BUFSIZE ];
913
914         SlapReply       rs = {REP_RESULT};
915         int rc = LDAP_SUCCESS;
916
917         struct berval base_bv = {0, NULL};
918
919         char *filterstr;
920         Filter *filter;
921
922         Attribute *a;
923
924         if ( refresh &&
925                         ( syncstate == LDAP_SYNC_PRESENT || syncstate == LDAP_SYNC_ADD )) {
926                 syncuuid_bv = ber_dupbv( NULL, syncUUID );
927                 avl_insert( &si->presentlist, (caddr_t) syncuuid_bv,
928                                                 syncuuid_cmp, avl_dup_error );
929         }
930
931         if ( syncstate == LDAP_SYNC_PRESENT ) {
932                 if ( e ) {
933                         return 1;
934                 } else {
935                         return 0;
936                 }
937         }
938
939         filterstr = (char *) sl_malloc( strlen("entryUUID=") + syncUUID->bv_len + 1,
940                                                                         op->o_tmpmemctx ); 
941         strcpy( filterstr, "entryUUID=" );
942         strcat( filterstr, syncUUID->bv_val );
943
944         si->e = e;
945         si->syncUUID_ndn = NULL;
946
947         filter = str2filter( filterstr );
948         ber_str2bv( filterstr, strlen(filterstr), 1, &op->ors_filterstr );
949         ch_free( filterstr );
950         op->ors_filter = filter;
951         op->ors_scope = LDAP_SCOPE_SUBTREE;
952
953         /* get syncrepl cookie of shadow replica from subentry */
954         ber_str2bv( si->base, strlen(si->base), 1, &base_bv ); 
955         dnPrettyNormal( 0, &base_bv, &op->o_req_dn, &op->o_req_ndn, op->o_tmpmemctx );
956         ch_free( base_bv.bv_val );
957
958         /* set callback function */
959         op->o_callback = &cb;
960         cb.sc_response = dn_callback;
961         cb.sc_private = si;
962
963         si->syncUUID_ndn = NULL;
964
965         rc = be->be_search( op, &rs );
966
967         ch_free( op->o_req_dn.bv_val );
968         ch_free( op->o_req_ndn.bv_val );
969         filter_free( op->ors_filter );
970         ch_free( op->ors_filterstr.bv_val );
971
972         cb.sc_response = null_callback;
973         cb.sc_private = si;
974
975         if ( rc == LDAP_SUCCESS && si->syncUUID_ndn && si->sync_mode != LDAP_SYNC_LOG_MODE ) {
976                 op->o_req_dn = *si->syncUUID_ndn;
977                 op->o_req_ndn = *si->syncUUID_ndn;
978                 op->o_tag = LDAP_REQ_DELETE;
979                 rc = be->be_delete( op, &rs );
980         }
981
982         if ( si->syncUUID_ndn ) {
983                 ber_bvfree( si->syncUUID_ndn );
984         }
985
986         switch ( syncstate ) {
987         case LDAP_SYNC_ADD :
988         case LDAP_SYNC_MODIFY :
989
990                 if ( rc == LDAP_SUCCESS ||
991                          rc == LDAP_REFERRAL ||
992                          rc == LDAP_NO_SUCH_OBJECT ) {
993
994                         attr_delete( &e->e_attrs, slap_schema.si_ad_entryUUID );
995                         attr_merge_normalize_one( e, slap_schema.si_ad_entryUUID, syncUUID, op->o_tmpmemctx );
996
997                         op->o_tag = LDAP_REQ_ADD;
998                         op->ora_e = e;
999                         op->o_req_dn = e->e_name;
1000                         op->o_req_ndn = e->e_nname;
1001                         rc = be->be_add( op, &rs );
1002
1003                         if ( rc != LDAP_SUCCESS ) {
1004                                 if ( rc == LDAP_ALREADY_EXISTS ) {      
1005                                         op->o_tag = LDAP_REQ_MODIFY;
1006                                         op->orm_modlist = modlist;
1007                                         op->o_req_dn = e->e_name;
1008                                         op->o_req_ndn = e->e_nname;
1009                                         rc = be->be_modify( op, &rs );
1010                                         si->e = NULL;
1011                                         if ( rc != LDAP_SUCCESS ) {
1012 #ifdef NEW_LOGGING
1013                                                 LDAP_LOG( OPERATION, ERR,
1014                                                         "syncrepl_entry : be_modify failed (%d)\n",
1015                                                         rc, 0, 0 );
1016 #else
1017                                                 Debug( LDAP_DEBUG_ANY,
1018                                                         "syncrepl_entry : be_modify failed (%d)\n",
1019                                                         rc, 0, 0 );
1020 #endif
1021                                         }
1022                                         return 1;
1023                                 } else if ( rc == LDAP_REFERRAL ||
1024                                                         rc == LDAP_NO_SUCH_OBJECT ) {
1025                                         syncrepl_add_glue( si, ld, op, e,
1026                                                 modlist, syncstate,
1027                                                 syncUUID, syncCookie);
1028                                         si->e = NULL;
1029                                         return 0;
1030                                 } else {
1031 #ifdef NEW_LOGGING
1032                                         LDAP_LOG( OPERATION, ERR,
1033                                                 "syncrepl_entry : be_add failed (%d)\n",
1034                                                 rc, 0, 0 );
1035 #else
1036                                         Debug( LDAP_DEBUG_ANY,
1037                                                 "syncrepl_entry : be_add failed (%d)\n",
1038                                                 rc, 0, 0 );
1039 #endif
1040                                         si->e = NULL;
1041                                         return 1;
1042                                 }
1043                         } else {
1044                                 si->e = NULL;
1045                                 be_entry_release_w( op, e );
1046                                 return 0;
1047                         }
1048                 } else {
1049 #ifdef NEW_LOGGING
1050                         LDAP_LOG( OPERATION, ERR,
1051                                 "syncrepl_entry : be_search failed (%d)\n", rc, 0, 0 );
1052 #else
1053                         Debug( LDAP_DEBUG_ANY,
1054                                 "syncrepl_entry : be_search failed (%d)\n", rc, 0, 0 );
1055 #endif
1056                         si->e = NULL;
1057                         return 1;
1058                 }
1059
1060         case LDAP_SYNC_DELETE :
1061                 if ( si->sync_mode == LDAP_SYNC_LOG_MODE ) {
1062                         op->o_req_dn = *si->syncUUID_ndn;
1063                         op->o_req_ndn = *si->syncUUID_ndn;
1064                         op->o_tag = LDAP_REQ_DELETE;
1065                         rc = be->be_delete( op, &rs );
1066                 }
1067                 /* Already deleted otherwise */
1068                 return 1;
1069
1070         default :
1071 #ifdef NEW_LOGGING
1072                 LDAP_LOG( OPERATION, ERR,
1073                         "syncrepl_entry : unknown syncstate\n", 0, 0, 0 );
1074 #else
1075                 Debug( LDAP_DEBUG_ANY,
1076                         "syncrepl_entry : unknown syncstate\n", 0, 0, 0 );
1077 #endif
1078                 return 1;
1079         }
1080 }
1081
1082 static void
1083 syncrepl_del_nonpresent(
1084         LDAP *ld,
1085         Operation *op
1086 )
1087 {
1088         Backend* be = op->o_bd;
1089         syncinfo_t *si = op->o_si;
1090         slap_callback   cb;
1091         struct berval   base_bv = {0, NULL};
1092         Filter *filter;
1093         SlapReply       rs = {REP_RESULT};
1094         struct berval   filterstr_bv = {0, NULL};
1095         struct nonpresent_entry *np_list, *np_prev;
1096
1097         ber_str2bv( si->base, strlen(si->base), 1, &base_bv ); 
1098         dnPrettyNormal(0, &base_bv, &op->o_req_dn, &op->o_req_ndn, op->o_tmpmemctx );
1099         ch_free( base_bv.bv_val );
1100
1101         filter = str2filter( si->filterstr );
1102
1103         cb.sc_response = nonpresent_callback;
1104         cb.sc_private = si;
1105
1106         op->o_callback = &cb;
1107         op->o_tag = LDAP_REQ_SEARCH;
1108         op->ors_scope = si->scope;
1109         op->ors_deref = LDAP_DEREF_NEVER;
1110         op->ors_slimit = 0;
1111         op->ors_tlimit = 0;
1112         op->ors_attrsonly = 0;
1113         op->ors_attrs = NULL;
1114         op->ors_filter = filter;
1115         ber_str2bv( si->filterstr, strlen( si->filterstr ), 1, &op->ors_filterstr );
1116
1117         op->o_nocaching = 1;
1118         be->be_search( op, &rs );
1119         op->o_nocaching = 0;
1120
1121         if ( !LDAP_LIST_EMPTY( &si->nonpresentlist ) ) {
1122                 np_list = LDAP_LIST_FIRST( &si->nonpresentlist );
1123                 while ( np_list != NULL ) {
1124                         LDAP_LIST_REMOVE( np_list, np_link );
1125                         np_prev = np_list;
1126                         np_list = LDAP_LIST_NEXT( np_list, np_link );
1127                         op->o_tag = LDAP_REQ_DELETE;
1128                         op->o_callback = &cb;
1129                         cb.sc_response = null_callback;
1130                         cb.sc_private = si;
1131                         op->o_req_dn = *np_prev->dn;
1132                         op->o_req_ndn = *np_prev->ndn;
1133                         op->o_bd->be_delete( op, &rs );
1134                         ber_bvfree( np_prev->dn );
1135                         ber_bvfree( np_prev->ndn );
1136                         op->o_req_dn.bv_val = NULL;
1137                         op->o_req_ndn.bv_val = NULL;
1138                         ch_free( np_prev );
1139                 }
1140         }
1141
1142         if ( op->o_req_dn.bv_val )
1143                 ch_free( op->o_req_dn.bv_val );
1144         if ( op->o_req_ndn.bv_val )
1145                 ch_free( op->o_req_ndn.bv_val );
1146         filter_free( op->ors_filter );
1147         ch_free( op->ors_filterstr.bv_val );
1148
1149         return;
1150 }
1151
1152
1153 void
1154 syncrepl_add_glue(
1155         syncinfo_t *si,
1156         LDAP *ld,
1157         Operation* op,
1158         Entry *e,
1159         Modifications* modlist,
1160         int syncstate,
1161         struct berval* syncUUID,
1162         struct berval* syncCookie
1163 )
1164 {
1165         Backend *be = op->o_bd;
1166         struct berval   uuid_bv = {0, NULL};
1167         slap_callback cb;
1168         Attribute       *a;
1169         int     rc;
1170         char    uuidbuf[ LDAP_LUTIL_UUIDSTR_BUFSIZE ];
1171         int levels = 0;
1172         int i, j, k;
1173         struct berval dn = {0, NULL};
1174         struct berval pdn = {0, NULL};
1175         struct berval ndn = {0, NULL};
1176         struct berval rdn = {0, NULL};
1177         Entry   *glue;
1178         SlapReply       rs = {REP_RESULT};
1179         Connection *conn = op->o_conn;
1180         char* ptr;
1181
1182         op->o_tag = LDAP_REQ_ADD;
1183         op->o_callback = &cb;
1184         cb.sc_response = null_callback;
1185         cb.sc_private = si;
1186
1187         ber_dupbv( &dn, &e->e_nname );
1188         ber_dupbv( &pdn, &e->e_nname );
1189
1190         ptr = dn.bv_val;
1191         while ( !be_issuffix ( be, &pdn )) {
1192                 dnParent( &dn, &pdn );
1193                 dn.bv_val = pdn.bv_val;
1194                 dn.bv_len = pdn.bv_len;
1195                 levels++;
1196         }
1197         ch_free( ptr );
1198
1199         for ( i = 0; i <= levels; i++ ) {
1200                 glue = (Entry*) ch_calloc( 1, sizeof(Entry) );
1201                 ber_dupbv( &dn, &e->e_nname );
1202                 j = levels - i;
1203
1204                 ptr = dn.bv_val;
1205                 for ( k = 0; k < j; k++ ) {
1206                         dnParent( &dn, &pdn );
1207                         dn.bv_val = pdn.bv_val;
1208                         dn.bv_len = pdn.bv_len;
1209                 }
1210
1211                 dnPrettyNormal( 0, &dn, &pdn, &ndn, op->o_tmpmemctx );
1212                 ber_dupbv( &glue->e_name, &pdn );
1213                 ber_dupbv( &glue->e_nname, &ndn );
1214                 ch_free( ptr );
1215                 ch_free( pdn.bv_val );
1216                 ch_free( ndn.bv_val );
1217
1218                 a = ch_calloc( 1, sizeof( Attribute ));
1219                 a->a_desc = slap_schema.si_ad_objectClass;
1220
1221                 a->a_vals = ch_calloc( 3, sizeof( struct berval ));
1222                 ber_str2bv( "top", strlen("top"), 1, &a->a_vals[0] );
1223                 ber_str2bv( "glue", strlen("glue"), 1, &a->a_vals[1] );
1224                 a->a_vals[2].bv_len = 0;
1225                 a->a_vals[2].bv_val = NULL;
1226
1227                 a->a_nvals = ch_calloc( 3, sizeof( struct berval ));
1228                 ber_str2bv( "top", strlen("top"), 1, &a->a_nvals[0] );
1229                 ber_str2bv( "glue", strlen("glue"), 1, &a->a_nvals[1] );
1230                 a->a_nvals[2].bv_len = 0;
1231                 a->a_nvals[2].bv_val = NULL;
1232
1233                 a->a_next = glue->e_attrs;
1234                 glue->e_attrs = a;
1235
1236                 a = ch_calloc( 1, sizeof( Attribute ));
1237                 a->a_desc = slap_schema.si_ad_structuralObjectClass;
1238
1239                 a->a_vals = ch_calloc( 2, sizeof( struct berval ));
1240                 ber_str2bv( "glue", strlen("glue"), 1, &a->a_vals[0] );
1241                 a->a_vals[1].bv_len = 0;
1242                 a->a_vals[1].bv_val = NULL;
1243
1244                 a->a_nvals = ch_calloc( 2, sizeof( struct berval ));
1245                 ber_str2bv( "glue", strlen("glue"), 1, &a->a_nvals[0] );
1246                 a->a_nvals[1].bv_len = 0;
1247                 a->a_nvals[1].bv_val = NULL;
1248
1249                 a->a_next = glue->e_attrs;
1250                 glue->e_attrs = a;
1251
1252                 if ( !strcmp( e->e_nname.bv_val, glue->e_nname.bv_val )) {
1253                         op->o_req_dn = e->e_name;
1254                         op->o_req_ndn = e->e_nname;
1255                         op->ora_e = e;
1256                         rc = be->be_add ( op, &rs );
1257                         if ( rc == LDAP_SUCCESS )
1258                                 be_entry_release_w( op, e );
1259                         else 
1260                                 entry_free( e );
1261                         entry_free( glue );
1262                 } else {
1263                         op->o_req_dn = glue->e_name;
1264                         op->o_req_ndn = glue->e_nname;
1265                         op->ora_e = glue;
1266                         rc = be->be_add ( op, &rs );
1267                         if ( rc == LDAP_SUCCESS ) {
1268                                 be_entry_release_w( op, glue );
1269                         } else {
1270                         /* incl. ALREADY EXIST */
1271                                 entry_free( glue );
1272                         }
1273                 }
1274         }
1275
1276         return;
1277 }
1278
1279 void
1280 syncrepl_updateCookie(
1281         syncinfo_t *si,
1282         LDAP *ld,
1283         Operation *op,
1284         struct berval *pdn,
1285         struct berval *syncCookie
1286 )
1287 {
1288         Backend *be = op->o_bd;
1289         Modifications *ml;
1290         Modifications *mlnext;
1291         Modifications *mod;
1292         Modifications *modlist = NULL;
1293         Modifications **modtail = &modlist;
1294
1295         struct berval* ocbva = NULL;
1296         struct berval* cnbva = NULL;
1297         struct berval* ssbva = NULL;
1298         struct berval* scbva = NULL;
1299
1300         char substr[64];
1301         char rdnstr[67];
1302         const char      *text;
1303         char txtbuf[SLAP_TEXT_BUFLEN];
1304         size_t textlen = sizeof txtbuf;
1305
1306         Entry* e = NULL;
1307         int rc;
1308
1309         struct berval sub_bv = { 0, NULL };
1310         struct berval psubrdn = { 0, NULL };
1311         
1312         slap_callback cb;
1313         SlapReply       rs = {REP_RESULT};
1314
1315         ocbva = ( struct berval * ) ch_calloc( 4, sizeof( struct berval ));
1316         cnbva = ( struct berval * ) ch_calloc( 2, sizeof( struct berval ));
1317         ssbva = ( struct berval * ) ch_calloc( 2, sizeof( struct berval ));
1318         scbva = ( struct berval * ) ch_calloc( 2, sizeof( struct berval ));
1319
1320         /* update in memory cookie */
1321         if ( si->syncCookie != NULL ) {
1322                 ber_bvfree( si->syncCookie );
1323         }
1324         si->syncCookie = ber_dupbv( NULL, syncCookie );
1325         ber_str2bv( "top", strlen("top"), 1, &ocbva[0] );
1326         ber_str2bv( "subentry", strlen("subentry"), 1, &ocbva[1] );
1327         ber_str2bv( "syncConsumerSubentry",
1328                         strlen("syncConsumerSubentry"), 1, &ocbva[2] );
1329         mod = (Modifications *) ch_calloc( 1, sizeof( Modifications ));
1330         mod->sml_op = LDAP_MOD_REPLACE;
1331         ber_str2bv( "objectClass", strlen("objectClass"), 1, &mod->sml_type );
1332         mod->sml_bvalues = ocbva;
1333         *modtail = mod;
1334         modtail = &mod->sml_next;
1335
1336         sprintf( substr, "syncrepl%d", si->id );
1337         sprintf( rdnstr, "cn=%s", substr );
1338         ber_str2bv( substr, strlen( substr ), 1, &cnbva[0] );
1339         ber_str2bv( rdnstr, strlen( rdnstr ), 1, &psubrdn );
1340         mod = (Modifications *) ch_calloc( 1, sizeof( Modifications ));
1341         mod->sml_op = LDAP_MOD_REPLACE;
1342         ber_str2bv( "cn", strlen("cn"), 1, &mod->sml_type );
1343         mod->sml_bvalues = cnbva;
1344         *modtail = mod;
1345         modtail = &mod->sml_next;
1346
1347         ber_dupbv( &scbva[0], si->syncCookie );
1348         mod = (Modifications *) ch_calloc( 1, sizeof( Modifications ));
1349         mod->sml_op = LDAP_MOD_REPLACE;
1350         ber_str2bv( "syncreplCookie", strlen("syncreplCookie"),
1351                                                 1, &mod->sml_type );
1352         mod->sml_bvalues = scbva;
1353         *modtail = mod;
1354         modtail = &mod->sml_next;
1355
1356         ber_str2bv( "{}", strlen("{}"), 1, &ssbva[0] );
1357         mod = (Modifications *) ch_calloc( 1, sizeof( Modifications ));
1358         mod->sml_op = LDAP_MOD_REPLACE;
1359         ber_str2bv( "subtreeSpecification",
1360                         strlen("subtreeSpecification"), 1, &mod->sml_type );
1361         mod->sml_bvalues = ssbva;
1362         *modtail = mod;
1363         modtail = &mod->sml_next;
1364
1365         rc = slap_mods_check( modlist, 1, &text, txtbuf, textlen, NULL );
1366
1367         if ( rc != LDAP_SUCCESS ) {
1368 #ifdef NEW_LOGGING
1369                 LDAP_LOG( OPERATION, ERR,
1370                                 "syncrepl_updateCookie: mods check (%s)\n", text, 0, 0 );
1371 #else
1372                 Debug( LDAP_DEBUG_ANY, "syncrepl_updateCookie: mods check (%s)\n",
1373                          text, 0, 0 );
1374 #endif
1375         }
1376
1377         op->o_tag = LDAP_REQ_ADD;
1378         rc = slap_mods_opattrs( op, modlist, modtail,
1379                                                          &text,txtbuf, textlen );
1380
1381         for ( ml = modlist; ml != NULL; ml = mlnext ) {
1382                 mlnext = ml->sml_next;
1383                 ml->sml_op = LDAP_MOD_REPLACE;
1384         }
1385
1386         if( rc != LDAP_SUCCESS ) {
1387 #ifdef NEW_LOGGING
1388                 LDAP_LOG( OPERATION, ERR,
1389                                 "syncrepl_updateCookie: mods opattrs (%s)\n", text, 0, 0 );
1390 #else
1391                 Debug( LDAP_DEBUG_ANY, "syncrepl_updateCookie: mods opattrs (%s)\n",
1392                          text, 0, 0 );
1393 #endif
1394         }
1395
1396         e = ( Entry * ) ch_calloc( 1, sizeof( Entry ));
1397
1398         build_new_dn( &sub_bv, pdn, &psubrdn, NULL );
1399         dnPrettyNormal( NULL, &sub_bv, &e->e_name, &e->e_nname, NULL );
1400         ch_free( sub_bv.bv_val );
1401         ch_free( psubrdn.bv_val );
1402
1403         e->e_attrs = NULL;
1404
1405         rc = slap_mods2entry( modlist, &e, 1, 1, &text, txtbuf, textlen );
1406
1407         if( rc != LDAP_SUCCESS ) {
1408 #ifdef NEW_LOGGING
1409                 LDAP_LOG( OPERATION, ERR,
1410                                 "syncrepl_updateCookie: mods2entry (%s)\n", text, 0, 0 );
1411 #else
1412                 Debug( LDAP_DEBUG_ANY, "syncrepl_updateCookie: mods2entry (%s)\n",
1413                          text, 0, 0 );
1414 #endif
1415         }
1416
1417         cb.sc_response = null_callback;
1418         cb.sc_private = si;
1419
1420         op->o_callback = &cb;
1421         op->o_req_dn = e->e_name;
1422         op->o_req_ndn = e->e_nname;
1423
1424         /* update persistent cookie */
1425 update_cookie_retry:
1426         op->o_tag = LDAP_REQ_MODIFY;
1427         op->orm_modlist = modlist;
1428         rc = be->be_modify( op, &rs );
1429
1430         if ( rc != LDAP_SUCCESS ) {
1431                 if ( rc == LDAP_REFERRAL ||
1432                          rc == LDAP_NO_SUCH_OBJECT ) {
1433                         op->o_tag = LDAP_REQ_ADD;
1434                         op->ora_e = e;
1435                         rc = be->be_add( op, &rs );
1436                         if ( rc != LDAP_SUCCESS ) {
1437                                 if ( rc == LDAP_ALREADY_EXISTS ) {
1438                                         goto update_cookie_retry;
1439                                 } else if ( rc == LDAP_REFERRAL ||
1440                                                         rc == LDAP_NO_SUCH_OBJECT ) {
1441 #ifdef NEW_LOGGING
1442                                         LDAP_LOG( OPERATION, ERR,
1443                                                 "cookie will be non-persistent\n",
1444                                                 0, 0, 0 );
1445 #else
1446                                         Debug( LDAP_DEBUG_ANY,
1447                                                 "cookie will be non-persistent\n",
1448                                                 0, 0, 0 );
1449 #endif
1450                                 } else {
1451 #ifdef NEW_LOGGING
1452                                         LDAP_LOG( OPERATION, ERR,
1453                                                 "be_add failed (%d)\n",
1454                                                 rc, 0, 0 );
1455 #else
1456                                         Debug( LDAP_DEBUG_ANY,
1457                                                 "be_add failed (%d)\n",
1458                                                 rc, 0, 0 );
1459 #endif
1460                                 }
1461                         } else {
1462                                 be_entry_release_w( op, e );
1463                                 goto done;
1464                         }
1465                 } else {
1466 #ifdef NEW_LOGGING
1467                         LDAP_LOG( OPERATION, ERR,
1468                                 "be_modify failed (%d)\n", rc, 0, 0 );
1469 #else
1470                         Debug( LDAP_DEBUG_ANY,
1471                                 "be_modify failed (%d)\n", rc, 0, 0 );
1472 #endif
1473                 }
1474         }
1475
1476         if ( e != NULL ) {
1477                 entry_free( e );
1478         }
1479
1480 done :
1481
1482         if ( modlist ) {
1483                 slap_mods_free( modlist );
1484         }
1485
1486         return;
1487 }
1488
1489 void
1490 avl_ber_bvfree( void *bv )
1491 {
1492         if( bv == NULL ) {
1493                 return;
1494         }
1495         if ( ((struct berval *)bv)->bv_val != NULL ) {
1496                 ch_free ( ((struct berval *)bv)->bv_val );
1497         }
1498         ch_free ( (char *) bv );
1499 }
1500
1501 static int
1502 cookie_callback(
1503         Operation* op,
1504         SlapReply* rs
1505 )
1506 {
1507         syncinfo_t *si = op->o_callback->sc_private;
1508         Attribute *a;
1509
1510         if ( rs->sr_type != REP_SEARCH ) return LDAP_SUCCESS;
1511
1512         a = attr_find( rs->sr_entry->e_attrs, slap_schema.si_ad_syncreplCookie );
1513
1514         if ( a == NULL ) {
1515                 si->syncCookie = NULL;
1516         } else {
1517                 si->syncCookie = ber_dupbv( NULL, &a->a_vals[0] );
1518         }
1519         return LDAP_SUCCESS;
1520 }
1521
1522 static int
1523 dn_callback(
1524         Operation*      op,
1525         SlapReply*      rs
1526 )
1527 {
1528         syncinfo_t *si = op->o_callback->sc_private;
1529
1530         if ( rs->sr_type == REP_SEARCH ) {
1531                 if ( si->syncUUID_ndn != NULL ) {
1532 #ifdef NEW_LOGGING
1533                         LDAP_LOG( OPERATION, ERR,
1534                                 "dn_callback : multiple entries match dn\n", 0, 0, 0 );
1535 #else
1536                         Debug( LDAP_DEBUG_ANY,
1537                                 "dn_callback : multiple entries match dn\n", 0, 0, 0 );
1538 #endif
1539                 } else {
1540                         if ( rs->sr_entry == NULL ) {
1541                                 si->syncUUID_ndn = NULL;
1542                         } else {
1543                                 si->syncUUID_ndn = ber_dupbv( NULL, &rs->sr_entry->e_nname );
1544                         }
1545                 }
1546         }
1547
1548         return LDAP_SUCCESS;
1549 }
1550
1551 static int
1552 nonpresent_callback(
1553         Operation*      op,
1554         SlapReply*      rs
1555 )
1556 {
1557         syncinfo_t *si = op->o_callback->sc_private;
1558         Attribute *a;
1559         int count = 0;
1560         struct berval* present_uuid = NULL;
1561         slap_callback cb;
1562         SlapReply       rs_cb = {REP_RESULT};
1563         struct nonpresent_entry *np_entry;
1564
1565         if ( rs->sr_type == REP_RESULT ) {
1566                 count = avl_free( si->presentlist, avl_ber_bvfree );
1567                 si->presentlist = NULL;
1568                 return LDAP_SUCCESS;
1569         } else if ( rs->sr_type == REP_SEARCH ) {
1570                 a = attr_find( rs->sr_entry->e_attrs, slap_schema.si_ad_entryUUID );
1571
1572                 if ( a == NULL )
1573                         return 0;
1574
1575                 present_uuid = avl_find( si->presentlist, &a->a_vals[0], syncuuid_cmp );
1576
1577                 if ( present_uuid == NULL ) {
1578                         np_entry = (struct nonpresent_entry *)
1579                                                 ch_calloc( 1, sizeof( struct nonpresent_entry ));
1580                         np_entry->dn = ber_dupbv( NULL, &rs->sr_entry->e_name );
1581                         np_entry->ndn = ber_dupbv( NULL, &rs->sr_entry->e_nname );
1582                         LDAP_LIST_INSERT_HEAD( &si->nonpresentlist, np_entry, np_link );
1583                 } else {
1584                         avl_delete( &si->presentlist,
1585                                         &a->a_vals[0], syncuuid_cmp );
1586                         ch_free( present_uuid->bv_val );
1587                         ch_free( present_uuid );
1588                 }
1589                 return LDAP_SUCCESS;
1590         } else {
1591                 return LDAP_SUCCESS;
1592         }
1593
1594 }
1595
1596 static int
1597 null_callback(
1598         Operation*      op,
1599         SlapReply*      rs
1600 )
1601 {
1602         syncinfo_t *si = op->o_callback->sc_private;
1603
1604         if ( rs->sr_err != LDAP_SUCCESS &&
1605                  rs->sr_err != LDAP_REFERRAL &&
1606                  rs->sr_err != LDAP_ALREADY_EXISTS &&
1607                  rs->sr_err != LDAP_NO_SUCH_OBJECT ) {
1608 #ifdef NEW_LOGGING
1609                 LDAP_LOG( OPERATION, ERR,
1610                         "null_callback : error code 0x%x\n",
1611                         rs->sr_err, 0, 0 );
1612 #else
1613                 Debug( LDAP_DEBUG_ANY,
1614                         "null_callback : error code 0x%x\n",
1615                         rs->sr_err, 0, 0 );
1616 #endif
1617         }
1618         return LDAP_SUCCESS;
1619 }
1620
1621
1622 char **
1623 str2clist( char ***out, char *in, const char *brkstr )
1624 {
1625         char    *str;
1626         char    *s;
1627         char    *lasts;
1628         int     i, j;
1629         const char *text;
1630         char    **new;
1631
1632         /* find last element in list */
1633         for (i = 0; *out && *out[i]; i++);
1634
1635         /* protect the input string from strtok */
1636         str = ch_strdup( in );
1637
1638         if ( *str == '\0' ) {
1639                 free( str );
1640                 return( *out );
1641         }
1642
1643         /* Count words in string */
1644         j=1;
1645         for ( s = str; *s; s++ ) {
1646                 if ( strchr( brkstr, *s ) != NULL ) {
1647                         j++;
1648                 }
1649         }
1650
1651         *out = ch_realloc( *out, ( i + j + 1 ) * sizeof( char * ) );
1652         new = *out + i;
1653         for ( s = ldap_pvt_strtok( str, brkstr, &lasts );
1654                 s != NULL;
1655                 s = ldap_pvt_strtok( NULL, brkstr, &lasts ) )
1656         {
1657                 *new = ch_strdup( s );
1658                 new++;
1659         }
1660
1661         *new = NULL;
1662         free( str );
1663         return( *out );
1664 }