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