]> git.sur5r.net Git - openldap/blob - servers/slapd/overlays/syncprov.c
More cleanup for prev commit
[openldap] / servers / slapd / overlays / syncprov.c
1 /* $OpenLDAP$ */
2 /* syncprov.c - syncrepl provider */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 2004-2005 The OpenLDAP Foundation.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted only as authorized by the OpenLDAP
10  * Public License.
11  *
12  * A copy of this license is available in the file LICENSE in the
13  * top-level directory of the distribution or, alternatively, at
14  * <http://www.OpenLDAP.org/license.html>.
15  */
16 /* ACKNOWLEDGEMENTS:
17  * This work was initially developed by Howard Chu for inclusion in
18  * OpenLDAP Software.
19  */
20
21 #include "portable.h"
22
23 #ifdef SLAPD_OVER_SYNCPROV
24
25 #include <ac/string.h>
26 #include "lutil.h"
27 #include "slap.h"
28
29 /* A modify request on a particular entry */
30 typedef struct modinst {
31         struct modinst *mi_next;
32         Operation *mi_op;
33 } modinst;
34
35 typedef struct modtarget {
36         struct modinst *mt_mods;
37         struct modinst *mt_tail;
38         Operation *mt_op;
39         ldap_pvt_thread_mutex_t mt_mutex;
40 } modtarget;
41
42 /* A queued result of a persistent search */
43 typedef struct syncres {
44         struct syncres *s_next;
45         struct berval s_dn;
46         struct berval s_ndn;
47         struct berval s_uuid;
48         struct berval s_csn;
49         char s_mode;
50         char s_isreference;
51 } syncres;
52
53 /* Record of a persistent search */
54 typedef struct syncops {
55         struct syncops *s_next;
56         struct berval   s_base;         /* ndn of search base */
57         ID              s_eid;          /* entryID of search base */
58         Operation       *s_op;          /* search op */
59         int             s_sid;
60         int             s_rid;
61         struct berval s_filterstr;
62         int             s_flags;        /* search status */
63         int             s_inuse;        /* reference count */
64         struct syncres *s_res;
65         struct syncres *s_restail;
66         ldap_pvt_thread_mutex_t s_mutex;
67 } syncops;
68
69 /* A received sync control */
70 typedef struct sync_control {
71         struct sync_cookie sr_state;
72         int sr_rhint;
73 } sync_control;
74
75 #if 0 /* moved back to slap.h */
76 #define o_sync  o_ctrlflag[slap_cids.sc_LDAPsync]
77 #endif
78 /* o_sync_mode uses data bits of o_sync */
79 #define o_sync_mode     o_ctrlflag[slap_cids.sc_LDAPsync]
80
81 #define SLAP_SYNC_NONE                                  (LDAP_SYNC_NONE<<SLAP_CONTROL_SHIFT)
82 #define SLAP_SYNC_REFRESH                               (LDAP_SYNC_REFRESH_ONLY<<SLAP_CONTROL_SHIFT)
83 #define SLAP_SYNC_PERSIST                               (LDAP_SYNC_RESERVED<<SLAP_CONTROL_SHIFT)
84 #define SLAP_SYNC_REFRESH_AND_PERSIST   (LDAP_SYNC_REFRESH_AND_PERSIST<<SLAP_CONTROL_SHIFT)
85
86 #define PS_IS_REFRESHING        0x01
87 #define PS_IS_DETACHED          0x02
88
89 /* Record of which searches matched at premodify step */
90 typedef struct syncmatches {
91         struct syncmatches *sm_next;
92         syncops *sm_op;
93 } syncmatches;
94
95 /* Session log data */
96 typedef struct slog_entry {
97         struct slog_entry *se_next;
98         struct berval se_uuid;
99         struct berval se_csn;
100         ber_tag_t       se_tag;
101 } slog_entry;
102
103 typedef struct sessionlog {
104         struct sessionlog *sl_next;
105         int             sl_sid;
106         struct berval   sl_mincsn;
107         int             sl_num;
108         int             sl_size;
109         slog_entry *sl_head;
110         slog_entry *sl_tail;
111         ldap_pvt_thread_mutex_t sl_mutex;
112 } sessionlog;
113
114 /* The main state for this overlay */
115 typedef struct syncprov_info_t {
116         syncops         *si_ops;
117         struct berval   si_ctxcsn;      /* ldapsync context */
118         int             si_chkops;      /* checkpointing info */
119         int             si_chktime;
120         int             si_numops;      /* number of ops since last checkpoint */
121         time_t  si_chklast;     /* time of last checkpoint */
122         Avlnode *si_mods;       /* entries being modified */
123         sessionlog      *si_logs;
124         ldap_pvt_thread_mutex_t si_csn_mutex;
125         ldap_pvt_thread_mutex_t si_ops_mutex;
126         ldap_pvt_thread_mutex_t si_mods_mutex;
127         char            si_ctxcsnbuf[LDAP_LUTIL_CSNSTR_BUFSIZE];
128 } syncprov_info_t;
129
130 typedef struct opcookie {
131         slap_overinst *son;
132         syncmatches *smatches;
133         struct berval sdn;      /* DN of entry, for deletes */
134         struct berval sndn;
135         struct berval suuid;    /* UUID of entry */
136         struct berval sctxcsn;
137         int sreference; /* Is the entry a reference? */
138 } opcookie;
139
140 typedef struct fbase_cookie {
141         struct berval *fdn;     /* DN of a modified entry, for scope testing */
142         syncops *fss;   /* persistent search we're testing against */
143         int fbase;      /* if TRUE we found the search base and it's still valid */
144         int fscope;     /* if TRUE then fdn is within the psearch scope */
145 } fbase_cookie;
146
147 static AttributeName csn_anlist[2];
148 static AttributeName uuid_anlist[2];
149
150 /* Build a LDAPsync intermediate state control */
151 static int
152 syncprov_state_ctrl(
153         Operation       *op,
154         SlapReply       *rs,
155         Entry           *e,
156         int             entry_sync_state,
157         LDAPControl     **ctrls,
158         int             num_ctrls,
159         int             send_cookie,
160         struct berval   *cookie )
161 {
162         Attribute* a;
163         int ret;
164         int res;
165         const char *text = NULL;
166
167         BerElementBuffer berbuf;
168         BerElement *ber = (BerElement *)&berbuf;
169
170         struct berval   entryuuid_bv = BER_BVNULL;
171
172         ber_init2( ber, 0, LBER_USE_DER );
173         ber_set_option( ber, LBER_OPT_BER_MEMCTX, &op->o_tmpmemctx );
174
175         ctrls[num_ctrls] = op->o_tmpalloc( sizeof ( LDAPControl ), op->o_tmpmemctx );
176
177         for ( a = e->e_attrs; a != NULL; a = a->a_next ) {
178                 AttributeDescription *desc = a->a_desc;
179                 if ( desc == slap_schema.si_ad_entryUUID ) {
180                         entryuuid_bv = a->a_nvals[0];
181                         break;
182                 }
183         }
184
185         if ( send_cookie && cookie ) {
186                 ber_printf( ber, "{eOON}",
187                         entry_sync_state, &entryuuid_bv, cookie );
188         } else {
189                 ber_printf( ber, "{eON}",
190                         entry_sync_state, &entryuuid_bv );
191         }
192
193         ctrls[num_ctrls]->ldctl_oid = LDAP_CONTROL_SYNC_STATE;
194         ctrls[num_ctrls]->ldctl_iscritical = (op->o_sync == SLAP_CONTROL_CRITICAL);
195         ret = ber_flatten2( ber, &ctrls[num_ctrls]->ldctl_value, 1 );
196
197         ber_free_buf( ber );
198
199         if ( ret < 0 ) {
200                 Debug( LDAP_DEBUG_TRACE,
201                         "slap_build_sync_ctrl: ber_flatten2 failed\n",
202                         0, 0, 0 );
203                 send_ldap_error( op, rs, LDAP_OTHER, "internal error" );
204                 return ret;
205         }
206
207         return LDAP_SUCCESS;
208 }
209
210 /* Build a LDAPsync final state control */
211 static int
212 syncprov_done_ctrl(
213         Operation       *op,
214         SlapReply       *rs,
215         LDAPControl     **ctrls,
216         int                     num_ctrls,
217         int                     send_cookie,
218         struct berval *cookie,
219         int                     refreshDeletes )
220 {
221         int ret;
222         BerElementBuffer berbuf;
223         BerElement *ber = (BerElement *)&berbuf;
224
225         ber_init2( ber, NULL, LBER_USE_DER );
226         ber_set_option( ber, LBER_OPT_BER_MEMCTX, &op->o_tmpmemctx );
227
228         ctrls[num_ctrls] = op->o_tmpalloc( sizeof ( LDAPControl ), op->o_tmpmemctx );
229
230         ber_printf( ber, "{" );
231         if ( send_cookie && cookie ) {
232                 ber_printf( ber, "O", cookie );
233         }
234         if ( refreshDeletes == LDAP_SYNC_REFRESH_DELETES ) {
235                 ber_printf( ber, "b", refreshDeletes );
236         }
237         ber_printf( ber, "N}" );
238
239         ctrls[num_ctrls]->ldctl_oid = LDAP_CONTROL_SYNC_DONE;
240         ctrls[num_ctrls]->ldctl_iscritical = (op->o_sync == SLAP_CONTROL_CRITICAL);
241         ret = ber_flatten2( ber, &ctrls[num_ctrls]->ldctl_value, 1 );
242
243         ber_free_buf( ber );
244
245         if ( ret < 0 ) {
246                 Debug( LDAP_DEBUG_TRACE,
247                         "syncprov_done_ctrl: ber_flatten2 failed\n",
248                         0, 0, 0 );
249                 send_ldap_error( op, rs, LDAP_OTHER, "internal error" );
250                 return ret;
251         }
252
253         return LDAP_SUCCESS;
254 }
255
256 #if 0
257 /* Generate state based on session log - not implemented yet */
258 static int
259 syncprov_state_ctrl_from_slog(
260         Operation       *op,
261         SlapReply       *rs,
262         struct slog_entry *slog_e,
263         int                     entry_sync_state,
264         LDAPControl     **ctrls,
265         int                     num_ctrls,
266         int                     send_cookie,
267         struct berval   *cookie)
268 {
269         Attribute* a;
270         int ret;
271         int res;
272         const char *text = NULL;
273
274         BerElementBuffer berbuf;
275         BerElement *ber = (BerElement *)&berbuf;
276
277         struct berval entryuuid_bv      = BER_BVNULL;
278
279         ber_init2( ber, NULL, LBER_USE_DER );
280         ber_set_option( ber, LBER_OPT_BER_MEMCTX, &op->o_tmpmemctx );
281
282         ctrls[num_ctrls] = ch_malloc ( sizeof ( LDAPControl ) );
283
284         entryuuid_bv = slog_e->sl_uuid;
285
286         if ( send_cookie && cookie ) {
287                 ber_printf( ber, "{eOON}",
288                         entry_sync_state, &entryuuid_bv, cookie );
289         } else {
290                 ber_printf( ber, "{eON}",
291                         entry_sync_state, &entryuuid_bv );
292         }
293
294         ctrls[num_ctrls]->ldctl_oid = LDAP_CONTROL_SYNC_STATE;
295         ctrls[num_ctrls]->ldctl_iscritical = (op->o_sync == SLAP_CONTROL_CRITICAL);
296         ret = ber_flatten2( ber, &ctrls[num_ctrls]->ldctl_value, 1 );
297
298         ber_free_buf( ber );
299
300         if ( ret < 0 ) {
301                 Debug( LDAP_DEBUG_TRACE,
302                         "slap_build_sync_ctrl: ber_flatten2 failed\n",
303                         0, 0, 0 );
304                 send_ldap_error( op, rs, LDAP_OTHER, "internal error" );
305                 return ret;
306         }
307
308         return LDAP_SUCCESS;
309 }
310 #endif
311
312 static int
313 syncprov_sendinfo(
314         Operation       *op,
315         SlapReply       *rs,
316         int                     type,
317         struct berval *cookie,
318         int                     refreshDone,
319         BerVarray       syncUUIDs,
320         int                     refreshDeletes )
321 {
322         BerElementBuffer berbuf;
323         BerElement *ber = (BerElement *)&berbuf;
324         struct berval rspdata;
325
326         int ret;
327
328         ber_init2( ber, NULL, LBER_USE_DER );
329         ber_set_option( ber, LBER_OPT_BER_MEMCTX, &op->o_tmpmemctx );
330
331         if ( type ) {
332                 switch ( type ) {
333                 case LDAP_TAG_SYNC_NEW_COOKIE:
334                         ber_printf( ber, "tO", type, cookie );
335                         break;
336                 case LDAP_TAG_SYNC_REFRESH_DELETE:
337                 case LDAP_TAG_SYNC_REFRESH_PRESENT:
338                         ber_printf( ber, "t{", type );
339                         if ( cookie ) {
340                                 ber_printf( ber, "O", cookie );
341                         }
342                         if ( refreshDone == 0 ) {
343                                 ber_printf( ber, "b", refreshDone );
344                         }
345                         ber_printf( ber, "N}" );
346                         break;
347                 case LDAP_TAG_SYNC_ID_SET:
348                         ber_printf( ber, "t{", type );
349                         if ( cookie ) {
350                                 ber_printf( ber, "O", cookie );
351                         }
352                         if ( refreshDeletes == 1 ) {
353                                 ber_printf( ber, "b", refreshDeletes );
354                         }
355                         ber_printf( ber, "[W]", syncUUIDs );
356                         ber_printf( ber, "N}" );
357                         break;
358                 default:
359                         Debug( LDAP_DEBUG_TRACE,
360                                 "syncprov_sendinfo: invalid syncinfo type (%d)\n",
361                                 type, 0, 0 );
362                         return LDAP_OTHER;
363                 }
364         }
365
366         ret = ber_flatten2( ber, &rspdata, 0 );
367
368         if ( ret < 0 ) {
369                 Debug( LDAP_DEBUG_TRACE,
370                         "syncprov_sendinfo: ber_flatten2 failed\n",
371                         0, 0, 0 );
372                 send_ldap_error( op, rs, LDAP_OTHER, "internal error" );
373                 return ret;
374         }
375
376         rs->sr_rspoid = LDAP_SYNC_INFO;
377         rs->sr_rspdata = &rspdata;
378         send_ldap_intermediate( op, rs );
379         rs->sr_rspdata = NULL;
380         ber_free_buf( ber );
381
382         return LDAP_SUCCESS;
383 }
384
385 /* Find a modtarget in an AVL tree */
386 static int
387 sp_avl_cmp( const void *c1, const void *c2 )
388 {
389         const modtarget *m1, *m2;
390         int rc;
391
392         m1 = c1; m2 = c2;
393         rc = m1->mt_op->o_req_ndn.bv_len - m2->mt_op->o_req_ndn.bv_len;
394
395         if ( rc ) return rc;
396         return ber_bvcmp( &m1->mt_op->o_req_ndn, &m2->mt_op->o_req_ndn );
397 }
398
399 /* syncprov_findbase:
400  *   finds the true DN of the base of a search (with alias dereferencing) and
401  * checks to make sure the base entry doesn't get replaced with a different
402  * entry (e.g., swapping trees via ModDN, or retargeting an alias). If a
403  * change is detected, any persistent search on this base must be terminated /
404  * reloaded.
405  *   On the first call, we just save the DN and entryID. On subsequent calls
406  * we compare the DN and entryID with the saved values.
407  */
408 static int
409 findbase_cb( Operation *op, SlapReply *rs )
410 {
411         slap_callback *sc = op->o_callback;
412
413         if ( rs->sr_type == REP_SEARCH && rs->sr_err == LDAP_SUCCESS ) {
414                 fbase_cookie *fc = sc->sc_private;
415
416                 /* If no entryID, we're looking for the first time.
417                  * Just store whatever we got.
418                  */
419                 if ( fc->fss->s_eid == NOID ) {
420                         fc->fbase = 1;
421                         fc->fss->s_eid = rs->sr_entry->e_id;
422                         ber_dupbv( &fc->fss->s_base, &rs->sr_entry->e_nname );
423
424                 } else if ( rs->sr_entry->e_id == fc->fss->s_eid &&
425                         dn_match( &rs->sr_entry->e_nname, &fc->fss->s_base )) {
426
427                 /* OK, the DN is the same and the entryID is the same. Now
428                  * see if the fdn resides in the scope.
429                  */
430                         fc->fbase = 1;
431                         switch ( fc->fss->s_op->ors_scope ) {
432                         case LDAP_SCOPE_BASE:
433                                 fc->fscope = dn_match( fc->fdn, &rs->sr_entry->e_nname );
434                                 break;
435                         case LDAP_SCOPE_ONELEVEL: {
436                                 struct berval pdn;
437                                 dnParent( fc->fdn, &pdn );
438                                 fc->fscope = dn_match( &pdn, &rs->sr_entry->e_nname );
439                                 break; }
440                         case LDAP_SCOPE_SUBTREE:
441                                 fc->fscope = dnIsSuffix( fc->fdn, &rs->sr_entry->e_nname );
442                                 break;
443 #ifdef LDAP_SCOPE_SUBORDINATE
444                         case LDAP_SCOPE_SUBORDINATE:
445                                 fc->fscope = dnIsSuffix( fc->fdn, &rs->sr_entry->e_nname ) &&
446                                         !dn_match( fc->fdn, &rs->sr_entry->e_nname );
447                                 break;
448 #endif
449                         }
450                 }
451         }
452         if ( rs->sr_err != LDAP_SUCCESS ) {
453                 Debug( LDAP_DEBUG_ANY, "findbase failed! %d\n", rs->sr_err,0,0 );
454         }
455         return LDAP_SUCCESS;
456 }
457
458 static int
459 syncprov_findbase( Operation *op, fbase_cookie *fc )
460 {
461         opcookie *opc = op->o_callback->sc_private;
462         slap_overinst *on = opc->son;
463         syncprov_info_t         *si = on->on_bi.bi_private;
464
465         slap_callback cb = {0};
466         Operation fop;
467         SlapReply frs = { REP_RESULT };
468         int rc;
469
470         fop = *op;
471
472         cb.sc_response = findbase_cb;
473         cb.sc_private = fc;
474
475         fop.o_sync_mode &= SLAP_CONTROL_MASK;   /* turn off sync mode */
476         fop.o_callback = &cb;
477         fop.o_tag = LDAP_REQ_SEARCH;
478         fop.ors_scope = LDAP_SCOPE_BASE;
479         fop.ors_deref = fc->fss->s_op->ors_deref;
480         fop.ors_limit = NULL;
481         fop.ors_slimit = 1;
482         fop.ors_tlimit = SLAP_NO_LIMIT;
483         fop.ors_attrs = slap_anlist_no_attrs;
484         fop.ors_attrsonly = 1;
485         fop.ors_filter = fc->fss->s_op->ors_filter;
486         fop.ors_filterstr = fc->fss->s_op->ors_filterstr;
487
488         fop.o_req_ndn = fc->fss->s_op->o_req_ndn;
489
490         fop.o_bd->bd_info = on->on_info->oi_orig;
491         rc = fop.o_bd->be_search( &fop, &frs );
492         fop.o_bd->bd_info = (BackendInfo *)on;
493
494         if ( fc->fbase ) return LDAP_SUCCESS;
495
496         /* If entryID has changed, then the base of this search has
497          * changed. Invalidate the psearch.
498          */
499         return LDAP_NO_SUCH_OBJECT;
500 }
501
502 /* syncprov_findcsn:
503  *   This function has three different purposes, but they all use a search
504  * that filters on entryCSN so they're combined here.
505  * 1: at startup time, after a contextCSN has been read from the database,
506  * we search for all entries with CSN >= contextCSN in case the contextCSN
507  * was not checkpointed at the previous shutdown.
508  *
509  * 2: when the current contextCSN is known and we have a sync cookie, we search
510  * for one entry with CSN <= the cookie CSN. (Used to search for =.) If an
511  * entry is found, the cookie CSN is valid, otherwise it is stale.
512  *
513  * 3: during a refresh phase, we search for all entries with CSN <= the cookie
514  * CSN, and generate Present records for them. We always collect this result
515  * in SyncID sets, even if there's only one match.
516  */
517 #define FIND_MAXCSN     1
518 #define FIND_CSN        2
519 #define FIND_PRESENT    3
520
521 static int
522 findmax_cb( Operation *op, SlapReply *rs )
523 {
524         if ( rs->sr_type == REP_SEARCH && rs->sr_err == LDAP_SUCCESS ) {
525                 struct berval *maxcsn = op->o_callback->sc_private;
526                 Attribute *a = attr_find( rs->sr_entry->e_attrs,
527                         slap_schema.si_ad_entryCSN );
528
529                 if ( a && ber_bvcmp( &a->a_vals[0], maxcsn ) > 0 ) {
530                         maxcsn->bv_len = a->a_vals[0].bv_len;
531                         strcpy( maxcsn->bv_val, a->a_vals[0].bv_val );
532                 }
533         }
534         return LDAP_SUCCESS;
535 }
536
537 static int
538 findcsn_cb( Operation *op, SlapReply *rs )
539 {
540         slap_callback *sc = op->o_callback;
541
542         if ( rs->sr_type == REP_SEARCH && rs->sr_err == LDAP_SUCCESS ) {
543                 sc->sc_private = (void *)1;
544         }
545         return LDAP_SUCCESS;
546 }
547
548 /* Build a list of entryUUIDs for sending in a SyncID set */
549
550 #define UUID_LEN        16
551
552 typedef struct fpres_cookie {
553         int num;
554         BerVarray uuids;
555         char *last;
556 } fpres_cookie;
557
558 static int
559 findpres_cb( Operation *op, SlapReply *rs )
560 {
561         slap_callback *sc = op->o_callback;
562         fpres_cookie *pc = sc->sc_private;
563         Attribute *a;
564         int ret = SLAP_CB_CONTINUE;
565
566         switch ( rs->sr_type ) {
567         case REP_SEARCH:
568                 a = attr_find( rs->sr_entry->e_attrs, slap_schema.si_ad_entryUUID );
569                 if ( a ) {
570                         pc->uuids[pc->num].bv_val = pc->last;
571                         AC_MEMCPY( pc->uuids[pc->num].bv_val, a->a_nvals[0].bv_val,
572                                 pc->uuids[pc->num].bv_len );
573                         pc->num++;
574                         pc->last = pc->uuids[pc->num].bv_val;
575                         pc->uuids[pc->num].bv_val = NULL;
576                 }
577                 ret = LDAP_SUCCESS;
578                 if ( pc->num != SLAP_SYNCUUID_SET_SIZE )
579                         break;
580                 /* FALLTHRU */
581         case REP_RESULT:
582                 ret = rs->sr_err;
583                 if ( pc->num ) {
584                         ret = syncprov_sendinfo( op, rs, LDAP_TAG_SYNC_ID_SET, NULL,
585                                 0, pc->uuids, 0 );
586                         pc->uuids[pc->num].bv_val = pc->last;
587                         pc->num = 0;
588                         pc->last = pc->uuids[0].bv_val;
589                 }
590                 break;
591         default:
592                 break;
593         }
594         return ret;
595 }
596
597 static int
598 syncprov_findcsn( Operation *op, int mode )
599 {
600         slap_overinst           *on = (slap_overinst *)op->o_bd->bd_info;
601         syncprov_info_t         *si = on->on_bi.bi_private;
602
603         slap_callback cb = {0};
604         Operation fop;
605         SlapReply frs = { REP_RESULT };
606         char buf[LDAP_LUTIL_CSNSTR_BUFSIZE + STRLENOF("(entryCSN<=)")];
607         char cbuf[LDAP_LUTIL_CSNSTR_BUFSIZE];
608         struct berval fbuf, maxcsn;
609         Filter cf, af;
610         AttributeAssertion eq;
611         int i, rc = LDAP_SUCCESS;
612         fpres_cookie pcookie;
613         sync_control *srs;
614
615         if ( mode != FIND_MAXCSN ) {
616                 srs = op->o_controls[slap_cids.sc_LDAPsync];
617
618                 if ( srs->sr_state.ctxcsn->bv_len >= LDAP_LUTIL_CSNSTR_BUFSIZE ) {
619                         return LDAP_OTHER;
620                 }
621         }
622
623         fop = *op;
624         fop.o_sync_mode &= SLAP_CONTROL_MASK;   /* turn off sync_mode */
625
626         fbuf.bv_val = buf;
627         cf.f_ava = &eq;
628         cf.f_av_desc = slap_schema.si_ad_entryCSN;
629         cf.f_next = NULL;
630
631         fop.o_callback = &cb;
632         fop.ors_limit = NULL;
633         fop.ors_tlimit = SLAP_NO_LIMIT;
634         fop.ors_filter = &cf;
635         fop.ors_filterstr = fbuf;
636
637         switch( mode ) {
638         case FIND_MAXCSN:
639                 cf.f_choice = LDAP_FILTER_GE;
640                 cf.f_av_value = si->si_ctxcsn;
641                 fbuf.bv_len = sprintf( buf, "(entryCSN>=%s)",
642                         cf.f_av_value.bv_val );
643                 fop.ors_attrsonly = 0;
644                 fop.ors_attrs = csn_anlist;
645                 fop.ors_slimit = SLAP_NO_LIMIT;
646                 cb.sc_private = &maxcsn;
647                 cb.sc_response = findmax_cb;
648                 strcpy( cbuf, si->si_ctxcsn.bv_val );
649                 maxcsn.bv_val = cbuf;
650                 maxcsn.bv_len = si->si_ctxcsn.bv_len;
651                 break;
652         case FIND_CSN:
653                 cf.f_choice = LDAP_FILTER_LE;
654                 cf.f_av_value = *srs->sr_state.ctxcsn;
655                 fbuf.bv_len = sprintf( buf, "(entryCSN<=%s)",
656                         cf.f_av_value.bv_val );
657                 fop.ors_attrsonly = 1;
658                 fop.ors_attrs = slap_anlist_no_attrs;
659                 fop.ors_slimit = 1;
660                 cb.sc_private = NULL;
661                 cb.sc_response = findcsn_cb;
662                 break;
663         case FIND_PRESENT:
664                 af.f_choice = LDAP_FILTER_AND;
665                 af.f_next = NULL;
666                 af.f_and = &cf;
667                 cf.f_choice = LDAP_FILTER_LE;
668                 cf.f_av_value = *srs->sr_state.ctxcsn;
669                 cf.f_next = op->ors_filter;
670                 fop.ors_filter = &af;
671                 filter2bv_x( &fop, fop.ors_filter, &fop.ors_filterstr );
672                 fop.ors_attrsonly = 0;
673                 fop.ors_attrs = uuid_anlist;
674                 fop.ors_slimit = SLAP_NO_LIMIT;
675                 /* We want pure entries, not referrals */
676                 fop.o_managedsait = SLAP_CONTROL_CRITICAL;
677                 cb.sc_private = &pcookie;
678                 cb.sc_response = findpres_cb;
679                 pcookie.num = 0;
680
681                 /* preallocate storage for a full set */
682                 pcookie.uuids = op->o_tmpalloc( (SLAP_SYNCUUID_SET_SIZE+1) *
683                         sizeof(struct berval) + SLAP_SYNCUUID_SET_SIZE * UUID_LEN,
684                         op->o_tmpmemctx );
685                 pcookie.last = (char *)(pcookie.uuids + SLAP_SYNCUUID_SET_SIZE+1);
686                 pcookie.uuids[0].bv_val = pcookie.last;
687                 pcookie.uuids[0].bv_len = UUID_LEN;
688                 for (i=1; i<SLAP_SYNCUUID_SET_SIZE; i++) {
689                         pcookie.uuids[i].bv_val = pcookie.uuids[i-1].bv_val + UUID_LEN;
690                         pcookie.uuids[i].bv_len = UUID_LEN;
691                 }
692                 break;
693         }
694
695         fop.o_bd->bd_info = on->on_info->oi_orig;
696         fop.o_bd->be_search( &fop, &frs );
697         fop.o_bd->bd_info = (BackendInfo *)on;
698
699         switch( mode ) {
700         case FIND_MAXCSN:
701                 strcpy( si->si_ctxcsnbuf, maxcsn.bv_val );
702                 si->si_ctxcsn.bv_len = maxcsn.bv_len;
703                 break;
704         case FIND_CSN:
705                 /* If matching CSN was not found, invalidate the context. */
706                 if ( !cb.sc_private ) rc = LDAP_NO_SUCH_OBJECT;
707                 break;
708         case FIND_PRESENT:
709                 op->o_tmpfree( pcookie.uuids, op->o_tmpmemctx );
710                 op->o_tmpfree( fop.ors_filterstr.bv_val, op->o_tmpmemctx );
711                 break;
712         }
713
714         return rc;
715 }
716
717 /* Queue a persistent search response if still in Refresh stage */
718 static int
719 syncprov_qresp( opcookie *opc, syncops *so, int mode )
720 {
721         syncres *sr;
722
723         sr = ch_malloc(sizeof(syncres) + opc->suuid.bv_len + 1 +
724                 opc->sdn.bv_len + 1 + opc->sndn.bv_len + 1 + opc->sctxcsn.bv_len + 1 );
725         sr->s_next = NULL;
726         sr->s_dn.bv_val = (char *)(sr + 1);
727         sr->s_mode = mode;
728         sr->s_isreference = opc->sreference;
729         sr->s_ndn.bv_val = lutil_strcopy( sr->s_dn.bv_val, opc->sdn.bv_val );
730         *(sr->s_ndn.bv_val++) = '\0';
731         sr->s_uuid.bv_val = lutil_strcopy( sr->s_ndn.bv_val, opc->sndn.bv_val );
732         *(sr->s_uuid.bv_val++) = '\0';
733         sr->s_csn.bv_val = lutil_strcopy( sr->s_uuid.bv_val, opc->suuid.bv_val );
734
735         if ( !so->s_res ) {
736                 so->s_res = sr;
737         } else {
738                 so->s_restail->s_next = sr;
739         }
740         so->s_restail = sr;
741         ldap_pvt_thread_mutex_unlock( &so->s_mutex );
742         return LDAP_SUCCESS;
743 }
744
745 /* Send a persistent search response */
746 static int
747 syncprov_sendresp( Operation *op, opcookie *opc, syncops *so, Entry *e, int mode, int queue )
748 {
749         slap_overinst *on = opc->son;
750         syncprov_info_t *si = on->on_bi.bi_private;
751
752         SlapReply rs = { REP_SEARCH };
753         LDAPControl *ctrls[2];
754         struct berval cookie;
755         Entry e_uuid = {0};
756         Attribute a_uuid = {0};
757         Operation sop = *so->s_op;
758         Opheader ohdr;
759
760         ohdr = *sop.o_hdr;
761         sop.o_hdr = &ohdr;
762         sop.o_tmpmemctx = op->o_tmpmemctx;
763         sop.o_bd = op->o_bd;
764         sop.o_controls = op->o_controls;
765
766         if ( queue && (so->s_flags & PS_IS_REFRESHING) ) {
767                 ldap_pvt_thread_mutex_lock( &so->s_mutex );
768                 if ( so->s_flags & PS_IS_REFRESHING )
769                         return syncprov_qresp( opc, so, mode );
770                 ldap_pvt_thread_mutex_unlock( &so->s_mutex );
771         }
772
773         ctrls[1] = NULL;
774         slap_compose_sync_cookie( op, &cookie, &opc->sctxcsn,
775                 so->s_sid, so->s_rid );
776
777         e_uuid.e_attrs = &a_uuid;
778         a_uuid.a_desc = slap_schema.si_ad_entryUUID;
779         a_uuid.a_nvals = &opc->suuid;
780         rs.sr_err = syncprov_state_ctrl( &sop, &rs, &e_uuid,
781                 mode, ctrls, 0, 1, &cookie );
782
783         rs.sr_entry = e;
784         rs.sr_ctrls = ctrls;
785         switch( mode ) {
786         case LDAP_SYNC_ADD:
787                 if ( opc->sreference ) {
788                         rs.sr_ref = get_entry_referrals( &sop, e );
789                         send_search_reference( &sop, &rs );
790                         ber_bvarray_free( rs.sr_ref );
791                         break;
792                 }
793                 /* fallthru */
794         case LDAP_SYNC_MODIFY:
795                 rs.sr_attrs = sop.ors_attrs;
796                 send_search_entry( &sop, &rs );
797                 break;
798         case LDAP_SYNC_DELETE:
799                 e_uuid.e_attrs = NULL;
800                 e_uuid.e_name = opc->sdn;
801                 e_uuid.e_nname = opc->sndn;
802                 rs.sr_entry = &e_uuid;
803                 if ( opc->sreference ) {
804                         struct berval bv = BER_BVNULL;
805                         rs.sr_ref = &bv;
806                         send_search_reference( &sop, &rs );
807                 } else {
808                         send_search_entry( &sop, &rs );
809                 }
810                 break;
811         default:
812                 assert(0);
813         }
814         op->o_tmpfree( rs.sr_ctrls[0], op->o_tmpmemctx );
815         rs.sr_ctrls = NULL;
816         return rs.sr_err;
817 }
818
819 static void
820 syncprov_free_syncop( syncops *so )
821 {
822         syncres *sr, *srnext;
823         GroupAssertion *ga, *gnext;
824
825         ldap_pvt_thread_mutex_lock( &so->s_mutex );
826         so->s_inuse--;
827         if ( so->s_inuse > 0 ) {
828                 ldap_pvt_thread_mutex_unlock( &so->s_mutex );
829                 return;
830         }
831         ldap_pvt_thread_mutex_unlock( &so->s_mutex );
832         if ( so->s_flags & PS_IS_DETACHED ) {
833                 filter_free( so->s_op->ors_filter );
834                 for ( ga = so->s_op->o_groups; ga; ga=gnext ) {
835                         gnext = ga->ga_next;
836                         ch_free( ga );
837                 }
838                 ch_free( so->s_op );
839         }
840         ch_free( so->s_base.bv_val );
841         for ( sr=so->s_res; sr; sr=srnext ) {
842                 srnext = sr->s_next;
843                 ch_free( sr );
844         }
845         ldap_pvt_thread_mutex_destroy( &so->s_mutex );
846         ch_free( so );
847 }
848
849 static int
850 syncprov_drop_psearch( syncops *so, int lock )
851 {
852         if ( so->s_flags & PS_IS_DETACHED ) {
853                 if ( lock )
854                         ldap_pvt_thread_mutex_lock( &so->s_op->o_conn->c_mutex );
855                 so->s_op->o_conn->c_n_ops_executing--;
856                 so->s_op->o_conn->c_n_ops_completed++;
857                 LDAP_STAILQ_REMOVE( &so->s_op->o_conn->c_ops, so->s_op, slap_op,
858                         o_next );
859                 if ( lock )
860                         ldap_pvt_thread_mutex_unlock( &so->s_op->o_conn->c_mutex );
861         }
862         syncprov_free_syncop( so );
863 }
864
865 static int
866 syncprov_op_abandon( Operation *op, SlapReply *rs )
867 {
868         slap_overinst           *on = (slap_overinst *)op->o_bd->bd_info;
869         syncprov_info_t         *si = on->on_bi.bi_private;
870         syncops *so, *soprev;
871
872         ldap_pvt_thread_mutex_lock( &si->si_ops_mutex );
873         for ( so=si->si_ops, soprev = (syncops *)&si->si_ops; so;
874                 soprev=so, so=so->s_next ) {
875                 if ( so->s_op->o_connid == op->o_connid &&
876                         so->s_op->o_msgid == op->orn_msgid ) {
877                                 so->s_op->o_abandon = 1;
878                                 soprev->s_next = so->s_next;
879                                 break;
880                 }
881         }
882         ldap_pvt_thread_mutex_unlock( &si->si_ops_mutex );
883         if ( so ) {
884                 /* Is this really a Cancel exop? */
885                 if ( op->o_tag != LDAP_REQ_ABANDON ) {
886                         rs->sr_err = LDAP_CANCELLED;
887                         send_ldap_result( so->s_op, rs );
888                 }
889                 syncprov_drop_psearch( so, 0 );
890         }
891         return SLAP_CB_CONTINUE;
892 }
893
894 /* Find which persistent searches are affected by this operation */
895 static void
896 syncprov_matchops( Operation *op, opcookie *opc, int saveit )
897 {
898         slap_overinst *on = opc->son;
899         syncprov_info_t         *si = on->on_bi.bi_private;
900
901         fbase_cookie fc;
902         syncops *ss, *sprev, *snext;
903         Entry *e;
904         Attribute *a;
905         int rc;
906         struct berval newdn;
907         int freefdn = 0;
908
909         fc.fdn = &op->o_req_ndn;
910         /* compute new DN */
911         if ( op->o_tag == LDAP_REQ_MODRDN && !saveit ) {
912                 struct berval pdn;
913                 if ( op->orr_nnewSup ) pdn = *op->orr_nnewSup;
914                 else dnParent( fc.fdn, &pdn );
915                 build_new_dn( &newdn, &pdn, &op->orr_nnewrdn, op->o_tmpmemctx );
916                 fc.fdn = &newdn;
917                 freefdn = 1;
918         }
919         if ( op->o_tag != LDAP_REQ_ADD ) {
920                 op->o_bd->bd_info = (BackendInfo *)on->on_info;
921                 rc = be_entry_get_rw( op, fc.fdn, NULL, NULL, 0, &e );
922                 op->o_bd->bd_info = (BackendInfo *)on;
923                 if ( rc ) return;
924         } else {
925                 e = op->ora_e;
926         }
927
928         /* Never replicate these */
929         if ( is_entry_syncConsumerSubentry( e )) {
930                 goto done;
931         }
932         if ( saveit ) {
933                 ber_dupbv_x( &opc->sdn, &e->e_name, op->o_tmpmemctx );
934                 ber_dupbv_x( &opc->sndn, &e->e_nname, op->o_tmpmemctx );
935                 opc->sreference = is_entry_referral( e );
936         }
937         if ( saveit || op->o_tag == LDAP_REQ_ADD ) {
938                 a = attr_find( e->e_attrs, slap_schema.si_ad_entryUUID );
939                 if ( a )
940                         ber_dupbv_x( &opc->suuid, &a->a_nvals[0], op->o_tmpmemctx );
941         }
942
943         ldap_pvt_thread_mutex_lock( &si->si_ops_mutex );
944         for (ss = si->si_ops, sprev = (syncops *)&si->si_ops; ss;
945                 sprev = ss, ss=snext)
946         {
947                 syncmatches *sm;
948                 int found = 0;
949
950                 snext = ss->s_next;
951                 /* validate base */
952                 fc.fss = ss;
953                 fc.fbase = 0;
954                 fc.fscope = 0;
955
956                 /* If the base of the search is missing, signal a refresh */
957                 rc = syncprov_findbase( op, &fc );
958                 if ( rc != LDAP_SUCCESS ) {
959                         SlapReply rs = {REP_RESULT};
960                         send_ldap_error( ss->s_op, &rs, LDAP_SYNC_REFRESH_REQUIRED,
961                                 "search base has changed" );
962                         sprev->s_next = snext;
963                         syncprov_drop_psearch( ss, 1 );
964                         continue;
965                 }
966
967                 /* If we're sending results now, look for this op in old matches */
968                 if ( !saveit ) {
969                         syncmatches *old;
970                         for ( sm=opc->smatches, old=(syncmatches *)&opc->smatches; sm;
971                                 old=sm, sm=sm->sm_next ) {
972                                 if ( sm->sm_op == ss ) {
973                                         found = 1;
974                                         old->sm_next = sm->sm_next;
975                                         op->o_tmpfree( sm, op->o_tmpmemctx );
976                                         break;
977                                 }
978                         }
979                 }
980
981                 /* check if current o_req_dn is in scope and matches filter */
982                 if ( fc.fscope && test_filter( op, e, ss->s_op->ors_filter ) ==
983                         LDAP_COMPARE_TRUE ) {
984                         if ( saveit ) {
985                                 sm = op->o_tmpalloc( sizeof(syncmatches), op->o_tmpmemctx );
986                                 sm->sm_next = opc->smatches;
987                                 sm->sm_op = ss;
988                                 ss->s_inuse++;
989                                 opc->smatches = sm;
990                         } else {
991                                 /* if found send UPDATE else send ADD */
992                                 syncprov_sendresp( op, opc, ss, e,
993                                         found ? LDAP_SYNC_MODIFY : LDAP_SYNC_ADD, 1 );
994                         }
995                 } else if ( !saveit && found ) {
996                         /* send DELETE */
997                         syncprov_sendresp( op, opc, ss, NULL, LDAP_SYNC_DELETE, 1 );
998                 }
999         }
1000         ldap_pvt_thread_mutex_unlock( &si->si_ops_mutex );
1001 done:
1002         if ( op->o_tag != LDAP_REQ_ADD ) {
1003                 op->o_bd->bd_info = (BackendInfo *)on->on_info;
1004                 be_entry_release_rw( op, e, 0 );
1005                 op->o_bd->bd_info = (BackendInfo *)on;
1006         }
1007         if ( freefdn ) {
1008                 op->o_tmpfree( fc.fdn->bv_val, op->o_tmpmemctx );
1009         }
1010 }
1011
1012 static int
1013 syncprov_op_cleanup( Operation *op, SlapReply *rs )
1014 {
1015         slap_callback *cb = op->o_callback;
1016         opcookie *opc = cb->sc_private;
1017         slap_overinst *on = opc->son;
1018         syncprov_info_t         *si = on->on_bi.bi_private;
1019         syncmatches *sm, *snext;
1020         modtarget *mt, mtdummy;
1021
1022         for (sm = opc->smatches; sm; sm=snext) {
1023                 snext = sm->sm_next;
1024                 syncprov_free_syncop( sm->sm_op );
1025                 op->o_tmpfree( sm, op->o_tmpmemctx );
1026         }
1027
1028         /* Remove op from lock table */
1029         mtdummy.mt_op = op;
1030         ldap_pvt_thread_mutex_lock( &si->si_mods_mutex );
1031         mt = avl_find( si->si_mods, &mtdummy, sp_avl_cmp );
1032         ldap_pvt_thread_mutex_unlock( &si->si_mods_mutex );
1033         if ( mt ) {
1034                 modinst *mi = mt->mt_mods;
1035
1036                 /* If there are more, promote the next one */
1037                 ldap_pvt_thread_mutex_lock( &mt->mt_mutex );
1038                 if ( mi->mi_next ) {
1039                         mt->mt_mods = mi->mi_next;
1040                         mt->mt_op = mt->mt_mods->mi_op;
1041                         ldap_pvt_thread_mutex_unlock( &mt->mt_mutex );
1042                 } else {
1043                         ldap_pvt_thread_mutex_lock( &si->si_mods_mutex );
1044                         avl_delete( &si->si_mods, mt, sp_avl_cmp );
1045                         ldap_pvt_thread_mutex_unlock( &si->si_mods_mutex );
1046                         ldap_pvt_thread_mutex_unlock( &mt->mt_mutex );
1047                         ldap_pvt_thread_mutex_destroy( &mt->mt_mutex );
1048                         ch_free( mt );
1049                 }
1050         }
1051         if ( !BER_BVISNULL( &opc->suuid ))
1052                 op->o_tmpfree( opc->suuid.bv_val, op->o_tmpmemctx );
1053         if ( !BER_BVISNULL( &opc->sndn ))
1054                 op->o_tmpfree( opc->sndn.bv_val, op->o_tmpmemctx );
1055         if ( !BER_BVISNULL( &opc->sdn ))
1056                 op->o_tmpfree( opc->sdn.bv_val, op->o_tmpmemctx );
1057         op->o_callback = cb->sc_next;
1058         op->o_tmpfree(cb, op->o_tmpmemctx);
1059 }
1060
1061 static void
1062 syncprov_checkpoint( Operation *op, SlapReply *rs, slap_overinst *on )
1063 {
1064         syncprov_info_t         *si = on->on_bi.bi_private;
1065         Modifications mod;
1066         Operation opm;
1067         struct berval bv[2];
1068         BackendInfo *orig;
1069         slap_callback cb = {0};
1070
1071         mod.sml_values = bv;
1072         bv[1].bv_val = NULL;
1073         bv[0] = si->si_ctxcsn;
1074         mod.sml_nvalues = NULL;
1075         mod.sml_desc = slap_schema.si_ad_contextCSN;
1076         mod.sml_op = LDAP_MOD_REPLACE;
1077         mod.sml_next = NULL;
1078
1079         cb.sc_response = slap_null_cb;
1080         opm = *op;
1081         opm.o_tag = LDAP_REQ_MODIFY;
1082         opm.o_callback = &cb;
1083         opm.orm_modlist = &mod;
1084         opm.o_req_dn = op->o_bd->be_suffix[0];
1085         opm.o_req_ndn = op->o_bd->be_nsuffix[0];
1086         orig = opm.o_bd->bd_info;
1087         opm.o_bd->bd_info = on->on_info->oi_orig;
1088         opm.o_bd->be_modify( &opm, rs );
1089 }
1090
1091 static void
1092 syncprov_add_slog( Operation *op, struct berval *csn )
1093 {
1094         opcookie *opc = op->o_callback->sc_private;
1095         slap_overinst *on = opc->son;
1096         syncprov_info_t         *si = on->on_bi.bi_private;
1097         sessionlog *sl;
1098         slog_entry *se;
1099
1100         for ( sl = si->si_logs; sl; sl=sl->sl_next ) {
1101                 /* Allocate a record. UUIDs are not NUL-terminated. */
1102                 se = ch_malloc( sizeof( slog_entry ) + opc->suuid.bv_len + 
1103                         csn->bv_len + 1 );
1104                 se->se_next = NULL;
1105                 se->se_tag = op->o_tag;
1106
1107                 se->se_uuid.bv_val = (char *)(se+1);
1108                 se->se_csn.bv_val = se->se_uuid.bv_val + opc->suuid.bv_len + 1;
1109                 AC_MEMCPY( se->se_uuid.bv_val, opc->suuid.bv_val, opc->suuid.bv_len );
1110                 se->se_uuid.bv_len = opc->suuid.bv_len;
1111
1112                 AC_MEMCPY( se->se_csn.bv_val, csn->bv_val, csn->bv_len );
1113                 se->se_csn.bv_val[csn->bv_len] = '\0';
1114                 se->se_csn.bv_len = csn->bv_len;
1115
1116                 ldap_pvt_thread_mutex_lock( &sl->sl_mutex );
1117                 if ( sl->sl_head ) {
1118                         sl->sl_tail->se_next = se;
1119                 } else {
1120                         sl->sl_head = se;
1121                 }
1122                 sl->sl_tail = se;
1123                 sl->sl_num++;
1124                 while ( sl->sl_num > sl->sl_size ) {
1125                         se = sl->sl_head;
1126                         sl->sl_head = se->se_next;
1127                         strcpy( sl->sl_mincsn.bv_val, se->se_csn.bv_val );
1128                         sl->sl_mincsn.bv_len = se->se_csn.bv_len;
1129                         ch_free( se );
1130                         sl->sl_num--;
1131                         if ( !sl->sl_head ) {
1132                                 sl->sl_tail = NULL;
1133                         }
1134                 }
1135                 ldap_pvt_thread_mutex_unlock( &sl->sl_mutex );
1136         }
1137 }
1138
1139 /* Just set a flag if we found the matching entry */
1140 static int
1141 playlog_cb( Operation *op, SlapReply *rs )
1142 {
1143         if ( rs->sr_type == REP_SEARCH ) {
1144                 op->o_callback->sc_private = (void *)1;
1145         }
1146         return rs->sr_err;
1147 }
1148
1149 /* enter with sl->sl_mutex locked, release before returning */
1150 static void
1151 syncprov_playlog( Operation *op, SlapReply *rs, sessionlog *sl,
1152         struct berval *oldcsn, struct berval *ctxcsn )
1153 {
1154         slap_overinst           *on = (slap_overinst *)op->o_bd->bd_info;
1155         syncprov_info_t         *si = on->on_bi.bi_private;
1156         slog_entry *se;
1157         int i, j, ndel, num, nmods, mmods;
1158         BerVarray uuids;
1159
1160         if ( !sl->sl_num ) {
1161                 ldap_pvt_thread_mutex_unlock( &sl->sl_mutex );
1162                 return;
1163         }
1164
1165         num = sl->sl_num;
1166         i = 0;
1167         nmods = 0;
1168
1169         uuids = op->o_tmpalloc( (num+1) * sizeof( struct berval ) +
1170                 num * UUID_LEN, op->o_tmpmemctx );
1171
1172         uuids[0].bv_val = (char *)(uuids + num + 1);
1173
1174         /* Make a copy of the relevant UUIDs. Put the Deletes up front
1175          * and everything else at the end. Do this first so we can
1176          * unlock the list mutex.
1177          */
1178         for ( se=sl->sl_head; se; se=se->se_next ) {
1179                 if ( ber_bvcmp( &se->se_csn, oldcsn ) < 0 ) continue;
1180                 if ( ber_bvcmp( &se->se_csn, ctxcsn ) > 0 ) break;
1181                 if ( se->se_tag == LDAP_REQ_DELETE ) {
1182                         j = i;
1183                         i++;
1184                 } else {
1185                         nmods++;
1186                         j = num - nmods;
1187                 }
1188                 uuids[j].bv_val = uuids[0].bv_val + (j * UUID_LEN);
1189                 AC_MEMCPY(uuids[j].bv_val, se->se_uuid.bv_val, UUID_LEN);
1190                 uuids[j].bv_len = UUID_LEN;
1191         }
1192         ldap_pvt_thread_mutex_unlock( &sl->sl_mutex );
1193
1194         ndel = i;
1195
1196         /* Zero out unused slots */
1197         for ( i=ndel; i < num - nmods; i++ )
1198                 uuids[i].bv_len = 0;
1199
1200         /* Mods must be validated to see if they belong in this delete set.
1201          */
1202
1203         mmods = nmods;
1204         /* Strip any duplicates */
1205         for ( i=0; i<nmods; i++ ) {
1206                 for ( j=0; j<ndel; j++ ) {
1207                         if ( bvmatch( &uuids[j], &uuids[num - 1 - i] )) {
1208                                 uuids[num - 1 - i].bv_len = 0;
1209                                 mmods --;
1210                                 break;
1211                         }
1212                 }
1213                 if ( uuids[num - 1 - i].bv_len == 0 ) continue;
1214                 for ( j=0; j<i; j++ ) {
1215                         if ( bvmatch( &uuids[num - 1 - j], &uuids[num - 1 - i] )) {
1216                                 uuids[num - 1 - i].bv_len = 0;
1217                                 mmods --;
1218                                 break;
1219                         }
1220                 }
1221         }
1222
1223         if ( mmods ) {
1224                 Operation fop;
1225                 SlapReply frs = { REP_RESULT };
1226                 int rc;
1227                 Filter mf, af;
1228                 AttributeAssertion eq;
1229                 slap_callback cb = {0};
1230
1231                 fop = *op;
1232
1233                 fop.o_sync_mode = 0;
1234                 fop.o_callback = &cb;
1235                 fop.ors_limit = NULL;
1236                 fop.ors_tlimit = SLAP_NO_LIMIT;
1237                 fop.ors_attrs = slap_anlist_all_attributes;
1238                 fop.ors_attrsonly = 0;
1239                 fop.o_managedsait = SLAP_CONTROL_CRITICAL;
1240
1241                 af.f_choice = LDAP_FILTER_AND;
1242                 af.f_next = NULL;
1243                 af.f_and = &mf;
1244                 mf.f_choice = LDAP_FILTER_EQUALITY;
1245                 mf.f_ava = &eq;
1246                 mf.f_av_desc = slap_schema.si_ad_entryUUID;
1247                 mf.f_next = fop.ors_filter;
1248
1249                 fop.ors_filter = &af;
1250
1251                 cb.sc_response = playlog_cb;
1252                 fop.o_bd->bd_info = on->on_info->oi_orig;
1253
1254                 for ( i=ndel; i<num; i++ ) {
1255                         if ( uuids[i].bv_len == 0 ) continue;
1256
1257                         mf.f_av_value = uuids[i];
1258                         cb.sc_private = NULL;
1259                         fop.ors_slimit = 1;
1260                         rc = fop.o_bd->be_search( &fop, &frs );
1261
1262                         /* If entry was not found, add to delete list */
1263                         if ( !cb.sc_private ) {
1264                                 uuids[ndel++] = uuids[i];
1265                         }
1266                 }
1267                 fop.o_bd->bd_info = (BackendInfo *)on;
1268         }
1269         if ( ndel ) {
1270                 uuids[ndel].bv_val = NULL;
1271                 syncprov_sendinfo( op, rs, LDAP_TAG_SYNC_ID_SET, NULL, 0, uuids, 1 );
1272         }
1273 }
1274
1275 static int
1276 syncprov_op_response( Operation *op, SlapReply *rs )
1277 {
1278         opcookie *opc = op->o_callback->sc_private;
1279         slap_overinst *on = opc->son;
1280         syncprov_info_t         *si = on->on_bi.bi_private;
1281         syncmatches *sm;
1282
1283         if ( rs->sr_err == LDAP_SUCCESS )
1284         {
1285                 struct berval maxcsn = BER_BVNULL, curcsn = BER_BVNULL;
1286                 char cbuf[LDAP_LUTIL_CSNSTR_BUFSIZE];
1287
1288                 /* Update our context CSN */
1289                 cbuf[0] = '\0';
1290                 ldap_pvt_thread_mutex_lock( &si->si_csn_mutex );
1291                 slap_get_commit_csn( op, &maxcsn, &curcsn );
1292                 if ( !BER_BVISNULL( &maxcsn ) ) {
1293                         strcpy( cbuf, maxcsn.bv_val );
1294                         if ( ber_bvcmp( &maxcsn, &si->si_ctxcsn ) > 0 ) {
1295                                 strcpy( si->si_ctxcsnbuf, cbuf );
1296                                 si->si_ctxcsn.bv_len = maxcsn.bv_len;
1297                         }
1298                 }
1299
1300                 si->si_numops++;
1301                 if ( si->si_chkops || si->si_chktime ) {
1302                         int do_check=0;
1303                         if ( si->si_chkops && si->si_numops >= si->si_chkops ) {
1304                                 do_check = 1;
1305                                 si->si_numops = 0;
1306                         }
1307                         if ( si->si_chktime &&
1308                                 (op->o_time - si->si_chklast >= si->si_chktime )) {
1309                                 do_check = 1;
1310                                 si->si_chklast = op->o_time;
1311                         }
1312                         if ( do_check ) {
1313                                 syncprov_checkpoint( op, rs, on );
1314                         }
1315                 }
1316                 ldap_pvt_thread_mutex_unlock( &si->si_csn_mutex );
1317
1318                 opc->sctxcsn.bv_len = maxcsn.bv_len;
1319                 opc->sctxcsn.bv_val = cbuf;
1320
1321                 /* Handle any persistent searches */
1322                 if ( si->si_ops ) {
1323                         switch(op->o_tag) {
1324                         case LDAP_REQ_ADD:
1325                         case LDAP_REQ_MODIFY:
1326                         case LDAP_REQ_MODRDN:
1327                         case LDAP_REQ_EXTENDED:
1328                                 syncprov_matchops( op, opc, 0 );
1329                                 break;
1330                         case LDAP_REQ_DELETE:
1331                                 /* for each match in opc->smatches:
1332                                  *   send DELETE msg
1333                                  */
1334                                 ldap_pvt_thread_mutex_lock( &si->si_ops_mutex );
1335                                 for ( sm = opc->smatches; sm; sm=sm->sm_next ) {
1336                                         if ( sm->sm_op->s_op->o_abandon )
1337                                                 continue;
1338                                         syncprov_sendresp( op, opc, sm->sm_op, NULL,
1339                                                 LDAP_SYNC_DELETE, 1 );
1340                                 }
1341                                 ldap_pvt_thread_mutex_unlock( &si->si_ops_mutex );
1342                                 break;
1343                         }
1344                 }
1345
1346                 /* Add any log records */
1347                 if ( si->si_logs && op->o_tag != LDAP_REQ_ADD ) {
1348                         syncprov_add_slog( op, &curcsn );
1349                 }
1350
1351         }
1352         return SLAP_CB_CONTINUE;
1353 }
1354
1355 /* We don't use a subentry to store the context CSN any more.
1356  * We expose the current context CSN as an operational attribute
1357  * of the suffix entry.
1358  */
1359 static int
1360 syncprov_op_compare( Operation *op, SlapReply *rs )
1361 {
1362         slap_overinst           *on = (slap_overinst *)op->o_bd->bd_info;
1363         syncprov_info_t         *si = on->on_bi.bi_private;
1364         int rc = SLAP_CB_CONTINUE;
1365
1366         if ( dn_match( &op->o_req_ndn, op->o_bd->be_nsuffix ) &&
1367                 op->oq_compare.rs_ava->aa_desc == slap_schema.si_ad_contextCSN )
1368         {
1369                 Entry e = {0};
1370                 Attribute a = {0};
1371                 struct berval bv[2];
1372
1373                 e.e_name = op->o_bd->be_suffix[0];
1374                 e.e_nname = op->o_bd->be_nsuffix[0];
1375
1376                 BER_BVZERO( &bv[1] );
1377                 bv[0] = si->si_ctxcsn;
1378
1379                 a.a_desc = slap_schema.si_ad_contextCSN;
1380                 a.a_vals = bv;
1381                 a.a_nvals = a.a_vals;
1382
1383                 ldap_pvt_thread_mutex_lock( &si->si_csn_mutex );
1384
1385                 rs->sr_err = access_allowed( op, &e, op->oq_compare.rs_ava->aa_desc,
1386                         &op->oq_compare.rs_ava->aa_value, ACL_COMPARE, NULL );
1387                 if ( ! rs->sr_err ) {
1388                         rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
1389                         goto return_results;
1390                 }
1391
1392                 if ( get_assert( op ) &&
1393                         ( test_filter( op, &e, get_assertion( op ) ) != LDAP_COMPARE_TRUE ) )
1394                 {
1395                         rs->sr_err = LDAP_ASSERTION_FAILED;
1396                         goto return_results;
1397                 }
1398
1399
1400                 rs->sr_err = LDAP_COMPARE_FALSE;
1401
1402                 if ( value_find_ex( op->oq_compare.rs_ava->aa_desc,
1403                         SLAP_MR_ATTRIBUTE_VALUE_NORMALIZED_MATCH |
1404                                 SLAP_MR_ASSERTED_VALUE_NORMALIZED_MATCH,
1405                                 a.a_nvals, &op->oq_compare.rs_ava->aa_value, op->o_tmpmemctx ) == 0 )
1406                 {
1407                         rs->sr_err = LDAP_COMPARE_TRUE;
1408                 }
1409
1410 return_results:;
1411
1412                 ldap_pvt_thread_mutex_unlock( &si->si_csn_mutex );
1413
1414                 send_ldap_result( op, rs );
1415
1416                 if( rs->sr_err == LDAP_COMPARE_FALSE || rs->sr_err == LDAP_COMPARE_TRUE ) {
1417                         rs->sr_err = LDAP_SUCCESS;
1418                 }
1419                 rc = rs->sr_err;
1420         }
1421
1422         return rc;
1423 }
1424
1425 static int
1426 syncprov_op_mod( Operation *op, SlapReply *rs )
1427 {
1428         slap_overinst           *on = (slap_overinst *)op->o_bd->bd_info;
1429         syncprov_info_t         *si = on->on_bi.bi_private;
1430
1431         slap_callback *cb = op->o_tmpcalloc(1, sizeof(slap_callback)+
1432                 sizeof(opcookie) +
1433                 (si->si_ops ? sizeof(modinst) : 0 ),
1434                 op->o_tmpmemctx);
1435         opcookie *opc = (opcookie *)(cb+1);
1436         opc->son = on;
1437         cb->sc_response = syncprov_op_response;
1438         cb->sc_cleanup = syncprov_op_cleanup;
1439         cb->sc_private = opc;
1440         cb->sc_next = op->o_callback;
1441         op->o_callback = cb;
1442
1443         /* If there are active persistent searches, lock this operation.
1444          * See seqmod.c for the locking logic on its own.
1445          */
1446         if ( si->si_ops ) {
1447                 modtarget *mt, mtdummy;
1448                 modinst *mi;
1449
1450                 mi = (modinst *)(opc+1);
1451                 mi->mi_op = op;
1452
1453                 /* See if we're already modifying this entry... */
1454                 mtdummy.mt_op = op;
1455                 ldap_pvt_thread_mutex_lock( &si->si_mods_mutex );
1456                 mt = avl_find( si->si_mods, &mtdummy, sp_avl_cmp );
1457                 if ( mt ) {
1458                         ldap_pvt_thread_mutex_lock( &mt->mt_mutex );
1459                         ldap_pvt_thread_mutex_unlock( &si->si_mods_mutex );
1460                         mt->mt_tail->mi_next = mi;
1461                         mt->mt_tail = mi;
1462                         /* wait for this op to get to head of list */
1463                         while ( mt->mt_mods != mi ) {
1464                                 ldap_pvt_thread_mutex_unlock( &mt->mt_mutex );
1465                                 ldap_pvt_thread_yield();
1466                                 ldap_pvt_thread_mutex_lock( &mt->mt_mutex );
1467                         }
1468                         ldap_pvt_thread_mutex_unlock( &mt->mt_mutex );
1469                 } else {
1470                         /* Record that we're modifying this entry now */
1471                         mt = ch_malloc( sizeof(modtarget) );
1472                         mt->mt_mods = mi;
1473                         mt->mt_tail = mi;
1474                         mt->mt_op = mi->mi_op;
1475                         ldap_pvt_thread_mutex_init( &mt->mt_mutex );
1476                         avl_insert( &si->si_mods, mt, sp_avl_cmp, avl_dup_error );
1477                         ldap_pvt_thread_mutex_unlock( &si->si_mods_mutex );
1478                 }
1479         }
1480
1481         if (( si->si_ops || si->si_logs ) && op->o_tag != LDAP_REQ_ADD )
1482                 syncprov_matchops( op, opc, 1 );
1483                 
1484
1485         return SLAP_CB_CONTINUE;
1486 }
1487
1488 static int
1489 syncprov_op_extended( Operation *op, SlapReply *rs )
1490 {
1491         if ( exop_is_write( op ))
1492                 return syncprov_op_mod( op, rs );
1493
1494         return SLAP_CB_CONTINUE;
1495 }
1496
1497 typedef struct searchstate {
1498         slap_overinst *ss_on;
1499         syncops *ss_so;
1500         int ss_present;
1501 } searchstate;
1502
1503 static int
1504 syncprov_search_cleanup( Operation *op, SlapReply *rs )
1505 {
1506         if ( rs->sr_ctrls ) {
1507                 op->o_tmpfree( rs->sr_ctrls[0], op->o_tmpmemctx );
1508                 op->o_tmpfree( rs->sr_ctrls, op->o_tmpmemctx );
1509                 rs->sr_ctrls = NULL;
1510         }
1511         return 0;
1512 }
1513
1514 static void
1515 syncprov_detach_op( Operation *op, syncops *so )
1516 {
1517         Operation *op2;
1518         int i, alen = 0;
1519         size_t size;
1520         char *ptr;
1521         GroupAssertion *g1, *g2;
1522
1523         /* count the search attrs */
1524         for (i=0; op->ors_attrs && !BER_BVISNULL( &op->ors_attrs[i].an_name ); i++) {
1525                 alen += op->ors_attrs[i].an_name.bv_len + 1;
1526         }
1527         /* Make a new copy of the operation */
1528         size = sizeof(Operation) + sizeof(Opheader) +
1529                 (i ? ( (i+1) * sizeof(AttributeName) + alen) : 0) +
1530                 op->o_req_dn.bv_len + 1 +
1531                 op->o_req_ndn.bv_len + 1 +
1532                 op->o_ndn.bv_len + 1 +
1533                 so->s_filterstr.bv_len + 1;
1534         op2 = (Operation *)ch_calloc( 1, size );
1535         op2->o_hdr = (Opheader *)(op2+1);
1536
1537         /* Copy the fields we care about explicitly, leave the rest alone */
1538         *op2->o_hdr = *op->o_hdr;
1539         op2->o_tag = op->o_tag;
1540         op2->o_time = op->o_time;
1541         op2->o_bd = op->o_bd;
1542         op2->o_request = op->o_request;
1543
1544         if ( i ) {
1545                 op2->ors_attrs = (AttributeName *)(op2->o_hdr + 1);
1546                 ptr = (char *)(op2->ors_attrs+i+1);
1547                 for (i=0; !BER_BVISNULL( &op->ors_attrs[i].an_name ); i++) {
1548                         op2->ors_attrs[i] = op->ors_attrs[i];
1549                         op2->ors_attrs[i].an_name.bv_val = ptr;
1550                         ptr = lutil_strcopy( ptr, op->ors_attrs[i].an_name.bv_val ) + 1;
1551                 }
1552                 BER_BVZERO( &op2->ors_attrs[i].an_name );
1553         } else {
1554                 ptr = (char *)(op2->o_hdr + 1);
1555         }
1556         op2->o_authz = op->o_authz;
1557         op2->o_ndn.bv_val = ptr;
1558         ptr = lutil_strcopy(ptr, op->o_ndn.bv_val) + 1;
1559         op2->o_dn = op2->o_ndn;
1560         op2->o_req_dn.bv_len = op->o_req_dn.bv_len;
1561         op2->o_req_dn.bv_val = ptr;
1562         ptr = lutil_strcopy(ptr, op->o_req_dn.bv_val) + 1;
1563         op2->o_req_ndn.bv_len = op->o_req_ndn.bv_len;
1564         op2->o_req_ndn.bv_val = ptr;
1565         ptr = lutil_strcopy(ptr, op->o_req_ndn.bv_val) + 1;
1566         op2->ors_filterstr.bv_val = ptr;
1567         strcpy( ptr, so->s_filterstr.bv_val );
1568         op2->ors_filterstr.bv_len = so->s_filterstr.bv_len;
1569         op2->ors_filter = str2filter( ptr );
1570         so->s_op = op2;
1571
1572         /* Copy any cached group ACLs individually */
1573         op2->o_groups = NULL;
1574         for ( g1=op->o_groups; g1; g1=g1->ga_next ) {
1575                 g2 = ch_malloc( sizeof(GroupAssertion) + g1->ga_len );
1576                 *g2 = *g1;
1577                 strcpy( g2->ga_ndn, g1->ga_ndn );
1578                 g2->ga_next = op2->o_groups;
1579                 op2->o_groups = g2;
1580         }
1581
1582         /* Add op2 to conn so abandon will find us */
1583         ldap_pvt_thread_mutex_lock( &op->o_conn->c_mutex );
1584         op->o_conn->c_n_ops_executing++;
1585         op->o_conn->c_n_ops_completed--;
1586         LDAP_STAILQ_INSERT_TAIL( &op->o_conn->c_ops, op2, o_next );
1587         so->s_flags |= PS_IS_DETACHED;
1588         ldap_pvt_thread_mutex_unlock( &op->o_conn->c_mutex );
1589 }
1590
1591 static int
1592 syncprov_search_response( Operation *op, SlapReply *rs )
1593 {
1594         searchstate *ss = op->o_callback->sc_private;
1595         slap_overinst *on = ss->ss_on;
1596         syncprov_info_t         *si = on->on_bi.bi_private;
1597         sync_control *srs = op->o_controls[slap_cids.sc_LDAPsync];
1598
1599         if ( rs->sr_type == REP_SEARCH || rs->sr_type == REP_SEARCHREF ) {
1600                 int i;
1601                 /* If we got a referral without a referral object, there's
1602                  * something missing that we cannot replicate. Just ignore it.
1603                  * The consumer will abort because we didn't send the expected
1604                  * control.
1605                  */
1606                 if ( !rs->sr_entry ) {
1607                         assert( rs->sr_entry );
1608                         Debug( LDAP_DEBUG_ANY, "bogus referral in context\n",0,0,0 );
1609                         return SLAP_CB_CONTINUE;
1610                 }
1611                 if ( srs->sr_state.ctxcsn ) {
1612                         Attribute *a = attr_find( rs->sr_entry->e_attrs,
1613                                 slap_schema.si_ad_entryCSN );
1614                         
1615                         /* Don't send the ctx entry twice */
1616                         if ( a && bvmatch( &a->a_nvals[0], srs->sr_state.ctxcsn ) )
1617                                 return LDAP_SUCCESS;
1618                 }
1619                 rs->sr_ctrls = op->o_tmpalloc( sizeof(LDAPControl *)*2,
1620                         op->o_tmpmemctx );
1621                 rs->sr_ctrls[1] = NULL;
1622                 rs->sr_err = syncprov_state_ctrl( op, rs, rs->sr_entry,
1623                         LDAP_SYNC_ADD, rs->sr_ctrls, 0, 0, NULL );
1624         } else if ( rs->sr_type == REP_RESULT && rs->sr_err == LDAP_SUCCESS ) {
1625                 struct berval cookie;
1626
1627                 slap_compose_sync_cookie( op, &cookie,
1628                         &op->ors_filter->f_and->f_ava->aa_value,
1629                         srs->sr_state.sid, srs->sr_state.rid );
1630
1631                 /* Is this a regular refresh? */
1632                 if ( !ss->ss_so ) {
1633                         rs->sr_ctrls = op->o_tmpalloc( sizeof(LDAPControl *)*2,
1634                                 op->o_tmpmemctx );
1635                         rs->sr_ctrls[1] = NULL;
1636                         rs->sr_err = syncprov_done_ctrl( op, rs, rs->sr_ctrls,
1637                                 0, 1, &cookie, ss->ss_present ?  LDAP_SYNC_REFRESH_PRESENTS :
1638                                         LDAP_SYNC_REFRESH_DELETES );
1639                 } else {
1640                         int locked = 0;
1641                 /* It's RefreshAndPersist, transition to Persist phase */
1642                         syncprov_sendinfo( op, rs, ( ss->ss_present && rs->sr_nentries ) ?
1643                                 LDAP_TAG_SYNC_REFRESH_PRESENT : LDAP_TAG_SYNC_REFRESH_DELETE,
1644                                 &cookie, 1, NULL, 0 );
1645                         /* Flush any queued persist messages */
1646                         if ( ss->ss_so->s_res ) {
1647                                 syncres *sr, *srnext;
1648                                 Entry *e;
1649                                 opcookie opc;
1650
1651                                 opc.son = on;
1652                                 ldap_pvt_thread_mutex_lock( &ss->ss_so->s_mutex );
1653                                 locked = 1;
1654                                 for (sr = ss->ss_so->s_res; sr; sr=srnext) {
1655                                         int rc = LDAP_SUCCESS;
1656                                         srnext = sr->s_next;
1657                                         opc.sdn = sr->s_dn;
1658                                         opc.sndn = sr->s_ndn;
1659                                         opc.suuid = sr->s_uuid;
1660                                         opc.sctxcsn = sr->s_csn;
1661                                         opc.sreference = sr->s_isreference;
1662                                         e = NULL;
1663
1664                                         if ( sr->s_mode != LDAP_SYNC_DELETE ) {
1665                                                 op->o_bd->bd_info = (BackendInfo *)on->on_info;
1666                                                 rc = be_entry_get_rw( op, &opc.sndn, NULL, NULL, 0, &e );
1667                                                 op->o_bd->bd_info = (BackendInfo *)on;
1668                                         }
1669                                         if ( rc == LDAP_SUCCESS )
1670                                                 syncprov_sendresp( op, &opc, ss->ss_so, e,
1671                                                         sr->s_mode, 0 );
1672
1673                                         if ( e ) {
1674                                                 op->o_bd->bd_info = (BackendInfo *)on->on_info;
1675                                                 be_entry_release_rw( op, e, 0 );
1676                                                 op->o_bd->bd_info = (BackendInfo *)on;
1677                                         }
1678                                         ch_free( sr );
1679                                 }
1680                                 ss->ss_so->s_res = NULL;
1681                                 ss->ss_so->s_restail = NULL;
1682                         }
1683
1684                         /* Turn off the refreshing flag */
1685                         ss->ss_so->s_flags ^= PS_IS_REFRESHING;
1686                         if ( locked )
1687                                 ldap_pvt_thread_mutex_unlock( &ss->ss_so->s_mutex );
1688
1689                         /* Detach this Op from frontend control */
1690                         syncprov_detach_op( op, ss->ss_so );
1691
1692                         return LDAP_SUCCESS;
1693                 }
1694         }
1695
1696         return SLAP_CB_CONTINUE;
1697 }
1698
1699 static int
1700 syncprov_op_search( Operation *op, SlapReply *rs )
1701 {
1702         slap_overinst           *on = (slap_overinst *)op->o_bd->bd_info;
1703         syncprov_info_t         *si = (syncprov_info_t *)on->on_bi.bi_private;
1704         slap_callback   *cb;
1705         int gotstate = 0, nochange = 0, do_present = 1;
1706         Filter *fand, *fava;
1707         syncops *sop = NULL;
1708         searchstate *ss;
1709         sync_control *srs;
1710         struct berval ctxcsn;
1711         char csnbuf[LDAP_LUTIL_CSNSTR_BUFSIZE];
1712
1713         if ( !(op->o_sync_mode & SLAP_SYNC_REFRESH) ) return SLAP_CB_CONTINUE;
1714
1715         if ( op->ors_deref & LDAP_DEREF_SEARCHING ) {
1716                 send_ldap_error( op, rs, LDAP_PROTOCOL_ERROR, "illegal value for derefAliases" );
1717                 return rs->sr_err;
1718         }
1719
1720         srs = op->o_controls[slap_cids.sc_LDAPsync];
1721
1722         /* If this is a persistent search, set it up right away */
1723         if ( op->o_sync_mode & SLAP_SYNC_PERSIST ) {
1724                 syncops so = {0};
1725                 fbase_cookie fc;
1726                 opcookie opc;
1727                 slap_callback sc;
1728
1729                 fc.fss = &so;
1730                 fc.fbase = 0;
1731                 so.s_eid = NOID;
1732                 so.s_op = op;
1733                 so.s_flags = PS_IS_REFRESHING;
1734                 /* syncprov_findbase expects to be called as a callback... */
1735                 sc.sc_private = &opc;
1736                 opc.son = on;
1737                 cb = op->o_callback;
1738                 op->o_callback = &sc;
1739                 rs->sr_err = syncprov_findbase( op, &fc );
1740                 op->o_callback = cb;
1741
1742                 if ( rs->sr_err != LDAP_SUCCESS ) {
1743                         send_ldap_result( op, rs );
1744                         return rs->sr_err;
1745                 }
1746                 sop = ch_malloc( sizeof( syncops ));
1747                 *sop = so;
1748                 ldap_pvt_thread_mutex_init( &sop->s_mutex );
1749                 sop->s_sid = srs->sr_state.sid;
1750                 sop->s_rid = srs->sr_state.rid;
1751                 sop->s_inuse = 1;
1752
1753                 ldap_pvt_thread_mutex_lock( &si->si_ops_mutex );
1754                 sop->s_next = si->si_ops;
1755                 si->si_ops = sop;
1756                 ldap_pvt_thread_mutex_unlock( &si->si_ops_mutex );
1757         }
1758
1759         /* snapshot the ctxcsn */
1760         ldap_pvt_thread_mutex_lock( &si->si_csn_mutex );
1761         strcpy( csnbuf, si->si_ctxcsnbuf );
1762         ctxcsn.bv_len = si->si_ctxcsn.bv_len;
1763         ldap_pvt_thread_mutex_unlock( &si->si_csn_mutex );
1764         ctxcsn.bv_val = csnbuf;
1765         
1766         /* If we have a cookie, handle the PRESENT lookups */
1767         if ( srs->sr_state.ctxcsn ) {
1768                 sessionlog *sl;
1769
1770                 /* The cookie was validated when it was parsed, just use it */
1771
1772                 /* If just Refreshing and nothing has changed, shortcut it */
1773                 if ( bvmatch( srs->sr_state.ctxcsn, &ctxcsn )) {
1774                         nochange = 1;
1775                         if ( !(op->o_sync_mode & SLAP_SYNC_PERSIST) ) {
1776                                 LDAPControl     *ctrls[2];
1777
1778                                 ctrls[0] = NULL;
1779                                 ctrls[1] = NULL;
1780                                 syncprov_done_ctrl( op, rs, ctrls, 0, 0,
1781                                         NULL, LDAP_SYNC_REFRESH_DELETES );
1782                                 rs->sr_ctrls = ctrls;
1783                                 rs->sr_err = LDAP_SUCCESS;
1784                                 send_ldap_result( op, rs );
1785                                 rs->sr_ctrls = NULL;
1786                                 return rs->sr_err;
1787                         }
1788                         goto shortcut;
1789                 }
1790                 /* Do we have a sessionlog for this search? */
1791                 for ( sl=si->si_logs; sl; sl=sl->sl_next )
1792                         if ( sl->sl_sid == srs->sr_state.sid ) break;
1793                 if ( sl ) {
1794                         ldap_pvt_thread_mutex_lock( &sl->sl_mutex );
1795                         if ( ber_bvcmp( srs->sr_state.ctxcsn, &sl->sl_mincsn ) >= 0 ) {
1796                                 do_present = 0;
1797                                 /* mutex is unlocked in playlog */
1798                                 syncprov_playlog( op, rs, sl, srs->sr_state.ctxcsn, &ctxcsn );
1799                         } else {
1800                                 ldap_pvt_thread_mutex_unlock( &sl->sl_mutex );
1801                         }
1802                 }
1803                 /* Is the CSN still present in the database? */
1804                 if ( syncprov_findcsn( op, FIND_CSN ) != LDAP_SUCCESS ) {
1805                         /* No, so a reload is required */
1806 #if 0           /* the consumer doesn't seem to send this hint */
1807                         if ( op->o_sync_rhint == 0 ) {
1808                                 send_ldap_error( op, rs, LDAP_SYNC_REFRESH_REQUIRED, "sync cookie is stale" );
1809                                 return rs->sr_err;
1810                         }
1811 #endif
1812                 } else {
1813                         gotstate = 1;
1814                         /* If changed and doing Present lookup, send Present UUIDs */
1815                         if ( do_present && syncprov_findcsn( op, FIND_PRESENT ) !=
1816                                 LDAP_SUCCESS ) {
1817                                 send_ldap_result( op, rs );
1818                                 return rs->sr_err;
1819                         }
1820                 }
1821         }
1822
1823 shortcut:
1824         /* Append CSN range to search filter, save original filter
1825          * for persistent search evaluation
1826          */
1827         if ( sop ) {
1828                 sop->s_filterstr= op->ors_filterstr;
1829         }
1830
1831         fand = op->o_tmpalloc( sizeof(Filter), op->o_tmpmemctx );
1832         fand->f_choice = LDAP_FILTER_AND;
1833         fand->f_next = NULL;
1834         fava = op->o_tmpalloc( sizeof(Filter), op->o_tmpmemctx );
1835         fava->f_choice = LDAP_FILTER_LE;
1836         fava->f_ava = op->o_tmpalloc( sizeof(AttributeAssertion), op->o_tmpmemctx );
1837         fava->f_ava->aa_desc = slap_schema.si_ad_entryCSN;
1838         ber_dupbv_x( &fava->f_ava->aa_value, &ctxcsn, op->o_tmpmemctx );
1839         fand->f_and = fava;
1840         if ( gotstate ) {
1841                 fava->f_next = op->o_tmpalloc( sizeof(Filter), op->o_tmpmemctx );
1842                 fava = fava->f_next;
1843                 fava->f_choice = LDAP_FILTER_GE;
1844                 fava->f_ava = op->o_tmpalloc( sizeof(AttributeAssertion), op->o_tmpmemctx );
1845                 fava->f_ava->aa_desc = slap_schema.si_ad_entryCSN;
1846                 ber_dupbv_x( &fava->f_ava->aa_value, srs->sr_state.ctxcsn, op->o_tmpmemctx );
1847         }
1848         fava->f_next = op->ors_filter;
1849         op->ors_filter = fand;
1850         filter2bv_x( op, op->ors_filter, &op->ors_filterstr );
1851
1852         /* Let our callback add needed info to returned entries */
1853         cb = op->o_tmpcalloc(1, sizeof(slap_callback)+sizeof(searchstate), op->o_tmpmemctx);
1854         ss = (searchstate *)(cb+1);
1855         ss->ss_on = on;
1856         ss->ss_so = sop;
1857         ss->ss_present = do_present;
1858         cb->sc_response = syncprov_search_response;
1859         cb->sc_cleanup = syncprov_search_cleanup;
1860         cb->sc_private = ss;
1861         cb->sc_next = op->o_callback;
1862         op->o_callback = cb;
1863
1864 #if 0   /* I don't think we need to shortcircuit back-bdb any more */
1865         op->o_sync_mode &= SLAP_CONTROL_MASK;
1866 #endif
1867
1868         /* If this is a persistent search and no changes were reported during
1869          * the refresh phase, just invoke the response callback to transition
1870          * us into persist phase
1871          */
1872         if ( nochange ) {
1873                 rs->sr_err = LDAP_SUCCESS;
1874                 rs->sr_nentries = 0;
1875                 send_ldap_result( op, rs );
1876                 return rs->sr_err;
1877         }
1878         return SLAP_CB_CONTINUE;
1879 }
1880
1881 static int
1882 syncprov_operational(
1883         Operation *op,
1884         SlapReply *rs )
1885 {
1886         slap_overinst           *on = (slap_overinst *)op->o_bd->bd_info;
1887         syncprov_info_t         *si = (syncprov_info_t *)on->on_bi.bi_private;
1888
1889         if ( rs->sr_entry &&
1890                 dn_match( &rs->sr_entry->e_nname, op->o_bd->be_nsuffix )) {
1891
1892                 if ( SLAP_OPATTRS( rs->sr_attr_flags ) ||
1893                         ad_inlist( slap_schema.si_ad_contextCSN, rs->sr_attrs )) {
1894                         Attribute *a, **ap = NULL;
1895
1896                         for ( a=rs->sr_entry->e_attrs; a; a=a->a_next ) {
1897                                 if ( a->a_desc == slap_schema.si_ad_contextCSN )
1898                                         break;
1899                         }
1900
1901                         if ( !a ) {
1902                                 for ( ap = &rs->sr_operational_attrs; *ap; ap=&(*ap)->a_next );
1903
1904                                 a = ch_malloc( sizeof(Attribute));
1905                                 a->a_desc = slap_schema.si_ad_contextCSN;
1906                                 a->a_vals = ch_malloc( 2 * sizeof(struct berval));
1907                                 a->a_vals[1].bv_val = NULL;
1908                                 a->a_nvals = a->a_vals;
1909                                 a->a_next = NULL;
1910                                 a->a_flags = 0;
1911                                 *ap = a;
1912                         }
1913
1914                         ldap_pvt_thread_mutex_lock( &si->si_csn_mutex );
1915                         if ( !ap ) {
1916                                 strcpy( a->a_vals[0].bv_val, si->si_ctxcsnbuf );
1917                         } else {
1918                                 ber_dupbv( &a->a_vals[0], &si->si_ctxcsn );
1919                         }
1920                         ldap_pvt_thread_mutex_unlock( &si->si_csn_mutex );
1921                 }
1922         }
1923         return SLAP_CB_CONTINUE;
1924 }
1925
1926 static int
1927 syncprov_db_config(
1928         BackendDB       *be,
1929         const char      *fname,
1930         int             lineno,
1931         int             argc,
1932         char    **argv
1933 )
1934 {
1935         slap_overinst           *on = (slap_overinst *)be->bd_info;
1936         syncprov_info_t         *si = (syncprov_info_t *)on->on_bi.bi_private;
1937
1938         if ( strcasecmp( argv[ 0 ], "syncprov-checkpoint" ) == 0 ) {
1939                 if ( argc != 3 ) {
1940                         fprintf( stderr, "%s: line %d: wrong number of arguments in "
1941                                 "\"syncprov-checkpoint <ops> <minutes>\"\n", fname, lineno );
1942                         return -1;
1943                 }
1944                 si->si_chkops = atoi( argv[1] );
1945                 si->si_chktime = atoi( argv[2] ) * 60;
1946                 return 0;
1947
1948         } else if ( strcasecmp( argv[0], "syncprov-sessionlog" ) == 0 ) {
1949                 sessionlog *sl;
1950                 int sid, size;
1951                 if ( argc != 3 ) {
1952                         fprintf( stderr, "%s: line %d: wrong number of arguments in "
1953                                 "\"syncprov-sessionlog <sid> <size>\"\n", fname, lineno );
1954                         return -1;
1955                 }
1956                 sid = atoi( argv[1] );
1957                 if ( sid < 0 || sid > 999 ) {
1958                         fprintf( stderr,
1959                                 "%s: line %d: session log id %d is out of range [0..999]\n",
1960                                 fname, lineno, sid );
1961                         return -1;
1962                 }
1963                 size = atoi( argv[2] );
1964                 if ( size < 0 ) {
1965                         fprintf( stderr,
1966                                 "%s: line %d: session log size %d is negative\n",
1967                                 fname, lineno, size );
1968                         return -1;
1969                 }
1970                 for ( sl = si->si_logs; sl; sl=sl->sl_next ) {
1971                         if ( sl->sl_sid == sid ) {
1972                                 sl->sl_size = size;
1973                                 break;
1974                         }
1975                 }
1976                 if ( !sl ) {
1977                         sl = ch_malloc( sizeof( sessionlog ) + LDAP_LUTIL_CSNSTR_BUFSIZE );
1978                         sl->sl_mincsn.bv_val = (char *)(sl+1);
1979                         sl->sl_mincsn.bv_len = 0;
1980                         sl->sl_sid = sid;
1981                         sl->sl_size = size;
1982                         sl->sl_num = 0;
1983                         sl->sl_head = sl->sl_tail = NULL;
1984                         sl->sl_next = si->si_logs;
1985                         ldap_pvt_thread_mutex_init( &sl->sl_mutex );
1986                         si->si_logs = sl;
1987                 }
1988                 return 0;
1989         }
1990
1991         return SLAP_CONF_UNKNOWN;
1992 }
1993
1994 /* Cheating - we have no thread pool context for these functions,
1995  * so make one.
1996  */
1997 typedef struct thread_keys {
1998         void *key;
1999         void *data;
2000         ldap_pvt_thread_pool_keyfree_t *xfree;
2001 } thread_keys;
2002
2003 #define MAXKEYS 32
2004 /* A fake thread context */
2005 static thread_keys thrctx[MAXKEYS];
2006
2007 /* Read any existing contextCSN from the underlying db.
2008  * Then search for any entries newer than that. If no value exists,
2009  * just generate it. Cache whatever result.
2010  */
2011 static int
2012 syncprov_db_open(
2013     BackendDB *be
2014 )
2015 {
2016         slap_overinst   *on = (slap_overinst *) be->bd_info;
2017         syncprov_info_t *si = (syncprov_info_t *)on->on_bi.bi_private;
2018
2019         Connection conn;
2020         char opbuf[OPERATION_BUFFER_SIZE];
2021         char ctxcsnbuf[LDAP_LUTIL_CSNSTR_BUFSIZE];
2022         Operation *op = (Operation *)opbuf;
2023         Entry *e;
2024         Attribute *a;
2025         int rc;
2026
2027         connection_fake_init( &conn, op, thrctx );
2028         op->o_bd = be;
2029         op->o_dn = be->be_rootdn;
2030         op->o_ndn = be->be_rootndn;
2031
2032         ctxcsnbuf[0] = '\0';
2033
2034         op->o_bd->bd_info = on->on_info->oi_orig;
2035         rc = be_entry_get_rw( op, be->be_nsuffix, NULL,
2036                 slap_schema.si_ad_contextCSN, 0, &e );
2037
2038         if ( e ) {
2039                 a = attr_find( e->e_attrs, slap_schema.si_ad_contextCSN );
2040                 if ( a ) {
2041                         si->si_ctxcsn.bv_len = a->a_nvals[0].bv_len;
2042                         if ( si->si_ctxcsn.bv_len >= sizeof(si->si_ctxcsnbuf ))
2043                                 si->si_ctxcsn.bv_len = sizeof(si->si_ctxcsnbuf)-1;
2044                         strncpy( si->si_ctxcsnbuf, a->a_nvals[0].bv_val,
2045                                 si->si_ctxcsn.bv_len );
2046                         si->si_ctxcsnbuf[si->si_ctxcsn.bv_len] = '\0';
2047                         strcpy( ctxcsnbuf, si->si_ctxcsnbuf );
2048                 }
2049                 be_entry_release_rw( op, e, 0 );
2050                 op->o_bd->bd_info = (BackendInfo *)on;
2051                 op->o_req_dn = be->be_suffix[0];
2052                 op->o_req_ndn = be->be_nsuffix[0];
2053                 op->ors_scope = LDAP_SCOPE_SUBTREE;
2054                 syncprov_findcsn( op, FIND_MAXCSN );
2055         }
2056
2057         if ( BER_BVISEMPTY( &si->si_ctxcsn ) ) {
2058                 slap_get_csn( op, si->si_ctxcsnbuf, sizeof(si->si_ctxcsnbuf),
2059                                 &si->si_ctxcsn, 0 );
2060         }
2061
2062         /* If our ctxcsn is different from what was read from the root
2063          * entry, write the new value out.
2064          */
2065         if ( strcmp( si->si_ctxcsnbuf, ctxcsnbuf )) {
2066                 SlapReply rs = {REP_RESULT};
2067                 syncprov_checkpoint( op, &rs, on );
2068         }
2069
2070         op->o_bd->bd_info = (BackendInfo *)on;
2071         return 0;
2072 }
2073
2074 /* Write the current contextCSN into the underlying db.
2075  */
2076 static int
2077 syncprov_db_close(
2078     BackendDB *be
2079 )
2080 {
2081     slap_overinst   *on = (slap_overinst *) be->bd_info;
2082     syncprov_info_t *si = (syncprov_info_t *)on->on_bi.bi_private;
2083         int i;
2084
2085         if ( si->si_numops ) {
2086                 Connection conn;
2087                 char opbuf[OPERATION_BUFFER_SIZE];
2088                 Operation *op = (Operation *)opbuf;
2089                 SlapReply rs = {REP_RESULT};
2090
2091                 connection_fake_init( &conn, op, thrctx );
2092                 op->o_bd = be;
2093                 op->o_dn = be->be_rootdn;
2094                 op->o_ndn = be->be_rootndn;
2095                 syncprov_checkpoint( op, &rs, on );
2096         }
2097         for ( i=0; thrctx[i].key; i++) {
2098                 if ( thrctx[i].xfree )
2099                         thrctx[i].xfree( thrctx[i].key, thrctx[i].data );
2100                 thrctx[i].key = NULL;
2101         }
2102
2103     return 0;
2104 }
2105
2106 static int
2107 syncprov_db_init(
2108         BackendDB *be
2109 )
2110 {
2111         slap_overinst   *on = (slap_overinst *)be->bd_info;
2112         syncprov_info_t *si;
2113
2114         si = ch_calloc(1, sizeof(syncprov_info_t));
2115         on->on_bi.bi_private = si;
2116         ldap_pvt_thread_mutex_init( &si->si_csn_mutex );
2117         ldap_pvt_thread_mutex_init( &si->si_ops_mutex );
2118         ldap_pvt_thread_mutex_init( &si->si_mods_mutex );
2119         si->si_ctxcsn.bv_val = si->si_ctxcsnbuf;
2120
2121         csn_anlist[0].an_desc = slap_schema.si_ad_entryCSN;
2122         csn_anlist[0].an_name = slap_schema.si_ad_entryCSN->ad_cname;
2123
2124         uuid_anlist[0].an_desc = slap_schema.si_ad_entryUUID;
2125         uuid_anlist[0].an_name = slap_schema.si_ad_entryUUID->ad_cname;
2126
2127         return 0;
2128 }
2129
2130 static int
2131 syncprov_db_destroy(
2132         BackendDB *be
2133 )
2134 {
2135         slap_overinst   *on = (slap_overinst *)be->bd_info;
2136         syncprov_info_t *si = (syncprov_info_t *)on->on_bi.bi_private;
2137
2138         if ( si ) {
2139                 ldap_pvt_thread_mutex_destroy( &si->si_mods_mutex );
2140                 ldap_pvt_thread_mutex_destroy( &si->si_ops_mutex );
2141                 ldap_pvt_thread_mutex_destroy( &si->si_csn_mutex );
2142                 ch_free( si );
2143         }
2144
2145         return 0;
2146 }
2147
2148 static int syncprov_parseCtrl (
2149         Operation *op,
2150         SlapReply *rs,
2151         LDAPControl *ctrl )
2152 {
2153         ber_tag_t tag;
2154         BerElement *ber;
2155         ber_int_t mode;
2156         ber_len_t len;
2157         struct berval cookie = BER_BVNULL;
2158         sync_control *sr;
2159         int rhint = 0;
2160
2161         if ( op->o_sync != SLAP_CONTROL_NONE ) {
2162                 rs->sr_text = "Sync control specified multiple times";
2163                 return LDAP_PROTOCOL_ERROR;
2164         }
2165
2166         if ( op->o_pagedresults != SLAP_CONTROL_NONE ) {
2167                 rs->sr_text = "Sync control specified with pagedResults control";
2168                 return LDAP_PROTOCOL_ERROR;
2169         }
2170
2171         if ( BER_BVISEMPTY( &ctrl->ldctl_value ) ) {
2172                 rs->sr_text = "Sync control value is empty (or absent)";
2173                 return LDAP_PROTOCOL_ERROR;
2174         }
2175
2176         /* Parse the control value
2177          *      syncRequestValue ::= SEQUENCE {
2178          *              mode   ENUMERATED {
2179          *                      -- 0 unused
2180          *                      refreshOnly             (1),
2181          *                      -- 2 reserved
2182          *                      refreshAndPersist       (3)
2183          *              },
2184          *              cookie  syncCookie OPTIONAL
2185          *      }
2186          */
2187
2188         ber = ber_init( &ctrl->ldctl_value );
2189         if( ber == NULL ) {
2190                 rs->sr_text = "internal error";
2191                 return LDAP_OTHER;
2192         }
2193
2194         if ( (tag = ber_scanf( ber, "{i" /*}*/, &mode )) == LBER_ERROR ) {
2195                 rs->sr_text = "Sync control : mode decoding error";
2196                 return LDAP_PROTOCOL_ERROR;
2197         }
2198
2199         switch( mode ) {
2200         case LDAP_SYNC_REFRESH_ONLY:
2201                 mode = SLAP_SYNC_REFRESH;
2202                 break;
2203         case LDAP_SYNC_REFRESH_AND_PERSIST:
2204                 mode = SLAP_SYNC_REFRESH_AND_PERSIST;
2205                 break;
2206         default:
2207                 rs->sr_text = "Sync control : unknown update mode";
2208                 return LDAP_PROTOCOL_ERROR;
2209         }
2210
2211         tag = ber_peek_tag( ber, &len );
2212
2213         if ( tag == LDAP_TAG_SYNC_COOKIE ) {
2214                 if (( ber_scanf( ber, /*{*/ "o", &cookie )) == LBER_ERROR ) {
2215                         rs->sr_text = "Sync control : cookie decoding error";
2216                         return LDAP_PROTOCOL_ERROR;
2217                 }
2218         }
2219         if ( tag == LDAP_TAG_RELOAD_HINT ) {
2220                 if (( ber_scanf( ber, /*{*/ "b", &rhint )) == LBER_ERROR ) {
2221                         rs->sr_text = "Sync control : rhint decoding error";
2222                         return LDAP_PROTOCOL_ERROR;
2223                 }
2224         }
2225         if (( ber_scanf( ber, /*{*/ "}")) == LBER_ERROR ) {
2226                         rs->sr_text = "Sync control : decoding error";
2227                         return LDAP_PROTOCOL_ERROR;
2228         }
2229         sr = op->o_tmpcalloc( 1, sizeof(struct sync_control), op->o_tmpmemctx );
2230         sr->sr_rhint = rhint;
2231         if (!BER_BVISNULL(&cookie)) {
2232                 ber_bvarray_add( &sr->sr_state.octet_str, &cookie );
2233                 slap_parse_sync_cookie( &sr->sr_state );
2234         }
2235
2236         op->o_controls[slap_cids.sc_LDAPsync] = sr;
2237
2238         (void) ber_free( ber, 1 );
2239
2240         op->o_sync = ctrl->ldctl_iscritical
2241                 ? SLAP_CONTROL_CRITICAL
2242                 : SLAP_CONTROL_NONCRITICAL;
2243
2244         op->o_sync_mode |= mode;        /* o_sync_mode shares o_sync */
2245
2246         return LDAP_SUCCESS;
2247 }
2248
2249 /* This overlay is set up for dynamic loading via moduleload. For static
2250  * configuration, you'll need to arrange for the slap_overinst to be
2251  * initialized and registered by some other function inside slapd.
2252  */
2253
2254 static slap_overinst            syncprov;
2255
2256 int
2257 syncprov_init()
2258 {
2259         int rc;
2260
2261         rc = register_supported_control( LDAP_CONTROL_SYNC,
2262                 SLAP_CTRL_HIDE|SLAP_CTRL_SEARCH, NULL,
2263                 syncprov_parseCtrl, &slap_cids.sc_LDAPsync );
2264         if ( rc != LDAP_SUCCESS ) {
2265                 fprintf( stderr, "Failed to register control %d\n", rc );
2266                 return rc;
2267         }
2268
2269         syncprov.on_bi.bi_type = "syncprov";
2270         syncprov.on_bi.bi_db_init = syncprov_db_init;
2271         syncprov.on_bi.bi_db_config = syncprov_db_config;
2272         syncprov.on_bi.bi_db_destroy = syncprov_db_destroy;
2273         syncprov.on_bi.bi_db_open = syncprov_db_open;
2274         syncprov.on_bi.bi_db_close = syncprov_db_close;
2275
2276         syncprov.on_bi.bi_op_abandon = syncprov_op_abandon;
2277         syncprov.on_bi.bi_op_cancel = syncprov_op_abandon;
2278
2279         syncprov.on_bi.bi_op_add = syncprov_op_mod;
2280         syncprov.on_bi.bi_op_compare = syncprov_op_compare;
2281         syncprov.on_bi.bi_op_delete = syncprov_op_mod;
2282         syncprov.on_bi.bi_op_modify = syncprov_op_mod;
2283         syncprov.on_bi.bi_op_modrdn = syncprov_op_mod;
2284         syncprov.on_bi.bi_op_search = syncprov_op_search;
2285         syncprov.on_bi.bi_extended = syncprov_op_extended;
2286         syncprov.on_bi.bi_operational = syncprov_operational;
2287
2288         return overlay_register( &syncprov );
2289 }
2290
2291 #if SLAPD_OVER_SYNCPROV == SLAPD_MOD_DYNAMIC
2292 int
2293 init_module( int argc, char *argv[] )
2294 {
2295         return syncprov_init();
2296 }
2297 #endif /* SLAPD_OVER_SYNCPROV == SLAPD_MOD_DYNAMIC */
2298
2299 #endif /* defined(SLAPD_OVER_SYNCPROV) */