2000-06-30 06:02:15 +08:00
|
|
|
/* $OpenLDAP$ */
|
2003-11-27 09:17:14 +08:00
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
*
|
2006-01-04 07:11:52 +08:00
|
|
|
* Copyright 2000-2006 The OpenLDAP Foundation.
|
2003-11-27 09:17:14 +08: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>.
|
2000-06-30 06:02:15 +08:00
|
|
|
*/
|
|
|
|
|
2000-09-13 05:43:42 +08:00
|
|
|
#include "portable.h"
|
2000-06-30 06:02:15 +08:00
|
|
|
|
2000-09-13 05:43:42 +08:00
|
|
|
#include <stdio.h>
|
2000-07-01 12:58:23 +08:00
|
|
|
#include <ac/string.h>
|
2000-09-13 05:43:42 +08:00
|
|
|
|
2000-07-01 12:58:23 +08:00
|
|
|
#include "slap.h"
|
2000-06-30 06:02:15 +08:00
|
|
|
#include "sets.h"
|
|
|
|
|
2004-10-08 08:28:16 +08:00
|
|
|
static BerVarray set_chase( SLAP_SET_GATHER gatherer,
|
|
|
|
SetCookie *cookie, BerVarray set, AttributeDescription *desc, int closure );
|
2000-06-30 06:02:15 +08:00
|
|
|
|
2004-10-08 08:28:16 +08:00
|
|
|
static long
|
|
|
|
slap_set_size( BerVarray set )
|
2000-06-30 06:02:15 +08:00
|
|
|
{
|
2002-12-28 01:24:20 +08:00
|
|
|
long i;
|
2000-06-30 06:02:15 +08:00
|
|
|
|
|
|
|
i = 0;
|
2004-10-08 08:28:16 +08:00
|
|
|
if ( set != NULL ) {
|
2004-10-08 08:54:19 +08:00
|
|
|
while ( !BER_BVISNULL( &set[ i ] ) ) {
|
2000-06-30 06:02:15 +08:00
|
|
|
i++;
|
2004-10-08 08:28:16 +08:00
|
|
|
}
|
2000-06-30 06:02:15 +08:00
|
|
|
}
|
2002-12-28 01:24:20 +08:00
|
|
|
return i;
|
2000-06-30 06:02:15 +08:00
|
|
|
}
|
|
|
|
|
2004-10-08 08:54:19 +08:00
|
|
|
static int
|
|
|
|
slap_set_isempty( BerVarray set )
|
|
|
|
{
|
|
|
|
if ( set == NULL ) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( !BER_BVISNULL( &set[ 0 ] ) ) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2004-10-08 08:28:16 +08:00
|
|
|
static void
|
2004-10-08 23:07:22 +08:00
|
|
|
slap_set_dispose( SetCookie *cp, BerVarray set, unsigned flags )
|
2000-06-30 06:02:15 +08:00
|
|
|
{
|
2004-10-08 23:07:22 +08:00
|
|
|
if ( flags & SLAP_SET_REFVAL ) {
|
|
|
|
if ( ! ( flags & SLAP_SET_REFARR ) ) {
|
2005-08-27 00:52:51 +08:00
|
|
|
cp->set_op->o_tmpfree( set, cp->set_op->o_tmpmemctx );
|
2004-10-08 23:07:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
2005-08-27 00:52:51 +08:00
|
|
|
ber_bvarray_free_x( set, cp->set_op->o_tmpmemctx );
|
2004-10-08 23:07:22 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static BerVarray
|
|
|
|
set_dup( SetCookie *cp, BerVarray set, unsigned flags )
|
|
|
|
{
|
|
|
|
BerVarray newset = NULL;
|
|
|
|
|
|
|
|
if ( set == NULL ) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( flags & SLAP_SET_REFARR ) {
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for ( i = 0; !BER_BVISNULL( &set[ i ] ); i++ )
|
|
|
|
;
|
2005-08-27 00:52:51 +08:00
|
|
|
newset = cp->set_op->o_tmpcalloc( i + 1,
|
2004-10-08 23:07:22 +08:00
|
|
|
sizeof(struct berval),
|
2005-08-27 00:52:51 +08:00
|
|
|
cp->set_op->o_tmpmemctx );
|
2004-10-08 23:07:22 +08:00
|
|
|
if ( newset == NULL ) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( flags & SLAP_SET_REFVAL ) {
|
|
|
|
for ( i = 0; !BER_BVISNULL( &set[ i ] ); i++ ) {
|
|
|
|
ber_dupbv_x( &newset[ i ], &set[ i ],
|
2005-08-27 00:52:51 +08:00
|
|
|
cp->set_op->o_tmpmemctx );
|
2004-10-08 23:07:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
AC_MEMCPY( newset, set, ( i + 1 ) * sizeof( struct berval ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
newset = set;
|
|
|
|
}
|
|
|
|
|
|
|
|
return newset;
|
2000-06-30 06:02:15 +08:00
|
|
|
}
|
|
|
|
|
2004-10-08 01:05:48 +08:00
|
|
|
BerVarray
|
2004-10-08 23:07:22 +08:00
|
|
|
slap_set_join(
|
|
|
|
SetCookie *cp,
|
|
|
|
BerVarray lset,
|
|
|
|
unsigned op_flags,
|
|
|
|
BerVarray rset )
|
2000-06-30 06:02:15 +08:00
|
|
|
{
|
2004-10-08 08:54:19 +08:00
|
|
|
BerVarray set;
|
|
|
|
long i, j, last;
|
2004-10-08 23:07:22 +08:00
|
|
|
unsigned op = ( op_flags & SLAP_SET_OPMASK );
|
2000-06-30 06:02:15 +08:00
|
|
|
|
|
|
|
set = NULL;
|
2004-10-08 23:07:22 +08:00
|
|
|
switch ( op ) {
|
2005-01-13 17:21:11 +08:00
|
|
|
case '|': /* union */
|
2004-10-08 08:54:19 +08:00
|
|
|
if ( lset == NULL || BER_BVISNULL( lset ) ) {
|
|
|
|
if ( rset == NULL ) {
|
|
|
|
if ( lset == NULL ) {
|
2005-08-27 00:52:51 +08:00
|
|
|
set = cp->set_op->o_tmpcalloc( 1,
|
2004-10-08 23:07:22 +08:00
|
|
|
sizeof(struct berval),
|
2005-08-27 00:52:51 +08:00
|
|
|
cp->set_op->o_tmpmemctx );
|
2005-01-13 17:21:11 +08:00
|
|
|
BER_BVZERO( set );
|
|
|
|
return set;
|
2004-10-08 08:54:19 +08:00
|
|
|
}
|
2004-10-08 23:07:22 +08:00
|
|
|
return set_dup( cp, lset, SLAP_SET_LREF2REF( op_flags ) );
|
2000-06-30 06:02:15 +08:00
|
|
|
}
|
2004-10-08 23:07:22 +08:00
|
|
|
slap_set_dispose( cp, lset, SLAP_SET_LREF2REF( op_flags ) );
|
|
|
|
return set_dup( cp, rset, SLAP_SET_RREF2REF( op_flags ) );
|
2000-06-30 06:02:15 +08:00
|
|
|
}
|
2004-10-08 08:54:19 +08:00
|
|
|
if ( rset == NULL || BER_BVISNULL( rset ) ) {
|
2004-10-08 23:07:22 +08:00
|
|
|
slap_set_dispose( cp, rset, SLAP_SET_RREF2REF( op_flags ) );
|
|
|
|
return set_dup( cp, lset, SLAP_SET_LREF2REF( op_flags ) );
|
2000-06-30 06:02:15 +08:00
|
|
|
}
|
|
|
|
|
2004-10-08 08:54:19 +08:00
|
|
|
i = slap_set_size( lset ) + slap_set_size( rset ) + 1;
|
2005-08-27 00:52:51 +08:00
|
|
|
set = cp->set_op->o_tmpcalloc( i, sizeof(struct berval), cp->set_op->o_tmpmemctx );
|
2004-10-08 08:54:19 +08:00
|
|
|
if ( set != NULL ) {
|
2000-06-30 06:02:15 +08:00
|
|
|
/* set_chase() depends on this routine to
|
|
|
|
* keep the first elements of the result
|
|
|
|
* set the same (and in the same order)
|
|
|
|
* as the left-set.
|
|
|
|
*/
|
2004-10-08 08:54:19 +08:00
|
|
|
for ( i = 0; !BER_BVISNULL( &lset[ i ] ); i++ ) {
|
2004-10-08 23:07:22 +08:00
|
|
|
if ( op_flags & SLAP_SET_LREFVAL ) {
|
2005-08-27 00:52:51 +08:00
|
|
|
ber_dupbv_x( &set[ i ], &lset[ i ], cp->set_op->o_tmpmemctx );
|
2004-10-08 23:07:22 +08:00
|
|
|
|
|
|
|
} else {
|
|
|
|
set[ i ] = lset[ i ];
|
|
|
|
}
|
2004-10-08 08:54:19 +08:00
|
|
|
}
|
2004-10-08 23:07:22 +08:00
|
|
|
|
2005-01-13 17:21:11 +08:00
|
|
|
last = i;
|
|
|
|
|
2004-10-08 08:54:19 +08:00
|
|
|
for ( i = 0; !BER_BVISNULL( &rset[ i ] ); i++ ) {
|
2004-10-08 23:07:22 +08:00
|
|
|
int exists = 0;
|
2005-01-13 17:21:11 +08:00
|
|
|
|
2004-10-08 08:54:19 +08:00
|
|
|
for ( j = 0; !BER_BVISNULL( &set[ j ] ); j++ ) {
|
2005-01-13 17:21:11 +08:00
|
|
|
if ( bvmatch( &rset[ i ], &set[ j ] ) )
|
2004-10-08 08:28:16 +08:00
|
|
|
{
|
2004-10-08 23:07:22 +08:00
|
|
|
if ( !( op_flags & SLAP_SET_RREFVAL ) ) {
|
2005-08-27 00:52:51 +08:00
|
|
|
cp->set_op->o_tmpfree( rset[ i ].bv_val, cp->set_op->o_tmpmemctx );
|
2004-10-08 23:07:22 +08:00
|
|
|
BER_BVZERO( &rset[ i ] );
|
|
|
|
}
|
|
|
|
exists = 1;
|
2000-06-30 06:02:15 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2004-10-08 23:07:22 +08:00
|
|
|
|
|
|
|
if ( !exists ) {
|
|
|
|
if ( op_flags & SLAP_SET_RREFVAL ) {
|
2005-08-27 00:52:51 +08:00
|
|
|
ber_dupbv_x( &set[ last ], &rset[ i ], cp->set_op->o_tmpmemctx );
|
2004-10-08 23:07:22 +08:00
|
|
|
|
|
|
|
} else {
|
2005-01-13 17:21:11 +08:00
|
|
|
set[ last ] = rset[ i ];
|
2004-10-08 23:07:22 +08:00
|
|
|
}
|
2005-01-13 17:21:11 +08:00
|
|
|
last++;
|
2004-10-08 08:54:19 +08:00
|
|
|
}
|
2000-06-30 06:02:15 +08:00
|
|
|
}
|
2005-01-13 17:21:11 +08:00
|
|
|
BER_BVZERO( &set[ last ] );
|
2000-06-30 06:02:15 +08:00
|
|
|
}
|
2004-10-08 23:07:22 +08:00
|
|
|
break;
|
2000-06-30 06:02:15 +08:00
|
|
|
|
2005-01-13 17:21:11 +08:00
|
|
|
case '&': /* intersection */
|
2004-10-08 08:54:19 +08:00
|
|
|
if ( lset == NULL || BER_BVISNULL( lset )
|
|
|
|
|| rset == NULL || BER_BVISNULL( rset ) )
|
|
|
|
{
|
2005-08-27 00:52:51 +08:00
|
|
|
set = cp->set_op->o_tmpcalloc( 1, sizeof(struct berval),
|
|
|
|
cp->set_op->o_tmpmemctx );
|
2005-01-13 17:21:11 +08:00
|
|
|
BER_BVZERO( set );
|
2004-10-08 23:07:22 +08:00
|
|
|
|
2000-06-30 06:02:15 +08:00
|
|
|
} else {
|
2004-10-08 23:07:22 +08:00
|
|
|
set = set_dup( cp, lset, SLAP_SET_LREF2REF( op_flags ) );
|
|
|
|
if ( set == NULL ) {
|
|
|
|
break;
|
|
|
|
}
|
2000-06-30 06:02:15 +08:00
|
|
|
lset = NULL;
|
2004-10-08 08:54:19 +08:00
|
|
|
last = slap_set_size( set ) - 1;
|
|
|
|
for ( i = 0; !BER_BVISNULL( &set[ i ] ); i++ ) {
|
|
|
|
for ( j = 0; !BER_BVISNULL( &rset[ j ] ); j++ ) {
|
2005-01-13 17:21:11 +08:00
|
|
|
if ( bvmatch( &set[ i ], &rset[ j ] ) ) {
|
2000-06-30 06:02:15 +08:00
|
|
|
break;
|
2004-10-08 08:28:16 +08:00
|
|
|
}
|
2000-06-30 06:02:15 +08:00
|
|
|
}
|
2004-10-08 23:07:22 +08:00
|
|
|
|
2004-10-08 08:54:19 +08:00
|
|
|
if ( BER_BVISNULL( &rset[ j ] ) ) {
|
2005-08-27 00:52:51 +08:00
|
|
|
cp->set_op->o_tmpfree( set[ i ].bv_val, cp->set_op->o_tmpmemctx );
|
2004-10-08 08:54:19 +08:00
|
|
|
set[ i ] = set[ last ];
|
|
|
|
BER_BVZERO( &set[ last ] );
|
2000-06-30 06:02:15 +08:00
|
|
|
last--;
|
|
|
|
i--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2004-10-08 23:07:22 +08:00
|
|
|
break;
|
|
|
|
|
2005-01-13 17:21:11 +08:00
|
|
|
case '+': /* string concatenation */
|
|
|
|
i = slap_set_size( rset );
|
|
|
|
j = slap_set_size( lset );
|
|
|
|
|
2005-08-27 00:52:51 +08:00
|
|
|
set = cp->set_op->o_tmpcalloc( i * j + 1, sizeof(struct berval),
|
|
|
|
cp->set_op->o_tmpmemctx );
|
2005-01-13 17:21:11 +08:00
|
|
|
if ( set == NULL ) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
for ( last = 0, i = 0; !BER_BVISNULL( &lset[ i ] ); i++ ) {
|
|
|
|
for ( j = 0; !BER_BVISNULL( &rset[ j ] ); j++ ) {
|
|
|
|
struct berval bv;
|
|
|
|
long k;
|
|
|
|
|
|
|
|
bv.bv_len = lset[ i ].bv_len + rset[ j ].bv_len;
|
2005-08-27 00:52:51 +08:00
|
|
|
bv.bv_val = cp->set_op->o_tmpalloc( bv.bv_len + 1,
|
|
|
|
cp->set_op->o_tmpmemctx );
|
2005-01-13 17:21:11 +08:00
|
|
|
if ( bv.bv_val == NULL ) {
|
|
|
|
slap_set_dispose( cp, set, 0 );
|
|
|
|
set = NULL;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
AC_MEMCPY( bv.bv_val, lset[ i ].bv_val, lset[ i ].bv_len );
|
|
|
|
AC_MEMCPY( &bv.bv_val[ lset[ i ].bv_len ], rset[ j ].bv_val, rset[ j ].bv_len );
|
|
|
|
bv.bv_val[ bv.bv_len ] = '\0';
|
|
|
|
|
|
|
|
for ( k = 0; k < last; k++ ) {
|
|
|
|
if ( bvmatch( &set[ k ], &bv ) ) {
|
2005-08-27 00:52:51 +08:00
|
|
|
cp->set_op->o_tmpfree( bv.bv_val, cp->set_op->o_tmpmemctx );
|
2005-01-13 17:21:11 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( k == last ) {
|
|
|
|
set[ last++ ] = bv;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
BER_BVZERO( &set[ last ] );
|
|
|
|
break;
|
|
|
|
|
2004-10-08 23:07:22 +08:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2005-01-13 17:21:11 +08:00
|
|
|
done:;
|
2004-10-08 23:07:22 +08:00
|
|
|
if ( !( op_flags & SLAP_SET_LREFARR ) && lset != NULL ) {
|
2005-08-27 00:52:51 +08:00
|
|
|
cp->set_op->o_tmpfree( lset, cp->set_op->o_tmpmemctx );
|
2004-10-08 23:07:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( !( op_flags & SLAP_SET_RREFARR ) && rset != NULL ) {
|
2005-08-27 00:52:51 +08:00
|
|
|
cp->set_op->o_tmpfree( rset, cp->set_op->o_tmpmemctx );
|
2000-06-30 06:02:15 +08:00
|
|
|
}
|
|
|
|
|
2004-10-08 08:54:19 +08:00
|
|
|
return set;
|
2000-06-30 06:02:15 +08:00
|
|
|
}
|
|
|
|
|
2002-01-14 09:43:17 +08:00
|
|
|
static BerVarray
|
2004-10-08 08:28:16 +08:00
|
|
|
set_chase( SLAP_SET_GATHER gatherer,
|
|
|
|
SetCookie *cp, BerVarray set, AttributeDescription *desc, int closure )
|
2000-06-30 06:02:15 +08:00
|
|
|
{
|
2004-10-08 08:54:19 +08:00
|
|
|
BerVarray vals, nset;
|
|
|
|
int i;
|
2000-06-30 06:02:15 +08:00
|
|
|
|
2005-01-13 17:21:11 +08:00
|
|
|
if ( set == NULL ) {
|
2005-08-27 00:52:51 +08:00
|
|
|
set = cp->set_op->o_tmpcalloc( 1, sizeof(struct berval),
|
|
|
|
cp->set_op->o_tmpmemctx );
|
2005-01-13 17:21:11 +08:00
|
|
|
BER_BVZERO( set );
|
|
|
|
return set;
|
|
|
|
}
|
2000-06-30 06:02:15 +08:00
|
|
|
|
2005-01-13 17:21:11 +08:00
|
|
|
if ( BER_BVISNULL( set ) ) {
|
2004-10-08 08:28:16 +08:00
|
|
|
return set;
|
2005-01-13 17:21:11 +08:00
|
|
|
}
|
2000-06-30 06:02:15 +08:00
|
|
|
|
2005-08-27 00:52:51 +08:00
|
|
|
nset = cp->set_op->o_tmpcalloc( 1, sizeof(struct berval), cp->set_op->o_tmpmemctx );
|
2004-10-08 08:28:16 +08:00
|
|
|
if ( nset == NULL ) {
|
2004-10-08 23:07:22 +08:00
|
|
|
slap_set_dispose( cp, set, 0 );
|
2004-10-08 08:28:16 +08:00
|
|
|
return NULL;
|
2000-06-30 06:02:15 +08:00
|
|
|
}
|
2004-10-08 08:54:19 +08:00
|
|
|
for ( i = 0; !BER_BVISNULL( &set[ i ] ); i++ ) {
|
|
|
|
vals = (gatherer)( cp, &set[ i ], desc );
|
2004-10-08 08:28:16 +08:00
|
|
|
if ( vals != NULL ) {
|
|
|
|
nset = slap_set_join( cp, nset, '|', vals );
|
|
|
|
}
|
2000-06-30 06:02:15 +08:00
|
|
|
}
|
2004-10-08 23:07:22 +08:00
|
|
|
slap_set_dispose( cp, set, 0 );
|
2004-10-08 08:28:16 +08:00
|
|
|
|
|
|
|
if ( closure ) {
|
2004-10-08 08:54:19 +08:00
|
|
|
for ( i = 0; !BER_BVISNULL( &nset[ i ] ); i++ ) {
|
|
|
|
vals = (gatherer)( cp, &nset[ i ], desc );
|
2004-10-08 08:28:16 +08:00
|
|
|
if ( vals != NULL ) {
|
|
|
|
nset = slap_set_join( cp, nset, '|', vals );
|
|
|
|
if ( nset == NULL ) {
|
2000-06-30 06:02:15 +08:00
|
|
|
break;
|
2004-10-08 08:28:16 +08:00
|
|
|
}
|
2000-06-30 06:02:15 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-10-08 08:28:16 +08:00
|
|
|
return nset;
|
2000-06-30 06:02:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2004-10-08 08:28:16 +08:00
|
|
|
slap_set_filter( SLAP_SET_GATHER gatherer,
|
2003-04-12 14:56:42 +08:00
|
|
|
SetCookie *cp, struct berval *fbv,
|
2004-10-08 08:28:16 +08:00
|
|
|
struct berval *user, struct berval *target, BerVarray *results )
|
2000-06-30 06:02:15 +08:00
|
|
|
{
|
2005-01-13 17:21:11 +08:00
|
|
|
#define STACK_SIZE 64
|
2004-08-07 00:14:05 +08:00
|
|
|
#define IS_SET(x) ( (unsigned long)(x) >= 256 )
|
|
|
|
#define IS_OP(x) ( (unsigned long)(x) < 256 )
|
2000-09-13 05:43:42 +08:00
|
|
|
#define SF_ERROR(x) do { rc = -1; goto _error; } while (0)
|
2004-10-08 08:54:19 +08:00
|
|
|
#define SF_TOP() ( (BerVarray)( (stp < 0) ? 0 : stack[ stp ] ) )
|
|
|
|
#define SF_POP() ( (BerVarray)( (stp < 0) ? 0 : stack[ stp-- ] ) )
|
2000-09-13 05:43:42 +08:00
|
|
|
#define SF_PUSH(x) do { \
|
2005-01-13 17:21:11 +08:00
|
|
|
if (stp >= (STACK_SIZE - 1)) SF_ERROR(overflow); \
|
2004-10-08 08:54:19 +08:00
|
|
|
stack[ ++stp ] = (BerVarray)(long)(x); \
|
2000-09-13 05:43:42 +08:00
|
|
|
} while (0)
|
|
|
|
|
2004-10-08 08:54:19 +08:00
|
|
|
BerVarray set, lset;
|
2005-01-13 17:21:11 +08:00
|
|
|
BerVarray stack[ STACK_SIZE ] = { 0 };
|
2004-10-08 23:07:22 +08:00
|
|
|
int len, rc, stp;
|
2005-08-27 00:52:51 +08:00
|
|
|
unsigned long op;
|
2004-10-08 08:54:19 +08:00
|
|
|
char c, *filter = fbv->bv_val;
|
2000-06-30 06:02:15 +08:00
|
|
|
|
2004-10-08 08:54:19 +08:00
|
|
|
if ( results ) {
|
2000-06-30 06:02:15 +08:00
|
|
|
*results = NULL;
|
2004-10-08 08:54:19 +08:00
|
|
|
}
|
2000-06-30 06:02:15 +08:00
|
|
|
|
|
|
|
stp = -1;
|
2004-10-08 08:54:19 +08:00
|
|
|
while ( ( c = *filter++ ) ) {
|
2000-06-30 06:02:15 +08:00
|
|
|
set = NULL;
|
2004-10-08 08:54:19 +08:00
|
|
|
switch ( c ) {
|
2000-06-30 06:02:15 +08:00
|
|
|
case ' ':
|
|
|
|
case '\t':
|
|
|
|
case '\x0A':
|
|
|
|
case '\x0D':
|
|
|
|
break;
|
|
|
|
|
2004-10-08 08:54:19 +08:00
|
|
|
case '(' /* ) */ :
|
|
|
|
if ( IS_SET( SF_TOP() ) ) {
|
|
|
|
SF_ERROR( syntax );
|
|
|
|
}
|
|
|
|
SF_PUSH( c );
|
2000-06-30 06:02:15 +08:00
|
|
|
break;
|
|
|
|
|
2004-10-08 08:54:19 +08:00
|
|
|
case /* ( */ ')':
|
2000-06-30 06:02:15 +08:00
|
|
|
set = SF_POP();
|
2004-10-08 08:54:19 +08:00
|
|
|
if ( IS_OP( set ) ) {
|
|
|
|
SF_ERROR( syntax );
|
|
|
|
}
|
|
|
|
if ( SF_TOP() == (void *)'(' /* ) */ ) {
|
2000-06-30 06:02:15 +08:00
|
|
|
SF_POP();
|
2004-10-08 08:54:19 +08:00
|
|
|
SF_PUSH( set );
|
2000-06-30 06:02:15 +08:00
|
|
|
set = NULL;
|
2004-10-08 08:54:19 +08:00
|
|
|
|
|
|
|
} else if ( IS_OP( SF_TOP() ) ) {
|
2005-08-27 00:52:51 +08:00
|
|
|
op = (unsigned long)SF_POP();
|
2000-06-30 06:02:15 +08:00
|
|
|
lset = SF_POP();
|
|
|
|
SF_POP();
|
2004-10-08 08:54:19 +08:00
|
|
|
set = slap_set_join( cp, lset, op, set );
|
|
|
|
if ( set == NULL ) {
|
2000-06-30 06:02:15 +08:00
|
|
|
SF_ERROR(memory);
|
2004-10-08 08:54:19 +08:00
|
|
|
}
|
|
|
|
SF_PUSH( set );
|
2000-06-30 06:02:15 +08:00
|
|
|
set = NULL;
|
2004-10-08 08:54:19 +08:00
|
|
|
|
2000-06-30 06:02:15 +08:00
|
|
|
} else {
|
2004-10-08 08:54:19 +08:00
|
|
|
SF_ERROR( syntax );
|
2000-06-30 06:02:15 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2005-01-13 17:21:11 +08:00
|
|
|
case '|': /* union */
|
|
|
|
case '&': /* intersection */
|
|
|
|
case '+': /* string concatenation */
|
2000-06-30 06:02:15 +08:00
|
|
|
set = SF_POP();
|
2004-10-08 08:54:19 +08:00
|
|
|
if ( IS_OP( set ) ) {
|
|
|
|
SF_ERROR( syntax );
|
|
|
|
}
|
|
|
|
if ( SF_TOP() == 0 || SF_TOP() == (void *)'(' /* ) */ ) {
|
|
|
|
SF_PUSH( set );
|
2000-06-30 06:02:15 +08:00
|
|
|
set = NULL;
|
2004-10-08 08:54:19 +08:00
|
|
|
|
|
|
|
} else if ( IS_OP( SF_TOP() ) ) {
|
2005-08-27 00:52:51 +08:00
|
|
|
op = (unsigned long)SF_POP();
|
2000-06-30 06:02:15 +08:00
|
|
|
lset = SF_POP();
|
2004-10-08 08:54:19 +08:00
|
|
|
set = slap_set_join( cp, lset, op, set );
|
|
|
|
if ( set == NULL ) {
|
|
|
|
SF_ERROR( memory );
|
|
|
|
}
|
|
|
|
SF_PUSH( set );
|
2000-06-30 06:02:15 +08:00
|
|
|
set = NULL;
|
2004-10-08 08:54:19 +08:00
|
|
|
|
2000-06-30 06:02:15 +08:00
|
|
|
} else {
|
2004-10-08 08:54:19 +08:00
|
|
|
SF_ERROR( syntax );
|
2000-06-30 06:02:15 +08:00
|
|
|
}
|
2004-10-08 08:54:19 +08:00
|
|
|
SF_PUSH( c );
|
2000-06-30 06:02:15 +08:00
|
|
|
break;
|
|
|
|
|
2004-10-08 08:54:19 +08:00
|
|
|
case '[' /* ] */:
|
|
|
|
if ( ( SF_TOP() == (void *)'/' ) || IS_SET( SF_TOP() ) ) {
|
|
|
|
SF_ERROR( syntax );
|
|
|
|
}
|
|
|
|
for ( len = 0; ( c = *filter++ ) && (c != /* [ */ ']'); len++ )
|
2004-10-08 01:05:48 +08:00
|
|
|
;
|
2004-10-08 08:54:19 +08:00
|
|
|
if ( c == 0 ) {
|
2000-06-30 06:02:15 +08:00
|
|
|
SF_ERROR(syntax);
|
2004-10-08 08:54:19 +08:00
|
|
|
}
|
2000-06-30 06:02:15 +08:00
|
|
|
|
2005-08-27 00:52:51 +08:00
|
|
|
set = cp->set_op->o_tmpcalloc( 2, sizeof(struct berval),
|
|
|
|
cp->set_op->o_tmpmemctx );
|
2004-10-08 08:54:19 +08:00
|
|
|
if ( set == NULL ) {
|
2000-06-30 06:02:15 +08:00
|
|
|
SF_ERROR(memory);
|
2004-10-08 08:54:19 +08:00
|
|
|
}
|
2005-08-27 00:52:51 +08:00
|
|
|
set->bv_val = cp->set_op->o_tmpcalloc( len + 1, sizeof(char),
|
|
|
|
cp->set_op->o_tmpmemctx );
|
2004-10-08 08:54:19 +08:00
|
|
|
if ( BER_BVISNULL( set ) ) {
|
|
|
|
SF_ERROR( memory );
|
|
|
|
}
|
|
|
|
AC_MEMCPY( set->bv_val, &filter[ - len - 1 ], len );
|
2002-01-02 19:00:36 +08:00
|
|
|
set->bv_len = len;
|
2004-10-08 08:54:19 +08:00
|
|
|
SF_PUSH( set );
|
2000-06-30 06:02:15 +08:00
|
|
|
set = NULL;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case '-':
|
|
|
|
c = *filter++;
|
2004-10-08 08:54:19 +08:00
|
|
|
if ( c != '>' ) {
|
|
|
|
SF_ERROR( syntax );
|
|
|
|
}
|
2000-06-30 06:02:15 +08:00
|
|
|
/* fall through to next case */
|
|
|
|
|
|
|
|
case '/':
|
2004-10-08 08:54:19 +08:00
|
|
|
if ( IS_OP( SF_TOP() ) ) {
|
|
|
|
SF_ERROR( syntax );
|
|
|
|
}
|
|
|
|
SF_PUSH( '/' );
|
2000-06-30 06:02:15 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2004-10-08 08:54:19 +08:00
|
|
|
if ( ( c != '_' )
|
|
|
|
&& ( c < 'A' || c > 'Z' )
|
|
|
|
&& ( c < 'a' || c > 'z' ) )
|
2000-06-30 06:02:15 +08:00
|
|
|
{
|
2004-10-08 08:54:19 +08:00
|
|
|
SF_ERROR( syntax );
|
2000-06-30 06:02:15 +08:00
|
|
|
}
|
|
|
|
filter--;
|
2004-10-08 08:54:19 +08:00
|
|
|
for ( len = 1;
|
|
|
|
( c = filter[ len ] )
|
|
|
|
&& ( ( c >= '0' && c <= '9' )
|
|
|
|
|| ( c >= 'A' && c <= 'Z' )
|
|
|
|
|| ( c >= 'a' && c <= 'z' ) );
|
|
|
|
len++ )
|
|
|
|
/* count */ ;
|
|
|
|
if ( len == 4
|
|
|
|
&& memcmp( "this", filter, len ) == 0 )
|
2000-06-30 06:02:15 +08:00
|
|
|
{
|
2004-10-08 08:54:19 +08:00
|
|
|
if ( ( SF_TOP() == (void *)'/' ) || IS_SET( SF_TOP() ) ) {
|
|
|
|
SF_ERROR( syntax );
|
|
|
|
}
|
2005-08-27 00:52:51 +08:00
|
|
|
set = cp->set_op->o_tmpcalloc( 2, sizeof(struct berval),
|
|
|
|
cp->set_op->o_tmpmemctx );
|
2004-10-08 08:54:19 +08:00
|
|
|
if ( set == NULL ) {
|
|
|
|
SF_ERROR( memory );
|
|
|
|
}
|
2005-08-27 00:52:51 +08:00
|
|
|
ber_dupbv_x( set, target, cp->set_op->o_tmpmemctx );
|
2004-10-08 08:54:19 +08:00
|
|
|
if ( BER_BVISNULL( set ) ) {
|
|
|
|
SF_ERROR( memory );
|
|
|
|
}
|
2005-01-13 17:21:11 +08:00
|
|
|
BER_BVZERO( &set[ 1 ] );
|
2004-10-08 08:54:19 +08:00
|
|
|
|
|
|
|
} else if ( len == 4
|
|
|
|
&& memcmp( "user", filter, len ) == 0 )
|
2000-06-30 06:02:15 +08:00
|
|
|
{
|
2004-10-08 08:54:19 +08:00
|
|
|
if ( ( SF_TOP() == (void *)'/' ) || IS_SET( SF_TOP() ) ) {
|
|
|
|
SF_ERROR( syntax );
|
|
|
|
}
|
2005-08-27 00:52:51 +08:00
|
|
|
set = cp->set_op->o_tmpcalloc( 2, sizeof(struct berval),
|
|
|
|
cp->set_op->o_tmpmemctx );
|
2004-10-08 08:54:19 +08:00
|
|
|
if ( set == NULL ) {
|
|
|
|
SF_ERROR( memory );
|
|
|
|
}
|
2005-08-27 00:52:51 +08:00
|
|
|
ber_dupbv_x( set, user, cp->set_op->o_tmpmemctx );
|
2004-10-08 08:54:19 +08:00
|
|
|
if ( BER_BVISNULL( set ) ) {
|
|
|
|
SF_ERROR( memory );
|
|
|
|
}
|
2005-01-13 17:21:11 +08:00
|
|
|
BER_BVZERO( &set[ 1 ] );
|
2004-10-08 08:54:19 +08:00
|
|
|
|
|
|
|
} else if ( SF_TOP() != (void *)'/' ) {
|
|
|
|
SF_ERROR( syntax );
|
|
|
|
|
2000-06-30 06:02:15 +08:00
|
|
|
} else {
|
2004-10-08 08:28:16 +08:00
|
|
|
struct berval fb2;
|
|
|
|
AttributeDescription *ad = NULL;
|
|
|
|
const char *text = NULL;
|
|
|
|
|
2002-01-03 01:06:56 +08:00
|
|
|
SF_POP();
|
2002-01-02 19:00:36 +08:00
|
|
|
fb2.bv_val = filter;
|
|
|
|
fb2.bv_len = len;
|
2004-10-08 08:28:16 +08:00
|
|
|
|
|
|
|
if ( slap_bv2ad( &fb2, &ad, &text ) != LDAP_SUCCESS ) {
|
2004-10-08 08:54:19 +08:00
|
|
|
SF_ERROR( syntax );
|
2004-10-08 08:28:16 +08:00
|
|
|
}
|
2004-10-08 08:54:19 +08:00
|
|
|
|
|
|
|
/* NOTE: ad must have distinguishedName syntax
|
|
|
|
* or expand in an LDAP URI if c == '*'
|
|
|
|
*/
|
2004-10-08 08:28:16 +08:00
|
|
|
|
2004-10-08 01:05:48 +08:00
|
|
|
set = set_chase( gatherer,
|
2004-10-08 08:28:16 +08:00
|
|
|
cp, SF_POP(), ad, c == '*' );
|
2004-10-08 08:54:19 +08:00
|
|
|
if ( set == NULL ) {
|
|
|
|
SF_ERROR( memory );
|
|
|
|
}
|
|
|
|
if ( c == '*' ) {
|
2000-06-30 06:02:15 +08:00
|
|
|
len++;
|
2004-10-08 08:54:19 +08:00
|
|
|
}
|
2000-06-30 06:02:15 +08:00
|
|
|
}
|
|
|
|
filter += len;
|
2004-10-08 08:54:19 +08:00
|
|
|
SF_PUSH( set );
|
2000-06-30 06:02:15 +08:00
|
|
|
set = NULL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
set = SF_POP();
|
2004-10-08 08:54:19 +08:00
|
|
|
if ( IS_OP( set ) ) {
|
|
|
|
SF_ERROR( syntax );
|
|
|
|
}
|
|
|
|
if ( SF_TOP() == 0 ) {
|
|
|
|
/* FIXME: ok ? */ ;
|
2000-06-30 06:02:15 +08:00
|
|
|
|
2004-10-08 08:54:19 +08:00
|
|
|
} else if ( IS_OP( SF_TOP() ) ) {
|
2005-08-27 00:52:51 +08:00
|
|
|
op = (unsigned long)SF_POP();
|
2000-06-30 06:02:15 +08:00
|
|
|
lset = SF_POP();
|
2004-10-08 08:54:19 +08:00
|
|
|
set = slap_set_join( cp, lset, op, set );
|
|
|
|
if ( set == NULL ) {
|
|
|
|
SF_ERROR( memory );
|
|
|
|
}
|
|
|
|
|
2000-06-30 06:02:15 +08:00
|
|
|
} else {
|
2004-10-08 08:54:19 +08:00
|
|
|
SF_ERROR( syntax );
|
2000-06-30 06:02:15 +08:00
|
|
|
}
|
|
|
|
|
2004-10-08 08:54:19 +08:00
|
|
|
rc = slap_set_isempty( set ) ? 0 : 1;
|
|
|
|
if ( results ) {
|
2000-06-30 06:02:15 +08:00
|
|
|
*results = set;
|
|
|
|
set = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
_error:
|
2004-10-08 08:54:19 +08:00
|
|
|
if ( IS_SET( set ) ) {
|
2004-10-08 23:07:22 +08:00
|
|
|
slap_set_dispose( cp, set, 0 );
|
2004-10-08 08:54:19 +08:00
|
|
|
}
|
|
|
|
while ( ( set = SF_POP() ) ) {
|
|
|
|
if ( IS_SET( set ) ) {
|
2004-10-08 23:07:22 +08:00
|
|
|
slap_set_dispose( cp, set, 0 );
|
2004-10-08 08:54:19 +08:00
|
|
|
}
|
2000-06-30 06:02:15 +08:00
|
|
|
}
|
2004-10-08 08:54:19 +08:00
|
|
|
return rc;
|
2000-06-30 06:02:15 +08:00
|
|
|
}
|