X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=servers%2Fslapd%2Fback-ldbm%2Findex.c;h=6cdec8db7ef9116ce0c61f6ef935fe55f7fda4db;hb=a4d161cff64c74e03e5898eae104d5d52cc54a91;hp=6c90a6f179e301d87a3d13e2fcb337408ccd99b2;hpb=f9195f9b6f9fc995fe120a9ff0fcd01d51fd0cc8;p=openldap diff --git a/servers/slapd/back-ldbm/index.c b/servers/slapd/back-ldbm/index.c index 6c90a6f179..6cdec8db7e 100644 --- a/servers/slapd/back-ldbm/index.c +++ b/servers/slapd/back-ldbm/index.c @@ -1,8 +1,17 @@ /* index.c - routines for dealing with attribute indexes */ /* $OpenLDAP$ */ -/* - * Copyright 1998-1999 The OpenLDAP Foundation, All Rights Reserved. - * COPYING RESTRICTIONS APPLY, see COPYRIGHT file +/* This work is part of OpenLDAP Software . + * + * Copyright 1998-2006 The OpenLDAP Foundation. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted only as authorized by the OpenLDAP + * Public License. + * + * A copy of this license is available in the file LICENSE in the + * top-level directory of the distribution or, alternatively, at + * . */ #include "portable.h" @@ -15,480 +24,304 @@ #include "slap.h" #include "back-ldbm.h" - -static int change_value(Backend *be, - DBCache *db, - char *type, - int indextype, - char *val, - ID id, - int - (*idl_func)(Backend *, DBCache *, Datum, ID)); -static int index2prefix(int indextype); - -int -index_add_entry( - Backend *be, - Entry *e -) +static slap_mask_t index_mask( + Backend *be, + AttributeDescription *desc, + char **dbname, + struct berval *atname ) { - Attribute *ap; - struct berval bv; - struct berval *bvals[2]; + AttributeType *at; + slap_mask_t mask = 0; - Debug( LDAP_DEBUG_TRACE, "=> index_add( %ld, \"%s\" )\n", e->e_id, - e->e_dn, 0 ); + attr_mask( be->be_private, desc, &mask ); - /* - * dn index entry - make it look like an attribute so it works - * with index_change_values() call - */ - - bv.bv_val = ch_strdup( e->e_ndn ); - bv.bv_len = strlen( bv.bv_val ); - bvals[0] = &bv; - bvals[1] = NULL; - - /* add the dn to the indexes */ - { - char *dn = ch_strdup("dn"); -#ifdef SLAPD_SCHEMA_NOT_COMPAT - /* not yet implemented */ -#else - index_change_values( be, dn, bvals, e->e_id, SLAP_INDEX_ADD_OP ); -#endif - free( dn ); + if( mask ) { + *atname = desc->ad_cname; + *dbname = desc->ad_cname.bv_val; + return mask; } - free( bv.bv_val ); - - /* add each attribute to the indexes */ - for ( ap = e->e_attrs; ap != NULL; ap = ap->a_next ) { -#ifdef SLAPD_SCHEMA_NOT_COMPAT - /* index_change_values( be, SLAP_INDEX_ADD_OP, e->e_id, ap ); */ -#else - index_change_values( be, ap->a_type, ap->a_vals, e->e_id, - SLAP_INDEX_ADD_OP ); -#endif - } - - Debug( LDAP_DEBUG_TRACE, "<= index_add( %ld, \"%s\" ) 0\n", e->e_id, - e->e_ndn, 0 ); - return( 0 ); -} - -int -index_add_mods( - Backend *be, - LDAPModList *ml, - ID id -) -{ - int rc; - - for ( ; ml != NULL; ml = ml->ml_next ) { - LDAPMod *mod = &ml->ml_mod; - - switch ( mod->mod_op & ~LDAP_MOD_BVALUES ) { - case LDAP_MOD_REPLACE: - /* XXX: Delete old index data==>problem when this - * gets called we lost values already! - */ - case LDAP_MOD_ADD: - rc = index_change_values( be, - mod->mod_type, - mod->mod_bvalues, - id, - SLAP_INDEX_ADD_OP ); - break; - case LDAP_MOD_DELETE: - rc = index_change_values( be, - mod->mod_type, - mod->mod_bvalues, - id, - SLAP_INDEX_DELETE_OP ); - break; - case LDAP_MOD_SOFTADD: /* SOFTADD means index was there */ - rc = 0; - break; + /* If there is a tagging option, did we ever index the base + * type? If so, check for mask, otherwise it's not there. + */ + if( slap_ad_is_tagged( desc ) && desc != desc->ad_type->sat_ad ) { + /* has tagging option */ + attr_mask( be->be_private, desc->ad_type->sat_ad, &mask ); + + if( mask && ( mask ^ SLAP_INDEX_NOTAGS ) ) { + *atname = desc->ad_type->sat_cname; + *dbname = desc->ad_type->sat_cname.bv_val; + return mask; } + } - if ( rc != 0 ) { - return( rc ); + /* see if supertype defined mask for its subtypes */ + for( at = desc->ad_type->sat_sup; at != NULL ; at = at->sat_sup ) { + /* If no AD, we've never indexed this type */ + if (!at->sat_ad) + continue; + + attr_mask( be->be_private, at->sat_ad, &mask ); + + if( mask && ( mask ^ SLAP_INDEX_NOSUBTYPES ) ) { + *atname = at->sat_cname; + *dbname = at->sat_cname.bv_val; + return mask; } } - return( 0 ); + return 0; } -ID_BLOCK * -index_read( - Backend *be, - char *type, - int indextype, - char *val -) +int index_is_indexed( + Backend *be, + AttributeDescription *desc ) { - DBCache *db; - Datum key; - ID_BLOCK *idl; - int indexmask; - char prefix; - char *realval, *tmpval; - char buf[BUFSIZ]; - - char *at_cn; - - ldbm_datum_init( key ); - - prefix = index2prefix( indextype ); - Debug( LDAP_DEBUG_TRACE, "=> index_read(\"%c%s\"->\"%s\")\n", - prefix, type, val ); - - attr_mask( be->be_private, type, &indexmask ); - if ( ! (indextype & indexmask) ) { - idl = idl_allids( be ); - Debug( LDAP_DEBUG_TRACE, - "<= index_read %ld candidates (allids - not indexed)\n", - idl ? ID_BLOCK_NIDS(idl) : 0, 0, 0 ); - return( idl ); - } - -#ifdef SLAPD_SCHEMA_NOT_COMPAT - at_cn = at_canonical_name( at_find( type ) ); -#else - attr_normalize( type ); - at_cn = at_canonical_name( type ); -#endif + slap_mask_t mask; + char *dbname; + struct berval prefix; - if ( at_cn == NULL ) { - Debug( LDAP_DEBUG_ANY, - "<= index_read no canonical name for type \"%s\"\n", - type != NULL ? type : "(NULL)", 0, 0 ); - return( NULL ); - } + mask = index_mask( be, desc, &dbname, &prefix ); - if ( (db = ldbm_cache_open( be, at_cn, LDBM_SUFFIX, LDBM_WRCREAT )) - == NULL ) { - Debug( LDAP_DEBUG_ANY, - "<= index_read NULL (could not open %s%s)\n", - at_cn, LDBM_SUFFIX, 0 ); - return( NULL ); + if( mask == 0 ) { + return LDAP_INAPPROPRIATE_MATCHING; } - realval = val; - tmpval = NULL; - if ( prefix != UNKNOWN_PREFIX ) { - unsigned int len = strlen( val ); - - if ( (len + 2) < sizeof(buf) ) { - realval = buf; - } else { - /* value + prefix + null */ - tmpval = (char *) ch_malloc( len + 2 ); - realval = tmpval; - } - - realval[0] = prefix; - strcpy( &realval[1], val ); - } - - key.dptr = realval; - key.dsize = strlen( realval ) + 1; - - idl = idl_fetch( be, db, key ); - if ( tmpval != NULL ) { - free( tmpval ); - } - - ldbm_cache_close( be, db ); - - Debug( LDAP_DEBUG_TRACE, "<= index_read %ld candidates\n", - idl ? ID_BLOCK_NIDS(idl) : 0, 0, 0 ); - return( idl ); + return LDAP_SUCCESS; } -/* Add or remove stuff from index files */ - -static int -change_value( - Backend *be, - DBCache *db, - char *type, - int indextype, - char *val, - ID id, - int (*idl_func)(Backend *, DBCache *, Datum, ID) -) +int index_param( + Backend *be, + AttributeDescription *desc, + int ftype, + char **dbnamep, + slap_mask_t *maskp, + struct berval *prefixp ) { - int rc; - Datum key; - char *tmpval = NULL; - char *realval = val; - char buf[BUFSIZ]; - - char prefix = index2prefix( indextype ); - - ldbm_datum_init( key ); - - Debug( LDAP_DEBUG_TRACE, - "=> change_value( \"%c%s\", op=%s )\n", - prefix, val, (idl_func == idl_insert_key ? "ADD":"DELETE") ); - - if ( prefix != UNKNOWN_PREFIX ) { - unsigned int len = strlen( val ); - - if ( (len + 2) < sizeof(buf) ) { - realval = buf; - } else { - /* value + prefix + null */ - tmpval = (char *) ch_malloc( len + 2 ); - realval = tmpval; - } - realval[0] = prefix; - strcpy( &realval[1], val ); - } + slap_mask_t mask; + char *dbname; - key.dptr = realval; - key.dsize = strlen( realval ) + 1; + mask = index_mask( be, desc, &dbname, prefixp ); - rc = idl_func( be, db, key, id ); - - if ( tmpval != NULL ) { - free( tmpval ); + if( mask == 0 ) { + return LDAP_INAPPROPRIATE_MATCHING; } - ldap_pvt_thread_yield(); - - Debug( LDAP_DEBUG_TRACE, "<= change_value %d\n", rc, 0, 0 ); + switch( ftype ) { + case LDAP_FILTER_PRESENT: + if( IS_SLAP_INDEX( mask, SLAP_INDEX_PRESENT ) ) { + goto done; + } + break; - return( rc ); + case LDAP_FILTER_APPROX: + if ( desc->ad_type->sat_approx ) { + if( IS_SLAP_INDEX( mask, SLAP_INDEX_APPROX ) ) { + goto done; + } + break; + } -}/* static int change_value() */ + /* Use EQUALITY rule and index for approximate match */ + /* fall thru */ + case LDAP_FILTER_EQUALITY: + if( IS_SLAP_INDEX( mask, SLAP_INDEX_EQUALITY ) ) { + goto done; + } + break; -int -index_change_values( - Backend *be, - char *type, - struct berval **vals, - ID id, - unsigned int op -) -{ - char *val, *p, *code, *w; - unsigned i, j, len; - int indexmask, syntax; - char buf[SUBLEN + 1]; - char vbuf[BUFSIZ]; - char *bigbuf; - DBCache *db; + case LDAP_FILTER_SUBSTRINGS: + if( IS_SLAP_INDEX( mask, SLAP_INDEX_SUBSTR ) ) { + goto done; + } + break; - int (*idl_funct)(Backend *, - DBCache *, - Datum, ID); - char *at_cn; /* Attribute canonical name */ - int mode; - - if( vals == NULL ) { - Debug( LDAP_DEBUG_TRACE, - "=> index_change_values( %s, NULL, %ld, op=%s )\n", - type, id, ((op == SLAP_INDEX_ADD_OP) ? "ADD" : "DELETE" ) ); - return 0; + default: + return LDAP_OTHER; } - Debug( LDAP_DEBUG_TRACE, - "=> index_change_values( \"%s\", %ld, op=%s )\n", - type, id, ((op == SLAP_INDEX_ADD_OP) ? "ADD" : "DELETE" ) ); + return LDAP_INAPPROPRIATE_MATCHING; - - if (op == SLAP_INDEX_ADD_OP) { - - /* Add values */ - - idl_funct = idl_insert_key; - mode = LDBM_WRCREAT; +done: + *dbnamep = dbname; + *maskp = mask; + return LDAP_SUCCESS; +} - } else { +static int indexer( + Operation *op, + char *dbname, + struct berval *atname, + BerVarray vals, + ID id, + int opid, + slap_mask_t mask ) +{ + int rc, i; + const char *text; + DBCache *db; + AttributeDescription *ad = NULL; + struct berval *keys; - /* Delete values */ + assert( mask ); - idl_funct = idl_delete_key; - mode = LDBM_WRITER; + rc = slap_bv2ad( atname, &ad, &text ); - } + if( rc != LDAP_SUCCESS ) return rc; - attr_normalize(type); - attr_mask( be->be_private, type, &indexmask ); + db = ldbm_cache_open( op->o_bd, dbname, LDBM_SUFFIX, LDBM_WRCREAT ); + + if ( db == NULL ) { + Debug( LDAP_DEBUG_ANY, + "<= index_read NULL (could not open %s%s)\n", + dbname, LDBM_SUFFIX, 0 ); - if ( indexmask == 0 ) { - return( 0 ); + return LDAP_OTHER; } -#ifdef SLAPD_SCHEMA_NOT_COMPAT - at_cn = at_canonical_name( at_find( type ) ); -#else - syntax = attr_syntax( type ); - at_cn = at_canonical_name( type ); -#endif - - if ( at_cn == NULL ) { - Debug( LDAP_DEBUG_ANY, - "<= index_change_values no canonical name for type \"%s\"\n", - type != NULL ? type : "(NULL)", 0, 0 ); - return( -1 ); + if( IS_SLAP_INDEX( mask, SLAP_INDEX_PRESENT ) ) { + key_change( op->o_bd, db, atname, id, opid ); } - if ( (db = ldbm_cache_open( be, at_cn, LDBM_SUFFIX, mode )) - == NULL ) { - Debug( LDAP_DEBUG_ANY, - "<= index_change_values (couldn't open(%s%s),md=%s)\n", - at_cn, LDBM_SUFFIX, - ((mode==LDBM_WRCREAT)?"LDBM_WRCREAT":"LDBM_WRITER") ); - return( -1 ); + if( IS_SLAP_INDEX( mask, SLAP_INDEX_EQUALITY ) ) { + rc = ad->ad_type->sat_equality->smr_indexer( + LDAP_FILTER_EQUALITY, + mask, + ad->ad_type->sat_syntax, + ad->ad_type->sat_equality, + atname, vals, &keys, op->o_tmpmemctx ); + + if( rc == LDAP_SUCCESS && keys != NULL ) { + for( i=0; keys[i].bv_val != NULL; i++ ) { + key_change( op->o_bd, db, &keys[i], id, opid ); + } + ber_bvarray_free_x( keys, op->o_tmpmemctx ); + } } - -#ifdef SLAPD_SCHEMA_NOT_COMPAT - /* not yet implemented */ -#else - for ( i = 0; vals[i] != NULL; i++ ) { - /* - * presence index entry - */ - if ( indexmask & SLAP_INDEX_PRESENCE ) { - - change_value( be, db, at_cn, SLAP_INDEX_PRESENCE, - "*", id, idl_funct ); - + if( IS_SLAP_INDEX( mask, SLAP_INDEX_APPROX ) ) { + rc = ad->ad_type->sat_approx->smr_indexer( + LDAP_FILTER_APPROX, + mask, + ad->ad_type->sat_syntax, + ad->ad_type->sat_approx, + atname, vals, &keys, op->o_tmpmemctx ); + + if( rc == LDAP_SUCCESS && keys != NULL ) { + for( i=0; keys[i].bv_val != NULL; i++ ) { + key_change( op->o_bd, db, &keys[i], id, opid ); + } + ber_bvarray_free_x( keys, op->o_tmpmemctx ); } + } - Debug( LDAP_DEBUG_TRACE, - "index_change_values syntax 0x%x syntax bin 0x%x\n", - syntax, SYNTAX_BIN, 0 ); - - if ( syntax & SYNTAX_BIN ) { - - ldbm_cache_close( be, db ); - return( 0 ); - + if( IS_SLAP_INDEX( mask, SLAP_INDEX_SUBSTR ) ) { + rc = ad->ad_type->sat_substr->smr_indexer( + LDAP_FILTER_SUBSTRINGS, + mask, + ad->ad_type->sat_syntax, + ad->ad_type->sat_substr, + atname, vals, &keys, op->o_tmpmemctx ); + + if( rc == LDAP_SUCCESS && keys != NULL ) { + for( i=0; keys[i].bv_val != NULL; i++ ) { + key_change( op->o_bd, db, &keys[i], id, opid ); + } + ber_bvarray_free_x( keys, op->o_tmpmemctx ); } + } - bigbuf = NULL; - len = vals[i]->bv_len; - - /* value + null */ - if ( len + 2 > sizeof(vbuf) ) { - bigbuf = (char *) ch_malloc( len + 1 ); - val = bigbuf; - } else { - val = vbuf; - } - (void) memcpy( val, vals[i]->bv_val, len ); - val[len] = '\0'; + ldbm_cache_close( op->o_bd, db ); - value_normalize( val, syntax ); + return LDAP_SUCCESS; +} - /* value_normalize could change the length of val */ - len = strlen( val ); +static int index_at_values( + Operation *op, + AttributeType *type, + struct berval *tags, + BerVarray vals, + ID id, + int opid ) +{ + slap_mask_t mask = 0; - /* - * equality index entry - */ - if ( indexmask & SLAP_INDEX_EQUALITY ) { - - change_value( be, db, at_cn, SLAP_INDEX_EQUALITY, - val, id, idl_funct); + if( type->sat_sup ) { + /* recurse */ + (void) index_at_values( op, + type->sat_sup, tags, + vals, id, opid ); + } - } + /* If this type has no AD, we've never used it before */ + if( type->sat_ad ) { + attr_mask( op->o_bd->be_private, type->sat_ad, &mask ); + } - /* - * approximate index entry - */ - if ( indexmask & SLAP_INDEX_APPROX ) { - for ( w = first_word( val ); w != NULL; - w = next_word( w ) ) { - if ( (code = phonetic( w )) != NULL ) { - change_value( be, - db, - at_cn, - SLAP_INDEX_APPROX, - code, - id, - idl_funct ); - free( code ); - } - } - } + if( mask ) { + indexer( op, type->sat_cname.bv_val, + &type->sat_cname, + vals, id, opid, + mask ); + } - /* - * substrings index entry - */ - if ( indexmask & SLAP_INDEX_SUB ) { - /* leading and trailing */ - if ( len > SUBLEN - 2 ) { - buf[0] = '^'; - for ( j = 0; j < SUBLEN - 1; j++ ) { - buf[j + 1] = val[j]; - } - buf[SUBLEN] = '\0'; - - change_value( be, db, at_cn, SLAP_INDEX_SUB, - buf, id, idl_funct ); - - p = val + len - SUBLEN + 1; - for ( j = 0; j < SUBLEN - 1; j++ ) { - buf[j] = p[j]; - } - buf[SUBLEN - 1] = '$'; - buf[SUBLEN] = '\0'; - - change_value( be, db, at_cn, SLAP_INDEX_SUB, - buf, id, idl_funct ); - } + if( tags->bv_len ) { + AttributeDescription *desc; - /* any */ - for ( p = val; p < (val + len - SUBLEN + 1); p++ ) { - for ( j = 0; j < SUBLEN; j++ ) { - buf[j] = p[j]; - } - buf[SUBLEN] = '\0'; + mask = 0; - change_value( be, db, at_cn, SLAP_INDEX_SUB, - buf, id, idl_funct ); - } + desc = ad_find_tags(type, tags); + if( desc ) { + attr_mask( op->o_bd->be_private, desc, &mask ); } - if ( bigbuf != NULL ) { - free( bigbuf ); + if( mask ) { + indexer( op, desc->ad_cname.bv_val, &desc->ad_cname, + vals, id, opid, + mask ); } } -#endif - ldbm_cache_close( be, db ); + return LDAP_SUCCESS; +} + +int index_values( + Operation *op, + AttributeDescription *desc, + BerVarray vals, + ID id, + int opid ) +{ + (void) index_at_values( op, + desc->ad_type, &desc->ad_tags, + vals, id, opid ); - return( 0 ); + return LDAP_SUCCESS; } -static int -index2prefix( int indextype ) +int +index_entry( + Operation *op, + int opid, + Entry *e ) { - int prefix; + Attribute *ap = e->e_attrs; + Debug( LDAP_DEBUG_TRACE, "=> index_entry_%s( %ld, \"%s\" )\n", + opid == SLAP_INDEX_ADD_OP ? "add" : "del", + e->e_id, e->e_dn ); - switch ( indextype ) { - case SLAP_INDEX_EQUALITY: - prefix = EQ_PREFIX; - break; - case SLAP_INDEX_APPROX: - prefix = APPROX_PREFIX; - break; - case SLAP_INDEX_SUB: - prefix = SUB_PREFIX; - break; - default: - prefix = UNKNOWN_PREFIX; - break; + /* add each attribute to the indexes */ + for ( ; ap != NULL; ap = ap->a_next ) { + index_values( op, ap->a_desc, + ap->a_nvals, + e->e_id, opid ); } - return( prefix ); + Debug( LDAP_DEBUG_TRACE, "<= index_entry_%s( %ld, \"%s\" ) success\n", + opid == SLAP_INDEX_ADD_OP ? "add" : "del", + e->e_id, e->e_dn ); + + return LDAP_SUCCESS; } +