]> git.sur5r.net Git - openldap/blob - servers/slapd/overlays/pcache.c
more cleanup of attr renaming
[openldap] / servers / slapd / overlays / pcache.c
1 /* $OpenLDAP$ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
3  *
4  * Copyright 2003-2009 The OpenLDAP Foundation.
5  * Portions Copyright 2003 IBM Corporation.
6  * Portions Copyright 2003-2009 Symas Corporation.
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted only as authorized by the OpenLDAP
11  * Public License.
12  *
13  * A copy of this license is available in the file LICENSE in the
14  * top-level directory of the distribution or, alternatively, at
15  * <http://www.OpenLDAP.org/license.html>.
16  */
17 /* ACKNOWLEDGEMENTS:
18  * This work was initially developed by Apurva Kumar for inclusion
19  * in OpenLDAP Software and subsequently rewritten by Howard Chu.
20  */
21
22 #include "portable.h"
23
24 #ifdef SLAPD_OVER_PROXYCACHE
25
26 #include <stdio.h>
27
28 #include <ac/string.h>
29 #include <ac/time.h>
30
31 #include "slap.h"
32 #include "lutil.h"
33 #include "ldap_rq.h"
34 #include "avl.h"
35
36 #include "../back-monitor/back-monitor.h"
37
38 #include "config.h"
39
40 #ifdef LDAP_DEVEL
41 /*
42  * Control that allows to access the private DB
43  * instead of the public one
44  */
45 #define PCACHE_CONTROL_PRIVDB           "1.3.6.1.4.1.4203.666.11.9.5.1"
46
47 /*
48  * Extended Operation that allows to remove a query from the cache
49  */
50 #define PCACHE_EXOP_QUERY_DELETE        "1.3.6.1.4.1.4203.666.11.9.6.1"
51
52 /*
53  * Monitoring
54  */
55 #define PCACHE_MONITOR
56 #endif
57
58 /* query cache structs */
59 /* query */
60
61 typedef struct Query_s {
62         Filter*         filter;         /* Search Filter */
63         struct berval   base;           /* Search Base */
64         int             scope;          /* Search scope */
65 } Query;
66
67 struct query_template_s;
68
69 typedef struct Qbase_s {
70         Avlnode *scopes[4];             /* threaded AVL trees of cached queries */
71         struct berval base;
72         int queries;
73 } Qbase;
74
75 /* struct representing a cached query */
76 typedef struct cached_query_s {
77         Filter                                  *filter;
78         Filter                                  *first;
79         Qbase                                   *qbase;
80         int                                             scope;
81         struct berval                   q_uuid;         /* query identifier */
82         int                                             q_sizelimit;
83         struct query_template_s         *qtemp; /* template of the query */
84         time_t                                          expiry_time;    /* time till the query is considered invalid */
85         time_t                                          refresh_time;   /* time till the query is refreshed */
86         time_t                                          bindref_time;   /* time till the bind is refreshed */
87         unsigned long                   answerable_cnt; /* how many times it was answerable */
88         int                                             refcnt; /* references since last refresh */
89         ldap_pvt_thread_mutex_t         answerable_cnt_mutex;
90         struct cached_query_s           *next;          /* next query in the template */
91         struct cached_query_s           *prev;          /* previous query in the template */
92         struct cached_query_s           *lru_up;        /* previous query in the LRU list */
93         struct cached_query_s           *lru_down;      /* next query in the LRU list */
94         ldap_pvt_thread_rdwr_t          rwlock;
95 } CachedQuery;
96
97 /*
98  * URL representation:
99  *
100  * ldap:///<base>??<scope>?<filter>?x-uuid=<uid>,x-template=<template>,x-attrset=<attrset>,x-expiry=<expiry>,x-refresh=<refresh>
101  *
102  * <base> ::= CachedQuery.qbase->base
103  * <scope> ::= CachedQuery.scope
104  * <filter> ::= filter2bv(CachedQuery.filter)
105  * <uuid> ::= CachedQuery.q_uuid
106  * <attrset> ::= CachedQuery.qtemp->attr_set_index
107  * <expiry> ::= CachedQuery.expiry_time
108  * <refresh> ::= CachedQuery.refresh_time
109  *
110  * quick hack: parse URI, call add_query() and then fix
111  * CachedQuery.expiry_time and CachedQuery.q_uuid
112  *
113  * NOTE: if the <attrset> changes, all stored URLs will be invalidated.
114  */
115
116 /*
117  * Represents a set of projected attributes.
118  */
119
120 struct attr_set {
121         struct query_template_s *templates;
122         AttributeName*  attrs;          /* specifies the set */
123         unsigned        flags;
124 #define PC_CONFIGURED   (0x1)
125 #define PC_REFERENCED   (0x2)
126 #define PC_GOT_OC               (0x4)
127         int             count;          /* number of attributes */
128 };
129
130 /* struct representing a query template
131  * e.g. template string = &(cn=)(mail=)
132  */
133 typedef struct query_template_s {
134         struct query_template_s *qtnext;
135         struct query_template_s *qmnext;
136
137         Avlnode*                qbase;
138         CachedQuery*    query;          /* most recent query cached for the template */
139         CachedQuery*    query_last;     /* oldest query cached for the template */
140         ldap_pvt_thread_rdwr_t t_rwlock; /* Rd/wr lock for accessing queries in the template */
141         struct berval   querystr;       /* Filter string corresponding to the QT */
142         struct berval   bindbase;       /* base DN for Bind request */
143         struct berval   bindfilterstr;  /* Filter string for Bind request */
144         struct berval   bindftemp;      /* bind filter template */
145         Filter          *bindfilter;
146         AttributeDescription **bindfattrs;      /* attrs to substitute in ftemp */
147
148         int                     bindnattrs;             /* number of bindfattrs */
149         int                     bindscope;
150         int             attr_set_index; /* determines the projected attributes */
151         int             no_of_queries;  /* Total number of queries in the template */
152         time_t          ttl;            /* TTL for the queries of this template */
153         time_t          negttl;         /* TTL for negative results */
154         time_t          limitttl;       /* TTL for sizelimit exceeding results */
155         time_t          ttr;    /* time to refresh */
156         time_t          bindttr;        /* TTR for cached binds */
157         struct attr_set t_attrs;        /* filter attrs + attr_set */
158 } QueryTemplate;
159
160 typedef enum {
161         PC_IGNORE = 0,
162         PC_POSITIVE,
163         PC_NEGATIVE,
164         PC_SIZELIMIT
165 } pc_caching_reason_t;
166
167 static const char *pc_caching_reason_str[] = {
168         "IGNORE",
169         "POSITIVE",
170         "NEGATIVE",
171         "SIZELIMIT",
172
173         NULL
174 };
175
176 struct query_manager_s;
177
178 /* prototypes for functions for 1) query containment
179  * 2) query addition, 3) cache replacement
180  */
181 typedef CachedQuery *(QCfunc)(Operation *op, struct query_manager_s*,
182         Query*, QueryTemplate*);
183 typedef CachedQuery *(AddQueryfunc)(Operation *op, struct query_manager_s*,
184         Query*, QueryTemplate*, pc_caching_reason_t, int wlock);
185 typedef void (CRfunc)(struct query_manager_s*, struct berval*);
186
187 /* LDAP query cache */
188 typedef struct query_manager_s {
189         struct attr_set*        attr_sets;              /* possible sets of projected attributes */
190         QueryTemplate*          templates;              /* cacheable templates */
191
192         CachedQuery*            lru_top;                /* top and bottom of LRU list */
193         CachedQuery*            lru_bottom;
194
195         ldap_pvt_thread_mutex_t         lru_mutex;      /* mutex for accessing LRU list */
196
197         /* Query cache methods */
198         QCfunc                  *qcfunc;                        /* Query containment*/
199         CRfunc                  *crfunc;                        /* cache replacement */
200         AddQueryfunc    *addfunc;                       /* add query */
201 } query_manager;
202
203 /* LDAP query cache manager */
204 typedef struct cache_manager_s {
205         BackendDB       db;     /* underlying database */
206         unsigned long   num_cached_queries;             /* total number of cached queries */
207         unsigned long   max_queries;                    /* upper bound on # of cached queries */
208         int             save_queries;                   /* save cached queries across restarts */
209         int     check_cacheability;             /* check whether a query is cacheable */
210         int     numattrsets;                    /* number of attribute sets */
211         int     cur_entries;                    /* current number of entries cached */
212         int     max_entries;                    /* max number of entries cached */
213         int     num_entries_limit;              /* max # of entries in a cacheable query */
214
215         char    response_cb;                    /* install the response callback
216                                                  * at the tail of the callback list */
217 #define PCACHE_RESPONSE_CB_HEAD 0
218 #define PCACHE_RESPONSE_CB_TAIL 1
219         char    defer_db_open;                  /* defer open for online add */
220         char    cache_binds;                    /* cache binds or just passthru */
221
222         time_t  cc_period;              /* interval between successive consistency checks (sec) */
223 #define PCACHE_CC_PAUSED        1
224 #define PCACHE_CC_OFFLINE       2
225         int     cc_paused;
226         void    *cc_arg;
227
228         ldap_pvt_thread_mutex_t         cache_mutex;
229
230         query_manager*   qm;    /* query cache managed by the cache manager */
231
232 #ifdef PCACHE_MONITOR
233         void            *monitor_cb;
234         struct berval   monitor_ndn;
235 #endif /* PCACHE_MONITOR */
236 } cache_manager;
237
238 #ifdef PCACHE_MONITOR
239 static int pcache_monitor_db_init( BackendDB *be );
240 static int pcache_monitor_db_open( BackendDB *be );
241 static int pcache_monitor_db_close( BackendDB *be );
242 static int pcache_monitor_db_destroy( BackendDB *be );
243 #endif /* PCACHE_MONITOR */
244
245 static int pcache_debug;
246
247 #ifdef PCACHE_CONTROL_PRIVDB
248 static int privDB_cid;
249 #endif /* PCACHE_CONTROL_PRIVDB */
250
251 static AttributeDescription     *ad_queryId, *ad_cachedQueryURL;
252
253 #ifdef PCACHE_MONITOR
254 static AttributeDescription     *ad_numQueries, *ad_numEntries;
255 static ObjectClass              *oc_olmPCache;
256 #endif /* PCACHE_MONITOR */
257
258 static struct {
259         char                    *name;
260         char                    *oid;
261 }               s_oid[] = {
262         { "PCacheOID",                  "1.3.6.1.4.1.4203.666.11.9.1" },
263         { "PCacheAttributes",           "PCacheOID:1" },
264         { "PCacheObjectClasses",        "PCacheOID:2" },
265
266         { NULL }
267 };
268
269 static struct {
270         char    *desc;
271         AttributeDescription **adp;
272 } s_ad[] = {
273         { "( PCacheAttributes:1 "
274                 "NAME 'pcacheQueryID' "
275                 "DESC 'ID of query the entry belongs to, formatted as a UUID' "
276                 "EQUALITY octetStringMatch "
277                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.40{64} "
278                 "NO-USER-MODIFICATION "
279                 "USAGE directoryOperation )",
280                 &ad_queryId },
281         { "( PCacheAttributes:2 "
282                 "NAME 'pcacheQueryURL' "
283                 "DESC 'URI describing a cached query' "
284                 "EQUALITY caseExactMatch "
285                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 "
286                 "NO-USER-MODIFICATION "
287                 "USAGE directoryOperation )",
288                 &ad_cachedQueryURL },
289 #ifdef PCACHE_MONITOR
290         { "( PCacheAttributes:3 "
291                 "NAME 'pcacheNumQueries' "
292                 "DESC 'Number of cached queries' "
293                 "EQUALITY integerMatch "
294                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 "
295                 "NO-USER-MODIFICATION "
296                 "USAGE directoryOperation )",
297                 &ad_numQueries },
298         { "( PCacheAttributes:4 "
299                 "NAME 'pcacheNumEntries' "
300                 "DESC 'Number of cached entries' "
301                 "EQUALITY integerMatch "
302                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 "
303                 "NO-USER-MODIFICATION "
304                 "USAGE directoryOperation )",
305                 &ad_numEntries },
306 #endif /* PCACHE_MONITOR */
307
308         { NULL }
309 };
310
311 static struct {
312         char            *desc;
313         ObjectClass     **ocp;
314 }               s_oc[] = {
315 #ifdef PCACHE_MONITOR
316         /* augments an existing object, so it must be AUXILIARY */
317         { "( PCacheObjectClasses:1 "
318                 "NAME ( 'olmPCache' ) "
319                 "SUP top AUXILIARY "
320                 "MAY ( "
321                         "pcacheQueryURL "
322                         "$ pcacheNumQueries "
323                         "$ pcacheNumEntries "
324                         " ) )",
325                 &oc_olmPCache },
326 #endif /* PCACHE_MONITOR */
327
328         { NULL }
329 };
330
331 static int
332 filter2template(
333         Operation               *op,
334         Filter                  *f,
335         struct                  berval *fstr );
336
337 static CachedQuery *
338 add_query(
339         Operation *op,
340         query_manager* qm,
341         Query* query,
342         QueryTemplate *templ,
343         pc_caching_reason_t why,
344         int wlock);
345
346 static int
347 remove_query_data(
348         Operation       *op,
349         SlapReply       *rs,
350         struct berval   *query_uuid );
351
352 /*
353  * Turn a cached query into its URL representation
354  */
355 static int
356 query2url( Operation *op, CachedQuery *q, struct berval *urlbv, int dolock )
357 {
358         struct berval   bv_scope,
359                         bv_filter;
360         char            attrset_buf[ LDAP_PVT_INTTYPE_CHARS( unsigned long ) ],
361                         expiry_buf[ LDAP_PVT_INTTYPE_CHARS( unsigned long ) ],
362                         refresh_buf[ LDAP_PVT_INTTYPE_CHARS( unsigned long ) ],
363                         answerable_buf[ LDAP_PVT_INTTYPE_CHARS( unsigned long ) ],
364                         *ptr;
365         ber_len_t       attrset_len,
366                         expiry_len,
367                         refresh_len,
368                         answerable_len;
369
370         if ( dolock ) {
371                 ldap_pvt_thread_rdwr_rlock( &q->rwlock );
372         }
373
374         ldap_pvt_scope2bv( q->scope, &bv_scope );
375         filter2bv_x( op, q->filter, &bv_filter );
376         attrset_len = sprintf( attrset_buf,
377                 "%lu", (unsigned long)q->qtemp->attr_set_index );
378         expiry_len = sprintf( expiry_buf,
379                 "%lu", (unsigned long)q->expiry_time );
380         answerable_len = snprintf( answerable_buf, sizeof( answerable_buf ),
381                 "%lu", q->answerable_cnt );
382         if ( q->refresh_time )
383                 refresh_len = sprintf( refresh_buf,
384                         "%lu", (unsigned long)q->refresh_time );
385         else
386                 refresh_len = 0;
387
388         urlbv->bv_len = STRLENOF( "ldap:///" )
389                 + q->qbase->base.bv_len
390                 + STRLENOF( "??" )
391                 + bv_scope.bv_len
392                 + STRLENOF( "?" )
393                 + bv_filter.bv_len
394                 + STRLENOF( "?x-uuid=" )
395                 + q->q_uuid.bv_len
396                 + STRLENOF( ",x-attrset=" )
397                 + attrset_len
398                 + STRLENOF( ",x-expiry=" )
399                 + expiry_len
400                 + STRLENOF( ",x-answerable=" )
401                 + answerable_len;
402         if ( refresh_len )
403                 urlbv->bv_len += STRLENOF( ",x-refresh=" )
404                 + refresh_len;
405
406         ptr = urlbv->bv_val = ber_memalloc_x( urlbv->bv_len + 1, op->o_tmpmemctx );
407         ptr = lutil_strcopy( ptr, "ldap:///" );
408         ptr = lutil_strcopy( ptr, q->qbase->base.bv_val );
409         ptr = lutil_strcopy( ptr, "??" );
410         ptr = lutil_strcopy( ptr, bv_scope.bv_val );
411         ptr = lutil_strcopy( ptr, "?" );
412         ptr = lutil_strcopy( ptr, bv_filter.bv_val );
413         ptr = lutil_strcopy( ptr, "?x-uuid=" );
414         ptr = lutil_strcopy( ptr, q->q_uuid.bv_val );
415         ptr = lutil_strcopy( ptr, ",x-attrset=" );
416         ptr = lutil_strcopy( ptr, attrset_buf );
417         ptr = lutil_strcopy( ptr, ",x-expiry=" );
418         ptr = lutil_strcopy( ptr, expiry_buf );
419         ptr = lutil_strcopy( ptr, ",x-answerable=" );
420         ptr = lutil_strcopy( ptr, answerable_buf );
421         if ( refresh_len ) {
422                 ptr = lutil_strcopy( ptr, ",x-refresh=" );
423                 ptr = lutil_strcopy( ptr, refresh_buf );
424         }
425
426         ber_memfree_x( bv_filter.bv_val, op->o_tmpmemctx );
427
428         if ( dolock ) {
429                 ldap_pvt_thread_rdwr_runlock( &q->rwlock );
430         }
431
432         return 0;
433 }
434
435 /* Find and record the empty filter clauses */
436
437 static int
438 ftemp_attrs( struct berval *ftemp, struct berval *template,
439         AttributeDescription ***ret, const char **text )
440 {
441         int i;
442         int attr_cnt=0;
443         struct berval bv;
444         char *p1, *p2, *t1;
445         AttributeDescription *ad;
446         AttributeDescription **descs = NULL;
447         char *temp2;
448
449         temp2 = ch_malloc( ftemp->bv_len );
450         p1 = ftemp->bv_val;
451         t1 = temp2;
452
453         *ret = NULL;
454
455         for (;;) {
456                 while ( *p1 == '(' || *p1 == '&' || *p1 == '|' || *p1 == ')' )
457                         *t1++ = *p1++;
458
459                 p2 = strchr( p1, '=' );
460                 if ( !p2 )
461                         break;
462                 i = p2 - p1;
463                 AC_MEMCPY( t1, p1, i );
464                 t1 += i;
465                 *t1++ = '=';
466
467                 if ( p2[-1] == '<' || p2[-1] == '>' ) p2--;
468                 bv.bv_val = p1;
469                 bv.bv_len = p2 - p1;
470                 ad = NULL;
471                 i = slap_bv2ad( &bv, &ad, text );
472                 if ( i ) {
473                         ch_free( descs );
474                         return -1;
475                 }
476                 if ( *p2 == '<' || *p2 == '>' ) p2++;
477                 if ( p2[1] != ')' ) {
478                         p2++;
479                         while ( *p2 != ')' ) p2++;
480                         p1 = p2;
481                         continue;
482                 }
483
484                 descs = (AttributeDescription **)ch_realloc(descs,
485                                 (attr_cnt + 2)*sizeof(AttributeDescription *));
486
487                 descs[attr_cnt++] = ad;
488
489                 p1 = p2+1;
490         }
491         *t1 = '\0';
492         descs[attr_cnt] = NULL;
493         *ret = descs;
494         template->bv_val = temp2;
495         template->bv_len = t1 - temp2;
496         return attr_cnt;
497 }
498
499 static int
500 template_attrs( char *template, struct attr_set *set, AttributeName **ret,
501         const char **text )
502 {
503         int got_oc = 0;
504         int alluser = 0;
505         int allop = 0;
506         int i;
507         int attr_cnt;
508         int t_cnt = 0;
509         struct berval bv;
510         char *p1, *p2;
511         AttributeDescription *ad;
512         AttributeName *attrs;
513
514         p1 = template;
515
516         *ret = NULL;
517
518         attrs = ch_malloc(( set->count+1 )*sizeof(AttributeName));
519         for ( i=0; i < set->count; i++ )
520                 attrs[i] = set->attrs[i];
521         attr_cnt = i;
522         alluser = an_find( attrs, slap_bv_all_user_attrs );
523         allop = an_find( attrs, slap_bv_all_operational_attrs );
524
525         for (;;) {
526                 while ( *p1 == '(' || *p1 == '&' || *p1 == '|' || *p1 == ')' ) p1++;
527                 p2 = strchr( p1, '=' );
528                 if ( !p2 )
529                         break;
530                 if ( p2[-1] == '<' || p2[-1] == '>' ) p2--;
531                 bv.bv_val = p1;
532                 bv.bv_len = p2 - p1;
533                 ad = NULL;
534                 i = slap_bv2ad( &bv, &ad, text );
535                 if ( i ) {
536                         ch_free( attrs );
537                         return -1;
538                 }
539                 t_cnt++;
540
541                 if ( ad == slap_schema.si_ad_objectClass )
542                         got_oc = 1;
543
544                 if ( is_at_operational(ad->ad_type)) {
545                         if ( allop ) {
546                                 goto bottom;
547                         }
548                 } else if ( alluser ) {
549                         goto bottom;
550                 }
551                 if ( !ad_inlist( ad, attrs )) {
552                         attrs = (AttributeName *)ch_realloc(attrs,
553                                         (attr_cnt + 2)*sizeof(AttributeName));
554
555                         attrs[attr_cnt].an_desc = ad;
556                         attrs[attr_cnt].an_name = ad->ad_cname;
557                         attrs[attr_cnt].an_oc = NULL;
558                         attrs[attr_cnt].an_flags = 0;
559                         BER_BVZERO( &attrs[attr_cnt+1].an_name );
560                         attr_cnt++;
561                 }
562
563 bottom:
564                 p1 = p2+2;
565         }
566         if ( !t_cnt ) {
567                 *text = "couldn't parse template";
568                 return -1;
569         }
570         if ( !got_oc && !( set->flags & PC_GOT_OC )) {
571                 attrs = (AttributeName *)ch_realloc(attrs,
572                                 (attr_cnt + 2)*sizeof(AttributeName));
573
574                 ad = slap_schema.si_ad_objectClass;
575                 attrs[attr_cnt].an_desc = ad;
576                 attrs[attr_cnt].an_name = ad->ad_cname;
577                 attrs[attr_cnt].an_oc = NULL;
578                 attrs[attr_cnt].an_flags = 0;
579                 BER_BVZERO( &attrs[attr_cnt+1].an_name );
580                 attr_cnt++;
581         }
582         *ret = attrs;
583         return attr_cnt;
584 }
585
586 /*
587  * Turn an URL representing a formerly cached query into a cached query,
588  * and try to cache it
589  */
590 static int
591 url2query(
592         char            *url,
593         Operation       *op,
594         query_manager   *qm )
595 {
596         Query           query = { 0 };
597         QueryTemplate   *qt;
598         CachedQuery     *cq;
599         LDAPURLDesc     *lud = NULL;
600         struct berval   base,
601                         tempstr = BER_BVNULL,
602                         uuid;
603         int             attrset;
604         time_t          expiry_time;
605         time_t          refresh_time;
606         unsigned long   answerable_cnt;
607         int             i,
608                         got = 0,
609 #define GOT_UUID        0x1U
610 #define GOT_ATTRSET     0x2U
611 #define GOT_EXPIRY      0x4U
612 #define GOT_ANSWERABLE  0x8U
613 #define GOT_REFRESH     0x10U
614 #define GOT_ALL         (GOT_UUID|GOT_ATTRSET|GOT_EXPIRY|GOT_ANSWERABLE)
615                         rc = 0;
616
617         rc = ldap_url_parse( url, &lud );
618         if ( rc != LDAP_URL_SUCCESS ) {
619                 return -1;
620         }
621
622         /* non-allowed fields */
623         if ( lud->lud_host != NULL ) {
624                 rc = 1;
625                 goto error;
626         }
627
628         if ( lud->lud_attrs != NULL ) {
629                 rc = 1;
630                 goto error;
631         }
632
633         /* be pedantic */
634         if ( strcmp( lud->lud_scheme, "ldap" ) != 0 ) {
635                 rc = 1;
636                 goto error;
637         }
638
639         /* required fields */
640         if ( lud->lud_dn == NULL || lud->lud_dn[ 0 ] == '\0' ) {
641                 rc = 1;
642                 goto error;
643         }
644
645         switch ( lud->lud_scope ) {
646         case LDAP_SCOPE_BASE:
647         case LDAP_SCOPE_ONELEVEL:
648         case LDAP_SCOPE_SUBTREE:
649         case LDAP_SCOPE_SUBORDINATE:
650                 break;
651
652         default:
653                 rc = 1;
654                 goto error;
655         }
656
657         if ( lud->lud_filter == NULL || lud->lud_filter[ 0 ] == '\0' ) {
658                 rc = 1;
659                 goto error;
660         }
661
662         if ( lud->lud_exts == NULL ) {
663                 rc = 1;
664                 goto error;
665         }
666
667         for ( i = 0; lud->lud_exts[ i ] != NULL; i++ ) {
668                 if ( strncmp( lud->lud_exts[ i ], "x-uuid=", STRLENOF( "x-uuid=" ) ) == 0 ) {
669                         struct berval   tmpUUID;
670                         Syntax          *syn_UUID = slap_schema.si_ad_entryUUID->ad_type->sat_syntax;
671
672                         if ( got & GOT_UUID ) {
673                                 rc = 1;
674                                 goto error;
675                         }
676
677                         ber_str2bv( &lud->lud_exts[ i ][ STRLENOF( "x-uuid=" ) ], 0, 0, &tmpUUID );
678                         rc = syn_UUID->ssyn_pretty( syn_UUID, &tmpUUID, &uuid, NULL );
679                         if ( rc != LDAP_SUCCESS ) {
680                                 goto error;
681                         }
682                         got |= GOT_UUID;
683
684                 } else if ( strncmp( lud->lud_exts[ i ], "x-attrset=", STRLENOF( "x-attrset=" ) ) == 0 ) {
685                         if ( got & GOT_ATTRSET ) {
686                                 rc = 1;
687                                 goto error;
688                         }
689
690                         rc = lutil_atoi( &attrset, &lud->lud_exts[ i ][ STRLENOF( "x-attrset=" ) ] );
691                         if ( rc ) {
692                                 goto error;
693                         }
694                         got |= GOT_ATTRSET;
695
696                 } else if ( strncmp( lud->lud_exts[ i ], "x-expiry=", STRLENOF( "x-expiry=" ) ) == 0 ) {
697                         unsigned long l;
698
699                         if ( got & GOT_EXPIRY ) {
700                                 rc = 1;
701                                 goto error;
702                         }
703
704                         rc = lutil_atoul( &l, &lud->lud_exts[ i ][ STRLENOF( "x-expiry=" ) ] );
705                         if ( rc ) {
706                                 goto error;
707                         }
708                         expiry_time = (time_t)l;
709                         got |= GOT_EXPIRY;
710
711                 } else if ( strncmp( lud->lud_exts[ i ], "x-answerable=", STRLENOF( "x-answerable=" ) ) == 0 ) {
712                         if ( got & GOT_ANSWERABLE ) {
713                                 rc = 1;
714                                 goto error;
715                         }
716
717                         rc = lutil_atoul( &answerable_cnt, &lud->lud_exts[ i ][ STRLENOF( "x-answerable=" ) ] );
718                         if ( rc ) {
719                                 goto error;
720                         }
721                         got |= GOT_ANSWERABLE;
722
723                 } else if ( strncmp( lud->lud_exts[ i ], "x-refresh=", STRLENOF( "x-refresh=" ) ) == 0 ) {
724                         unsigned long l;
725
726                         if ( got & GOT_REFRESH ) {
727                                 rc = 1;
728                                 goto error;
729                         }
730
731                         rc = lutil_atoul( &l, &lud->lud_exts[ i ][ STRLENOF( "x-refresh=" ) ] );
732                         if ( rc ) {
733                                 goto error;
734                         }
735                         refresh_time = (time_t)l;
736                         got |= GOT_REFRESH;
737
738                 } else {
739                         rc = -1;
740                         goto error;
741                 }
742         }
743
744         if ( got != GOT_ALL ) {
745                 rc = 1;
746                 goto error;
747         }
748
749         if ( !(got & GOT_REFRESH ))
750                 refresh_time = 0;
751
752         /* ignore expired queries */
753         if ( expiry_time <= slap_get_time()) {
754                 Operation       op2 = *op;
755                 SlapReply       rs2 = { 0 };
756
757                 memset( &op2.oq_search, 0, sizeof( op2.oq_search ) );
758
759                 (void)remove_query_data( &op2, &rs2, &uuid );
760
761                 rc = 0;
762
763         } else {
764                 ber_str2bv( lud->lud_dn, 0, 0, &base );
765                 rc = dnNormalize( 0, NULL, NULL, &base, &query.base, NULL );
766                 if ( rc != LDAP_SUCCESS ) {
767                         goto error;
768                 }
769                 query.scope = lud->lud_scope;
770                 query.filter = str2filter( lud->lud_filter );
771
772                 tempstr.bv_val = ch_malloc( strlen( lud->lud_filter ) + 1 );
773                 tempstr.bv_len = 0;
774                 if ( filter2template( op, query.filter, &tempstr ) ) {
775                         ch_free( tempstr.bv_val );
776                         rc = -1;
777                         goto error;
778                 }
779
780                 /* check for query containment */
781                 qt = qm->attr_sets[attrset].templates;
782                 for ( ; qt; qt = qt->qtnext ) {
783                         /* find if template i can potentially answer tempstr */
784                         if ( bvmatch( &qt->querystr, &tempstr ) ) {
785                                 break;
786                         }
787                 }
788
789                 if ( qt == NULL ) {
790                         rc = 1;
791                         goto error;
792                 }
793
794                 cq = add_query( op, qm, &query, qt, PC_POSITIVE, 0 );
795                 if ( cq != NULL ) {
796                         cq->expiry_time = expiry_time;
797                         cq->refresh_time = refresh_time;
798                         cq->q_uuid = uuid;
799                         cq->answerable_cnt = answerable_cnt;
800                         cq->refcnt = 0;
801
802                         /* it's now into cq->filter */
803                         BER_BVZERO( &uuid );
804                         query.filter = NULL;
805
806                 } else {
807                         rc = 1;
808                 }
809         }
810
811 error:;
812         if ( query.filter != NULL ) filter_free( query.filter );
813         if ( !BER_BVISNULL( &tempstr ) ) ch_free( tempstr.bv_val );
814         if ( !BER_BVISNULL( &query.base ) ) ch_free( query.base.bv_val );
815         if ( !BER_BVISNULL( &uuid ) ) ch_free( uuid.bv_val );
816         if ( lud != NULL ) ldap_free_urldesc( lud );
817
818         return rc;
819 }
820
821 /* Return 1 for an added entry, else 0 */
822 static int
823 merge_entry(
824         Operation               *op,
825         Entry                   *e,
826         struct berval*          query_uuid )
827 {
828         int             rc;
829         Modifications* modlist = NULL;
830         const char*     text = NULL;
831         Attribute               *attr;
832         char                    textbuf[SLAP_TEXT_BUFLEN];
833         size_t                  textlen = sizeof(textbuf);
834
835         SlapReply sreply = {REP_RESULT};
836
837         slap_callback cb = { NULL, slap_null_cb, NULL, NULL };
838
839         attr = e->e_attrs;
840         e->e_attrs = NULL;
841
842         /* add queryId attribute */
843         attr_merge_one( e, ad_queryId, query_uuid, NULL );
844
845         /* append the attribute list from the fetched entry */
846         e->e_attrs->a_next = attr;
847
848         op->o_tag = LDAP_REQ_ADD;
849         op->o_protocol = LDAP_VERSION3;
850         op->o_callback = &cb;
851         op->o_time = slap_get_time();
852         op->o_do_not_cache = 1;
853
854         op->ora_e = e;
855         op->o_req_dn = e->e_name;
856         op->o_req_ndn = e->e_nname;
857         rc = op->o_bd->be_add( op, &sreply );
858
859         if ( rc != LDAP_SUCCESS ) {
860                 if ( rc == LDAP_ALREADY_EXISTS ) {
861                         slap_entry2mods( e, &modlist, &text, textbuf, textlen );
862                         modlist->sml_op = LDAP_MOD_ADD;
863                         op->o_tag = LDAP_REQ_MODIFY;
864                         op->orm_modlist = modlist;
865                         op->o_bd->be_modify( op, &sreply );
866                         slap_mods_free( modlist, 1 );
867                 } else if ( rc == LDAP_REFERRAL ||
868                                         rc == LDAP_NO_SUCH_OBJECT ) {
869                         syncrepl_add_glue( op, e );
870                         e = NULL;
871                         rc = 1;
872                 }
873                 if ( e ) {
874                         entry_free( e );
875                         rc = 0;
876                 }
877         } else {
878                 if ( op->ora_e == e )
879                         be_entry_release_w( op, e );
880                 rc = 1;
881         }
882
883         return rc;
884 }
885
886 /* Length-ordered sort on normalized DNs */
887 static int pcache_dn_cmp( const void *v1, const void *v2 )
888 {
889         const Qbase *q1 = v1, *q2 = v2;
890
891         int rc = q1->base.bv_len - q2->base.bv_len;
892         if ( rc == 0 )
893                 rc = strncmp( q1->base.bv_val, q2->base.bv_val, q1->base.bv_len );
894         return rc;
895 }
896
897 static int lex_bvcmp( struct berval *bv1, struct berval *bv2 )
898 {
899         int len, dif;
900         dif = bv1->bv_len - bv2->bv_len;
901         len = bv1->bv_len;
902         if ( dif > 0 ) len -= dif;
903         len = memcmp( bv1->bv_val, bv2->bv_val, len );
904         if ( !len )
905                 len = dif;
906         return len;
907 }
908
909 /* compare the current value in each filter */
910 static int pcache_filter_cmp( Filter *f1, Filter *f2 )
911 {
912         int rc, weight1, weight2;
913
914         switch( f1->f_choice ) {
915         case LDAP_FILTER_PRESENT:
916                 weight1 = 0;
917                 break;
918         case LDAP_FILTER_EQUALITY:
919         case LDAP_FILTER_GE:
920         case LDAP_FILTER_LE:
921                 weight1 = 1;
922                 break;
923         default:
924                 weight1 = 2;
925         }
926         switch( f2->f_choice ) {
927         case LDAP_FILTER_PRESENT:
928                 weight2 = 0;
929                 break;
930         case LDAP_FILTER_EQUALITY:
931         case LDAP_FILTER_GE:
932         case LDAP_FILTER_LE:
933                 weight2 = 1;
934                 break;
935         default:
936                 weight2 = 2;
937         }
938         rc = weight1 - weight2;
939         if ( !rc ) {
940                 switch( weight1 ) {
941                 case 0:
942                         break;
943                 case 1:
944                         rc = lex_bvcmp( &f1->f_av_value, &f2->f_av_value );
945                         break;
946                 case 2:
947                         if ( f1->f_choice == LDAP_FILTER_SUBSTRINGS ) {
948                                 rc = 0;
949                                 if ( !BER_BVISNULL( &f1->f_sub_initial )) {
950                                         if ( !BER_BVISNULL( &f2->f_sub_initial )) {
951                                                 rc = lex_bvcmp( &f1->f_sub_initial,
952                                                         &f2->f_sub_initial );
953                                         } else {
954                                                 rc = 1;
955                                         }
956                                 } else if ( !BER_BVISNULL( &f2->f_sub_initial )) {
957                                         rc = -1;
958                                 }
959                                 if ( rc ) break;
960                                 if ( f1->f_sub_any ) {
961                                         if ( f2->f_sub_any ) {
962                                                 rc = lex_bvcmp( f1->f_sub_any,
963                                                         f2->f_sub_any );
964                                         } else {
965                                                 rc = 1;
966                                         }
967                                 } else if ( f2->f_sub_any ) {
968                                         rc = -1;
969                                 }
970                                 if ( rc ) break;
971                                 if ( !BER_BVISNULL( &f1->f_sub_final )) {
972                                         if ( !BER_BVISNULL( &f2->f_sub_final )) {
973                                                 rc = lex_bvcmp( &f1->f_sub_final,
974                                                         &f2->f_sub_final );
975                                         } else {
976                                                 rc = 1;
977                                         }
978                                 } else if ( !BER_BVISNULL( &f2->f_sub_final )) {
979                                         rc = -1;
980                                 }
981                         } else {
982                                 rc = lex_bvcmp( &f1->f_mr_value,
983                                         &f2->f_mr_value );
984                         }
985                         break;
986                 }
987                 if ( !rc ) {
988                         f1 = f1->f_next;
989                         f2 = f2->f_next;
990                         if ( f1 || f2 ) {
991                                 if ( !f1 )
992                                         rc = -1;
993                                 else if ( !f2 )
994                                         rc = 1;
995                                 else {
996                                         while ( f1->f_choice == LDAP_FILTER_AND || f1->f_choice == LDAP_FILTER_OR )
997                                                 f1 = f1->f_and;
998                                         while ( f2->f_choice == LDAP_FILTER_AND || f2->f_choice == LDAP_FILTER_OR )
999                                                 f2 = f2->f_and;
1000                                         rc = pcache_filter_cmp( f1, f2 );
1001                                 }
1002                         }
1003                 }
1004         }
1005         return rc;
1006 }
1007
1008 /* compare filters in each query */
1009 static int pcache_query_cmp( const void *v1, const void *v2 )
1010 {
1011         const CachedQuery *q1 = v1, *q2 =v2;
1012         return pcache_filter_cmp( q1->first, q2->first );
1013 }
1014
1015 /* add query on top of LRU list */
1016 static void
1017 add_query_on_top (query_manager* qm, CachedQuery* qc)
1018 {
1019         CachedQuery* top = qm->lru_top;
1020
1021         qm->lru_top = qc;
1022
1023         if (top)
1024                 top->lru_up = qc;
1025         else
1026                 qm->lru_bottom = qc;
1027
1028         qc->lru_down = top;
1029         qc->lru_up = NULL;
1030         Debug( pcache_debug, "Base of added query = %s\n",
1031                         qc->qbase->base.bv_val, 0, 0 );
1032 }
1033
1034 /* remove_query from LRU list */
1035
1036 static void
1037 remove_query (query_manager* qm, CachedQuery* qc)
1038 {
1039         CachedQuery* up;
1040         CachedQuery* down;
1041
1042         if (!qc)
1043                 return;
1044
1045         up = qc->lru_up;
1046         down = qc->lru_down;
1047
1048         if (!up)
1049                 qm->lru_top = down;
1050
1051         if (!down)
1052                 qm->lru_bottom = up;
1053
1054         if (down)
1055                 down->lru_up = up;
1056
1057         if (up)
1058                 up->lru_down = down;
1059
1060         qc->lru_up = qc->lru_down = NULL;
1061 }
1062
1063 /* find and remove string2 from string1
1064  * from start if position = 1,
1065  * from end if position = 3,
1066  * from anywhere if position = 2
1067  * string1 is overwritten if position = 2.
1068  */
1069
1070 static int
1071 find_and_remove(struct berval* ber1, struct berval* ber2, int position)
1072 {
1073         int ret=0;
1074
1075         if ( !ber2->bv_val )
1076                 return 1;
1077         if ( !ber1->bv_val )
1078                 return 0;
1079
1080         switch( position ) {
1081         case 1:
1082                 if ( ber1->bv_len >= ber2->bv_len && !memcmp( ber1->bv_val,
1083                         ber2->bv_val, ber2->bv_len )) {
1084                         ret = 1;
1085                         ber1->bv_val += ber2->bv_len;
1086                         ber1->bv_len -= ber2->bv_len;
1087                 }
1088                 break;
1089         case 2: {
1090                 char *temp;
1091                 ber1->bv_val[ber1->bv_len] = '\0';
1092                 temp = strstr( ber1->bv_val, ber2->bv_val );
1093                 if ( temp ) {
1094                         strcpy( temp, temp+ber2->bv_len );
1095                         ber1->bv_len -= ber2->bv_len;
1096                         ret = 1;
1097                 }
1098                 break;
1099                 }
1100         case 3:
1101                 if ( ber1->bv_len >= ber2->bv_len &&
1102                         !memcmp( ber1->bv_val+ber1->bv_len-ber2->bv_len, ber2->bv_val,
1103                                 ber2->bv_len )) {
1104                         ret = 1;
1105                         ber1->bv_len -= ber2->bv_len;
1106                 }
1107                 break;
1108         }
1109         return ret;
1110 }
1111
1112
1113 static struct berval*
1114 merge_init_final(Operation *op, struct berval* init, struct berval* any,
1115         struct berval* final)
1116 {
1117         struct berval* merged, *temp;
1118         int i, any_count, count;
1119
1120         for (any_count=0; any && any[any_count].bv_val; any_count++)
1121                 ;
1122
1123         count = any_count;
1124
1125         if (init->bv_val)
1126                 count++;
1127         if (final->bv_val)
1128                 count++;
1129
1130         merged = (struct berval*)op->o_tmpalloc( (count+1)*sizeof(struct berval),
1131                 op->o_tmpmemctx );
1132         temp = merged;
1133
1134         if (init->bv_val) {
1135                 ber_dupbv_x( temp, init, op->o_tmpmemctx );
1136                 temp++;
1137         }
1138
1139         for (i=0; i<any_count; i++) {
1140                 ber_dupbv_x( temp, any, op->o_tmpmemctx );
1141                 temp++; any++;
1142         }
1143
1144         if (final->bv_val){
1145                 ber_dupbv_x( temp, final, op->o_tmpmemctx );
1146                 temp++;
1147         }
1148         BER_BVZERO( temp );
1149         return merged;
1150 }
1151
1152 /* Each element in stored must be found in incoming. Incoming is overwritten.
1153  */
1154 static int
1155 strings_containment(struct berval* stored, struct berval* incoming)
1156 {
1157         struct berval* element;
1158         int k=0;
1159         int j, rc = 0;
1160
1161         for ( element=stored; element->bv_val != NULL; element++ ) {
1162                 for (j = k; incoming[j].bv_val != NULL; j++) {
1163                         if (find_and_remove(&(incoming[j]), element, 2)) {
1164                                 k = j;
1165                                 rc = 1;
1166                                 break;
1167                         }
1168                         rc = 0;
1169                 }
1170                 if ( rc ) {
1171                         continue;
1172                 } else {
1173                         return 0;
1174                 }
1175         }
1176         return 1;
1177 }
1178
1179 static int
1180 substr_containment_substr(Operation *op, Filter* stored, Filter* incoming)
1181 {
1182         int rc = 0;
1183
1184         struct berval init_incoming;
1185         struct berval final_incoming;
1186         struct berval *remaining_incoming = NULL;
1187
1188         if ((!(incoming->f_sub_initial.bv_val) && (stored->f_sub_initial.bv_val))
1189            || (!(incoming->f_sub_final.bv_val) && (stored->f_sub_final.bv_val)))
1190                 return 0;
1191
1192         init_incoming = incoming->f_sub_initial;
1193         final_incoming =  incoming->f_sub_final;
1194
1195         if (find_and_remove(&init_incoming,
1196                         &(stored->f_sub_initial), 1) && find_and_remove(&final_incoming,
1197                         &(stored->f_sub_final), 3))
1198         {
1199                 if (stored->f_sub_any == NULL) {
1200                         rc = 1;
1201                         goto final;
1202                 }
1203                 remaining_incoming = merge_init_final(op, &init_incoming,
1204                                                 incoming->f_sub_any, &final_incoming);
1205                 rc = strings_containment(stored->f_sub_any, remaining_incoming);
1206                 ber_bvarray_free_x( remaining_incoming, op->o_tmpmemctx );
1207         }
1208 final:
1209         return rc;
1210 }
1211
1212 static int
1213 substr_containment_equality(Operation *op, Filter* stored, Filter* incoming)
1214 {
1215         struct berval incoming_val[2];
1216         int rc = 0;
1217
1218         incoming_val[1] = incoming->f_av_value;
1219
1220         if (find_and_remove(incoming_val+1,
1221                         &(stored->f_sub_initial), 1) && find_and_remove(incoming_val+1,
1222                         &(stored->f_sub_final), 3)) {
1223                 if (stored->f_sub_any == NULL){
1224                         rc = 1;
1225                         goto final;
1226                 }
1227                 ber_dupbv_x( incoming_val, incoming_val+1, op->o_tmpmemctx );
1228                 BER_BVZERO( incoming_val+1 );
1229                 rc = strings_containment(stored->f_sub_any, incoming_val);
1230                 op->o_tmpfree( incoming_val[0].bv_val, op->o_tmpmemctx );
1231         }
1232 final:
1233         return rc;
1234 }
1235
1236 static Filter *
1237 filter_first( Filter *f )
1238 {
1239         while ( f->f_choice == LDAP_FILTER_OR || f->f_choice == LDAP_FILTER_AND )
1240                 f = f->f_and;
1241         return f;
1242 }
1243
1244
1245 static CachedQuery *
1246 find_filter( Operation *op, Avlnode *root, Filter *inputf, Filter *first )
1247 {
1248         Filter* fs;
1249         Filter* fi;
1250         MatchingRule* mrule = NULL;
1251         int res=0, eqpass= 0;
1252         int ret, rc, dir;
1253         Avlnode *ptr;
1254         CachedQuery cq, *qc;
1255
1256         cq.filter = inputf;
1257         cq.first = first;
1258
1259         /* substring matches sort to the end, and we just have to
1260          * walk the entire list.
1261          */
1262         if ( first->f_choice == LDAP_FILTER_SUBSTRINGS ) {
1263                 ptr = tavl_end( root, 1 );
1264                 dir = TAVL_DIR_LEFT;
1265         } else {
1266                 ptr = tavl_find3( root, &cq, pcache_query_cmp, &ret );
1267                 dir = (first->f_choice == LDAP_FILTER_GE) ? TAVL_DIR_LEFT :
1268                         TAVL_DIR_RIGHT;
1269         }
1270
1271         while (ptr) {
1272                 qc = ptr->avl_data;
1273                 fi = inputf;
1274                 fs = qc->filter;
1275
1276                 /* an incoming substr query can only be satisfied by a cached
1277                  * substr query.
1278                  */
1279                 if ( first->f_choice == LDAP_FILTER_SUBSTRINGS &&
1280                         qc->first->f_choice != LDAP_FILTER_SUBSTRINGS )
1281                         break;
1282
1283                 /* an incoming eq query can be satisfied by a cached eq or substr
1284                  * query
1285                  */
1286                 if ( first->f_choice == LDAP_FILTER_EQUALITY ) {
1287                         if ( eqpass == 0 ) {
1288                                 if ( qc->first->f_choice != LDAP_FILTER_EQUALITY ) {
1289 nextpass:                       eqpass = 1;
1290                                         ptr = tavl_end( root, 1 );
1291                                         dir = TAVL_DIR_LEFT;
1292                                         continue;
1293                                 }
1294                         } else {
1295                                 if ( qc->first->f_choice != LDAP_FILTER_SUBSTRINGS )
1296                                         break;
1297                         }
1298                 }
1299                 do {
1300                         res=0;
1301                         switch (fs->f_choice) {
1302                         case LDAP_FILTER_EQUALITY:
1303                                 if (fi->f_choice == LDAP_FILTER_EQUALITY)
1304                                         mrule = fs->f_ava->aa_desc->ad_type->sat_equality;
1305                                 else
1306                                         ret = 1;
1307                                 break;
1308                         case LDAP_FILTER_GE:
1309                         case LDAP_FILTER_LE:
1310                                 mrule = fs->f_ava->aa_desc->ad_type->sat_ordering;
1311                                 break;
1312                         default:
1313                                 mrule = NULL; 
1314                         }
1315                         if (mrule) {
1316                                 const char *text;
1317                                 rc = value_match(&ret, fs->f_ava->aa_desc, mrule,
1318                                         SLAP_MR_VALUE_OF_ASSERTION_SYNTAX,
1319                                         &(fi->f_ava->aa_value),
1320                                         &(fs->f_ava->aa_value), &text);
1321                                 if (rc != LDAP_SUCCESS) {
1322                                         return NULL;
1323                                 }
1324                                 if ( fi==first && fi->f_choice==LDAP_FILTER_EQUALITY && ret )
1325                                         goto nextpass;
1326                         }
1327                         switch (fs->f_choice) {
1328                         case LDAP_FILTER_OR:
1329                         case LDAP_FILTER_AND:
1330                                 fs = fs->f_and;
1331                                 fi = fi->f_and;
1332                                 res=1;
1333                                 break;
1334                         case LDAP_FILTER_SUBSTRINGS:
1335                                 /* check if the equality query can be
1336                                 * answered with cached substring query */
1337                                 if ((fi->f_choice == LDAP_FILTER_EQUALITY)
1338                                         && substr_containment_equality( op,
1339                                         fs, fi))
1340                                         res=1;
1341                                 /* check if the substring query can be
1342                                 * answered with cached substring query */
1343                                 if ((fi->f_choice ==LDAP_FILTER_SUBSTRINGS
1344                                         ) && substr_containment_substr( op,
1345                                         fs, fi))
1346                                         res= 1;
1347                                 fs=fs->f_next;
1348                                 fi=fi->f_next;
1349                                 break;
1350                         case LDAP_FILTER_PRESENT:
1351                                 res=1;
1352                                 fs=fs->f_next;
1353                                 fi=fi->f_next;
1354                                 break;
1355                         case LDAP_FILTER_EQUALITY:
1356                                 if (ret == 0)
1357                                         res = 1;
1358                                 fs=fs->f_next;
1359                                 fi=fi->f_next;
1360                                 break;
1361                         case LDAP_FILTER_GE:
1362                                 if (mrule && ret >= 0)
1363                                         res = 1;
1364                                 fs=fs->f_next;
1365                                 fi=fi->f_next;
1366                                 break;
1367                         case LDAP_FILTER_LE:
1368                                 if (mrule && ret <= 0)
1369                                         res = 1;
1370                                 fs=fs->f_next;
1371                                 fi=fi->f_next;
1372                                 break;
1373                         case LDAP_FILTER_NOT:
1374                                 res=0;
1375                                 break;
1376                         default:
1377                                 break;
1378                         }
1379                 } while((res) && (fi != NULL) && (fs != NULL));
1380
1381                 if ( res )
1382                         return qc;
1383                 ptr = tavl_next( ptr, dir );
1384         }
1385         return NULL;
1386 }
1387
1388 /* check whether query is contained in any of
1389  * the cached queries in template
1390  */
1391 static CachedQuery *
1392 query_containment(Operation *op, query_manager *qm,
1393                   Query *query,
1394                   QueryTemplate *templa)
1395 {
1396         CachedQuery* qc;
1397         int depth = 0, tscope;
1398         Qbase qbase, *qbptr = NULL;
1399         struct berval pdn;
1400
1401         if (query->filter != NULL) {
1402                 Filter *first;
1403
1404                 Debug( pcache_debug, "Lock QC index = %p\n",
1405                                 (void *) templa, 0, 0 );
1406                 qbase.base = query->base;
1407
1408                 first = filter_first( query->filter );
1409
1410                 ldap_pvt_thread_rdwr_rlock(&templa->t_rwlock);
1411                 for( ;; ) {
1412                         /* Find the base */
1413                         qbptr = avl_find( templa->qbase, &qbase, pcache_dn_cmp );
1414                         if ( qbptr ) {
1415                                 tscope = query->scope;
1416                                 /* Find a matching scope:
1417                                  * match at depth 0 OK
1418                                  * scope is BASE,
1419                                  *      one at depth 1 OK
1420                                  *  subord at depth > 0 OK
1421                                  *      subtree at any depth OK
1422                                  * scope is ONE,
1423                                  *  subtree or subord at any depth OK
1424                                  * scope is SUBORD,
1425                                  *  subtree or subord at any depth OK
1426                                  * scope is SUBTREE,
1427                                  *  subord at depth > 0 OK
1428                                  *  subtree at any depth OK
1429                                  */
1430                                 for ( tscope = 0 ; tscope <= LDAP_SCOPE_CHILDREN; tscope++ ) {
1431                                         switch ( query->scope ) {
1432                                         case LDAP_SCOPE_BASE:
1433                                                 if ( tscope == LDAP_SCOPE_BASE && depth ) continue;
1434                                                 if ( tscope == LDAP_SCOPE_ONE && depth != 1) continue;
1435                                                 if ( tscope == LDAP_SCOPE_CHILDREN && !depth ) continue;
1436                                                 break;
1437                                         case LDAP_SCOPE_ONE:
1438                                                 if ( tscope == LDAP_SCOPE_BASE )
1439                                                         tscope = LDAP_SCOPE_ONE;
1440                                                 if ( tscope == LDAP_SCOPE_ONE && depth ) continue;
1441                                                 if ( !depth ) break;
1442                                                 if ( tscope < LDAP_SCOPE_SUBTREE )
1443                                                         tscope = LDAP_SCOPE_SUBTREE;
1444                                                 break;
1445                                         case LDAP_SCOPE_SUBTREE:
1446                                                 if ( tscope < LDAP_SCOPE_SUBTREE )
1447                                                         tscope = LDAP_SCOPE_SUBTREE;
1448                                                 if ( tscope == LDAP_SCOPE_CHILDREN && !depth ) continue;
1449                                                 break;
1450                                         case LDAP_SCOPE_CHILDREN:
1451                                                 if ( tscope < LDAP_SCOPE_SUBTREE )
1452                                                         tscope = LDAP_SCOPE_SUBTREE;
1453                                                 break;
1454                                         }
1455                                         if ( !qbptr->scopes[tscope] ) continue;
1456
1457                                         /* Find filter */
1458                                         qc = find_filter( op, qbptr->scopes[tscope],
1459                                                         query->filter, first );
1460                                         if ( qc ) {
1461                                                 if ( qc->q_sizelimit ) {
1462                                                         ldap_pvt_thread_rdwr_runlock(&templa->t_rwlock);
1463                                                         return NULL;
1464                                                 }
1465                                                 ldap_pvt_thread_mutex_lock(&qm->lru_mutex);
1466                                                 if (qm->lru_top != qc) {
1467                                                         remove_query(qm, qc);
1468                                                         add_query_on_top(qm, qc);
1469                                                 }
1470                                                 ldap_pvt_thread_mutex_unlock(&qm->lru_mutex);
1471                                                 return qc;
1472                                         }
1473                                 }
1474                         }
1475                         if ( be_issuffix( op->o_bd, &qbase.base ))
1476                                 break;
1477                         /* Up a level */
1478                         dnParent( &qbase.base, &pdn );
1479                         qbase.base = pdn;
1480                         depth++;
1481                 }
1482
1483                 Debug( pcache_debug,
1484                         "Not answerable: Unlock QC index=%p\n",
1485                         (void *) templa, 0, 0 );
1486                 ldap_pvt_thread_rdwr_runlock(&templa->t_rwlock);
1487         }
1488         return NULL;
1489 }
1490
1491 static void
1492 free_query (CachedQuery* qc)
1493 {
1494         free(qc->q_uuid.bv_val);
1495         filter_free(qc->filter);
1496         ldap_pvt_thread_mutex_destroy(&qc->answerable_cnt_mutex);
1497         ldap_pvt_thread_rdwr_destroy( &qc->rwlock );
1498         memset(qc, 0, sizeof(*qc));
1499         free(qc);
1500 }
1501
1502
1503 /* Add query to query cache, the returned Query is locked for writing */
1504 static CachedQuery *
1505 add_query(
1506         Operation *op,
1507         query_manager* qm,
1508         Query* query,
1509         QueryTemplate *templ,
1510         pc_caching_reason_t why,
1511         int wlock)
1512 {
1513         CachedQuery* new_cached_query = (CachedQuery*) ch_malloc(sizeof(CachedQuery));
1514         Qbase *qbase, qb;
1515         Filter *first;
1516         int rc;
1517         time_t ttl = 0, ttr = 0;
1518         time_t now;
1519
1520         new_cached_query->qtemp = templ;
1521         BER_BVZERO( &new_cached_query->q_uuid );
1522         new_cached_query->q_sizelimit = 0;
1523
1524         now = slap_get_time();
1525         switch ( why ) {
1526         case PC_POSITIVE:
1527                 ttl = templ->ttl;
1528                 if ( templ->ttr )
1529                         ttr = now + templ->ttr;
1530                 break;
1531
1532         case PC_NEGATIVE:
1533                 ttl = templ->negttl;
1534                 break;
1535
1536         case PC_SIZELIMIT:
1537                 ttl = templ->limitttl;
1538                 break;
1539
1540         default:
1541                 assert( 0 );
1542                 break;
1543         }
1544         new_cached_query->expiry_time = now + ttl;
1545         new_cached_query->refresh_time = ttr;
1546
1547         new_cached_query->answerable_cnt = 0;
1548         new_cached_query->refcnt = 1;
1549         ldap_pvt_thread_mutex_init(&new_cached_query->answerable_cnt_mutex);
1550
1551         new_cached_query->lru_up = NULL;
1552         new_cached_query->lru_down = NULL;
1553         Debug( pcache_debug, "Added query expires at %ld (%s)\n",
1554                         (long) new_cached_query->expiry_time,
1555                         pc_caching_reason_str[ why ], 0 );
1556
1557         new_cached_query->scope = query->scope;
1558         new_cached_query->filter = query->filter;
1559         new_cached_query->first = first = filter_first( query->filter );
1560         
1561         ldap_pvt_thread_rdwr_init(&new_cached_query->rwlock);
1562         if (wlock)
1563                 ldap_pvt_thread_rdwr_wlock(&new_cached_query->rwlock);
1564
1565         qb.base = query->base;
1566
1567         /* Adding a query    */
1568         Debug( pcache_debug, "Lock AQ index = %p\n",
1569                         (void *) templ, 0, 0 );
1570         ldap_pvt_thread_rdwr_wlock(&templ->t_rwlock);
1571         qbase = avl_find( templ->qbase, &qb, pcache_dn_cmp );
1572         if ( !qbase ) {
1573                 qbase = ch_calloc( 1, sizeof(Qbase) + qb.base.bv_len + 1 );
1574                 qbase->base.bv_len = qb.base.bv_len;
1575                 qbase->base.bv_val = (char *)(qbase+1);
1576                 memcpy( qbase->base.bv_val, qb.base.bv_val, qb.base.bv_len );
1577                 qbase->base.bv_val[qbase->base.bv_len] = '\0';
1578                 avl_insert( &templ->qbase, qbase, pcache_dn_cmp, avl_dup_error );
1579         }
1580         new_cached_query->next = templ->query;
1581         new_cached_query->prev = NULL;
1582         new_cached_query->qbase = qbase;
1583         rc = tavl_insert( &qbase->scopes[query->scope], new_cached_query,
1584                 pcache_query_cmp, avl_dup_error );
1585         if ( rc == 0 ) {
1586                 qbase->queries++;
1587                 if (templ->query == NULL)
1588                         templ->query_last = new_cached_query;
1589                 else
1590                         templ->query->prev = new_cached_query;
1591                 templ->query = new_cached_query;
1592                 templ->no_of_queries++;
1593         } else {
1594                 ch_free( new_cached_query );
1595                 new_cached_query = find_filter( op, qbase->scopes[query->scope],
1596                                                         query->filter, first );
1597                 filter_free( query->filter );
1598                 query->filter = NULL;
1599         }
1600         Debug( pcache_debug, "TEMPLATE %p QUERIES++ %d\n",
1601                         (void *) templ, templ->no_of_queries, 0 );
1602
1603         Debug( pcache_debug, "Unlock AQ index = %p \n",
1604                         (void *) templ, 0, 0 );
1605         ldap_pvt_thread_rdwr_wunlock(&templ->t_rwlock);
1606
1607         /* Adding on top of LRU list  */
1608         if ( rc == 0 ) {
1609                 ldap_pvt_thread_mutex_lock(&qm->lru_mutex);
1610                 add_query_on_top(qm, new_cached_query);
1611                 ldap_pvt_thread_mutex_unlock(&qm->lru_mutex);
1612         }
1613         return rc == 0 ? new_cached_query : NULL;
1614 }
1615
1616 static void
1617 remove_from_template (CachedQuery* qc, QueryTemplate* template)
1618 {
1619         if (!qc->prev && !qc->next) {
1620                 template->query_last = template->query = NULL;
1621         } else if (qc->prev == NULL) {
1622                 qc->next->prev = NULL;
1623                 template->query = qc->next;
1624         } else if (qc->next == NULL) {
1625                 qc->prev->next = NULL;
1626                 template->query_last = qc->prev;
1627         } else {
1628                 qc->next->prev = qc->prev;
1629                 qc->prev->next = qc->next;
1630         }
1631         tavl_delete( &qc->qbase->scopes[qc->scope], qc, pcache_query_cmp );
1632         qc->qbase->queries--;
1633         if ( qc->qbase->queries == 0 ) {
1634                 avl_delete( &template->qbase, qc->qbase, pcache_dn_cmp );
1635                 ch_free( qc->qbase );
1636                 qc->qbase = NULL;
1637         }
1638
1639         template->no_of_queries--;
1640 }
1641
1642 /* remove bottom query of LRU list from the query cache */
1643 /*
1644  * NOTE: slight change in functionality.
1645  *
1646  * - if result->bv_val is NULL, the query at the bottom of the LRU
1647  *   is removed
1648  * - otherwise, the query whose UUID is *result is removed
1649  *      - if not found, result->bv_val is zeroed
1650  */
1651 static void
1652 cache_replacement(query_manager* qm, struct berval *result)
1653 {
1654         CachedQuery* bottom;
1655         QueryTemplate *temp;
1656
1657         ldap_pvt_thread_mutex_lock(&qm->lru_mutex);
1658         if ( BER_BVISNULL( result ) ) {
1659                 bottom = qm->lru_bottom;
1660
1661                 if (!bottom) {
1662                         Debug ( pcache_debug,
1663                                 "Cache replacement invoked without "
1664                                 "any query in LRU list\n", 0, 0, 0 );
1665                         ldap_pvt_thread_mutex_unlock(&qm->lru_mutex);
1666                         return;
1667                 }
1668
1669         } else {
1670                 for ( bottom = qm->lru_bottom;
1671                         bottom != NULL;
1672                         bottom = bottom->lru_up )
1673                 {
1674                         if ( bvmatch( result, &bottom->q_uuid ) ) {
1675                                 break;
1676                         }
1677                 }
1678
1679                 if ( !bottom ) {
1680                         Debug ( pcache_debug,
1681                                 "Could not find query with uuid=\"%s\""
1682                                 "in LRU list\n", result->bv_val, 0, 0 );
1683                         ldap_pvt_thread_mutex_unlock(&qm->lru_mutex);
1684                         BER_BVZERO( result );
1685                         return;
1686                 }
1687         }
1688
1689         temp = bottom->qtemp;
1690         remove_query(qm, bottom);
1691         ldap_pvt_thread_mutex_unlock(&qm->lru_mutex);
1692
1693         *result = bottom->q_uuid;
1694         BER_BVZERO( &bottom->q_uuid );
1695
1696         Debug( pcache_debug, "Lock CR index = %p\n", (void *) temp, 0, 0 );
1697         ldap_pvt_thread_rdwr_wlock(&temp->t_rwlock);
1698         remove_from_template(bottom, temp);
1699         Debug( pcache_debug, "TEMPLATE %p QUERIES-- %d\n",
1700                 (void *) temp, temp->no_of_queries, 0 );
1701         Debug( pcache_debug, "Unlock CR index = %p\n", (void *) temp, 0, 0 );
1702         ldap_pvt_thread_rdwr_wunlock(&temp->t_rwlock);
1703         free_query(bottom);
1704 }
1705
1706 struct query_info {
1707         struct query_info *next;
1708         struct berval xdn;
1709         int del;
1710 };
1711
1712 static int
1713 remove_func (
1714         Operation       *op,
1715         SlapReply       *rs
1716 )
1717 {
1718         Attribute *attr;
1719         struct query_info *qi;
1720         int count = 0;
1721
1722         if ( rs->sr_type != REP_SEARCH ) return 0;
1723
1724         attr = attr_find( rs->sr_entry->e_attrs,  ad_queryId );
1725         if ( attr == NULL ) return 0;
1726
1727         count = attr->a_numvals;
1728         assert( count > 0 );
1729         qi = op->o_tmpalloc( sizeof( struct query_info ), op->o_tmpmemctx );
1730         qi->next = op->o_callback->sc_private;
1731         op->o_callback->sc_private = qi;
1732         ber_dupbv_x( &qi->xdn, &rs->sr_entry->e_nname, op->o_tmpmemctx );
1733         qi->del = ( count == 1 );
1734
1735         return 0;
1736 }
1737
1738 static int
1739 remove_query_data(
1740         Operation       *op,
1741         SlapReply       *rs,
1742         struct berval   *query_uuid )
1743 {
1744         struct query_info       *qi, *qnext;
1745         char                    filter_str[ LDAP_LUTIL_UUIDSTR_BUFSIZE + STRLENOF( "(pcacheQueryID=)" ) ];
1746         AttributeAssertion      ava = ATTRIBUTEASSERTION_INIT;
1747         Filter                  filter = {LDAP_FILTER_EQUALITY};
1748         SlapReply               sreply = {REP_RESULT};
1749         slap_callback cb = { NULL, remove_func, NULL, NULL };
1750         int deleted = 0;
1751
1752         sreply.sr_entry = NULL;
1753         sreply.sr_nentries = 0;
1754         op->ors_filterstr.bv_len = snprintf(filter_str, sizeof(filter_str),
1755                 "(%s=%s)", ad_queryId->ad_cname.bv_val, query_uuid->bv_val);
1756         filter.f_ava = &ava;
1757         filter.f_av_desc = ad_queryId;
1758         filter.f_av_value = *query_uuid;
1759
1760         op->o_tag = LDAP_REQ_SEARCH;
1761         op->o_protocol = LDAP_VERSION3;
1762         op->o_callback = &cb;
1763         op->o_time = slap_get_time();
1764         op->o_do_not_cache = 1;
1765
1766         op->o_req_dn = op->o_bd->be_suffix[0];
1767         op->o_req_ndn = op->o_bd->be_nsuffix[0];
1768         op->ors_scope = LDAP_SCOPE_SUBTREE;
1769         op->ors_deref = LDAP_DEREF_NEVER;
1770         op->ors_slimit = SLAP_NO_LIMIT;
1771         op->ors_tlimit = SLAP_NO_LIMIT;
1772         op->ors_limit = NULL;
1773         op->ors_filter = &filter;
1774         op->ors_filterstr.bv_val = filter_str;
1775         op->ors_filterstr.bv_len = strlen(filter_str);
1776         op->ors_attrs = NULL;
1777         op->ors_attrsonly = 0;
1778
1779         op->o_bd->be_search( op, &sreply );
1780
1781         for ( qi=cb.sc_private; qi; qi=qnext ) {
1782                 qnext = qi->next;
1783
1784                 op->o_req_dn = qi->xdn;
1785                 op->o_req_ndn = qi->xdn;
1786
1787                 if ( qi->del ) {
1788                         Debug( pcache_debug, "DELETING ENTRY TEMPLATE=%s\n",
1789                                 query_uuid->bv_val, 0, 0 );
1790
1791                         op->o_tag = LDAP_REQ_DELETE;
1792
1793                         if (op->o_bd->be_delete(op, &sreply) == LDAP_SUCCESS) {
1794                                 deleted++;
1795                         }
1796
1797                 } else {
1798                         Modifications mod;
1799                         struct berval vals[2];
1800
1801                         vals[0] = *query_uuid;
1802                         vals[1].bv_val = NULL;
1803                         vals[1].bv_len = 0;
1804                         mod.sml_op = LDAP_MOD_DELETE;
1805                         mod.sml_flags = 0;
1806                         mod.sml_desc = ad_queryId;
1807                         mod.sml_type = ad_queryId->ad_cname;
1808                         mod.sml_values = vals;
1809                         mod.sml_nvalues = NULL;
1810                         mod.sml_numvals = 1;
1811                         mod.sml_next = NULL;
1812                         Debug( pcache_debug,
1813                                 "REMOVING TEMP ATTR : TEMPLATE=%s\n",
1814                                 query_uuid->bv_val, 0, 0 );
1815
1816                         op->orm_modlist = &mod;
1817
1818                         op->o_bd->be_modify( op, &sreply );
1819                 }
1820                 op->o_tmpfree( qi->xdn.bv_val, op->o_tmpmemctx );
1821                 op->o_tmpfree( qi, op->o_tmpmemctx );
1822         }
1823         return deleted;
1824 }
1825
1826 static int
1827 get_attr_set(
1828         AttributeName* attrs,
1829         query_manager* qm,
1830         int num
1831 );
1832
1833 static int
1834 filter2template(
1835         Operation               *op,
1836         Filter                  *f,
1837         struct                  berval *fstr )
1838 {
1839         AttributeDescription *ad;
1840         int len, ret;
1841
1842         switch ( f->f_choice ) {
1843         case LDAP_FILTER_EQUALITY:
1844                 ad = f->f_av_desc;
1845                 len = STRLENOF( "(=)" ) + ad->ad_cname.bv_len;
1846                 ret = snprintf( fstr->bv_val+fstr->bv_len, len + 1, "(%s=)", ad->ad_cname.bv_val );
1847                 assert( ret == len );
1848                 fstr->bv_len += len;
1849                 break;
1850
1851         case LDAP_FILTER_GE:
1852                 ad = f->f_av_desc;
1853                 len = STRLENOF( "(>=)" ) + ad->ad_cname.bv_len;
1854                 ret = snprintf( fstr->bv_val+fstr->bv_len, len + 1, "(%s>=)", ad->ad_cname.bv_val);
1855                 assert( ret == len );
1856                 fstr->bv_len += len;
1857                 break;
1858
1859         case LDAP_FILTER_LE:
1860                 ad = f->f_av_desc;
1861                 len = STRLENOF( "(<=)" ) + ad->ad_cname.bv_len;
1862                 ret = snprintf( fstr->bv_val+fstr->bv_len, len + 1, "(%s<=)", ad->ad_cname.bv_val);
1863                 assert( ret == len );
1864                 fstr->bv_len += len;
1865                 break;
1866
1867         case LDAP_FILTER_APPROX:
1868                 ad = f->f_av_desc;
1869                 len = STRLENOF( "(~=)" ) + ad->ad_cname.bv_len;
1870                 ret = snprintf( fstr->bv_val+fstr->bv_len, len + 1, "(%s~=)", ad->ad_cname.bv_val);
1871                 assert( ret == len );
1872                 fstr->bv_len += len;
1873                 break;
1874
1875         case LDAP_FILTER_SUBSTRINGS:
1876                 ad = f->f_sub_desc;
1877                 len = STRLENOF( "(=)" ) + ad->ad_cname.bv_len;
1878                 ret = snprintf( fstr->bv_val+fstr->bv_len, len + 1, "(%s=)", ad->ad_cname.bv_val );
1879                 assert( ret == len );
1880                 fstr->bv_len += len;
1881                 break;
1882
1883         case LDAP_FILTER_PRESENT:
1884                 ad = f->f_desc;
1885                 len = STRLENOF( "(=*)" ) + ad->ad_cname.bv_len;
1886                 ret = snprintf( fstr->bv_val+fstr->bv_len, len + 1, "(%s=*)", ad->ad_cname.bv_val );
1887                 assert( ret == len );
1888                 fstr->bv_len += len;
1889                 break;
1890
1891         case LDAP_FILTER_AND:
1892         case LDAP_FILTER_OR:
1893         case LDAP_FILTER_NOT: {
1894                 int rc = 0;
1895                 fstr->bv_val[fstr->bv_len++] = '(';
1896                 switch ( f->f_choice ) {
1897                 case LDAP_FILTER_AND:
1898                         fstr->bv_val[fstr->bv_len] = '&';
1899                         break;
1900                 case LDAP_FILTER_OR:
1901                         fstr->bv_val[fstr->bv_len] = '|';
1902                         break;
1903                 case LDAP_FILTER_NOT:
1904                         fstr->bv_val[fstr->bv_len] = '!';
1905                         break;
1906                 }
1907                 fstr->bv_len++;
1908
1909                 for ( f = f->f_list; f != NULL; f = f->f_next ) {
1910                         rc = filter2template( op, f, fstr );
1911                         if ( rc ) break;
1912                 }
1913                 fstr->bv_val[fstr->bv_len++] = ')';
1914                 fstr->bv_val[fstr->bv_len] = '\0';
1915
1916                 return rc;
1917                 }
1918
1919         default:
1920                 /* a filter should at least have room for "()",
1921                  * an "=" and for a 1-char attr */
1922                 strcpy( fstr->bv_val, "(?=)" );
1923                 fstr->bv_len += STRLENOF("(?=)");
1924                 return -1;
1925         }
1926
1927         return 0;
1928 }
1929
1930 #define BI_HASHED       0x01
1931 #define BI_DIDCB        0x02
1932 #define BI_LOOKUP       0x04
1933
1934 struct search_info;
1935
1936 typedef struct bindinfo {
1937         cache_manager *bi_cm;
1938         CachedQuery *bi_cq;
1939         QueryTemplate *bi_templ;
1940         struct search_info *bi_si;
1941         int bi_flags;
1942         slap_callback bi_cb;
1943 } bindinfo;
1944
1945 struct search_info {
1946         slap_overinst *on;
1947         Query query;
1948         QueryTemplate *qtemp;
1949         AttributeName*  save_attrs;     /* original attributes, saved for response */
1950         int swap_saved_attrs;
1951         int max;
1952         int over;
1953         int count;
1954         int slimit;
1955         int slimit_exceeded;
1956         pc_caching_reason_t caching_reason;
1957         Entry *head, *tail;
1958         bindinfo *pbi;
1959 };
1960
1961 static void
1962 remove_query_and_data(
1963         Operation       *op,
1964         SlapReply       *rs,
1965         cache_manager   *cm,
1966         struct berval   *uuid )
1967 {
1968         query_manager*          qm = cm->qm;
1969
1970         qm->crfunc( qm, uuid );
1971         if ( !BER_BVISNULL( uuid ) ) {
1972                 int     return_val;
1973
1974                 Debug( pcache_debug,
1975                         "Removing query UUID %s\n",
1976                         uuid->bv_val, 0, 0 );
1977                 return_val = remove_query_data( op, rs, uuid );
1978                 Debug( pcache_debug,
1979                         "QUERY REMOVED, SIZE=%d\n",
1980                         return_val, 0, 0);
1981                 ldap_pvt_thread_mutex_lock( &cm->cache_mutex );
1982                 cm->cur_entries -= return_val;
1983                 cm->num_cached_queries--;
1984                 Debug( pcache_debug,
1985                         "STORED QUERIES = %lu\n",
1986                         cm->num_cached_queries, 0, 0 );
1987                 ldap_pvt_thread_mutex_unlock( &cm->cache_mutex );
1988                 Debug( pcache_debug,
1989                         "QUERY REMOVED, CACHE ="
1990                         "%d entries\n",
1991                         cm->cur_entries, 0, 0 );
1992         }
1993 }
1994
1995 /*
1996  * Callback used to fetch queryId values based on entryUUID;
1997  * used by pcache_remove_entries_from_cache()
1998  */
1999 static int
2000 fetch_queryId_cb( Operation *op, SlapReply *rs )
2001 {
2002         int             rc = 0;
2003
2004         /* only care about searchEntry responses */
2005         if ( rs->sr_type != REP_SEARCH ) {
2006                 return 0;
2007         }
2008
2009         /* allow only one response per entryUUID */
2010         if ( op->o_callback->sc_private != NULL ) {
2011                 rc = 1;
2012
2013         } else {
2014                 Attribute       *a;
2015
2016                 /* copy all queryId values into callback's private data */
2017                 a = attr_find( rs->sr_entry->e_attrs, ad_queryId );
2018                 if ( a != NULL ) {
2019                         BerVarray       vals = NULL;
2020
2021                         ber_bvarray_dup_x( &vals, a->a_nvals, op->o_tmpmemctx );
2022                         op->o_callback->sc_private = (void *)vals;
2023                 }
2024         }
2025
2026         /* clear entry if required */
2027         if ( rs->sr_flags & REP_ENTRY_MUSTBEFREED ) {
2028                 entry_free( rs->sr_entry );
2029                 rs->sr_entry = NULL;
2030                 rs->sr_flags ^= REP_ENTRY_MUSTBEFREED;
2031         }
2032
2033         return rc;
2034 }
2035
2036 /*
2037  * Call that allows to remove a set of entries from the cache,
2038  * by forcing the removal of all the related queries.
2039  */
2040 int
2041 pcache_remove_entries_from_cache(
2042         Operation       *op,
2043         cache_manager   *cm,
2044         BerVarray       entryUUIDs )
2045 {
2046         Connection      conn = { 0 };
2047         OperationBuffer opbuf;
2048         Operation       op2;
2049         slap_callback   sc = { 0 };
2050         SlapReply       rs = { REP_RESULT };
2051         Filter          f = { 0 };
2052         char            filtbuf[ LDAP_LUTIL_UUIDSTR_BUFSIZE + STRLENOF( "(entryUUID=)" ) ];
2053         AttributeAssertion ava = ATTRIBUTEASSERTION_INIT;
2054         AttributeName   attrs[ 2 ] = {{{ 0 }}};
2055         int             s, rc;
2056
2057         if ( op == NULL ) {
2058                 void    *thrctx = ldap_pvt_thread_pool_context();
2059
2060                 connection_fake_init( &conn, &opbuf, thrctx );
2061                 op = &opbuf.ob_op;
2062
2063         } else {
2064                 op2 = *op;
2065                 op = &op2;
2066         }
2067
2068         memset( &op->oq_search, 0, sizeof( op->oq_search ) );
2069         op->ors_scope = LDAP_SCOPE_SUBTREE;
2070         op->ors_deref = LDAP_DEREF_NEVER;
2071         f.f_choice = LDAP_FILTER_EQUALITY;
2072         f.f_ava = &ava;
2073         ava.aa_desc = slap_schema.si_ad_entryUUID;
2074         op->ors_filter = &f;
2075         op->ors_slimit = 1;
2076         op->ors_tlimit = SLAP_NO_LIMIT;
2077         op->ors_limit = NULL;
2078         attrs[ 0 ].an_desc = ad_queryId;
2079         attrs[ 0 ].an_name = ad_queryId->ad_cname;
2080         op->ors_attrs = attrs;
2081         op->ors_attrsonly = 0;
2082
2083         op->o_req_dn = cm->db.be_suffix[ 0 ];
2084         op->o_req_ndn = cm->db.be_nsuffix[ 0 ];
2085
2086         op->o_tag = LDAP_REQ_SEARCH;
2087         op->o_protocol = LDAP_VERSION3;
2088         op->o_managedsait = SLAP_CONTROL_CRITICAL;
2089         op->o_bd = &cm->db;
2090         op->o_dn = op->o_bd->be_rootdn;
2091         op->o_ndn = op->o_bd->be_rootndn;
2092         sc.sc_response = fetch_queryId_cb;
2093         op->o_callback = &sc;
2094
2095         for ( s = 0; !BER_BVISNULL( &entryUUIDs[ s ] ); s++ ) {
2096                 BerVarray       vals = NULL;
2097
2098                 op->ors_filterstr.bv_len = snprintf( filtbuf, sizeof( filtbuf ),
2099                         "(entryUUID=%s)", entryUUIDs[ s ].bv_val );
2100                 op->ors_filterstr.bv_val = filtbuf;
2101                 ava.aa_value = entryUUIDs[ s ];
2102
2103                 rc = op->o_bd->be_search( op, &rs );
2104                 if ( rc != LDAP_SUCCESS ) {
2105                         continue;
2106                 }
2107
2108                 vals = (BerVarray)op->o_callback->sc_private;
2109                 if ( vals != NULL ) {
2110                         int             i;
2111
2112                         for ( i = 0; !BER_BVISNULL( &vals[ i ] ); i++ ) {
2113                                 struct berval   val = vals[ i ];
2114
2115                                 remove_query_and_data( op, &rs, cm, &val );
2116
2117                                 if ( !BER_BVISNULL( &val ) && val.bv_val != vals[ i ].bv_val ) {
2118                                         ch_free( val.bv_val );
2119                                 }
2120                         }
2121
2122                         ber_bvarray_free_x( vals, op->o_tmpmemctx );
2123                         op->o_callback->sc_private = NULL;
2124                 }
2125         }
2126
2127         return 0;
2128 }
2129
2130 /*
2131  * Call that allows to remove a query from the cache.
2132  */
2133 int
2134 pcache_remove_query_from_cache(
2135         Operation       *op,
2136         cache_manager   *cm,
2137         struct berval   *queryid )
2138 {
2139         Operation       op2 = *op;
2140         SlapReply       rs2 = { 0 };
2141
2142         op2.o_bd = &cm->db;
2143
2144         /* remove the selected query */
2145         remove_query_and_data( &op2, &rs2, cm, queryid );
2146
2147         return LDAP_SUCCESS;
2148 }
2149
2150 /*
2151  * Call that allows to remove a set of queries related to an entry 
2152  * from the cache; if queryid is not null, the entry must belong to
2153  * the query indicated by queryid.
2154  */
2155 int
2156 pcache_remove_entry_queries_from_cache(
2157         Operation       *op,
2158         cache_manager   *cm,
2159         struct berval   *ndn,
2160         struct berval   *queryid )
2161 {
2162         Connection              conn = { 0 };
2163         OperationBuffer         opbuf;
2164         Operation               op2;
2165         slap_callback           sc = { 0 };
2166         SlapReply               rs = { REP_RESULT };
2167         Filter                  f = { 0 };
2168         char                    filter_str[ LDAP_LUTIL_UUIDSTR_BUFSIZE + STRLENOF( "(pcacheQueryID=)" ) ];
2169         AttributeAssertion      ava = ATTRIBUTEASSERTION_INIT;
2170         AttributeName           attrs[ 2 ] = {{{ 0 }}};
2171         int                     rc;
2172
2173         BerVarray               vals = NULL;
2174
2175         if ( op == NULL ) {
2176                 void    *thrctx = ldap_pvt_thread_pool_context();
2177
2178                 connection_fake_init( &conn, &opbuf, thrctx );
2179                 op = &opbuf.ob_op;
2180
2181         } else {
2182                 op2 = *op;
2183                 op = &op2;
2184         }
2185
2186         memset( &op->oq_search, 0, sizeof( op->oq_search ) );
2187         op->ors_scope = LDAP_SCOPE_BASE;
2188         op->ors_deref = LDAP_DEREF_NEVER;
2189         if ( queryid == NULL || BER_BVISNULL( queryid ) ) {
2190                 BER_BVSTR( &op->ors_filterstr, "(objectClass=*)" );
2191                 f.f_choice = LDAP_FILTER_PRESENT;
2192                 f.f_desc = slap_schema.si_ad_objectClass;
2193
2194         } else {
2195                 op->ors_filterstr.bv_len = snprintf( filter_str,
2196                         sizeof( filter_str ), "(%s=%s)",
2197                         ad_queryId->ad_cname.bv_val, queryid->bv_val );
2198                 f.f_choice = LDAP_FILTER_EQUALITY;
2199                 f.f_ava = &ava;
2200                 f.f_av_desc = ad_queryId;
2201                 f.f_av_value = *queryid;
2202         }
2203         op->ors_filter = &f;
2204         op->ors_slimit = 1;
2205         op->ors_tlimit = SLAP_NO_LIMIT;
2206         op->ors_limit = NULL;
2207         attrs[ 0 ].an_desc = ad_queryId;
2208         attrs[ 0 ].an_name = ad_queryId->ad_cname;
2209         op->ors_attrs = attrs;
2210         op->ors_attrsonly = 0;
2211
2212         op->o_req_dn = *ndn;
2213         op->o_req_ndn = *ndn;
2214
2215         op->o_tag = LDAP_REQ_SEARCH;
2216         op->o_protocol = LDAP_VERSION3;
2217         op->o_managedsait = SLAP_CONTROL_CRITICAL;
2218         op->o_bd = &cm->db;
2219         op->o_dn = op->o_bd->be_rootdn;
2220         op->o_ndn = op->o_bd->be_rootndn;
2221         sc.sc_response = fetch_queryId_cb;
2222         op->o_callback = &sc;
2223
2224         rc = op->o_bd->be_search( op, &rs );
2225         if ( rc != LDAP_SUCCESS ) {
2226                 return rc;
2227         }
2228
2229         vals = (BerVarray)op->o_callback->sc_private;
2230         if ( vals != NULL ) {
2231                 int             i;
2232
2233                 for ( i = 0; !BER_BVISNULL( &vals[ i ] ); i++ ) {
2234                         struct berval   val = vals[ i ];
2235
2236                         remove_query_and_data( op, &rs, cm, &val );
2237
2238                         if ( !BER_BVISNULL( &val ) && val.bv_val != vals[ i ].bv_val ) {
2239                                 ch_free( val.bv_val );
2240                         }
2241                 }
2242
2243                 ber_bvarray_free_x( vals, op->o_tmpmemctx );
2244         }
2245
2246         return LDAP_SUCCESS;
2247 }
2248
2249 static int
2250 cache_entries(
2251         Operation       *op,
2252         SlapReply       *rs,
2253         struct berval *query_uuid )
2254 {
2255         struct search_info *si = op->o_callback->sc_private;
2256         slap_overinst *on = si->on;
2257         cache_manager *cm = on->on_bi.bi_private;
2258         int             return_val = 0;
2259         Entry           *e;
2260         struct berval   crp_uuid;
2261         char            uuidbuf[ LDAP_LUTIL_UUIDSTR_BUFSIZE ];
2262         Operation       *op_tmp;
2263         Connection      conn = {0};
2264         OperationBuffer opbuf;
2265         void            *thrctx = ldap_pvt_thread_pool_context();
2266
2267         query_uuid->bv_len = lutil_uuidstr(uuidbuf, sizeof(uuidbuf));
2268         ber_str2bv(uuidbuf, query_uuid->bv_len, 1, query_uuid);
2269
2270         connection_fake_init2( &conn, &opbuf, thrctx, 0 );
2271         op_tmp = &opbuf.ob_op;
2272         op_tmp->o_bd = &cm->db;
2273         op_tmp->o_dn = cm->db.be_rootdn;
2274         op_tmp->o_ndn = cm->db.be_rootndn;
2275
2276         Debug( pcache_debug, "UUID for query being added = %s\n",
2277                         uuidbuf, 0, 0 );
2278
2279         for ( e=si->head; e; e=si->head ) {
2280                 si->head = e->e_private;
2281                 e->e_private = NULL;
2282                 while ( cm->cur_entries > (cm->max_entries) ) {
2283                         BER_BVZERO( &crp_uuid );
2284                         remove_query_and_data( op_tmp, rs, cm, &crp_uuid );
2285                 }
2286
2287                 return_val = merge_entry(op_tmp, e, query_uuid);
2288                 ldap_pvt_thread_mutex_lock(&cm->cache_mutex);
2289                 cm->cur_entries += return_val;
2290                 Debug( pcache_debug,
2291                         "ENTRY ADDED/MERGED, CACHED ENTRIES=%d\n",
2292                         cm->cur_entries, 0, 0 );
2293                 return_val = 0;
2294                 ldap_pvt_thread_mutex_unlock(&cm->cache_mutex);
2295         }
2296
2297         return return_val;
2298 }
2299
2300 static int
2301 pcache_op_cleanup( Operation *op, SlapReply *rs ) {
2302         slap_callback   *cb = op->o_callback;
2303         struct search_info *si = cb->sc_private;
2304         slap_overinst *on = si->on;
2305         cache_manager *cm = on->on_bi.bi_private;
2306         query_manager*          qm = cm->qm;
2307
2308         if ( rs->sr_type == REP_SEARCH ) {
2309                 Entry *e;
2310
2311                 /* don't return more entries than requested by the client */
2312                 if ( si->slimit > 0 && rs->sr_nentries >= si->slimit ) {
2313                         si->slimit_exceeded = 1;
2314                 }
2315
2316                 /* If we haven't exceeded the limit for this query,
2317                  * build a chain of answers to store. If we hit the
2318                  * limit, empty the chain and ignore the rest.
2319                  */
2320                 if ( !si->over ) {
2321                         /* check if the entry contains undefined
2322                          * attributes/objectClasses (ITS#5680) */
2323                         if ( cm->check_cacheability && test_filter( op, rs->sr_entry, si->query.filter ) != LDAP_COMPARE_TRUE ) {
2324                                 Debug( pcache_debug, "%s: query not cacheable because of schema issues in DN \"%s\"\n",
2325                                         op->o_log_prefix, rs->sr_entry->e_name.bv_val, 0 );
2326                                 goto over;
2327                         }
2328
2329                         /* check for malformed entries: attrs with no values */
2330                         {
2331                                 Attribute *a = rs->sr_entry->e_attrs;
2332                                 for (; a; a=a->a_next) {
2333                                         if ( !a->a_numvals ) {
2334                                                 Debug( pcache_debug, "%s: query not cacheable because of attrs without values in DN \"%s\" (%s)\n",
2335                                                 op->o_log_prefix, rs->sr_entry->e_name.bv_val,
2336                                                 a->a_desc->ad_cname.bv_val );
2337                                                 goto over;
2338                                         }
2339                                 }
2340                         }
2341
2342                         if ( si->count < si->max ) {
2343                                 si->count++;
2344                                 e = entry_dup( rs->sr_entry );
2345                                 if ( !si->head ) si->head = e;
2346                                 if ( si->tail ) si->tail->e_private = e;
2347                                 si->tail = e;
2348
2349                         } else {
2350 over:;
2351                                 si->over = 1;
2352                                 si->count = 0;
2353                                 for (;si->head; si->head=e) {
2354                                         e = si->head->e_private;
2355                                         si->head->e_private = NULL;
2356                                         entry_free(si->head);
2357                                 }
2358                                 si->tail = NULL;
2359                         }
2360                 }
2361
2362         }
2363
2364         if ( rs->sr_type == REP_RESULT || 
2365                 op->o_abandon || rs->sr_err == SLAPD_ABANDON )
2366         {
2367                 if ( si->swap_saved_attrs ) {
2368                         rs->sr_attrs = si->save_attrs;
2369                         op->ors_attrs = si->save_attrs;
2370                 }
2371                 if ( (op->o_abandon || rs->sr_err == SLAPD_ABANDON) && 
2372                                 si->caching_reason == PC_IGNORE )
2373                 {
2374                         filter_free( si->query.filter );
2375                         if ( si->count ) {
2376                                 /* duplicate query, free it */
2377                                 Entry *e;
2378                                 for (;si->head; si->head=e) {
2379                                         e = si->head->e_private;
2380                                         si->head->e_private = NULL;
2381                                         entry_free(si->head);
2382                                 }
2383                         }
2384                         op->o_callback = op->o_callback->sc_next;
2385                         op->o_tmpfree( cb, op->o_tmpmemctx );
2386                 } else if ( si->caching_reason != PC_IGNORE ) {
2387                         CachedQuery *qc = qm->addfunc(op, qm, &si->query,
2388                                 si->qtemp, si->caching_reason, 1 );
2389
2390                         if ( qc != NULL ) {
2391                                 switch ( si->caching_reason ) {
2392                                 case PC_POSITIVE:
2393                                         cache_entries( op, rs, &qc->q_uuid );
2394                                         if ( si->pbi )
2395                                                 si->pbi->bi_cq = qc;
2396                                         break;
2397
2398                                 case PC_SIZELIMIT:
2399                                         qc->q_sizelimit = rs->sr_nentries;
2400                                         break;
2401
2402                                 case PC_NEGATIVE:
2403                                         break;
2404
2405                                 default:
2406                                         assert( 0 );
2407                                         break;
2408                                 }
2409                                 ldap_pvt_thread_rdwr_wunlock(&qc->rwlock);
2410                                 ldap_pvt_thread_mutex_lock(&cm->cache_mutex);
2411                                 cm->num_cached_queries++;
2412                                 Debug( pcache_debug, "STORED QUERIES = %lu\n",
2413                                                 cm->num_cached_queries, 0, 0 );
2414                                 ldap_pvt_thread_mutex_unlock(&cm->cache_mutex);
2415
2416                                 /* If the consistency checker suspended itself,
2417                                  * wake it back up
2418                                  */
2419                                 if ( cm->cc_paused == PCACHE_CC_PAUSED ) {
2420                                         ldap_pvt_thread_mutex_lock( &slapd_rq.rq_mutex );
2421                                         if ( cm->cc_paused == PCACHE_CC_PAUSED ) {
2422                                                 cm->cc_paused = 0;
2423                                                 ldap_pvt_runqueue_resched( &slapd_rq, cm->cc_arg, 0 );
2424                                         }
2425                                         ldap_pvt_thread_mutex_unlock( &slapd_rq.rq_mutex );
2426                                 }
2427
2428                         } else if ( si->count ) {
2429                                 /* duplicate query, free it */
2430                                 Entry *e;
2431                                 for (;si->head; si->head=e) {
2432                                         e = si->head->e_private;
2433                                         si->head->e_private = NULL;
2434                                         entry_free(si->head);
2435                                 }
2436                         }
2437
2438                 } else {
2439                         filter_free( si->query.filter );
2440                 }
2441         }
2442
2443         return SLAP_CB_CONTINUE;
2444 }
2445
2446 static int
2447 pcache_response(
2448         Operation       *op,
2449         SlapReply       *rs )
2450 {
2451         struct search_info *si = op->o_callback->sc_private;
2452
2453         if ( si->swap_saved_attrs ) {
2454                 rs->sr_attrs = si->save_attrs;
2455                 op->ors_attrs = si->save_attrs;
2456         }
2457
2458         if ( rs->sr_type == REP_SEARCH ) {
2459                 /* don't return more entries than requested by the client */
2460                 if ( si->slimit_exceeded ) {
2461                         return 0;
2462                 }
2463
2464         } else if ( rs->sr_type == REP_RESULT ) {
2465
2466                 if ( si->count ) {
2467                         if ( rs->sr_err == LDAP_SUCCESS ) {
2468                                 si->caching_reason = PC_POSITIVE;
2469
2470                         } else if ( rs->sr_err == LDAP_SIZELIMIT_EXCEEDED
2471                                 && si->qtemp->limitttl )
2472                         {
2473                                 si->caching_reason = PC_SIZELIMIT;
2474                         }
2475
2476                 } else if ( si->qtemp->negttl && !si->count && !si->over &&
2477                                 rs->sr_err == LDAP_SUCCESS )
2478                 {
2479                         si->caching_reason = PC_NEGATIVE;
2480                 }
2481
2482
2483                 if ( si->slimit_exceeded ) {
2484                         rs->sr_err = LDAP_SIZELIMIT_EXCEEDED;
2485                 }
2486         }
2487
2488         return SLAP_CB_CONTINUE;
2489 }
2490
2491 /* NOTE: this is a quick workaround to let pcache minimally interact
2492  * with pagedResults.  A more articulated solutions would be to
2493  * perform the remote query without control and cache all results,
2494  * performing the pagedResults search only within the client
2495  * and the proxy.  This requires pcache to understand pagedResults. */
2496 static int
2497 pcache_chk_controls(
2498         Operation       *op,
2499         SlapReply       *rs )
2500 {
2501         const char      *non = "";
2502         const char      *stripped = "";
2503
2504         switch( op->o_pagedresults ) {
2505         case SLAP_CONTROL_NONCRITICAL:
2506                 non = "non-";
2507                 stripped = "; stripped";
2508                 /* fallthru */
2509
2510         case SLAP_CONTROL_CRITICAL:
2511                 Debug( pcache_debug, "%s: "
2512                         "%scritical pagedResults control "
2513                         "disabled with proxy cache%s.\n",
2514                         op->o_log_prefix, non, stripped );
2515                 
2516                 slap_remove_control( op, rs, slap_cids.sc_pagedResults, NULL );
2517                 break;
2518
2519         default:
2520                 rs->sr_err = SLAP_CB_CONTINUE;
2521                 break;
2522         }
2523
2524         return rs->sr_err;
2525 }
2526
2527 typedef struct bindcacheinfo {
2528         slap_overinst *on;
2529         CachedQuery *qc;
2530 } bindcacheinfo;
2531         
2532 static int
2533 pc_bind_save( Operation *op, SlapReply *rs )
2534 {
2535         if ( rs->sr_err == LDAP_SUCCESS ) {
2536                 bindcacheinfo *bci = op->o_callback->sc_private;
2537                 slap_overinst *on = bci->on;
2538                 cache_manager *cm = on->on_bi.bi_private;
2539                 struct berval vals[2];
2540                 const char *text = NULL;
2541
2542                 BER_BVZERO( &vals[0] );
2543                 BER_BVZERO( &vals[1] );
2544                 slap_passwd_hash( &op->orb_cred, &vals[0], &text );
2545                 if ( BER_BVISEMPTY( &vals[0] )) {
2546                         Debug( pcache_debug, "pcache_bind_save: hash failed %s\n",
2547                                 text, 0, 0 );
2548                 } else {
2549                         Operation op2 = *op;
2550                         Modifications mod;
2551                         SlapReply sr = { REP_RESULT };
2552                         slap_callback cb = { 0, slap_null_cb, 0, 0 };
2553                         
2554                         mod.sml_op = LDAP_MOD_REPLACE;
2555                         mod.sml_flags = 0;
2556                         mod.sml_desc = slap_schema.si_ad_userPassword;
2557                         mod.sml_type = mod.sml_desc->ad_cname;
2558                         mod.sml_values = vals;
2559                         mod.sml_nvalues = NULL;
2560                         mod.sml_numvals = 1;
2561                         mod.sml_next = NULL;
2562
2563                         op2.o_tag = LDAP_REQ_MODIFY;
2564                         op2.orm_modlist = &mod;
2565                         op2.o_bd = &cm->db;
2566                         op2.o_dn = op2.o_bd->be_rootdn;
2567                         op2.o_ndn = op2.o_bd->be_rootndn;
2568                         op2.o_callback = &cb;
2569                         Debug( pcache_debug, "pcache_bind_save: caching bind for %s\n",
2570                                 op->o_req_dn.bv_val, 0, 0 );
2571                         if ( op2.o_bd->be_modify( &op2, &sr ) == LDAP_SUCCESS )
2572                                 bci->qc->bindref_time = op->o_time + bci->qc->qtemp->bindttr;
2573                         ch_free( vals[0].bv_val );
2574                 }
2575         }
2576         return SLAP_CB_CONTINUE;
2577 }
2578
2579 static Filter *
2580 pc_bind_attrs( Operation *op, Entry *e, QueryTemplate *temp,
2581         struct berval *fbv )
2582 {
2583         int i, len = 0;
2584         struct berval *vals, pres = BER_BVC("*");
2585         char *p1, *p2, *t1;
2586         Attribute *a;
2587
2588         vals = op->o_tmpalloc( temp->bindnattrs * sizeof( struct berval ),
2589                 op->o_tmpmemctx );
2590
2591         for ( i=0; i<temp->bindnattrs; i++ ) {
2592                 a = attr_find( e->e_attrs, temp->bindfattrs[i] );
2593                 if ( a && a->a_vals ) {
2594                         vals[i] = a->a_vals[0];
2595                         len += a->a_vals[0].bv_len;
2596                 } else {
2597                         vals[i] = pres;
2598                 }
2599         }
2600         fbv->bv_len = len + temp->bindftemp.bv_len;
2601         fbv->bv_val = op->o_tmpalloc( fbv->bv_len + 1, op->o_tmpmemctx );
2602
2603         p1 = temp->bindftemp.bv_val;
2604         p2 = fbv->bv_val;
2605         i = 0;
2606         while ( *p1 ) {
2607                 *p2++ = *p1;
2608                 if ( p1[0] == '=' && p1[1] == ')' ) {
2609                         AC_MEMCPY( p2, vals[i].bv_val, vals[i].bv_len );
2610                         p2 += vals[i].bv_len;
2611                         i++;
2612                 }
2613                 p1++;
2614         }
2615         *p2 = '\0';
2616         op->o_tmpfree( vals, op->o_tmpmemctx );
2617         return str2filter_x( op, fbv->bv_val );
2618 }
2619
2620 /* Check if the requested entry is from the cache and has a valid
2621  * ttr and password hash
2622  */
2623 static int
2624 pc_bind_search( Operation *op, SlapReply *rs )
2625 {
2626         if ( rs->sr_type == REP_SEARCH ) {
2627                 bindinfo *pbi = op->o_callback->sc_private;
2628
2629                 /* We only care if this is an already cached result and we're
2630                  * below the refresh time, or we're offline.
2631                  */
2632                 if ( pbi->bi_cq ) {
2633                         if (( pbi->bi_cm->cc_paused & PCACHE_CC_OFFLINE ) ||
2634                                 op->o_time < pbi->bi_cq->bindref_time ) {
2635                                 Attribute *a;
2636
2637                                 /* See if a recognized password is hashed here */
2638                                 a = attr_find( rs->sr_entry->e_attrs,
2639                                         slap_schema.si_ad_userPassword );
2640                                 if ( a && a->a_vals[0].bv_val[0] == '{' &&
2641                                         lutil_passwd_scheme( a->a_vals[0].bv_val ))
2642                                         pbi->bi_flags |= BI_HASHED;
2643                         } else {
2644                                 Debug( pcache_debug, "pc_bind_search: cache is stale, "
2645                                         "reftime: %ld, current time: %ld\n",
2646                                         pbi->bi_cq->bindref_time, op->o_time, 0 );
2647                         }
2648                 } else if ( pbi->bi_si ) {
2649                         /* This search result is going into the cache */
2650                         struct berval fbv;
2651                         Filter *f;
2652
2653                         filter_free( pbi->bi_si->query.filter );
2654                         f = pc_bind_attrs( op, rs->sr_entry, pbi->bi_templ, &fbv );
2655                         op->o_tmpfree( fbv.bv_val, op->o_tmpmemctx );
2656                         pbi->bi_si->query.filter = filter_dup( f, NULL );
2657                         filter_free_x( op, f, 1 );
2658                 }
2659         }
2660         return 0;
2661 }
2662
2663 /* We always want pc_bind_search to run after the search handlers */
2664 static int
2665 pc_bind_resp( Operation *op, SlapReply *rs )
2666 {
2667         bindinfo *pbi = op->o_callback->sc_private;
2668         if ( !( pbi->bi_flags & BI_DIDCB )) {
2669                 slap_callback *sc = op->o_callback;
2670                 while ( sc && sc->sc_response != pcache_response )
2671                         sc = sc->sc_next;
2672                 if ( !sc )
2673                         sc = op->o_callback;
2674                 pbi->bi_cb.sc_next = sc->sc_next;
2675                 sc->sc_next = &pbi->bi_cb;
2676                 pbi->bi_flags |= BI_DIDCB;
2677         }
2678         return SLAP_CB_CONTINUE;
2679 }
2680
2681 static int
2682 pcache_op_bind(
2683         Operation               *op,
2684         SlapReply               *rs )
2685 {
2686         slap_overinst   *on = (slap_overinst *)op->o_bd->bd_info;
2687         cache_manager   *cm = on->on_bi.bi_private;
2688         QueryTemplate *temp;
2689         Entry *e;
2690         slap_callback   cb = { 0 }, *sc;
2691         bindinfo bi;
2692         bindcacheinfo *bci;
2693         Operation op2;
2694         int is_priv = 0, rc;
2695
2696 #ifdef PCACHE_CONTROL_PRIVDB
2697         if ( op->o_ctrlflag[ privDB_cid ] == SLAP_CONTROL_CRITICAL )
2698                 is_priv = 1;
2699 #endif
2700
2701         /* Skip if we're not configured for Binds, and no priv control */
2702         if ( !cm->cache_binds && !is_priv )
2703                 return SLAP_CB_CONTINUE;
2704
2705         /* The cache DB isn't open yet */
2706         if ( cm->defer_db_open ) {
2707                 if ( !is_priv ) {
2708                         /* Just passthru for now */
2709                         return SLAP_CB_CONTINUE;
2710                 } else {
2711                         send_ldap_error( op, rs, LDAP_UNAVAILABLE,
2712                                 "pcachePrivDB: cacheDB not available" );
2713                         return rs->sr_err;
2714                 }
2715         }
2716
2717         if ( is_priv ) {
2718                 int             rc;
2719                 slap_callback   *save_cb;
2720
2721                 /* FIXME: might be a little bit exaggerated... */
2722                 if ( !be_isroot( op ) ) {
2723                         save_cb = op->o_callback;
2724                         op->o_callback = NULL;
2725                         send_ldap_error( op, rs, LDAP_UNWILLING_TO_PERFORM,
2726                                 "pcachePrivDB: operation not allowed" );
2727                         op->o_callback = save_cb;
2728
2729                         return rs->sr_err;
2730                 }
2731
2732                 /* execute, if possible */
2733                 if ( cm->db.be_bind != NULL ) {
2734                         op2 = *op;
2735                         op2.o_bd = &cm->db;
2736
2737                         rc = op2.o_bd->be_bind( &op2, rs );
2738                         if ( rc == LDAP_SUCCESS ) {
2739                                 op->o_conn->c_authz_cookie = cm->db.be_private;
2740                         }
2741                 } else {
2742                         /* otherwise fall back to error */
2743                         save_cb = op->o_callback;
2744                         op->o_callback = NULL;
2745                         send_ldap_error( op, rs, LDAP_UNWILLING_TO_PERFORM,
2746                                 "operation not supported with pcachePrivDB control" );
2747                         op->o_callback = save_cb;
2748                 }
2749
2750                 return rs->sr_err;
2751         }
2752
2753         /* First find a matching template with Bind info */
2754         for ( temp=cm->qm->templates; temp; temp=temp->qmnext ) {
2755                 if ( temp->bindttr && dnIsSuffix( &op->o_req_ndn, &temp->bindbase ))
2756                         break;
2757         }
2758         /* Didn't find a suitable template, just passthru */
2759         if ( !temp )
2760                 return SLAP_CB_CONTINUE;
2761
2762         /* See if the entry is already locally cached. If so, we can
2763          * populate the query filter to retrieve the cached query. We
2764          * need to check the bindrefresh time in the query.
2765          */
2766         op2 = *op;
2767         op2.o_dn = op->o_bd->be_rootdn;
2768         op2.o_ndn = op->o_bd->be_rootndn;
2769         bi.bi_flags = 0;
2770
2771         op2.o_bd = &cm->db;
2772         e = NULL;
2773         rc = be_entry_get_rw( &op2, &op->o_req_ndn, NULL, NULL, 0, &e );
2774         if ( rc == LDAP_SUCCESS && e ) {
2775                 int i;
2776                 Attribute *a;
2777
2778                 bi.bi_flags |= BI_LOOKUP;
2779                 op2.ors_filter = pc_bind_attrs( op, e, temp, &op2.ors_filterstr );
2780                 be_entry_release_r( &op2, e );
2781         } else {
2782                 op2.ors_filter = temp->bindfilter;
2783                 op2.ors_filterstr = temp->bindfilterstr;
2784         }
2785
2786         op2.o_bd = op->o_bd;
2787         op2.o_tag = LDAP_REQ_SEARCH;
2788         op2.ors_scope = LDAP_SCOPE_BASE;
2789         op2.ors_deref = LDAP_DEREF_NEVER;
2790         op2.ors_slimit = 1;
2791         op2.ors_tlimit = SLAP_NO_LIMIT;
2792         op2.ors_limit = NULL;
2793         op2.ors_attrs = cm->qm->attr_sets[temp->attr_set_index].attrs;
2794         op2.ors_attrsonly = 0;
2795
2796         /* We want to invoke search at the same level of the stack
2797          * as we're already at...
2798          */
2799         bi.bi_cm = cm;
2800         bi.bi_templ = temp;
2801         bi.bi_cq = NULL;
2802         bi.bi_si = NULL;
2803
2804         bi.bi_cb.sc_response = pc_bind_search;
2805         bi.bi_cb.sc_cleanup = NULL;
2806         bi.bi_cb.sc_private = &bi;
2807         cb.sc_private = &bi;
2808         cb.sc_response = pc_bind_resp;
2809         op2.o_callback = &cb;
2810         overlay_op_walk( &op2, rs, op_search, on->on_info, on );
2811
2812         /* OK, just bind locally */
2813         if ( bi.bi_flags & BI_HASHED ) {
2814                 BackendDB *be = op->o_bd;
2815                 op->o_bd = &cm->db;
2816
2817                 if ( op->o_bd->be_bind( op, rs ) == LDAP_SUCCESS ) {
2818                         op->o_conn->c_authz_cookie = cm->db.be_private;
2819                 }
2820                 op->o_bd = be;
2821                 return rs->sr_err;
2822         }
2823
2824         /* We have a cached query to work with */
2825         if ( bi.bi_cq ) {
2826                 sc = op->o_tmpalloc( sizeof(slap_callback) + sizeof(bindcacheinfo),
2827                         op->o_tmpmemctx );
2828                 sc->sc_response = pc_bind_save;
2829                 sc->sc_cleanup = NULL;
2830                 sc->sc_private = sc+1;
2831                 bci = sc->sc_private;
2832                 sc->sc_next = op->o_callback;
2833                 op->o_callback = sc;
2834                 bci->on = on;
2835                 bci->qc = bi.bi_cq;
2836         }
2837         return SLAP_CB_CONTINUE;
2838 }
2839
2840 #ifdef PCACHE_CONTROL_PRIVDB
2841 static int
2842 pcache_op_privdb(
2843         Operation               *op,
2844         SlapReply               *rs )
2845 {
2846         slap_overinst   *on = (slap_overinst *)op->o_bd->bd_info;
2847         cache_manager   *cm = on->on_bi.bi_private;
2848         slap_callback   *save_cb;
2849         slap_op_t       type;
2850
2851         /* skip if control is unset */
2852         if ( op->o_ctrlflag[ privDB_cid ] != SLAP_CONTROL_CRITICAL ) {
2853                 return SLAP_CB_CONTINUE;
2854         }
2855
2856         /* The cache DB isn't open yet */
2857         if ( cm->defer_db_open ) {
2858                 send_ldap_error( op, rs, LDAP_UNAVAILABLE,
2859                         "pcachePrivDB: cacheDB not available" );
2860                 return rs->sr_err;
2861         }
2862
2863         /* FIXME: might be a little bit exaggerated... */
2864         if ( !be_isroot( op ) ) {
2865                 save_cb = op->o_callback;
2866                 op->o_callback = NULL;
2867                 send_ldap_error( op, rs, LDAP_UNWILLING_TO_PERFORM,
2868                         "pcachePrivDB: operation not allowed" );
2869                 op->o_callback = save_cb;
2870
2871                 return rs->sr_err;
2872         }
2873
2874         /* map tag to operation */
2875         type = slap_req2op( op->o_tag );
2876         if ( type != SLAP_OP_LAST ) {
2877                 BI_op_func      **func;
2878                 int             rc;
2879
2880                 /* execute, if possible */
2881                 func = &cm->db.be_bind;
2882                 if ( func[ type ] != NULL ) {
2883                         Operation       op2 = *op;
2884         
2885                         op2.o_bd = &cm->db;
2886
2887                         rc = func[ type ]( &op2, rs );
2888                         if ( type == SLAP_OP_BIND && rc == LDAP_SUCCESS ) {
2889                                 op->o_conn->c_authz_cookie = cm->db.be_private;
2890                         }
2891
2892                         return rs->sr_err;
2893                 }
2894         }
2895
2896         /* otherwise fall back to error */
2897         save_cb = op->o_callback;
2898         op->o_callback = NULL;
2899         send_ldap_error( op, rs, LDAP_UNWILLING_TO_PERFORM,
2900                 "operation not supported with pcachePrivDB control" );
2901         op->o_callback = save_cb;
2902
2903         return rs->sr_err;
2904 }
2905 #endif /* PCACHE_CONTROL_PRIVDB */
2906
2907 static int
2908 pcache_op_search(
2909         Operation       *op,
2910         SlapReply       *rs )
2911 {
2912         slap_overinst *on = (slap_overinst *)op->o_bd->bd_info;
2913         cache_manager *cm = on->on_bi.bi_private;
2914         query_manager*          qm = cm->qm;
2915
2916         int i = -1;
2917
2918         Query           query;
2919         QueryTemplate   *qtemp = NULL;
2920         bindinfo *pbi = NULL;
2921
2922         int             attr_set = -1;
2923         CachedQuery     *answerable = NULL;
2924         int             cacheable = 0;
2925
2926         struct berval   tempstr;
2927
2928 #ifdef PCACHE_CONTROL_PRIVDB
2929         if ( op->o_ctrlflag[ privDB_cid ] == SLAP_CONTROL_CRITICAL ) {
2930                 return pcache_op_privdb( op, rs );
2931         }
2932 #endif /* PCACHE_CONTROL_PRIVDB */
2933
2934         /* The cache DB isn't open yet */
2935         if ( cm->defer_db_open ) {
2936                 send_ldap_error( op, rs, LDAP_UNAVAILABLE,
2937                         "pcachePrivDB: cacheDB not available" );
2938                 return rs->sr_err;
2939         }
2940
2941         /* pickup runtime ACL changes */
2942         cm->db.be_acl = op->o_bd->be_acl;
2943
2944         {
2945                 /* See if we're processing a Bind request */
2946                 slap_callback *cb = op->o_callback;
2947
2948                 for ( ; cb; cb=cb->sc_next ) {
2949                         if ( cb->sc_response == pc_bind_resp ) {
2950                                 pbi = cb->sc_private;
2951                                 break;
2952                         }
2953                 }
2954         }
2955
2956         /* FIXME: cannot cache/answer requests with pagedResults control */
2957
2958         query.filter = op->ors_filter;
2959
2960         if ( pbi ) {
2961                 query.base = pbi->bi_templ->bindbase;
2962                 query.scope = pbi->bi_templ->bindscope;
2963                 attr_set = pbi->bi_templ->attr_set_index;
2964                 cacheable = 1;
2965                 qtemp = pbi->bi_templ;
2966                 if ( pbi->bi_flags & BI_LOOKUP )
2967                         answerable = qm->qcfunc(op, qm, &query, qtemp);
2968
2969         } else {
2970                 tempstr.bv_val = op->o_tmpalloc( op->ors_filterstr.bv_len+1,
2971                         op->o_tmpmemctx );
2972                 tempstr.bv_len = 0;
2973                 if ( filter2template( op, op->ors_filter, &tempstr ))
2974                 {
2975                         op->o_tmpfree( tempstr.bv_val, op->o_tmpmemctx );
2976                         return SLAP_CB_CONTINUE;
2977                 }
2978
2979                 Debug( pcache_debug, "query template of incoming query = %s\n",
2980                                                 tempstr.bv_val, 0, 0 );
2981
2982                 /* find attr set */
2983                 attr_set = get_attr_set(op->ors_attrs, qm, cm->numattrsets);
2984
2985                 query.base = op->o_req_ndn;
2986                 query.scope = op->ors_scope;
2987
2988                 /* check for query containment */
2989                 if (attr_set > -1) {
2990                         QueryTemplate *qt = qm->attr_sets[attr_set].templates;
2991                         for (; qt; qt = qt->qtnext ) {
2992                                 /* find if template i can potentially answer tempstr */
2993                                 if ( ber_bvstrcasecmp( &qt->querystr, &tempstr ) != 0 )
2994                                         continue;
2995                                 cacheable = 1;
2996                                 qtemp = qt;
2997                                 Debug( pcache_debug, "Entering QC, querystr = %s\n",
2998                                                 op->ors_filterstr.bv_val, 0, 0 );
2999                                 answerable = qm->qcfunc(op, qm, &query, qt);
3000
3001                                 /* if != NULL, rlocks qtemp->t_rwlock */
3002                                 if (answerable)
3003                                         break;
3004                         }
3005                 }
3006                 op->o_tmpfree( tempstr.bv_val, op->o_tmpmemctx );
3007         }
3008
3009         if (answerable) {
3010                 BackendDB       *save_bd = op->o_bd;
3011
3012                 ldap_pvt_thread_mutex_lock( &answerable->answerable_cnt_mutex );
3013                 answerable->answerable_cnt++;
3014                 /* we only care about refcnts if we're refreshing */
3015                 if ( answerable->refresh_time )
3016                         answerable->refcnt++;
3017                 Debug( pcache_debug, "QUERY ANSWERABLE (answered %lu times)\n",
3018                         answerable->answerable_cnt, 0, 0 );
3019                 ldap_pvt_thread_mutex_unlock( &answerable->answerable_cnt_mutex );
3020
3021                 ldap_pvt_thread_rdwr_rlock(&answerable->rwlock);
3022                 if ( BER_BVISNULL( &answerable->q_uuid )) {
3023                         /* No entries cached, just an empty result set */
3024                         i = rs->sr_err = 0;
3025                         send_ldap_result( op, rs );
3026                 } else {
3027                         /* Let Bind know we used a cached query */
3028                         if ( pbi )
3029                                 pbi->bi_cq = answerable;
3030
3031                         op->o_bd = &cm->db;
3032 #if 0
3033                         if ( cm->response_cb == PCACHE_RESPONSE_CB_TAIL ) {
3034                                 /* The cached entry was already processed by any
3035                                  * other overlays, so don't let it get processed again.
3036                                  */
3037                                 op->o_callback = NULL;
3038                         }
3039 #endif
3040                         i = cm->db.bd_info->bi_op_search( op, rs );
3041                 }
3042                 ldap_pvt_thread_rdwr_runlock(&answerable->rwlock);
3043                 /* locked by qtemp->qcfunc (query_containment) */
3044                 ldap_pvt_thread_rdwr_runlock(&qtemp->t_rwlock);
3045                 op->o_bd = save_bd;
3046                 return i;
3047         }
3048
3049         Debug( pcache_debug, "QUERY NOT ANSWERABLE\n", 0, 0, 0 );
3050
3051         ldap_pvt_thread_mutex_lock(&cm->cache_mutex);
3052         if (cm->num_cached_queries >= cm->max_queries) {
3053                 cacheable = 0;
3054         }
3055         ldap_pvt_thread_mutex_unlock(&cm->cache_mutex);
3056
3057         if (op->ors_attrsonly)
3058                 cacheable = 0;
3059
3060         if (cacheable) {
3061                 slap_callback           *cb;
3062                 struct search_info      *si;
3063
3064                 Debug( pcache_debug, "QUERY CACHEABLE\n", 0, 0, 0 );
3065                 query.filter = filter_dup(op->ors_filter, NULL);
3066
3067                 cb = op->o_tmpalloc( sizeof(*cb) + sizeof(*si), op->o_tmpmemctx );
3068                 cb->sc_response = pcache_response;
3069                 cb->sc_cleanup = pcache_op_cleanup;
3070                 cb->sc_private = (cb+1);
3071                 si = cb->sc_private;
3072                 si->on = on;
3073                 si->query = query;
3074                 si->qtemp = qtemp;
3075                 si->max = cm->num_entries_limit ;
3076                 si->over = 0;
3077                 si->count = 0;
3078                 si->slimit = 0;
3079                 si->slimit_exceeded = 0;
3080                 si->caching_reason = PC_IGNORE;
3081                 if ( op->ors_slimit > 0 && op->ors_slimit < cm->num_entries_limit ) {
3082                         si->slimit = op->ors_slimit;
3083                         op->ors_slimit = cm->num_entries_limit;
3084                 }
3085                 si->head = NULL;
3086                 si->tail = NULL;
3087                 si->swap_saved_attrs = 1;
3088                 si->save_attrs = op->ors_attrs;
3089                 si->pbi = pbi;
3090                 if ( pbi )
3091                         pbi->bi_si = si;
3092
3093                 op->ors_attrs = qtemp->t_attrs.attrs;
3094
3095                 if ( cm->response_cb == PCACHE_RESPONSE_CB_HEAD ) {
3096                         cb->sc_next = op->o_callback;
3097                         op->o_callback = cb;
3098
3099                 } else {
3100                         slap_callback           **pcb;
3101
3102                         /* need to move the callback at the end, in case other
3103                          * overlays are present, so that the final entry is
3104                          * actually cached */
3105                         cb->sc_next = NULL;
3106                         for ( pcb = &op->o_callback; *pcb; pcb = &(*pcb)->sc_next );
3107                         *pcb = cb;
3108                 }
3109
3110         } else {
3111                 Debug( pcache_debug, "QUERY NOT CACHEABLE\n",
3112                                         0, 0, 0);
3113         }
3114
3115         return SLAP_CB_CONTINUE;
3116 }
3117
3118 static int
3119 get_attr_set(
3120         AttributeName* attrs,
3121         query_manager* qm,
3122         int num )
3123 {
3124         int i;
3125         int count = 0;
3126
3127         if ( attrs ) {
3128                 for ( ; attrs[count].an_name.bv_val; count++ );
3129         }
3130
3131         /* recognize a single "*" or a "1.1" */
3132         if ( count == 0 ) {
3133                 count = 1;
3134                 attrs = slap_anlist_all_user_attributes;
3135
3136         } else if ( count == 1 && bvmatch( &attrs[0].an_name, slap_bv_no_attrs ) ) {
3137                 count = 0;
3138                 attrs = NULL;
3139         }
3140
3141         for ( i = 0; i < num; i++ ) {
3142                 AttributeName *a2;
3143                 int found = 1;
3144
3145                 if ( count > qm->attr_sets[i].count ) {
3146                         continue;
3147                 }
3148
3149                 if ( !count ) {
3150                         if ( !qm->attr_sets[i].count ) {
3151                                 break;
3152                         }
3153                         continue;
3154                 }
3155
3156                 for ( a2 = attrs; a2->an_name.bv_val; a2++ ) {
3157                         if ( !an_find( qm->attr_sets[i].attrs, &a2->an_name ) ) {
3158                                 found = 0;
3159                                 break;
3160                         }
3161                 }
3162
3163                 if ( found ) {
3164                         break;
3165                 }
3166         }
3167
3168         if ( i == num ) {
3169                 i = -1;
3170         }
3171
3172         return i;
3173 }
3174
3175 /* Refresh a cached query:
3176  * 1: Replay the query on the remote DB and merge each entry into
3177  * the local DB. Remember the DNs of each remote entry.
3178  * 2: Search the local DB for all entries matching this queryID.
3179  * Delete any entry whose DN is not in the list from (1).
3180  */
3181 typedef struct dnlist {
3182         struct dnlist *next;
3183         struct berval dn;
3184         char delete;
3185 } dnlist;
3186
3187 typedef struct refresh_info {
3188         dnlist *ri_dns;
3189         dnlist *ri_tail;
3190         dnlist *ri_dels;
3191         BackendDB *ri_be;
3192         CachedQuery *ri_q;
3193 } refresh_info;
3194
3195 static dnlist *dnl_alloc( Operation *op, struct berval *bvdn )
3196 {
3197         dnlist *dn = op->o_tmpalloc( sizeof(dnlist) + bvdn->bv_len + 1,
3198                         op->o_tmpmemctx );
3199         dn->dn.bv_len = bvdn->bv_len;
3200         dn->dn.bv_val = (char *)(dn+1);
3201         AC_MEMCPY( dn->dn.bv_val, bvdn->bv_val, dn->dn.bv_len );
3202         dn->dn.bv_val[dn->dn.bv_len] = '\0';
3203         return dn;
3204 }
3205
3206 static int
3207 refresh_merge( Operation *op, SlapReply *rs )
3208 {
3209         if ( rs->sr_type == REP_SEARCH ) {
3210                 refresh_info *ri = op->o_callback->sc_private;
3211                 BackendDB *be = op->o_bd;
3212                 Entry *e;
3213                 dnlist *dnl;
3214                 slap_callback *ocb;
3215                 int rc;
3216
3217                 ocb = op->o_callback;
3218                 /* Find local entry, merge */
3219                 op->o_bd = ri->ri_be;
3220                 rc = be_entry_get_rw( op, &rs->sr_entry->e_nname, NULL, NULL, 0, &e );
3221                 if ( rc != LDAP_SUCCESS || e == NULL ) {
3222                         /* No local entry, just add it. FIXME: we are not checking
3223                          * the cache entry limit here
3224                          */
3225                          merge_entry( op, rs->sr_entry, &ri->ri_q->q_uuid );
3226                 } else {
3227                         /* Entry exists, update it */
3228                         Entry ne;
3229                         Attribute *a, **b;
3230                         Modifications *modlist, *mods = NULL;
3231                         const char*     text = NULL;
3232                         char                    textbuf[SLAP_TEXT_BUFLEN];
3233                         size_t                  textlen = sizeof(textbuf);
3234                         slap_callback cb = { NULL, slap_null_cb, NULL, NULL };
3235
3236                         ne = *e;
3237                         b = &ne.e_attrs;
3238                         /* Get a copy of only the attrs we requested */
3239                         for ( a=e->e_attrs; a; a=a->a_next ) {
3240                                 if ( ad_inlist( a->a_desc, rs->sr_attrs )) {
3241                                         *b = attr_alloc( a->a_desc );
3242                                         *(*b) = *a;
3243                                         /* The actual values still belong to e */
3244                                         (*b)->a_flags |= SLAP_ATTR_DONT_FREE_VALS |
3245                                                 SLAP_ATTR_DONT_FREE_DATA;
3246                                         b = &((*b)->a_next);
3247                                 }
3248                         }
3249                         *b = NULL;
3250                         slap_entry2mods( rs->sr_entry, &modlist, &text, textbuf, textlen );
3251                         syncrepl_diff_entry( op, ne.e_attrs, rs->sr_entry->e_attrs,
3252                                 &mods, &modlist, 0 );
3253                         be_entry_release_r( op, e );
3254                         attrs_free( ne.e_attrs );
3255                         slap_mods_free( modlist, 1 );
3256                         /* mods is NULL if there are no changes */
3257                         if ( mods ) {
3258                                 struct berval dn = op->o_req_dn;
3259                                 struct berval ndn = op->o_req_ndn;
3260                                 op->o_tag = LDAP_REQ_MODIFY;
3261                                 op->orm_modlist = mods;
3262                                 op->o_req_dn = rs->sr_entry->e_name;
3263                                 op->o_req_ndn = rs->sr_entry->e_nname;
3264                                 op->o_callback = &cb;
3265                                 op->o_bd->be_modify( op, rs );
3266                                 slap_mods_free( mods, 1 );
3267                                 op->o_req_dn = dn;
3268                                 op->o_req_ndn = ndn;
3269                         }
3270                 }
3271
3272                 /* Add DN to list */
3273                 dnl = dnl_alloc( op, &rs->sr_entry->e_nname );
3274                 dnl->next = NULL;
3275                 if ( ri->ri_tail ) {
3276                         ri->ri_tail->next = dnl;
3277                 } else {
3278                         ri->ri_dns = dnl;
3279                 }
3280                 ri->ri_tail = dnl;
3281                 op->o_callback = ocb;
3282         }
3283         return 0;
3284 }
3285
3286 static int
3287 refresh_purge( Operation *op, SlapReply *rs )
3288 {
3289         if ( rs->sr_type == REP_SEARCH ) {
3290                 refresh_info *ri = op->o_callback->sc_private;
3291                 dnlist **dn;
3292                 int del = 1;
3293
3294                 /* Did the entry exist on the remote? */
3295                 for ( dn=&ri->ri_dns; *dn; dn = &(*dn)->next ) {
3296                         if ( dn_match( &(*dn)->dn, &rs->sr_entry->e_nname )) {
3297                                 dnlist *dnext = (*dn)->next;
3298                                 op->o_tmpfree( *dn, op->o_tmpmemctx );
3299                                 *dn = dnext;
3300                                 del = 0;
3301                                 break;
3302                         }
3303                 }
3304                 /* No, so put it on the list to delete */
3305                 if ( del ) {
3306                         Attribute *a;
3307                         dnlist *dnl = dnl_alloc( op, &rs->sr_entry->e_nname );
3308                         dnl->next = ri->ri_dels;
3309                         ri->ri_dels = dnl;
3310                         a = attr_find( rs->sr_entry->e_attrs, ad_queryId );
3311                         /* If ours is the only queryId, delete entry */
3312                         dnl->delete = ( a->a_numvals == 1 );
3313                 }
3314         }
3315         return 0;
3316 }
3317
3318 static int
3319 refresh_query( Operation *op, SlapReply *rs, CachedQuery *query,
3320         slap_overinst *on )
3321 {
3322         slap_callback cb = { 0 };
3323         refresh_info ri = { 0 };
3324         char filter_str[ LDAP_LUTIL_UUIDSTR_BUFSIZE + STRLENOF( "(pcacheQueryID=)" ) ];
3325         AttributeAssertion      ava = ATTRIBUTEASSERTION_INIT;
3326         Filter filter = {LDAP_FILTER_EQUALITY};
3327         AttributeName attrs[ 2 ] = {{{ 0 }}};
3328         dnlist *dn;
3329         int rc;
3330
3331         ldap_pvt_thread_mutex_lock( &query->answerable_cnt_mutex );
3332         query->refcnt = 0;
3333         ldap_pvt_thread_mutex_unlock( &query->answerable_cnt_mutex );
3334
3335         cb.sc_response = refresh_merge;
3336         cb.sc_private = &ri;
3337
3338         /* cache DB */
3339         ri.ri_be = op->o_bd;
3340         ri.ri_q = query;
3341
3342         op->o_tag = LDAP_REQ_SEARCH;
3343         op->o_protocol = LDAP_VERSION3;
3344         op->o_callback = &cb;
3345         op->o_do_not_cache = 1;
3346
3347         op->o_req_dn = query->qbase->base;
3348         op->o_req_ndn = query->qbase->base;
3349         op->ors_scope = query->scope;
3350         op->ors_slimit = SLAP_NO_LIMIT;
3351         op->ors_tlimit = SLAP_NO_LIMIT;
3352         op->ors_limit = NULL;
3353         op->ors_filter = query->filter;
3354         filter2bv_x( op, query->filter, &op->ors_filterstr );
3355         op->ors_attrs = query->qtemp->t_attrs.attrs;
3356         op->ors_attrsonly = 0;
3357
3358         op->o_bd = on->on_info->oi_origdb;
3359         rc = op->o_bd->be_search( op, rs );
3360         if ( rc ) {
3361                 op->o_bd = ri.ri_be;
3362                 goto leave;
3363         }
3364
3365         /* Get the DNs of all entries matching this query */
3366         cb.sc_response = refresh_purge;
3367
3368         op->o_bd = ri.ri_be;
3369         op->o_req_dn = op->o_bd->be_suffix[0];
3370         op->o_req_ndn = op->o_bd->be_nsuffix[0];
3371         op->ors_scope = LDAP_SCOPE_SUBTREE;
3372         op->ors_deref = LDAP_DEREF_NEVER;
3373         op->ors_filterstr.bv_len = snprintf(filter_str, sizeof(filter_str),
3374                 "(%s=%s)", ad_queryId->ad_cname.bv_val, query->q_uuid.bv_val);
3375         filter.f_ava = &ava;
3376         filter.f_av_desc = ad_queryId;
3377         filter.f_av_value = query->q_uuid;
3378         attrs[ 0 ].an_desc = ad_queryId;
3379         attrs[ 0 ].an_name = ad_queryId->ad_cname;
3380         op->ors_attrs = attrs;
3381         op->ors_attrsonly = 0;
3382         rs->sr_entry = NULL;
3383         rs->sr_nentries = 0;
3384         rc = op->o_bd->be_search( op, rs );
3385         if ( rc ) goto leave;
3386
3387         while (( dn = ri.ri_dels )) {
3388                 op->o_req_dn = dn->dn;
3389                 op->o_req_ndn = dn->dn;
3390                 if ( dn->delete ) {
3391                         op->o_tag = LDAP_REQ_DELETE;
3392                         op->o_bd->be_delete( op, rs );
3393                 } else {
3394                         Modifications mod;
3395                         struct berval vals[2];
3396
3397                         vals[0] = query->q_uuid;
3398                         BER_BVZERO( &vals[1] );
3399                         mod.sml_op = LDAP_MOD_DELETE;
3400                         mod.sml_flags = 0;
3401                         mod.sml_desc = ad_queryId;
3402                         mod.sml_type = ad_queryId->ad_cname;
3403                         mod.sml_values = vals;
3404                         mod.sml_nvalues = NULL;
3405                         mod.sml_numvals = 1;
3406                         mod.sml_next = NULL;
3407
3408                         op->o_tag = LDAP_REQ_MODIFY;
3409                         op->orm_modlist = &mod;
3410                         op->o_bd->be_modify( op, rs );
3411                 }
3412                 ri.ri_dels = dn->next;
3413                 op->o_tmpfree( dn, op->o_tmpmemctx );
3414         }
3415
3416 leave:
3417         /* reset our local heap, we're done with it */
3418         slap_sl_mem_create(SLAP_SLAB_SIZE, SLAP_SLAB_STACK, op->o_threadctx, 1 );
3419         return rc;
3420 }
3421
3422 static void*
3423 consistency_check(
3424         void *ctx,
3425         void *arg )
3426 {
3427         struct re_s *rtask = arg;
3428         slap_overinst *on = rtask->arg;
3429         cache_manager *cm = on->on_bi.bi_private;
3430         query_manager *qm = cm->qm;
3431         Connection conn = {0};
3432         OperationBuffer opbuf;
3433         Operation *op;
3434
3435         SlapReply rs = {REP_RESULT};
3436         CachedQuery *query, *qprev;
3437         int return_val, pause = PCACHE_CC_PAUSED;
3438         QueryTemplate *templ;
3439
3440         /* Don't expire anything when we're offline */
3441         if ( cm->cc_paused & PCACHE_CC_OFFLINE ) {
3442                 pause = PCACHE_CC_OFFLINE;
3443                 goto leave;
3444         }
3445
3446         connection_fake_init( &conn, &opbuf, ctx );
3447         op = &opbuf.ob_op;
3448
3449         op->o_bd = &cm->db;
3450         op->o_dn = cm->db.be_rootdn;
3451         op->o_ndn = cm->db.be_rootndn;
3452
3453         cm->cc_arg = arg;
3454
3455         for (templ = qm->templates; templ; templ=templ->qmnext) {
3456                 time_t ttl;
3457                 if ( !templ->query_last ) continue;
3458                 pause = 0;
3459                 op->o_time = slap_get_time();
3460                 if ( !templ->ttr ) {
3461                         ttl = templ->ttl;
3462                         if ( templ->negttl && templ->negttl < ttl )
3463                                 ttl = templ->negttl;
3464                         if ( templ->limitttl && templ->limitttl < ttl )
3465                                 ttl = templ->limitttl;
3466                         /* The oldest timestamp that needs expiration checking */
3467                         ttl += op->o_time;
3468                 }
3469
3470                 for ( query=templ->query_last; query; query=qprev ) {
3471                         qprev = query->prev;
3472                         if ( query->refresh_time && query->refresh_time < op->o_time ) {
3473                                 /* A refresh will extend the expiry if the query has been
3474                                  * referenced, but not if it's unreferenced. If the
3475                                  * expiration has been hit, then skip the refresh since
3476                                  * we're just going to discard the result anyway.
3477                                  */
3478                                 if ( query->refcnt )
3479                                         query->expiry_time = op->o_time + templ->ttl;
3480                                 if ( query->expiry_time > op->o_time ) {
3481                                         refresh_query( op, &rs, query, on );
3482                                         continue;
3483                                 }
3484                         }
3485
3486                         if (query->expiry_time < op->o_time) {
3487                                 int rem = 0;
3488                                 Debug( pcache_debug, "Lock CR index = %p\n",
3489                                                 (void *) templ, 0, 0 );
3490                                 ldap_pvt_thread_rdwr_wlock(&templ->t_rwlock);
3491                                 if ( query == templ->query_last ) {
3492                                         rem = 1;
3493                                         remove_from_template(query, templ);
3494                                         Debug( pcache_debug, "TEMPLATE %p QUERIES-- %d\n",
3495                                                         (void *) templ, templ->no_of_queries, 0 );
3496                                         Debug( pcache_debug, "Unlock CR index = %p\n",
3497                                                         (void *) templ, 0, 0 );
3498                                 }
3499                                 ldap_pvt_thread_rdwr_wunlock(&templ->t_rwlock);
3500                                 if ( !rem ) {
3501                                         continue;
3502                                 }
3503                                 ldap_pvt_thread_mutex_lock(&qm->lru_mutex);
3504                                 remove_query(qm, query);
3505                                 ldap_pvt_thread_mutex_unlock(&qm->lru_mutex);
3506                                 if ( BER_BVISNULL( &query->q_uuid ))
3507                                         return_val = 0;
3508                                 else
3509                                         return_val = remove_query_data(op, &rs, &query->q_uuid);
3510                                 Debug( pcache_debug, "STALE QUERY REMOVED, SIZE=%d\n",
3511                                                         return_val, 0, 0 );
3512                                 ldap_pvt_thread_mutex_lock(&cm->cache_mutex);
3513                                 cm->cur_entries -= return_val;
3514                                 cm->num_cached_queries--;
3515                                 Debug( pcache_debug, "STORED QUERIES = %lu\n",
3516                                                 cm->num_cached_queries, 0, 0 );
3517                                 ldap_pvt_thread_mutex_unlock(&cm->cache_mutex);
3518                                 Debug( pcache_debug,
3519                                         "STALE QUERY REMOVED, CACHE ="
3520                                         "%d entries\n",
3521                                         cm->cur_entries, 0, 0 );
3522                                 free_query(query);
3523                         } else if ( !templ->ttr && query->expiry_time > ttl ) {
3524                                 /* We don't need to check for refreshes, and this
3525                                  * query's expiry is too new, and all subsequent queries
3526                                  * will be newer yet. So stop looking.
3527                                  *
3528                                  * If we have refreshes, then we always have to walk the
3529                                  * entire query list.
3530                                  */
3531                                 break;
3532                         }
3533                 }
3534         }
3535
3536 leave:
3537         ldap_pvt_thread_mutex_lock( &slapd_rq.rq_mutex );
3538         if ( ldap_pvt_runqueue_isrunning( &slapd_rq, rtask )) {
3539                 ldap_pvt_runqueue_stoptask( &slapd_rq, rtask );
3540         }
3541         /* If there were no queries, defer processing for a while */
3542         if ( cm->cc_paused != pause )
3543                 cm->cc_paused = pause;
3544         ldap_pvt_runqueue_resched( &slapd_rq, rtask, pause );
3545
3546         ldap_pvt_thread_mutex_unlock( &slapd_rq.rq_mutex );
3547         return NULL;
3548 }
3549
3550
3551 #define MAX_ATTR_SETS 500
3552
3553 enum {
3554         PC_MAIN = 1,
3555         PC_ATTR,
3556         PC_TEMP,
3557         PC_RESP,
3558         PC_QUERIES,
3559         PC_OFFLINE,
3560         PC_BIND,
3561         PC_PRIVATE_DB
3562 };
3563
3564 static ConfigDriver pc_cf_gen;
3565 static ConfigLDAPadd pc_ldadd;
3566 static ConfigCfAdd pc_cfadd;
3567
3568 static ConfigTable pccfg[] = {
3569         { "pcache", "backend> <max_entries> <numattrsets> <entry limit> "
3570                                 "<cycle_time",
3571                 6, 6, 0, ARG_MAGIC|ARG_NO_DELETE|PC_MAIN, pc_cf_gen,
3572                 "( OLcfgOvAt:2.1 NAME ( 'olcPcache' 'olcProxyCache' ) "
3573                         "DESC 'Proxy Cache basic parameters' "
3574                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
3575         { "pcacheAttrset", "index> <attributes...",
3576                 2, 0, 0, ARG_MAGIC|PC_ATTR, pc_cf_gen,
3577                 "( OLcfgOvAt:2.2 NAME ( 'olcPcacheAttrset' 'olcProxyAttrset' ) "
3578                         "DESC 'A set of attributes to cache' "
3579                         "SYNTAX OMsDirectoryString )", NULL, NULL },
3580         { "pcacheTemplate", "filter> <attrset-index> <TTL> <negTTL> "
3581                         "<limitTTL> <TTR",
3582                 4, 7, 0, ARG_MAGIC|PC_TEMP, pc_cf_gen,
3583                 "( OLcfgOvAt:2.3 NAME ( 'olcPcacheTemplate' 'olcProxyCacheTemplate' ) "
3584                         "DESC 'Filter template, attrset, cache TTL, "
3585                                 "optional negative TTL, optional sizelimit TTL, "
3586                                 "optional TTR' "
3587                         "SYNTAX OMsDirectoryString )", NULL, NULL },
3588         { "pcachePosition", "head|tail(default)",
3589                 2, 2, 0, ARG_MAGIC|PC_RESP, pc_cf_gen,
3590                 "( OLcfgOvAt:2.4 NAME 'olcPcachePosition' "
3591                         "DESC 'Response callback position in overlay stack' "
3592                         "SYNTAX OMsDirectoryString )", NULL, NULL },
3593         { "pcacheMaxQueries", "queries",
3594                 2, 2, 0, ARG_INT|ARG_MAGIC|PC_QUERIES, pc_cf_gen,
3595                 "( OLcfgOvAt:2.5 NAME ( 'olcPcacheMaxQueries' 'olcProxyCacheQueries' ) "
3596                         "DESC 'Maximum number of queries to cache' "
3597                         "SYNTAX OMsInteger )", NULL, NULL },
3598         { "pcachePersist", "TRUE|FALSE",
3599                 2, 2, 0, ARG_ON_OFF|ARG_OFFSET, (void *)offsetof(cache_manager, save_queries),
3600                 "( OLcfgOvAt:2.6 NAME ( 'olcPcachePersist' 'olcProxySaveQueries' ) "
3601                         "DESC 'Save cached queries for hot restart' "
3602                         "SYNTAX OMsBoolean )", NULL, NULL },
3603         { "pcacheValidate", "TRUE|FALSE",
3604                 2, 2, 0, ARG_ON_OFF|ARG_OFFSET, (void *)offsetof(cache_manager, check_cacheability),
3605                 "( OLcfgOvAt:2.7 NAME ( 'olcPcacheValidate' 'olcProxyCheckCacheability' ) "
3606                         "DESC 'Check whether the results of a query are cacheable, e.g. for schema issues' "
3607                         "SYNTAX OMsBoolean )", NULL, NULL },
3608         { "pcacheOffline", "TRUE|FALSE",
3609                 2, 2, 0, ARG_ON_OFF|ARG_MAGIC|PC_OFFLINE, pc_cf_gen,
3610                 "( OLcfgOvAt:2.8 NAME 'olcPcacheOffline' "
3611                         "DESC 'Set cache to offline mode and disable expiration' "
3612                         "SYNTAX OMsBoolean )", NULL, NULL },
3613         { "pcacheBind", "filter> <attrset-index> <TTR> <scope> <base",
3614                 6, 6, 0, ARG_MAGIC|PC_BIND, pc_cf_gen,
3615                 "( OLcfgOvAt:2.9 NAME 'olcPcacheBind' "
3616                         "DESC 'Parameters for caching Binds' "
3617                         "SYNTAX OMsDirectoryString )", NULL, NULL },
3618         { "pcache-", "private database args",
3619                 1, 0, STRLENOF("pcache-"), ARG_MAGIC|PC_PRIVATE_DB, pc_cf_gen,
3620                 NULL, NULL, NULL },
3621
3622         /* Legacy keywords */
3623         { "proxycache", "backend> <max_entries> <numattrsets> <entry limit> "
3624                                 "<cycle_time",
3625                 6, 6, 0, ARG_MAGIC|ARG_NO_DELETE|PC_MAIN, pc_cf_gen,
3626                 NULL, NULL, NULL },
3627         { "proxyattrset", "index> <attributes...",
3628                 2, 0, 0, ARG_MAGIC|PC_ATTR, pc_cf_gen,
3629                 NULL, NULL, NULL },
3630         { "proxytemplate", "filter> <attrset-index> <TTL> <negTTL",
3631                 4, 7, 0, ARG_MAGIC|PC_TEMP, pc_cf_gen,
3632                 NULL, NULL, NULL },
3633         { "response-callback", "head|tail(default)",
3634                 2, 2, 0, ARG_MAGIC|PC_RESP, pc_cf_gen,
3635                 NULL, NULL, NULL },
3636         { "proxyCacheQueries", "queries",
3637                 2, 2, 0, ARG_INT|ARG_MAGIC|PC_QUERIES, pc_cf_gen,
3638                 NULL, NULL, NULL },
3639         { "proxySaveQueries", "TRUE|FALSE",
3640                 2, 2, 0, ARG_ON_OFF|ARG_OFFSET, (void *)offsetof(cache_manager, save_queries),
3641                 NULL, NULL, NULL },
3642         { "proxyCheckCacheability", "TRUE|FALSE",
3643                 2, 2, 0, ARG_ON_OFF|ARG_OFFSET, (void *)offsetof(cache_manager, check_cacheability),
3644                 NULL, NULL, NULL },
3645
3646         { NULL, NULL, 0, 0, 0, ARG_IGNORED }
3647 };
3648
3649 static ConfigOCs pcocs[] = {
3650         { "( OLcfgOvOc:2.1 "
3651                 "NAME 'olcPcacheConfig' "
3652                 "DESC 'ProxyCache configuration' "
3653                 "SUP olcOverlayConfig "
3654                 "MUST ( olcPcache $ olcPcacheAttrset $ olcPcacheTemplate ) "
3655                 "MAY ( olcPcachePosition $ olcPcacheMaxQueries $ olcPcachePersist $ "
3656                         "olcPcacheValidate $ olcPcacheOffline $ olcPcacheBind ) )",
3657                 Cft_Overlay, pccfg, NULL, pc_cfadd },
3658         { "( OLcfgOvOc:2.2 "
3659                 "NAME 'olcPcacheDatabase' "
3660                 "DESC 'Cache database configuration' "
3661                 "AUXILIARY )", Cft_Misc, olcDatabaseDummy, pc_ldadd },
3662         { NULL, 0, NULL }
3663 };
3664
3665 static int pcache_db_open2( slap_overinst *on, ConfigReply *cr );
3666
3667 static int
3668 pc_ldadd_cleanup( ConfigArgs *c )
3669 {
3670         slap_overinst *on = c->ca_private;
3671         return pcache_db_open2( on, &c->reply );
3672 }
3673
3674 static int
3675 pc_ldadd( CfEntryInfo *p, Entry *e, ConfigArgs *ca )
3676 {
3677         slap_overinst *on;
3678         cache_manager *cm;
3679
3680         if ( p->ce_type != Cft_Overlay || !p->ce_bi ||
3681                 p->ce_bi->bi_cf_ocs != pcocs )
3682                 return LDAP_CONSTRAINT_VIOLATION;
3683
3684         on = (slap_overinst *)p->ce_bi;
3685         cm = on->on_bi.bi_private;
3686         ca->be = &cm->db;
3687         /* Defer open if this is an LDAPadd */
3688         if ( CONFIG_ONLINE_ADD( ca ))
3689                 ca->cleanup = pc_ldadd_cleanup;
3690         else
3691                 cm->defer_db_open = 0;
3692         ca->ca_private = on;
3693         return LDAP_SUCCESS;
3694 }
3695
3696 static int
3697 pc_cfadd( Operation *op, SlapReply *rs, Entry *p, ConfigArgs *ca )
3698 {
3699         CfEntryInfo *pe = p->e_private;
3700         slap_overinst *on = (slap_overinst *)pe->ce_bi;
3701         cache_manager *cm = on->on_bi.bi_private;
3702         struct berval bv;
3703
3704         /* FIXME: should not hardcode "olcDatabase" here */
3705         bv.bv_len = snprintf( ca->cr_msg, sizeof( ca->cr_msg ),
3706                 "olcDatabase=" SLAP_X_ORDERED_FMT "%s",
3707                 0, cm->db.bd_info->bi_type );
3708         if ( bv.bv_len >= sizeof( ca->cr_msg ) ) {
3709                 return -1;
3710         }
3711         bv.bv_val = ca->cr_msg;
3712         ca->be = &cm->db;
3713         cm->defer_db_open = 0;
3714
3715         /* We can only create this entry if the database is table-driven
3716          */
3717         if ( cm->db.bd_info->bi_cf_ocs )
3718                 config_build_entry( op, rs, pe, ca, &bv, cm->db.bd_info->bi_cf_ocs,
3719                         &pcocs[1] );
3720
3721         return 0;
3722 }
3723
3724 static int
3725 pc_cf_gen( ConfigArgs *c )
3726 {
3727         slap_overinst   *on = (slap_overinst *)c->bi;
3728         cache_manager*  cm = on->on_bi.bi_private;
3729         query_manager*  qm = cm->qm;
3730         QueryTemplate*  temp;
3731         AttributeName*  attr_name;
3732         AttributeName*  attrarray;
3733         const char*     text=NULL;
3734         int             i, num, rc = 0;
3735         char            *ptr;
3736         unsigned long   t;
3737
3738         if ( c->op == SLAP_CONFIG_EMIT ) {
3739                 struct berval bv;
3740                 switch( c->type ) {
3741                 case PC_MAIN:
3742                         bv.bv_len = snprintf( c->cr_msg, sizeof( c->cr_msg ), "%s %d %d %d %ld",
3743                                 cm->db.bd_info->bi_type, cm->max_entries, cm->numattrsets,
3744                                 cm->num_entries_limit, cm->cc_period );
3745                         bv.bv_val = c->cr_msg;
3746                         value_add_one( &c->rvalue_vals, &bv );
3747                         break;
3748                 case PC_ATTR:
3749                         for (i=0; i<cm->numattrsets; i++) {
3750                                 if ( !qm->attr_sets[i].count ) continue;
3751
3752                                 bv.bv_len = snprintf( c->cr_msg, sizeof( c->cr_msg ), "%d", i );
3753
3754                                 /* count the attr length */
3755                                 for ( attr_name = qm->attr_sets[i].attrs;
3756                                         attr_name->an_name.bv_val; attr_name++ )
3757                                         bv.bv_len += attr_name->an_name.bv_len + 1;
3758
3759                                 bv.bv_val = ch_malloc( bv.bv_len+1 );
3760                                 ptr = lutil_strcopy( bv.bv_val, c->cr_msg );
3761                                 for ( attr_name = qm->attr_sets[i].attrs;
3762                                         attr_name->an_name.bv_val; attr_name++ ) {
3763                                         *ptr++ = ' ';
3764                                         ptr = lutil_strcopy( ptr, attr_name->an_name.bv_val );
3765                                 }
3766                                 ber_bvarray_add( &c->rvalue_vals, &bv );
3767                         }
3768                         if ( !c->rvalue_vals )
3769                                 rc = 1;
3770                         break;
3771                 case PC_TEMP:
3772                         for (temp=qm->templates; temp; temp=temp->qmnext) {
3773                                 /* HEADS-UP: always print all;
3774                                  * if optional == 0, ignore */
3775                                 bv.bv_len = snprintf( c->cr_msg, sizeof( c->cr_msg ),
3776                                         " %d %ld %ld %ld %ld",
3777                                         temp->attr_set_index,
3778                                         temp->ttl,
3779                                         temp->negttl,
3780                                         temp->limitttl,
3781                                         temp->ttr );
3782                                 bv.bv_len += temp->querystr.bv_len + 2;
3783                                 bv.bv_val = ch_malloc( bv.bv_len+1 );
3784                                 ptr = bv.bv_val;
3785                                 *ptr++ = '"';
3786                                 ptr = lutil_strcopy( ptr, temp->querystr.bv_val );
3787                                 *ptr++ = '"';
3788                                 strcpy( ptr, c->cr_msg );
3789                                 ber_bvarray_add( &c->rvalue_vals, &bv );
3790                         }
3791                         if ( !c->rvalue_vals )
3792                                 rc = 1;
3793                         break;
3794                 case PC_BIND:
3795                         for (temp=qm->templates; temp; temp=temp->qmnext) {
3796                                 if ( !temp->bindttr ) continue;
3797                                 bv.bv_len = snprintf( c->cr_msg, sizeof( c->cr_msg ),
3798                                         " %d %ld %s ",
3799                                         temp->attr_set_index,
3800                                         temp->bindttr,
3801                                         ldap_pvt_scope2str( temp->bindscope ));
3802                                 bv.bv_len += temp->bindbase.bv_len + temp->bindftemp.bv_len + 3;
3803                                 bv.bv_val = ch_malloc( bv.bv_len+1 );
3804                                 ptr = bv.bv_val;
3805                                 *ptr++ = '"';
3806                                 ptr = lutil_strcopy( ptr, temp->bindftemp.bv_val );
3807                                 *ptr++ = '"';
3808                                 ptr = lutil_strcopy( ptr, c->cr_msg );
3809                                 *ptr++ = '"';
3810                                 ptr = lutil_strcopy( ptr, temp->bindbase.bv_val );
3811                                 *ptr++ = '"';
3812                                 *ptr = '\0';
3813                                 ber_bvarray_add( &c->rvalue_vals, &bv );
3814                         }
3815                         if ( !c->rvalue_vals )
3816                                 rc = 1;
3817                         break;
3818                 case PC_RESP:
3819                         if ( cm->response_cb == PCACHE_RESPONSE_CB_HEAD ) {
3820                                 BER_BVSTR( &bv, "head" );
3821                         } else {
3822                                 BER_BVSTR( &bv, "tail" );
3823                         }
3824                         value_add_one( &c->rvalue_vals, &bv );
3825                         break;
3826                 case PC_QUERIES:
3827                         c->value_int = cm->max_queries;
3828                         break;
3829                 case PC_OFFLINE:
3830                         c->value_int = (cm->cc_paused & PCACHE_CC_OFFLINE) != 0;
3831                         break;
3832                 }
3833                 return rc;
3834         } else if ( c->op == LDAP_MOD_DELETE ) {
3835                 rc = 1;
3836                 switch( c->type ) {
3837                 case PC_ATTR: /* FIXME */
3838                 case PC_TEMP:
3839                 case PC_BIND:
3840                         break;
3841                 case PC_OFFLINE:
3842                         cm->cc_paused &= ~PCACHE_CC_OFFLINE;
3843                         /* If there were cached queries when we went offline,
3844                          * restart the checker now.
3845                          */
3846                         if ( cm->num_cached_queries ) {
3847                                 ldap_pvt_thread_mutex_lock( &slapd_rq.rq_mutex );
3848                                 cm->cc_paused = 0;
3849                                 ldap_pvt_runqueue_resched( &slapd_rq, cm->cc_arg, 0 );
3850                                 ldap_pvt_thread_mutex_unlock( &slapd_rq.rq_mutex );
3851                         }
3852                         rc = 0;
3853                         break;
3854                 }
3855                 return rc;
3856         }
3857
3858         switch( c->type ) {
3859         case PC_MAIN:
3860                 if ( cm->numattrsets > 0 ) {
3861                         snprintf( c->cr_msg, sizeof( c->cr_msg ), "\"pcache\" directive already provided" );
3862                         Debug( LDAP_DEBUG_CONFIG, "%s: %s.\n", c->log, c->cr_msg, 0 );
3863                         return( 1 );
3864                 }
3865
3866                 if ( lutil_atoi( &cm->numattrsets, c->argv[3] ) != 0 ) {
3867                         snprintf( c->cr_msg, sizeof( c->cr_msg ), "unable to parse num attrsets=\"%s\" (arg #3)",
3868                                 c->argv[3] );
3869                         Debug( LDAP_DEBUG_CONFIG, "%s: %s.\n", c->log, c->cr_msg, 0 );
3870                         return( 1 );
3871                 }
3872                 if ( cm->numattrsets <= 0 ) {
3873                         snprintf( c->cr_msg, sizeof( c->cr_msg ), "numattrsets (arg #3) must be positive" );
3874                         Debug( LDAP_DEBUG_CONFIG, "%s: %s.\n", c->log, c->cr_msg, 0 );
3875                         return( 1 );
3876                 }
3877                 if ( cm->numattrsets > MAX_ATTR_SETS ) {
3878                         snprintf( c->cr_msg, sizeof( c->cr_msg ), "numattrsets (arg #3) must be <= %d", MAX_ATTR_SETS );
3879                         Debug( LDAP_DEBUG_CONFIG, "%s: %s.\n", c->log, c->cr_msg, 0 );
3880                         return( 1 );
3881                 }
3882
3883                 if ( !backend_db_init( c->argv[1], &cm->db, -1, NULL )) {
3884                         snprintf( c->cr_msg, sizeof( c->cr_msg ), "unknown backend type (arg #1)" );
3885                         Debug( LDAP_DEBUG_CONFIG, "%s: %s.\n", c->log, c->cr_msg, 0 );
3886                         return( 1 );
3887                 }
3888
3889                 if ( lutil_atoi( &cm->max_entries, c->argv[2] ) != 0 ) {
3890                         snprintf( c->cr_msg, sizeof( c->cr_msg ), "unable to parse max entries=\"%s\" (arg #2)",
3891                                 c->argv[2] );
3892                         Debug( LDAP_DEBUG_CONFIG, "%s: %s.\n", c->log, c->cr_msg, 0 );
3893                         return( 1 );
3894                 }
3895                 if ( cm->max_entries <= 0 ) {
3896                         snprintf( c->cr_msg, sizeof( c->cr_msg ), "max entries (arg #2) must be positive.\n" );
3897                         Debug( LDAP_DEBUG_CONFIG, "%s: %s\n", c->log, c->cr_msg, 0 );
3898                         return( 1 );
3899                 }
3900
3901                 if ( lutil_atoi( &cm->num_entries_limit, c->argv[4] ) != 0 ) {
3902                         snprintf( c->cr_msg, sizeof( c->cr_msg ), "unable to parse entry limit=\"%s\" (arg #4)",
3903                                 c->argv[4] );
3904                         Debug( LDAP_DEBUG_CONFIG, "%s: %s.\n", c->log, c->cr_msg, 0 );
3905                         return( 1 );
3906                 }
3907                 if ( cm->num_entries_limit <= 0 ) {
3908                         snprintf( c->cr_msg, sizeof( c->cr_msg ), "entry limit (arg #4) must be positive" );
3909                         Debug( LDAP_DEBUG_CONFIG, "%s: %s.\n", c->log, c->cr_msg, 0 );
3910                         return( 1 );
3911                 }
3912                 if ( cm->num_entries_limit > cm->max_entries ) {
3913                         snprintf( c->cr_msg, sizeof( c->cr_msg ), "entry limit (arg #4) must be less than max entries %d (arg #2)", cm->max_entries );
3914                         Debug( LDAP_DEBUG_CONFIG, "%s: %s.\n", c->log, c->cr_msg, 0 );
3915                         return( 1 );
3916                 }
3917
3918                 if ( lutil_parse_time( c->argv[5], &t ) != 0 ) {
3919                         snprintf( c->cr_msg, sizeof( c->cr_msg ), "unable to parse period=\"%s\" (arg #5)",
3920                                 c->argv[5] );
3921                         Debug( LDAP_DEBUG_CONFIG, "%s: %s.\n", c->log, c->cr_msg, 0 );
3922                         return( 1 );
3923                 }
3924
3925                 cm->cc_period = (time_t)t;
3926                 Debug( pcache_debug,
3927                                 "Total # of attribute sets to be cached = %d.\n",
3928                                 cm->numattrsets, 0, 0 );
3929                 qm->attr_sets = ( struct attr_set * )ch_calloc( cm->numattrsets,
3930                                                 sizeof( struct attr_set ) );
3931                 break;
3932         case PC_ATTR:
3933                 if ( cm->numattrsets == 0 ) {
3934                         snprintf( c->cr_msg, sizeof( c->cr_msg ), "\"pcache\" directive not provided yet" );
3935                         Debug( LDAP_DEBUG_CONFIG, "%s: %s.\n", c->log, c->cr_msg, 0 );
3936                         return( 1 );
3937                 }
3938                 if ( lutil_atoi( &num, c->argv[1] ) != 0 ) {
3939                         snprintf( c->cr_msg, sizeof( c->cr_msg ), "unable to parse attrset #=\"%s\"",
3940                                 c->argv[1] );
3941                         Debug( LDAP_DEBUG_CONFIG, "%s: %s.\n", c->log, c->cr_msg, 0 );
3942                         return( 1 );
3943                 }
3944
3945                 if ( num < 0 || num >= cm->numattrsets ) {
3946                         snprintf( c->cr_msg, sizeof( c->cr_msg ), "attrset index %d out of bounds (must be %s%d)",
3947                                 num, cm->numattrsets > 1 ? "0->" : "", cm->numattrsets - 1 );
3948                         Debug( LDAP_DEBUG_CONFIG, "%s: %s.\n", c->log, c->cr_msg, 0 );
3949                         return 1;
3950                 }
3951                 qm->attr_sets[num].flags |= PC_CONFIGURED;
3952                 if ( c->argc == 2 ) {
3953                         /* assume "1.1" */
3954                         snprintf( c->cr_msg, sizeof( c->cr_msg ),
3955                                 "need an explicit attr in attrlist; use \"*\" to indicate all attrs" );
3956                         Debug( LDAP_DEBUG_CONFIG, "%s: %s.\n", c->log, c->cr_msg, 0 );
3957                         return 1;
3958
3959                 } else if ( c->argc == 3 ) {
3960                         if ( strcmp( c->argv[2], LDAP_ALL_USER_ATTRIBUTES ) == 0 ) {
3961                                 qm->attr_sets[num].count = 1;
3962                                 qm->attr_sets[num].attrs = (AttributeName*)ch_calloc( 2,
3963                                         sizeof( AttributeName ) );
3964                                 BER_BVSTR( &qm->attr_sets[num].attrs[0].an_name, LDAP_ALL_USER_ATTRIBUTES );
3965                                 break;
3966
3967                         } else if ( strcmp( c->argv[2], LDAP_ALL_OPERATIONAL_ATTRIBUTES ) == 0 ) {
3968                                 qm->attr_sets[num].count = 1;
3969                                 qm->attr_sets[num].attrs = (AttributeName*)ch_calloc( 2,
3970                                         sizeof( AttributeName ) );
3971                                 BER_BVSTR( &qm->attr_sets[num].attrs[0].an_name, LDAP_ALL_OPERATIONAL_ATTRIBUTES );
3972                                 break;
3973
3974                         } else if ( strcmp( c->argv[2], LDAP_NO_ATTRS ) == 0 ) {
3975                                 break;
3976                         }
3977                         /* else: fallthru */
3978
3979                 } else if ( c->argc == 4 ) {
3980                         if ( ( strcmp( c->argv[2], LDAP_ALL_USER_ATTRIBUTES ) == 0 && strcmp( c->argv[3], LDAP_ALL_OPERATIONAL_ATTRIBUTES ) == 0 )
3981                                 || ( strcmp( c->argv[2], LDAP_ALL_OPERATIONAL_ATTRIBUTES ) == 0 && strcmp( c->argv[3], LDAP_ALL_USER_ATTRIBUTES ) == 0 ) )
3982                         {
3983                                 qm->attr_sets[num].count = 2;
3984                                 qm->attr_sets[num].attrs = (AttributeName*)ch_calloc( 3,
3985                                         sizeof( AttributeName ) );
3986                                 BER_BVSTR( &qm->attr_sets[num].attrs[0].an_name, LDAP_ALL_USER_ATTRIBUTES );
3987                                 BER_BVSTR( &qm->attr_sets[num].attrs[1].an_name, LDAP_ALL_OPERATIONAL_ATTRIBUTES );
3988                                 break;
3989                         }
3990                         /* else: fallthru */
3991                 }
3992
3993                 if ( c->argc > 2 ) {
3994                         int all_user = 0, all_op = 0;
3995
3996                         qm->attr_sets[num].count = c->argc - 2;
3997                         qm->attr_sets[num].attrs = (AttributeName*)ch_calloc( c->argc - 1,
3998                                 sizeof( AttributeName ) );
3999                         attr_name = qm->attr_sets[num].attrs;
4000                         for ( i = 2; i < c->argc; i++ ) {
4001                                 attr_name->an_desc = NULL;
4002                                 if ( strcmp( c->argv[i], LDAP_NO_ATTRS ) == 0 ) {
4003                                         snprintf( c->cr_msg, sizeof( c->cr_msg ),
4004                                                 "invalid attr #%d \"%s\" in attrlist",
4005                                                 i - 2, c->argv[i] );
4006                                         Debug( LDAP_DEBUG_CONFIG, "%s: %s.\n", c->log, c->cr_msg, 0 );
4007                                         ch_free( qm->attr_sets[num].attrs );
4008                                         qm->attr_sets[num].attrs = NULL;
4009                                         qm->attr_sets[num].count = 0;
4010                                         return 1;
4011                                 }
4012                                 if ( strcmp( c->argv[i], LDAP_ALL_USER_ATTRIBUTES ) == 0 ) {
4013                                         all_user = 1;
4014                                         BER_BVSTR( &attr_name->an_name, LDAP_ALL_USER_ATTRIBUTES );
4015                                 } else if ( strcmp( c->argv[i], LDAP_ALL_OPERATIONAL_ATTRIBUTES ) == 0 ) {
4016                                         all_op = 1;
4017                                         BER_BVSTR( &attr_name->an_name, LDAP_ALL_OPERATIONAL_ATTRIBUTES );
4018                                 } else {
4019                                         if ( slap_str2ad( c->argv[i], &attr_name->an_desc, &text ) ) {
4020                                                 strcpy( c->cr_msg, text );
4021                                                 Debug( LDAP_DEBUG_CONFIG, "%s: %s.\n", c->log, c->cr_msg, 0 );
4022                                                 ch_free( qm->attr_sets[num].attrs );
4023                                                 qm->attr_sets[num].attrs = NULL;
4024                                                 qm->attr_sets[num].count = 0;
4025                                                 return 1;
4026                                         }
4027                                         attr_name->an_name = attr_name->an_desc->ad_cname;
4028                                 }
4029                                 attr_name->an_oc = NULL;
4030                                 attr_name->an_flags = 0;
4031                                 if ( attr_name->an_desc == slap_schema.si_ad_objectClass )
4032                                         qm->attr_sets[num].flags |= PC_GOT_OC;
4033                                 attr_name++;
4034                                 BER_BVZERO( &attr_name->an_name );
4035                         }
4036
4037                         /* warn if list contains both "*" and "+" */
4038                         if ( i > 4 && all_user && all_op ) {
4039                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4040                                         "warning: attribute list contains \"*\" and \"+\"" );
4041                                 Debug( LDAP_DEBUG_CONFIG, "%s: %s.\n", c->log, c->cr_msg, 0 );
4042                         }
4043                 }
4044                 break;
4045         case PC_TEMP:
4046                 if ( cm->numattrsets == 0 ) {
4047                         snprintf( c->cr_msg, sizeof( c->cr_msg ), "\"pcache\" directive not provided yet" );
4048                         Debug( LDAP_DEBUG_CONFIG, "%s: %s.\n", c->log, c->cr_msg, 0 );
4049                         return( 1 );
4050                 }
4051                 if ( lutil_atoi( &i, c->argv[2] ) != 0 ) {
4052                         snprintf( c->cr_msg, sizeof( c->cr_msg ), "unable to parse template #=\"%s\"",
4053                                 c->argv[2] );
4054                         Debug( LDAP_DEBUG_CONFIG, "%s: %s.\n", c->log, c->cr_msg, 0 );
4055                         return( 1 );
4056                 }
4057
4058                 if ( i < 0 || i >= cm->numattrsets || 
4059                         !(qm->attr_sets[i].flags & PC_CONFIGURED )) {
4060                         snprintf( c->cr_msg, sizeof( c->cr_msg ), "template index %d invalid (%s%d)",
4061                                 i, cm->numattrsets > 1 ? "0->" : "", cm->numattrsets - 1 );
4062                         Debug( LDAP_DEBUG_CONFIG, "%s: %s.\n", c->log, c->cr_msg, 0 );
4063                         return 1;
4064                 }
4065                 {
4066                         AttributeName *attrs;
4067                         int cnt;
4068                         cnt = template_attrs( c->argv[1], &qm->attr_sets[i], &attrs, &text );
4069                         if ( cnt < 0 ) {
4070                                 snprintf( c->cr_msg, sizeof( c->cr_msg ), "unable to parse template: %s",
4071                                         text );
4072                                 Debug( LDAP_DEBUG_CONFIG, "%s: %s.\n", c->log, c->cr_msg, 0 );
4073                                 return 1;
4074                         }
4075                         temp = ch_calloc( 1, sizeof( QueryTemplate ));
4076                         temp->qmnext = qm->templates;
4077                         qm->templates = temp;
4078                         temp->t_attrs.attrs = attrs;
4079                         temp->t_attrs.count = cnt;
4080                 }
4081                 ldap_pvt_thread_rdwr_init( &temp->t_rwlock );
4082                 temp->query = temp->query_last = NULL;
4083                 if ( lutil_parse_time( c->argv[3], &t ) != 0 ) {
4084                         snprintf( c->cr_msg, sizeof( c->cr_msg ),
4085                                 "unable to parse template ttl=\"%s\"",
4086                                 c->argv[3] );
4087                         Debug( LDAP_DEBUG_CONFIG, "%s: %s.\n", c->log, c->cr_msg, 0 );
4088 pc_temp_fail:
4089                         ch_free( temp->t_attrs.attrs );
4090                         ch_free( temp );
4091                         return( 1 );
4092                 }
4093                 temp->ttl = (time_t)t;
4094                 temp->negttl = (time_t)0;
4095                 temp->limitttl = (time_t)0;
4096                 temp->ttr = (time_t)0;
4097                 switch ( c->argc ) {
4098                 case 7:
4099                         if ( lutil_parse_time( c->argv[6], &t ) != 0 ) {
4100                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4101                                         "unable to parse template ttr=\"%s\"",
4102                                         c->argv[6] );
4103                                 Debug( LDAP_DEBUG_CONFIG, "%s: %s.\n", c->log, c->cr_msg, 0 );
4104                                 goto pc_temp_fail;
4105                         }
4106                         temp->ttr = (time_t)t;
4107                         /* fallthru */
4108
4109                 case 6:
4110                         if ( lutil_parse_time( c->argv[5], &t ) != 0 ) {
4111                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4112                                         "unable to parse template sizelimit ttl=\"%s\"",
4113                                         c->argv[5] );
4114                                 Debug( LDAP_DEBUG_CONFIG, "%s: %s.\n", c->log, c->cr_msg, 0 );
4115                                 goto pc_temp_fail;
4116                         }
4117                         temp->limitttl = (time_t)t;
4118                         /* fallthru */
4119
4120                 case 5:
4121                         if ( lutil_parse_time( c->argv[4], &t ) != 0 ) {
4122                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4123                                         "unable to parse template negative ttl=\"%s\"",
4124                                         c->argv[4] );
4125                                 Debug( LDAP_DEBUG_CONFIG, "%s: %s.\n", c->log, c->cr_msg, 0 );
4126                                 goto pc_temp_fail;
4127                         }
4128                         temp->negttl = (time_t)t;
4129                         break;
4130                 }
4131
4132                 temp->no_of_queries = 0;
4133
4134                 ber_str2bv( c->argv[1], 0, 1, &temp->querystr );
4135                 Debug( pcache_debug, "Template:\n", 0, 0, 0 );
4136                 Debug( pcache_debug, "  query template: %s\n",
4137                                 temp->querystr.bv_val, 0, 0 );
4138                 temp->attr_set_index = i;
4139                 qm->attr_sets[i].flags |= PC_REFERENCED;
4140                 temp->qtnext = qm->attr_sets[i].templates;
4141                 qm->attr_sets[i].templates = temp;
4142                 Debug( pcache_debug, "  attributes: \n", 0, 0, 0 );
4143                 if ( ( attrarray = qm->attr_sets[i].attrs ) != NULL ) {
4144                         for ( i=0; attrarray[i].an_name.bv_val; i++ )
4145                                 Debug( pcache_debug, "\t%s\n",
4146                                         attrarray[i].an_name.bv_val, 0, 0 );
4147                 }
4148                 break;
4149         case PC_BIND:
4150                 if ( !qm->templates ) {
4151                         snprintf( c->cr_msg, sizeof( c->cr_msg ), "\"pcacheTemplate\" directive not provided yet" );
4152                         Debug( LDAP_DEBUG_CONFIG, "%s: %s.\n", c->log, c->cr_msg, 0 );
4153                         return( 1 );
4154                 }
4155                 if ( lutil_atoi( &i, c->argv[2] ) != 0 ) {
4156                         snprintf( c->cr_msg, sizeof( c->cr_msg ), "unable to parse Bind index #=\"%s\"",
4157                                 c->argv[2] );
4158                         Debug( LDAP_DEBUG_CONFIG, "%s: %s.\n", c->log, c->cr_msg, 0 );
4159                         return( 1 );
4160                 }
4161
4162                 if ( i < 0 || i >= cm->numattrsets || 
4163                         !(qm->attr_sets[i].flags & PC_CONFIGURED )) {
4164                         snprintf( c->cr_msg, sizeof( c->cr_msg ), "Bind index %d invalid (%s%d)",
4165                                 i, cm->numattrsets > 1 ? "0->" : "", cm->numattrsets - 1 );
4166                         Debug( LDAP_DEBUG_CONFIG, "%s: %s.\n", c->log, c->cr_msg, 0 );
4167                         return 1;
4168                 }
4169                 {       struct berval bv, tempbv;
4170                         AttributeDescription **descs;
4171                         int ndescs;
4172                         ber_str2bv( c->argv[1], 0, 0, &bv );
4173                         ndescs = ftemp_attrs( &bv, &tempbv, &descs, &text );
4174                         if ( ndescs < 0 ) {
4175                                 snprintf( c->cr_msg, sizeof( c->cr_msg ), "unable to parse template: %s",
4176                                         text );
4177                                 Debug( LDAP_DEBUG_CONFIG, "%s: %s.\n", c->log, c->cr_msg, 0 );
4178                                 return 1;
4179                         }
4180                         for ( temp = qm->templates; temp; temp=temp->qmnext ) {
4181                                 if ( temp->attr_set_index == i && bvmatch( &tempbv,
4182                                         &temp->querystr ))
4183                                         break;
4184                         }
4185                         ch_free( tempbv.bv_val );
4186                         if ( !temp ) {
4187                                 ch_free( descs );
4188                                 snprintf( c->cr_msg, sizeof( c->cr_msg ), "Bind template %s %d invalid",
4189                                         c->argv[1], i );
4190                                 Debug( LDAP_DEBUG_CONFIG, "%s: %s.\n", c->log, c->cr_msg, 0 );
4191                                 return 1;
4192                         }
4193                         ber_dupbv( &temp->bindftemp, &bv );
4194                         temp->bindfattrs = descs;
4195                         temp->bindnattrs = ndescs;
4196                 }
4197                 if ( lutil_parse_time( c->argv[3], &t ) != 0 ) {
4198                         snprintf( c->cr_msg, sizeof( c->cr_msg ),
4199                                 "unable to parse bind ttr=\"%s\"",
4200                                 c->argv[3] );
4201                         Debug( LDAP_DEBUG_CONFIG, "%s: %s.\n", c->log, c->cr_msg, 0 );
4202 pc_bind_fail:
4203                         ch_free( temp->bindfattrs );
4204                         temp->bindfattrs = NULL;
4205                         ch_free( temp->bindftemp.bv_val );
4206                         BER_BVZERO( &temp->bindftemp );
4207                         return( 1 );
4208                 }
4209                 num = ldap_pvt_str2scope( c->argv[4] );
4210                 if ( num < 0 ) {
4211                         snprintf( c->cr_msg, sizeof( c->cr_msg ),
4212                                 "unable to parse bind scope=\"%s\"",
4213                                 c->argv[4] );
4214                         Debug( LDAP_DEBUG_CONFIG, "%s: %s.\n", c->log, c->cr_msg, 0 );
4215                         goto pc_bind_fail;
4216                 }
4217                 {
4218                         struct berval dn, ndn;
4219                         ber_str2bv( c->argv[5], 0, 0, &dn );
4220                         rc = dnNormalize( 0, NULL, NULL, &dn, &ndn, NULL );
4221                         if ( rc ) {
4222                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4223                                         "invalid bind baseDN=\"%s\"",
4224                                         c->argv[5] );
4225                                 Debug( LDAP_DEBUG_CONFIG, "%s: %s.\n", c->log, c->cr_msg, 0 );
4226                                 goto pc_bind_fail;
4227                         }
4228                         if ( temp->bindbase.bv_val )
4229                                 ch_free( temp->bindbase.bv_val );
4230                         temp->bindbase = ndn;
4231                 }
4232                 {
4233                         /* convert the template into dummy filter */
4234                         struct berval bv;
4235                         char *eq = temp->bindftemp.bv_val, *e2;
4236                         Filter *f;
4237                         i = 0;
4238                         while ((eq = strchr(eq, '=' ))) {
4239                                 eq++;
4240                                 if ( eq[1] == ')' )
4241                                         i++;
4242                         }
4243                         bv.bv_len = temp->bindftemp.bv_len + i;
4244                         bv.bv_val = ch_malloc( bv.bv_len + 1 );
4245                         for ( e2 = bv.bv_val, eq = temp->bindftemp.bv_val;
4246                                 *eq; eq++ ) {
4247                                 if ( *eq == '=' ) {
4248                                         *e2++ = '=';
4249                                         if ( eq[1] == ')' )
4250                                                 *e2++ = '*';
4251                                 } else {
4252                                         *e2++ = *eq;
4253                                 }
4254                         }
4255                         *e2 = '\0';
4256                         f = str2filter( bv.bv_val );
4257                         if ( !f ) {
4258                                 ch_free( bv.bv_val );
4259                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4260                                         "unable to parse bindfilter=\"%s\"", bv.bv_val );
4261                                 Debug( LDAP_DEBUG_CONFIG, "%s: %s.\n", c->log, c->cr_msg, 0 );
4262                                 ch_free( temp->bindbase.bv_val );
4263                                 BER_BVZERO( &temp->bindbase );
4264                                 goto pc_bind_fail;
4265                         }
4266                         if ( temp->bindfilter )
4267                                 filter_free( temp->bindfilter );
4268                         if ( temp->bindfilterstr.bv_val )
4269                                 ch_free( temp->bindfilterstr.bv_val );
4270                         temp->bindfilterstr = bv;
4271                         temp->bindfilter = f;
4272                 }
4273                 temp->bindttr = (time_t)t;
4274                 temp->bindscope = num;
4275                 cm->cache_binds = 1;
4276                 break;
4277
4278         case PC_RESP:
4279                 if ( strcasecmp( c->argv[1], "head" ) == 0 ) {
4280                         cm->response_cb = PCACHE_RESPONSE_CB_HEAD;
4281
4282                 } else if ( strcasecmp( c->argv[1], "tail" ) == 0 ) {
4283                         cm->response_cb = PCACHE_RESPONSE_CB_TAIL;
4284
4285                 } else {
4286                         snprintf( c->cr_msg, sizeof( c->cr_msg ), "unknown specifier" );
4287                         Debug( LDAP_DEBUG_CONFIG, "%s: %s.\n", c->log, c->cr_msg, 0 );
4288                         return 1;
4289                 }
4290                 break;
4291         case PC_QUERIES:
4292                 if ( c->value_int <= 0 ) {
4293                         snprintf( c->cr_msg, sizeof( c->cr_msg ), "max queries must be positive" );
4294                         Debug( LDAP_DEBUG_CONFIG, "%s: %s.\n", c->log, c->cr_msg, 0 );
4295                         return( 1 );
4296                 }
4297                 cm->max_queries = c->value_int;
4298                 break;
4299         case PC_OFFLINE:
4300                 if ( c->value_int )
4301                         cm->cc_paused |= PCACHE_CC_OFFLINE;
4302                 else
4303                         cm->cc_paused &= ~PCACHE_CC_OFFLINE;
4304                 break;
4305         case PC_PRIVATE_DB:
4306                 if ( cm->db.be_private == NULL ) {
4307                         snprintf( c->cr_msg, sizeof( c->cr_msg ),
4308                                 "private database must be defined before setting database specific options" );
4309                         Debug( LDAP_DEBUG_CONFIG, "%s: %s.\n", c->log, c->cr_msg, 0 );
4310                         return( 1 );
4311                 }
4312
4313                 if ( cm->db.bd_info->bi_cf_ocs ) {
4314                         ConfigTable     *ct;
4315                         ConfigArgs      c2 = *c;
4316                         char            *argv0 = c->argv[ 0 ];
4317
4318                         c->argv[ 0 ] = &argv0[ STRLENOF( "pcache-" ) ];
4319
4320                         ct = config_find_keyword( cm->db.bd_info->bi_cf_ocs->co_table, c );
4321                         if ( ct == NULL ) {
4322                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4323                                         "private database does not recognize specific option '%s'",
4324                                         c->argv[ 0 ] );
4325                                 Debug( LDAP_DEBUG_CONFIG, "%s: %s.\n", c->log, c->cr_msg, 0 );
4326                                 rc = 1;
4327
4328                         } else {
4329                                 c->table = cm->db.bd_info->bi_cf_ocs->co_type;
4330                                 c->be = &cm->db;
4331                                 c->bi = c->be->bd_info;
4332
4333                                 rc = config_add_vals( ct, c );
4334
4335                                 c->bi = c2.bi;
4336                                 c->be = c2.be;
4337                                 c->table = c2.table;
4338                         }
4339
4340                         c->argv[ 0 ] = argv0;
4341
4342                 } else if ( cm->db.be_config != NULL ) {
4343                         char    *argv0 = c->argv[ 0 ];
4344
4345                         c->argv[ 0 ] = &argv0[ STRLENOF( "pcache-" ) ];
4346                         rc = cm->db.be_config( &cm->db, c->fname, c->lineno, c->argc, c->argv );
4347                         c->argv[ 0 ] = argv0;
4348
4349                 } else {
4350                         snprintf( c->cr_msg, sizeof( c->cr_msg ),
4351                                 "no means to set private database specific options" );
4352                         Debug( LDAP_DEBUG_CONFIG, "%s: %s.\n", c->log, c->cr_msg, 0 );
4353                         return 1;
4354                 }
4355                 break;
4356         default:
4357                 rc = SLAP_CONF_UNKNOWN;
4358                 break;
4359         }
4360
4361         return rc;
4362 }
4363
4364 static int
4365 pcache_db_config(
4366         BackendDB       *be,
4367         const char      *fname,
4368         int             lineno,
4369         int             argc,
4370         char            **argv
4371 )
4372 {
4373         slap_overinst   *on = (slap_overinst *)be->bd_info;
4374         cache_manager*  cm = on->on_bi.bi_private;
4375
4376         /* Something for the cache database? */
4377         if ( cm->db.bd_info && cm->db.bd_info->bi_db_config )
4378                 return cm->db.bd_info->bi_db_config( &cm->db, fname, lineno,
4379                         argc, argv );
4380         return SLAP_CONF_UNKNOWN;
4381 }
4382
4383 static int
4384 pcache_db_init(
4385         BackendDB *be,
4386         ConfigReply *cr)
4387 {
4388         slap_overinst *on = (slap_overinst *)be->bd_info;
4389         cache_manager *cm;
4390         query_manager *qm;
4391
4392         cm = (cache_manager *)ch_malloc(sizeof(cache_manager));
4393         on->on_bi.bi_private = cm;
4394
4395         qm = (query_manager*)ch_malloc(sizeof(query_manager));
4396
4397         cm->db = *be;
4398         SLAP_DBFLAGS(&cm->db) |= SLAP_DBFLAG_NO_SCHEMA_CHECK;
4399         cm->db.be_private = NULL;
4400         cm->db.bd_self = &cm->db;
4401         cm->qm = qm;
4402         cm->numattrsets = 0;
4403         cm->num_entries_limit = 5;
4404         cm->num_cached_queries = 0;
4405         cm->max_entries = 0;
4406         cm->cur_entries = 0;
4407         cm->max_queries = 10000;
4408         cm->save_queries = 0;
4409         cm->check_cacheability = 0;
4410         cm->response_cb = PCACHE_RESPONSE_CB_TAIL;
4411         cm->defer_db_open = 1;
4412         cm->cc_period = 1000;
4413         cm->cc_paused = 0;
4414         cm->cc_arg = NULL;
4415
4416         qm->attr_sets = NULL;
4417         qm->templates = NULL;
4418         qm->lru_top = NULL;
4419         qm->lru_bottom = NULL;
4420
4421         qm->qcfunc = query_containment;
4422         qm->crfunc = cache_replacement;
4423         qm->addfunc = add_query;
4424         ldap_pvt_thread_mutex_init(&qm->lru_mutex);
4425
4426         ldap_pvt_thread_mutex_init(&cm->cache_mutex);
4427
4428 #ifndef PCACHE_MONITOR
4429         return 0;
4430 #else /* PCACHE_MONITOR */
4431         return pcache_monitor_db_init( be );
4432 #endif /* PCACHE_MONITOR */
4433 }
4434
4435 static int
4436 pcache_cachedquery_open_cb( Operation *op, SlapReply *rs )
4437 {
4438         assert( op->o_tag == LDAP_REQ_SEARCH );
4439
4440         if ( rs->sr_type == REP_SEARCH ) {
4441                 Attribute       *a;
4442
4443                 a = attr_find( rs->sr_entry->e_attrs, ad_cachedQueryURL );
4444                 if ( a != NULL ) {
4445                         BerVarray       *valsp;
4446
4447                         assert( a->a_nvals != NULL );
4448
4449                         valsp = op->o_callback->sc_private;
4450                         assert( *valsp == NULL );
4451
4452                         ber_bvarray_dup_x( valsp, a->a_nvals, op->o_tmpmemctx );
4453                 }
4454         }
4455
4456         return 0;
4457 }
4458
4459 static int
4460 pcache_cachedquery_count_cb( Operation *op, SlapReply *rs )
4461 {
4462         assert( op->o_tag == LDAP_REQ_SEARCH );
4463
4464         if ( rs->sr_type == REP_SEARCH ) {
4465                 int     *countp = (int *)op->o_callback->sc_private;
4466
4467                 (*countp)++;
4468         }
4469
4470         return 0;
4471 }
4472
4473 static int
4474 pcache_db_open2(
4475         slap_overinst *on,
4476         ConfigReply *cr )
4477 {
4478         cache_manager   *cm = on->on_bi.bi_private;
4479         query_manager*  qm = cm->qm;
4480         int rc;
4481
4482         rc = backend_startup_one( &cm->db, cr );
4483         if ( rc == 0 ) {
4484                 cm->defer_db_open = 0;
4485         }
4486
4487         /* There is no runqueue in TOOL mode */
4488         if (( slapMode & SLAP_SERVER_MODE ) && rc == 0 ) {
4489                 ldap_pvt_thread_mutex_lock( &slapd_rq.rq_mutex );
4490                 ldap_pvt_runqueue_insert( &slapd_rq, cm->cc_period,
4491                         consistency_check, on,
4492                         "pcache_consistency", cm->db.be_suffix[0].bv_val );
4493                 ldap_pvt_thread_mutex_unlock( &slapd_rq.rq_mutex );
4494
4495                 /* Cached database must have the rootdn */
4496                 if ( BER_BVISNULL( &cm->db.be_rootndn )
4497                                 || BER_BVISEMPTY( &cm->db.be_rootndn ) )
4498                 {
4499                         Debug( LDAP_DEBUG_ANY, "pcache_db_open(): "
4500                                 "underlying database of type \"%s\"\n"
4501                                 "    serving naming context \"%s\"\n"
4502                                 "    has no \"rootdn\", required by \"pcache\".\n",
4503                                 on->on_info->oi_orig->bi_type,
4504                                 cm->db.be_suffix[0].bv_val, 0 );
4505                         return 1;
4506                 }
4507
4508                 if ( cm->save_queries ) {
4509                         void            *thrctx = ldap_pvt_thread_pool_context();
4510                         Connection      conn = { 0 };
4511                         OperationBuffer opbuf;
4512                         Operation       *op;
4513                         slap_callback   cb = { 0 };
4514                         SlapReply       rs = { 0 };
4515                         BerVarray       vals = NULL;
4516                         Filter          f = { 0 }, f2 = { 0 };
4517                         AttributeAssertion      ava = ATTRIBUTEASSERTION_INIT;
4518                         AttributeName   attrs[ 2 ] = {{{ 0 }}};
4519
4520                         connection_fake_init( &conn, &opbuf, thrctx );
4521                         op = &opbuf.ob_op;
4522
4523                         op->o_bd = &cm->db;
4524
4525                         op->o_tag = LDAP_REQ_SEARCH;
4526                         op->o_protocol = LDAP_VERSION3;
4527                         cb.sc_response = pcache_cachedquery_open_cb;
4528                         cb.sc_private = &vals;
4529                         op->o_callback = &cb;
4530                         op->o_time = slap_get_time();
4531                         op->o_do_not_cache = 1;
4532                         op->o_managedsait = SLAP_CONTROL_CRITICAL;
4533
4534                         op->o_dn = cm->db.be_rootdn;
4535                         op->o_ndn = cm->db.be_rootndn;
4536                         op->o_req_dn = cm->db.be_suffix[ 0 ];
4537                         op->o_req_ndn = cm->db.be_nsuffix[ 0 ];
4538
4539                         op->ors_scope = LDAP_SCOPE_BASE;
4540                         op->ors_deref = LDAP_DEREF_NEVER;
4541                         op->ors_slimit = 1;
4542                         op->ors_tlimit = SLAP_NO_LIMIT;
4543                         op->ors_limit = NULL;
4544                         ber_str2bv( "(pcacheQueryURL=*)", 0, 0, &op->ors_filterstr );
4545                         f.f_choice = LDAP_FILTER_PRESENT;
4546                         f.f_desc = ad_cachedQueryURL;
4547                         op->ors_filter = &f;
4548                         attrs[ 0 ].an_desc = ad_cachedQueryURL;
4549                         attrs[ 0 ].an_name = ad_cachedQueryURL->ad_cname;
4550                         op->ors_attrs = attrs;
4551                         op->ors_attrsonly = 0;
4552
4553                         rc = op->o_bd->be_search( op, &rs );
4554                         if ( rc == LDAP_SUCCESS && vals != NULL ) {
4555                                 int     i;
4556
4557                                 for ( i = 0; !BER_BVISNULL( &vals[ i ] ); i++ ) {
4558                                         if ( url2query( vals[ i ].bv_val, op, qm ) == 0 ) {
4559                                                 cm->num_cached_queries++;
4560                                         }
4561                                 }
4562
4563                                 ber_bvarray_free_x( vals, op->o_tmpmemctx );
4564                         }
4565
4566                         /* count cached entries */
4567                         f.f_choice = LDAP_FILTER_NOT;
4568                         f.f_not = &f2;
4569                         f2.f_choice = LDAP_FILTER_EQUALITY;
4570                         f2.f_ava = &ava;
4571                         f2.f_av_desc = slap_schema.si_ad_objectClass;
4572                         BER_BVSTR( &f2.f_av_value, "glue" );
4573                         ber_str2bv( "(!(objectClass=glue))", 0, 0, &op->ors_filterstr );
4574
4575                         op->ors_slimit = SLAP_NO_LIMIT;
4576                         op->ors_scope = LDAP_SCOPE_SUBTREE;
4577                         op->ors_attrs = slap_anlist_no_attrs;
4578
4579                         op->o_callback->sc_response = pcache_cachedquery_count_cb;
4580                         rs.sr_nentries = 0;
4581                         op->o_callback->sc_private = &rs.sr_nentries;
4582
4583                         rc = op->o_bd->be_search( op, &rs );
4584
4585                         cm->cur_entries = rs.sr_nentries;
4586
4587                         /* ignore errors */
4588                         rc = 0;
4589                 }
4590         }
4591         return rc;
4592 }
4593
4594 static int
4595 pcache_db_open(
4596         BackendDB *be,
4597         ConfigReply *cr )
4598 {
4599         slap_overinst   *on = (slap_overinst *)be->bd_info;
4600         cache_manager   *cm = on->on_bi.bi_private;
4601         query_manager*  qm = cm->qm;
4602         int             i, ncf = 0, rf = 0, nrf = 0, rc = 0;
4603
4604         /* check attr sets */
4605         for ( i = 0; i < cm->numattrsets; i++) {
4606                 if ( !( qm->attr_sets[i].flags & PC_CONFIGURED ) ) {
4607                         if ( qm->attr_sets[i].flags & PC_REFERENCED ) {
4608                                 Debug( LDAP_DEBUG_CONFIG, "pcache: attr set #%d not configured but referenced.\n", i, 0, 0 );
4609                                 rf++;
4610
4611                         } else {
4612                                 Debug( LDAP_DEBUG_CONFIG, "pcache: warning, attr set #%d not configured.\n", i, 0, 0 );
4613                         }
4614                         ncf++;
4615
4616                 } else if ( !( qm->attr_sets[i].flags & PC_REFERENCED ) ) {
4617                         Debug( LDAP_DEBUG_CONFIG, "pcache: attr set #%d configured but not referenced.\n", i, 0, 0 );
4618                         nrf++;
4619                 }
4620         }
4621
4622         if ( ncf || rf || nrf ) {
4623                 Debug( LDAP_DEBUG_CONFIG, "pcache: warning, %d attr sets configured but not referenced.\n", nrf, 0, 0 );
4624                 Debug( LDAP_DEBUG_CONFIG, "pcache: warning, %d attr sets not configured.\n", ncf, 0, 0 );
4625                 Debug( LDAP_DEBUG_CONFIG, "pcache: %d attr sets not configured but referenced.\n", rf, 0, 0 );
4626
4627                 if ( rf > 0 ) {
4628                         return 1;
4629                 }
4630         }
4631
4632         /* need to inherit something from the original database... */
4633         cm->db.be_def_limit = be->be_def_limit;
4634         cm->db.be_limits = be->be_limits;
4635         cm->db.be_acl = be->be_acl;
4636         cm->db.be_dfltaccess = be->be_dfltaccess;
4637
4638         if ( SLAP_DBMONITORING( be ) ) {
4639                 SLAP_DBFLAGS( &cm->db ) |= SLAP_DBFLAG_MONITORING;
4640
4641         } else {
4642                 SLAP_DBFLAGS( &cm->db ) &= ~SLAP_DBFLAG_MONITORING;
4643         }
4644
4645         if ( !cm->defer_db_open ) {
4646                 rc = pcache_db_open2( on, cr );
4647         }
4648
4649 #ifdef PCACHE_MONITOR
4650         if ( rc == LDAP_SUCCESS ) {
4651                 rc = pcache_monitor_db_open( be );
4652         }
4653 #endif /* PCACHE_MONITOR */
4654
4655         return rc;
4656 }
4657
4658 static void
4659 pcache_free_qbase( void *v )
4660 {
4661         Qbase *qb = v;
4662         int i;
4663
4664         for (i=0; i<3; i++)
4665                 tavl_free( qb->scopes[i], NULL );
4666         ch_free( qb );
4667 }
4668
4669 static int
4670 pcache_db_close(
4671         BackendDB *be,
4672         ConfigReply *cr
4673 )
4674 {
4675         slap_overinst *on = (slap_overinst *)be->bd_info;
4676         cache_manager *cm = on->on_bi.bi_private;
4677         query_manager *qm = cm->qm;
4678         QueryTemplate *tm;
4679         int i, rc = 0;
4680
4681         /* stop the thread ... */
4682         if ( cm->cc_arg ) {
4683                 ldap_pvt_thread_mutex_lock( &slapd_rq.rq_mutex );
4684                 if ( ldap_pvt_runqueue_isrunning( &slapd_rq, cm->cc_arg ) ) {
4685                         ldap_pvt_runqueue_stoptask( &slapd_rq, cm->cc_arg );
4686                 }
4687                 ldap_pvt_runqueue_remove( &slapd_rq, cm->cc_arg );
4688                 ldap_pvt_thread_mutex_unlock( &slapd_rq.rq_mutex );
4689         }
4690
4691         if ( cm->save_queries ) {
4692                 CachedQuery     *qc;
4693                 BerVarray       vals = NULL;
4694
4695                 void            *thrctx;
4696                 Connection      conn = { 0 };
4697                 OperationBuffer opbuf;
4698                 Operation       *op;
4699                 slap_callback   cb = { 0 };
4700
4701                 SlapReply       rs = { REP_RESULT };
4702                 Modifications   mod = {{ 0 }};
4703
4704                 thrctx = ldap_pvt_thread_pool_context();
4705
4706                 connection_fake_init( &conn, &opbuf, thrctx );
4707                 op = &opbuf.ob_op;
4708
4709                 if ( qm->templates != NULL ) {
4710                         for ( tm = qm->templates; tm != NULL; tm = tm->qmnext ) {
4711                                 for ( qc = tm->query; qc; qc = qc->next ) {
4712                                         struct berval   bv;
4713
4714                                         if ( query2url( op, qc, &bv, 0 ) == 0 ) {
4715                                                 ber_bvarray_add_x( &vals, &bv, op->o_tmpmemctx );
4716                                         }
4717                                 }
4718                         }
4719                 }
4720
4721                 op->o_bd = &cm->db;
4722                 op->o_dn = cm->db.be_rootdn;
4723                 op->o_ndn = cm->db.be_rootndn;
4724
4725                 op->o_tag = LDAP_REQ_MODIFY;
4726                 op->o_protocol = LDAP_VERSION3;
4727                 cb.sc_response = slap_null_cb;
4728                 op->o_callback = &cb;
4729                 op->o_time = slap_get_time();
4730                 op->o_do_not_cache = 1;
4731                 op->o_managedsait = SLAP_CONTROL_CRITICAL;
4732
4733                 op->o_req_dn = op->o_bd->be_suffix[0];
4734                 op->o_req_ndn = op->o_bd->be_nsuffix[0];
4735
4736                 mod.sml_op = LDAP_MOD_REPLACE;
4737                 mod.sml_flags = 0;
4738                 mod.sml_desc = ad_cachedQueryURL;
4739                 mod.sml_type = ad_cachedQueryURL->ad_cname;
4740                 mod.sml_values = vals;
4741                 mod.sml_nvalues = NULL;
4742                 mod.sml_numvals = 1;
4743                 mod.sml_next = NULL;
4744                 Debug( pcache_debug,
4745                         "%sSETTING CACHED QUERY URLS\n",
4746                         vals == NULL ? "RE" : "", 0, 0 );
4747
4748                 op->orm_modlist = &mod;
4749
4750                 op->o_bd->be_modify( op, &rs );
4751
4752                 ber_bvarray_free_x( vals, op->o_tmpmemctx );
4753         }
4754
4755         /* cleanup stuff inherited from the original database... */
4756         cm->db.be_limits = NULL;
4757         cm->db.be_acl = NULL;
4758
4759
4760         if ( cm->db.bd_info->bi_db_close ) {
4761                 rc = cm->db.bd_info->bi_db_close( &cm->db, NULL );
4762         }
4763         while ( (tm = qm->templates) != NULL ) {
4764                 CachedQuery *qc, *qn;
4765                 qm->templates = tm->qmnext;
4766                 for ( qc = tm->query; qc; qc = qn ) {
4767                         qn = qc->next;
4768                         free_query( qc );
4769                 }
4770                 avl_free( tm->qbase, pcache_free_qbase );
4771                 free( tm->querystr.bv_val );
4772                 free( tm->bindfattrs );
4773                 free( tm->bindftemp.bv_val );
4774                 free( tm->bindfilterstr.bv_val );
4775                 free( tm->bindbase.bv_val );
4776                 filter_free( tm->bindfilter );
4777                 ldap_pvt_thread_rdwr_destroy( &tm->t_rwlock );
4778                 free( tm->t_attrs.attrs );
4779                 free( tm );
4780         }
4781
4782         for ( i=0; i<cm->numattrsets; i++ ) {
4783                 free( qm->attr_sets[i].attrs );
4784         }
4785         free( qm->attr_sets );
4786         qm->attr_sets = NULL;
4787
4788 #ifdef PCACHE_MONITOR
4789         if ( rc == LDAP_SUCCESS ) {
4790                 rc = pcache_monitor_db_close( be );
4791         }
4792 #endif /* PCACHE_MONITOR */
4793
4794         return rc;
4795 }
4796
4797 static int
4798 pcache_db_destroy(
4799         BackendDB *be,
4800         ConfigReply *cr
4801 )
4802 {
4803         slap_overinst *on = (slap_overinst *)be->bd_info;
4804         cache_manager *cm = on->on_bi.bi_private;
4805         query_manager *qm = cm->qm;
4806
4807         if ( cm->db.be_private != NULL ) {
4808                 backend_stopdown_one( &cm->db );
4809         }
4810
4811         ldap_pvt_thread_mutex_destroy( &qm->lru_mutex );
4812         ldap_pvt_thread_mutex_destroy( &cm->cache_mutex );
4813         free( qm );
4814         free( cm );
4815
4816 #ifdef PCACHE_MONITOR
4817         pcache_monitor_db_destroy( be );
4818 #endif /* PCACHE_MONITOR */
4819
4820         return 0;
4821 }
4822
4823 #ifdef PCACHE_CONTROL_PRIVDB
4824 /*
4825         Control ::= SEQUENCE {
4826              controlType             LDAPOID,
4827              criticality             BOOLEAN DEFAULT FALSE,
4828              controlValue            OCTET STRING OPTIONAL }
4829
4830         controlType ::= 1.3.6.1.4.1.4203.666.11.9.5.1
4831
4832  * criticality must be TRUE; controlValue must be absent.
4833  */
4834 static int
4835 parse_privdb_ctrl(
4836         Operation       *op,
4837         SlapReply       *rs,
4838         LDAPControl     *ctrl )
4839 {
4840         if ( op->o_ctrlflag[ privDB_cid ] != SLAP_CONTROL_NONE ) {
4841                 rs->sr_text = "privateDB control specified multiple times";
4842                 return LDAP_PROTOCOL_ERROR;
4843         }
4844
4845         if ( !BER_BVISNULL( &ctrl->ldctl_value ) ) {
4846                 rs->sr_text = "privateDB control value not absent";
4847                 return LDAP_PROTOCOL_ERROR;
4848         }
4849
4850         if ( !ctrl->ldctl_iscritical ) {
4851                 rs->sr_text = "privateDB control criticality required";
4852                 return LDAP_PROTOCOL_ERROR;
4853         }
4854
4855         op->o_ctrlflag[ privDB_cid ] = SLAP_CONTROL_CRITICAL;
4856
4857         return LDAP_SUCCESS;
4858 }
4859
4860 static char *extops[] = {
4861         LDAP_EXOP_MODIFY_PASSWD,
4862         NULL
4863 };
4864 #endif /* PCACHE_CONTROL_PRIVDB */
4865
4866 #ifdef PCACHE_EXOP_QUERY_DELETE
4867 static struct berval pcache_exop_QUERY_DELETE = BER_BVC( PCACHE_EXOP_QUERY_DELETE );
4868
4869 #define LDAP_TAG_EXOP_QUERY_DELETE_BASE ((LBER_CLASS_CONTEXT|LBER_CONSTRUCTED) + 0)
4870 #define LDAP_TAG_EXOP_QUERY_DELETE_DN   ((LBER_CLASS_CONTEXT|LBER_CONSTRUCTED) + 1)
4871 #define LDAP_TAG_EXOP_QUERY_DELETE_UUID ((LBER_CLASS_CONTEXT|LBER_CONSTRUCTED) + 2)
4872
4873 /*
4874         ExtendedRequest ::= [APPLICATION 23] SEQUENCE {
4875              requestName      [0] LDAPOID,
4876              requestValue     [1] OCTET STRING OPTIONAL }
4877
4878         requestName ::= 1.3.6.1.4.1.4203.666.11.9.6.1
4879
4880         requestValue ::= SEQUENCE { CHOICE {
4881                   baseDN           [0] LDAPDN
4882                   entryDN          [1] LDAPDN },
4883              queryID          [2] OCTET STRING (SIZE(16))
4884                   -- constrained to UUID }
4885
4886  * Either baseDN or entryDN must be present, to allow database selection.
4887  *
4888  * 1. if baseDN and queryID are present, then the query corresponding
4889  *    to queryID is deleted;
4890  * 2. if baseDN is present and queryID is absent, then all queries
4891  *    are deleted;
4892  * 3. if entryDN is present and queryID is absent, then all queries
4893  *    corresponding to the queryID values present in entryDN are deleted;
4894  * 4. if entryDN and queryID are present, then all queries
4895  *    corresponding to the queryID values present in entryDN are deleted,
4896  *    but only if the value of queryID is contained in the entry;
4897  *
4898  * Currently, only 1, 3 and 4 are implemented.  2 can be obtained by either
4899  * recursively deleting the database (ldapdelete -r) with PRIVDB control,
4900  * or by removing the database files.
4901
4902         ExtendedResponse ::= [APPLICATION 24] SEQUENCE {
4903              COMPONENTS OF LDAPResult,
4904              responseName     [10] LDAPOID OPTIONAL,
4905              responseValue    [11] OCTET STRING OPTIONAL }
4906
4907  * responseName and responseValue must be absent.
4908  */
4909
4910 /*
4911  * - on success, *tagp is either LDAP_TAG_EXOP_QUERY_DELETE_BASE
4912  *   or LDAP_TAG_EXOP_QUERY_DELETE_DN.
4913  * - if ndn != NULL, it is set to the normalized DN in the request
4914  *   corresponding to either the baseDN or the entryDN, according
4915  *   to *tagp; memory is malloc'ed on the Operation's slab, and must
4916  *   be freed by the caller.
4917  * - if uuid != NULL, it is set to point to the normalized UUID;
4918  *   memory is malloc'ed on the Operation's slab, and must
4919  *   be freed by the caller.
4920  */
4921 static int
4922 pcache_parse_query_delete(
4923         struct berval   *in,
4924         ber_tag_t       *tagp,
4925         struct berval   *ndn,
4926         struct berval   *uuid,
4927         const char      **text,
4928         void            *ctx )
4929 {
4930         int                     rc = LDAP_SUCCESS;
4931         ber_tag_t               tag;
4932         ber_len_t               len = -1;
4933         BerElementBuffer        berbuf;
4934         BerElement              *ber = (BerElement *)&berbuf;
4935         struct berval           reqdata = BER_BVNULL;
4936
4937         *text = NULL;
4938
4939         if ( ndn ) {
4940                 BER_BVZERO( ndn );
4941         }
4942
4943         if ( uuid ) {
4944                 BER_BVZERO( uuid );
4945         }
4946
4947         if ( in == NULL || in->bv_len == 0 ) {
4948                 *text = "empty request data field in queryDelete exop";
4949                 return LDAP_PROTOCOL_ERROR;
4950         }
4951
4952         ber_dupbv_x( &reqdata, in, ctx );
4953
4954         /* ber_init2 uses reqdata directly, doesn't allocate new buffers */
4955         ber_init2( ber, &reqdata, 0 );
4956
4957         tag = ber_scanf( ber, "{" /*}*/ );
4958
4959         if ( tag == LBER_ERROR ) {
4960                 Debug( LDAP_DEBUG_TRACE,
4961                         "pcache_parse_query_delete: decoding error.\n",
4962                         0, 0, 0 );
4963                 goto decoding_error;
4964         }
4965
4966         tag = ber_peek_tag( ber, &len );
4967         if ( tag == LDAP_TAG_EXOP_QUERY_DELETE_BASE
4968                 || tag == LDAP_TAG_EXOP_QUERY_DELETE_DN )
4969         {
4970                 *tagp = tag;
4971
4972                 if ( ndn != NULL ) {
4973                         struct berval   dn;
4974
4975                         tag = ber_scanf( ber, "m", &dn );
4976                         if ( tag == LBER_ERROR ) {
4977                                 Debug( LDAP_DEBUG_TRACE,
4978                                         "pcache_parse_query_delete: DN parse failed.\n",
4979                                         0, 0, 0 );
4980                                 goto decoding_error;
4981                         }
4982
4983                         rc = dnNormalize( 0, NULL, NULL, &dn, ndn, ctx );
4984                         if ( rc != LDAP_SUCCESS ) {
4985                                 *text = "invalid DN in queryDelete exop request data";
4986                                 goto done;
4987                         }
4988
4989                 } else {
4990                         tag = ber_scanf( ber, "x" /* "m" */ );
4991                         if ( tag == LBER_DEFAULT ) {
4992                                 goto decoding_error;
4993                         }
4994                 }
4995
4996                 tag = ber_peek_tag( ber, &len );
4997         }
4998
4999         if ( tag == LDAP_TAG_EXOP_QUERY_DELETE_UUID ) {
5000                 if ( uuid != NULL ) {
5001                         struct berval   bv;
5002                         char            uuidbuf[ LDAP_LUTIL_UUIDSTR_BUFSIZE ];
5003
5004                         tag = ber_scanf( ber, "m", &bv );
5005                         if ( tag == LBER_ERROR ) {
5006                                 Debug( LDAP_DEBUG_TRACE,
5007                                         "pcache_parse_query_delete: UUID parse failed.\n",
5008                                         0, 0, 0 );
5009                                 goto decoding_error;
5010                         }
5011
5012                         if ( bv.bv_len != 16 ) {
5013                                 Debug( LDAP_DEBUG_TRACE,
5014                                         "pcache_parse_query_delete: invalid UUID length %lu.\n",
5015                                         (unsigned long)bv.bv_len, 0, 0 );
5016                                 goto decoding_error;
5017                         }
5018
5019                         rc = lutil_uuidstr_from_normalized(
5020                                 bv.bv_val, bv.bv_len,
5021                                 uuidbuf, sizeof( uuidbuf ) );
5022                         if ( rc == -1 ) {
5023                                 goto decoding_error;
5024                         }
5025                         ber_str2bv( uuidbuf, rc, 1, uuid );
5026                         rc = LDAP_SUCCESS;
5027
5028                 } else {
5029                         tag = ber_skip_tag( ber, &len );
5030                         if ( tag == LBER_DEFAULT ) {
5031                                 goto decoding_error;
5032                         }
5033
5034                         if ( len != 16 ) {
5035                                 Debug( LDAP_DEBUG_TRACE,
5036                                         "pcache_parse_query_delete: invalid UUID length %lu.\n",
5037                                         (unsigned long)len, 0, 0 );
5038                                 goto decoding_error;
5039                         }
5040                 }
5041
5042                 tag = ber_peek_tag( ber, &len );
5043         }
5044
5045         if ( tag != LBER_DEFAULT || len != 0 ) {
5046 decoding_error:;
5047                 Debug( LDAP_DEBUG_TRACE,
5048                         "pcache_parse_query_delete: decoding error\n",
5049                         0, 0, 0 );
5050                 rc = LDAP_PROTOCOL_ERROR;
5051                 *text = "queryDelete data decoding error";
5052
5053 done:;
5054                 if ( ndn && !BER_BVISNULL( ndn ) ) {
5055                         slap_sl_free( ndn->bv_val, ctx );
5056                         BER_BVZERO( ndn );
5057                 }
5058
5059                 if ( uuid && !BER_BVISNULL( uuid ) ) {
5060                         slap_sl_free( uuid->bv_val, ctx );
5061                         BER_BVZERO( uuid );
5062                 }
5063         }
5064
5065         if ( !BER_BVISNULL( &reqdata ) ) {
5066                 ber_memfree_x( reqdata.bv_val, ctx );
5067         }
5068
5069         return rc;
5070 }
5071
5072 static int
5073 pcache_exop_query_delete(
5074         Operation       *op,
5075         SlapReply       *rs )
5076 {
5077         BackendDB       *bd = op->o_bd;
5078
5079         struct berval   uuid = BER_BVNULL,
5080                         *uuidp = NULL;
5081         char            buf[ SLAP_TEXT_BUFLEN ];
5082         unsigned        len;
5083         ber_tag_t       tag = LBER_DEFAULT;
5084
5085         if ( LogTest( LDAP_DEBUG_STATS ) ) {
5086                 uuidp = &uuid;
5087         }
5088
5089         rs->sr_err = pcache_parse_query_delete( op->ore_reqdata,
5090                 &tag, &op->o_req_ndn, uuidp,
5091                 &rs->sr_text, op->o_tmpmemctx );
5092         if ( rs->sr_err != LDAP_SUCCESS ) {
5093                 return rs->sr_err;
5094         }
5095
5096         if ( LogTest( LDAP_DEBUG_STATS ) ) {
5097                 assert( !BER_BVISNULL( &op->o_req_ndn ) );
5098                 len = snprintf( buf, sizeof( buf ), " dn=\"%s\"", op->o_req_ndn.bv_val );
5099
5100                 if ( !BER_BVISNULL( &uuid ) && len < sizeof( buf ) ) {
5101                         snprintf( &buf[ len ], sizeof( buf ) - len, " pcacheQueryId=\"%s\"", uuid.bv_val );
5102                 }
5103
5104                 Debug( LDAP_DEBUG_STATS, "%s QUERY DELETE%s\n",
5105                         op->o_log_prefix, buf, 0 );
5106         }
5107         op->o_req_dn = op->o_req_ndn;
5108
5109         op->o_bd = select_backend( &op->o_req_ndn, 0 );
5110         rs->sr_err = backend_check_restrictions( op, rs,
5111                 (struct berval *)&pcache_exop_QUERY_DELETE );
5112         if ( rs->sr_err != LDAP_SUCCESS ) {
5113                 goto done;
5114         }
5115
5116         if ( op->o_bd->be_extended == NULL ) {
5117                 send_ldap_error( op, rs, LDAP_UNAVAILABLE_CRITICAL_EXTENSION,
5118                         "backend does not support extended operations" );
5119                 goto done;
5120         }
5121
5122         op->o_bd->be_extended( op, rs );
5123
5124 done:;
5125         if ( !BER_BVISNULL( &op->o_req_ndn ) ) {
5126                 op->o_tmpfree( op->o_req_ndn.bv_val, op->o_tmpmemctx );
5127                 BER_BVZERO( &op->o_req_ndn );
5128                 BER_BVZERO( &op->o_req_dn );
5129         }
5130
5131         if ( !BER_BVISNULL( &uuid ) ) {
5132                 op->o_tmpfree( uuid.bv_val, op->o_tmpmemctx );
5133         }
5134
5135         op->o_bd = bd;
5136
5137         return rs->sr_err;
5138 }
5139
5140 static int
5141 pcache_op_extended( Operation *op, SlapReply *rs )
5142 {
5143         slap_overinst   *on = (slap_overinst *)op->o_bd->bd_info;
5144         cache_manager   *cm = on->on_bi.bi_private;
5145
5146 #ifdef PCACHE_CONTROL_PRIVDB
5147         if ( op->o_ctrlflag[ privDB_cid ] == SLAP_CONTROL_CRITICAL ) {
5148                 return pcache_op_privdb( op, rs );
5149         }
5150 #endif /* PCACHE_CONTROL_PRIVDB */
5151
5152         if ( bvmatch( &op->ore_reqoid, &pcache_exop_QUERY_DELETE ) ) {
5153                 struct berval   uuid = BER_BVNULL;
5154                 ber_tag_t       tag = LBER_DEFAULT;
5155
5156                 rs->sr_err = pcache_parse_query_delete( op->ore_reqdata,
5157                         &tag, NULL, &uuid, &rs->sr_text, op->o_tmpmemctx );
5158                 assert( rs->sr_err == LDAP_SUCCESS );
5159
5160                 if ( tag == LDAP_TAG_EXOP_QUERY_DELETE_DN ) {
5161                         /* remove all queries related to the selected entry */
5162                         rs->sr_err = pcache_remove_entry_queries_from_cache( op,
5163                                 cm, &op->o_req_ndn, &uuid );
5164
5165                 } else if ( tag == LDAP_TAG_EXOP_QUERY_DELETE_BASE ) {
5166                         if ( !BER_BVISNULL( &uuid ) ) {
5167                                 /* remove the selected query */
5168                                 rs->sr_err = pcache_remove_query_from_cache( op,
5169                                         cm, &uuid );
5170
5171                         } else {
5172                                 /* TODO: remove all queries */
5173                                 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
5174                                 rs->sr_text = "deletion of all queries not implemented";
5175                         }
5176                 }
5177
5178                 op->o_tmpfree( uuid.bv_val, op->o_tmpmemctx );
5179         }
5180
5181         return rs->sr_err;
5182 }
5183 #endif /* PCACHE_EXOP_QUERY_DELETE */
5184
5185 #ifdef PCACHE_MONITOR
5186
5187 static int
5188 pcache_monitor_update(
5189         Operation       *op,
5190         SlapReply       *rs,
5191         Entry           *e,
5192         void            *priv )
5193 {
5194         cache_manager   *cm = (cache_manager *) priv;
5195         query_manager   *qm = cm->qm;
5196
5197         CachedQuery     *qc;
5198         BerVarray       vals = NULL;
5199
5200         attr_delete( &e->e_attrs, ad_cachedQueryURL );
5201         if ( ( SLAP_OPATTRS( rs->sr_attr_flags ) || ad_inlist( ad_cachedQueryURL, rs->sr_attrs ) )
5202                 && qm->templates != NULL )
5203         {
5204                 QueryTemplate *tm;
5205
5206                 for ( tm = qm->templates; tm != NULL; tm = tm->qmnext ) {
5207                         for ( qc = tm->query; qc; qc = qc->next ) {
5208                                 struct berval   bv;
5209
5210                                 if ( query2url( op, qc, &bv, 1 ) == 0 ) {
5211                                         ber_bvarray_add_x( &vals, &bv, op->o_tmpmemctx );
5212                                 }
5213                         }
5214                 }
5215
5216
5217                 if ( vals != NULL ) {
5218                         attr_merge_normalize( e, ad_cachedQueryURL, vals, NULL );
5219                         ber_bvarray_free_x( vals, op->o_tmpmemctx );
5220                 }
5221         }
5222
5223         {
5224                 Attribute       *a;
5225                 char            *buf[ SLAP_TEXT_BUFLEN ];
5226                 struct berval   bv;
5227
5228                 /* number of cached queries */
5229                 a = attr_find( e->e_attrs, ad_numQueries );
5230                 assert( a != NULL );
5231
5232                 bv.bv_val = buf;
5233                 bv.bv_len = snprintf( buf, sizeof( buf ), "%lu", cm->num_cached_queries );
5234
5235                 if ( a->a_nvals != a->a_vals ) {
5236                         ber_bvreplace( &a->a_nvals[ 0 ], &bv );
5237                 }
5238                 ber_bvreplace( &a->a_vals[ 0 ], &bv );
5239
5240                 /* number of cached entries */
5241                 a = attr_find( e->e_attrs, ad_numEntries );
5242                 assert( a != NULL );
5243
5244                 bv.bv_val = buf;
5245                 bv.bv_len = snprintf( buf, sizeof( buf ), "%d", cm->cur_entries );
5246
5247                 if ( a->a_nvals != a->a_vals ) {
5248                         ber_bvreplace( &a->a_nvals[ 0 ], &bv );
5249                 }
5250                 ber_bvreplace( &a->a_vals[ 0 ], &bv );
5251         }
5252
5253         return SLAP_CB_CONTINUE;
5254 }
5255
5256 static int
5257 pcache_monitor_free(
5258         Entry           *e,
5259         void            **priv )
5260 {
5261         struct berval   values[ 2 ];
5262         Modification    mod = { 0 };
5263
5264         const char      *text;
5265         char            textbuf[ SLAP_TEXT_BUFLEN ];
5266
5267         int             rc;
5268
5269         /* NOTE: if slap_shutdown != 0, priv might have already been freed */
5270         *priv = NULL;
5271
5272         /* Remove objectClass */
5273         mod.sm_op = LDAP_MOD_DELETE;
5274         mod.sm_desc = slap_schema.si_ad_objectClass;
5275         mod.sm_values = values;
5276         mod.sm_numvals = 1;
5277         values[ 0 ] = oc_olmPCache->soc_cname;
5278         BER_BVZERO( &values[ 1 ] );
5279
5280         rc = modify_delete_values( e, &mod, 1, &text,
5281                 textbuf, sizeof( textbuf ) );
5282         /* don't care too much about return code... */
5283
5284         /* remove attrs */
5285         mod.sm_values = NULL;
5286         mod.sm_desc = ad_cachedQueryURL;
5287         mod.sm_numvals = 0;
5288         rc = modify_delete_values( e, &mod, 1, &text,
5289                 textbuf, sizeof( textbuf ) );
5290         /* don't care too much about return code... */
5291
5292         /* remove attrs */
5293         mod.sm_values = NULL;
5294         mod.sm_desc = ad_numQueries;
5295         mod.sm_numvals = 0;
5296         rc = modify_delete_values( e, &mod, 1, &text,
5297                 textbuf, sizeof( textbuf ) );
5298         /* don't care too much about return code... */
5299
5300         /* remove attrs */
5301         mod.sm_values = NULL;
5302         mod.sm_desc = ad_numEntries;
5303         mod.sm_numvals = 0;
5304         rc = modify_delete_values( e, &mod, 1, &text,
5305                 textbuf, sizeof( textbuf ) );
5306         /* don't care too much about return code... */
5307
5308         return SLAP_CB_CONTINUE;
5309 }
5310
5311 /*
5312  * call from within pcache_initialize()
5313  */
5314 static int
5315 pcache_monitor_initialize( void )
5316 {
5317         static int      pcache_monitor_initialized = 0;
5318
5319         if ( backend_info( "monitor" ) == NULL ) {
5320                 return -1;
5321         }
5322
5323         if ( pcache_monitor_initialized++ ) {
5324                 return 0;
5325         }
5326
5327         return 0;
5328 }
5329
5330 static int
5331 pcache_monitor_db_init( BackendDB *be )
5332 {
5333         if ( pcache_monitor_initialize() == LDAP_SUCCESS ) {
5334                 SLAP_DBFLAGS( be ) |= SLAP_DBFLAG_MONITORING;
5335         }
5336
5337         return 0;
5338 }
5339
5340 static int
5341 pcache_monitor_db_open( BackendDB *be )
5342 {
5343         slap_overinst           *on = (slap_overinst *)be->bd_info;
5344         cache_manager           *cm = on->on_bi.bi_private;
5345         Attribute               *a, *next;
5346         monitor_callback_t      *cb = NULL;
5347         int                     rc = 0;
5348         BackendInfo             *mi;
5349         monitor_extra_t         *mbe;
5350         struct berval           dummy = BER_BVC( "" );
5351
5352         if ( !SLAP_DBMONITORING( be ) ) {
5353                 return 0;
5354         }
5355
5356         mi = backend_info( "monitor" );
5357         if ( !mi || !mi->bi_extra ) {
5358                 SLAP_DBFLAGS( be ) ^= SLAP_DBFLAG_MONITORING;
5359                 return 0;
5360         }
5361         mbe = mi->bi_extra;
5362
5363         /* don't bother if monitor is not configured */
5364         if ( !mbe->is_configured() ) {
5365                 static int warning = 0;
5366
5367                 if ( warning++ == 0 ) {
5368                         Debug( LDAP_DEBUG_ANY, "pcache_monitor_db_open: "
5369                                 "monitoring disabled; "
5370                                 "configure monitor database to enable\n",
5371                                 0, 0, 0 );
5372                 }
5373
5374                 return 0;
5375         }
5376
5377         /* alloc as many as required (plus 1 for objectClass) */
5378         a = attrs_alloc( 1 + 2 );
5379         if ( a == NULL ) {
5380                 rc = 1;
5381                 goto cleanup;
5382         }
5383
5384         a->a_desc = slap_schema.si_ad_objectClass;
5385         attr_valadd( a, &oc_olmPCache->soc_cname, NULL, 1 );
5386         next = a->a_next;
5387
5388         {
5389                 struct berval   bv = BER_BVC( "0" );
5390
5391                 next->a_desc = ad_numQueries;
5392                 attr_valadd( next, &bv, NULL, 1 );
5393                 next = next->a_next;
5394
5395                 next->a_desc = ad_numEntries;
5396                 attr_valadd( next, &bv, NULL, 1 );
5397                 next = next->a_next;
5398         }
5399
5400         cb = ch_calloc( sizeof( monitor_callback_t ), 1 );
5401         cb->mc_update = pcache_monitor_update;
5402         cb->mc_free = pcache_monitor_free;
5403         cb->mc_private = (void *)cm;
5404
5405         /* make sure the database is registered; then add monitor attributes */
5406         BER_BVZERO( &cm->monitor_ndn );
5407         rc = mbe->register_overlay( be, on, &cm->monitor_ndn );
5408         if ( rc == 0 ) {
5409                 rc = mbe->register_entry_attrs( &cm->monitor_ndn, a, cb,
5410                         &dummy, -1, &dummy);
5411         }
5412
5413 cleanup:;
5414         if ( rc != 0 ) {
5415                 if ( cb != NULL ) {
5416                         ch_free( cb );
5417                         cb = NULL;
5418                 }
5419
5420                 if ( a != NULL ) {
5421                         attrs_free( a );
5422                         a = NULL;
5423                 }
5424         }
5425
5426         /* store for cleanup */
5427         cm->monitor_cb = (void *)cb;
5428
5429         /* we don't need to keep track of the attributes, because
5430          * bdb_monitor_free() takes care of everything */
5431         if ( a != NULL ) {
5432                 attrs_free( a );
5433         }
5434
5435         return rc;
5436 }
5437
5438 static int
5439 pcache_monitor_db_close( BackendDB *be )
5440 {
5441         slap_overinst *on = (slap_overinst *)be->bd_info;
5442         cache_manager *cm = on->on_bi.bi_private;
5443
5444         if ( cm->monitor_cb != NULL ) {
5445                 BackendInfo             *mi = backend_info( "monitor" );
5446                 monitor_extra_t         *mbe;
5447
5448                 if ( mi && &mi->bi_extra ) {
5449                         mbe = mi->bi_extra;
5450                         mbe->unregister_entry_callback( NULL,
5451                                 (monitor_callback_t *)cm->monitor_cb,
5452                                 NULL, 0, NULL );
5453                 }
5454         }
5455
5456         return 0;
5457 }
5458
5459 static int
5460 pcache_monitor_db_destroy( BackendDB *be )
5461 {
5462         return 0;
5463 }
5464
5465 #endif /* PCACHE_MONITOR */
5466
5467 static slap_overinst pcache;
5468
5469 static char *obsolete_names[] = {
5470         "proxycache",
5471         NULL
5472 };
5473
5474 #if SLAPD_OVER_PROXYCACHE == SLAPD_MOD_DYNAMIC
5475 static
5476 #endif /* SLAPD_OVER_PROXYCACHE == SLAPD_MOD_DYNAMIC */
5477 int
5478 pcache_initialize()
5479 {
5480         int i, code;
5481         struct berval debugbv = BER_BVC("pcache");
5482         ConfigArgs c;
5483         char *argv[ 4 ];
5484
5485         code = slap_loglevel_get( &debugbv, &pcache_debug );
5486         if ( code ) {
5487                 return code;
5488         }
5489
5490 #ifdef PCACHE_CONTROL_PRIVDB
5491         code = register_supported_control( PCACHE_CONTROL_PRIVDB,
5492                 SLAP_CTRL_BIND|SLAP_CTRL_ACCESS|SLAP_CTRL_HIDE, extops,
5493                 parse_privdb_ctrl, &privDB_cid );
5494         if ( code != LDAP_SUCCESS ) {
5495                 Debug( LDAP_DEBUG_ANY,
5496                         "pcache_initialize: failed to register control %s (%d)\n",
5497                         PCACHE_CONTROL_PRIVDB, code, 0 );
5498                 return code;
5499         }
5500 #endif /* PCACHE_CONTROL_PRIVDB */
5501
5502 #ifdef PCACHE_EXOP_QUERY_DELETE
5503         code = load_extop2( (struct berval *)&pcache_exop_QUERY_DELETE,
5504                 SLAP_EXOP_WRITES|SLAP_EXOP_HIDE, pcache_exop_query_delete,
5505                 0 );
5506         if ( code != LDAP_SUCCESS ) {
5507                 Debug( LDAP_DEBUG_ANY,
5508                         "pcache_initialize: unable to register queryDelete exop: %d.\n",
5509                         code, 0, 0 );
5510                 return code;
5511         }
5512 #endif /* PCACHE_EXOP_QUERY_DELETE */
5513
5514         argv[ 0 ] = "back-bdb/back-hdb monitor";
5515         c.argv = argv;
5516         c.argc = 3;
5517         c.fname = argv[0];
5518
5519         for ( i = 0; s_oid[ i ].name; i++ ) {
5520                 c.lineno = i;
5521                 argv[ 1 ] = s_oid[ i ].name;
5522                 argv[ 2 ] = s_oid[ i ].oid;
5523
5524                 if ( parse_oidm( &c, 0, NULL ) != 0 ) {
5525                         Debug( LDAP_DEBUG_ANY, "pcache_initialize: "
5526                                 "unable to add objectIdentifier \"%s=%s\"\n",
5527                                 s_oid[ i ].name, s_oid[ i ].oid, 0 );
5528                         return 1;
5529                 }
5530         }
5531
5532         for ( i = 0; s_ad[i].desc != NULL; i++ ) {
5533                 code = register_at( s_ad[i].desc, s_ad[i].adp, 0 );
5534                 if ( code ) {
5535                         Debug( LDAP_DEBUG_ANY,
5536                                 "pcache_initialize: register_at #%d failed\n", i, 0, 0 );
5537                         return code;
5538                 }
5539                 (*s_ad[i].adp)->ad_type->sat_flags |= SLAP_AT_HIDE;
5540         }
5541
5542         for ( i = 0; s_oc[i].desc != NULL; i++ ) {
5543                 code = register_oc( s_oc[i].desc, s_oc[i].ocp, 0 );
5544                 if ( code ) {
5545                         Debug( LDAP_DEBUG_ANY,
5546                                 "pcache_initialize: register_oc #%d failed\n", i, 0, 0 );
5547                         return code;
5548                 }
5549                 (*s_oc[i].ocp)->soc_flags |= SLAP_OC_HIDE;
5550         }
5551
5552         pcache.on_bi.bi_type = "pcache";
5553         pcache.on_bi.bi_obsolete_names = obsolete_names;
5554         pcache.on_bi.bi_db_init = pcache_db_init;
5555         pcache.on_bi.bi_db_config = pcache_db_config;
5556         pcache.on_bi.bi_db_open = pcache_db_open;
5557         pcache.on_bi.bi_db_close = pcache_db_close;
5558         pcache.on_bi.bi_db_destroy = pcache_db_destroy;
5559
5560         pcache.on_bi.bi_op_search = pcache_op_search;
5561         pcache.on_bi.bi_op_bind = pcache_op_bind;
5562 #ifdef PCACHE_CONTROL_PRIVDB
5563         pcache.on_bi.bi_op_compare = pcache_op_privdb;
5564         pcache.on_bi.bi_op_modrdn = pcache_op_privdb;
5565         pcache.on_bi.bi_op_modify = pcache_op_privdb;
5566         pcache.on_bi.bi_op_add = pcache_op_privdb;
5567         pcache.on_bi.bi_op_delete = pcache_op_privdb;
5568 #endif /* PCACHE_CONTROL_PRIVDB */
5569 #ifdef PCACHE_EXOP_QUERY_DELETE
5570         pcache.on_bi.bi_extended = pcache_op_extended;
5571 #elif defined( PCACHE_CONTROL_PRIVDB )
5572         pcache.on_bi.bi_extended = pcache_op_privdb;
5573 #endif
5574
5575         pcache.on_bi.bi_chk_controls = pcache_chk_controls;
5576
5577         pcache.on_bi.bi_cf_ocs = pcocs;
5578
5579         code = config_register_schema( pccfg, pcocs );
5580         if ( code ) return code;
5581
5582         return overlay_register( &pcache );
5583 }
5584
5585 #if SLAPD_OVER_PROXYCACHE == SLAPD_MOD_DYNAMIC
5586 int init_module(int argc, char *argv[]) {
5587         return pcache_initialize();
5588 }
5589 #endif
5590
5591 #endif  /* defined(SLAPD_OVER_PROXYCACHE) */