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