]> git.sur5r.net Git - openldap/blob - servers/slapd/overlays/syncprov.c
Fix modify deadlock
[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         if ( mt ) {
1084                 modinst *mi = mt->mt_mods;
1085
1086                 /* If there are more, promote the next one */
1087                 ldap_pvt_thread_mutex_lock( &mt->mt_mutex );
1088                 if ( mi->mi_next ) {
1089                         mt->mt_mods = mi->mi_next;
1090                         mt->mt_op = mt->mt_mods->mi_op;
1091                         ldap_pvt_thread_mutex_unlock( &mt->mt_mutex );
1092                 } else {
1093                         avl_delete( &si->si_mods, mt, sp_avl_cmp );
1094                         ldap_pvt_thread_mutex_unlock( &mt->mt_mutex );
1095                         ldap_pvt_thread_mutex_destroy( &mt->mt_mutex );
1096                         ch_free( mt );
1097                 }
1098         }
1099         ldap_pvt_thread_mutex_unlock( &si->si_mods_mutex );
1100         if ( !BER_BVISNULL( &opc->suuid ))
1101                 op->o_tmpfree( opc->suuid.bv_val, op->o_tmpmemctx );
1102         if ( !BER_BVISNULL( &opc->sndn ))
1103                 op->o_tmpfree( opc->sndn.bv_val, op->o_tmpmemctx );
1104         if ( !BER_BVISNULL( &opc->sdn ))
1105                 op->o_tmpfree( opc->sdn.bv_val, op->o_tmpmemctx );
1106         op->o_callback = cb->sc_next;
1107         op->o_tmpfree(cb, op->o_tmpmemctx);
1108
1109         return 0;
1110 }
1111
1112 static void
1113 syncprov_checkpoint( Operation *op, SlapReply *rs, slap_overinst *on )
1114 {
1115         syncprov_info_t         *si = on->on_bi.bi_private;
1116         Modifications mod;
1117         Operation opm;
1118         struct berval bv[2];
1119         slap_callback cb = {0};
1120         int manage = get_manageDSAit(op);
1121
1122         mod.sml_values = bv;
1123         bv[1].bv_val = NULL;
1124         bv[0] = si->si_ctxcsn;
1125         mod.sml_nvalues = NULL;
1126         mod.sml_desc = slap_schema.si_ad_contextCSN;
1127         mod.sml_op = LDAP_MOD_REPLACE;
1128         mod.sml_next = NULL;
1129
1130         cb.sc_response = slap_null_cb;
1131         opm = *op;
1132         opm.o_tag = LDAP_REQ_MODIFY;
1133         opm.o_callback = &cb;
1134         opm.orm_modlist = &mod;
1135         opm.o_req_dn = op->o_bd->be_suffix[0];
1136         opm.o_req_ndn = op->o_bd->be_nsuffix[0];
1137         opm.o_bd->bd_info = on->on_info->oi_orig;
1138         opm.o_managedsait = SLAP_CONTROL_NONCRITICAL;
1139         opm.o_bd->be_modify( &opm, rs );
1140         opm.o_managedsait = manage;
1141 }
1142
1143 static void
1144 syncprov_add_slog( Operation *op, struct berval *csn )
1145 {
1146         opcookie *opc = op->o_callback->sc_private;
1147         slap_overinst *on = opc->son;
1148         syncprov_info_t         *si = on->on_bi.bi_private;
1149         sessionlog *sl;
1150         slog_entry *se;
1151
1152         sl = si->si_logs;
1153         {
1154                 /* Allocate a record. UUIDs are not NUL-terminated. */
1155                 se = ch_malloc( sizeof( slog_entry ) + opc->suuid.bv_len + 
1156                         csn->bv_len + 1 );
1157                 se->se_next = NULL;
1158                 se->se_tag = op->o_tag;
1159
1160                 se->se_uuid.bv_val = (char *)(se+1);
1161                 se->se_csn.bv_val = se->se_uuid.bv_val + opc->suuid.bv_len + 1;
1162                 AC_MEMCPY( se->se_uuid.bv_val, opc->suuid.bv_val, opc->suuid.bv_len );
1163                 se->se_uuid.bv_len = opc->suuid.bv_len;
1164
1165                 AC_MEMCPY( se->se_csn.bv_val, csn->bv_val, csn->bv_len );
1166                 se->se_csn.bv_val[csn->bv_len] = '\0';
1167                 se->se_csn.bv_len = csn->bv_len;
1168
1169                 ldap_pvt_thread_mutex_lock( &sl->sl_mutex );
1170                 if ( sl->sl_head ) {
1171                         sl->sl_tail->se_next = se;
1172                 } else {
1173                         sl->sl_head = se;
1174                 }
1175                 sl->sl_tail = se;
1176                 sl->sl_num++;
1177                 while ( sl->sl_num > sl->sl_size ) {
1178                         se = sl->sl_head;
1179                         sl->sl_head = se->se_next;
1180                         strcpy( sl->sl_mincsn.bv_val, se->se_csn.bv_val );
1181                         sl->sl_mincsn.bv_len = se->se_csn.bv_len;
1182                         ch_free( se );
1183                         sl->sl_num--;
1184                         if ( !sl->sl_head ) {
1185                                 sl->sl_tail = NULL;
1186                         }
1187                 }
1188                 ldap_pvt_thread_mutex_unlock( &sl->sl_mutex );
1189         }
1190 }
1191
1192 /* Just set a flag if we found the matching entry */
1193 static int
1194 playlog_cb( Operation *op, SlapReply *rs )
1195 {
1196         if ( rs->sr_type == REP_SEARCH ) {
1197                 op->o_callback->sc_private = (void *)1;
1198         }
1199         return rs->sr_err;
1200 }
1201
1202 /* enter with sl->sl_mutex locked, release before returning */
1203 static void
1204 syncprov_playlog( Operation *op, SlapReply *rs, sessionlog *sl,
1205         struct berval *oldcsn, struct berval *ctxcsn )
1206 {
1207         slap_overinst           *on = (slap_overinst *)op->o_bd->bd_info;
1208         syncprov_info_t         *si = on->on_bi.bi_private;
1209         slog_entry *se;
1210         int i, j, ndel, num, nmods, mmods;
1211         BerVarray uuids;
1212
1213         if ( !sl->sl_num ) {
1214                 ldap_pvt_thread_mutex_unlock( &sl->sl_mutex );
1215                 return;
1216         }
1217
1218         num = sl->sl_num;
1219         i = 0;
1220         nmods = 0;
1221
1222         uuids = op->o_tmpalloc( (num+1) * sizeof( struct berval ) +
1223                 num * UUID_LEN, op->o_tmpmemctx );
1224
1225         uuids[0].bv_val = (char *)(uuids + num + 1);
1226
1227         /* Make a copy of the relevant UUIDs. Put the Deletes up front
1228          * and everything else at the end. Do this first so we can
1229          * unlock the list mutex.
1230          */
1231         for ( se=sl->sl_head; se; se=se->se_next ) {
1232                 if ( ber_bvcmp( &se->se_csn, oldcsn ) < 0 ) continue;
1233                 if ( ber_bvcmp( &se->se_csn, ctxcsn ) > 0 ) break;
1234                 if ( se->se_tag == LDAP_REQ_DELETE ) {
1235                         j = i;
1236                         i++;
1237                 } else {
1238                         nmods++;
1239                         j = num - nmods;
1240                 }
1241                 uuids[j].bv_val = uuids[0].bv_val + (j * UUID_LEN);
1242                 AC_MEMCPY(uuids[j].bv_val, se->se_uuid.bv_val, UUID_LEN);
1243                 uuids[j].bv_len = UUID_LEN;
1244         }
1245         ldap_pvt_thread_mutex_unlock( &sl->sl_mutex );
1246
1247         ndel = i;
1248
1249         /* Zero out unused slots */
1250         for ( i=ndel; i < num - nmods; i++ )
1251                 uuids[i].bv_len = 0;
1252
1253         /* Mods must be validated to see if they belong in this delete set.
1254          */
1255
1256         mmods = nmods;
1257         /* Strip any duplicates */
1258         for ( i=0; i<nmods; i++ ) {
1259                 for ( j=0; j<ndel; j++ ) {
1260                         if ( bvmatch( &uuids[j], &uuids[num - 1 - i] )) {
1261                                 uuids[num - 1 - i].bv_len = 0;
1262                                 mmods --;
1263                                 break;
1264                         }
1265                 }
1266                 if ( uuids[num - 1 - i].bv_len == 0 ) continue;
1267                 for ( j=0; j<i; j++ ) {
1268                         if ( bvmatch( &uuids[num - 1 - j], &uuids[num - 1 - i] )) {
1269                                 uuids[num - 1 - i].bv_len = 0;
1270                                 mmods --;
1271                                 break;
1272                         }
1273                 }
1274         }
1275
1276         if ( mmods ) {
1277                 Operation fop;
1278                 SlapReply frs = { REP_RESULT };
1279                 int rc;
1280                 Filter mf, af;
1281 #ifdef LDAP_COMP_MATCH
1282                 AttributeAssertion eq = { NULL, BER_BVNULL, NULL };
1283 #else
1284                 AttributeAssertion eq;
1285 #endif
1286                 slap_callback cb = {0};
1287
1288                 fop = *op;
1289
1290                 fop.o_sync_mode = 0;
1291                 fop.o_callback = &cb;
1292                 fop.ors_limit = NULL;
1293                 fop.ors_tlimit = SLAP_NO_LIMIT;
1294                 fop.ors_attrs = slap_anlist_all_attributes;
1295                 fop.ors_attrsonly = 0;
1296                 fop.o_managedsait = SLAP_CONTROL_CRITICAL;
1297
1298                 af.f_choice = LDAP_FILTER_AND;
1299                 af.f_next = NULL;
1300                 af.f_and = &mf;
1301                 mf.f_choice = LDAP_FILTER_EQUALITY;
1302                 mf.f_ava = &eq;
1303                 mf.f_av_desc = slap_schema.si_ad_entryUUID;
1304                 mf.f_next = fop.ors_filter;
1305
1306                 fop.ors_filter = &af;
1307
1308                 cb.sc_response = playlog_cb;
1309                 fop.o_bd->bd_info = on->on_info->oi_orig;
1310
1311                 for ( i=ndel; i<num; i++ ) {
1312                         if ( uuids[i].bv_len == 0 ) continue;
1313
1314                         mf.f_av_value = uuids[i];
1315                         cb.sc_private = NULL;
1316                         fop.ors_slimit = 1;
1317                         rc = fop.o_bd->be_search( &fop, &frs );
1318
1319                         /* If entry was not found, add to delete list */
1320                         if ( !cb.sc_private ) {
1321                                 uuids[ndel++] = uuids[i];
1322                         }
1323                 }
1324                 fop.o_bd->bd_info = (BackendInfo *)on;
1325         }
1326         if ( ndel ) {
1327                 uuids[ndel].bv_val = NULL;
1328                 syncprov_sendinfo( op, rs, LDAP_TAG_SYNC_ID_SET, NULL, 0, uuids, 1 );
1329         }
1330 }
1331
1332 static int
1333 syncprov_op_response( Operation *op, SlapReply *rs )
1334 {
1335         opcookie *opc = op->o_callback->sc_private;
1336         slap_overinst *on = opc->son;
1337         syncprov_info_t         *si = on->on_bi.bi_private;
1338         syncmatches *sm;
1339
1340         if ( rs->sr_err == LDAP_SUCCESS )
1341         {
1342                 struct berval maxcsn = BER_BVNULL, curcsn = BER_BVNULL;
1343                 char cbuf[LDAP_LUTIL_CSNSTR_BUFSIZE];
1344
1345                 /* Update our context CSN */
1346                 cbuf[0] = '\0';
1347                 ldap_pvt_thread_mutex_lock( &si->si_csn_mutex );
1348                 slap_get_commit_csn( op, &maxcsn, &curcsn );
1349                 if ( !BER_BVISNULL( &maxcsn ) ) {
1350                         strcpy( cbuf, maxcsn.bv_val );
1351                         if ( ber_bvcmp( &maxcsn, &si->si_ctxcsn ) > 0 ) {
1352                                 strcpy( si->si_ctxcsnbuf, cbuf );
1353                                 si->si_ctxcsn.bv_len = maxcsn.bv_len;
1354                         }
1355                 }
1356
1357                 /* Don't do any processing for consumer contextCSN updates */
1358                 if ( SLAP_SYNC_SHADOW( op->o_bd ) && 
1359                         op->o_msgid == SLAP_SYNC_UPDATE_MSGID ) {
1360                         ldap_pvt_thread_mutex_unlock( &si->si_csn_mutex );
1361                         return SLAP_CB_CONTINUE;
1362                 }
1363
1364                 si->si_numops++;
1365                 if ( si->si_chkops || si->si_chktime ) {
1366                         int do_check=0;
1367                         if ( si->si_chkops && si->si_numops >= si->si_chkops ) {
1368                                 do_check = 1;
1369                                 si->si_numops = 0;
1370                         }
1371                         if ( si->si_chktime &&
1372                                 (op->o_time - si->si_chklast >= si->si_chktime )) {
1373                                 do_check = 1;
1374                                 si->si_chklast = op->o_time;
1375                         }
1376                         if ( do_check ) {
1377                                 syncprov_checkpoint( op, rs, on );
1378                         }
1379                 }
1380                 ldap_pvt_thread_mutex_unlock( &si->si_csn_mutex );
1381
1382                 opc->sctxcsn.bv_len = maxcsn.bv_len;
1383                 opc->sctxcsn.bv_val = cbuf;
1384
1385                 /* Handle any persistent searches */
1386                 if ( si->si_ops ) {
1387                         switch(op->o_tag) {
1388                         case LDAP_REQ_ADD:
1389                         case LDAP_REQ_MODIFY:
1390                         case LDAP_REQ_MODRDN:
1391                         case LDAP_REQ_EXTENDED:
1392                                 syncprov_matchops( op, opc, 0 );
1393                                 break;
1394                         case LDAP_REQ_DELETE:
1395                                 /* for each match in opc->smatches:
1396                                  *   send DELETE msg
1397                                  */
1398                                 for ( sm = opc->smatches; sm; sm=sm->sm_next ) {
1399                                         if ( sm->sm_op->s_op->o_abandon )
1400                                                 continue;
1401                                         syncprov_sendresp( op, opc, sm->sm_op, NULL,
1402                                                 LDAP_SYNC_DELETE, 1 );
1403                                 }
1404                                 break;
1405                         }
1406                 }
1407
1408                 /* Add any log records */
1409                 if ( si->si_logs && op->o_tag != LDAP_REQ_ADD ) {
1410                         syncprov_add_slog( op, &curcsn );
1411                 }
1412
1413         }
1414         return SLAP_CB_CONTINUE;
1415 }
1416
1417 /* We don't use a subentry to store the context CSN any more.
1418  * We expose the current context CSN as an operational attribute
1419  * of the suffix entry.
1420  */
1421 static int
1422 syncprov_op_compare( Operation *op, SlapReply *rs )
1423 {
1424         slap_overinst           *on = (slap_overinst *)op->o_bd->bd_info;
1425         syncprov_info_t         *si = on->on_bi.bi_private;
1426         int rc = SLAP_CB_CONTINUE;
1427
1428         if ( dn_match( &op->o_req_ndn, op->o_bd->be_nsuffix ) &&
1429                 op->oq_compare.rs_ava->aa_desc == slap_schema.si_ad_contextCSN )
1430         {
1431                 Entry e = {0};
1432                 Attribute a = {0};
1433                 struct berval bv[2];
1434
1435                 e.e_name = op->o_bd->be_suffix[0];
1436                 e.e_nname = op->o_bd->be_nsuffix[0];
1437
1438                 BER_BVZERO( &bv[1] );
1439                 bv[0] = si->si_ctxcsn;
1440
1441                 a.a_desc = slap_schema.si_ad_contextCSN;
1442                 a.a_vals = bv;
1443                 a.a_nvals = a.a_vals;
1444
1445                 ldap_pvt_thread_mutex_lock( &si->si_csn_mutex );
1446
1447                 rs->sr_err = access_allowed( op, &e, op->oq_compare.rs_ava->aa_desc,
1448                         &op->oq_compare.rs_ava->aa_value, ACL_COMPARE, NULL );
1449                 if ( ! rs->sr_err ) {
1450                         rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
1451                         goto return_results;
1452                 }
1453
1454                 if ( get_assert( op ) &&
1455                         ( test_filter( op, &e, get_assertion( op ) ) != LDAP_COMPARE_TRUE ) )
1456                 {
1457                         rs->sr_err = LDAP_ASSERTION_FAILED;
1458                         goto return_results;
1459                 }
1460
1461
1462                 rs->sr_err = LDAP_COMPARE_FALSE;
1463
1464                 if ( value_find_ex( op->oq_compare.rs_ava->aa_desc,
1465                         SLAP_MR_ATTRIBUTE_VALUE_NORMALIZED_MATCH |
1466                                 SLAP_MR_ASSERTED_VALUE_NORMALIZED_MATCH,
1467                                 a.a_nvals, &op->oq_compare.rs_ava->aa_value, op->o_tmpmemctx ) == 0 )
1468                 {
1469                         rs->sr_err = LDAP_COMPARE_TRUE;
1470                 }
1471
1472 return_results:;
1473
1474                 ldap_pvt_thread_mutex_unlock( &si->si_csn_mutex );
1475
1476                 send_ldap_result( op, rs );
1477
1478                 if( rs->sr_err == LDAP_COMPARE_FALSE || rs->sr_err == LDAP_COMPARE_TRUE ) {
1479                         rs->sr_err = LDAP_SUCCESS;
1480                 }
1481                 rc = rs->sr_err;
1482         }
1483
1484         return rc;
1485 }
1486
1487 static int
1488 syncprov_op_mod( Operation *op, SlapReply *rs )
1489 {
1490         slap_overinst           *on = (slap_overinst *)op->o_bd->bd_info;
1491         syncprov_info_t         *si = on->on_bi.bi_private;
1492
1493         slap_callback *cb = op->o_tmpcalloc(1, sizeof(slap_callback)+
1494                 sizeof(opcookie) +
1495                 (si->si_ops ? sizeof(modinst) : 0 ),
1496                 op->o_tmpmemctx);
1497         opcookie *opc = (opcookie *)(cb+1);
1498         opc->son = on;
1499         cb->sc_response = syncprov_op_response;
1500         cb->sc_cleanup = syncprov_op_cleanup;
1501         cb->sc_private = opc;
1502         cb->sc_next = op->o_callback;
1503         op->o_callback = cb;
1504
1505         /* If there are active persistent searches, lock this operation.
1506          * See seqmod.c for the locking logic on its own.
1507          */
1508         if ( si->si_ops ) {
1509                 modtarget *mt, mtdummy;
1510                 modinst *mi;
1511
1512                 mi = (modinst *)(opc+1);
1513                 mi->mi_op = op;
1514
1515                 /* See if we're already modifying this entry... */
1516                 mtdummy.mt_op = op;
1517                 ldap_pvt_thread_mutex_lock( &si->si_mods_mutex );
1518                 mt = avl_find( si->si_mods, &mtdummy, sp_avl_cmp );
1519                 if ( mt ) {
1520                         ldap_pvt_thread_mutex_lock( &mt->mt_mutex );
1521                         ldap_pvt_thread_mutex_unlock( &si->si_mods_mutex );
1522                         mt->mt_tail->mi_next = mi;
1523                         mt->mt_tail = mi;
1524                         /* wait for this op to get to head of list */
1525                         while ( mt->mt_mods != mi ) {
1526                                 ldap_pvt_thread_mutex_unlock( &mt->mt_mutex );
1527                                 ldap_pvt_thread_yield();
1528                                 ldap_pvt_thread_mutex_lock( &mt->mt_mutex );
1529
1530                                 /* clean up if the caller is giving up */
1531                                 if ( op->o_abandon ) {
1532                                         modinst *m2;
1533                                         for ( m2 = mt->mt_mods; m2->mi_next != mi;
1534                                                 m2 = m2->mi_next );
1535                                         m2->mi_next = mi->mi_next;
1536                                         if ( mt->mt_tail == mi ) mt->mt_tail = m2;
1537                                         op->o_tmpfree( cb, op->o_tmpmemctx );
1538                                         ldap_pvt_thread_mutex_unlock( &mt->mt_mutex );
1539                                         return SLAPD_ABANDON;
1540                                 }
1541                         }
1542                         ldap_pvt_thread_mutex_unlock( &mt->mt_mutex );
1543                 } else {
1544                         /* Record that we're modifying this entry now */
1545                         mt = ch_malloc( sizeof(modtarget) );
1546                         mt->mt_mods = mi;
1547                         mt->mt_tail = mi;
1548                         mt->mt_op = mi->mi_op;
1549                         ldap_pvt_thread_mutex_init( &mt->mt_mutex );
1550                         avl_insert( &si->si_mods, mt, sp_avl_cmp, avl_dup_error );
1551                         ldap_pvt_thread_mutex_unlock( &si->si_mods_mutex );
1552                 }
1553         }
1554
1555         if (( si->si_ops || si->si_logs ) && op->o_tag != LDAP_REQ_ADD )
1556                 syncprov_matchops( op, opc, 1 );
1557
1558         return SLAP_CB_CONTINUE;
1559 }
1560
1561 static int
1562 syncprov_op_extended( Operation *op, SlapReply *rs )
1563 {
1564         if ( exop_is_write( op ))
1565                 return syncprov_op_mod( op, rs );
1566
1567         return SLAP_CB_CONTINUE;
1568 }
1569
1570 typedef struct searchstate {
1571         slap_overinst *ss_on;
1572         syncops *ss_so;
1573         int ss_present;
1574 } searchstate;
1575
1576 static int
1577 syncprov_search_cleanup( Operation *op, SlapReply *rs )
1578 {
1579         if ( rs->sr_ctrls ) {
1580                 op->o_tmpfree( rs->sr_ctrls[0], op->o_tmpmemctx );
1581                 op->o_tmpfree( rs->sr_ctrls, op->o_tmpmemctx );
1582                 rs->sr_ctrls = NULL;
1583         }
1584         return 0;
1585 }
1586
1587 static void
1588 syncprov_detach_op( Operation *op, syncops *so )
1589 {
1590         Operation *op2;
1591         int i, alen = 0;
1592         size_t size;
1593         char *ptr;
1594         GroupAssertion *g1, *g2;
1595
1596         /* count the search attrs */
1597         for (i=0; op->ors_attrs && !BER_BVISNULL( &op->ors_attrs[i].an_name ); i++) {
1598                 alen += op->ors_attrs[i].an_name.bv_len + 1;
1599         }
1600         /* Make a new copy of the operation */
1601         size = sizeof(Operation) + sizeof(Opheader) +
1602                 (i ? ( (i+1) * sizeof(AttributeName) + alen) : 0) +
1603                 op->o_req_dn.bv_len + 1 +
1604                 op->o_req_ndn.bv_len + 1 +
1605                 op->o_ndn.bv_len + 1 +
1606                 so->s_filterstr.bv_len + 1;
1607         op2 = (Operation *)ch_calloc( 1, size );
1608         op2->o_hdr = (Opheader *)(op2+1);
1609
1610         /* Copy the fields we care about explicitly, leave the rest alone */
1611         *op2->o_hdr = *op->o_hdr;
1612         op2->o_tag = op->o_tag;
1613         op2->o_time = op->o_time;
1614         op2->o_bd = op->o_bd;
1615         op2->o_request = op->o_request;
1616
1617         if ( i ) {
1618                 op2->ors_attrs = (AttributeName *)(op2->o_hdr + 1);
1619                 ptr = (char *)(op2->ors_attrs+i+1);
1620                 for (i=0; !BER_BVISNULL( &op->ors_attrs[i].an_name ); i++) {
1621                         op2->ors_attrs[i] = op->ors_attrs[i];
1622                         op2->ors_attrs[i].an_name.bv_val = ptr;
1623                         ptr = lutil_strcopy( ptr, op->ors_attrs[i].an_name.bv_val ) + 1;
1624                 }
1625                 BER_BVZERO( &op2->ors_attrs[i].an_name );
1626         } else {
1627                 ptr = (char *)(op2->o_hdr + 1);
1628         }
1629         op2->o_authz = op->o_authz;
1630         op2->o_ndn.bv_val = ptr;
1631         ptr = lutil_strcopy(ptr, op->o_ndn.bv_val) + 1;
1632         op2->o_dn = op2->o_ndn;
1633         op2->o_req_dn.bv_len = op->o_req_dn.bv_len;
1634         op2->o_req_dn.bv_val = ptr;
1635         ptr = lutil_strcopy(ptr, op->o_req_dn.bv_val) + 1;
1636         op2->o_req_ndn.bv_len = op->o_req_ndn.bv_len;
1637         op2->o_req_ndn.bv_val = ptr;
1638         ptr = lutil_strcopy(ptr, op->o_req_ndn.bv_val) + 1;
1639         op2->ors_filterstr.bv_val = ptr;
1640         strcpy( ptr, so->s_filterstr.bv_val );
1641         op2->ors_filterstr.bv_len = so->s_filterstr.bv_len;
1642         op2->ors_filter = str2filter( ptr );
1643         so->s_op = op2;
1644
1645         /* Copy any cached group ACLs individually */
1646         op2->o_groups = NULL;
1647         for ( g1=op->o_groups; g1; g1=g1->ga_next ) {
1648                 g2 = ch_malloc( sizeof(GroupAssertion) + g1->ga_len );
1649                 *g2 = *g1;
1650                 strcpy( g2->ga_ndn, g1->ga_ndn );
1651                 g2->ga_next = op2->o_groups;
1652                 op2->o_groups = g2;
1653         }
1654
1655         /* Add op2 to conn so abandon will find us */
1656         ldap_pvt_thread_mutex_lock( &op->o_conn->c_mutex );
1657         op->o_conn->c_n_ops_executing++;
1658         op->o_conn->c_n_ops_completed--;
1659         LDAP_STAILQ_INSERT_TAIL( &op->o_conn->c_ops, op2, o_next );
1660         so->s_flags |= PS_IS_DETACHED;
1661         ldap_pvt_thread_mutex_unlock( &op->o_conn->c_mutex );
1662 }
1663
1664 static int
1665 syncprov_search_response( Operation *op, SlapReply *rs )
1666 {
1667         searchstate *ss = op->o_callback->sc_private;
1668         slap_overinst *on = ss->ss_on;
1669         syncprov_info_t         *si = on->on_bi.bi_private;
1670         sync_control *srs = op->o_controls[slap_cids.sc_LDAPsync];
1671
1672         if ( rs->sr_type == REP_SEARCH || rs->sr_type == REP_SEARCHREF ) {
1673                 int i;
1674                 /* If we got a referral without a referral object, there's
1675                  * something missing that we cannot replicate. Just ignore it.
1676                  * The consumer will abort because we didn't send the expected
1677                  * control.
1678                  */
1679                 if ( !rs->sr_entry ) {
1680                         assert( rs->sr_entry );
1681                         Debug( LDAP_DEBUG_ANY, "bogus referral in context\n",0,0,0 );
1682                         return SLAP_CB_CONTINUE;
1683                 }
1684                 if ( !BER_BVISNULL( &srs->sr_state.ctxcsn )) {
1685                         Attribute *a = attr_find( rs->sr_entry->e_attrs,
1686                                 slap_schema.si_ad_entryCSN );
1687                         
1688                         /* Don't send the ctx entry twice */
1689                         if ( a && bvmatch( &a->a_nvals[0], &srs->sr_state.ctxcsn ) )
1690                                 return LDAP_SUCCESS;
1691                 }
1692                 rs->sr_ctrls = op->o_tmpalloc( sizeof(LDAPControl *)*2,
1693                         op->o_tmpmemctx );
1694                 rs->sr_ctrls[1] = NULL;
1695                 rs->sr_err = syncprov_state_ctrl( op, rs, rs->sr_entry,
1696                         LDAP_SYNC_ADD, rs->sr_ctrls, 0, 0, NULL );
1697         } else if ( rs->sr_type == REP_RESULT && rs->sr_err == LDAP_SUCCESS ) {
1698                 struct berval cookie;
1699
1700                 slap_compose_sync_cookie( op, &cookie,
1701                         &op->ors_filter->f_and->f_ava->aa_value,
1702                         srs->sr_state.rid );
1703
1704                 /* Is this a regular refresh? */
1705                 if ( !ss->ss_so ) {
1706                         rs->sr_ctrls = op->o_tmpalloc( sizeof(LDAPControl *)*2,
1707                                 op->o_tmpmemctx );
1708                         rs->sr_ctrls[1] = NULL;
1709                         rs->sr_err = syncprov_done_ctrl( op, rs, rs->sr_ctrls,
1710                                 0, 1, &cookie, ss->ss_present ?  LDAP_SYNC_REFRESH_PRESENTS :
1711                                         LDAP_SYNC_REFRESH_DELETES );
1712                 } else {
1713                         int locked = 0;
1714                 /* It's RefreshAndPersist, transition to Persist phase */
1715                         syncprov_sendinfo( op, rs, ( ss->ss_present && rs->sr_nentries ) ?
1716                                 LDAP_TAG_SYNC_REFRESH_PRESENT : LDAP_TAG_SYNC_REFRESH_DELETE,
1717                                 &cookie, 1, NULL, 0 );
1718                         /* Flush any queued persist messages */
1719                         if ( ss->ss_so->s_res ) {
1720                                 ldap_pvt_thread_mutex_lock( &ss->ss_so->s_mutex );
1721                                 locked = 1;
1722                                 syncprov_qplay( op, on, ss->ss_so );
1723                         }
1724
1725                         /* Turn off the refreshing flag */
1726                         ss->ss_so->s_flags ^= PS_IS_REFRESHING;
1727                         if ( locked )
1728                                 ldap_pvt_thread_mutex_unlock( &ss->ss_so->s_mutex );
1729
1730                         /* Detach this Op from frontend control */
1731                         syncprov_detach_op( op, ss->ss_so );
1732
1733                         return LDAP_SUCCESS;
1734                 }
1735         }
1736
1737         return SLAP_CB_CONTINUE;
1738 }
1739
1740 static int
1741 syncprov_op_search( Operation *op, SlapReply *rs )
1742 {
1743         slap_overinst           *on = (slap_overinst *)op->o_bd->bd_info;
1744         syncprov_info_t         *si = (syncprov_info_t *)on->on_bi.bi_private;
1745         slap_callback   *cb;
1746         int gotstate = 0, nochange = 0, do_present = 1;
1747         Filter *fand, *fava;
1748         syncops *sop = NULL;
1749         searchstate *ss;
1750         sync_control *srs;
1751         struct berval ctxcsn;
1752         char csnbuf[LDAP_LUTIL_CSNSTR_BUFSIZE];
1753
1754         if ( !(op->o_sync_mode & SLAP_SYNC_REFRESH) ) return SLAP_CB_CONTINUE;
1755
1756         if ( op->ors_deref & LDAP_DEREF_SEARCHING ) {
1757                 send_ldap_error( op, rs, LDAP_PROTOCOL_ERROR, "illegal value for derefAliases" );
1758                 return rs->sr_err;
1759         }
1760
1761         srs = op->o_controls[slap_cids.sc_LDAPsync];
1762         op->o_managedsait = SLAP_CONTROL_NONCRITICAL;
1763
1764         /* If this is a persistent search, set it up right away */
1765         if ( op->o_sync_mode & SLAP_SYNC_PERSIST ) {
1766                 syncops so = {0};
1767                 fbase_cookie fc;
1768                 opcookie opc;
1769                 slap_callback sc;
1770
1771                 fc.fss = &so;
1772                 fc.fbase = 0;
1773                 so.s_eid = NOID;
1774                 so.s_op = op;
1775                 so.s_flags = PS_IS_REFRESHING;
1776                 /* syncprov_findbase expects to be called as a callback... */
1777                 sc.sc_private = &opc;
1778                 opc.son = on;
1779                 cb = op->o_callback;
1780                 op->o_callback = &sc;
1781                 rs->sr_err = syncprov_findbase( op, &fc );
1782                 op->o_callback = cb;
1783
1784                 if ( rs->sr_err != LDAP_SUCCESS ) {
1785                         send_ldap_result( op, rs );
1786                         return rs->sr_err;
1787                 }
1788                 sop = ch_malloc( sizeof( syncops ));
1789                 *sop = so;
1790                 ldap_pvt_thread_mutex_init( &sop->s_mutex );
1791                 sop->s_rid = srs->sr_state.rid;
1792                 sop->s_inuse = 1;
1793
1794                 ldap_pvt_thread_mutex_lock( &si->si_ops_mutex );
1795                 sop->s_next = si->si_ops;
1796                 si->si_ops = sop;
1797                 ldap_pvt_thread_mutex_unlock( &si->si_ops_mutex );
1798         }
1799
1800         /* snapshot the ctxcsn */
1801         ldap_pvt_thread_mutex_lock( &si->si_csn_mutex );
1802         strcpy( csnbuf, si->si_ctxcsnbuf );
1803         ctxcsn.bv_len = si->si_ctxcsn.bv_len;
1804         ldap_pvt_thread_mutex_unlock( &si->si_csn_mutex );
1805         ctxcsn.bv_val = csnbuf;
1806         
1807         /* If we have a cookie, handle the PRESENT lookups */
1808         if ( !BER_BVISNULL( &srs->sr_state.ctxcsn )) {
1809                 sessionlog *sl;
1810
1811                 /* The cookie was validated when it was parsed, just use it */
1812
1813                 /* If just Refreshing and nothing has changed, shortcut it */
1814                 if ( bvmatch( &srs->sr_state.ctxcsn, &ctxcsn )) {
1815                         nochange = 1;
1816                         if ( !(op->o_sync_mode & SLAP_SYNC_PERSIST) ) {
1817                                 LDAPControl     *ctrls[2];
1818
1819                                 ctrls[0] = NULL;
1820                                 ctrls[1] = NULL;
1821                                 syncprov_done_ctrl( op, rs, ctrls, 0, 0,
1822                                         NULL, LDAP_SYNC_REFRESH_DELETES );
1823                                 rs->sr_ctrls = ctrls;
1824                                 rs->sr_err = LDAP_SUCCESS;
1825                                 send_ldap_result( op, rs );
1826                                 rs->sr_ctrls = NULL;
1827                                 return rs->sr_err;
1828                         }
1829                         goto shortcut;
1830                 }
1831                 /* Do we have a sessionlog for this search? */
1832                 sl=si->si_logs;
1833                 if ( sl ) {
1834                         ldap_pvt_thread_mutex_lock( &sl->sl_mutex );
1835                         if ( ber_bvcmp( &srs->sr_state.ctxcsn, &sl->sl_mincsn ) >= 0 ) {
1836                                 do_present = 0;
1837                                 /* mutex is unlocked in playlog */
1838                                 syncprov_playlog( op, rs, sl, &srs->sr_state.ctxcsn, &ctxcsn );
1839                         } else {
1840                                 ldap_pvt_thread_mutex_unlock( &sl->sl_mutex );
1841                         }
1842                 }
1843                 /* Is the CSN still present in the database? */
1844                 if ( syncprov_findcsn( op, FIND_CSN ) != LDAP_SUCCESS ) {
1845                         /* No, so a reload is required */
1846 #if 0           /* the consumer doesn't seem to send this hint */
1847                         if ( op->o_sync_rhint == 0 ) {
1848                                 send_ldap_error( op, rs, LDAP_SYNC_REFRESH_REQUIRED, "sync cookie is stale" );
1849                                 return rs->sr_err;
1850                         }
1851 #endif
1852                 } else {
1853                         gotstate = 1;
1854                         /* If changed and doing Present lookup, send Present UUIDs */
1855                         if ( do_present && syncprov_findcsn( op, FIND_PRESENT ) !=
1856                                 LDAP_SUCCESS ) {
1857                                 send_ldap_result( op, rs );
1858                                 return rs->sr_err;
1859                         }
1860                 }
1861         }
1862
1863 shortcut:
1864         /* Append CSN range to search filter, save original filter
1865          * for persistent search evaluation
1866          */
1867         if ( sop ) {
1868                 sop->s_filterstr= op->ors_filterstr;
1869         }
1870
1871         fand = op->o_tmpalloc( sizeof(Filter), op->o_tmpmemctx );
1872         fand->f_choice = LDAP_FILTER_AND;
1873         fand->f_next = NULL;
1874         fava = op->o_tmpalloc( sizeof(Filter), op->o_tmpmemctx );
1875         fava->f_choice = LDAP_FILTER_LE;
1876         fava->f_ava = op->o_tmpalloc( sizeof(AttributeAssertion), op->o_tmpmemctx );
1877         fava->f_ava->aa_desc = slap_schema.si_ad_entryCSN;
1878 #ifdef LDAP_COMP_MATCH
1879         fava->f_ava->aa_cf = NULL;
1880 #endif
1881         ber_dupbv_x( &fava->f_ava->aa_value, &ctxcsn, op->o_tmpmemctx );
1882         fand->f_and = fava;
1883         if ( gotstate ) {
1884                 fava->f_next = op->o_tmpalloc( sizeof(Filter), op->o_tmpmemctx );
1885                 fava = fava->f_next;
1886                 fava->f_choice = LDAP_FILTER_GE;
1887                 fava->f_ava = op->o_tmpalloc( sizeof(AttributeAssertion), op->o_tmpmemctx );
1888                 fava->f_ava->aa_desc = slap_schema.si_ad_entryCSN;
1889 #ifdef LDAP_COMP_MATCH
1890                 fava->f_ava->aa_cf = NULL;
1891 #endif
1892                 ber_dupbv_x( &fava->f_ava->aa_value, &srs->sr_state.ctxcsn, op->o_tmpmemctx );
1893         }
1894         fava->f_next = op->ors_filter;
1895         op->ors_filter = fand;
1896         filter2bv_x( op, op->ors_filter, &op->ors_filterstr );
1897
1898         /* Let our callback add needed info to returned entries */
1899         cb = op->o_tmpcalloc(1, sizeof(slap_callback)+sizeof(searchstate), op->o_tmpmemctx);
1900         ss = (searchstate *)(cb+1);
1901         ss->ss_on = on;
1902         ss->ss_so = sop;
1903         ss->ss_present = do_present;
1904         cb->sc_response = syncprov_search_response;
1905         cb->sc_cleanup = syncprov_search_cleanup;
1906         cb->sc_private = ss;
1907         cb->sc_next = op->o_callback;
1908         op->o_callback = cb;
1909
1910 #if 0   /* I don't think we need to shortcircuit back-bdb any more */
1911         op->o_sync_mode &= SLAP_CONTROL_MASK;
1912 #endif
1913
1914         /* If this is a persistent search and no changes were reported during
1915          * the refresh phase, just invoke the response callback to transition
1916          * us into persist phase
1917          */
1918         if ( nochange ) {
1919                 rs->sr_err = LDAP_SUCCESS;
1920                 rs->sr_nentries = 0;
1921                 send_ldap_result( op, rs );
1922                 return rs->sr_err;
1923         }
1924         return SLAP_CB_CONTINUE;
1925 }
1926
1927 static int
1928 syncprov_operational(
1929         Operation *op,
1930         SlapReply *rs )
1931 {
1932         slap_overinst           *on = (slap_overinst *)op->o_bd->bd_info;
1933         syncprov_info_t         *si = (syncprov_info_t *)on->on_bi.bi_private;
1934
1935         if ( rs->sr_entry &&
1936                 dn_match( &rs->sr_entry->e_nname, op->o_bd->be_nsuffix )) {
1937
1938                 if ( SLAP_OPATTRS( rs->sr_attr_flags ) ||
1939                         ad_inlist( slap_schema.si_ad_contextCSN, rs->sr_attrs )) {
1940                         Attribute *a, **ap = NULL;
1941
1942                         for ( a=rs->sr_entry->e_attrs; a; a=a->a_next ) {
1943                                 if ( a->a_desc == slap_schema.si_ad_contextCSN )
1944                                         break;
1945                         }
1946
1947                         if ( !a ) {
1948                                 for ( ap = &rs->sr_operational_attrs; *ap; ap=&(*ap)->a_next );
1949
1950                                 a = ch_malloc( sizeof(Attribute));
1951                                 a->a_desc = slap_schema.si_ad_contextCSN;
1952                                 a->a_vals = ch_malloc( 2 * sizeof(struct berval));
1953                                 a->a_vals[1].bv_val = NULL;
1954                                 a->a_nvals = a->a_vals;
1955                                 a->a_next = NULL;
1956                                 a->a_flags = 0;
1957                                 *ap = a;
1958                         }
1959
1960                         ldap_pvt_thread_mutex_lock( &si->si_csn_mutex );
1961                         if ( !ap ) {
1962                                 strcpy( a->a_vals[0].bv_val, si->si_ctxcsnbuf );
1963                         } else {
1964                                 ber_dupbv( &a->a_vals[0], &si->si_ctxcsn );
1965                         }
1966                         ldap_pvt_thread_mutex_unlock( &si->si_csn_mutex );
1967                 }
1968         }
1969         return SLAP_CB_CONTINUE;
1970 }
1971
1972 static int
1973 syncprov_db_config(
1974         BackendDB       *be,
1975         const char      *fname,
1976         int             lineno,
1977         int             argc,
1978         char    **argv
1979 )
1980 {
1981         slap_overinst           *on = (slap_overinst *)be->bd_info;
1982         syncprov_info_t         *si = (syncprov_info_t *)on->on_bi.bi_private;
1983
1984         if ( strcasecmp( argv[ 0 ], "syncprov-checkpoint" ) == 0 ) {
1985                 if ( argc != 3 ) {
1986                         fprintf( stderr, "%s: line %d: wrong number of arguments in "
1987                                 "\"syncprov-checkpoint <ops> <minutes>\"\n", fname, lineno );
1988                         return -1;
1989                 }
1990                 si->si_chkops = atoi( argv[1] );
1991                 si->si_chktime = atoi( argv[2] ) * 60;
1992                 return 0;
1993
1994         } else if ( strcasecmp( argv[0], "syncprov-sessionlog" ) == 0 ) {
1995                 sessionlog *sl;
1996                 int size;
1997                 if ( argc != 2 ) {
1998                         fprintf( stderr, "%s: line %d: wrong number of arguments in "
1999                                 "\"syncprov-sessionlog <size>\"\n", fname, lineno );
2000                         return -1;
2001                 }
2002                 size = atoi( argv[1] );
2003                 if ( size < 0 ) {
2004                         fprintf( stderr,
2005                                 "%s: line %d: session log size %d is negative\n",
2006                                 fname, lineno, size );
2007                         return -1;
2008                 }
2009                 sl = si->si_logs;
2010                 if ( !sl ) {
2011                         sl = ch_malloc( sizeof( sessionlog ) + LDAP_LUTIL_CSNSTR_BUFSIZE );
2012                         sl->sl_mincsn.bv_val = (char *)(sl+1);
2013                         sl->sl_mincsn.bv_len = 0;
2014                         sl->sl_num = 0;
2015                         sl->sl_head = sl->sl_tail = NULL;
2016                         ldap_pvt_thread_mutex_init( &sl->sl_mutex );
2017                         si->si_logs = sl;
2018                 }
2019                 sl->sl_size = size;
2020                 return 0;
2021         }
2022
2023         return SLAP_CONF_UNKNOWN;
2024 }
2025
2026 /* Cheating - we have no thread pool context for these functions,
2027  * so make one.
2028  */
2029 typedef struct thread_keys {
2030         void *key;
2031         void *data;
2032         ldap_pvt_thread_pool_keyfree_t *xfree;
2033 } thread_keys;
2034
2035 #define MAXKEYS 32
2036 /* A fake thread context */
2037 static thread_keys thrctx[MAXKEYS];
2038
2039 /* Read any existing contextCSN from the underlying db.
2040  * Then search for any entries newer than that. If no value exists,
2041  * just generate it. Cache whatever result.
2042  */
2043 static int
2044 syncprov_db_open(
2045     BackendDB *be
2046 )
2047 {
2048         slap_overinst   *on = (slap_overinst *) be->bd_info;
2049         syncprov_info_t *si = (syncprov_info_t *)on->on_bi.bi_private;
2050
2051         Connection conn;
2052         char opbuf[OPERATION_BUFFER_SIZE];
2053         char ctxcsnbuf[LDAP_LUTIL_CSNSTR_BUFSIZE];
2054         Operation *op = (Operation *)opbuf;
2055         Entry *e;
2056         Attribute *a;
2057         int rc;
2058
2059         if ( slapMode & SLAP_TOOL_MODE ) {
2060                 return 0;
2061         }
2062
2063         rc = overlay_register_control( be, LDAP_CONTROL_SYNC );
2064         if ( rc ) {
2065                 return rc;
2066         }
2067
2068         connection_fake_init( &conn, op, thrctx );
2069         op->o_bd = be;
2070         op->o_dn = be->be_rootdn;
2071         op->o_ndn = be->be_rootndn;
2072
2073         ctxcsnbuf[0] = '\0';
2074
2075         op->o_bd->bd_info = on->on_info->oi_orig;
2076         rc = be_entry_get_rw( op, be->be_nsuffix, NULL,
2077                 slap_schema.si_ad_contextCSN, 0, &e );
2078
2079         if ( e ) {
2080                 a = attr_find( e->e_attrs, slap_schema.si_ad_contextCSN );
2081                 if ( a ) {
2082                         si->si_ctxcsn.bv_len = a->a_nvals[0].bv_len;
2083                         if ( si->si_ctxcsn.bv_len >= sizeof(si->si_ctxcsnbuf ))
2084                                 si->si_ctxcsn.bv_len = sizeof(si->si_ctxcsnbuf)-1;
2085                         strncpy( si->si_ctxcsnbuf, a->a_nvals[0].bv_val,
2086                                 si->si_ctxcsn.bv_len );
2087                         si->si_ctxcsnbuf[si->si_ctxcsn.bv_len] = '\0';
2088                         strcpy( ctxcsnbuf, si->si_ctxcsnbuf );
2089                 }
2090                 be_entry_release_rw( op, e, 0 );
2091                 op->o_bd->bd_info = (BackendInfo *)on;
2092                 op->o_req_dn = be->be_suffix[0];
2093                 op->o_req_ndn = be->be_nsuffix[0];
2094                 op->ors_scope = LDAP_SCOPE_SUBTREE;
2095                 syncprov_findcsn( op, FIND_MAXCSN );
2096         } else if ( SLAP_SYNC_SHADOW( op->o_bd )) {
2097                 /* If we're also a consumer, and we didn't find the context entry,
2098                  * then don't generate anything, wait for our provider to send it
2099                  * to us.
2100                  */
2101                 goto out;
2102         }
2103
2104         if ( BER_BVISEMPTY( &si->si_ctxcsn ) ) {
2105                 slap_get_csn( op, si->si_ctxcsnbuf, sizeof(si->si_ctxcsnbuf),
2106                                 &si->si_ctxcsn, 0 );
2107         }
2108
2109         /* If our ctxcsn is different from what was read from the root
2110          * entry, write the new value out.
2111          */
2112         if ( strcmp( si->si_ctxcsnbuf, ctxcsnbuf )) {
2113                 SlapReply rs = {REP_RESULT};
2114                 syncprov_checkpoint( op, &rs, on );
2115         }
2116
2117 out:
2118         op->o_bd->bd_info = (BackendInfo *)on;
2119         return 0;
2120 }
2121
2122 /* Write the current contextCSN into the underlying db.
2123  */
2124 static int
2125 syncprov_db_close(
2126     BackendDB *be
2127 )
2128 {
2129     slap_overinst   *on = (slap_overinst *) be->bd_info;
2130     syncprov_info_t *si = (syncprov_info_t *)on->on_bi.bi_private;
2131         int i;
2132
2133         if ( slapMode & SLAP_TOOL_MODE ) {
2134                 return 0;
2135         }
2136         if ( si->si_numops ) {
2137                 Connection conn;
2138                 char opbuf[OPERATION_BUFFER_SIZE];
2139                 Operation *op = (Operation *)opbuf;
2140                 SlapReply rs = {REP_RESULT};
2141
2142                 connection_fake_init( &conn, op, thrctx );
2143                 op->o_bd = be;
2144                 op->o_dn = be->be_rootdn;
2145                 op->o_ndn = be->be_rootndn;
2146                 syncprov_checkpoint( op, &rs, on );
2147         }
2148         for ( i=0; thrctx[i].key; i++) {
2149                 if ( thrctx[i].xfree )
2150                         thrctx[i].xfree( thrctx[i].key, thrctx[i].data );
2151                 thrctx[i].key = NULL;
2152         }
2153
2154     return 0;
2155 }
2156
2157 static int
2158 syncprov_db_init(
2159         BackendDB *be
2160 )
2161 {
2162         slap_overinst   *on = (slap_overinst *)be->bd_info;
2163         syncprov_info_t *si;
2164
2165         si = ch_calloc(1, sizeof(syncprov_info_t));
2166         on->on_bi.bi_private = si;
2167         ldap_pvt_thread_mutex_init( &si->si_csn_mutex );
2168         ldap_pvt_thread_mutex_init( &si->si_ops_mutex );
2169         ldap_pvt_thread_mutex_init( &si->si_mods_mutex );
2170         si->si_ctxcsn.bv_val = si->si_ctxcsnbuf;
2171
2172         csn_anlist[0].an_desc = slap_schema.si_ad_entryCSN;
2173         csn_anlist[0].an_name = slap_schema.si_ad_entryCSN->ad_cname;
2174
2175         uuid_anlist[0].an_desc = slap_schema.si_ad_entryUUID;
2176         uuid_anlist[0].an_name = slap_schema.si_ad_entryUUID->ad_cname;
2177
2178         return 0;
2179 }
2180
2181 static int
2182 syncprov_db_destroy(
2183         BackendDB *be
2184 )
2185 {
2186         slap_overinst   *on = (slap_overinst *)be->bd_info;
2187         syncprov_info_t *si = (syncprov_info_t *)on->on_bi.bi_private;
2188
2189         if ( si ) {
2190                 ldap_pvt_thread_mutex_destroy( &si->si_mods_mutex );
2191                 ldap_pvt_thread_mutex_destroy( &si->si_ops_mutex );
2192                 ldap_pvt_thread_mutex_destroy( &si->si_csn_mutex );
2193                 ch_free( si );
2194         }
2195
2196         return 0;
2197 }
2198
2199 static int syncprov_parseCtrl (
2200         Operation *op,
2201         SlapReply *rs,
2202         LDAPControl *ctrl )
2203 {
2204         ber_tag_t tag;
2205         BerElement *ber;
2206         ber_int_t mode;
2207         ber_len_t len;
2208         struct berval cookie = BER_BVNULL;
2209         sync_control *sr;
2210         int rhint = 0;
2211
2212         if ( op->o_sync != SLAP_CONTROL_NONE ) {
2213                 rs->sr_text = "Sync control specified multiple times";
2214                 return LDAP_PROTOCOL_ERROR;
2215         }
2216
2217         if ( op->o_pagedresults != SLAP_CONTROL_NONE ) {
2218                 rs->sr_text = "Sync control specified with pagedResults control";
2219                 return LDAP_PROTOCOL_ERROR;
2220         }
2221
2222         if ( BER_BVISEMPTY( &ctrl->ldctl_value ) ) {
2223                 rs->sr_text = "Sync control value is empty (or absent)";
2224                 return LDAP_PROTOCOL_ERROR;
2225         }
2226
2227         /* Parse the control value
2228          *      syncRequestValue ::= SEQUENCE {
2229          *              mode   ENUMERATED {
2230          *                      -- 0 unused
2231          *                      refreshOnly             (1),
2232          *                      -- 2 reserved
2233          *                      refreshAndPersist       (3)
2234          *              },
2235          *              cookie  syncCookie OPTIONAL
2236          *      }
2237          */
2238
2239         ber = ber_init( &ctrl->ldctl_value );
2240         if( ber == NULL ) {
2241                 rs->sr_text = "internal error";
2242                 return LDAP_OTHER;
2243         }
2244
2245         if ( (tag = ber_scanf( ber, "{i" /*}*/, &mode )) == LBER_ERROR ) {
2246                 rs->sr_text = "Sync control : mode decoding error";
2247                 return LDAP_PROTOCOL_ERROR;
2248         }
2249
2250         switch( mode ) {
2251         case LDAP_SYNC_REFRESH_ONLY:
2252                 mode = SLAP_SYNC_REFRESH;
2253                 break;
2254         case LDAP_SYNC_REFRESH_AND_PERSIST:
2255                 mode = SLAP_SYNC_REFRESH_AND_PERSIST;
2256                 break;
2257         default:
2258                 rs->sr_text = "Sync control : unknown update mode";
2259                 return LDAP_PROTOCOL_ERROR;
2260         }
2261
2262         tag = ber_peek_tag( ber, &len );
2263
2264         if ( tag == LDAP_TAG_SYNC_COOKIE ) {
2265                 if (( ber_scanf( ber, /*{*/ "o", &cookie )) == LBER_ERROR ) {
2266                         rs->sr_text = "Sync control : cookie decoding error";
2267                         return LDAP_PROTOCOL_ERROR;
2268                 }
2269         }
2270         if ( tag == LDAP_TAG_RELOAD_HINT ) {
2271                 if (( ber_scanf( ber, /*{*/ "b", &rhint )) == LBER_ERROR ) {
2272                         rs->sr_text = "Sync control : rhint decoding error";
2273                         return LDAP_PROTOCOL_ERROR;
2274                 }
2275         }
2276         if (( ber_scanf( ber, /*{*/ "}")) == LBER_ERROR ) {
2277                         rs->sr_text = "Sync control : decoding error";
2278                         return LDAP_PROTOCOL_ERROR;
2279         }
2280         sr = op->o_tmpcalloc( 1, sizeof(struct sync_control), op->o_tmpmemctx );
2281         sr->sr_rhint = rhint;
2282         if (!BER_BVISNULL(&cookie)) {
2283                 ber_dupbv( &sr->sr_state.octet_str, &cookie );
2284                 slap_parse_sync_cookie( &sr->sr_state );
2285         }
2286
2287         op->o_controls[slap_cids.sc_LDAPsync] = sr;
2288
2289         (void) ber_free( ber, 1 );
2290
2291         op->o_sync = ctrl->ldctl_iscritical
2292                 ? SLAP_CONTROL_CRITICAL
2293                 : SLAP_CONTROL_NONCRITICAL;
2294
2295         op->o_sync_mode |= mode;        /* o_sync_mode shares o_sync */
2296
2297         return LDAP_SUCCESS;
2298 }
2299
2300 /* This overlay is set up for dynamic loading via moduleload. For static
2301  * configuration, you'll need to arrange for the slap_overinst to be
2302  * initialized and registered by some other function inside slapd.
2303  */
2304
2305 static slap_overinst            syncprov;
2306
2307 int
2308 syncprov_init()
2309 {
2310         int rc;
2311
2312         rc = register_supported_control( LDAP_CONTROL_SYNC,
2313                 SLAP_CTRL_HIDE|SLAP_CTRL_SEARCH, NULL,
2314                 syncprov_parseCtrl, &slap_cids.sc_LDAPsync );
2315         if ( rc != LDAP_SUCCESS ) {
2316                 fprintf( stderr, "Failed to register control %d\n", rc );
2317                 return rc;
2318         }
2319
2320         syncprov.on_bi.bi_type = "syncprov";
2321         syncprov.on_bi.bi_db_init = syncprov_db_init;
2322         syncprov.on_bi.bi_db_config = syncprov_db_config;
2323         syncprov.on_bi.bi_db_destroy = syncprov_db_destroy;
2324         syncprov.on_bi.bi_db_open = syncprov_db_open;
2325         syncprov.on_bi.bi_db_close = syncprov_db_close;
2326
2327         syncprov.on_bi.bi_op_abandon = syncprov_op_abandon;
2328         syncprov.on_bi.bi_op_cancel = syncprov_op_abandon;
2329
2330         syncprov.on_bi.bi_op_add = syncprov_op_mod;
2331         syncprov.on_bi.bi_op_compare = syncprov_op_compare;
2332         syncprov.on_bi.bi_op_delete = syncprov_op_mod;
2333         syncprov.on_bi.bi_op_modify = syncprov_op_mod;
2334         syncprov.on_bi.bi_op_modrdn = syncprov_op_mod;
2335         syncprov.on_bi.bi_op_search = syncprov_op_search;
2336         syncprov.on_bi.bi_extended = syncprov_op_extended;
2337         syncprov.on_bi.bi_operational = syncprov_operational;
2338
2339         return overlay_register( &syncprov );
2340 }
2341
2342 #if SLAPD_OVER_SYNCPROV == SLAPD_MOD_DYNAMIC
2343 int
2344 init_module( int argc, char *argv[] )
2345 {
2346         return syncprov_init();
2347 }
2348 #endif /* SLAPD_OVER_SYNCPROV == SLAPD_MOD_DYNAMIC */
2349
2350 #endif /* defined(SLAPD_OVER_SYNCPROV) */