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