X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=servers%2Fslapd%2Fmra.c;h=87b4a47dda779fc9b6fd5d655690eeae8a9ea171;hb=7f54a89f32c34ec0e109ef3ca41c36545fe42b7c;hp=7373978c3946b745689b5335d36ca757782fe5af;hpb=ffcdc6d11d7e86260be64e47229ca75bc7b7ac20;p=openldap diff --git a/servers/slapd/mra.c b/servers/slapd/mra.c index 7373978c39..87b4a47dda 100644 --- a/servers/slapd/mra.c +++ b/servers/slapd/mra.c @@ -1,6 +1,6 @@ /* $OpenLDAP$ */ /* - * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved. + * Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved. * COPYING RESTRICTIONS APPLY, see COPYRIGHT file */ /* mra.c - routines for dealing with extensible matching rule assertions */ @@ -21,9 +21,10 @@ mra_free( int freeit ) { - ad_free( mra->ma_desc, 1 ); - ch_free( mra->ma_rule_text ); - ber_bvfree( mra->ma_value ); +#if 0 /* no longer a malloc'd string */ + ch_free( mra->ma_rule_text.bv_val ); +#endif + ch_free( mra->ma_value.bv_val ); if ( freeit ) { ch_free( (char *) mra ); } @@ -38,22 +39,23 @@ get_mra( { int rc, tag; ber_len_t length; - struct berval type, value, *nvalue; + struct berval type, value; MatchingRuleAssertion *ma; ma = ch_malloc( sizeof( MatchingRuleAssertion ) ); ma->ma_rule = NULL; - ma->ma_rule_text = NULL; + ma->ma_rule_text.bv_val = NULL; + ma->ma_rule_text.bv_len = 0; ma->ma_desc = NULL; ma->ma_dnattrs = 0; - ma->ma_value = NULL; + ma->ma_value.bv_val = NULL; rc = ber_scanf( ber, "{t", &tag ); if( rc == LBER_ERROR ) { #ifdef NEW_LOGGING - LDAP_LOG(( "operation", LDAP_LEVEL_ERR, - "get_mra: ber_scanf (\"{t\") failure\n" )); + LDAP_LOG(( "operation", LDAP_LEVEL_ERR, + "get_mra: ber_scanf (\"{t\") failure\n" )); #else Debug( LDAP_DEBUG_ANY, " get_mra ber_scanf\n", 0, 0, 0 ); #endif @@ -64,11 +66,11 @@ get_mra( } if ( tag == LDAP_FILTER_EXT_OID ) { - rc = ber_scanf( ber, "a", &ma->ma_rule_text ); + rc = ber_scanf( ber, "m", &ma->ma_rule_text ); if ( rc == LBER_ERROR ) { #ifdef NEW_LOGGING - LDAP_LOG(( "operation", LDAP_LEVEL_ERR, - "get_mra: ber_scanf(\"a\") failure.\n" )); + LDAP_LOG(( "operation", LDAP_LEVEL_ERR, + "get_mra: ber_scanf(\"o\") failure.\n" )); #else Debug( LDAP_DEBUG_ANY, " get_mra ber_scanf for mr\n", 0, 0, 0 ); #endif @@ -77,14 +79,14 @@ get_mra( mra_free( ma, 1 ); return SLAPD_DISCONNECT; } - ma->ma_rule = mr_find( ma->ma_rule_text ); + ma->ma_rule = mr_bvfind( &ma->ma_rule_text ); rc = ber_scanf( ber, "t", &tag ); if( rc == LBER_ERROR ) { #ifdef NEW_LOGGING - LDAP_LOG(( "operation", LDAP_LEVEL_ERR, - "get_mra: ber_scanf (\"t\") failure\n" )); + LDAP_LOG(( "operation", LDAP_LEVEL_ERR, + "get_mra: ber_scanf (\"t\") failure\n" )); #else Debug( LDAP_DEBUG_ANY, " get_mra ber_scanf\n", 0, 0, 0 ); #endif @@ -96,11 +98,11 @@ get_mra( } if ( tag == LDAP_FILTER_EXT_TYPE ) { - rc = ber_scanf( ber, "o", &type ); + rc = ber_scanf( ber, "m", &type ); if ( rc == LBER_ERROR ) { #ifdef NEW_LOGGING - LDAP_LOG(( "operation", LDAP_LEVEL_ERR, - "get_mra: ber_scanf (\"o\") failure.\n" )); + LDAP_LOG(( "operation", LDAP_LEVEL_ERR, + "get_mra: ber_scanf (\"o\") failure.\n" )); #else Debug( LDAP_DEBUG_ANY, " get_mra ber_scanf for ad\n", 0, 0, 0 ); #endif @@ -110,10 +112,8 @@ get_mra( } rc = slap_bv2ad( &type, &ma->ma_desc, text ); - ch_free( type.bv_val ); if( rc != LDAP_SUCCESS ) { - ch_free( value.bv_val ); mra_free( ma, 1 ); return rc; } @@ -122,8 +122,8 @@ get_mra( if( rc == LBER_ERROR ) { #ifdef NEW_LOGGING - LDAP_LOG(( "operation", LDAP_LEVEL_ERR, - "get_mra: ber_scanf (\"t\") failure.\n" )); + LDAP_LOG(( "operation", LDAP_LEVEL_ERR, + "get_mra: ber_scanf (\"t\") failure.\n" )); #else Debug( LDAP_DEBUG_ANY, " get_mra ber_scanf\n", 0, 0, 0 ); #endif @@ -136,8 +136,8 @@ get_mra( if ( tag != LDAP_FILTER_EXT_VALUE ) { #ifdef NEW_LOGGING - LDAP_LOG(( "operation", LDAP_LEVEL_ERR, - "get_mra: ber_scanf missing value\n" )); + LDAP_LOG(( "operation", LDAP_LEVEL_ERR, + "get_mra: ber_scanf missing value\n" )); #else Debug( LDAP_DEBUG_ANY, " get_mra ber_scanf missing value\n", 0, 0, 0 ); #endif @@ -147,12 +147,12 @@ get_mra( return SLAPD_DISCONNECT; } - rc = ber_scanf( ber, "o", &value ); + rc = ber_scanf( ber, "m", &value ); if( rc == LBER_ERROR ) { #ifdef NEW_LOGGING - LDAP_LOG(( "operation", LDAP_LEVEL_ERR, - "get_mra: ber_scanf (\"o\") failure.\n" )); + LDAP_LOG(( "operation", LDAP_LEVEL_ERR, + "get_mra: ber_scanf (\"o\") failure.\n" )); #else Debug( LDAP_DEBUG_ANY, " get_mra ber_scanf\n", 0, 0, 0 ); #endif @@ -166,16 +166,13 @@ get_mra( * OK, if no matching rule, normalize for equality, otherwise * normalize for the matching rule. */ - rc = value_normalize( ma->ma_desc, SLAP_MR_EQUALITY, &value, &nvalue, text ); - ch_free( value.bv_val ); + rc = value_normalize( ma->ma_desc, SLAP_MR_EQUALITY, &value, &ma->ma_value, text ); if( rc != LDAP_SUCCESS ) { mra_free( ma, 1 ); return rc; } - ma->ma_value = nvalue; - tag = ber_peek_tag( ber, &length ); if ( tag == LDAP_FILTER_EXT_DNATTRS ) { @@ -187,8 +184,8 @@ get_mra( if( rc == LBER_ERROR ) { #ifdef NEW_LOGGING - LDAP_LOG(( "operation", LDAP_LEVEL_ERR, - "get_mra: ber_scanf failure\n")); + LDAP_LOG(( "operation", LDAP_LEVEL_ERR, + "get_mra: ber_scanf failure\n")); #else Debug( LDAP_DEBUG_ANY, " get_mra ber_scanf\n", 0, 0, 0 ); #endif