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