]> git.sur5r.net Git - openldap/blob - servers/slapd/back-bdb/index.c
Move MSVC port to the Attic
[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 #ifdef NEW_LOGGING
179                 LDAP_LOG( INDEX, ERR, 
180                         "bdb_index_read: Could not open DB %s\n",
181                         atname->bv_val, 0, 0 );
182 #else
183                 Debug( LDAP_DEBUG_ANY,
184                         "bdb_index_read: Could not open DB %s\n",
185                         atname->bv_val, 0, 0 );
186 #endif
187                 return LDAP_OTHER;
188         }
189
190         if( IS_SLAP_INDEX( mask, SLAP_INDEX_PRESENT ) ) {
191                 rc = bdb_key_change( op->o_bd, db, txn, &presence_key, id, opid );
192                 if( rc ) {
193                         goto done;
194                 }
195         }
196
197         if( IS_SLAP_INDEX( mask, SLAP_INDEX_EQUALITY ) ) {
198                 rc = ad->ad_type->sat_equality->smr_indexer(
199                         LDAP_FILTER_EQUALITY,
200                         mask,
201                         ad->ad_type->sat_syntax,
202                         ad->ad_type->sat_equality,
203                         atname, vals, &keys, op->o_tmpmemctx );
204
205                 if( rc == LDAP_SUCCESS && keys != NULL ) {
206                         for( i=0; keys[i].bv_val != NULL; i++ ) {
207                                 rc = bdb_key_change( op->o_bd, db, txn, &keys[i], id, opid );
208                                 if( rc ) {
209                                         ber_bvarray_free_x( keys, op->o_tmpmemctx );
210                                         goto done;
211                                 }
212                         }
213                         ber_bvarray_free_x( keys, op->o_tmpmemctx );
214                 }
215                 rc = LDAP_SUCCESS;
216         }
217
218         if( IS_SLAP_INDEX( mask, SLAP_INDEX_APPROX ) ) {
219                 rc = ad->ad_type->sat_approx->smr_indexer(
220                         LDAP_FILTER_APPROX,
221                         mask,
222                         ad->ad_type->sat_syntax,
223                         ad->ad_type->sat_approx,
224                         atname, vals, &keys, op->o_tmpmemctx );
225
226                 if( rc == LDAP_SUCCESS && keys != NULL ) {
227                         for( i=0; keys[i].bv_val != NULL; i++ ) {
228                                 rc = bdb_key_change( op->o_bd, db, txn, &keys[i], id, opid );
229                                 if( rc ) {
230                                         ber_bvarray_free_x( keys, op->o_tmpmemctx );
231                                         goto done;
232                                 }
233                         }
234                         ber_bvarray_free_x( keys, op->o_tmpmemctx );
235                 }
236
237                 rc = LDAP_SUCCESS;
238         }
239
240         if( IS_SLAP_INDEX( mask, SLAP_INDEX_SUBSTR ) ) {
241                 rc = ad->ad_type->sat_substr->smr_indexer(
242                         LDAP_FILTER_SUBSTRINGS,
243                         mask,
244                         ad->ad_type->sat_syntax,
245                         ad->ad_type->sat_substr,
246                         atname, vals, &keys, op->o_tmpmemctx );
247
248                 if( rc == LDAP_SUCCESS && keys != NULL ) {
249                         for( i=0; keys[i].bv_val != NULL; i++ ) {
250                                 bdb_key_change( op->o_bd, db, txn, &keys[i], id, opid );
251                                 if( rc ) {
252                                         ber_bvarray_free_x( keys, op->o_tmpmemctx );
253                                         goto done;
254                                 }
255                         }
256                         ber_bvarray_free_x( keys, op->o_tmpmemctx );
257                 }
258
259                 rc = LDAP_SUCCESS;
260         }
261
262 done:
263         return rc;
264 }
265
266 static int index_at_values(
267         Operation *op,
268         DB_TXN *txn,
269         AttributeDescription *ad,
270         AttributeType *type,
271         struct berval *tags,
272         BerVarray vals,
273         ID id,
274         int opid )
275 {
276         int rc;
277         slap_mask_t mask = 0;
278
279         if( type->sat_sup ) {
280                 /* recurse */
281                 rc = index_at_values( op, txn, NULL,
282                         type->sat_sup, tags,
283                         vals, id, opid );
284
285                 if( rc ) return rc;
286         }
287
288         /* If this type has no AD, we've never used it before */
289         if( type->sat_ad ) {
290                 bdb_attr_mask( op->o_bd->be_private, type->sat_ad, &mask );
291                 ad = type->sat_ad;
292         }
293
294         if( mask ) {
295                 rc = indexer( op, txn, ad, &type->sat_cname,
296                         vals, id, opid,
297                         mask );
298
299                 if( rc ) return rc;
300         }
301
302         if( tags->bv_len ) {
303                 AttributeDescription *desc;
304
305                 mask = 0;
306
307                 desc = ad_find_tags( type, tags );
308                 if( desc ) {
309                         bdb_attr_mask( op->o_bd->be_private, desc, &mask );
310                 }
311
312                 if( mask ) {
313                         rc = indexer( op, txn, desc, &desc->ad_cname,
314                                 vals, id, opid,
315                                 mask );
316
317                         if( rc ) {
318                                 return rc;
319                         }
320                 }
321         }
322
323         return LDAP_SUCCESS;
324 }
325
326 int bdb_index_values(
327         Operation *op,
328         DB_TXN *txn,
329         AttributeDescription *desc,
330         BerVarray vals,
331         ID id,
332         int opid )
333 {
334         int rc;
335
336         rc = index_at_values( op, txn, desc,
337                 desc->ad_type, &desc->ad_tags,
338                 vals, id, opid );
339
340         return rc;
341 }
342
343 int
344 bdb_index_entry(
345         Operation *op,
346         DB_TXN *txn,
347         int opid,
348         Entry   *e )
349 {
350         int rc;
351         Attribute *ap = e->e_attrs;
352
353 #ifdef NEW_LOGGING
354         LDAP_LOG( INDEX, ENTRY, "index_entry: %s (%s) %ld\n",
355                 opid == SLAP_INDEX_ADD_OP ? "add" : "del", e->e_dn, (long) e->e_id );
356 #else
357         Debug( LDAP_DEBUG_TRACE, "=> index_entry_%s( %ld, \"%s\" )\n",
358                 opid == SLAP_INDEX_ADD_OP ? "add" : "del",
359                 (long) e->e_id, e->e_dn );
360 #endif
361
362         /* add each attribute to the indexes */
363         for ( ; ap != NULL; ap = ap->a_next ) {
364                 rc = bdb_index_values( op, txn, ap->a_desc,
365                         ap->a_nvals, e->e_id, opid );
366
367                 if( rc != LDAP_SUCCESS ) {
368 #ifdef NEW_LOGGING
369                         LDAP_LOG( INDEX, ENTRY, 
370                                 "index_entry: failure (%d)\n", rc, 0, 0 );
371 #else
372                         Debug( LDAP_DEBUG_TRACE,
373                                 "<= index_entry_%s( %ld, \"%s\" ) failure\n",
374                                 opid == SLAP_INDEX_ADD_OP ? "add" : "del",
375                                 (long) e->e_id, e->e_dn );
376 #endif
377                         return rc;
378                 }
379         }
380
381 #ifdef NEW_LOGGING
382         LDAP_LOG( INDEX, ENTRY, "index_entry: success\n", 0, 0, 0  );
383 #else
384         Debug( LDAP_DEBUG_TRACE, "<= index_entry_%s( %ld, \"%s\" ) success\n",
385                 opid == SLAP_INDEX_ADD_OP ? "add" : "del",
386                 (long) e->e_id, e->e_dn );
387 #endif
388
389         return LDAP_SUCCESS;
390 }