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