openldap/servers/slapd/str2filter.c

75 lines
1.4 KiB
C
Raw Normal View History

1998-08-08 20:43:13 -04:00
/* str2filter.c - parse an rfc 1588 string filter */
/* $OpenLDAP$ */
1999-08-06 19:07:46 -04:00
/*
2003-01-03 15:20:47 -05:00
* Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
1999-08-06 19:07:46 -04:00
* 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/string.h>
#include <ac/ctype.h>
1998-10-24 21:41:42 -04:00
#include <ac/socket.h>
1998-08-08 20:43:13 -04:00
#include "slap.h"
#include <ldap_pvt.h>
1998-08-08 20:43:13 -04:00
2002-11-25 18:37:10 -05:00
#if 0 /* unused */
static char *find_matching_paren( const char *s );
2002-11-25 18:37:10 -05:00
#endif /* unused */
static Filter *str2list( const char *str, long unsigned int ftype);
static Filter *str2simple( const char *str);
static int str2subvals( const char *val, Filter *f);
1998-08-08 20:43:13 -04:00
Filter *
str2filter_x( Operation *op, const char *str )
1998-08-08 20:43:13 -04:00
{
int rc;
1998-10-23 17:51:32 -04:00
Filter *f = NULL;
char berbuf[LBER_ELEMENT_SIZEOF];
2002-12-18 14:00:23 -05:00
BerElement *ber = (BerElement *)berbuf;
const char *text = NULL;
1998-08-08 20:43:13 -04:00
2001-01-15 14:17:29 -05:00
#ifdef NEW_LOGGING
LDAP_LOG( FILTER, ENTRY, "str2filter: \"%s\"\n", str, 0, 0 );
2001-01-15 14:17:29 -05:00
#else
1998-08-08 20:43:13 -04:00
Debug( LDAP_DEBUG_FILTER, "str2filter \"%s\"\n", str, 0, 0 );
2001-01-15 14:17:29 -05:00
#endif
1998-08-08 20:43:13 -04:00
if ( str == NULL || *str == '\0' ) {
2002-01-02 14:06:49 -05:00
return NULL;
1998-08-08 20:43:13 -04:00
}
2002-12-18 14:00:23 -05:00
ber_init2( ber, NULL, LBER_USE_DER );
if ( op->o_tmpmemctx ) {
ber_set_option( ber, LBER_OPT_BER_MEMCTX, op->o_tmpmemctx );
}
2002-01-02 14:06:49 -05:00
rc = ldap_pvt_put_filter( ber, str );
if( rc < 0 ) {
goto done;
1998-08-08 20:43:13 -04:00
}
2002-12-18 14:00:23 -05:00
ber_reset( ber, 1 );
1998-08-08 20:43:13 -04:00
rc = get_filter( op, ber, &f, &text );
1998-08-08 20:43:13 -04:00
done:
2002-12-18 14:00:23 -05:00
ber_free_buf( ber );
1998-08-08 20:43:13 -04:00
return f;
1998-08-08 20:43:13 -04:00
}
Filter *
str2filter( const char *str )
{
Operation op = {0};
op.o_tmpmemctx = NULL;
2003-04-09 19:37:00 -04:00
op.o_tmpmfuncs = &ch_mfuncs;
return str2filter_x( &op, str );
}