openldap/servers/slapd/filter.c

521 lines
12 KiB
C
Raw Normal View History

1998-08-08 20:43:13 -04:00
/* filter.c - routines for parsing and dealing with filters */
/* $OpenLDAP$ */
1999-08-06 19:07:46 -04:00
/*
* Copyright 1998-1999 The OpenLDAP Foundation, All Rights Reserved.
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
*/
1998-08-08 20:43:13 -04:00
1998-10-24 21:41:42 -04:00
#include "portable.h"
1998-08-08 20:43:13 -04:00
#include <stdio.h>
1998-10-24 21:41:42 -04:00
#include <ac/socket.h>
#include <ac/string.h>
1998-08-08 20:43:13 -04:00
#include "slap.h"
static int get_filter_list(Connection *conn, BerElement *ber, Filter **f, char **fstr);
static int get_substring_filter(Connection *conn, BerElement *ber, Filter *f, char **fstr);
1998-08-08 20:43:13 -04:00
int
get_filter( Connection *conn, BerElement *ber, Filter **filt, char **fstr )
{
ber_len_t len;
1998-08-08 20:43:13 -04:00
int err;
Filter *f;
char *ftmp;
Debug( LDAP_DEBUG_FILTER, "begin get_filter\n", 0, 0, 0 );
/*
* A filter looks like this coming in:
* Filter ::= CHOICE {
* and [0] SET OF Filter,
* or [1] SET OF Filter,
* not [2] Filter,
* equalityMatch [3] AttributeValueAssertion,
* substrings [4] SubstringFilter,
* greaterOrEqual [5] AttributeValueAssertion,
* lessOrEqual [6] AttributeValueAssertion,
* present [7] AttributeType,,
* approxMatch [8] AttributeValueAssertion
* extensibleMatch [9] MatchingRuleAssertion
1998-08-08 20:43:13 -04:00
* }
*
* SubstringFilter ::= SEQUENCE {
* type AttributeType,
* SEQUENCE OF CHOICE {
* initial [0] IA5String,
* any [1] IA5String,
* final [2] IA5String
* }
* }
*
* MatchingRuleAssertion ::= SEQUENCE {
* matchingRule [1] MatchingRuleId OPTIONAL,
* type [2] AttributeDescription OPTIONAL,
* matchValue [3] AssertionValue,
* dnAttributes [4] BOOLEAN DEFAULT FALSE
* }
*
1998-08-08 20:43:13 -04:00
*/
f = (Filter *) ch_malloc( sizeof(Filter) );
f->f_next = NULL;
err = LDAP_SUCCESS;
1998-08-08 20:43:13 -04:00
*fstr = NULL;
f->f_choice = ber_peek_tag( ber, &len );
1998-08-08 20:43:13 -04:00
switch ( f->f_choice ) {
#ifndef SLAPD_SCHEMA_NOT_COMPAT
1998-08-08 20:43:13 -04:00
case LDAP_FILTER_EQUALITY:
Debug( LDAP_DEBUG_FILTER, "EQUALITY\n", 0, 0, 0 );
if ( (err = get_ava( ber, &f->f_ava )) == LDAP_SUCCESS ) {
1998-08-08 20:43:13 -04:00
*fstr = ch_malloc(4 + strlen( f->f_avtype ) +
f->f_avvalue.bv_len);
sprintf( *fstr, "(%s=%s)", f->f_avtype,
f->f_avvalue.bv_val );
}
break;
case LDAP_FILTER_SUBSTRINGS:
Debug( LDAP_DEBUG_FILTER, "SUBSTRINGS\n", 0, 0, 0 );
err = get_substring_filter( conn, ber, f, fstr );
break;
case LDAP_FILTER_GE:
Debug( LDAP_DEBUG_FILTER, "GE\n", 0, 0, 0 );
if ( (err = get_ava( ber, &f->f_ava )) == LDAP_SUCCESS ) {
1998-08-08 20:43:13 -04:00
*fstr = ch_malloc(5 + strlen( f->f_avtype ) +
f->f_avvalue.bv_len);
sprintf( *fstr, "(%s>=%s)", f->f_avtype,
f->f_avvalue.bv_val );
}
break;
case LDAP_FILTER_LE:
Debug( LDAP_DEBUG_FILTER, "LE\n", 0, 0, 0 );
if ( (err = get_ava( ber, &f->f_ava )) == LDAP_SUCCESS ) {
1998-08-08 20:43:13 -04:00
*fstr = ch_malloc(5 + strlen( f->f_avtype ) +
f->f_avvalue.bv_len);
sprintf( *fstr, "(%s<=%s)", f->f_avtype,
f->f_avvalue.bv_val );
}
break;
case LDAP_FILTER_PRESENT:
Debug( LDAP_DEBUG_FILTER, "PRESENT\n", 0, 0, 0 );
if ( ber_scanf( ber, "a", &f->f_type ) == LBER_ERROR ) {
err = -1;
1998-08-08 20:43:13 -04:00
} else {
err = LDAP_SUCCESS;
attr_normalize( f->f_type );
*fstr = ch_malloc( 5 + strlen( f->f_type ) );
sprintf( *fstr, "(%s=*)", f->f_type );
}
break;
case LDAP_FILTER_APPROX:
Debug( LDAP_DEBUG_FILTER, "APPROX\n", 0, 0, 0 );
if ( (err = get_ava( ber, &f->f_ava )) == LDAP_SUCCESS ) {
1998-08-08 20:43:13 -04:00
*fstr = ch_malloc(5 + strlen( f->f_avtype ) +
f->f_avvalue.bv_len);
sprintf( *fstr, "(%s~=%s)", f->f_avtype,
f->f_avvalue.bv_val );
}
break;
#endif
1998-08-08 20:43:13 -04:00
case LDAP_FILTER_AND:
Debug( LDAP_DEBUG_FILTER, "AND\n", 0, 0, 0 );
if ( (err = get_filter_list( conn, ber, &f->f_and, &ftmp ))
== LDAP_SUCCESS ) {
if (ftmp == NULL) ftmp = ch_strdup("");
1998-08-08 20:43:13 -04:00
*fstr = ch_malloc( 4 + strlen( ftmp ) );
sprintf( *fstr, "(&%s)", ftmp );
free( ftmp );
}
break;
case LDAP_FILTER_OR:
Debug( LDAP_DEBUG_FILTER, "OR\n", 0, 0, 0 );
if ( (err = get_filter_list( conn, ber, &f->f_or, &ftmp ))
== LDAP_SUCCESS ) {
if (ftmp == NULL) ftmp = ch_strdup("");
1998-08-08 20:43:13 -04:00
*fstr = ch_malloc( 4 + strlen( ftmp ) );
sprintf( *fstr, "(|%s)", ftmp );
free( ftmp );
}
break;
case LDAP_FILTER_NOT:
Debug( LDAP_DEBUG_FILTER, "NOT\n", 0, 0, 0 );
(void) ber_skip_tag( ber, &len );
if ( (err = get_filter( conn, ber, &f->f_not, &ftmp )) == LDAP_SUCCESS ) {
if (ftmp == NULL) ftmp = ch_strdup("");
1998-08-08 20:43:13 -04:00
*fstr = ch_malloc( 4 + strlen( ftmp ) );
sprintf( *fstr, "(!%s)", ftmp );
free( ftmp );
}
break;
case LDAP_FILTER_EXT:
/* not yet implemented */
Debug( LDAP_DEBUG_ANY, "extensible match not yet implemented.\n",
f->f_choice, 0, 0 );
err = -1;
break;
case LBER_DEFAULT:
Debug( LDAP_DEBUG_ANY, "decoding filter error\n",
0, 0, 0 );
err = -1;
break;
1998-08-08 20:43:13 -04:00
default:
Debug( LDAP_DEBUG_ANY, "unknown filter type %lu\n",
f->f_choice, 0, 0 );
1998-08-08 20:43:13 -04:00
err = LDAP_PROTOCOL_ERROR;
break;
}
if ( err != LDAP_SUCCESS ) {
1998-08-08 20:43:13 -04:00
free( (char *) f );
if ( *fstr != NULL ) {
free( *fstr );
}
1999-02-03 00:51:42 -05:00
} else {
*filt = f;
1998-08-08 20:43:13 -04:00
}
Debug( LDAP_DEBUG_FILTER, "end get_filter %d\n", err, 0, 0 );
return( err );
}
static int
get_filter_list( Connection *conn, BerElement *ber, Filter **f, char **fstr )
{
Filter **new;
int err;
ber_tag_t tag;
ber_len_t len;
1998-08-08 20:43:13 -04:00
char *last, *ftmp;
Debug( LDAP_DEBUG_FILTER, "begin get_filter_list\n", 0, 0, 0 );
*fstr = NULL;
new = f;
for ( tag = ber_first_element( ber, &len, &last ); tag != LBER_DEFAULT;
tag = ber_next_element( ber, &len, last ) )
{
if ( (err = get_filter( conn, ber, new, &ftmp )) != LDAP_SUCCESS )
1998-08-08 20:43:13 -04:00
return( err );
if ( *fstr == NULL ) {
*fstr = ftmp;
} else {
*fstr = ch_realloc( *fstr, strlen( *fstr ) +
strlen( ftmp ) + 1 );
strcat( *fstr, ftmp );
free( ftmp );
}
new = &(*new)->f_next;
}
*new = NULL;
Debug( LDAP_DEBUG_FILTER, "end get_filter_list\n", 0, 0, 0 );
return( LDAP_SUCCESS );
1998-08-08 20:43:13 -04:00
}
#ifndef SLAPD_SCHEMA_NOT_COMPAT
1998-08-08 20:43:13 -04:00
static int
get_substring_filter(
Connection *conn,
BerElement *ber,
Filter *f,
char **fstr
)
{
ber_tag_t tag;
ber_len_t len;
ber_tag_t rc;
struct berval *val;
char *last;
1998-08-08 20:43:13 -04:00
int syntax;
Debug( LDAP_DEBUG_FILTER, "begin get_substring_filter\n", 0, 0, 0 );
if ( ber_scanf( ber, "{a" /*}*/, &f->f_sub_type ) == LBER_ERROR ) {
return( -1 );
1998-08-08 20:43:13 -04:00
}
1998-08-08 20:43:13 -04:00
attr_normalize( f->f_sub_type );
#ifdef SLAPD_SCHEMA_NOT_COMPAT
/* not yet implemented */
#else
/* should get real syntax and see if we have a substring matching rule */
1998-08-08 20:43:13 -04:00
syntax = attr_syntax( f->f_sub_type );
#endif
1998-08-08 20:43:13 -04:00
f->f_sub_initial = NULL;
f->f_sub_any = NULL;
f->f_sub_final = NULL;
if( fstr ) {
*fstr = ch_malloc( strlen( f->f_sub_type ) + 3 );
sprintf( *fstr, "(%s=", f->f_sub_type );
}
1998-08-08 20:43:13 -04:00
for ( tag = ber_first_element( ber, &len, &last ); tag != LBER_DEFAULT;
tag = ber_next_element( ber, &len, last ) )
{
rc = ber_scanf( ber, "O", &val );
1998-08-08 20:43:13 -04:00
if ( rc == LBER_ERROR ) {
rc = -1;
goto return_error;
1998-08-08 20:43:13 -04:00
}
if ( val == NULL || val->bv_len == 0 ) {
ber_bvfree( val );
rc = LDAP_INVALID_SYNTAX;
goto return_error;
}
rc = LDAP_PROTOCOL_ERROR;
#ifdef SLAPD_SCHEMA_NOT_COMPAT
/* not yet implemented */
#else
/* we should call a substring syntax normalization routine */
value_normalize( val->bv_val, syntax );
#endif
/* this is bogus, value_normalize should take a berval */
val->bv_len = strlen( val->bv_val );
1998-08-08 20:43:13 -04:00
switch ( tag ) {
case LDAP_SUBSTRING_INITIAL:
Debug( LDAP_DEBUG_FILTER, " INITIAL\n", 0, 0, 0 );
if ( f->f_sub_initial != NULL ) {
ber_bvfree( val );
goto return_error;
1998-08-08 20:43:13 -04:00
}
f->f_sub_initial = val;
if( fstr ) {
*fstr = ch_realloc( *fstr,
strlen( *fstr ) + val->bv_len + 1 );
strcat( *fstr, val->bv_val );
}
1998-08-08 20:43:13 -04:00
break;
case LDAP_SUBSTRING_ANY:
Debug( LDAP_DEBUG_FILTER, " ANY\n", 0, 0, 0 );
charray_add( (char ***) &f->f_sub_any, (char *) val );
if( fstr ) {
*fstr = ch_realloc( *fstr,
strlen( *fstr ) + val->bv_len + 2 );
strcat( *fstr, "*" );
strcat( *fstr, val->bv_val );
}
1998-08-08 20:43:13 -04:00
break;
case LDAP_SUBSTRING_FINAL:
Debug( LDAP_DEBUG_FILTER, " FINAL\n", 0, 0, 0 );
if ( f->f_sub_final != NULL ) {
ber_bvfree( val );
goto return_error;
1998-08-08 20:43:13 -04:00
}
f->f_sub_final = val;
if( fstr ) {
*fstr = ch_realloc( *fstr,
strlen( *fstr ) + val->bv_len + 2 );
strcat( *fstr, "*" );
strcat( *fstr, val->bv_val );
}
1998-08-08 20:43:13 -04:00
break;
default:
Debug( LDAP_DEBUG_FILTER, " unknown type\n", tag, 0,
0 );
ber_bvfree( val );
return_error:
Debug( LDAP_DEBUG_FILTER, " error=%d\n", rc, 0, 0 );
if( fstr ) {
free( *fstr );
*fstr = NULL;
}
ch_free( f->f_sub_type );
ber_bvfree( f->f_sub_initial );
ber_bvecfree( f->f_sub_any );
ber_bvfree( f->f_sub_final );
return rc;
1998-08-08 20:43:13 -04:00
}
}
if( fstr ) {
*fstr = ch_realloc( *fstr, strlen( *fstr ) + 3 );
if ( f->f_sub_final == NULL ) {
strcat( *fstr, "*" );
}
strcat( *fstr, ")" );
1998-08-08 20:43:13 -04:00
}
Debug( LDAP_DEBUG_FILTER, "end get_substring_filter\n", 0, 0, 0 );
return( LDAP_SUCCESS );
1998-08-08 20:43:13 -04:00
}
#endif /* not compat */
1998-08-08 20:43:13 -04:00
void
filter_free( Filter *f )
{
Filter *p, *next;
if ( f == NULL ) {
return;
}
switch ( f->f_choice ) {
case LDAP_FILTER_PRESENT:
#ifdef SLAPD_SCHEMA_NOT_COMPAT
ad_free( f->f_desc, 1 );
#else
if ( f->f_type != NULL ) {
free( f->f_type );
}
#endif
break;
1998-08-08 20:43:13 -04:00
case LDAP_FILTER_EQUALITY:
case LDAP_FILTER_GE:
case LDAP_FILTER_LE:
case LDAP_FILTER_APPROX:
#ifdef SLAPD_SCHEMA_NOT_COMPAT
ava_free( f->f_ava, 1 );
#else
1998-08-08 20:43:13 -04:00
ava_free( &f->f_ava, 0 );
#endif
1998-08-08 20:43:13 -04:00
break;
case LDAP_FILTER_SUBSTRINGS:
#ifdef SLAPD_SCHEMA_NOT_COMPAT
ad_free( f->f_sub_desc, 1 );
if ( f->f_sub_initial != NULL ) {
ber_bvfree( f->f_sub_initial );
}
ber_bvecfree( f->f_sub_any );
if ( f->f_sub_final != NULL ) {
ber_bvfree( f->f_sub_final );
}
#else
1998-08-08 20:43:13 -04:00
if ( f->f_sub_type != NULL ) {
free( f->f_sub_type );
}
if ( f->f_sub_initial != NULL ) {
ber_bvfree( f->f_sub_initial );
1998-08-08 20:43:13 -04:00
}
ber_bvecfree( f->f_sub_any );
1998-08-08 20:43:13 -04:00
if ( f->f_sub_final != NULL ) {
ber_bvfree( f->f_sub_final );
1998-08-08 20:43:13 -04:00
}
#endif
1998-08-08 20:43:13 -04:00
break;
case LDAP_FILTER_AND:
case LDAP_FILTER_OR:
case LDAP_FILTER_NOT:
for ( p = f->f_list; p != NULL; p = next ) {
next = p->f_next;
filter_free( p );
}
break;
default:
Debug( LDAP_DEBUG_ANY, "unknown filter type %lu\n",
f->f_choice, 0, 0 );
1998-08-08 20:43:13 -04:00
break;
}
1998-08-08 20:43:13 -04:00
free( f );
}
#ifdef LDAP_DEBUG
void
filter_print( Filter *f )
{
int i;
Filter *p;
if ( f == NULL ) {
fprintf( stderr, "NULL" );
1998-08-08 20:43:13 -04:00
}
switch ( f->f_choice ) {
case LDAP_FILTER_EQUALITY:
fprintf( stderr, "(%s=%s)", f->f_ava.ava_type,
1998-08-08 20:43:13 -04:00
f->f_ava.ava_value.bv_val );
break;
case LDAP_FILTER_GE:
fprintf( stderr, "(%s>=%s)", f->f_ava.ava_type,
1998-08-08 20:43:13 -04:00
f->f_ava.ava_value.bv_val );
break;
case LDAP_FILTER_LE:
fprintf( stderr, "(%s<=%s)", f->f_ava.ava_type,
1998-08-08 20:43:13 -04:00
f->f_ava.ava_value.bv_val );
break;
case LDAP_FILTER_APPROX:
fprintf( stderr, "(%s~=%s)", f->f_ava.ava_type,
1998-08-08 20:43:13 -04:00
f->f_ava.ava_value.bv_val );
break;
case LDAP_FILTER_SUBSTRINGS:
fprintf( stderr, "(%s=", f->f_sub_type );
1998-08-08 20:43:13 -04:00
if ( f->f_sub_initial != NULL ) {
fprintf( stderr, "%s", f->f_sub_initial->bv_val );
1998-08-08 20:43:13 -04:00
}
if ( f->f_sub_any != NULL ) {
for ( i = 0; f->f_sub_any[i] != NULL; i++ ) {
fprintf( stderr, "*%s", f->f_sub_any[i]->bv_val );
1998-08-08 20:43:13 -04:00
}
}
if ( f->f_sub_final != NULL ) {
fprintf( stderr, "*%s", f->f_sub_final->bv_val );
1998-08-08 20:43:13 -04:00
}
break;
case LDAP_FILTER_PRESENT:
fprintf( stderr, "%s=*", f->f_type );
1998-08-08 20:43:13 -04:00
break;
case LDAP_FILTER_AND:
case LDAP_FILTER_OR:
case LDAP_FILTER_NOT:
fprintf( stderr, "(%c", f->f_choice == LDAP_FILTER_AND ? '&' :
1998-08-08 20:43:13 -04:00
f->f_choice == LDAP_FILTER_OR ? '|' : '!' );
for ( p = f->f_list; p != NULL; p = p->f_next ) {
filter_print( p );
}
fprintf( stderr, ")" );
1998-08-08 20:43:13 -04:00
break;
default:
fprintf( stderr, "unknown type %lu", f->f_choice );
1998-08-08 20:43:13 -04:00
break;
}
}
#endif /* ldap_debug */