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