2003-11-27 09:17:14 +08:00
|
|
|
/* ava.c - routines for dealing with attribute value assertions */
|
1999-09-09 03:06:24 +08:00
|
|
|
/* $OpenLDAP$ */
|
2003-11-27 09:17:14 +08:00
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
*
|
2020-01-10 00:50:21 +08:00
|
|
|
* Copyright 1998-2020 The OpenLDAP Foundation.
|
2003-11-27 09:17:14 +08:00
|
|
|
* 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
|
|
|
|
* <http://www.OpenLDAP.org/license.html>.
|
|
|
|
*/
|
|
|
|
/* Portions Copyright (c) 1995 Regents of the University of Michigan.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms are permitted
|
|
|
|
* provided that this notice is preserved and that due credit is given
|
|
|
|
* to the University of Michigan at Ann Arbor. The name of the University
|
|
|
|
* may not be used to endorse or promote products derived from this
|
|
|
|
* software without specific prior written permission. This software
|
|
|
|
* is provided ``as is'' without express or implied warranty.
|
1999-08-07 07:07:46 +08:00
|
|
|
*/
|
1998-08-09 08:43:13 +08:00
|
|
|
|
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"
|
|
|
|
|
2005-02-15 13:24:48 +08:00
|
|
|
#ifdef LDAP_COMP_MATCH
|
|
|
|
#include "component.h"
|
|
|
|
#endif
|
2000-02-07 05:09:44 +08:00
|
|
|
|
|
|
|
void
|
|
|
|
ava_free(
|
2003-04-10 00:52:03 +08:00
|
|
|
Operation *op,
|
|
|
|
AttributeAssertion *ava,
|
2004-05-20 03:39:40 +08:00
|
|
|
int freeit )
|
2000-02-07 05:09:44 +08:00
|
|
|
{
|
2005-03-29 08:12:05 +08:00
|
|
|
#ifdef LDAP_COMP_MATCH
|
|
|
|
if ( ava->aa_cf && ava->aa_cf->cf_ca->ca_comp_data.cd_mem_op )
|
|
|
|
nibble_mem_free ( ava->aa_cf->cf_ca->ca_comp_data.cd_mem_op );
|
|
|
|
#endif
|
2003-04-11 09:29:28 +08:00
|
|
|
op->o_tmpfree( ava->aa_value.bv_val, op->o_tmpmemctx );
|
2006-12-26 12:51:08 +08:00
|
|
|
if ( ava->aa_desc->ad_flags & SLAP_DESC_TEMPORARY )
|
|
|
|
op->o_tmpfree( ava->aa_desc, op->o_tmpmemctx );
|
2004-05-20 03:39:40 +08:00
|
|
|
if ( freeit ) op->o_tmpfree( (char *) ava, op->o_tmpmemctx );
|
2000-02-07 05:09:44 +08:00
|
|
|
}
|
|
|
|
|
2000-05-16 02:46:03 +08:00
|
|
|
int
|
|
|
|
get_ava(
|
2003-04-10 00:52:03 +08:00
|
|
|
Operation *op,
|
|
|
|
BerElement *ber,
|
2006-12-26 07:30:45 +08:00
|
|
|
Filter *f,
|
2000-05-18 04:08:13 +08:00
|
|
|
unsigned usage,
|
2004-04-08 14:49:17 +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;
|
2005-02-15 13:24:48 +08:00
|
|
|
#ifdef LDAP_COMP_MATCH
|
|
|
|
AttributeAliasing* a_alias = NULL;
|
|
|
|
#endif
|
2000-05-16 02:46:03 +08:00
|
|
|
|
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 ) {
|
2019-02-16 00:49:52 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY, " get_ava ber_scanf\n" );
|
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;
|
|
|
|
}
|
|
|
|
|
2003-04-10 00:52:03 +08:00
|
|
|
aa = op->o_tmpalloc( sizeof( AttributeAssertion ), op->o_tmpmemctx );
|
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;
|
2005-02-15 13:24:48 +08:00
|
|
|
#ifdef LDAP_COMP_MATCH
|
|
|
|
aa->aa_cf = NULL;
|
|
|
|
#endif
|
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 ) {
|
2006-12-26 07:30:45 +08:00
|
|
|
f->f_choice |= SLAPD_FILTER_UNDEFINED;
|
|
|
|
*text = NULL;
|
2006-12-26 12:51:08 +08:00
|
|
|
rc = slap_bv2undef_ad( &type, &aa->aa_desc, text,
|
|
|
|
SLAP_AD_PROXIED|SLAP_AD_NOINSERT );
|
2005-08-26 05:14:26 +08:00
|
|
|
|
|
|
|
if( rc != LDAP_SUCCESS ) {
|
|
|
|
Debug( LDAP_DEBUG_FILTER,
|
2019-02-16 00:49:52 +08:00
|
|
|
"get_ava: unknown attributeType %s\n", type.bv_val );
|
2006-12-26 12:51:08 +08:00
|
|
|
aa->aa_desc = slap_bv2tmp_ad( &type, op->o_tmpmemctx );
|
|
|
|
ber_dupbv_x( &aa->aa_value, &value, op->o_tmpmemctx );
|
|
|
|
f->f_ava = aa;
|
2011-02-01 05:33:54 +08:00
|
|
|
return LDAP_SUCCESS;
|
2005-08-26 05:14:26 +08:00
|
|
|
}
|
2000-05-16 02:46:03 +08:00
|
|
|
}
|
|
|
|
|
2003-02-27 09:54:43 +08:00
|
|
|
rc = asserted_value_validate_normalize(
|
|
|
|
aa->aa_desc, ad_mr(aa->aa_desc, usage),
|
2003-04-11 09:29:28 +08:00
|
|
|
usage, &value, &aa->aa_value, text, op->o_tmpmemctx );
|
2000-05-18 04:08:13 +08:00
|
|
|
|
|
|
|
if( rc != LDAP_SUCCESS ) {
|
2006-12-26 07:30:45 +08:00
|
|
|
f->f_choice |= SLAPD_FILTER_UNDEFINED;
|
2003-12-04 09:10:02 +08:00
|
|
|
Debug( LDAP_DEBUG_FILTER,
|
2019-02-16 00:49:52 +08:00
|
|
|
"get_ava: illegal value for attributeType %s\n", type.bv_val );
|
2006-12-26 07:30:45 +08:00
|
|
|
ber_dupbv_x( &aa->aa_value, &value, op->o_tmpmemctx );
|
2008-09-06 08:00:37 +08:00
|
|
|
*text = NULL;
|
2006-12-26 07:30:45 +08:00
|
|
|
rc = LDAP_SUCCESS;
|
2000-05-18 04:08:13 +08:00
|
|
|
}
|
|
|
|
|
2005-02-15 13:24:48 +08:00
|
|
|
#ifdef LDAP_COMP_MATCH
|
|
|
|
if( is_aliased_attribute ) {
|
|
|
|
a_alias = is_aliased_attribute ( aa->aa_desc );
|
|
|
|
if ( a_alias ) {
|
|
|
|
rc = get_aliased_filter_aa ( op, aa, a_alias, text );
|
|
|
|
if( rc != LDAP_SUCCESS ) {
|
|
|
|
Debug( LDAP_DEBUG_FILTER,
|
2019-02-16 00:49:52 +08:00
|
|
|
"get_ava: Invalid Attribute Aliasing\n" );
|
2005-02-15 13:24:48 +08:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2006-12-26 07:30:45 +08:00
|
|
|
f->f_ava = aa;
|
2000-05-16 02:46:03 +08:00
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|