]> git.sur5r.net Git - openldap/blob - servers/slapd/back-bdb/index.c
Initial round of changes for 2.3 beta
[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-2005 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 AttrInfo *index_mask(
32         Backend *be,
33         AttributeDescription *desc,
34         struct berval *atname )
35 {
36         AttributeType *at;
37         AttrInfo *ai = bdb_attr_mask( be->be_private, desc );
38
39         if( ai ) {
40                 *atname = desc->ad_cname;
41                 return ai;
42         }
43
44         /* If there is a tagging option, did we ever index the base
45          * type? If so, check for mask, otherwise it's not there.
46          */
47         if( slap_ad_is_tagged( desc ) && desc != desc->ad_type->sat_ad ) {
48                 /* has tagging option */
49                 ai = bdb_attr_mask( be->be_private, desc->ad_type->sat_ad );
50
51                 if ( ai && ( ai->ai_indexmask ^ SLAP_INDEX_NOTAGS ) ) {
52                         *atname = desc->ad_type->sat_cname;
53                         return ai;
54                 }
55         }
56
57         /* see if supertype defined mask for its subtypes */
58         for( at = desc->ad_type; at != NULL ; at = at->sat_sup ) {
59                 /* If no AD, we've never indexed this type */
60                 if ( !at->sat_ad ) continue;
61
62                 ai = bdb_attr_mask( be->be_private, at->sat_ad );
63
64                 if ( ai && ( ai->ai_indexmask ^ SLAP_INDEX_NOSUBTYPES ) ) {
65                         *atname = at->sat_cname;
66                         return ai;
67                 }
68         }
69
70         return 0;
71 }
72
73 int bdb_index_is_indexed(
74         Backend *be,
75         AttributeDescription *desc )
76 {
77         AttrInfo *ai;
78         struct berval prefix;
79
80         ai = index_mask( be, desc, &prefix );
81
82         if( !ai )
83                 return LDAP_INAPPROPRIATE_MATCHING;
84
85         return LDAP_SUCCESS;
86 }
87
88 /* This function is only called when evaluating search filters.
89  */
90 int bdb_index_param(
91         Backend *be,
92         AttributeDescription *desc,
93         int ftype,
94         DB **dbp,
95         slap_mask_t *maskp,
96         struct berval *prefixp )
97 {
98         AttrInfo *ai;
99         int rc;
100         slap_mask_t mask;
101         DB *db;
102
103         ai = index_mask( be, desc, prefixp );
104
105         if( !ai ) {
106                 return LDAP_INAPPROPRIATE_MATCHING;
107         }
108         mask = ai->ai_indexmask;
109
110         rc = bdb_db_cache( be, prefixp->bv_val, &db );
111
112         if( rc != LDAP_SUCCESS ) {
113                 return rc;
114         }
115
116         switch( ftype ) {
117         case LDAP_FILTER_PRESENT:
118                 if( IS_SLAP_INDEX( mask, SLAP_INDEX_PRESENT ) ) {
119                         *prefixp = presence_key;
120                         goto done;
121                 }
122                 break;
123
124         case LDAP_FILTER_APPROX:
125                 if ( desc->ad_type->sat_approx ) {
126                         if( IS_SLAP_INDEX( mask, SLAP_INDEX_APPROX ) ) {
127                                 goto done;
128                         }
129                         break;
130                 }
131
132                 /* Use EQUALITY rule and index for approximate match */
133                 /* fall thru */
134
135         case LDAP_FILTER_EQUALITY:
136                 if( IS_SLAP_INDEX( mask, SLAP_INDEX_EQUALITY ) ) {
137                         goto done;
138                 }
139                 break;
140
141         case LDAP_FILTER_SUBSTRINGS:
142                 if( IS_SLAP_INDEX( mask, SLAP_INDEX_SUBSTR ) ) {
143                         goto done;
144                 }
145                 break;
146
147         default:
148                 return LDAP_OTHER;
149         }
150
151         return LDAP_INAPPROPRIATE_MATCHING;
152
153 done:
154         *dbp = db;
155         *maskp = mask;
156         return LDAP_SUCCESS;
157 }
158
159 static int indexer(
160         Operation *op,
161         DB_TXN *txn,
162         AttributeDescription *ad,
163         struct berval *atname,
164         BerVarray vals,
165         ID id,
166         int opid,
167         slap_mask_t mask )
168 {
169         int rc, i;
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                                 rc = 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         int ixop = opid;
273         AttrInfo *ai = NULL;
274
275         if ( opid == BDB_INDEX_UPDATE_OP )
276                 ixop = SLAP_INDEX_ADD_OP;
277
278         if( type->sat_sup ) {
279                 /* recurse */
280                 rc = index_at_values( op, txn, NULL,
281                         type->sat_sup, tags,
282                         vals, id, opid );
283
284                 if( rc ) return rc;
285         }
286
287         /* If this type has no AD, we've never used it before */
288         if( type->sat_ad ) {
289                 ai = bdb_attr_mask( op->o_bd->be_private, type->sat_ad );
290                 if ( ai ) {
291 #ifdef LDAP_COMP_MATCH
292                         /* component indexing */
293                         if ( ai->ai_cr ) {
294                                 ComponentReference *cr;
295                                 for( cr = ai->ai_cr ; cr ; cr = cr->cr_next ) {
296                                         rc = indexer( op, txn, cr->cr_ad, &type->sat_cname,
297                                                 cr->cr_nvals, id, ixop,
298                                                 cr->cr_indexmask );
299                                 }
300                         }
301 #endif
302                         ad = type->sat_ad;
303                         /* If we're updating the index, just set the new bits that aren't
304                          * already in the old mask.
305                          */
306                         if ( opid == BDB_INDEX_UPDATE_OP )
307                                 mask = ai->ai_newmask & ~ai->ai_indexmask;
308                         else
309                         /* For regular updates, if there is a newmask use it. Otherwise
310                          * just use the old mask.
311                          */
312                                 mask = ai->ai_newmask ? ai->ai_newmask : ai->ai_indexmask;
313                         if( mask ) {
314                                 rc = indexer( op, txn, ad, &type->sat_cname,
315                                         vals, id, ixop, mask );
316
317                                 if( rc ) return rc;
318                         }
319                 }
320         }
321
322         if( tags->bv_len ) {
323                 AttributeDescription *desc;
324
325                 desc = ad_find_tags( type, tags );
326                 if( desc ) {
327                         ai = bdb_attr_mask( op->o_bd->be_private, desc );
328
329                         if( ai ) {
330                                 if ( opid == BDB_INDEX_UPDATE_OP )
331                                         mask = ai->ai_newmask & ~ai->ai_indexmask;
332                                 else
333                                         mask = ai->ai_newmask ? ai->ai_newmask : ai->ai_indexmask;
334                                 if ( mask ) {
335                                         rc = indexer( op, txn, desc, &desc->ad_cname,
336                                                 vals, id, ixop, mask );
337
338                                         if( rc ) {
339                                                 return rc;
340                                         }
341                                 }
342                         }
343                 }
344         }
345
346         return LDAP_SUCCESS;
347 }
348
349 int bdb_index_values(
350         Operation *op,
351         DB_TXN *txn,
352         AttributeDescription *desc,
353         BerVarray vals,
354         ID id,
355         int opid )
356 {
357         int rc;
358
359         /* Never index ID 0 */
360         if ( id == 0 )
361                 return 0;
362
363         rc = index_at_values( op, txn, desc,
364                 desc->ad_type, &desc->ad_tags,
365                 vals, id, opid );
366
367         return rc;
368 }
369
370 int
371 bdb_index_entry(
372         Operation *op,
373         DB_TXN *txn,
374         int opid,
375         Entry   *e )
376 {
377         int rc;
378         Attribute *ap = e->e_attrs;
379 #ifdef LDAP_COMP_MATCH
380         ComponentReference *cr_list = NULL;
381         ComponentReference *cr = NULL, *dupped_cr = NULL;
382         void* decoded_comp, *extracted_comp;
383         ComponentSyntaxInfo* csi_attr;
384         Syntax* syn;
385         AttributeType* at;
386         int i, num_attr;
387         void* mem_op;
388         struct berval value = {0};
389 #endif
390
391         Debug( LDAP_DEBUG_TRACE, "=> index_entry_%s( %ld, \"%s\" )\n",
392                 opid == SLAP_INDEX_DELETE_OP ? "del" : "add",
393                 (long) e->e_id, e->e_dn );
394
395         /* add each attribute to the indexes */
396         for ( ; ap != NULL; ap = ap->a_next ) {
397 #ifdef LDAP_COMP_MATCH
398                 AttrInfo *ai;
399                 /* see if attribute has components to be indexed */
400                 ai = bdb_attr_mask( op->o_bd->be_private, ap->a_desc->ad_type->sat_ad );
401                 if ( ai ) cr_list = ai->ai_cr;
402                 else cr_list = NULL;
403                 if ( attr_converter && cr_list ) {
404                         syn = ap->a_desc->ad_type->sat_syntax;
405                         ap->a_comp_data = op->o_tmpalloc( sizeof( ComponentData ), op->o_tmpmemctx );
406                         /* Memory chunk(nibble) pre-allocation for decoders */
407                         mem_op = nibble_mem_allocator ( 1024*16, 1024*4 );
408                         ap->a_comp_data->cd_mem_op = mem_op;
409                         for( cr = cr_list ; cr ; cr = cr->cr_next ) {
410                                 /* count how many values in an attribute */
411                                 for( num_attr=0; ap->a_vals[num_attr].bv_val != NULL; num_attr++ );
412                                 num_attr++;
413                                 cr->cr_nvals = (BerVarray)op->o_tmpalloc( sizeof( struct berval )*num_attr, op->o_tmpmemctx );
414                                 for( i=0; ap->a_vals[i].bv_val != NULL; i++ ) {
415                                         /* decoding attribute value */
416                                         decoded_comp = attr_converter ( ap, syn, &ap->a_vals[i] );
417                                         if ( !decoded_comp )
418                                                 return LDAP_DECODING_ERROR;
419                                         /* extracting the referenced component */
420                                         dupped_cr = dup_comp_ref( op, cr );
421                                         csi_attr = ((ComponentSyntaxInfo*)decoded_comp)->csi_comp_desc->cd_extract_i( mem_op, dupped_cr, decoded_comp );
422                                         if ( !csi_attr )
423                                                 return LDAP_DECODING_ERROR;
424                                         cr->cr_asn_type_id = csi_attr->csi_comp_desc->cd_type_id;
425                                         cr->cr_ad = (AttributeDescription*)get_component_description ( cr->cr_asn_type_id );
426                                         if ( !cr->cr_ad )
427                                                 return LDAP_INVALID_SYNTAX;
428                                         at = cr->cr_ad->ad_type;
429                                         /* encoding the value of component in GSER */
430                                         rc = component_encoder( mem_op, csi_attr, &value );
431                                         if ( rc != LDAP_SUCCESS )
432                                                 return LDAP_ENCODING_ERROR;
433                                         /* Normalize the encoded component values */
434                                         if ( at->sat_equality && at->sat_equality->smr_normalize ) {
435                                                 rc = at->sat_equality->smr_normalize (
436                                                         SLAP_MR_VALUE_OF_ATTRIBUTE_SYNTAX,
437                                                         at->sat_syntax, at->sat_equality,
438                                                         &value, &cr->cr_nvals[i], op->o_tmpmemctx );
439                                         } else {
440                                                 cr->cr_nvals[i] = value;
441                                         }
442                                 }
443                                 /* The end of BerVarray */
444                                 cr->cr_nvals[num_attr-1].bv_val = NULL;
445                                 cr->cr_nvals[num_attr-1].bv_len = 0;
446                         }
447                         op->o_tmpfree( ap->a_comp_data, op->o_tmpmemctx );
448                         nibble_mem_free ( mem_op );
449                         ap->a_comp_data = NULL;
450                 }
451 #endif
452                 rc = bdb_index_values( op, txn, ap->a_desc,
453                         ap->a_nvals, e->e_id, opid );
454
455                 if( rc != LDAP_SUCCESS ) {
456                         Debug( LDAP_DEBUG_TRACE,
457                                 "<= index_entry_%s( %ld, \"%s\" ) failure\n",
458                                 opid == SLAP_INDEX_ADD_OP ? "add" : "del",
459                                 (long) e->e_id, e->e_dn );
460                         return rc;
461                 }
462         }
463
464         Debug( LDAP_DEBUG_TRACE, "<= index_entry_%s( %ld, \"%s\" ) success\n",
465                 opid == SLAP_INDEX_DELETE_OP ? "del" : "add",
466                 (long) e->e_id, e->e_dn );
467
468         return LDAP_SUCCESS;
469 }