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/>.
|
|
|
|
*
|
2019-01-15 02:46:16 +08:00
|
|
|
* Copyright 1998-2019 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
|
|
|
*/
|
|
|
|
|
2002-01-15 15:29:15 +08:00
|
|
|
#ifndef SLAP_SETS_H_
|
|
|
|
#define SLAP_SETS_H_
|
|
|
|
|
|
|
|
#include <ldap_cdefs.h>
|
|
|
|
|
|
|
|
LDAP_BEGIN_DECL
|
|
|
|
|
2003-04-12 14:56:42 +08:00
|
|
|
typedef struct slap_set_cookie {
|
2007-03-20 09:07:10 +08:00
|
|
|
Operation *set_op;
|
2003-04-12 14:56:42 +08:00
|
|
|
} SetCookie;
|
|
|
|
|
2000-06-30 06:02:15 +08:00
|
|
|
/* this routine needs to return the bervals instead of
|
|
|
|
* plain strings, since syntax is not known. It should
|
|
|
|
* also return the syntax or some "comparison cookie"
|
|
|
|
* that is used by set_filter.
|
|
|
|
*/
|
2004-10-08 08:28:16 +08:00
|
|
|
typedef BerVarray (SLAP_SET_GATHER)( SetCookie *cookie,
|
|
|
|
struct berval *name, AttributeDescription *ad);
|
2000-06-30 06:02:15 +08:00
|
|
|
|
2003-01-21 04:21:17 +08:00
|
|
|
LDAP_SLAPD_F (int) slap_set_filter(
|
|
|
|
SLAP_SET_GATHER gatherer,
|
2003-04-12 14:56:42 +08:00
|
|
|
SetCookie *cookie, struct berval *filter,
|
2004-10-08 08:28:16 +08:00
|
|
|
struct berval *user, struct berval *target, BerVarray *results);
|
2000-06-30 06:02:15 +08:00
|
|
|
|
2004-10-08 08:28:16 +08:00
|
|
|
LDAP_SLAPD_F (BerVarray) slap_set_join(SetCookie *cp,
|
2004-10-08 23:07:22 +08:00
|
|
|
BerVarray lset, unsigned op, BerVarray rset);
|
|
|
|
|
|
|
|
#define SLAP_SET_OPMASK 0x00FF
|
|
|
|
|
|
|
|
#define SLAP_SET_REFARR 0x0100
|
|
|
|
#define SLAP_SET_REFVAL 0x0200
|
|
|
|
#define SLAP_SET_REF (SLAP_SET_REFARR|SLAP_SET_REFVAL)
|
|
|
|
|
|
|
|
/* The unsigned "op" can be ORed with the flags below;
|
|
|
|
* - if the rset's values must not be freed, or must be copied if kept,
|
|
|
|
* it is ORed with SLAP_SET_RREFVAL
|
|
|
|
* - if the rset array must not be freed, or must be copied if kept,
|
|
|
|
* it is ORed with SLAP_SET_RREFARR
|
|
|
|
* - the same applies to the lset with SLAP_SET_LREFVAL and SLAP_SET_LREFARR
|
|
|
|
* - it is assumed that SLAP_SET_REFVAL implies SLAP_SET_REFARR,
|
2008-05-17 19:56:10 +08:00
|
|
|
* i.e. the former is checked only if the latter is set.
|
2004-10-08 23:07:22 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#define SLAP_SET_RREFARR SLAP_SET_REFARR
|
|
|
|
#define SLAP_SET_RREFVAL SLAP_SET_REFVAL
|
|
|
|
#define SLAP_SET_RREF SLAP_SET_REF
|
|
|
|
#define SLAP_SET_RREFMASK 0x0F00
|
|
|
|
|
|
|
|
#define SLAP_SET_RREF2REF(r) ((r) & SLAP_SET_RREFMASK)
|
|
|
|
|
|
|
|
#define SLAP_SET_LREFARR 0x1000
|
|
|
|
#define SLAP_SET_LREFVAL 0x2000
|
|
|
|
#define SLAP_SET_LREF (SLAP_SET_LREFARR|SLAP_SET_LREFVAL)
|
|
|
|
#define SLAP_SET_LREFMASK 0xF000
|
|
|
|
|
|
|
|
#define SLAP_SET_LREF2REF(r) (((r) & SLAP_SET_LREFMASK) >> 4)
|
2004-10-08 01:05:48 +08:00
|
|
|
|
2002-01-15 15:29:15 +08:00
|
|
|
LDAP_END_DECL
|
|
|
|
|
2002-01-18 12:50:34 +08:00
|
|
|
#endif
|