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