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