]> git.sur5r.net Git - openldap/blob - servers/slapd/overlays/syncprov.c
/tmp/msg
[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-2007 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 #include "config.h"
29 #include "ldap_rq.h"
30
31 /* A modify request on a particular entry */
32 typedef struct modinst {
33         struct modinst *mi_next;
34         Operation *mi_op;
35 } modinst;
36
37 typedef struct modtarget {
38         struct modinst *mt_mods;
39         struct modinst *mt_tail;
40         Operation *mt_op;
41         ldap_pvt_thread_mutex_t mt_mutex;
42 } modtarget;
43
44 /* A queued result of a persistent search */
45 typedef struct syncres {
46         struct syncres *s_next;
47         struct berval s_dn;
48         struct berval s_ndn;
49         struct berval s_uuid;
50         struct berval s_csn;
51         char s_mode;
52         char s_isreference;
53 } syncres;
54
55 /* Record of a persistent search */
56 typedef struct syncops {
57         struct syncops *s_next;
58         struct berval   s_base;         /* ndn of search base */
59         ID              s_eid;          /* entryID of search base */
60         Operation       *s_op;          /* search op */
61         int             s_rid;
62         int             s_sid;
63         struct berval s_filterstr;
64         int             s_flags;        /* search status */
65 #define PS_IS_REFRESHING        0x01
66 #define PS_IS_DETACHED          0x02
67 #define PS_WROTE_BASE           0x04
68 #define PS_FIND_BASE            0x08
69 #define PS_FIX_FILTER           0x10
70
71         int             s_inuse;        /* reference count */
72         struct syncres *s_res;
73         struct syncres *s_restail;
74         struct re_s     *s_qtask;       /* task for playing psearch responses */
75 #define RUNQ_INTERVAL   36000   /* a long time */
76         ldap_pvt_thread_mutex_t s_mutex;
77 } syncops;
78
79 /* A received sync control */
80 typedef struct sync_control {
81         struct sync_cookie sr_state;
82         int sr_rhint;
83 } sync_control;
84
85 #if 0 /* moved back to slap.h */
86 #define o_sync  o_ctrlflag[slap_cids.sc_LDAPsync]
87 #endif
88 /* o_sync_mode uses data bits of o_sync */
89 #define o_sync_mode     o_ctrlflag[slap_cids.sc_LDAPsync]
90
91 #define SLAP_SYNC_NONE                                  (LDAP_SYNC_NONE<<SLAP_CONTROL_SHIFT)
92 #define SLAP_SYNC_REFRESH                               (LDAP_SYNC_REFRESH_ONLY<<SLAP_CONTROL_SHIFT)
93 #define SLAP_SYNC_PERSIST                               (LDAP_SYNC_RESERVED<<SLAP_CONTROL_SHIFT)
94 #define SLAP_SYNC_REFRESH_AND_PERSIST   (LDAP_SYNC_REFRESH_AND_PERSIST<<SLAP_CONTROL_SHIFT)
95
96 /* Record of which searches matched at premodify step */
97 typedef struct syncmatches {
98         struct syncmatches *sm_next;
99         syncops *sm_op;
100 } syncmatches;
101
102 /* Session log data */
103 typedef struct slog_entry {
104         struct slog_entry *se_next;
105         struct berval se_uuid;
106         struct berval se_csn;
107         int     se_sid;
108         ber_tag_t       se_tag;
109 } slog_entry;
110
111 typedef struct sessionlog {
112         struct berval   sl_mincsn;
113         int             sl_num;
114         int             sl_size;
115         slog_entry *sl_head;
116         slog_entry *sl_tail;
117         ldap_pvt_thread_mutex_t sl_mutex;
118 } sessionlog;
119
120 /* The main state for this overlay */
121 typedef struct syncprov_info_t {
122         syncops         *si_ops;
123         BerVarray       si_ctxcsn;      /* ldapsync context */
124         int             *si_sids;
125         int             si_numcsns;
126         int             si_chkops;      /* checkpointing info */
127         int             si_chktime;
128         int             si_numops;      /* number of ops since last checkpoint */
129         int             si_nopres;      /* Skip present phase */
130         int             si_usehint;     /* use reload hint */
131         time_t  si_chklast;     /* time of last checkpoint */
132         Avlnode *si_mods;       /* entries being modified */
133         sessionlog      *si_logs;
134         ldap_pvt_thread_rdwr_t  si_csn_rwlock;
135         ldap_pvt_thread_mutex_t si_ops_mutex;
136         ldap_pvt_thread_mutex_t si_mods_mutex;
137 } syncprov_info_t;
138
139 typedef struct opcookie {
140         slap_overinst *son;
141         syncmatches *smatches;
142         struct berval sdn;      /* DN of entry, for deletes */
143         struct berval sndn;
144         struct berval suuid;    /* UUID of entry */
145         struct berval sctxcsn;
146         int sreference; /* Is the entry a reference? */
147 } opcookie;
148
149 typedef struct fbase_cookie {
150         struct berval *fdn;     /* DN of a modified entry, for scope testing */
151         syncops *fss;   /* persistent search we're testing against */
152         int fbase;      /* if TRUE we found the search base and it's still valid */
153         int fscope;     /* if TRUE then fdn is within the psearch scope */
154 } fbase_cookie;
155
156 static AttributeName csn_anlist[3];
157 static AttributeName uuid_anlist[2];
158
159 /* Build a LDAPsync intermediate state control */
160 static int
161 syncprov_state_ctrl(
162         Operation       *op,
163         SlapReply       *rs,
164         Entry           *e,
165         int             entry_sync_state,
166         LDAPControl     **ctrls,
167         int             num_ctrls,
168         int             send_cookie,
169         struct berval   *cookie )
170 {
171         Attribute* a;
172         int ret;
173
174         BerElementBuffer berbuf;
175         BerElement *ber = (BerElement *)&berbuf;
176
177         struct berval   entryuuid_bv = BER_BVNULL;
178
179         ber_init2( ber, 0, LBER_USE_DER );
180         ber_set_option( ber, LBER_OPT_BER_MEMCTX, &op->o_tmpmemctx );
181
182         ctrls[num_ctrls] = op->o_tmpalloc( sizeof ( LDAPControl ), op->o_tmpmemctx );
183
184         for ( a = e->e_attrs; a != NULL; a = a->a_next ) {
185                 AttributeDescription *desc = a->a_desc;
186                 if ( desc == slap_schema.si_ad_entryUUID ) {
187                         entryuuid_bv = a->a_nvals[0];
188                         break;
189                 }
190         }
191
192         /* FIXME: what if entryuuid is NULL or empty ? */
193
194         if ( send_cookie && cookie ) {
195                 ber_printf( ber, "{eOON}",
196                         entry_sync_state, &entryuuid_bv, cookie );
197         } else {
198                 ber_printf( ber, "{eON}",
199                         entry_sync_state, &entryuuid_bv );
200         }
201
202         ctrls[num_ctrls]->ldctl_oid = LDAP_CONTROL_SYNC_STATE;
203         ctrls[num_ctrls]->ldctl_iscritical = (op->o_sync == SLAP_CONTROL_CRITICAL);
204         ret = ber_flatten2( ber, &ctrls[num_ctrls]->ldctl_value, 1 );
205
206         ber_free_buf( ber );
207
208         if ( ret < 0 ) {
209                 Debug( LDAP_DEBUG_TRACE,
210                         "slap_build_sync_ctrl: ber_flatten2 failed\n",
211                         0, 0, 0 );
212                 send_ldap_error( op, rs, LDAP_OTHER, "internal error" );
213                 return ret;
214         }
215
216         return LDAP_SUCCESS;
217 }
218
219 /* Build a LDAPsync final state control */
220 static int
221 syncprov_done_ctrl(
222         Operation       *op,
223         SlapReply       *rs,
224         LDAPControl     **ctrls,
225         int                     num_ctrls,
226         int                     send_cookie,
227         struct berval *cookie,
228         int                     refreshDeletes )
229 {
230         int ret;
231         BerElementBuffer berbuf;
232         BerElement *ber = (BerElement *)&berbuf;
233
234         ber_init2( ber, NULL, LBER_USE_DER );
235         ber_set_option( ber, LBER_OPT_BER_MEMCTX, &op->o_tmpmemctx );
236
237         ctrls[num_ctrls] = op->o_tmpalloc( sizeof ( LDAPControl ), op->o_tmpmemctx );
238
239         ber_printf( ber, "{" );
240         if ( send_cookie && cookie ) {
241                 ber_printf( ber, "O", cookie );
242         }
243         if ( refreshDeletes == LDAP_SYNC_REFRESH_DELETES ) {
244                 ber_printf( ber, "b", refreshDeletes );
245         }
246         ber_printf( ber, "N}" );
247
248         ctrls[num_ctrls]->ldctl_oid = LDAP_CONTROL_SYNC_DONE;
249         ctrls[num_ctrls]->ldctl_iscritical = (op->o_sync == SLAP_CONTROL_CRITICAL);
250         ret = ber_flatten2( ber, &ctrls[num_ctrls]->ldctl_value, 1 );
251
252         ber_free_buf( ber );
253
254         if ( ret < 0 ) {
255                 Debug( LDAP_DEBUG_TRACE,
256                         "syncprov_done_ctrl: ber_flatten2 failed\n",
257                         0, 0, 0 );
258                 send_ldap_error( op, rs, LDAP_OTHER, "internal error" );
259                 return ret;
260         }
261
262         return LDAP_SUCCESS;
263 }
264
265 static int
266 syncprov_sendinfo(
267         Operation       *op,
268         SlapReply       *rs,
269         int                     type,
270         struct berval *cookie,
271         int                     refreshDone,
272         BerVarray       syncUUIDs,
273         int                     refreshDeletes )
274 {
275         BerElementBuffer berbuf;
276         BerElement *ber = (BerElement *)&berbuf;
277         struct berval rspdata;
278
279         int ret;
280
281         ber_init2( ber, NULL, LBER_USE_DER );
282         ber_set_option( ber, LBER_OPT_BER_MEMCTX, &op->o_tmpmemctx );
283
284         if ( type ) {
285                 switch ( type ) {
286                 case LDAP_TAG_SYNC_NEW_COOKIE:
287                         ber_printf( ber, "tO", type, cookie );
288                         break;
289                 case LDAP_TAG_SYNC_REFRESH_DELETE:
290                 case LDAP_TAG_SYNC_REFRESH_PRESENT:
291                         ber_printf( ber, "t{", type );
292                         if ( cookie ) {
293                                 ber_printf( ber, "O", cookie );
294                         }
295                         if ( refreshDone == 0 ) {
296                                 ber_printf( ber, "b", refreshDone );
297                         }
298                         ber_printf( ber, "N}" );
299                         break;
300                 case LDAP_TAG_SYNC_ID_SET:
301                         ber_printf( ber, "t{", type );
302                         if ( cookie ) {
303                                 ber_printf( ber, "O", cookie );
304                         }
305                         if ( refreshDeletes == 1 ) {
306                                 ber_printf( ber, "b", refreshDeletes );
307                         }
308                         ber_printf( ber, "[W]", syncUUIDs );
309                         ber_printf( ber, "N}" );
310                         break;
311                 default:
312                         Debug( LDAP_DEBUG_TRACE,
313                                 "syncprov_sendinfo: invalid syncinfo type (%d)\n",
314                                 type, 0, 0 );
315                         return LDAP_OTHER;
316                 }
317         }
318
319         ret = ber_flatten2( ber, &rspdata, 0 );
320
321         if ( ret < 0 ) {
322                 Debug( LDAP_DEBUG_TRACE,
323                         "syncprov_sendinfo: ber_flatten2 failed\n",
324                         0, 0, 0 );
325                 send_ldap_error( op, rs, LDAP_OTHER, "internal error" );
326                 return ret;
327         }
328
329         rs->sr_rspoid = LDAP_SYNC_INFO;
330         rs->sr_rspdata = &rspdata;
331         send_ldap_intermediate( op, rs );
332         rs->sr_rspdata = NULL;
333         ber_free_buf( ber );
334
335         return LDAP_SUCCESS;
336 }
337
338 /* Find a modtarget in an AVL tree */
339 static int
340 sp_avl_cmp( const void *c1, const void *c2 )
341 {
342         const modtarget *m1, *m2;
343         int rc;
344
345         m1 = c1; m2 = c2;
346         rc = m1->mt_op->o_req_ndn.bv_len - m2->mt_op->o_req_ndn.bv_len;
347
348         if ( rc ) return rc;
349         return ber_bvcmp( &m1->mt_op->o_req_ndn, &m2->mt_op->o_req_ndn );
350 }
351
352 /* syncprov_findbase:
353  *   finds the true DN of the base of a search (with alias dereferencing) and
354  * checks to make sure the base entry doesn't get replaced with a different
355  * entry (e.g., swapping trees via ModDN, or retargeting an alias). If a
356  * change is detected, any persistent search on this base must be terminated /
357  * reloaded.
358  *   On the first call, we just save the DN and entryID. On subsequent calls
359  * we compare the DN and entryID with the saved values.
360  */
361 static int
362 findbase_cb( Operation *op, SlapReply *rs )
363 {
364         slap_callback *sc = op->o_callback;
365
366         if ( rs->sr_type == REP_SEARCH && rs->sr_err == LDAP_SUCCESS ) {
367                 fbase_cookie *fc = sc->sc_private;
368
369                 /* If no entryID, we're looking for the first time.
370                  * Just store whatever we got.
371                  */
372                 if ( fc->fss->s_eid == NOID ) {
373                         fc->fbase = 2;
374                         fc->fss->s_eid = rs->sr_entry->e_id;
375                         ber_dupbv( &fc->fss->s_base, &rs->sr_entry->e_nname );
376
377                 } else if ( rs->sr_entry->e_id == fc->fss->s_eid &&
378                         dn_match( &rs->sr_entry->e_nname, &fc->fss->s_base )) {
379
380                 /* OK, the DN is the same and the entryID is the same. */
381                         fc->fbase = 1;
382                 }
383         }
384         if ( rs->sr_err != LDAP_SUCCESS ) {
385                 Debug( LDAP_DEBUG_ANY, "findbase failed! %d\n", rs->sr_err,0,0 );
386         }
387         return LDAP_SUCCESS;
388 }
389
390 static Filter generic_filter = { LDAP_FILTER_PRESENT, { 0 }, NULL };
391 static struct berval generic_filterstr = BER_BVC("(objectclass=*)");
392
393 static int
394 syncprov_findbase( Operation *op, fbase_cookie *fc )
395 {
396         opcookie *opc = op->o_callback->sc_private;
397         slap_overinst *on = opc->son;
398
399         /* Use basic parameters from syncrepl search, but use
400          * current op's threadctx / tmpmemctx
401          */
402         ldap_pvt_thread_mutex_lock( &fc->fss->s_mutex );
403         if ( fc->fss->s_flags & PS_FIND_BASE ) {
404                 slap_callback cb = {0};
405                 Operation fop;
406                 SlapReply frs = { REP_RESULT };
407                 BackendInfo *bi;
408                 int rc;
409
410                 fc->fss->s_flags ^= PS_FIND_BASE;
411                 ldap_pvt_thread_mutex_unlock( &fc->fss->s_mutex );
412
413                 fop = *fc->fss->s_op;
414
415                 fop.o_hdr = op->o_hdr;
416                 fop.o_bd = op->o_bd;
417                 fop.o_time = op->o_time;
418                 fop.o_tincr = op->o_tincr;
419                 bi = op->o_bd->bd_info;
420
421                 cb.sc_response = findbase_cb;
422                 cb.sc_private = fc;
423
424                 fop.o_sync_mode = 0;    /* turn off sync mode */
425                 fop.o_managedsait = SLAP_CONTROL_CRITICAL;
426                 fop.o_callback = &cb;
427                 fop.o_tag = LDAP_REQ_SEARCH;
428                 fop.ors_scope = LDAP_SCOPE_BASE;
429                 fop.ors_limit = NULL;
430                 fop.ors_slimit = 1;
431                 fop.ors_tlimit = SLAP_NO_LIMIT;
432                 fop.ors_attrs = slap_anlist_no_attrs;
433                 fop.ors_attrsonly = 1;
434                 fop.ors_filter = &generic_filter;
435                 fop.ors_filterstr = generic_filterstr;
436
437                 rc = overlay_op_walk( &fop, &frs, op_search, on->on_info, on );
438                 op->o_bd->bd_info = bi;
439         } else {
440                 ldap_pvt_thread_mutex_unlock( &fc->fss->s_mutex );
441                 fc->fbase = 1;
442         }
443
444         /* After the first call, see if the fdn resides in the scope */
445         if ( fc->fbase == 1 ) {
446                 switch ( fc->fss->s_op->ors_scope ) {
447                 case LDAP_SCOPE_BASE:
448                         fc->fscope = dn_match( fc->fdn, &fc->fss->s_base );
449                         break;
450                 case LDAP_SCOPE_ONELEVEL: {
451                         struct berval pdn;
452                         dnParent( fc->fdn, &pdn );
453                         fc->fscope = dn_match( &pdn, &fc->fss->s_base );
454                         break; }
455                 case LDAP_SCOPE_SUBTREE:
456                         fc->fscope = dnIsSuffix( fc->fdn, &fc->fss->s_base );
457                         break;
458                 case LDAP_SCOPE_SUBORDINATE:
459                         fc->fscope = dnIsSuffix( fc->fdn, &fc->fss->s_base ) &&
460                                 !dn_match( fc->fdn, &fc->fss->s_base );
461                         break;
462                 }
463         }
464
465         if ( fc->fbase )
466                 return LDAP_SUCCESS;
467
468         /* If entryID has changed, then the base of this search has
469          * changed. Invalidate the psearch.
470          */
471         return LDAP_NO_SUCH_OBJECT;
472 }
473
474 /* syncprov_findcsn:
475  *   This function has three different purposes, but they all use a search
476  * that filters on entryCSN so they're combined here.
477  * 1: at startup time, after a contextCSN has been read from the database,
478  * we search for all entries with CSN >= contextCSN in case the contextCSN
479  * was not checkpointed at the previous shutdown.
480  *
481  * 2: when the current contextCSN is known and we have a sync cookie, we search
482  * for one entry with CSN = the cookie CSN. If not found, try <= cookie CSN.
483  * If an entry is found, the cookie CSN is valid, otherwise it is stale.
484  *
485  * 3: during a refresh phase, we search for all entries with CSN <= the cookie
486  * CSN, and generate Present records for them. We always collect this result
487  * in SyncID sets, even if there's only one match.
488  */
489 typedef enum find_csn_t {
490         FIND_MAXCSN     = 1,
491         FIND_CSN        = 2,
492         FIND_PRESENT    = 3
493 } find_csn_t;
494
495 static int
496 findmax_cb( Operation *op, SlapReply *rs )
497 {
498         if ( rs->sr_type == REP_SEARCH && rs->sr_err == LDAP_SUCCESS ) {
499                 struct berval *maxcsn = op->o_callback->sc_private;
500                 Attribute *a = attr_find( rs->sr_entry->e_attrs,
501                         slap_schema.si_ad_entryCSN );
502
503                 if ( a && ber_bvcmp( &a->a_vals[0], maxcsn ) > 0 ) {
504                         maxcsn->bv_len = a->a_vals[0].bv_len;
505                         strcpy( maxcsn->bv_val, a->a_vals[0].bv_val );
506                 }
507         }
508         return LDAP_SUCCESS;
509 }
510
511 static int
512 findcsn_cb( Operation *op, SlapReply *rs )
513 {
514         slap_callback *sc = op->o_callback;
515
516         /* We just want to know that at least one exists, so it's OK if
517          * we exceed the unchecked limit.
518          */
519         if ( rs->sr_err == LDAP_ADMINLIMIT_EXCEEDED ||
520                 (rs->sr_type == REP_SEARCH && rs->sr_err == LDAP_SUCCESS )) {
521                 sc->sc_private = (void *)1;
522         }
523         return LDAP_SUCCESS;
524 }
525
526 /* Build a list of entryUUIDs for sending in a SyncID set */
527
528 #define UUID_LEN        16
529
530 typedef struct fpres_cookie {
531         int num;
532         BerVarray uuids;
533         char *last;
534 } fpres_cookie;
535
536 static int
537 findpres_cb( Operation *op, SlapReply *rs )
538 {
539         slap_callback *sc = op->o_callback;
540         fpres_cookie *pc = sc->sc_private;
541         Attribute *a;
542         int ret = SLAP_CB_CONTINUE;
543
544         switch ( rs->sr_type ) {
545         case REP_SEARCH:
546                 a = attr_find( rs->sr_entry->e_attrs, slap_schema.si_ad_entryUUID );
547                 if ( a ) {
548                         pc->uuids[pc->num].bv_val = pc->last;
549                         AC_MEMCPY( pc->uuids[pc->num].bv_val, a->a_nvals[0].bv_val,
550                                 pc->uuids[pc->num].bv_len );
551                         pc->num++;
552                         pc->last = pc->uuids[pc->num].bv_val;
553                         pc->uuids[pc->num].bv_val = NULL;
554                 }
555                 ret = LDAP_SUCCESS;
556                 if ( pc->num != SLAP_SYNCUUID_SET_SIZE )
557                         break;
558                 /* FALLTHRU */
559         case REP_RESULT:
560                 ret = rs->sr_err;
561                 if ( pc->num ) {
562                         ret = syncprov_sendinfo( op, rs, LDAP_TAG_SYNC_ID_SET, NULL,
563                                 0, pc->uuids, 0 );
564                         pc->uuids[pc->num].bv_val = pc->last;
565                         pc->num = 0;
566                         pc->last = pc->uuids[0].bv_val;
567                 }
568                 break;
569         default:
570                 break;
571         }
572         return ret;
573 }
574
575 static int
576 syncprov_findcsn( Operation *op, find_csn_t mode )
577 {
578         slap_overinst           *on = (slap_overinst *)op->o_bd->bd_info;
579         syncprov_info_t         *si = on->on_bi.bi_private;
580
581         slap_callback cb = {0};
582         Operation fop;
583         SlapReply frs = { REP_RESULT };
584         char buf[LDAP_LUTIL_CSNSTR_BUFSIZE + STRLENOF("(entryCSN<=)")];
585         char cbuf[LDAP_LUTIL_CSNSTR_BUFSIZE];
586         struct berval maxcsn;
587         Filter cf;
588         AttributeAssertion eq = ATTRIBUTEASSERTION_INIT;
589         fpres_cookie pcookie;
590         sync_control *srs = NULL;
591         struct slap_limits_set fc_limits;
592         int i, rc = LDAP_SUCCESS, findcsn_retry = 1;
593         int maxid = 0;
594
595         if ( mode != FIND_MAXCSN ) {
596                 srs = op->o_controls[slap_cids.sc_LDAPsync];
597         }
598
599         fop = *op;
600         fop.o_sync_mode &= SLAP_CONTROL_MASK;   /* turn off sync_mode */
601         /* We want pure entries, not referrals */
602         fop.o_managedsait = SLAP_CONTROL_CRITICAL;
603
604         cf.f_ava = &eq;
605         cf.f_av_desc = slap_schema.si_ad_entryCSN;
606         BER_BVZERO( &cf.f_av_value );
607         cf.f_next = NULL;
608
609         fop.o_callback = &cb;
610         fop.ors_limit = NULL;
611         fop.ors_tlimit = SLAP_NO_LIMIT;
612         fop.ors_filter = &cf;
613         fop.ors_filterstr.bv_val = buf;
614
615 again:
616         switch( mode ) {
617         case FIND_MAXCSN:
618                 cf.f_choice = LDAP_FILTER_GE;
619                 cf.f_av_value = si->si_ctxcsn[0];
620                 /* If there are multiple CSNs, use the largest */
621                 for ( i=1; i<si->si_numcsns; i++) {
622                         if ( ber_bvcmp( &cf.f_av_value, &si->si_ctxcsn[i] ) < 0 ) {
623                                 cf.f_av_value = si->si_ctxcsn[i];
624                                 maxid = i;
625                         }
626                 }
627                 fop.ors_filterstr.bv_len = sprintf( buf, "(entryCSN>=%s)",
628                         cf.f_av_value.bv_val );
629                 fop.ors_attrsonly = 0;
630                 fop.ors_attrs = csn_anlist;
631                 fop.ors_slimit = SLAP_NO_LIMIT;
632                 cb.sc_private = &maxcsn;
633                 cb.sc_response = findmax_cb;
634                 strcpy( cbuf, cf.f_av_value.bv_val );
635                 maxcsn.bv_val = cbuf;
636                 maxcsn.bv_len = cf.f_av_value.bv_len;
637                 break;
638         case FIND_CSN:
639                 if ( BER_BVISEMPTY( &cf.f_av_value )) {
640                         cf.f_av_value = srs->sr_state.ctxcsn[0];
641                         /* If there are multiple CSNs, use the smallest */
642                         for ( i=1; i<srs->sr_state.numcsns; i++ ) {
643                                 if ( ber_bvcmp( &cf.f_av_value, &srs->sr_state.ctxcsn[i] )
644                                         > 0 ) {
645                                         cf.f_av_value = srs->sr_state.ctxcsn[i];
646                                 }
647                         }
648                 }
649                 /* Look for exact match the first time */
650                 if ( findcsn_retry ) {
651                         cf.f_choice = LDAP_FILTER_EQUALITY;
652                         fop.ors_filterstr.bv_len = sprintf( buf, "(entryCSN=%s)",
653                                 cf.f_av_value.bv_val );
654                 /* On retry, look for <= */
655                 } else {
656                         cf.f_choice = LDAP_FILTER_LE;
657                         fop.ors_limit = &fc_limits;
658                         memset( &fc_limits, 0, sizeof( fc_limits ));
659                         fc_limits.lms_s_unchecked = 1;
660                         fop.ors_filterstr.bv_len = sprintf( buf, "(entryCSN<=%s)",
661                                 cf.f_av_value.bv_val );
662                 }
663                 fop.ors_attrsonly = 1;
664                 fop.ors_attrs = slap_anlist_no_attrs;
665                 fop.ors_slimit = 1;
666                 cb.sc_private = NULL;
667                 cb.sc_response = findcsn_cb;
668                 break;
669         case FIND_PRESENT:
670                 fop.ors_filter = op->ors_filter;
671                 fop.ors_filterstr = op->ors_filterstr;
672                 fop.ors_attrsonly = 0;
673                 fop.ors_attrs = uuid_anlist;
674                 fop.ors_slimit = SLAP_NO_LIMIT;
675                 cb.sc_private = &pcookie;
676                 cb.sc_response = findpres_cb;
677                 pcookie.num = 0;
678
679                 /* preallocate storage for a full set */
680                 pcookie.uuids = op->o_tmpalloc( (SLAP_SYNCUUID_SET_SIZE+1) *
681                         sizeof(struct berval) + SLAP_SYNCUUID_SET_SIZE * UUID_LEN,
682                         op->o_tmpmemctx );
683                 pcookie.last = (char *)(pcookie.uuids + SLAP_SYNCUUID_SET_SIZE+1);
684                 pcookie.uuids[0].bv_val = pcookie.last;
685                 pcookie.uuids[0].bv_len = UUID_LEN;
686                 for (i=1; i<SLAP_SYNCUUID_SET_SIZE; i++) {
687                         pcookie.uuids[i].bv_val = pcookie.uuids[i-1].bv_val + UUID_LEN;
688                         pcookie.uuids[i].bv_len = UUID_LEN;
689                 }
690                 break;
691         }
692
693         fop.o_bd->bd_info = on->on_info->oi_orig;
694         fop.o_bd->be_search( &fop, &frs );
695         fop.o_bd->bd_info = (BackendInfo *)on;
696
697         switch( mode ) {
698         case FIND_MAXCSN:
699                 if ( ber_bvcmp( &si->si_ctxcsn[maxid], &maxcsn )) {
700                         ber_bvreplace( &si->si_ctxcsn[maxid], &maxcsn );
701                         si->si_numops++;        /* ensure a checkpoint */
702                 }
703                 break;
704         case FIND_CSN:
705                 /* If matching CSN was not found, invalidate the context. */
706                 if ( !cb.sc_private ) {
707                         /* If we didn't find an exact match, then try for <= */
708                         if ( findcsn_retry ) {
709                                 findcsn_retry = 0;
710                                 goto again;
711                         }
712                         rc = LDAP_NO_SUCH_OBJECT;
713                 }
714                 break;
715         case FIND_PRESENT:
716                 op->o_tmpfree( pcookie.uuids, op->o_tmpmemctx );
717                 break;
718         }
719
720         return rc;
721 }
722
723 static void
724 syncprov_free_syncop( syncops *so )
725 {
726         syncres *sr, *srnext;
727         GroupAssertion *ga, *gnext;
728
729         ldap_pvt_thread_mutex_lock( &so->s_mutex );
730         if ( --so->s_inuse > 0 ) {
731                 ldap_pvt_thread_mutex_unlock( &so->s_mutex );
732                 return;
733         }
734         ldap_pvt_thread_mutex_unlock( &so->s_mutex );
735         if ( so->s_flags & PS_IS_DETACHED ) {
736                 filter_free( so->s_op->ors_filter );
737                 for ( ga = so->s_op->o_groups; ga; ga=gnext ) {
738                         gnext = ga->ga_next;
739                         ch_free( ga );
740                 }
741                 ch_free( so->s_op );
742         }
743         ch_free( so->s_base.bv_val );
744         for ( sr=so->s_res; sr; sr=srnext ) {
745                 srnext = sr->s_next;
746                 ch_free( sr );
747         }
748         ldap_pvt_thread_mutex_destroy( &so->s_mutex );
749         ch_free( so );
750 }
751
752 /* Send a persistent search response */
753 static int
754 syncprov_sendresp( Operation *op, opcookie *opc, syncops *so,
755         Entry **e, int mode )
756 {
757         slap_overinst *on = opc->son;
758
759         SlapReply rs = { REP_SEARCH };
760         LDAPControl *ctrls[2];
761         struct berval cookie, csns[2];
762         Entry e_uuid = {0};
763         Attribute a_uuid = {0};
764
765         if ( so->s_op->o_abandon )
766                 return SLAPD_ABANDON;
767
768         ctrls[1] = NULL;
769         csns[0] = opc->sctxcsn;
770         BER_BVZERO( &csns[1] );
771         slap_compose_sync_cookie( op, &cookie, csns, so->s_rid, so->s_sid );
772
773         e_uuid.e_attrs = &a_uuid;
774         a_uuid.a_desc = slap_schema.si_ad_entryUUID;
775         a_uuid.a_nvals = &opc->suuid;
776         rs.sr_err = syncprov_state_ctrl( op, &rs, &e_uuid,
777                 mode, ctrls, 0, 1, &cookie );
778         op->o_tmpfree( cookie.bv_val, op->o_tmpmemctx );
779
780         rs.sr_ctrls = ctrls;
781         op->o_bd->bd_info = (BackendInfo *)on->on_info;
782         switch( mode ) {
783         case LDAP_SYNC_ADD:
784                 rs.sr_entry = *e;
785                 if ( rs.sr_entry->e_private )
786                         rs.sr_flags = REP_ENTRY_MUSTRELEASE;
787                 if ( opc->sreference ) {
788                         rs.sr_ref = get_entry_referrals( op, rs.sr_entry );
789                         rs.sr_err = send_search_reference( op, &rs );
790                         ber_bvarray_free( rs.sr_ref );
791                         if ( !rs.sr_entry )
792                                 *e = NULL;
793                         break;
794                 }
795                 /* fallthru */
796         case LDAP_SYNC_MODIFY:
797                 rs.sr_entry = *e;
798                 if ( rs.sr_entry->e_private )
799                         rs.sr_flags = REP_ENTRY_MUSTRELEASE;
800                 rs.sr_attrs = op->ors_attrs;
801                 rs.sr_err = send_search_entry( op, &rs );
802                 if ( !rs.sr_entry )
803                         *e = NULL;
804                 break;
805         case LDAP_SYNC_DELETE:
806                 e_uuid.e_attrs = NULL;
807                 e_uuid.e_name = opc->sdn;
808                 e_uuid.e_nname = opc->sndn;
809                 rs.sr_entry = &e_uuid;
810                 if ( opc->sreference ) {
811                         struct berval bv = BER_BVNULL;
812                         rs.sr_ref = &bv;
813                         rs.sr_err = send_search_reference( op, &rs );
814                 } else {
815                         rs.sr_err = send_search_entry( op, &rs );
816                 }
817                 break;
818         default:
819                 assert(0);
820         }
821         /* In case someone else freed it already? */
822         if ( rs.sr_ctrls ) {
823                 op->o_tmpfree( rs.sr_ctrls[0], op->o_tmpmemctx );
824                 rs.sr_ctrls = NULL;
825         }
826
827         return rs.sr_err;
828 }
829
830 /* Play back queued responses */
831 static int
832 syncprov_qplay( Operation *op, slap_overinst *on, syncops *so )
833 {
834         syncres *sr;
835         Entry *e;
836         opcookie opc;
837         int rc = 0;
838
839         opc.son = on;
840
841         for (;;) {
842                 ldap_pvt_thread_mutex_lock( &so->s_mutex );
843                 sr = so->s_res;
844                 if ( sr )
845                         so->s_res = sr->s_next;
846                 if ( !so->s_res )
847                         so->s_restail = NULL;
848                 ldap_pvt_thread_mutex_unlock( &so->s_mutex );
849
850                 if ( !sr || so->s_op->o_abandon )
851                         break;
852
853                 opc.sdn = sr->s_dn;
854                 opc.sndn = sr->s_ndn;
855                 opc.suuid = sr->s_uuid;
856                 opc.sctxcsn = sr->s_csn;
857                 opc.sreference = sr->s_isreference;
858                 e = NULL;
859
860                 if ( sr->s_mode != LDAP_SYNC_DELETE ) {
861                         rc = overlay_entry_get_ov( op, &opc.sndn, NULL, NULL, 0, &e, on );
862                         if ( rc ) {
863                                 Debug( LDAP_DEBUG_SYNC, "syncprov_qplay: failed to get %s, "
864                                         "error (%d), ignoring...\n", opc.sndn.bv_val, rc, 0 );
865                                 ch_free( sr );
866                                 rc = 0;
867                                 continue;
868                         }
869                 }
870                 rc = syncprov_sendresp( op, &opc, so, &e, sr->s_mode );
871
872                 if ( e ) {
873                         overlay_entry_release_ov( op, e, 0, on );
874                 }
875
876                 ch_free( sr );
877
878                 if ( rc )
879                         break;
880         }
881         return rc;
882 }
883
884 /* runqueue task for playing back queued responses */
885 static void *
886 syncprov_qtask( void *ctx, void *arg )
887 {
888         struct re_s *rtask = arg;
889         syncops *so = rtask->arg;
890         slap_overinst *on = so->s_op->o_private;
891         OperationBuffer opbuf;
892         Operation *op;
893         BackendDB be;
894         int rc;
895
896         op = &opbuf.ob_op;
897         *op = *so->s_op;
898         op->o_hdr = &opbuf.ob_hdr;
899         op->o_controls = opbuf.ob_controls;
900         memset( op->o_controls, 0, sizeof(opbuf.ob_controls) );
901
902         *op->o_hdr = *so->s_op->o_hdr;
903
904         op->o_tmpmemctx = slap_sl_mem_create(SLAP_SLAB_SIZE, SLAP_SLAB_STACK, ctx, 1);
905         op->o_tmpmfuncs = &slap_sl_mfuncs;
906         op->o_threadctx = ctx;
907
908         /* syncprov_qplay expects a fake db */
909         be = *so->s_op->o_bd;
910         be.be_flags |= SLAP_DBFLAG_OVERLAY;
911         op->o_bd = &be;
912         op->o_private = NULL;
913         op->o_callback = NULL;
914
915         rc = syncprov_qplay( op, on, so );
916
917         /* decrement use count... */
918         syncprov_free_syncop( so );
919
920         /* wait until we get explicitly scheduled again */
921         ldap_pvt_thread_mutex_lock( &slapd_rq.rq_mutex );
922         ldap_pvt_runqueue_stoptask( &slapd_rq, rtask );
923         if ( rc == 0 ) {
924                 ldap_pvt_runqueue_resched( &slapd_rq, rtask, 1 );
925         } else {
926                 /* bail out on any error */
927                 ldap_pvt_runqueue_remove( &slapd_rq, rtask );
928         }
929         ldap_pvt_thread_mutex_unlock( &slapd_rq.rq_mutex );
930
931 #if 0   /* FIXME: connection_close isn't exported from slapd.
932                  * should it be?
933                  */
934         if ( rc ) {
935                 ldap_pvt_thread_mutex_lock( &op->o_conn->c_mutex );
936                 if ( connection_state_closing( op->o_conn )) {
937                         connection_close( op->o_conn );
938                 }
939                 ldap_pvt_thread_mutex_unlock( &op->o_conn->c_mutex );
940         }
941 #endif
942         return NULL;
943 }
944
945 /* Start the task to play back queued psearch responses */
946 static void
947 syncprov_qstart( syncops *so )
948 {
949         int wake=0;
950         ldap_pvt_thread_mutex_lock( &slapd_rq.rq_mutex );
951         if ( !so->s_qtask ) {
952                 so->s_qtask = ldap_pvt_runqueue_insert( &slapd_rq, RUNQ_INTERVAL,
953                         syncprov_qtask, so, "syncprov_qtask",
954                         so->s_op->o_conn->c_peer_name.bv_val );
955                 ++so->s_inuse;
956                 wake = 1;
957         } else {
958                 if (!ldap_pvt_runqueue_isrunning( &slapd_rq, so->s_qtask ) &&
959                         !so->s_qtask->next_sched.tv_sec ) {
960                         so->s_qtask->interval.tv_sec = 0;
961                         ldap_pvt_runqueue_resched( &slapd_rq, so->s_qtask, 0 );
962                         so->s_qtask->interval.tv_sec = RUNQ_INTERVAL;
963                         ++so->s_inuse;
964                         wake = 1;
965                 }
966         }
967         ldap_pvt_thread_mutex_unlock( &slapd_rq.rq_mutex );
968         if ( wake )
969                 slap_wake_listener();
970 }
971
972 /* Queue a persistent search response */
973 static int
974 syncprov_qresp( opcookie *opc, syncops *so, int mode )
975 {
976         syncres *sr;
977         int sid;
978
979         /* Don't send changes back to their originator */
980         sid = slap_parse_csn_sid( &opc->sctxcsn );
981         if ( sid >= 0 && sid == so->s_sid )
982                 return LDAP_SUCCESS;
983
984         sr = ch_malloc(sizeof(syncres) + opc->suuid.bv_len + 1 +
985                 opc->sdn.bv_len + 1 + opc->sndn.bv_len + 1 + opc->sctxcsn.bv_len + 1 );
986         sr->s_next = NULL;
987         sr->s_dn.bv_val = (char *)(sr + 1);
988         sr->s_dn.bv_len = opc->sdn.bv_len;
989         sr->s_mode = mode;
990         sr->s_isreference = opc->sreference;
991         sr->s_ndn.bv_val = lutil_strcopy( sr->s_dn.bv_val,
992                  opc->sdn.bv_val ) + 1;
993         sr->s_ndn.bv_len = opc->sndn.bv_len;
994         sr->s_uuid.bv_val = lutil_strcopy( sr->s_ndn.bv_val,
995                  opc->sndn.bv_val ) + 1;
996         sr->s_uuid.bv_len = opc->suuid.bv_len;
997         AC_MEMCPY( sr->s_uuid.bv_val, opc->suuid.bv_val, opc->suuid.bv_len );
998         sr->s_csn.bv_val = sr->s_uuid.bv_val + sr->s_uuid.bv_len + 1;
999         sr->s_csn.bv_len = opc->sctxcsn.bv_len;
1000         strcpy( sr->s_csn.bv_val, opc->sctxcsn.bv_val );
1001
1002         ldap_pvt_thread_mutex_lock( &so->s_mutex );
1003         if ( !so->s_res ) {
1004                 so->s_res = sr;
1005         } else {
1006                 so->s_restail->s_next = sr;
1007         }
1008         so->s_restail = sr;
1009
1010         /* If the base of the psearch was modified, check it next time round */
1011         if ( so->s_flags & PS_WROTE_BASE ) {
1012                 so->s_flags ^= PS_WROTE_BASE;
1013                 so->s_flags |= PS_FIND_BASE;
1014         }
1015         if ( so->s_flags & PS_IS_DETACHED ) {
1016                 syncprov_qstart( so );
1017         }
1018         ldap_pvt_thread_mutex_unlock( &so->s_mutex );
1019         return LDAP_SUCCESS;
1020 }
1021
1022 static int
1023 syncprov_drop_psearch( syncops *so, int lock )
1024 {
1025         if ( so->s_flags & PS_IS_DETACHED ) {
1026                 if ( lock )
1027                         ldap_pvt_thread_mutex_lock( &so->s_op->o_conn->c_mutex );
1028                 so->s_op->o_conn->c_n_ops_executing--;
1029                 so->s_op->o_conn->c_n_ops_completed++;
1030                 LDAP_STAILQ_REMOVE( &so->s_op->o_conn->c_ops, so->s_op, Operation,
1031                         o_next );
1032                 if ( lock )
1033                         ldap_pvt_thread_mutex_unlock( &so->s_op->o_conn->c_mutex );
1034         }
1035         syncprov_free_syncop( so );
1036
1037         return 0;
1038 }
1039
1040 static int
1041 syncprov_ab_cleanup( Operation *op, SlapReply *rs )
1042 {
1043         slap_callback *sc = op->o_callback;
1044         op->o_callback = sc->sc_next;
1045         syncprov_drop_psearch( op->o_callback->sc_private, 0 );
1046         op->o_tmpfree( sc, op->o_tmpmemctx );
1047         return 0;
1048 }
1049
1050 static int
1051 syncprov_op_abandon( Operation *op, SlapReply *rs )
1052 {
1053         slap_overinst           *on = (slap_overinst *)op->o_bd->bd_info;
1054         syncprov_info_t         *si = on->on_bi.bi_private;
1055         syncops *so, *soprev;
1056
1057         ldap_pvt_thread_mutex_lock( &si->si_ops_mutex );
1058         for ( so=si->si_ops, soprev = (syncops *)&si->si_ops; so;
1059                 soprev=so, so=so->s_next ) {
1060                 if ( so->s_op->o_connid == op->o_connid &&
1061                         so->s_op->o_msgid == op->orn_msgid ) {
1062                                 so->s_op->o_abandon = 1;
1063                                 soprev->s_next = so->s_next;
1064                                 break;
1065                 }
1066         }
1067         ldap_pvt_thread_mutex_unlock( &si->si_ops_mutex );
1068         if ( so ) {
1069                 /* Is this really a Cancel exop? */
1070                 if ( op->o_tag != LDAP_REQ_ABANDON ) {
1071                         so->s_op->o_cancel = SLAP_CANCEL_ACK;
1072                         rs->sr_err = LDAP_CANCELLED;
1073                         send_ldap_result( so->s_op, rs );
1074                         if ( so->s_flags & PS_IS_DETACHED ) {
1075                                 slap_callback *cb;
1076                                 cb = op->o_tmpcalloc( 1, sizeof(slap_callback), op->o_tmpmemctx );
1077                                 cb->sc_cleanup = syncprov_ab_cleanup;
1078                                 cb->sc_next = op->o_callback;
1079                                 cb->sc_private = so;
1080                                 return SLAP_CB_CONTINUE;
1081                         }
1082                 }
1083                 syncprov_drop_psearch( so, 0 );
1084         }
1085         return SLAP_CB_CONTINUE;
1086 }
1087
1088 /* Find which persistent searches are affected by this operation */
1089 static void
1090 syncprov_matchops( Operation *op, opcookie *opc, int saveit )
1091 {
1092         slap_overinst *on = opc->son;
1093         syncprov_info_t         *si = on->on_bi.bi_private;
1094
1095         fbase_cookie fc;
1096         syncops *ss, *sprev, *snext;
1097         Entry *e = NULL;
1098         Attribute *a;
1099         int rc;
1100         struct berval newdn;
1101         int freefdn = 0;
1102         BackendDB *b0 = op->o_bd, db;
1103
1104         fc.fdn = &op->o_req_ndn;
1105         /* compute new DN */
1106         if ( op->o_tag == LDAP_REQ_MODRDN && !saveit ) {
1107                 struct berval pdn;
1108                 if ( op->orr_nnewSup ) pdn = *op->orr_nnewSup;
1109                 else dnParent( fc.fdn, &pdn );
1110                 build_new_dn( &newdn, &pdn, &op->orr_nnewrdn, op->o_tmpmemctx );
1111                 fc.fdn = &newdn;
1112                 freefdn = 1;
1113         }
1114         if ( op->o_tag != LDAP_REQ_ADD ) {
1115                 if ( !SLAP_ISOVERLAY( op->o_bd )) {
1116                         db = *op->o_bd;
1117                         op->o_bd = &db;
1118                 }
1119                 rc = overlay_entry_get_ov( op, fc.fdn, NULL, NULL, 0, &e, on );
1120                 /* If we're sending responses now, make a copy and unlock the DB */
1121                 if ( e && !saveit ) {
1122                         Entry *e2 = entry_dup( e );
1123                         overlay_entry_release_ov( op, e, 0, on );
1124                         e = e2;
1125                 }
1126                 if ( rc ) {
1127                         op->o_bd = b0;
1128                         return;
1129                 }
1130         } else {
1131                 e = op->ora_e;
1132         }
1133
1134         if ( saveit || op->o_tag == LDAP_REQ_ADD ) {
1135                 ber_dupbv_x( &opc->sdn, &e->e_name, op->o_tmpmemctx );
1136                 ber_dupbv_x( &opc->sndn, &e->e_nname, op->o_tmpmemctx );
1137                 opc->sreference = is_entry_referral( e );
1138                 a = attr_find( e->e_attrs, slap_schema.si_ad_entryUUID );
1139                 if ( a )
1140                         ber_dupbv_x( &opc->suuid, &a->a_nvals[0], op->o_tmpmemctx );
1141         } else if ( op->o_tag == LDAP_REQ_MODRDN && !saveit ) {
1142                 op->o_tmpfree( opc->sndn.bv_val, op->o_tmpmemctx );
1143                 op->o_tmpfree( opc->sdn.bv_val, op->o_tmpmemctx );
1144                 ber_dupbv_x( &opc->sdn, &e->e_name, op->o_tmpmemctx );
1145                 ber_dupbv_x( &opc->sndn, &e->e_nname, op->o_tmpmemctx );
1146         }
1147
1148         ldap_pvt_thread_mutex_lock( &si->si_ops_mutex );
1149         for (ss = si->si_ops, sprev = (syncops *)&si->si_ops; ss;
1150                 sprev = ss, ss=snext)
1151         {
1152                 syncmatches *sm;
1153                 int found = 0;
1154
1155                 snext = ss->s_next;
1156                 /* validate base */
1157                 fc.fss = ss;
1158                 fc.fbase = 0;
1159                 fc.fscope = 0;
1160
1161                 /* If the base of the search is missing, signal a refresh */
1162                 rc = syncprov_findbase( op, &fc );
1163                 if ( rc != LDAP_SUCCESS ) {
1164                         SlapReply rs = {REP_RESULT};
1165                         send_ldap_error( ss->s_op, &rs, LDAP_SYNC_REFRESH_REQUIRED,
1166                                 "search base has changed" );
1167                         sprev->s_next = snext;
1168                         syncprov_drop_psearch( ss, 1 );
1169                         ss = sprev;
1170                         continue;
1171                 }
1172
1173
1174                 /* If we're sending results now, look for this op in old matches */
1175                 if ( !saveit ) {
1176                         syncmatches *old;
1177
1178                         /* Did we modify the search base? */
1179                         if ( dn_match( &op->o_req_ndn, &ss->s_base )) {
1180                                 ldap_pvt_thread_mutex_lock( &ss->s_mutex );
1181                                 ss->s_flags |= PS_WROTE_BASE;
1182                                 ldap_pvt_thread_mutex_unlock( &ss->s_mutex );
1183                         }
1184
1185                         for ( sm=opc->smatches, old=(syncmatches *)&opc->smatches; sm;
1186                                 old=sm, sm=sm->sm_next ) {
1187                                 if ( sm->sm_op == ss ) {
1188                                         found = 1;
1189                                         old->sm_next = sm->sm_next;
1190                                         op->o_tmpfree( sm, op->o_tmpmemctx );
1191                                         break;
1192                                 }
1193                         }
1194                 }
1195
1196                 /* check if current o_req_dn is in scope and matches filter */
1197                 if ( fc.fscope && test_filter( op, e, ss->s_op->ors_filter ) ==
1198                         LDAP_COMPARE_TRUE ) {
1199                         if ( saveit ) {
1200                                 sm = op->o_tmpalloc( sizeof(syncmatches), op->o_tmpmemctx );
1201                                 sm->sm_next = opc->smatches;
1202                                 sm->sm_op = ss;
1203                                 ldap_pvt_thread_mutex_lock( &ss->s_mutex );
1204                                 ++ss->s_inuse;
1205                                 ldap_pvt_thread_mutex_unlock( &ss->s_mutex );
1206                                 opc->smatches = sm;
1207                         } else {
1208                                 /* if found send UPDATE else send ADD */
1209                                 syncprov_qresp( opc, ss,
1210                                         found ? LDAP_SYNC_MODIFY : LDAP_SYNC_ADD );
1211                         }
1212                 } else if ( !saveit && found ) {
1213                         /* send DELETE */
1214                         syncprov_qresp( opc, ss, LDAP_SYNC_DELETE );
1215                 }
1216         }
1217         ldap_pvt_thread_mutex_unlock( &si->si_ops_mutex );
1218
1219         if ( op->o_tag != LDAP_REQ_ADD && e ) {
1220                 if ( !SLAP_ISOVERLAY( op->o_bd )) {
1221                         op->o_bd = &db;
1222                 }
1223                 overlay_entry_release_ov( op, e, 0, on );
1224                 op->o_bd = b0;
1225         }
1226         if ( freefdn ) {
1227                 op->o_tmpfree( fc.fdn->bv_val, op->o_tmpmemctx );
1228         }
1229         op->o_bd = b0;
1230 }
1231
1232 static int
1233 syncprov_op_cleanup( Operation *op, SlapReply *rs )
1234 {
1235         slap_callback *cb = op->o_callback;
1236         opcookie *opc = cb->sc_private;
1237         slap_overinst *on = opc->son;
1238         syncprov_info_t         *si = on->on_bi.bi_private;
1239         syncmatches *sm, *snext;
1240         modtarget *mt, mtdummy;
1241
1242         for (sm = opc->smatches; sm; sm=snext) {
1243                 snext = sm->sm_next;
1244                 syncprov_free_syncop( sm->sm_op );
1245                 op->o_tmpfree( sm, op->o_tmpmemctx );
1246         }
1247
1248         /* Remove op from lock table */
1249         mtdummy.mt_op = op;
1250         ldap_pvt_thread_mutex_lock( &si->si_mods_mutex );
1251         mt = avl_find( si->si_mods, &mtdummy, sp_avl_cmp );
1252         if ( mt ) {
1253                 modinst *mi = mt->mt_mods;
1254
1255                 /* If there are more, promote the next one */
1256                 ldap_pvt_thread_mutex_lock( &mt->mt_mutex );
1257                 if ( mi->mi_next ) {
1258                         mt->mt_mods = mi->mi_next;
1259                         mt->mt_op = mt->mt_mods->mi_op;
1260                         ldap_pvt_thread_mutex_unlock( &mt->mt_mutex );
1261                 } else {
1262                         avl_delete( &si->si_mods, mt, sp_avl_cmp );
1263                         ldap_pvt_thread_mutex_unlock( &mt->mt_mutex );
1264                         ldap_pvt_thread_mutex_destroy( &mt->mt_mutex );
1265                         ch_free( mt );
1266                 }
1267         }
1268         ldap_pvt_thread_mutex_unlock( &si->si_mods_mutex );
1269         if ( !BER_BVISNULL( &opc->suuid ))
1270                 op->o_tmpfree( opc->suuid.bv_val, op->o_tmpmemctx );
1271         if ( !BER_BVISNULL( &opc->sndn ))
1272                 op->o_tmpfree( opc->sndn.bv_val, op->o_tmpmemctx );
1273         if ( !BER_BVISNULL( &opc->sdn ))
1274                 op->o_tmpfree( opc->sdn.bv_val, op->o_tmpmemctx );
1275         op->o_callback = cb->sc_next;
1276         op->o_tmpfree(cb, op->o_tmpmemctx);
1277
1278         return 0;
1279 }
1280
1281 static void
1282 syncprov_checkpoint( Operation *op, SlapReply *rs, slap_overinst *on )
1283 {
1284         syncprov_info_t *si = (syncprov_info_t *)on->on_bi.bi_private;
1285         Modifications mod;
1286         Operation opm;
1287         SlapReply rsm = { 0 };
1288         slap_callback cb = {0};
1289
1290         mod.sml_values = si->si_ctxcsn;
1291         mod.sml_nvalues = NULL;
1292         mod.sml_desc = slap_schema.si_ad_contextCSN;
1293         mod.sml_op = LDAP_MOD_REPLACE;
1294         mod.sml_flags = 0;
1295         mod.sml_next = NULL;
1296
1297         cb.sc_response = slap_null_cb;
1298         opm = *op;
1299         opm.o_tag = LDAP_REQ_MODIFY;
1300         opm.o_callback = &cb;
1301         opm.orm_modlist = &mod;
1302         opm.orm_no_opattrs = 1;
1303         opm.o_req_dn = op->o_bd->be_suffix[0];
1304         opm.o_req_ndn = op->o_bd->be_nsuffix[0];
1305         opm.o_bd->bd_info = on->on_info->oi_orig;
1306         opm.o_managedsait = SLAP_CONTROL_NONCRITICAL;
1307         opm.o_no_schema_check = 1;
1308         opm.o_bd->be_modify( &opm, &rsm );
1309         if ( mod.sml_next != NULL ) {
1310                 slap_mods_free( mod.sml_next, 1 );
1311         }
1312         opm.orm_no_opattrs = 0;
1313 }
1314
1315 static void
1316 syncprov_add_slog( Operation *op )
1317 {
1318         opcookie *opc = op->o_callback->sc_private;
1319         slap_overinst *on = opc->son;
1320         syncprov_info_t         *si = on->on_bi.bi_private;
1321         sessionlog *sl;
1322         slog_entry *se;
1323
1324         sl = si->si_logs;
1325         {
1326                 /* Allocate a record. UUIDs are not NUL-terminated. */
1327                 se = ch_malloc( sizeof( slog_entry ) + opc->suuid.bv_len + 
1328                         op->o_csn.bv_len + 1 );
1329                 se->se_next = NULL;
1330                 se->se_tag = op->o_tag;
1331
1332                 se->se_uuid.bv_val = (char *)(&se[1]);
1333                 AC_MEMCPY( se->se_uuid.bv_val, opc->suuid.bv_val, opc->suuid.bv_len );
1334                 se->se_uuid.bv_len = opc->suuid.bv_len;
1335
1336                 se->se_csn.bv_val = se->se_uuid.bv_val + opc->suuid.bv_len;
1337                 AC_MEMCPY( se->se_csn.bv_val, op->o_csn.bv_val, op->o_csn.bv_len );
1338                 se->se_csn.bv_val[op->o_csn.bv_len] = '\0';
1339                 se->se_csn.bv_len = op->o_csn.bv_len;
1340                 se->se_sid = slap_parse_csn_sid( &se->se_csn );
1341
1342                 ldap_pvt_thread_mutex_lock( &sl->sl_mutex );
1343                 if ( sl->sl_head ) {
1344                         sl->sl_tail->se_next = se;
1345                 } else {
1346                         sl->sl_head = se;
1347                 }
1348                 sl->sl_tail = se;
1349                 sl->sl_num++;
1350                 while ( sl->sl_num > sl->sl_size ) {
1351                         se = sl->sl_head;
1352                         sl->sl_head = se->se_next;
1353                         strcpy( sl->sl_mincsn.bv_val, se->se_csn.bv_val );
1354                         sl->sl_mincsn.bv_len = se->se_csn.bv_len;
1355                         ch_free( se );
1356                         sl->sl_num--;
1357                 }
1358                 ldap_pvt_thread_mutex_unlock( &sl->sl_mutex );
1359         }
1360 }
1361
1362 /* Just set a flag if we found the matching entry */
1363 static int
1364 playlog_cb( Operation *op, SlapReply *rs )
1365 {
1366         if ( rs->sr_type == REP_SEARCH ) {
1367                 op->o_callback->sc_private = (void *)1;
1368         }
1369         return rs->sr_err;
1370 }
1371
1372 /* enter with sl->sl_mutex locked, release before returning */
1373 static void
1374 syncprov_playlog( Operation *op, SlapReply *rs, sessionlog *sl,
1375         sync_control *srs, BerVarray ctxcsn, int numcsns, int *sids )
1376 {
1377         slap_overinst           *on = (slap_overinst *)op->o_bd->bd_info;
1378         slog_entry *se;
1379         int i, j, ndel, num, nmods, mmods;
1380         char cbuf[LDAP_LUTIL_CSNSTR_BUFSIZE];
1381         BerVarray uuids;
1382         struct berval delcsn[2];
1383
1384         if ( !sl->sl_num ) {
1385                 ldap_pvt_thread_mutex_unlock( &sl->sl_mutex );
1386                 return;
1387         }
1388
1389         num = sl->sl_num;
1390         i = 0;
1391         nmods = 0;
1392
1393         uuids = op->o_tmpalloc( (num+1) * sizeof( struct berval ) +
1394                 num * UUID_LEN, op->o_tmpmemctx );
1395         uuids[0].bv_val = (char *)(uuids + num + 1);
1396
1397         delcsn[0].bv_len = 0;
1398         delcsn[0].bv_val = cbuf;
1399         BER_BVZERO(&delcsn[1]);
1400
1401         /* Make a copy of the relevant UUIDs. Put the Deletes up front
1402          * and everything else at the end. Do this first so we can
1403          * unlock the list mutex.
1404          */
1405         Debug( LDAP_DEBUG_SYNC, "srs csn %s\n",
1406                 srs->sr_state.ctxcsn[0].bv_val, 0, 0 );
1407         for ( se=sl->sl_head; se; se=se->se_next ) {
1408                 int k;
1409                 Debug( LDAP_DEBUG_SYNC, "log csn %s\n", se->se_csn.bv_val, 0, 0 );
1410                 ndel = 1;
1411                 for ( k=0; k<srs->sr_state.numcsns; k++ ) {
1412                         if ( se->se_sid == srs->sr_state.sids[k] ) {
1413                                 ndel = ber_bvcmp( &se->se_csn, &srs->sr_state.ctxcsn[k] );
1414                                 break;
1415                         }
1416                 }
1417                 if ( ndel <= 0 ) {
1418                         Debug( LDAP_DEBUG_SYNC, "cmp %d, too old\n", ndel, 0, 0 );
1419                         continue;
1420                 }
1421                 ndel = 0;
1422                 for ( k=0; k<numcsns; k++ ) {
1423                         if ( se->se_sid == sids[k] ) {
1424                                 ndel = ber_bvcmp( &se->se_csn, &ctxcsn[k] );
1425                                 break;
1426                         }
1427                 }
1428                 if ( ndel > 0 ) {
1429                         Debug( LDAP_DEBUG_SYNC, "cmp %d, too new\n", ndel, 0, 0 );
1430                         break;
1431                 }
1432                 if ( se->se_tag == LDAP_REQ_DELETE ) {
1433                         j = i;
1434                         i++;
1435                         AC_MEMCPY( cbuf, se->se_csn.bv_val, se->se_csn.bv_len );
1436                         delcsn[0].bv_len = se->se_csn.bv_len;
1437                         delcsn[0].bv_val[delcsn[0].bv_len] = '\0';
1438                 } else {
1439                         nmods++;
1440                         j = num - nmods;
1441                 }
1442                 uuids[j].bv_val = uuids[0].bv_val + (j * UUID_LEN);
1443                 AC_MEMCPY(uuids[j].bv_val, se->se_uuid.bv_val, UUID_LEN);
1444                 uuids[j].bv_len = UUID_LEN;
1445         }
1446         ldap_pvt_thread_mutex_unlock( &sl->sl_mutex );
1447
1448         ndel = i;
1449
1450         /* Zero out unused slots */
1451         for ( i=ndel; i < num - nmods; i++ )
1452                 uuids[i].bv_len = 0;
1453
1454         /* Mods must be validated to see if they belong in this delete set.
1455          */
1456
1457         mmods = nmods;
1458         /* Strip any duplicates */
1459         for ( i=0; i<nmods; i++ ) {
1460                 for ( j=0; j<ndel; j++ ) {
1461                         if ( bvmatch( &uuids[j], &uuids[num - 1 - i] )) {
1462                                 uuids[num - 1 - i].bv_len = 0;
1463                                 mmods --;
1464                                 break;
1465                         }
1466                 }
1467                 if ( uuids[num - 1 - i].bv_len == 0 ) continue;
1468                 for ( j=0; j<i; j++ ) {
1469                         if ( bvmatch( &uuids[num - 1 - j], &uuids[num - 1 - i] )) {
1470                                 uuids[num - 1 - i].bv_len = 0;
1471                                 mmods --;
1472                                 break;
1473                         }
1474                 }
1475         }
1476
1477         if ( mmods ) {
1478                 Operation fop;
1479                 SlapReply frs = { REP_RESULT };
1480                 int rc;
1481                 Filter mf, af;
1482                 AttributeAssertion eq = ATTRIBUTEASSERTION_INIT;
1483                 slap_callback cb = {0};
1484
1485                 fop = *op;
1486
1487                 fop.o_sync_mode = 0;
1488                 fop.o_callback = &cb;
1489                 fop.ors_limit = NULL;
1490                 fop.ors_tlimit = SLAP_NO_LIMIT;
1491                 fop.ors_attrs = slap_anlist_all_attributes;
1492                 fop.ors_attrsonly = 0;
1493                 fop.o_managedsait = SLAP_CONTROL_CRITICAL;
1494
1495                 af.f_choice = LDAP_FILTER_AND;
1496                 af.f_next = NULL;
1497                 af.f_and = &mf;
1498                 mf.f_choice = LDAP_FILTER_EQUALITY;
1499                 mf.f_ava = &eq;
1500                 mf.f_av_desc = slap_schema.si_ad_entryUUID;
1501                 mf.f_next = fop.ors_filter;
1502
1503                 fop.ors_filter = &af;
1504
1505                 cb.sc_response = playlog_cb;
1506                 fop.o_bd->bd_info = on->on_info->oi_orig;
1507
1508                 for ( i=ndel; i<num; i++ ) {
1509                         if ( uuids[i].bv_len == 0 ) continue;
1510
1511                         mf.f_av_value = uuids[i];
1512                         cb.sc_private = NULL;
1513                         fop.ors_slimit = 1;
1514                         frs.sr_nentries = 0;
1515                         rc = fop.o_bd->be_search( &fop, &frs );
1516
1517                         /* If entry was not found, add to delete list */
1518                         if ( !cb.sc_private ) {
1519                                 uuids[ndel++] = uuids[i];
1520                         }
1521                 }
1522                 fop.o_bd->bd_info = (BackendInfo *)on;
1523         }
1524         if ( ndel ) {
1525                 struct berval cookie;
1526
1527                 slap_compose_sync_cookie( op, &cookie, delcsn, srs->sr_state.rid,
1528                         srs->sr_state.sid );
1529                 uuids[ndel].bv_val = NULL;
1530                 syncprov_sendinfo( op, rs, LDAP_TAG_SYNC_ID_SET, &cookie, 0, uuids, 1 );
1531                 op->o_tmpfree( cookie.bv_val, op->o_tmpmemctx );
1532         }
1533         op->o_tmpfree( uuids, op->o_tmpmemctx );
1534 }
1535
1536 static int
1537 syncprov_op_response( Operation *op, SlapReply *rs )
1538 {
1539         opcookie *opc = op->o_callback->sc_private;
1540         slap_overinst *on = opc->son;
1541         syncprov_info_t         *si = on->on_bi.bi_private;
1542         syncmatches *sm;
1543
1544         if ( rs->sr_err == LDAP_SUCCESS )
1545         {
1546                 struct berval maxcsn = BER_BVNULL;
1547                 char cbuf[LDAP_LUTIL_CSNSTR_BUFSIZE];
1548                 int do_check = 0;
1549
1550                 /* Update our context CSN */
1551                 cbuf[0] = '\0';
1552                 ldap_pvt_thread_rdwr_wlock( &si->si_csn_rwlock );
1553                 slap_get_commit_csn( op, &maxcsn );
1554                 if ( !BER_BVISNULL( &maxcsn ) ) {
1555                         int i, sid;
1556                         strcpy( cbuf, maxcsn.bv_val );
1557                         sid = slap_parse_csn_sid( &maxcsn );
1558                         for ( i=0; i<si->si_numcsns; i++ ) {
1559                                 if ( sid == si->si_sids[i] ) {
1560                                         if ( ber_bvcmp( &maxcsn, &si->si_ctxcsn[i] ) > 0 ) {
1561                                                 ber_bvreplace( &si->si_ctxcsn[i], &maxcsn );
1562                                         }
1563                                         break;
1564                                 }
1565                         }
1566                         /* It's a new SID for us */
1567                         if ( i == si->si_numcsns ) {
1568                                 value_add_one( &si->si_ctxcsn, &maxcsn );
1569                                 si->si_numcsns++;
1570                                 si->si_sids = ch_realloc( si->si_sids, si->si_numcsns *
1571                                         sizeof(int));
1572                                 si->si_sids[i] = sid;
1573                         }
1574                 }
1575
1576                 /* Don't do any processing for consumer contextCSN updates */
1577                 if ( SLAP_SYNC_SHADOW( op->o_bd ) && 
1578                         op->o_msgid == SLAP_SYNC_UPDATE_MSGID ) {
1579                         ldap_pvt_thread_rdwr_wunlock( &si->si_csn_rwlock );
1580                         return SLAP_CB_CONTINUE;
1581                 }
1582
1583                 si->si_numops++;
1584                 if ( si->si_chkops || si->si_chktime ) {
1585                         if ( si->si_chkops && si->si_numops >= si->si_chkops ) {
1586                                 do_check = 1;
1587                                 si->si_numops = 0;
1588                         }
1589                         if ( si->si_chktime &&
1590                                 (op->o_time - si->si_chklast >= si->si_chktime )) {
1591                                 do_check = 1;
1592                                 si->si_chklast = op->o_time;
1593                         }
1594                 }
1595                 ldap_pvt_thread_rdwr_wunlock( &si->si_csn_rwlock );
1596
1597                 if ( do_check ) {
1598                         ldap_pvt_thread_rdwr_rlock( &si->si_csn_rwlock );
1599                         syncprov_checkpoint( op, rs, on );
1600                         ldap_pvt_thread_rdwr_runlock( &si->si_csn_rwlock );
1601                 }
1602
1603                 opc->sctxcsn.bv_len = maxcsn.bv_len;
1604                 opc->sctxcsn.bv_val = cbuf;
1605
1606                 /* Handle any persistent searches */
1607                 if ( si->si_ops ) {
1608                         switch(op->o_tag) {
1609                         case LDAP_REQ_ADD:
1610                         case LDAP_REQ_MODIFY:
1611                         case LDAP_REQ_MODRDN:
1612                         case LDAP_REQ_EXTENDED:
1613                                 syncprov_matchops( op, opc, 0 );
1614                                 break;
1615                         case LDAP_REQ_DELETE:
1616                                 /* for each match in opc->smatches:
1617                                  *   send DELETE msg
1618                                  */
1619                                 for ( sm = opc->smatches; sm; sm=sm->sm_next ) {
1620                                         if ( sm->sm_op->s_op->o_abandon )
1621                                                 continue;
1622                                         syncprov_qresp( opc, sm->sm_op, LDAP_SYNC_DELETE );
1623                                 }
1624                                 break;
1625                         }
1626                 }
1627
1628                 /* Add any log records */
1629                 if ( si->si_logs && op->o_tag != LDAP_REQ_ADD ) {
1630                         syncprov_add_slog( op );
1631                 }
1632
1633         }
1634         return SLAP_CB_CONTINUE;
1635 }
1636
1637 /* We don't use a subentry to store the context CSN any more.
1638  * We expose the current context CSN as an operational attribute
1639  * of the suffix entry.
1640  */
1641 static int
1642 syncprov_op_compare( Operation *op, SlapReply *rs )
1643 {
1644         slap_overinst           *on = (slap_overinst *)op->o_bd->bd_info;
1645         syncprov_info_t         *si = on->on_bi.bi_private;
1646         int rc = SLAP_CB_CONTINUE;
1647
1648         if ( dn_match( &op->o_req_ndn, op->o_bd->be_nsuffix ) &&
1649                 op->oq_compare.rs_ava->aa_desc == slap_schema.si_ad_contextCSN )
1650         {
1651                 Entry e = {0};
1652                 Attribute a = {0};
1653
1654                 e.e_name = op->o_bd->be_suffix[0];
1655                 e.e_nname = op->o_bd->be_nsuffix[0];
1656                 e.e_attrs = &a;
1657
1658                 a.a_desc = slap_schema.si_ad_contextCSN;
1659
1660                 ldap_pvt_thread_rdwr_rlock( &si->si_csn_rwlock );
1661
1662                 a.a_vals = si->si_ctxcsn;
1663                 a.a_nvals = a.a_vals;
1664
1665                 rs->sr_err = access_allowed( op, &e, op->oq_compare.rs_ava->aa_desc,
1666                         &op->oq_compare.rs_ava->aa_value, ACL_COMPARE, NULL );
1667                 if ( ! rs->sr_err ) {
1668                         rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
1669                         goto return_results;
1670                 }
1671
1672                 if ( get_assert( op ) &&
1673                         ( test_filter( op, &e, get_assertion( op ) ) != LDAP_COMPARE_TRUE ) )
1674                 {
1675                         rs->sr_err = LDAP_ASSERTION_FAILED;
1676                         goto return_results;
1677                 }
1678
1679
1680                 rs->sr_err = LDAP_COMPARE_FALSE;
1681
1682                 if ( value_find_ex( op->oq_compare.rs_ava->aa_desc,
1683                         SLAP_MR_ATTRIBUTE_VALUE_NORMALIZED_MATCH |
1684                                 SLAP_MR_ASSERTED_VALUE_NORMALIZED_MATCH,
1685                                 a.a_nvals, &op->oq_compare.rs_ava->aa_value, op->o_tmpmemctx ) == 0 )
1686                 {
1687                         rs->sr_err = LDAP_COMPARE_TRUE;
1688                 }
1689
1690 return_results:;
1691
1692                 ldap_pvt_thread_rdwr_runlock( &si->si_csn_rwlock );
1693
1694                 send_ldap_result( op, rs );
1695
1696                 if( rs->sr_err == LDAP_COMPARE_FALSE || rs->sr_err == LDAP_COMPARE_TRUE ) {
1697                         rs->sr_err = LDAP_SUCCESS;
1698                 }
1699                 rc = rs->sr_err;
1700         }
1701
1702         return rc;
1703 }
1704
1705 static int
1706 syncprov_op_mod( Operation *op, SlapReply *rs )
1707 {
1708         slap_overinst           *on = (slap_overinst *)op->o_bd->bd_info;
1709         syncprov_info_t         *si = on->on_bi.bi_private;
1710
1711         slap_callback *cb = op->o_tmpcalloc(1, sizeof(slap_callback)+
1712                 sizeof(opcookie) +
1713                 (si->si_ops ? sizeof(modinst) : 0 ),
1714                 op->o_tmpmemctx);
1715         opcookie *opc = (opcookie *)(cb+1);
1716         opc->son = on;
1717         cb->sc_response = syncprov_op_response;
1718         cb->sc_cleanup = syncprov_op_cleanup;
1719         cb->sc_private = opc;
1720         cb->sc_next = op->o_callback;
1721         op->o_callback = cb;
1722
1723         /* If there are active persistent searches, lock this operation.
1724          * See seqmod.c for the locking logic on its own.
1725          */
1726         if ( si->si_ops ) {
1727                 modtarget *mt, mtdummy;
1728                 modinst *mi;
1729
1730                 mi = (modinst *)(opc+1);
1731                 mi->mi_op = op;
1732
1733                 /* See if we're already modifying this entry... */
1734                 mtdummy.mt_op = op;
1735                 ldap_pvt_thread_mutex_lock( &si->si_mods_mutex );
1736                 mt = avl_find( si->si_mods, &mtdummy, sp_avl_cmp );
1737                 if ( mt ) {
1738                         ldap_pvt_thread_mutex_lock( &mt->mt_mutex );
1739                         ldap_pvt_thread_mutex_unlock( &si->si_mods_mutex );
1740                         mt->mt_tail->mi_next = mi;
1741                         mt->mt_tail = mi;
1742                         /* wait for this op to get to head of list */
1743                         while ( mt->mt_mods != mi ) {
1744                                 ldap_pvt_thread_mutex_unlock( &mt->mt_mutex );
1745                                 ldap_pvt_thread_yield();
1746                                 ldap_pvt_thread_mutex_lock( &mt->mt_mutex );
1747
1748                                 /* clean up if the caller is giving up */
1749                                 if ( op->o_abandon ) {
1750                                         modinst *m2;
1751                                         for ( m2 = mt->mt_mods; m2->mi_next != mi;
1752                                                 m2 = m2->mi_next );
1753                                         m2->mi_next = mi->mi_next;
1754                                         if ( mt->mt_tail == mi ) mt->mt_tail = m2;
1755                                         op->o_tmpfree( cb, op->o_tmpmemctx );
1756                                         ldap_pvt_thread_mutex_unlock( &mt->mt_mutex );
1757                                         return SLAPD_ABANDON;
1758                                 }
1759                         }
1760                         ldap_pvt_thread_mutex_unlock( &mt->mt_mutex );
1761                 } else {
1762                         /* Record that we're modifying this entry now */
1763                         mt = ch_malloc( sizeof(modtarget) );
1764                         mt->mt_mods = mi;
1765                         mt->mt_tail = mi;
1766                         mt->mt_op = mi->mi_op;
1767                         ldap_pvt_thread_mutex_init( &mt->mt_mutex );
1768                         avl_insert( &si->si_mods, mt, sp_avl_cmp, avl_dup_error );
1769                         ldap_pvt_thread_mutex_unlock( &si->si_mods_mutex );
1770                 }
1771         }
1772
1773         if (( si->si_ops || si->si_logs ) && op->o_tag != LDAP_REQ_ADD )
1774                 syncprov_matchops( op, opc, 1 );
1775
1776         return SLAP_CB_CONTINUE;
1777 }
1778
1779 static int
1780 syncprov_op_extended( Operation *op, SlapReply *rs )
1781 {
1782         if ( exop_is_write( op ))
1783                 return syncprov_op_mod( op, rs );
1784
1785         return SLAP_CB_CONTINUE;
1786 }
1787
1788 typedef struct searchstate {
1789         slap_overinst *ss_on;
1790         syncops *ss_so;
1791         BerVarray ss_ctxcsn;
1792         int *ss_sids;
1793         int ss_numcsns;
1794         int ss_present;
1795 } searchstate;
1796
1797 static int
1798 syncprov_search_cleanup( Operation *op, SlapReply *rs )
1799 {
1800         if ( rs->sr_ctrls ) {
1801                 op->o_tmpfree( rs->sr_ctrls[0], op->o_tmpmemctx );
1802                 op->o_tmpfree( rs->sr_ctrls, op->o_tmpmemctx );
1803                 rs->sr_ctrls = NULL;
1804         }
1805         return 0;
1806 }
1807
1808 typedef struct SyncOperationBuffer {
1809         Operation               sob_op;
1810         Opheader                sob_hdr;
1811         AttributeName   sob_extra;      /* not always present */
1812         /* Further data allocated here */
1813 } SyncOperationBuffer;
1814
1815 static void
1816 syncprov_detach_op( Operation *op, syncops *so, slap_overinst *on )
1817 {
1818         SyncOperationBuffer *sopbuf2;
1819         Operation *op2;
1820         int i, alen = 0;
1821         size_t size;
1822         char *ptr;
1823         GroupAssertion *g1, *g2;
1824
1825         /* count the search attrs */
1826         for (i=0; op->ors_attrs && !BER_BVISNULL( &op->ors_attrs[i].an_name ); i++) {
1827                 alen += op->ors_attrs[i].an_name.bv_len + 1;
1828         }
1829         /* Make a new copy of the operation */
1830         size = offsetof( SyncOperationBuffer, sob_extra ) +
1831                 (i ? ( (i+1) * sizeof(AttributeName) + alen) : 0) +
1832                 op->o_req_dn.bv_len + 1 +
1833                 op->o_req_ndn.bv_len + 1 +
1834                 op->o_ndn.bv_len + 1 +
1835                 so->s_filterstr.bv_len + 1;
1836         sopbuf2 = ch_calloc( 1, size );
1837         op2 = &sopbuf2->sob_op;
1838         op2->o_hdr = &sopbuf2->sob_hdr;
1839
1840         /* Copy the fields we care about explicitly, leave the rest alone */
1841         *op2->o_hdr = *op->o_hdr;
1842         op2->o_tag = op->o_tag;
1843         op2->o_time = op->o_time;
1844         op2->o_bd = on->on_info->oi_origdb;
1845         op2->o_request = op->o_request;
1846         op2->o_private = on;
1847
1848         ptr = (char *) sopbuf2 + offsetof( SyncOperationBuffer, sob_extra );
1849         if ( i ) {
1850                 op2->ors_attrs = (AttributeName *) ptr;
1851                 ptr = (char *) &op2->ors_attrs[i+1];
1852                 for (i=0; !BER_BVISNULL( &op->ors_attrs[i].an_name ); i++) {
1853                         op2->ors_attrs[i] = op->ors_attrs[i];
1854                         op2->ors_attrs[i].an_name.bv_val = ptr;
1855                         ptr = lutil_strcopy( ptr, op->ors_attrs[i].an_name.bv_val ) + 1;
1856                 }
1857                 BER_BVZERO( &op2->ors_attrs[i].an_name );
1858         }
1859
1860         op2->o_authz = op->o_authz;
1861         op2->o_ndn.bv_val = ptr;
1862         ptr = lutil_strcopy(ptr, op->o_ndn.bv_val) + 1;
1863         op2->o_dn = op2->o_ndn;
1864         op2->o_req_dn.bv_len = op->o_req_dn.bv_len;
1865         op2->o_req_dn.bv_val = ptr;
1866         ptr = lutil_strcopy(ptr, op->o_req_dn.bv_val) + 1;
1867         op2->o_req_ndn.bv_len = op->o_req_ndn.bv_len;
1868         op2->o_req_ndn.bv_val = ptr;
1869         ptr = lutil_strcopy(ptr, op->o_req_ndn.bv_val) + 1;
1870         op2->ors_filterstr.bv_val = ptr;
1871         strcpy( ptr, so->s_filterstr.bv_val );
1872         op2->ors_filterstr.bv_len = so->s_filterstr.bv_len;
1873
1874         /* Skip the AND/GE clause that we stuck on in front */
1875         if ( so->s_flags & PS_FIX_FILTER ) {
1876                 op2->ors_filter = op->ors_filter->f_and->f_next;
1877                 so->s_flags ^= PS_FIX_FILTER;
1878         } else {
1879                 op2->ors_filter = op->ors_filter;
1880         }
1881         op2->ors_filter = filter_dup( op2->ors_filter, NULL );
1882         so->s_op = op2;
1883
1884         /* Copy any cached group ACLs individually */
1885         op2->o_groups = NULL;
1886         for ( g1=op->o_groups; g1; g1=g1->ga_next ) {
1887                 g2 = ch_malloc( sizeof(GroupAssertion) + g1->ga_len );
1888                 *g2 = *g1;
1889                 strcpy( g2->ga_ndn, g1->ga_ndn );
1890                 g2->ga_next = op2->o_groups;
1891                 op2->o_groups = g2;
1892         }
1893         /* Don't allow any further group caching */
1894         op2->o_do_not_cache = 1;
1895
1896         /* Add op2 to conn so abandon will find us */
1897         ldap_pvt_thread_mutex_lock( &op->o_conn->c_mutex );
1898         op->o_conn->c_n_ops_executing++;
1899         op->o_conn->c_n_ops_completed--;
1900         LDAP_STAILQ_INSERT_TAIL( &op->o_conn->c_ops, op2, o_next );
1901         so->s_flags |= PS_IS_DETACHED;
1902         ldap_pvt_thread_mutex_unlock( &op->o_conn->c_mutex );
1903
1904         /* Prevent anyone else from trying to send a result for this op */
1905         op->o_abandon = 1;
1906 }
1907
1908 static int
1909 syncprov_search_response( Operation *op, SlapReply *rs )
1910 {
1911         searchstate *ss = op->o_callback->sc_private;
1912         slap_overinst *on = ss->ss_on;
1913         sync_control *srs = op->o_controls[slap_cids.sc_LDAPsync];
1914
1915         if ( rs->sr_type == REP_SEARCH || rs->sr_type == REP_SEARCHREF ) {
1916                 Attribute *a;
1917                 /* If we got a referral without a referral object, there's
1918                  * something missing that we cannot replicate. Just ignore it.
1919                  * The consumer will abort because we didn't send the expected
1920                  * control.
1921                  */
1922                 if ( !rs->sr_entry ) {
1923                         assert( rs->sr_entry != NULL );
1924                         Debug( LDAP_DEBUG_ANY, "bogus referral in context\n",0,0,0 );
1925                         return SLAP_CB_CONTINUE;
1926                 }
1927                 a = attr_find( rs->sr_entry->e_attrs, slap_schema.si_ad_entryCSN );
1928                 if ( a == NULL && rs->sr_operational_attrs != NULL ) {
1929                         a = attr_find( rs->sr_operational_attrs, slap_schema.si_ad_entryCSN );
1930                 }
1931                 if ( a ) {
1932                         int i, sid;
1933                         sid = slap_parse_csn_sid( &a->a_nvals[0] );
1934
1935                         /* Don't send changed entries back to the originator */
1936                         if ( sid == srs->sr_state.sid && srs->sr_state.numcsns ) {
1937                                 Debug( LDAP_DEBUG_SYNC,
1938                                         "Entry %s changed by peer, ignored\n",
1939                                         rs->sr_entry->e_name.bv_val, 0, 0 );
1940                                 return LDAP_SUCCESS;
1941                         }
1942                         /* Make sure entry is less than the snapshot'd contextCSN */
1943                         for ( i=0; i<ss->ss_numcsns; i++ ) {
1944                                 if ( sid == ss->ss_sids[i] && ber_bvcmp( &a->a_nvals[0],
1945                                         &ss->ss_ctxcsn[i] ) > 0 ) {
1946                                         Debug( LDAP_DEBUG_SYNC,
1947                                                 "Entry %s CSN %s greater than snapshot %s\n",
1948                                                 rs->sr_entry->e_name.bv_val,
1949                                                 a->a_nvals[0].bv_val,
1950                                                 ss->ss_ctxcsn[i].bv_val );
1951                                         return LDAP_SUCCESS;
1952                                 }
1953                         }
1954
1955                         /* Don't send old entries twice */
1956                         if ( srs->sr_state.ctxcsn ) {
1957                                 for ( i=0; i<srs->sr_state.numcsns; i++ ) {
1958                                         if ( sid == srs->sr_state.sids[i] &&
1959                                                 ber_bvcmp( &a->a_nvals[0],
1960                                                         &srs->sr_state.ctxcsn[i] )<= 0 ) {
1961                                                 Debug( LDAP_DEBUG_SYNC,
1962                                                         "Entry %s CSN %s older or equal to ctx %s\n",
1963                                                         rs->sr_entry->e_name.bv_val,
1964                                                         a->a_nvals[0].bv_val,
1965                                                         srs->sr_state.ctxcsn[i].bv_val );
1966                                                 return LDAP_SUCCESS;
1967                                         }
1968                                 }
1969                         }
1970                 }
1971                 rs->sr_ctrls = op->o_tmpalloc( sizeof(LDAPControl *)*2,
1972                         op->o_tmpmemctx );
1973                 rs->sr_ctrls[1] = NULL;
1974                 rs->sr_err = syncprov_state_ctrl( op, rs, rs->sr_entry,
1975                         LDAP_SYNC_ADD, rs->sr_ctrls, 0, 0, NULL );
1976         } else if ( rs->sr_type == REP_RESULT && rs->sr_err == LDAP_SUCCESS ) {
1977                 struct berval cookie;
1978
1979                 slap_compose_sync_cookie( op, &cookie, ss->ss_ctxcsn,
1980                         srs->sr_state.rid, srs->sr_state.sid );
1981
1982                 /* Is this a regular refresh? */
1983                 if ( !ss->ss_so ) {
1984                         rs->sr_ctrls = op->o_tmpalloc( sizeof(LDAPControl *)*2,
1985                                 op->o_tmpmemctx );
1986                         rs->sr_ctrls[1] = NULL;
1987                         rs->sr_err = syncprov_done_ctrl( op, rs, rs->sr_ctrls,
1988                                 0, 1, &cookie, ss->ss_present ?  LDAP_SYNC_REFRESH_PRESENTS :
1989                                         LDAP_SYNC_REFRESH_DELETES );
1990                         op->o_tmpfree( cookie.bv_val, op->o_tmpmemctx );
1991                 } else {
1992                 /* It's RefreshAndPersist, transition to Persist phase */
1993                         syncprov_sendinfo( op, rs, ss->ss_present ?
1994                                 LDAP_TAG_SYNC_REFRESH_PRESENT : LDAP_TAG_SYNC_REFRESH_DELETE,
1995                                 &cookie, 1, NULL, 0 );
1996                         op->o_tmpfree( cookie.bv_val, op->o_tmpmemctx );
1997
1998                         /* Detach this Op from frontend control */
1999                         ldap_pvt_thread_mutex_lock( &ss->ss_so->s_mutex );
2000
2001                         /* Turn off the refreshing flag */
2002                         ss->ss_so->s_flags ^= PS_IS_REFRESHING;
2003
2004                         syncprov_detach_op( op, ss->ss_so, on );
2005
2006                         /* If there are queued responses, fire them off */
2007                         if ( ss->ss_so->s_res )
2008                                 syncprov_qstart( ss->ss_so );
2009                         ldap_pvt_thread_mutex_unlock( &ss->ss_so->s_mutex );
2010
2011                         return LDAP_SUCCESS;
2012                 }
2013         }
2014
2015         return SLAP_CB_CONTINUE;
2016 }
2017
2018 static int
2019 syncprov_op_search( Operation *op, SlapReply *rs )
2020 {
2021         slap_overinst           *on = (slap_overinst *)op->o_bd->bd_info;
2022         syncprov_info_t         *si = (syncprov_info_t *)on->on_bi.bi_private;
2023         slap_callback   *cb;
2024         int gotstate = 0, nochange = 0, do_present;
2025         syncops *sop = NULL;
2026         searchstate *ss;
2027         sync_control *srs;
2028         BerVarray ctxcsn;
2029         int i, *sids, numcsns;
2030         struct berval mincsn;
2031
2032         if ( !(op->o_sync_mode & SLAP_SYNC_REFRESH) ) return SLAP_CB_CONTINUE;
2033
2034         if ( op->ors_deref & LDAP_DEREF_SEARCHING ) {
2035                 send_ldap_error( op, rs, LDAP_PROTOCOL_ERROR, "illegal value for derefAliases" );
2036                 return rs->sr_err;
2037         }
2038
2039         do_present = si->si_nopres ? 0 : 1;
2040
2041         srs = op->o_controls[slap_cids.sc_LDAPsync];
2042         op->o_managedsait = SLAP_CONTROL_NONCRITICAL;
2043
2044         /* If this is a persistent search, set it up right away */
2045         if ( op->o_sync_mode & SLAP_SYNC_PERSIST ) {
2046                 syncops so = {0};
2047                 fbase_cookie fc;
2048                 opcookie opc;
2049                 slap_callback sc;
2050
2051                 fc.fss = &so;
2052                 fc.fbase = 0;
2053                 so.s_eid = NOID;
2054                 so.s_op = op;
2055                 so.s_flags = PS_IS_REFRESHING | PS_FIND_BASE;
2056                 /* syncprov_findbase expects to be called as a callback... */
2057                 sc.sc_private = &opc;
2058                 opc.son = on;
2059                 ldap_pvt_thread_mutex_init( &so.s_mutex );
2060                 cb = op->o_callback;
2061                 op->o_callback = &sc;
2062                 rs->sr_err = syncprov_findbase( op, &fc );
2063                 op->o_callback = cb;
2064                 ldap_pvt_thread_mutex_destroy( &so.s_mutex );
2065
2066                 if ( rs->sr_err != LDAP_SUCCESS ) {
2067                         send_ldap_result( op, rs );
2068                         return rs->sr_err;
2069                 }
2070                 sop = ch_malloc( sizeof( syncops ));
2071                 *sop = so;
2072                 ldap_pvt_thread_mutex_init( &sop->s_mutex );
2073                 sop->s_rid = srs->sr_state.rid;
2074                 sop->s_sid = srs->sr_state.sid;
2075                 sop->s_inuse = 1;
2076
2077                 ldap_pvt_thread_mutex_lock( &si->si_ops_mutex );
2078                 sop->s_next = si->si_ops;
2079                 si->si_ops = sop;
2080                 ldap_pvt_thread_mutex_unlock( &si->si_ops_mutex );
2081         }
2082
2083         /* snapshot the ctxcsn */
2084         ldap_pvt_thread_rdwr_rlock( &si->si_csn_rwlock );
2085         numcsns = si->si_numcsns;
2086         if ( numcsns ) {
2087                 ber_bvarray_dup_x( &ctxcsn, si->si_ctxcsn, op->o_tmpmemctx );
2088                 sids = op->o_tmpalloc( numcsns * sizeof(int), op->o_tmpmemctx );
2089                 for ( i=0; i<numcsns; i++ )
2090                         sids[i] = si->si_sids[i];
2091         } else {
2092                 ctxcsn = NULL;
2093                 sids = NULL;
2094         }
2095         ldap_pvt_thread_rdwr_runlock( &si->si_csn_rwlock );
2096         
2097         /* If we have a cookie, handle the PRESENT lookups */
2098         if ( srs->sr_state.ctxcsn ) {
2099                 sessionlog *sl;
2100                 int i, j;
2101
2102                 /* If we don't have any CSN of our own yet, pretend nothing
2103                  * has changed.
2104                  */
2105                 if ( !numcsns )
2106                         goto no_change;
2107
2108                 /* If there are SIDs we don't recognize in the cookie, drop them */
2109                 for (i=0; i<srs->sr_state.numcsns; ) {
2110                         for (j=0; j<numcsns; j++) {
2111                                 if ( srs->sr_state.sids[i] == sids[j] ) {
2112                                         break;
2113                                 }
2114                         }
2115                         /* not found */
2116                         if ( j == numcsns ) {
2117                                 struct berval tmp = srs->sr_state.ctxcsn[i];
2118                                 j = srs->sr_state.numcsns - 1;
2119                                 srs->sr_state.ctxcsn[i] = srs->sr_state.ctxcsn[j];
2120                                 tmp.bv_len = 0;
2121                                 srs->sr_state.ctxcsn[j] = tmp;
2122                                 srs->sr_state.numcsns = j;
2123                                 srs->sr_state.sids[i] = srs->sr_state.sids[j];
2124                                 continue;
2125                         }
2126                         i++;
2127                 }
2128
2129                 /* Find the smallest CSN */
2130                 mincsn = srs->sr_state.ctxcsn[0];
2131                 for ( i=1; i<srs->sr_state.numcsns; i++ ) {
2132                         if ( ber_bvcmp( &mincsn, &srs->sr_state.ctxcsn[i] ) > 0 )
2133                                 mincsn = srs->sr_state.ctxcsn[i];
2134                 }
2135
2136                 /* If nothing has changed, shortcut it */
2137                 if ( srs->sr_state.numcsns == numcsns ) {
2138                         int i, j, changed = 0;
2139                         for ( i=0; i<srs->sr_state.numcsns; i++ ) {
2140                                 for ( j=0; j<numcsns; j++ ) {
2141                                         if ( srs->sr_state.sids[i] != sids[j] )
2142                                                 continue;
2143                                         if ( !bvmatch( &srs->sr_state.ctxcsn[i], &ctxcsn[j] ))
2144                                                 changed = 1;
2145                                         break;
2146                                 }
2147                                 if ( changed )
2148                                         break;
2149                         }
2150                         if ( !changed ) {
2151 no_change:              nochange = 1;
2152                                 if ( !(op->o_sync_mode & SLAP_SYNC_PERSIST) ) {
2153                                         LDAPControl     *ctrls[2];
2154
2155                                         ctrls[0] = NULL;
2156                                         ctrls[1] = NULL;
2157                                         syncprov_done_ctrl( op, rs, ctrls, 0, 0,
2158                                                 NULL, LDAP_SYNC_REFRESH_DELETES );
2159                                         rs->sr_ctrls = ctrls;
2160                                         rs->sr_err = LDAP_SUCCESS;
2161                                         send_ldap_result( op, rs );
2162                                         rs->sr_ctrls = NULL;
2163                                         return rs->sr_err;
2164                                 }
2165                                 goto shortcut;
2166                         }
2167                 }
2168                 /* Do we have a sessionlog for this search? */
2169                 sl=si->si_logs;
2170                 if ( sl ) {
2171                         ldap_pvt_thread_mutex_lock( &sl->sl_mutex );
2172                         /* Are there any log entries, and is the consumer state
2173                          * present in the session log?
2174                          */
2175                         if ( sl->sl_num > 0 && ber_bvcmp( &mincsn, &sl->sl_mincsn ) >= 0 ) {
2176                                 do_present = 0;
2177                                 /* mutex is unlocked in playlog */
2178                                 syncprov_playlog( op, rs, sl, srs, ctxcsn, numcsns, sids );
2179                         } else {
2180                                 ldap_pvt_thread_mutex_unlock( &sl->sl_mutex );
2181                         }
2182                 }
2183                 /* Is the CSN still present in the database? */
2184                 if ( syncprov_findcsn( op, FIND_CSN ) != LDAP_SUCCESS ) {
2185                         /* No, so a reload is required */
2186                         /* the 2.2 consumer doesn't send this hint */
2187                         if ( si->si_usehint && srs->sr_rhint == 0 ) {
2188                                 if ( ctxcsn )
2189                                         ber_bvarray_free_x( ctxcsn, op->o_tmpmemctx );
2190                                 send_ldap_error( op, rs, LDAP_SYNC_REFRESH_REQUIRED, "sync cookie is stale" );
2191                                 return rs->sr_err;
2192                         }
2193                 } else {
2194                         gotstate = 1;
2195                         /* If changed and doing Present lookup, send Present UUIDs */
2196                         if ( do_present && syncprov_findcsn( op, FIND_PRESENT ) !=
2197                                 LDAP_SUCCESS ) {
2198                                 if ( ctxcsn )
2199                                         ber_bvarray_free_x( ctxcsn, op->o_tmpmemctx );
2200                                 send_ldap_result( op, rs );
2201                                 return rs->sr_err;
2202                         }
2203                 }
2204         }
2205
2206 shortcut:
2207         /* Append CSN range to search filter, save original filter
2208          * for persistent search evaluation
2209          */
2210         if ( sop ) {
2211                 sop->s_filterstr= op->ors_filterstr;
2212         }
2213
2214         /* If something changed, find the changes */
2215         if ( gotstate && !nochange ) {
2216                 Filter *fand, *fava;
2217
2218                 fand = op->o_tmpalloc( sizeof(Filter), op->o_tmpmemctx );
2219                 fand->f_choice = LDAP_FILTER_AND;
2220                 fand->f_next = NULL;
2221                 fava = op->o_tmpalloc( sizeof(Filter), op->o_tmpmemctx );
2222                 fand->f_and = fava;
2223                 fava->f_choice = LDAP_FILTER_GE;
2224                 fava->f_ava = op->o_tmpalloc( sizeof(AttributeAssertion), op->o_tmpmemctx );
2225                 fava->f_ava->aa_desc = slap_schema.si_ad_entryCSN;
2226 #ifdef LDAP_COMP_MATCH
2227                 fava->f_ava->aa_cf = NULL;
2228 #endif
2229                 ber_dupbv_x( &fava->f_ava->aa_value, &mincsn, op->o_tmpmemctx );
2230                 fava->f_next = op->ors_filter;
2231                 op->ors_filter = fand;
2232                 filter2bv_x( op, op->ors_filter, &op->ors_filterstr );
2233                 if ( sop )
2234                         sop->s_flags |= PS_FIX_FILTER;
2235         }
2236
2237         /* Let our callback add needed info to returned entries */
2238         cb = op->o_tmpcalloc(1, sizeof(slap_callback)+sizeof(searchstate), op->o_tmpmemctx);
2239         ss = (searchstate *)(cb+1);
2240         ss->ss_on = on;
2241         ss->ss_so = sop;
2242         ss->ss_present = do_present;
2243         ss->ss_ctxcsn = ctxcsn;
2244         ss->ss_numcsns = numcsns;
2245         ss->ss_sids = sids;
2246         cb->sc_response = syncprov_search_response;
2247         cb->sc_cleanup = syncprov_search_cleanup;
2248         cb->sc_private = ss;
2249         cb->sc_next = op->o_callback;
2250         op->o_callback = cb;
2251
2252         /* If this is a persistent search and no changes were reported during
2253          * the refresh phase, just invoke the response callback to transition
2254          * us into persist phase
2255          */
2256         if ( nochange ) {
2257                 rs->sr_err = LDAP_SUCCESS;
2258                 rs->sr_nentries = 0;
2259                 send_ldap_result( op, rs );
2260                 return rs->sr_err;
2261         }
2262         return SLAP_CB_CONTINUE;
2263 }
2264
2265 static int
2266 syncprov_operational(
2267         Operation *op,
2268         SlapReply *rs )
2269 {
2270         slap_overinst           *on = (slap_overinst *)op->o_bd->bd_info;
2271         syncprov_info_t         *si = (syncprov_info_t *)on->on_bi.bi_private;
2272
2273         if ( rs->sr_entry &&
2274                 dn_match( &rs->sr_entry->e_nname, op->o_bd->be_nsuffix )) {
2275
2276                 if ( SLAP_OPATTRS( rs->sr_attr_flags ) ||
2277                         ad_inlist( slap_schema.si_ad_contextCSN, rs->sr_attrs )) {
2278                         Attribute *a, **ap = NULL;
2279
2280                         for ( a=rs->sr_entry->e_attrs; a; a=a->a_next ) {
2281                                 if ( a->a_desc == slap_schema.si_ad_contextCSN )
2282                                         break;
2283                         }
2284
2285                         ldap_pvt_thread_rdwr_rlock( &si->si_csn_rwlock );
2286                         if ( si->si_ctxcsn ) {
2287                                 if ( !a ) {
2288                                         for ( ap = &rs->sr_operational_attrs; *ap;
2289                                                 ap=&(*ap)->a_next );
2290
2291                                         a = attr_alloc( slap_schema.si_ad_contextCSN );
2292                                         *ap = a;
2293                                 }
2294
2295                                 if ( !ap ) {
2296                                         if ( !rs->sr_flags & REP_ENTRY_MODIFIABLE ) {
2297                                                 rs->sr_entry = entry_dup( rs->sr_entry );
2298                                                 rs->sr_flags |=
2299                                                         REP_ENTRY_MODIFIABLE|REP_ENTRY_MUSTBEFREED;
2300                                                 a = attr_find( rs->sr_entry->e_attrs,
2301                                                         slap_schema.si_ad_contextCSN );
2302                                         }
2303                                         if ( a->a_nvals != a->a_vals ) {
2304                                                 ber_bvarray_free( a->a_nvals );
2305                                         }
2306                                         a->a_nvals = NULL;
2307                                         ber_bvarray_free( a->a_vals );
2308                                         a->a_vals = NULL;
2309                                 }
2310                                 ber_bvarray_dup_x( &a->a_vals, si->si_ctxcsn, NULL );
2311                                 ber_bvarray_dup_x( &a->a_nvals, si->si_ctxcsn, NULL );
2312                         }
2313                         ldap_pvt_thread_rdwr_runlock( &si->si_csn_rwlock );
2314                 }
2315         }
2316         return SLAP_CB_CONTINUE;
2317 }
2318
2319 enum {
2320         SP_CHKPT = 1,
2321         SP_SESSL,
2322         SP_NOPRES,
2323         SP_USEHINT
2324 };
2325
2326 static ConfigDriver sp_cf_gen;
2327
2328 static ConfigTable spcfg[] = {
2329         { "syncprov-checkpoint", "ops> <minutes", 3, 3, 0, ARG_MAGIC|SP_CHKPT,
2330                 sp_cf_gen, "( OLcfgOvAt:1.1 NAME 'olcSpCheckpoint' "
2331                         "DESC 'ContextCSN checkpoint interval in ops and minutes' "
2332                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
2333         { "syncprov-sessionlog", "ops", 2, 2, 0, ARG_INT|ARG_MAGIC|SP_SESSL,
2334                 sp_cf_gen, "( OLcfgOvAt:1.2 NAME 'olcSpSessionlog' "
2335                         "DESC 'Session log size in ops' "
2336                         "SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
2337         { "syncprov-nopresent", NULL, 2, 2, 0, ARG_ON_OFF|ARG_MAGIC|SP_NOPRES,
2338                 sp_cf_gen, "( OLcfgOvAt:1.3 NAME 'olcSpNoPresent' "
2339                         "DESC 'Omit Present phase processing' "
2340                         "SYNTAX OMsBoolean SINGLE-VALUE )", NULL, NULL },
2341         { "syncprov-reloadhint", NULL, 2, 2, 0, ARG_ON_OFF|ARG_MAGIC|SP_USEHINT,
2342                 sp_cf_gen, "( OLcfgOvAt:1.4 NAME 'olcSpReloadHint' "
2343                         "DESC 'Observe Reload Hint in Request control' "
2344                         "SYNTAX OMsBoolean SINGLE-VALUE )", NULL, NULL },
2345         { NULL, NULL, 0, 0, 0, ARG_IGNORED }
2346 };
2347
2348 static ConfigOCs spocs[] = {
2349         { "( OLcfgOvOc:1.1 "
2350                 "NAME 'olcSyncProvConfig' "
2351                 "DESC 'SyncRepl Provider configuration' "
2352                 "SUP olcOverlayConfig "
2353                 "MAY ( olcSpCheckpoint $ olcSpSessionlog $ olcSpNoPresent ) )",
2354                         Cft_Overlay, spcfg },
2355         { NULL, 0, NULL }
2356 };
2357
2358 static int
2359 sp_cf_gen(ConfigArgs *c)
2360 {
2361         slap_overinst           *on = (slap_overinst *)c->bi;
2362         syncprov_info_t         *si = (syncprov_info_t *)on->on_bi.bi_private;
2363         int rc = 0;
2364
2365         if ( c->op == SLAP_CONFIG_EMIT ) {
2366                 switch ( c->type ) {
2367                 case SP_CHKPT:
2368                         if ( si->si_chkops || si->si_chktime ) {
2369                                 struct berval bv;
2370                                 bv.bv_len = sprintf( c->cr_msg, "%d %d",
2371                                         si->si_chkops, si->si_chktime );
2372                                 bv.bv_val = c->cr_msg;
2373                                 value_add_one( &c->rvalue_vals, &bv );
2374                         } else {
2375                                 rc = 1;
2376                         }
2377                         break;
2378                 case SP_SESSL:
2379                         if ( si->si_logs ) {
2380                                 c->value_int = si->si_logs->sl_size;
2381                         } else {
2382                                 rc = 1;
2383                         }
2384                         break;
2385                 case SP_NOPRES:
2386                         if ( si->si_nopres ) {
2387                                 c->value_int = 1;
2388                         } else {
2389                                 rc = 1;
2390                         }
2391                         break;
2392                 case SP_USEHINT:
2393                         if ( si->si_usehint ) {
2394                                 c->value_int = 1;
2395                         } else {
2396                                 rc = 1;
2397                         }
2398                         break;
2399                 }
2400                 return rc;
2401         } else if ( c->op == LDAP_MOD_DELETE ) {
2402                 switch ( c->type ) {
2403                 case SP_CHKPT:
2404                         si->si_chkops = 0;
2405                         si->si_chktime = 0;
2406                         break;
2407                 case SP_SESSL:
2408                         if ( si->si_logs )
2409                                 si->si_logs->sl_size = 0;
2410                         else
2411                                 rc = LDAP_NO_SUCH_ATTRIBUTE;
2412                         break;
2413                 case SP_NOPRES:
2414                         if ( si->si_nopres )
2415                                 si->si_nopres = 0;
2416                         else
2417                                 rc = LDAP_NO_SUCH_ATTRIBUTE;
2418                         break;
2419                 case SP_USEHINT:
2420                         if ( si->si_usehint )
2421                                 si->si_usehint = 0;
2422                         else
2423                                 rc = LDAP_NO_SUCH_ATTRIBUTE;
2424                         break;
2425                 }
2426                 return rc;
2427         }
2428         switch ( c->type ) {
2429         case SP_CHKPT:
2430                 if ( lutil_atoi( &si->si_chkops, c->argv[1] ) != 0 ) {
2431                         snprintf( c->cr_msg, sizeof( c->cr_msg ), "%s unable to parse checkpoint ops # \"%s\"",
2432                                 c->argv[0], c->argv[1] );
2433                         Debug( LDAP_DEBUG_CONFIG|LDAP_DEBUG_NONE,
2434                                 "%s: %s\n", c->log, c->cr_msg, 0 );
2435                         return ARG_BAD_CONF;
2436                 }
2437                 if ( si->si_chkops <= 0 ) {
2438                         snprintf( c->cr_msg, sizeof( c->cr_msg ), "%s invalid checkpoint ops # \"%d\"",
2439                                 c->argv[0], si->si_chkops );
2440                         Debug( LDAP_DEBUG_CONFIG|LDAP_DEBUG_NONE,
2441                                 "%s: %s\n", c->log, c->cr_msg, 0 );
2442                         return ARG_BAD_CONF;
2443                 }
2444                 if ( lutil_atoi( &si->si_chktime, c->argv[2] ) != 0 ) {
2445                         snprintf( c->cr_msg, sizeof( c->cr_msg ), "%s unable to parse checkpoint time \"%s\"",
2446                                 c->argv[0], c->argv[1] );
2447                         Debug( LDAP_DEBUG_CONFIG|LDAP_DEBUG_NONE,
2448                                 "%s: %s\n", c->log, c->cr_msg, 0 );
2449                         return ARG_BAD_CONF;
2450                 }
2451                 if ( si->si_chktime <= 0 ) {
2452                         snprintf( c->cr_msg, sizeof( c->cr_msg ), "%s invalid checkpoint time \"%d\"",
2453                                 c->argv[0], si->si_chkops );
2454                         Debug( LDAP_DEBUG_CONFIG|LDAP_DEBUG_NONE,
2455                                 "%s: %s\n", c->log, c->cr_msg, 0 );
2456                         return ARG_BAD_CONF;
2457                 }
2458                 si->si_chktime *= 60;
2459                 break;
2460         case SP_SESSL: {
2461                 sessionlog *sl;
2462                 int size = c->value_int;
2463
2464                 if ( size < 0 ) {
2465                         snprintf( c->cr_msg, sizeof( c->cr_msg ), "%s size %d is negative",
2466                                 c->argv[0], size );
2467                         Debug( LDAP_DEBUG_CONFIG|LDAP_DEBUG_NONE,
2468                                 "%s: %s\n", c->log, c->cr_msg, 0 );
2469                         return ARG_BAD_CONF;
2470                 }
2471                 sl = si->si_logs;
2472                 if ( !sl ) {
2473                         sl = ch_malloc( sizeof( sessionlog ) + LDAP_LUTIL_CSNSTR_BUFSIZE );
2474                         sl->sl_mincsn.bv_val = (char *)(sl+1);
2475                         sl->sl_mincsn.bv_len = 0;
2476                         sl->sl_num = 0;
2477                         sl->sl_head = sl->sl_tail = NULL;
2478                         ldap_pvt_thread_mutex_init( &sl->sl_mutex );
2479                         si->si_logs = sl;
2480                 }
2481                 sl->sl_size = size;
2482                 }
2483                 break;
2484         case SP_NOPRES:
2485                 si->si_nopres = c->value_int;
2486                 break;
2487         case SP_USEHINT:
2488                 si->si_usehint = c->value_int;
2489                 break;
2490         }
2491         return rc;
2492 }
2493
2494 /* ITS#3456 we cannot run this search on the main thread, must use a
2495  * child thread in order to insure we have a big enough stack.
2496  */
2497 static void *
2498 syncprov_db_otask(
2499         void *ptr
2500 )
2501 {
2502         syncprov_findcsn( ptr, FIND_MAXCSN );
2503         return NULL;
2504 }
2505
2506 /* Read any existing contextCSN from the underlying db.
2507  * Then search for any entries newer than that. If no value exists,
2508  * just generate it. Cache whatever result.
2509  */
2510 static int
2511 syncprov_db_open(
2512         BackendDB *be,
2513         ConfigReply *cr
2514 )
2515 {
2516         slap_overinst   *on = (slap_overinst *) be->bd_info;
2517         syncprov_info_t *si = (syncprov_info_t *)on->on_bi.bi_private;
2518
2519         Connection conn = { 0 };
2520         OperationBuffer opbuf;
2521         Operation *op;
2522         Entry *e = NULL;
2523         Attribute *a;
2524         int rc;
2525         void *thrctx = NULL;
2526
2527         if ( !SLAP_LASTMOD( be )) {
2528                 Debug( LDAP_DEBUG_ANY,
2529                         "syncprov_db_open: invalid config, lastmod must be enabled\n", 0, 0, 0 );
2530                 return -1;
2531         }
2532
2533         if ( slapMode & SLAP_TOOL_MODE ) {
2534                 return 0;
2535         }
2536
2537         rc = overlay_register_control( be, LDAP_CONTROL_SYNC );
2538         if ( rc ) {
2539                 return rc;
2540         }
2541
2542         thrctx = ldap_pvt_thread_pool_context();
2543         connection_fake_init( &conn, &opbuf, thrctx );
2544         op = &opbuf.ob_op;
2545         op->o_bd = be;
2546         op->o_dn = be->be_rootdn;
2547         op->o_ndn = be->be_rootndn;
2548
2549         rc = overlay_entry_get_ov( op, be->be_nsuffix, NULL,
2550                 slap_schema.si_ad_contextCSN, 0, &e, on );
2551
2552         if ( e ) {
2553                 ldap_pvt_thread_t tid;
2554
2555                 a = attr_find( e->e_attrs, slap_schema.si_ad_contextCSN );
2556                 if ( a ) {
2557                         int i;
2558                         ber_bvarray_dup_x( &si->si_ctxcsn, a->a_vals, NULL );
2559                         for ( i = 0; !BER_BVISNULL( &a->a_vals[i] ); i++ );
2560                         si->si_numcsns = i;
2561                         si->si_sids = slap_parse_csn_sids( si->si_ctxcsn, i, NULL );
2562                 }
2563                 overlay_entry_release_ov( op, e, 0, on );
2564                 if ( si->si_ctxcsn ) {
2565                         op->o_req_dn = be->be_suffix[0];
2566                         op->o_req_ndn = be->be_nsuffix[0];
2567                         op->ors_scope = LDAP_SCOPE_SUBTREE;
2568                         ldap_pvt_thread_create( &tid, 0, syncprov_db_otask, op );
2569                         ldap_pvt_thread_join( tid, NULL );
2570                 }
2571         }
2572
2573         /* Didn't find a contextCSN, should we generate one? */
2574         if ( !si->si_ctxcsn ) {
2575                 char csnbuf[ LDAP_LUTIL_CSNSTR_BUFSIZE ];
2576                 struct berval csn;
2577
2578                 if ( SLAP_SYNC_SHADOW( op->o_bd )) {
2579                 /* If we're also a consumer, then don't generate anything.
2580                  * Wait for our provider to send it to us, or for a local
2581                  * modify if we have multimaster.
2582                  */
2583                         goto out;
2584                 }
2585                 csn.bv_val = csnbuf;
2586                 csn.bv_len = sizeof( csnbuf );
2587                 slap_get_csn( op, &csn, 0 );
2588                 value_add_one( &si->si_ctxcsn, &csn );
2589                 si->si_numcsns = 1;
2590                 si->si_sids = ch_malloc( sizeof(int) );
2591                 si->si_sids[0] = slap_serverID;
2592
2593                 /* make sure we do a checkpoint on close */
2594                 si->si_numops++;
2595         }
2596
2597 out:
2598         op->o_bd->bd_info = (BackendInfo *)on;
2599         return 0;
2600 }
2601
2602 /* Write the current contextCSN into the underlying db.
2603  */
2604 static int
2605 syncprov_db_close(
2606         BackendDB *be,
2607         ConfigReply *cr
2608 )
2609 {
2610     slap_overinst   *on = (slap_overinst *) be->bd_info;
2611     syncprov_info_t *si = (syncprov_info_t *)on->on_bi.bi_private;
2612
2613         if ( slapMode & SLAP_TOOL_MODE ) {
2614                 return 0;
2615         }
2616         if ( si->si_numops ) {
2617                 Connection conn = {0};
2618                 OperationBuffer opbuf;
2619                 Operation *op;
2620                 SlapReply rs = {REP_RESULT};
2621                 void *thrctx;
2622
2623                 thrctx = ldap_pvt_thread_pool_context();
2624                 connection_fake_init( &conn, &opbuf, thrctx );
2625                 op = &opbuf.ob_op;
2626                 op->o_bd = be;
2627                 op->o_dn = be->be_rootdn;
2628                 op->o_ndn = be->be_rootndn;
2629                 syncprov_checkpoint( op, &rs, on );
2630         }
2631
2632     return 0;
2633 }
2634
2635 static int
2636 syncprov_db_init(
2637         BackendDB *be,
2638         ConfigReply *cr
2639 )
2640 {
2641         slap_overinst   *on = (slap_overinst *)be->bd_info;
2642         syncprov_info_t *si;
2643
2644         if ( SLAP_ISGLOBALOVERLAY( be ) ) {
2645                 Debug( LDAP_DEBUG_ANY,
2646                         "syncprov must be instantiated within a database.\n",
2647                         0, 0, 0 );
2648                 return 1;
2649         }
2650
2651         si = ch_calloc(1, sizeof(syncprov_info_t));
2652         on->on_bi.bi_private = si;
2653         ldap_pvt_thread_rdwr_init( &si->si_csn_rwlock );
2654         ldap_pvt_thread_mutex_init( &si->si_ops_mutex );
2655         ldap_pvt_thread_mutex_init( &si->si_mods_mutex );
2656
2657         csn_anlist[0].an_desc = slap_schema.si_ad_entryCSN;
2658         csn_anlist[0].an_name = slap_schema.si_ad_entryCSN->ad_cname;
2659         csn_anlist[1].an_desc = slap_schema.si_ad_entryUUID;
2660         csn_anlist[1].an_name = slap_schema.si_ad_entryUUID->ad_cname;
2661
2662         uuid_anlist[0].an_desc = slap_schema.si_ad_entryUUID;
2663         uuid_anlist[0].an_name = slap_schema.si_ad_entryUUID->ad_cname;
2664
2665         return 0;
2666 }
2667
2668 static int
2669 syncprov_db_destroy(
2670         BackendDB *be,
2671         ConfigReply *cr
2672 )
2673 {
2674         slap_overinst   *on = (slap_overinst *)be->bd_info;
2675         syncprov_info_t *si = (syncprov_info_t *)on->on_bi.bi_private;
2676
2677         if ( si ) {
2678                 if ( si->si_logs ) {
2679                         slog_entry *se = si->si_logs->sl_head;
2680
2681                         while ( se ) {
2682                                 slog_entry *se_next = se->se_next;
2683                                 ch_free( se );
2684                                 se = se_next;
2685                         }
2686                                 
2687                         ch_free( si->si_logs );
2688                 }
2689                 if ( si->si_ctxcsn )
2690                         ber_bvarray_free( si->si_ctxcsn );
2691                 if ( si->si_sids )
2692                         ch_free( si->si_sids );
2693                 ldap_pvt_thread_mutex_destroy( &si->si_mods_mutex );
2694                 ldap_pvt_thread_mutex_destroy( &si->si_ops_mutex );
2695                 ldap_pvt_thread_rdwr_destroy( &si->si_csn_rwlock );
2696                 ch_free( si );
2697         }
2698
2699         return 0;
2700 }
2701
2702 static int syncprov_parseCtrl (
2703         Operation *op,
2704         SlapReply *rs,
2705         LDAPControl *ctrl )
2706 {
2707         ber_tag_t tag;
2708         BerElementBuffer berbuf;
2709         BerElement *ber = (BerElement *)&berbuf;
2710         ber_int_t mode;
2711         ber_len_t len;
2712         struct berval cookie = BER_BVNULL;
2713         sync_control *sr;
2714         int rhint = 0;
2715
2716         if ( op->o_sync != SLAP_CONTROL_NONE ) {
2717                 rs->sr_text = "Sync control specified multiple times";
2718                 return LDAP_PROTOCOL_ERROR;
2719         }
2720
2721         if ( op->o_pagedresults != SLAP_CONTROL_NONE ) {
2722                 rs->sr_text = "Sync control specified with pagedResults control";
2723                 return LDAP_PROTOCOL_ERROR;
2724         }
2725
2726         if ( BER_BVISNULL( &ctrl->ldctl_value ) ) {
2727                 rs->sr_text = "Sync control value is absent";
2728                 return LDAP_PROTOCOL_ERROR;
2729         }
2730
2731         if ( BER_BVISEMPTY( &ctrl->ldctl_value ) ) {
2732                 rs->sr_text = "Sync control value is empty";
2733                 return LDAP_PROTOCOL_ERROR;
2734         }
2735
2736         /* Parse the control value
2737          *      syncRequestValue ::= SEQUENCE {
2738          *              mode   ENUMERATED {
2739          *                      -- 0 unused
2740          *                      refreshOnly             (1),
2741          *                      -- 2 reserved
2742          *                      refreshAndPersist       (3)
2743          *              },
2744          *              cookie  syncCookie OPTIONAL
2745          *      }
2746          */
2747
2748         ber_init2( ber, &ctrl->ldctl_value, 0 );
2749
2750         if ( (tag = ber_scanf( ber, "{i" /*}*/, &mode )) == LBER_ERROR ) {
2751                 rs->sr_text = "Sync control : mode decoding error";
2752                 return LDAP_PROTOCOL_ERROR;
2753         }
2754
2755         switch( mode ) {
2756         case LDAP_SYNC_REFRESH_ONLY:
2757                 mode = SLAP_SYNC_REFRESH;
2758                 break;
2759         case LDAP_SYNC_REFRESH_AND_PERSIST:
2760                 mode = SLAP_SYNC_REFRESH_AND_PERSIST;
2761                 break;
2762         default:
2763                 rs->sr_text = "Sync control : unknown update mode";
2764                 return LDAP_PROTOCOL_ERROR;
2765         }
2766
2767         tag = ber_peek_tag( ber, &len );
2768
2769         if ( tag == LDAP_TAG_SYNC_COOKIE ) {
2770                 if (( ber_scanf( ber, /*{*/ "m", &cookie )) == LBER_ERROR ) {
2771                         rs->sr_text = "Sync control : cookie decoding error";
2772                         return LDAP_PROTOCOL_ERROR;
2773                 }
2774                 tag = ber_peek_tag( ber, &len );
2775         }
2776         if ( tag == LDAP_TAG_RELOAD_HINT ) {
2777                 if (( ber_scanf( ber, /*{*/ "b", &rhint )) == LBER_ERROR ) {
2778                         rs->sr_text = "Sync control : rhint decoding error";
2779                         return LDAP_PROTOCOL_ERROR;
2780                 }
2781         }
2782         if (( ber_scanf( ber, /*{*/ "}")) == LBER_ERROR ) {
2783                         rs->sr_text = "Sync control : decoding error";
2784                         return LDAP_PROTOCOL_ERROR;
2785         }
2786         sr = op->o_tmpcalloc( 1, sizeof(struct sync_control), op->o_tmpmemctx );
2787         sr->sr_rhint = rhint;
2788         if (!BER_BVISNULL(&cookie)) {
2789                 ber_dupbv_x( &sr->sr_state.octet_str, &cookie, op->o_tmpmemctx );
2790                 if ( slap_parse_sync_cookie( &sr->sr_state, op->o_tmpmemctx ) ||
2791                         sr->sr_state.rid == -1 ) {
2792                         rs->sr_text = "Sync control : cookie parsing error";
2793                         return LDAP_PROTOCOL_ERROR;
2794                 }
2795         }
2796
2797         op->o_controls[slap_cids.sc_LDAPsync] = sr;
2798
2799         op->o_sync = ctrl->ldctl_iscritical
2800                 ? SLAP_CONTROL_CRITICAL
2801                 : SLAP_CONTROL_NONCRITICAL;
2802
2803         op->o_sync_mode |= mode;        /* o_sync_mode shares o_sync */
2804
2805         return LDAP_SUCCESS;
2806 }
2807
2808 /* This overlay is set up for dynamic loading via moduleload. For static
2809  * configuration, you'll need to arrange for the slap_overinst to be
2810  * initialized and registered by some other function inside slapd.
2811  */
2812
2813 static slap_overinst            syncprov;
2814
2815 int
2816 syncprov_initialize()
2817 {
2818         int rc;
2819
2820         rc = register_supported_control( LDAP_CONTROL_SYNC,
2821                 SLAP_CTRL_SEARCH, NULL,
2822                 syncprov_parseCtrl, &slap_cids.sc_LDAPsync );
2823         if ( rc != LDAP_SUCCESS ) {
2824                 Debug( LDAP_DEBUG_ANY,
2825                         "syncprov_init: Failed to register control %d\n", rc, 0, 0 );
2826                 return rc;
2827         }
2828
2829         syncprov.on_bi.bi_type = "syncprov";
2830         syncprov.on_bi.bi_db_init = syncprov_db_init;
2831         syncprov.on_bi.bi_db_destroy = syncprov_db_destroy;
2832         syncprov.on_bi.bi_db_open = syncprov_db_open;
2833         syncprov.on_bi.bi_db_close = syncprov_db_close;
2834
2835         syncprov.on_bi.bi_op_abandon = syncprov_op_abandon;
2836         syncprov.on_bi.bi_op_cancel = syncprov_op_abandon;
2837
2838         syncprov.on_bi.bi_op_add = syncprov_op_mod;
2839         syncprov.on_bi.bi_op_compare = syncprov_op_compare;
2840         syncprov.on_bi.bi_op_delete = syncprov_op_mod;
2841         syncprov.on_bi.bi_op_modify = syncprov_op_mod;
2842         syncprov.on_bi.bi_op_modrdn = syncprov_op_mod;
2843         syncprov.on_bi.bi_op_search = syncprov_op_search;
2844         syncprov.on_bi.bi_extended = syncprov_op_extended;
2845         syncprov.on_bi.bi_operational = syncprov_operational;
2846
2847         syncprov.on_bi.bi_cf_ocs = spocs;
2848
2849         generic_filter.f_desc = slap_schema.si_ad_objectClass;
2850
2851         rc = config_register_schema( spcfg, spocs );
2852         if ( rc ) return rc;
2853
2854         return overlay_register( &syncprov );
2855 }
2856
2857 #if SLAPD_OVER_SYNCPROV == SLAPD_MOD_DYNAMIC
2858 int
2859 init_module( int argc, char *argv[] )
2860 {
2861         return syncprov_initialize();
2862 }
2863 #endif /* SLAPD_OVER_SYNCPROV == SLAPD_MOD_DYNAMIC */
2864
2865 #endif /* defined(SLAPD_OVER_SYNCPROV) */