]> git.sur5r.net Git - openldap/blob - servers/slapd/back-bdb/index.c
unifdef -UNEW_LOGGING
[openldap] / servers / slapd / back-bdb / index.c
1 /* index.c - routines for dealing with attribute indexes */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 2000-2004 The OpenLDAP Foundation.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted only as authorized by the OpenLDAP
10  * Public License.
11  *
12  * A copy of this license is available in the file LICENSE in the
13  * top-level directory of the distribution or, alternatively, at
14  * <http://www.OpenLDAP.org/license.html>.
15  */
16
17 #include "portable.h"
18
19 #include <stdio.h>
20
21 #include <ac/string.h>
22 #include <ac/socket.h>
23
24 #include "slap.h"
25 #include "back-bdb.h"
26 #include "lutil_hash.h"
27
28 static char presence_keyval[LUTIL_HASH_BYTES] = {0,0,0,1};
29 static struct berval presence_key = {LUTIL_HASH_BYTES, presence_keyval};
30
31 static slap_mask_t index_mask(
32         Backend *be,
33         AttributeDescription *desc,
34         struct berval *atname )
35 {
36         AttributeType *at;
37         slap_mask_t mask = 0;
38
39         bdb_attr_mask( be->be_private, desc, &mask );
40
41         if( mask ) {
42                 *atname = desc->ad_cname;
43                 return mask;
44         }
45
46         /* If there is a tagging option, did we ever index the base
47          * type? If so, check for mask, otherwise it's not there.
48          */
49         if( slap_ad_is_tagged( desc ) && desc != desc->ad_type->sat_ad ) {
50                 /* has tagging option */
51                 bdb_attr_mask( be->be_private, desc->ad_type->sat_ad, &mask );
52
53                 if ( mask && ( mask ^ SLAP_INDEX_NOTAGS ) ) {
54                         *atname = desc->ad_type->sat_cname;
55                         return mask;
56                 }
57         }
58
59         /* see if supertype defined mask for its subtypes */
60         for( at = desc->ad_type; at != NULL ; at = at->sat_sup ) {
61                 /* If no AD, we've never indexed this type */
62                 if ( !at->sat_ad ) continue;
63
64                 bdb_attr_mask( be->be_private, at->sat_ad, &mask );
65
66                 if ( mask && ( mask ^ SLAP_INDEX_NOSUBTYPES ) ) {
67                         *atname = at->sat_cname;
68                         return mask;
69                 }
70         }
71
72         return 0;
73 }
74
75 int bdb_index_is_indexed(
76         Backend *be,
77         AttributeDescription *desc )
78 {
79         slap_mask_t mask;
80         struct berval prefix;
81
82         mask = index_mask( be, desc, &prefix );
83
84         if( mask == 0 ) {
85                 return LDAP_INAPPROPRIATE_MATCHING;
86         }
87
88         return LDAP_SUCCESS;
89 }
90
91 int bdb_index_param(
92         Backend *be,
93         AttributeDescription *desc,
94         int ftype,
95         DB **dbp,
96         slap_mask_t *maskp,
97         struct berval *prefixp )
98 {
99         int rc;
100         slap_mask_t mask;
101         DB *db;
102
103         mask = index_mask( be, desc, prefixp );
104
105         if( mask == 0 ) {
106                 return LDAP_INAPPROPRIATE_MATCHING;
107         }
108
109         rc = bdb_db_cache( be, prefixp->bv_val, &db );
110
111         if( rc != LDAP_SUCCESS ) {
112                 return rc;
113         }
114
115         switch( ftype ) {
116         case LDAP_FILTER_PRESENT:
117                 if( IS_SLAP_INDEX( mask, SLAP_INDEX_PRESENT ) ) {
118                         *prefixp = presence_key;
119                         goto done;
120                 }
121                 break;
122
123         case LDAP_FILTER_APPROX:
124                 if ( desc->ad_type->sat_approx ) {
125                         if( IS_SLAP_INDEX( mask, SLAP_INDEX_APPROX ) ) {
126                                 goto done;
127                         }
128                         break;
129                 }
130
131                 /* Use EQUALITY rule and index for approximate match */
132                 /* fall thru */
133
134         case LDAP_FILTER_EQUALITY:
135                 if( IS_SLAP_INDEX( mask, SLAP_INDEX_EQUALITY ) ) {
136                         goto done;
137                 }
138                 break;
139
140         case LDAP_FILTER_SUBSTRINGS:
141                 if( IS_SLAP_INDEX( mask, SLAP_INDEX_SUBSTR ) ) {
142                         goto done;
143                 }
144                 break;
145
146         default:
147                 return LDAP_OTHER;
148         }
149
150         return LDAP_INAPPROPRIATE_MATCHING;
151
152 done:
153         *dbp = db;
154         *maskp = mask;
155         return LDAP_SUCCESS;
156 }
157
158 static int indexer(
159         Operation *op,
160         DB_TXN *txn,
161         AttributeDescription *ad,
162         struct berval *atname,
163         BerVarray vals,
164         ID id,
165         int opid,
166         slap_mask_t mask )
167 {
168         int rc, i;
169         const char *text;
170         DB *db;
171         struct berval *keys;
172
173         assert( mask );
174
175         rc = bdb_db_cache( op->o_bd, atname->bv_val, &db );
176         
177         if ( rc != LDAP_SUCCESS ) {
178                 Debug( LDAP_DEBUG_ANY,
179                         "bdb_index_read: Could not open DB %s\n",
180                         atname->bv_val, 0, 0 );
181                 return LDAP_OTHER;
182         }
183
184         if( IS_SLAP_INDEX( mask, SLAP_INDEX_PRESENT ) ) {
185                 rc = bdb_key_change( op->o_bd, db, txn, &presence_key, id, opid );
186                 if( rc ) {
187                         goto done;
188                 }
189         }
190
191         if( IS_SLAP_INDEX( mask, SLAP_INDEX_EQUALITY ) ) {
192                 rc = ad->ad_type->sat_equality->smr_indexer(
193                         LDAP_FILTER_EQUALITY,
194                         mask,
195                         ad->ad_type->sat_syntax,
196                         ad->ad_type->sat_equality,
197                         atname, vals, &keys, op->o_tmpmemctx );
198
199                 if( rc == LDAP_SUCCESS && keys != NULL ) {
200                         for( i=0; keys[i].bv_val != NULL; i++ ) {
201                                 rc = bdb_key_change( op->o_bd, db, txn, &keys[i], id, opid );
202                                 if( rc ) {
203                                         ber_bvarray_free_x( keys, op->o_tmpmemctx );
204                                         goto done;
205                                 }
206                         }
207                         ber_bvarray_free_x( keys, op->o_tmpmemctx );
208                 }
209                 rc = LDAP_SUCCESS;
210         }
211
212         if( IS_SLAP_INDEX( mask, SLAP_INDEX_APPROX ) ) {
213                 rc = ad->ad_type->sat_approx->smr_indexer(
214                         LDAP_FILTER_APPROX,
215                         mask,
216                         ad->ad_type->sat_syntax,
217                         ad->ad_type->sat_approx,
218                         atname, vals, &keys, op->o_tmpmemctx );
219
220                 if( rc == LDAP_SUCCESS && keys != NULL ) {
221                         for( i=0; keys[i].bv_val != NULL; i++ ) {
222                                 rc = bdb_key_change( op->o_bd, db, txn, &keys[i], id, opid );
223                                 if( rc ) {
224                                         ber_bvarray_free_x( keys, op->o_tmpmemctx );
225                                         goto done;
226                                 }
227                         }
228                         ber_bvarray_free_x( keys, op->o_tmpmemctx );
229                 }
230
231                 rc = LDAP_SUCCESS;
232         }
233
234         if( IS_SLAP_INDEX( mask, SLAP_INDEX_SUBSTR ) ) {
235                 rc = ad->ad_type->sat_substr->smr_indexer(
236                         LDAP_FILTER_SUBSTRINGS,
237                         mask,
238                         ad->ad_type->sat_syntax,
239                         ad->ad_type->sat_substr,
240                         atname, vals, &keys, op->o_tmpmemctx );
241
242                 if( rc == LDAP_SUCCESS && keys != NULL ) {
243                         for( i=0; keys[i].bv_val != NULL; i++ ) {
244                                 bdb_key_change( op->o_bd, db, txn, &keys[i], id, opid );
245                                 if( rc ) {
246                                         ber_bvarray_free_x( keys, op->o_tmpmemctx );
247                                         goto done;
248                                 }
249                         }
250                         ber_bvarray_free_x( keys, op->o_tmpmemctx );
251                 }
252
253                 rc = LDAP_SUCCESS;
254         }
255
256 done:
257         return rc;
258 }
259
260 static int index_at_values(
261         Operation *op,
262         DB_TXN *txn,
263         AttributeDescription *ad,
264         AttributeType *type,
265         struct berval *tags,
266         BerVarray vals,
267         ID id,
268         int opid )
269 {
270         int rc;
271         slap_mask_t mask = 0;
272
273         if( type->sat_sup ) {
274                 /* recurse */
275                 rc = index_at_values( op, txn, NULL,
276                         type->sat_sup, tags,
277                         vals, id, opid );
278
279                 if( rc ) return rc;
280         }
281
282         /* If this type has no AD, we've never used it before */
283         if( type->sat_ad ) {
284                 bdb_attr_mask( op->o_bd->be_private, type->sat_ad, &mask );
285                 ad = type->sat_ad;
286         }
287
288         if( mask ) {
289                 rc = indexer( op, txn, ad, &type->sat_cname,
290                         vals, id, opid,
291                         mask );
292
293                 if( rc ) return rc;
294         }
295
296         if( tags->bv_len ) {
297                 AttributeDescription *desc;
298
299                 mask = 0;
300
301                 desc = ad_find_tags( type, tags );
302                 if( desc ) {
303                         bdb_attr_mask( op->o_bd->be_private, desc, &mask );
304                 }
305
306                 if( mask ) {
307                         rc = indexer( op, txn, desc, &desc->ad_cname,
308                                 vals, id, opid,
309                                 mask );
310
311                         if( rc ) {
312                                 return rc;
313                         }
314                 }
315         }
316
317         return LDAP_SUCCESS;
318 }
319
320 int bdb_index_values(
321         Operation *op,
322         DB_TXN *txn,
323         AttributeDescription *desc,
324         BerVarray vals,
325         ID id,
326         int opid )
327 {
328         int rc;
329
330         rc = index_at_values( op, txn, desc,
331                 desc->ad_type, &desc->ad_tags,
332                 vals, id, opid );
333
334         return rc;
335 }
336
337 int
338 bdb_index_entry(
339         Operation *op,
340         DB_TXN *txn,
341         int opid,
342         Entry   *e )
343 {
344         int rc;
345         Attribute *ap = e->e_attrs;
346
347         Debug( LDAP_DEBUG_TRACE, "=> index_entry_%s( %ld, \"%s\" )\n",
348                 opid == SLAP_INDEX_ADD_OP ? "add" : "del",
349                 (long) e->e_id, e->e_dn );
350
351         /* add each attribute to the indexes */
352         for ( ; ap != NULL; ap = ap->a_next ) {
353                 rc = bdb_index_values( op, txn, ap->a_desc,
354                         ap->a_nvals, e->e_id, opid );
355
356                 if( rc != LDAP_SUCCESS ) {
357                         Debug( LDAP_DEBUG_TRACE,
358                                 "<= index_entry_%s( %ld, \"%s\" ) failure\n",
359                                 opid == SLAP_INDEX_ADD_OP ? "add" : "del",
360                                 (long) e->e_id, e->e_dn );
361                         return rc;
362                 }
363         }
364
365         Debug( LDAP_DEBUG_TRACE, "<= index_entry_%s( %ld, \"%s\" ) success\n",
366                 opid == SLAP_INDEX_ADD_OP ? "add" : "del",
367                 (long) e->e_id, e->e_dn );
368
369         return LDAP_SUCCESS;
370 }