1999-09-09 03:06:24 +08:00
|
|
|
/* $OpenLDAP$ */
|
1999-08-07 07:07:46 +08:00
|
|
|
/*
|
2003-01-04 04:20:47 +08:00
|
|
|
* Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
|
1999-08-07 07:07:46 +08:00
|
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
|
|
*/
|
1998-08-09 08:43:13 +08:00
|
|
|
/* ava.c - routines for dealing with attribute value assertions */
|
|
|
|
|
1998-10-25 09:41:42 +08:00
|
|
|
#include "portable.h"
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
#include <stdio.h>
|
1998-10-25 09:41:42 +08:00
|
|
|
|
|
|
|
#include <ac/string.h>
|
|
|
|
#include <ac/socket.h>
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
#include "slap.h"
|
|
|
|
|
2000-02-07 05:09:44 +08:00
|
|
|
|
|
|
|
void
|
|
|
|
ava_free(
|
|
|
|
AttributeAssertion *ava,
|
|
|
|
int freeit
|
|
|
|
)
|
|
|
|
{
|
2001-12-29 23:01:10 +08:00
|
|
|
free( ava->aa_value.bv_val );
|
2000-02-07 05:09:44 +08:00
|
|
|
if ( freeit ) {
|
|
|
|
ch_free( (char *) ava );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-05-16 02:46:03 +08:00
|
|
|
int
|
|
|
|
get_ava(
|
|
|
|
BerElement *ber,
|
2000-05-17 05:03:18 +08:00
|
|
|
AttributeAssertion **ava,
|
2000-05-18 04:08:13 +08:00
|
|
|
unsigned usage,
|
2000-05-22 11:46:57 +08:00
|
|
|
const char **text
|
2000-05-16 02:46:03 +08:00
|
|
|
)
|
|
|
|
{
|
|
|
|
int rc;
|
2002-04-03 02:40:04 +08:00
|
|
|
ber_tag_t rtag;
|
2001-12-29 23:01:10 +08:00
|
|
|
struct berval type, value;
|
2000-05-16 02:46:03 +08:00
|
|
|
AttributeAssertion *aa;
|
|
|
|
|
2002-04-03 02:40:04 +08:00
|
|
|
rtag = ber_scanf( ber, "{mm}", &type, &value );
|
2000-05-16 02:46:03 +08:00
|
|
|
|
2002-04-03 02:40:04 +08:00
|
|
|
if( rtag == LBER_ERROR ) {
|
2001-01-16 03:17:29 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( FILTER, ERR, "get_ava: ber_scanf failure\n", 0, 0, 0 );
|
2001-01-16 03:17:29 +08:00
|
|
|
#else
|
2000-05-16 02:46:03 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY, " get_ava ber_scanf\n", 0, 0, 0 );
|
2001-01-16 03:17:29 +08:00
|
|
|
#endif
|
2000-05-17 05:03:18 +08:00
|
|
|
*text = "Error decoding attribute value assertion";
|
2000-05-16 02:46:03 +08:00
|
|
|
return SLAPD_DISCONNECT;
|
|
|
|
}
|
|
|
|
|
|
|
|
aa = ch_malloc( sizeof( AttributeAssertion ) );
|
2000-05-17 04:50:49 +08:00
|
|
|
aa->aa_desc = NULL;
|
2001-12-29 23:01:10 +08:00
|
|
|
aa->aa_value.bv_val = NULL;
|
2000-05-16 02:46:03 +08:00
|
|
|
|
2000-05-17 05:03:18 +08:00
|
|
|
rc = slap_bv2ad( &type, &aa->aa_desc, text );
|
2000-05-16 02:46:03 +08:00
|
|
|
|
|
|
|
if( rc != LDAP_SUCCESS ) {
|
|
|
|
ch_free( aa );
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2002-03-02 02:52:45 +08:00
|
|
|
rc = value_validate_normalize( aa->aa_desc, usage,
|
|
|
|
&value, &aa->aa_value, text );
|
2000-05-18 04:08:13 +08:00
|
|
|
|
|
|
|
if( rc != LDAP_SUCCESS ) {
|
|
|
|
ch_free( aa );
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2000-05-17 04:50:49 +08:00
|
|
|
*ava = aa;
|
2000-05-16 02:46:03 +08:00
|
|
|
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|