mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-27 03:20:22 +08:00
870 lines
21 KiB
C
870 lines
21 KiB
C
/* component.c -- Component Filter Match Routines */
|
|
/* $OpenLDAP$ */
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
*
|
|
* Copyright 2003-2004 The OpenLDAP Foundation.
|
|
* Portions Copyright 2004 by IBM Corporation.
|
|
* 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>.
|
|
*/
|
|
|
|
#include "portable.h"
|
|
|
|
#include <ac/string.h>
|
|
#include <ac/socket.h>
|
|
|
|
#include "lutil.h"
|
|
#include <ldap.h>
|
|
#include "slap.h"
|
|
|
|
#ifdef LDAP_COMP_MATCH
|
|
|
|
#include "asn.h"
|
|
|
|
static int
|
|
peek_componentId_type( ComponentAssertionValue* cav );
|
|
|
|
static int
|
|
strip_cav_str( ComponentAssertionValue* cav, char* str);
|
|
|
|
static int
|
|
peek_cav_str( ComponentAssertionValue* cav, char* str );
|
|
|
|
static int
|
|
parse_comp_filter( Operation* op, ComponentAssertionValue* cav,
|
|
ComponentFilter** filt, const char** text );
|
|
|
|
static int
|
|
test_comp_filter_attr( Operation *op, Attribute *a, struct berval *bv,
|
|
ComponentFilter *f );
|
|
|
|
int
|
|
componentFilterValidate(
|
|
Syntax *syntax,
|
|
struct berval *val )
|
|
{
|
|
return LDAP_SUCCESS;
|
|
}
|
|
|
|
int
|
|
componentFilterMatch (
|
|
int *matchp,
|
|
slap_mask_t flags,
|
|
Syntax *syntax,
|
|
MatchingRule *mr,
|
|
struct berval *value,
|
|
void *assertedValue )
|
|
{
|
|
/* FIXME: to be implemented */
|
|
*matchp = 0;
|
|
return LDAP_SUCCESS;
|
|
}
|
|
|
|
|
|
static int
|
|
slapd_ber2cav( struct berval* bv, ComponentAssertionValue* cav)
|
|
{
|
|
int len;
|
|
|
|
len = ldap_pvt_filter_value_unescape( bv->bv_val );
|
|
cav->cav_ptr = cav->cav_buf = bv->bv_val;
|
|
cav->cav_end = bv->bv_val + len;
|
|
}
|
|
|
|
int
|
|
get_comp_filter ( Operation* op, struct berval* bv, ComponentFilter** filt,
|
|
const char **text )
|
|
{
|
|
ComponentAssertionValue cav;
|
|
int len, rc;
|
|
Debug( LDAP_DEBUG_FILTER, "get_comp_filter\n", 0, 0, 0 );
|
|
slapd_ber2cav(bv, &cav);
|
|
rc = parse_comp_filter( op, &cav, filt, text );
|
|
bv->bv_val = cav.cav_ptr;
|
|
return rc;
|
|
}
|
|
|
|
static void
|
|
eat_whsp( ComponentAssertionValue* cav )
|
|
{
|
|
while ( ( cav->cav_ptr <= cav->cav_end ) && ( *cav->cav_ptr == ' ' ) )
|
|
cav->cav_ptr++;
|
|
}
|
|
|
|
static int
|
|
cav_cur_len( ComponentAssertionValue* cav )
|
|
{
|
|
return cav->cav_end - cav->cav_ptr;
|
|
}
|
|
|
|
static ber_tag_t
|
|
comp_first_element( ComponentAssertionValue* cav )
|
|
{
|
|
eat_whsp( cav );
|
|
if ( cav_cur_len( cav ) >= 8 && strncmp( cav->cav_ptr, "item", 4 ) == 0 ) {
|
|
return LDAP_COMP_FILTER_ITEM;
|
|
}
|
|
else if ( cav_cur_len( cav ) >= 7 && strncmp( cav->cav_ptr, "and", 3 ) == 0 ) {
|
|
return LDAP_COMP_FILTER_AND;
|
|
}
|
|
else if ( cav_cur_len( cav ) >= 6 && strncmp( cav->cav_ptr, "or" , 2 ) == 0 ) {
|
|
return LDAP_COMP_FILTER_OR;
|
|
}
|
|
else if ( cav_cur_len( cav ) >= 7 && strncmp( cav->cav_ptr, "not", 3 ) == 0 ) {
|
|
return LDAP_COMP_FILTER_NOT;
|
|
}
|
|
else
|
|
return LDAP_COMP_FILTER_UNDEFINED;
|
|
}
|
|
|
|
static ber_tag_t
|
|
comp_next_element( ComponentAssertionValue* cav )
|
|
{
|
|
|
|
eat_whsp( cav );
|
|
if ( *(cav->cav_ptr) == ',' ) {
|
|
/* move pointer to the next CA */
|
|
cav->cav_ptr++;
|
|
return comp_first_element( cav );
|
|
}
|
|
else return LDAP_COMP_FILTER_UNDEFINED;
|
|
}
|
|
|
|
static int
|
|
get_comp_filter_list( Operation *op, ComponentAssertionValue *cav,
|
|
ComponentFilter** f, const char** text )
|
|
{
|
|
ComponentFilter **new;
|
|
int err;
|
|
ber_tag_t tag;
|
|
ber_len_t len;
|
|
char *last;
|
|
|
|
Debug( LDAP_DEBUG_FILTER, "get_comp_filter_list\n", 0, 0, 0 );
|
|
new = f;
|
|
for ( tag = comp_first_element( cav ); tag != LDAP_COMP_FILTER_UNDEFINED;
|
|
tag = comp_next_element( cav ) )
|
|
{
|
|
err = parse_comp_filter( op, cav, new, text );
|
|
if ( err != LDAP_SUCCESS )
|
|
return ( err );
|
|
new = &(*new)->cf_next;
|
|
}
|
|
*new = NULL;
|
|
|
|
|
|
return( LDAP_SUCCESS );
|
|
}
|
|
|
|
static int
|
|
get_componentId( Operation *op, ComponentAssertionValue* cav,
|
|
ComponentId ** cid, const char** text )
|
|
{
|
|
ber_tag_t type;
|
|
ComponentId _cid;
|
|
int len;
|
|
|
|
type = peek_componentId_type( cav );
|
|
|
|
Debug( LDAP_DEBUG_FILTER, "get_compId [%d]\n", type, 0, 0 );
|
|
len = 0;
|
|
_cid.ci_type = type;
|
|
_cid.ci_next = NULL;
|
|
switch ( type ) {
|
|
case LDAP_COMPREF_IDENTIFIER :
|
|
_cid.ci_val.ci_identifier.bv_val = cav->cav_ptr;
|
|
for( ;cav->cav_ptr[len] != ' ' && cav->cav_ptr[len] != '\0' &&
|
|
cav->cav_ptr[len] != '.' && cav->cav_ptr[len] != '\"' ; len++ );
|
|
_cid.ci_val.ci_identifier.bv_len = len;
|
|
cav->cav_ptr += len;
|
|
break;
|
|
case LDAP_COMPREF_FROM_BEGINNING :
|
|
for( ;cav->cav_ptr[len] != ' ' && cav->cav_ptr[len] != '\0' &&
|
|
cav->cav_ptr[len] != '.' && cav->cav_ptr[len] != '\"' ; len++ );
|
|
_cid.ci_val.ci_from_beginning = strtol( cav->cav_ptr, NULL, 0 );
|
|
cav->cav_ptr += len;
|
|
break;
|
|
case LDAP_COMPREF_FROM_END :
|
|
for( ;cav->cav_ptr[len] != ' ' && cav->cav_ptr[len] != '\0' &&
|
|
cav->cav_ptr[len] != '.' && cav->cav_ptr[len] != '\"' ; len++ );
|
|
_cid.ci_val.ci_from_end = strtol( cav->cav_ptr, NULL, 0 );
|
|
cav->cav_ptr += len;
|
|
break;
|
|
case LDAP_COMPREF_COUNT :
|
|
_cid.ci_val.ci_count = 0;
|
|
cav->cav_ptr++;
|
|
break;
|
|
case LDAP_COMPREF_CONTENT :
|
|
/* FIXEME: yet to be implemented */
|
|
break;
|
|
case LDAP_COMPREF_SELECT :
|
|
/* FIXEME: yet to be implemented */
|
|
break;
|
|
case LDAP_COMPREF_ALL :
|
|
_cid.ci_val.ci_all = '*';
|
|
cav->cav_ptr++;
|
|
Debug( LDAP_DEBUG_FILTER, "get_compId : ALL\n", 0, 0, 0 );
|
|
break;
|
|
default :
|
|
return LDAP_COMPREF_UNDEFINED;
|
|
}
|
|
|
|
*cid = op->o_tmpalloc( sizeof( ComponentId ), op->o_tmpmemctx );
|
|
**cid = _cid;
|
|
return LDAP_SUCCESS;
|
|
}
|
|
|
|
static int
|
|
peek_componentId_type( ComponentAssertionValue* cav )
|
|
{
|
|
eat_whsp( cav );
|
|
if ( cav->cav_ptr[0] == '-' )
|
|
return LDAP_COMPREF_FROM_END;
|
|
else if ( cav->cav_ptr[0] == '(' )
|
|
return LDAP_COMPREF_SELECT;
|
|
else if ( cav->cav_ptr[0] == '*' )
|
|
return LDAP_COMPREF_ALL;
|
|
else if ( cav->cav_ptr[0] == '0' )
|
|
return LDAP_COMPREF_COUNT;
|
|
else if ( cav->cav_ptr[0] > '0' && cav->cav_ptr[0] <= '9' )
|
|
return LDAP_COMPREF_FROM_BEGINNING;
|
|
else if ( (cav->cav_end - cav->cav_ptr) >= 7 &&
|
|
strncmp(cav->cav_ptr,"content",7) == 0 )
|
|
return LDAP_COMPREF_CONTENT;
|
|
else if ( cav->cav_ptr[0] >= 'a' && cav->cav_ptr[0] <= 'z' )
|
|
return LDAP_COMPREF_IDENTIFIER;
|
|
else
|
|
return LDAP_COMPREF_UNDEFINED;
|
|
}
|
|
|
|
static ber_tag_t
|
|
comp_next_id( ComponentAssertionValue* cav )
|
|
{
|
|
|
|
if ( *(cav->cav_ptr) == '.' ) {
|
|
cav->cav_ptr++;
|
|
return LDAP_COMPREF_DEFINED;
|
|
}
|
|
else return LDAP_COMPREF_UNDEFINED;
|
|
}
|
|
|
|
static int
|
|
get_component_reference( Operation *op, ComponentAssertionValue* cav,
|
|
ComponentReference** cr, const char** text )
|
|
{
|
|
int rc,count=0;
|
|
ber_int_t type;
|
|
ComponentReference* ca_comp_ref;
|
|
ComponentId** cr_list;
|
|
|
|
eat_whsp( cav );
|
|
ca_comp_ref =
|
|
op->o_tmpalloc( sizeof( ComponentReference ), op->o_tmpmemctx );
|
|
|
|
cr_list = &ca_comp_ref->cr_list;
|
|
strip_cav_str( cav, "\"");
|
|
for ( type = peek_componentId_type( cav ) ; type != LDAP_COMPREF_UNDEFINED
|
|
; type = comp_next_id( cav ), count++ ) {
|
|
rc = get_componentId( op, cav, cr_list, text );
|
|
if ( rc == LDAP_SUCCESS ) {
|
|
if ( count == 0 ) ca_comp_ref->cr_curr = ca_comp_ref->cr_list;
|
|
cr_list = &(*cr_list)->ci_next;
|
|
}
|
|
}
|
|
ca_comp_ref->cr_len = count;
|
|
strip_cav_str( cav, "\"");
|
|
|
|
if ( rc == LDAP_SUCCESS ) {
|
|
*cr = ca_comp_ref;
|
|
**cr = *ca_comp_ref;
|
|
}
|
|
else op->o_tmpfree( ca_comp_ref , op->o_tmpmemctx );
|
|
|
|
return rc;
|
|
}
|
|
|
|
static int
|
|
get_ca_use_default( Operation *op, ComponentAssertionValue* cav,
|
|
int* ca_use_def, const char** text )
|
|
{
|
|
int rc;
|
|
if ( peek_cav_str( cav, "useDefaultValues" ) == LDAP_SUCCESS ) {
|
|
strip_cav_str( cav, "useDefaultValues" );
|
|
if ( peek_cav_str( cav, "TRUE" ) == LDAP_SUCCESS ) {
|
|
strip_cav_str( cav, "TRUE" );
|
|
*ca_use_def = 1;
|
|
}
|
|
else if ( peek_cav_str( cav, "FALSE" ) == LDAP_SUCCESS ) {
|
|
strip_cav_str( cav, "FALSE" );
|
|
*ca_use_def = 0;
|
|
}
|
|
else
|
|
return LDAP_INVALID_SYNTAX;
|
|
}
|
|
else /* If not defined, default value is TRUE */
|
|
*ca_use_def = 1;
|
|
return LDAP_SUCCESS;
|
|
}
|
|
|
|
static int
|
|
get_matching_rule( Operation *op, ComponentAssertionValue* cav,
|
|
MatchingRule** mr, const char** text )
|
|
{
|
|
int count = 0;
|
|
char temp;
|
|
struct berval rule_text = { 0L, NULL };
|
|
|
|
eat_whsp( cav );
|
|
|
|
for ( ; ; count++ ) {
|
|
if ( cav->cav_ptr[count] == ' ' || cav->cav_ptr[count] == ',' ||
|
|
cav->cav_ptr[count] == '\0' || cav->cav_ptr[count] == '{' ||
|
|
cav->cav_ptr[count] == '}' || cav->cav_ptr[count] == '\n' )
|
|
break;
|
|
}
|
|
|
|
if ( count == 0 ) {
|
|
*text = "component matching rule not recognized";
|
|
return LDAP_INAPPROPRIATE_MATCHING;
|
|
}
|
|
|
|
rule_text.bv_len = count;
|
|
rule_text.bv_val = cav->cav_ptr;
|
|
*mr = mr_bvfind( &rule_text );
|
|
cav->cav_ptr += count;
|
|
Debug( LDAP_DEBUG_FILTER, "get_matching_rule: %s\n", (*mr)->smr_mrule.mr_oid, 0, 0 );
|
|
if ( *mr == NULL ) {
|
|
*text = "component matching rule not recognized";
|
|
return LDAP_INAPPROPRIATE_MATCHING;
|
|
}
|
|
return LDAP_SUCCESS;
|
|
}
|
|
|
|
static void
|
|
get_GSER_value( ComponentAssertionValue* cav, struct berval* bv )
|
|
{
|
|
int count;
|
|
|
|
eat_whsp( cav );
|
|
/*
|
|
* Four cases of GSER <Values>
|
|
* 1) "..." :
|
|
* StringVal, GeneralizedTimeVal, UTCTimeVal, ObjectDescriptorVal
|
|
* 2) '...'B or '...'H :
|
|
* BitStringVal, OctetStringVal
|
|
* 3) {...} :
|
|
* SEQUENCE, SEQUENCEOF, SETOF, SET, CHOICE
|
|
* 4) Between two white spaces
|
|
* INTEGER, BOOLEAN, NULL,ENUMERATE, etc
|
|
*/
|
|
|
|
if ( cav->cav_ptr[0] == '"' ) {
|
|
for( count = 0 ; ; count++ ) {
|
|
if ( cav->cav_ptr[count] == '\0' ||
|
|
( cav->cav_ptr[count] == '"' && cav->cav_ptr[count-1] != '"') )
|
|
break;
|
|
}
|
|
}
|
|
else if ( cav->cav_ptr[0] == '\'' ) {
|
|
for( count = 0 ; ; count++ ) {
|
|
if ( cav->cav_ptr[count] == '\0' ||
|
|
(cav->cav_ptr[count] == '\'' && cav->cav_ptr[count] == 'B')||
|
|
(cav->cav_ptr[count] == '\'' && cav->cav_ptr[count] == 'H') )
|
|
break;
|
|
}
|
|
|
|
}
|
|
else if ( cav->cav_ptr[0] == '{' ) {
|
|
for( count = 0 ; ; count++ ) {
|
|
if ( cav->cav_ptr[count] == '\0' ||
|
|
(cav->cav_ptr[count] == '}' && cav->cav_ptr[count] == ' ') )
|
|
break;
|
|
}
|
|
}
|
|
else {
|
|
for( count = 0 ; ; count++ ) {
|
|
if ( cav->cav_ptr[count] == ' ')
|
|
break;
|
|
}
|
|
}
|
|
|
|
bv->bv_val = cav->cav_ptr;
|
|
bv->bv_len = count;
|
|
cav->cav_ptr += count;
|
|
}
|
|
|
|
static int
|
|
get_matching_value( Operation *op, ComponentAssertion* ca,
|
|
ComponentAssertionValue* cav, struct berval* bv,
|
|
const char** text )
|
|
{
|
|
int count;
|
|
ber_tag_t tag;
|
|
|
|
if ( !(ca->ca_ma_rule->smr_usage & (SLAP_MR_COMPONENT)) ) {
|
|
get_GSER_value( cav, bv );
|
|
}
|
|
else {
|
|
/* embeded componentFilterMatch Description */
|
|
bv->bv_val = cav->cav_ptr;
|
|
bv->bv_len = cav_cur_len( cav );
|
|
}
|
|
|
|
return LDAP_SUCCESS;
|
|
}
|
|
|
|
/* Don't move the position pointer, just peek given string */
|
|
static int
|
|
peek_cav_str( ComponentAssertionValue* cav, char* str )
|
|
{
|
|
eat_whsp( cav );
|
|
if ( cav_cur_len( cav ) >= strlen( str ) &&
|
|
strncmp( cav->cav_ptr, str, strlen( str ) ) == 0 )
|
|
return LDAP_SUCCESS;
|
|
else
|
|
return LDAP_INVALID_SYNTAX;
|
|
}
|
|
|
|
static int
|
|
strip_cav_str( ComponentAssertionValue* cav, char* str)
|
|
{
|
|
eat_whsp( cav );
|
|
if ( cav_cur_len( cav ) >= strlen( str ) &&
|
|
strncmp( cav->cav_ptr, str, strlen( str ) ) == 0 ) {
|
|
cav->cav_ptr += strlen( str );
|
|
return LDAP_SUCCESS;
|
|
}
|
|
else
|
|
return LDAP_INVALID_SYNTAX;
|
|
}
|
|
|
|
/*
|
|
* TAG : "item", "and", "or", "not"
|
|
*/
|
|
static int
|
|
strip_cav_tag( ComponentAssertionValue* cav )
|
|
{
|
|
|
|
eat_whsp( cav );
|
|
if ( cav_cur_len( cav ) >= 8 && strncmp( cav->cav_ptr, "item", 4 ) == 0 ) {
|
|
strip_cav_str( cav , "item:" );
|
|
return LDAP_COMP_FILTER_ITEM;
|
|
}
|
|
else if ( cav_cur_len( cav ) >= 7 && strncmp( cav->cav_ptr, "and", 3 ) == 0 ) {
|
|
strip_cav_str( cav , "and:" );
|
|
return LDAP_COMP_FILTER_AND;
|
|
}
|
|
else if ( cav_cur_len( cav ) >= 6 && strncmp( cav->cav_ptr, "or" , 2 ) == 0 ) {
|
|
strip_cav_str( cav , "or:" );
|
|
return LDAP_COMP_FILTER_OR;
|
|
}
|
|
else if ( cav_cur_len( cav ) >= 7 && strncmp( cav->cav_ptr, "not", 3 ) == 0 ) {
|
|
strip_cav_str( cav , "not:" );
|
|
return LDAP_COMP_FILTER_NOT;
|
|
}
|
|
else
|
|
return LBER_ERROR;
|
|
}
|
|
|
|
/*
|
|
* when encoding, "item" is denotation of ComponentAssertion
|
|
* ComponentAssertion :: SEQUENCE {
|
|
* component ComponentReference (SIZE(1..MAX)) OPTIONAL,
|
|
* useDefaultValues BOOLEAN DEFAULT TRUE,
|
|
* rule MATCHING-RULE.&id,
|
|
* value MATCHING-RULE.&AssertionType }
|
|
*/
|
|
static int
|
|
get_item( Operation *op, ComponentAssertionValue* cav, ComponentAssertion** ca,
|
|
const char** text )
|
|
{
|
|
int rc;
|
|
ComponentAssertion* _ca;
|
|
|
|
Debug( LDAP_DEBUG_FILTER, "get_item: %s\n", 0, 0, 0 );
|
|
_ca = op->o_tmpalloc( sizeof( ComponentAssertion ), op->o_tmpmemctx );
|
|
|
|
rc = peek_cav_str( cav, "component" );
|
|
if ( rc == LDAP_SUCCESS ) {
|
|
strip_cav_str( cav, "component" );
|
|
rc = get_component_reference( op, cav, &_ca->ca_comp_ref, text );
|
|
if ( rc != LDAP_SUCCESS ) {
|
|
rc = LDAP_INVALID_SYNTAX;
|
|
op->o_tmpfree( _ca, op->o_tmpmemctx );
|
|
return rc;
|
|
}
|
|
}
|
|
|
|
strip_cav_str( cav,",");
|
|
rc = peek_cav_str( cav, "useDefaultValues");
|
|
if ( rc == LDAP_SUCCESS ) {
|
|
rc = get_ca_use_default( op, cav, &_ca->ca_use_def, text );
|
|
if ( rc != LDAP_SUCCESS ) {
|
|
rc = LDAP_INVALID_SYNTAX;
|
|
op->o_tmpfree( _ca, op->o_tmpmemctx );
|
|
return rc;
|
|
}
|
|
}
|
|
|
|
if ( !( strip_cav_str( cav, "rule" ) == LDAP_SUCCESS &&
|
|
get_matching_rule( op, cav , &_ca->ca_ma_rule, text ) == LDAP_SUCCESS )) {
|
|
rc = LDAP_INAPPROPRIATE_MATCHING;
|
|
op->o_tmpfree( _ca, op->o_tmpmemctx );
|
|
return rc;
|
|
}
|
|
|
|
strip_cav_str( cav,",");
|
|
if ( !(strip_cav_str( cav, "value" ) == LDAP_SUCCESS &&
|
|
get_matching_value( op, _ca, cav, &_ca->ca_ma_value,text ) == LDAP_SUCCESS )) {
|
|
rc = LDAP_INVALID_SYNTAX;
|
|
op->o_tmpfree( _ca, op->o_tmpmemctx );
|
|
return rc;
|
|
}
|
|
|
|
/* componentFilterMatch contains componentFilterMatch in it */
|
|
if ( _ca->ca_ma_rule->smr_usage & (SLAP_MR_COMPONENT) ) {
|
|
struct berval bv;
|
|
bv.bv_val = cav->cav_ptr;
|
|
bv.bv_len = cav_cur_len( cav );
|
|
rc = get_comp_filter( op, &bv,(ComponentFilter**)&_ca->ca_cf, text );
|
|
if ( rc != LDAP_SUCCESS ) {
|
|
op->o_tmpfree( _ca, op->o_tmpmemctx );
|
|
return rc;
|
|
}
|
|
cav->cav_ptr = bv.bv_val;
|
|
assert( cav->cav_end >= bv.bv_val );
|
|
}
|
|
|
|
*ca = _ca;
|
|
return LDAP_SUCCESS;
|
|
}
|
|
|
|
static int
|
|
parse_comp_filter( Operation* op, ComponentAssertionValue* cav,
|
|
ComponentFilter** filt, const char** text )
|
|
{
|
|
/*
|
|
* A component filter looks like this coming in:
|
|
* Filter ::= CHOICE {
|
|
* item [0] ComponentAssertion,
|
|
* and [1] SEQUENCE OF ComponentFilter,
|
|
* or [2] SEQUENCE OF ComponentFilter,
|
|
* not [3] ComponentFilter,
|
|
* }
|
|
*/
|
|
|
|
ber_tag_t tag;
|
|
ber_len_t len;
|
|
int err;
|
|
ComponentFilter f;
|
|
/* TAG : item, and, or, not in RFC 2254 */
|
|
tag = strip_cav_tag( cav );
|
|
|
|
if ( tag == LBER_ERROR ) {
|
|
*text = "error decoding comp filter";
|
|
return LDAP_PROTOCOL_ERROR;
|
|
}
|
|
|
|
if ( tag != LDAP_COMP_FILTER_NOT )
|
|
strip_cav_str( cav, "{");
|
|
|
|
err = LDAP_SUCCESS;
|
|
|
|
f.cf_next = NULL;
|
|
f.cf_choice = tag;
|
|
|
|
switch ( f.cf_choice ) {
|
|
case LDAP_COMP_FILTER_AND:
|
|
Debug( LDAP_DEBUG_FILTER, "LDAP_COMP_FILTER_AND\n", 0, 0, 0 );
|
|
err = get_comp_filter_list( op, cav, &f.cf_and, text );
|
|
if ( err != LDAP_SUCCESS ) {
|
|
break;
|
|
}
|
|
if ( f.cf_and == NULL ) {
|
|
f.cf_choice = SLAPD_FILTER_COMPUTED;
|
|
f.cf_result = LDAP_COMPARE_TRUE;
|
|
}
|
|
break;
|
|
|
|
case LDAP_COMP_FILTER_OR:
|
|
Debug( LDAP_DEBUG_FILTER, "LDAP_COMP_FILTER_OR\n", 0, 0, 0 );
|
|
err = get_comp_filter_list( op, cav, &f.cf_or, text );
|
|
if ( err != LDAP_SUCCESS ) {
|
|
break;
|
|
}
|
|
if ( f.cf_or == NULL ) {
|
|
f.cf_choice = SLAPD_FILTER_COMPUTED;
|
|
f.cf_result = LDAP_COMPARE_FALSE;
|
|
}
|
|
/* no assert - list could be empty */
|
|
break;
|
|
|
|
case LDAP_COMP_FILTER_NOT:
|
|
Debug( LDAP_DEBUG_FILTER, "LDAP_COMP_FILTER_NOT\n", 0, 0, 0 );
|
|
err = parse_comp_filter( op, cav, &f.cf_not, text );
|
|
if ( err != LDAP_SUCCESS ) {
|
|
break;
|
|
}
|
|
|
|
assert( f.cf_not != NULL );
|
|
if ( f.cf_not->cf_choice == SLAPD_FILTER_COMPUTED ) {
|
|
int fresult = f.cf_not->cf_result;
|
|
f.cf_choice = SLAPD_FILTER_COMPUTED;
|
|
op->o_tmpfree( f.cf_not, op->o_tmpmemctx );
|
|
f.cf_not = NULL;
|
|
|
|
switch ( fresult ) {
|
|
case LDAP_COMPARE_TRUE:
|
|
f.cf_result = LDAP_COMPARE_FALSE;
|
|
break;
|
|
case LDAP_COMPARE_FALSE:
|
|
f.cf_result = LDAP_COMPARE_TRUE;
|
|
break;
|
|
default: ;
|
|
/* (!Undefined) is Undefined */
|
|
}
|
|
}
|
|
break;
|
|
|
|
case LDAP_COMP_FILTER_ITEM:
|
|
Debug( LDAP_DEBUG_FILTER, "LDAP_COMP_FILTER_ITEM\n", 0, 0, 0 );
|
|
err = get_item( op, cav, &f.cf_ca, text );
|
|
if ( err != LDAP_SUCCESS ) {
|
|
break;
|
|
}
|
|
|
|
assert( f.cf_ca != NULL );
|
|
break;
|
|
|
|
default:
|
|
f.cf_choice = SLAPD_FILTER_COMPUTED;
|
|
f.cf_result = SLAPD_COMPARE_UNDEFINED;
|
|
break;
|
|
}
|
|
|
|
if ( tag != LDAP_COMP_FILTER_NOT )
|
|
strip_cav_str( cav, "}");
|
|
|
|
if ( err != LDAP_SUCCESS && err != SLAPD_DISCONNECT ) {
|
|
*text = NULL;
|
|
f.cf_choice = SLAPD_FILTER_COMPUTED;
|
|
f.cf_result = SLAPD_COMPARE_UNDEFINED;
|
|
err = LDAP_SUCCESS;
|
|
}
|
|
|
|
if ( err == LDAP_SUCCESS ) {
|
|
*filt = op->o_tmpalloc( sizeof(f), op->o_tmpmemctx );
|
|
**filt = f;
|
|
}
|
|
|
|
return( err );
|
|
}
|
|
|
|
static int
|
|
test_comp_filter_and(
|
|
Operation *op,
|
|
Attribute *a,
|
|
struct berval *bv,
|
|
ComponentFilter *flist )
|
|
{
|
|
ComponentFilter *f;
|
|
int rtn = LDAP_COMPARE_TRUE;
|
|
|
|
for ( f = flist ; f != NULL; f = f->cf_next ) {
|
|
int rc = test_comp_filter_attr( op, a, bv, f );
|
|
if ( rc == LDAP_COMPARE_FALSE ) {
|
|
rtn = rc;
|
|
break;
|
|
}
|
|
|
|
if ( rc != LDAP_COMPARE_TRUE ) {
|
|
rtn = rc;
|
|
}
|
|
}
|
|
|
|
return rtn;
|
|
}
|
|
|
|
static int
|
|
test_comp_filter_or(
|
|
Operation *op,
|
|
Attribute *a,
|
|
struct berval *bv,
|
|
ComponentFilter *flist )
|
|
{
|
|
ComponentFilter *f;
|
|
int rtn = LDAP_COMPARE_TRUE;
|
|
|
|
for ( f = flist ; f != NULL; f = f->cf_next ) {
|
|
int rc = test_comp_filter_attr( op, a, bv, f );
|
|
if ( rc == LDAP_COMPARE_TRUE ) {
|
|
rtn = rc;
|
|
break;
|
|
}
|
|
|
|
if ( rc != LDAP_COMPARE_FALSE ) {
|
|
rtn = rc;
|
|
}
|
|
}
|
|
|
|
return rtn;
|
|
}
|
|
|
|
/*
|
|
* Convert attribute value to C internal data structure
|
|
* This function has an associated ASN.1 type
|
|
* bv must contain the value for the type( type name is T1 )
|
|
* This function is linked to ssyn_attr2comp
|
|
*/
|
|
|
|
/*
|
|
* return codes : LDAP_COMPARE_TRUE, LDAP_COMPARE_FALSE
|
|
*/
|
|
static int
|
|
test_comp_filter_item(
|
|
Operation *op,
|
|
Attribute *a,
|
|
struct berval *bv,
|
|
ComponentAssertion *ca )
|
|
{
|
|
int rc = LDAP_COMPARE_TRUE;
|
|
int len;
|
|
ComponentSyntaxInfo* csi_attr, *csi_assert;
|
|
|
|
if ( (ca->ca_ma_rule->smr_usage & SLAP_MR_COMPONENT) && ca->ca_cf ) {
|
|
/* componentFilterMatch inside of componentFilterMatch */
|
|
rc = test_comp_filter_attr( op, a, bv, ca->ca_cf );
|
|
return rc;
|
|
}
|
|
|
|
assert( !(ca->ca_ma_rule->smr_usage & SLAP_MR_COMPONENT) );
|
|
/* FIXME : Return ALWAYS true */
|
|
return LDAP_COMPARE_TRUE;
|
|
}
|
|
|
|
/*
|
|
* If matched, LDAP_COMPARE_TRUE is returned
|
|
*/
|
|
int
|
|
test_comp_filter_entry(
|
|
Operation *op,
|
|
Entry *e,
|
|
MatchingRuleAssertion *mra )
|
|
{
|
|
Attribute *a;
|
|
void *memctx;
|
|
|
|
mra->ma_cf->cf_ca->ca_mra = mra;
|
|
|
|
Debug( LDAP_DEBUG_FILTER, "test_comp_filter_entry\n", 0, 0, 0 );
|
|
if ( mra->ma_desc ) {
|
|
/*
|
|
* ma_desc is available, so filtering for one attribute
|
|
* SEARCH permissionc can be checked directly
|
|
*/
|
|
if ( !access_allowed( op, e, mra->ma_desc,
|
|
&mra->ma_value, ACL_SEARCH, NULL ) )
|
|
{
|
|
return LDAP_INSUFFICIENT_ACCESS;
|
|
}
|
|
/* Find attributes that componentFilter Match can be applied to */
|
|
for( a=attrs_find( e->e_attrs, mra->ma_desc );
|
|
a != NULL ;
|
|
a = attrs_find( a->a_next, mra->ma_desc ) )
|
|
{
|
|
struct berval *bv = a->a_vals;
|
|
|
|
for ( ; bv->bv_val != NULL ; bv++ ) {
|
|
int ret, rc;
|
|
const char *text;
|
|
rc = test_comp_filter_attr( op, a, bv, mra->ma_cf );
|
|
if ( rc == LDAP_COMPARE_TRUE ) return rc;
|
|
}
|
|
}
|
|
|
|
} else {
|
|
/*
|
|
* No attribute description : test all
|
|
*/
|
|
for ( a = e->e_attrs; a != NULL; a = a->a_next ) {
|
|
struct berval *bv, value;
|
|
const char *text = NULL;
|
|
int rc;
|
|
|
|
/* check if matching is appropriate */
|
|
if ( !mr_usable_with_at( mra->ma_rule, a->a_desc->ad_type
|
|
)) {
|
|
continue;
|
|
}
|
|
|
|
/* check search access */
|
|
if ( !access_allowed( op, e,
|
|
a->a_desc, &value, ACL_SEARCH, NULL ) ) {
|
|
continue;
|
|
}
|
|
|
|
bv = a->a_vals;
|
|
|
|
for ( ; bv->bv_val != NULL ; bv++ ) {
|
|
int ret, rc;
|
|
const char *text;
|
|
rc = test_comp_filter_attr( op, a, bv, mra->ma_cf );
|
|
if ( rc == LDAP_COMPARE_TRUE ) break;
|
|
}
|
|
if ( rc != LDAP_SUCCESS ) return rc;
|
|
}
|
|
}
|
|
|
|
return LDAP_COMPARE_FALSE;
|
|
}
|
|
|
|
static int
|
|
test_comp_filter_attr(
|
|
Operation *op,
|
|
Attribute *a,
|
|
struct berval *bv,
|
|
ComponentFilter *f )
|
|
{
|
|
int rc;
|
|
|
|
Debug( LDAP_DEBUG_FILTER, "test_comp_filter_attr\n", 0, 0, 0 );
|
|
switch ( f->cf_choice ) {
|
|
case SLAPD_FILTER_COMPUTED:
|
|
rc = f->cf_result;
|
|
break;
|
|
case LDAP_COMP_FILTER_AND:
|
|
rc = test_comp_filter_and( op, a, bv, f->cf_and );
|
|
break;
|
|
case LDAP_COMP_FILTER_OR:
|
|
rc = test_comp_filter_or( op, a, bv, f->cf_or );
|
|
break;
|
|
case LDAP_COMP_FILTER_NOT:
|
|
rc = test_comp_filter_attr( op, a, bv, f->cf_not );
|
|
|
|
switch ( rc ) {
|
|
case LDAP_COMPARE_TRUE:
|
|
rc = LDAP_COMPARE_FALSE;
|
|
break;
|
|
case LDAP_COMPARE_FALSE:
|
|
rc = LDAP_COMPARE_TRUE;
|
|
break;
|
|
}
|
|
break;
|
|
case LDAP_COMP_FILTER_ITEM:
|
|
rc = test_comp_filter_item( op, a, bv, f->cf_ca );
|
|
break;
|
|
default:
|
|
rc = LDAP_PROTOCOL_ERROR;
|
|
}
|
|
|
|
return( rc );
|
|
}
|
|
#endif
|