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