X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=servers%2Fslapd%2Fava.c;h=0864a9b9c5a6d37d689712ac005503b1ee033343;hb=4aa2a2869219880c9a76d9c0ae163a7ff7a51d4e;hp=1e10339cb2c98614de6d2b51b7f6ad665661721e;hpb=2a869f5a99f537b246ba8640502e2a86117cb6e8;p=openldap diff --git a/servers/slapd/ava.c b/servers/slapd/ava.c index 1e10339cb2..0864a9b9c5 100644 --- a/servers/slapd/ava.c +++ b/servers/slapd/ava.c @@ -1,3 +1,8 @@ +/* $OpenLDAP$ */ +/* + * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved. + * COPYING RESTRICTIONS APPLY, see COPYRIGHT file + */ /* ava.c - routines for dealing with attribute value assertions */ #include "portable.h" @@ -9,33 +14,66 @@ #include "slap.h" + +void +ava_free( + AttributeAssertion *ava, + int freeit +) +{ + free( ava->aa_value.bv_val ); + if ( freeit ) { + ch_free( (char *) ava ); + } +} + int get_ava( BerElement *ber, - Ava *ava + AttributeAssertion **ava, + unsigned usage, + const char **text ) { - if ( ber_scanf( ber, "{ao}", &ava->ava_type, &ava->ava_value ) - == LBER_ERROR ) { + int rc; + struct berval type, value; + AttributeAssertion *aa; + + rc = ber_scanf( ber, "{oo}", &type, &value ); + + if( rc == LBER_ERROR ) { +#ifdef NEW_LOGGING + LDAP_LOG(( "filter", LDAP_LEVEL_ERR, + "get_ava: ber_scanf failure\n" )); +#else Debug( LDAP_DEBUG_ANY, " get_ava ber_scanf\n", 0, 0, 0 ); - return( LDAP_PROTOCOL_ERROR ); +#endif + *text = "Error decoding attribute value assertion"; + return SLAPD_DISCONNECT; } - attr_normalize( ava->ava_type ); - value_normalize( ava->ava_value.bv_val, attr_syntax( ava->ava_type ) ); - return( 0 ); -} + aa = ch_malloc( sizeof( AttributeAssertion ) ); + aa->aa_desc = NULL; + aa->aa_value.bv_val = NULL; -void -ava_free( - Ava *ava, - int freeit -) -{ - free( (char *) ava->ava_type ); - free( (char *) ava->ava_value.bv_val ); - if ( freeit ) { - free( (char *) ava ); + rc = slap_bv2ad( &type, &aa->aa_desc, text ); + ch_free( type.bv_val ); + + if( rc != LDAP_SUCCESS ) { + ch_free( value.bv_val ); + ch_free( aa ); + return rc; } -} + rc = value_normalize( aa->aa_desc, usage, &value, &aa->aa_value, text ); + ch_free( value.bv_val ); + + if( rc != LDAP_SUCCESS ) { + ch_free( aa ); + return rc; + } + + *ava = aa; + + return LDAP_SUCCESS; +}