ber_tag_t tag;
ber_len_t len;
int err;
- Filter *f;
+ Filter f;
#ifdef NEW_LOGGING
LDAP_LOG( FILTER, ENTRY, "get_filter: conn %d\n", conn->c_connid, 0, 0 );
return SLAPD_DISCONNECT;
}
- f = (Filter *) ch_malloc( sizeof(Filter) );
- f->f_next = NULL;
-
err = LDAP_SUCCESS;
- f->f_choice = tag;
- switch ( f->f_choice ) {
+ f.f_next = NULL;
+ f.f_choice = tag;
+
+ switch ( f.f_choice ) {
case LDAP_FILTER_EQUALITY:
#ifdef NEW_LOGGING
LDAP_LOG( FILTER, DETAIL2,
#else
Debug( LDAP_DEBUG_FILTER, "EQUALITY\n", 0, 0, 0 );
#endif
- err = get_ava( ber, &f->f_ava, SLAP_MR_EQUALITY, text );
+ err = get_ava( ber, &f.f_ava, SLAP_MR_EQUALITY, text );
if ( err != LDAP_SUCCESS ) {
break;
}
- assert( f->f_ava != NULL );
+ assert( f.f_ava != NULL );
break;
case LDAP_FILTER_SUBSTRINGS:
#else
Debug( LDAP_DEBUG_FILTER, "SUBSTRINGS\n", 0, 0, 0 );
#endif
- err = get_substring_filter( conn, ber, f, text );
+ err = get_substring_filter( conn, ber, &f, text );
if( err != LDAP_SUCCESS ) {
break;
}
- assert( f->f_sub != NULL );
+ assert( f.f_sub != NULL );
break;
case LDAP_FILTER_GE:
#else
Debug( LDAP_DEBUG_FILTER, "GE\n", 0, 0, 0 );
#endif
- err = get_ava( ber, &f->f_ava, SLAP_MR_ORDERING, text );
+ err = get_ava( ber, &f.f_ava, SLAP_MR_ORDERING, text );
if ( err != LDAP_SUCCESS ) {
break;
}
- assert( f->f_ava != NULL );
+ assert( f.f_ava != NULL );
break;
case LDAP_FILTER_LE:
#else
Debug( LDAP_DEBUG_FILTER, "LE\n", 0, 0, 0 );
#endif
- err = get_ava( ber, &f->f_ava, SLAP_MR_ORDERING, text );
+ err = get_ava( ber, &f.f_ava, SLAP_MR_ORDERING, text );
if ( err != LDAP_SUCCESS ) {
break;
}
- assert( f->f_ava != NULL );
+ assert( f.f_ava != NULL );
break;
case LDAP_FILTER_PRESENT: {
break;
}
- f->f_desc = NULL;
- err = slap_bv2ad( &type, &f->f_desc, text );
+ f.f_desc = NULL;
+ err = slap_bv2ad( &type, &f.f_desc, text );
if( err != LDAP_SUCCESS ) {
/* unrecognized attribute description or other error */
- f->f_choice = SLAPD_FILTER_COMPUTED;
- f->f_result = LDAP_COMPARE_FALSE;
+ f.f_choice = SLAPD_FILTER_COMPUTED;
+ f.f_result = LDAP_COMPARE_FALSE;
err = LDAP_SUCCESS;
break;
}
+
+ assert( f.f_desc != NULL );
} break;
case LDAP_FILTER_APPROX:
#else
Debug( LDAP_DEBUG_FILTER, "APPROX\n", 0, 0, 0 );
#endif
- err = get_ava( ber, &f->f_ava, SLAP_MR_EQUALITY_APPROX, text );
+ err = get_ava( ber, &f.f_ava, SLAP_MR_EQUALITY_APPROX, text );
if ( err != LDAP_SUCCESS ) {
break;
}
- assert( f->f_ava != NULL );
+ assert( f.f_ava != NULL );
break;
case LDAP_FILTER_AND:
#else
Debug( LDAP_DEBUG_FILTER, "AND\n", 0, 0, 0 );
#endif
- err = get_filter_list( conn, ber, &f->f_and, text );
+ err = get_filter_list( conn, ber, &f.f_and, text );
if ( err != LDAP_SUCCESS ) {
break;
}
-#ifdef XXX
- assert( f->f_and != NULL );
-#endif
+ /* no assert - list could be empty */
break;
case LDAP_FILTER_OR:
#else
Debug( LDAP_DEBUG_FILTER, "OR\n", 0, 0, 0 );
#endif
- err = get_filter_list( conn, ber, &f->f_or, text );
+ err = get_filter_list( conn, ber, &f.f_or, text );
if ( err != LDAP_SUCCESS ) {
break;
}
+ /* no assert - list could be empty */
break;
case LDAP_FILTER_NOT:
Debug( LDAP_DEBUG_FILTER, "NOT\n", 0, 0, 0 );
#endif
(void) ber_skip_tag( ber, &len );
- err = get_filter( conn, ber, &f->f_not, text );
+ err = get_filter( conn, ber, &f.f_not, text );
if ( err != LDAP_SUCCESS ) {
break;
}
+
+#ifdef XXX
+ assert( f.f_not != NULL );
+#endif
break;
case LDAP_FILTER_EXT:
Debug( LDAP_DEBUG_FILTER, "EXTENSIBLE\n", 0, 0, 0 );
#endif
- err = get_mra( ber, &f->f_mra, text );
+ err = get_mra( ber, &f.f_mra, text );
if ( err != LDAP_SUCCESS ) {
break;
}
#ifdef XXX
- assert( f->f_mra != NULL );
+ assert( f.f_mra != NULL );
#endif
break;
#ifdef NEW_LOGGING
LDAP_LOG( FILTER, ERR,
"get_filter: conn %d unknown filter type=%lu\n",
- conn->c_connid, f->f_choice, 0 );
+ conn->c_connid, f.f_choice, 0 );
#else
Debug( LDAP_DEBUG_ANY, "get_filter: unknown filter type=%lu\n",
- f->f_choice, 0, 0 );
+ f.f_choice, 0, 0 );
#endif
- f->f_choice = SLAPD_FILTER_COMPUTED;
- f->f_result = SLAPD_COMPARE_UNDEFINED;
+ f.f_choice = SLAPD_FILTER_COMPUTED;
+ f.f_result = SLAPD_COMPARE_UNDEFINED;
break;
}
- if ( err != LDAP_SUCCESS ) {
- if( err != SLAPD_DISCONNECT ) {
- /* ignore error */
- f->f_choice = SLAPD_FILTER_COMPUTED;
- f->f_result = SLAPD_COMPARE_UNDEFINED;
- err = LDAP_SUCCESS;
- *filt = f;
-
- } else {
- free(f);
- }
+ if( err != LDAP_SUCCESS && err != SLAPD_DISCONNECT ) {
+ /* ignore error */
+ f.f_choice = SLAPD_FILTER_COMPUTED;
+ f.f_result = SLAPD_COMPARE_UNDEFINED;
+ err = LDAP_SUCCESS;
+ }
- } else {
- *filt = f;
+ if ( err == LDAP_SUCCESS ) {
+ *filt = ch_malloc( sizeof(f) );
+ **filt = f;
}
#ifdef NEW_LOGGING
#else
Debug( LDAP_DEBUG_FILTER, "end get_filter %d\n", err, 0, 0 );
#endif
+
return( err );
}
ber_tag_t tag;
ber_len_t len;
ber_tag_t rc;
- struct berval value;
+ struct berval desc, value, nvalue;
char *last;
- struct berval bv;
- AttributeDescription *ad;
+ SubstringsAssertion ssa;
*text = "error decoding filter";
#else
Debug( LDAP_DEBUG_FILTER, "begin get_substring_filter\n", 0, 0, 0 );
#endif
- if ( ber_scanf( ber, "{m" /*}*/, &bv ) == LBER_ERROR ) {
+ if ( ber_scanf( ber, "{m" /*}*/, &desc ) == LBER_ERROR ) {
return SLAPD_DISCONNECT;
}
- ad = NULL;
- rc = slap_bv2ad( &bv, &ad, text );
+ *text = NULL;
+ f->f_choice = SLAPD_FILTER_COMPUTED;
+ f->f_result = SLAPD_COMPARE_UNDEFINED;
+
+ ssa.sa_desc = NULL;
+ ssa.sa_initial.bv_val = NULL;
+ ssa.sa_any = NULL;
+ ssa.sa_final.bv_val = NULL;
+
+ rc = slap_bv2ad( &desc, &ssa.sa_desc, text );
if( rc != LDAP_SUCCESS ) {
- text = NULL;
- f->f_choice = SLAPD_FILTER_COMPUTED;
- f->f_result = SLAPD_COMPARE_UNDEFINED;
return LDAP_SUCCESS;
}
- f->f_sub = ch_calloc( 1, sizeof(SubstringsAssertion) );
- f->f_sub_desc = ad;
- f->f_sub_initial.bv_val = NULL;
- f->f_sub_any = NULL;
- f->f_sub_final.bv_val = NULL;
+ rc = LDAP_PROTOCOL_ERROR;
- for ( tag = ber_first_element( ber, &len, &last ); tag != LBER_DEFAULT;
+ for ( tag = ber_first_element( ber, &len, &last );
+ tag != LBER_DEFAULT;
tag = ber_next_element( ber, &len, last ) )
{
unsigned usage;
}
if ( value.bv_val == NULL || value.bv_len == 0 ) {
+ free( value.bv_val );
rc = LDAP_INVALID_SYNTAX;
goto return_error;
}
" unknown substring choice=%ld\n",
(long) tag, 0, 0 );
#endif
+ free( value.bv_val );
goto return_error;
}
/* validate/normalize using equality matching rule validator! */
rc = asserted_value_validate_normalize(
f->f_sub_desc, f->f_sub_desc->ad_type->sat_equality,
- usage, &value, &bv, text );
+ usage, &value, &nvalue, text );
+
if( rc != LDAP_SUCCESS ) {
+ free( value.bv_val );
goto return_error;
}
#else
rc = value_validate( f->f_sub_desc->ad_type->sat_equality,
&value, text );
if( rc != LDAP_SUCCESS ) {
+ free( value.bv_val );
goto return_error;
}
rc = value_normalize( f->f_sub_desc, usage,
- &value, &bv, text );
+ &value, &nvalue, text );
+
+ free( value.bv_val );
+
if( rc != LDAP_SUCCESS ) {
goto return_error;
}
#endif
- value = bv;
rc = LDAP_PROTOCOL_ERROR;
switch ( tag ) {
case LDAP_SUBSTRING_INITIAL:
#ifdef NEW_LOGGING
LDAP_LOG( FILTER, DETAIL1,
- "get_substring_filter: conn %d INITIAL\n", conn->c_connid, 0, 0 );
+ "get_substring_filter: conn %d INITIAL\n",
+ conn->c_connid, 0, 0 );
#else
Debug( LDAP_DEBUG_FILTER, " INITIAL\n", 0, 0, 0 );
#endif
- if ( f->f_sub_initial.bv_val != NULL
- || f->f_sub_any != NULL
- || f->f_sub_final.bv_val != NULL )
+ if ( ssa.sa_initial.bv_val != NULL
+ || ssa.sa_any != NULL
+ || ssa.sa_final.bv_val != NULL )
{
- free( value.bv_val );
+ free( nvalue.bv_val );
goto return_error;
}
- f->f_sub_initial = value;
+ ssa.sa_initial = nvalue;
break;
case LDAP_SUBSTRING_ANY:
#ifdef NEW_LOGGING
LDAP_LOG( FILTER, DETAIL1,
- "get_substring_filter: conn %d ANY\n", conn->c_connid, 0, 0 );
+ "get_substring_filter: conn %d ANY\n",
+ conn->c_connid, 0, 0 );
#else
Debug( LDAP_DEBUG_FILTER, " ANY\n", 0, 0, 0 );
#endif
- if ( f->f_sub_final.bv_val != NULL ) {
- free( value.bv_val );
+ if ( ssa.sa_final.bv_val != NULL ) {
+ free( nvalue.bv_val );
goto return_error;
}
- ber_bvarray_add( &f->f_sub_any, &value );
+ ber_bvarray_add( &ssa.sa_any, &nvalue );
break;
case LDAP_SUBSTRING_FINAL:
#ifdef NEW_LOGGING
LDAP_LOG( FILTER, DETAIL1,
- "get_substring_filter: conn %d FINAL\n", conn->c_connid, 0, 0 );
+ "get_substring_filter: conn %d FINAL\n",
+ conn->c_connid, 0, 0 );
#else
Debug( LDAP_DEBUG_FILTER, " FINAL\n", 0, 0, 0 );
#endif
- if ( f->f_sub_final.bv_val != NULL ) {
- free( value.bv_val );
+ if ( ssa.sa_final.bv_val != NULL ) {
+ free( nvalue.bv_val );
goto return_error;
}
- f->f_sub_final = value;
+ ssa.sa_final = nvalue;
break;
default:
(long) tag, 0, 0 );
#endif
- free( value.bv_val );
+ free( nvalue.bv_val );
return_error:
#ifdef NEW_LOGGING
Debug( LDAP_DEBUG_FILTER, " error=%ld\n",
(long) rc, 0, 0 );
#endif
- free( f->f_sub_initial.bv_val );
- ber_bvarray_free( f->f_sub_any );
- free( f->f_sub_final.bv_val );
- ch_free( f->f_sub );
- f->f_sub = NULL;
+ free( ssa.sa_initial.bv_val );
+ ber_bvarray_free( ssa.sa_any );
+ free( ssa.sa_final.bv_val );
return rc;
}
+
+ rc = LDAP_SUCCESS;
+ }
+
+ if( rc == LDAP_SUCCESS ) {
+ f->f_choice = LDAP_FILTER_SUBSTRINGS;
+ f->f_sub = ch_malloc( sizeof( ssa ) );
+ *f->f_sub = ssa;
}
#ifdef NEW_LOGGING
#else
Debug( LDAP_DEBUG_FILTER, "end get_substring_filter\n", 0, 0, 0 );
#endif
- return( LDAP_SUCCESS );
+
+ return LDAP_SUCCESS;
}
void