openldap/servers/slapd/str2filter.c

85 lines
2 KiB
C
Raw Normal View History

2006-10-27 23:53:02 -04:00
/* str2filter.c - parse an RFC 4515 string filter */
/* $OpenLDAP$ */
2003-11-26 20:17:14 -05:00
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
*
2009-01-21 19:40:04 -05:00
* Copyright 1998-2009 The OpenLDAP Foundation.
2003-11-26 20:17:14 -05: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-06 19:07:46 -04:00
*/
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"
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;
BerElementBuffer berbuf;
BerElement *ber = (BerElement *)&berbuf;
const char *text = NULL;
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
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 ) {
2003-05-28 18:17:08 -04:00
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};
2004-11-26 05:10:29 -05:00
Opheader ohdr = {0};
2004-11-26 05:10:29 -05:00
op.o_hdr = &ohdr;
op.o_tmpmemctx = NULL;
2003-04-09 19:37:00 -04:00
op.o_tmpmfuncs = &ch_mfuncs;
return str2filter_x( &op, str );
}