2004-11-05 14:22:04 +08:00
|
|
|
/* config.h - configuration abstraction structure */
|
|
|
|
/* $OpenLDAP$ */
|
|
|
|
/* 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.
|
2004-11-05 14:22:04 +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>.
|
|
|
|
*/
|
|
|
|
|
2005-11-20 02:01:28 +08:00
|
|
|
#ifndef CONFIG_H
|
|
|
|
#define CONFIG_H
|
|
|
|
|
2007-07-26 01:21:05 +08:00
|
|
|
#include<ac/string.h>
|
|
|
|
|
2008-01-22 21:26:16 +08:00
|
|
|
LDAP_BEGIN_DECL
|
|
|
|
|
2005-02-21 02:33:40 +08:00
|
|
|
typedef struct ConfigTable {
|
2008-02-19 07:11:12 +08:00
|
|
|
const char *name;
|
|
|
|
const char *what;
|
2004-11-05 14:22:04 +08:00
|
|
|
int min_args;
|
|
|
|
int max_args;
|
|
|
|
int length;
|
2005-02-20 14:47:54 +08:00
|
|
|
unsigned int arg_type;
|
2004-11-05 14:22:04 +08:00
|
|
|
void *arg_item;
|
2008-02-19 07:11:12 +08:00
|
|
|
const char *attribute;
|
2004-11-05 14:22:04 +08:00
|
|
|
AttributeDescription *ad;
|
|
|
|
void *notify;
|
|
|
|
} ConfigTable;
|
|
|
|
|
2007-01-22 18:53:48 +08:00
|
|
|
/* search entries are returned according to this order */
|
2005-03-20 17:13:48 +08:00
|
|
|
typedef enum {
|
|
|
|
Cft_Abstract = 0,
|
|
|
|
Cft_Global,
|
2007-01-22 18:53:48 +08:00
|
|
|
Cft_Module,
|
2005-03-20 17:13:48 +08:00
|
|
|
Cft_Schema,
|
|
|
|
Cft_Backend,
|
|
|
|
Cft_Database,
|
|
|
|
Cft_Overlay,
|
2005-05-09 11:42:51 +08:00
|
|
|
Cft_Misc /* backend/overlay defined */
|
2005-03-20 17:13:48 +08:00
|
|
|
} ConfigType;
|
|
|
|
|
2005-02-21 09:10:23 +08:00
|
|
|
#define ARGS_USERLAND 0x00000fff
|
2006-05-11 10:13:03 +08:00
|
|
|
|
|
|
|
/* types are enumerated, not a bitmask */
|
|
|
|
#define ARGS_TYPES 0x0000f000
|
2005-02-21 09:10:23 +08:00
|
|
|
#define ARG_INT 0x00001000
|
|
|
|
#define ARG_LONG 0x00002000
|
2006-05-11 10:13:03 +08:00
|
|
|
#define ARG_BER_LEN_T 0x00003000
|
|
|
|
#define ARG_ON_OFF 0x00004000
|
|
|
|
#define ARG_STRING 0x00005000
|
|
|
|
#define ARG_BERVAL 0x00006000
|
|
|
|
#define ARG_DN 0x00007000
|
2007-09-05 03:32:54 +08:00
|
|
|
#define ARG_UINT 0x00008000
|
2009-04-20 08:31:33 +08:00
|
|
|
#define ARG_ATDESC 0x00009000
|
2009-07-25 14:47:00 +08:00
|
|
|
#define ARG_ULONG 0x0000a000
|
2017-04-09 09:21:06 +08:00
|
|
|
#define ARG_BINARY 0x0000b000
|
2004-11-05 14:22:04 +08:00
|
|
|
|
2006-05-11 10:13:03 +08:00
|
|
|
#define ARGS_SYNTAX 0xffff0000
|
|
|
|
#define ARG_IGNORED 0x00080000
|
2005-02-21 09:10:23 +08:00
|
|
|
#define ARG_PRE_BI 0x00100000
|
|
|
|
#define ARG_PRE_DB 0x00200000
|
|
|
|
#define ARG_DB 0x00400000 /* Only applies to DB */
|
|
|
|
#define ARG_MAY_DB 0x00800000 /* May apply to DB */
|
|
|
|
#define ARG_PAREN 0x01000000
|
|
|
|
#define ARG_NONZERO 0x02000000
|
2005-04-20 00:39:48 +08:00
|
|
|
#define ARG_NO_INSERT 0x04000000 /* no arbitrary inserting */
|
|
|
|
#define ARG_NO_DELETE 0x08000000 /* no runtime deletes */
|
2005-02-20 14:47:54 +08:00
|
|
|
#define ARG_UNIQUE 0x10000000
|
2005-06-29 06:06:24 +08:00
|
|
|
#define ARG_QUOTE 0x20000000 /* wrap with quotes before parsing */
|
2005-02-01 20:36:25 +08:00
|
|
|
#define ARG_OFFSET 0x40000000
|
|
|
|
#define ARG_MAGIC 0x80000000
|
2004-11-05 14:22:04 +08:00
|
|
|
|
2005-02-01 20:36:25 +08:00
|
|
|
#define ARG_BAD_CONF 0xdead0000 /* overload return values */
|
2004-11-05 14:22:04 +08:00
|
|
|
|
2005-05-09 11:42:51 +08:00
|
|
|
/* This is a config entry's e_private data */
|
|
|
|
typedef struct CfEntryInfo {
|
|
|
|
struct CfEntryInfo *ce_parent;
|
|
|
|
struct CfEntryInfo *ce_sibs;
|
|
|
|
struct CfEntryInfo *ce_kids;
|
|
|
|
Entry *ce_entry;
|
|
|
|
ConfigType ce_type;
|
|
|
|
BackendInfo *ce_bi;
|
|
|
|
BackendDB *ce_be;
|
|
|
|
void *ce_private;
|
|
|
|
} CfEntryInfo;
|
|
|
|
|
|
|
|
struct config_args_s;
|
|
|
|
|
|
|
|
/* Check if the child is allowed to be LDAPAdd'd to the parent */
|
|
|
|
typedef int (ConfigLDAPadd)(
|
|
|
|
CfEntryInfo *parent, Entry *child, struct config_args_s *ca);
|
|
|
|
|
|
|
|
/* Let the object create children out of slapd.conf */
|
|
|
|
typedef int (ConfigCfAdd)(
|
|
|
|
Operation *op, SlapReply *rs, Entry *parent, struct config_args_s *ca );
|
2005-03-02 12:46:50 +08:00
|
|
|
|
2011-03-17 01:29:10 +08:00
|
|
|
#ifdef SLAP_CONFIG_DELETE
|
|
|
|
/* Called when deleting a Cft_Misc Child object from cn=config */
|
|
|
|
typedef int (ConfigLDAPdel)(
|
|
|
|
CfEntryInfo *ce, Operation *op );
|
|
|
|
#endif
|
|
|
|
|
2005-03-02 12:46:50 +08:00
|
|
|
typedef struct ConfigOCs {
|
2008-02-19 07:11:12 +08:00
|
|
|
const char *co_def;
|
2005-05-09 11:42:51 +08:00
|
|
|
ConfigType co_type;
|
|
|
|
ConfigTable *co_table;
|
|
|
|
ConfigLDAPadd *co_ldadd;
|
|
|
|
ConfigCfAdd *co_cfadd;
|
2011-03-17 01:29:10 +08:00
|
|
|
#ifdef SLAP_CONFIG_DELETE
|
|
|
|
ConfigLDAPdel *co_lddel;
|
|
|
|
#endif
|
2005-05-09 13:02:23 +08:00
|
|
|
ObjectClass *co_oc;
|
2005-05-09 11:42:51 +08:00
|
|
|
struct berval *co_name;
|
2005-03-02 12:46:50 +08:00
|
|
|
} ConfigOCs;
|
|
|
|
|
2005-04-22 03:31:39 +08:00
|
|
|
typedef int (ConfigDriver)(struct config_args_s *c);
|
|
|
|
|
2007-12-28 01:36:39 +08:00
|
|
|
struct config_reply_s {
|
2007-08-03 20:02:07 +08:00
|
|
|
int err;
|
|
|
|
char msg[SLAP_TEXT_BUFLEN];
|
2007-12-28 01:36:39 +08:00
|
|
|
};
|
2007-08-03 20:02:07 +08:00
|
|
|
|
2004-11-05 14:22:04 +08:00
|
|
|
typedef struct config_args_s {
|
|
|
|
int argc;
|
|
|
|
char **argv;
|
|
|
|
int argv_size;
|
|
|
|
char *line;
|
2005-03-20 17:13:48 +08:00
|
|
|
char *tline;
|
2004-11-05 14:22:04 +08:00
|
|
|
const char *fname;
|
2005-07-18 13:48:21 +08:00
|
|
|
int lineno;
|
2017-04-09 09:21:06 +08:00
|
|
|
int linelen;
|
2007-12-15 23:23:23 +08:00
|
|
|
char log[MAXPATHLEN + STRLENOF(": line ") + LDAP_PVT_INTTYPE_CHARS(unsigned long)];
|
2007-08-03 20:02:07 +08:00
|
|
|
#define cr_msg reply.msg
|
|
|
|
ConfigReply reply;
|
2004-11-05 14:22:04 +08:00
|
|
|
int depth;
|
2005-04-13 14:38:00 +08:00
|
|
|
int valx; /* multi-valued value index */
|
2005-02-21 10:21:29 +08:00
|
|
|
/* parsed first val for simple cases */
|
|
|
|
union {
|
|
|
|
int v_int;
|
2007-09-05 03:32:54 +08:00
|
|
|
unsigned v_uint;
|
2005-02-21 10:21:29 +08:00
|
|
|
long v_long;
|
2013-11-17 09:21:48 +08:00
|
|
|
size_t v_ulong;
|
2005-02-21 10:21:29 +08:00
|
|
|
ber_len_t v_ber_t;
|
|
|
|
char *v_string;
|
2005-03-15 16:57:34 +08:00
|
|
|
struct berval v_bv;
|
2005-02-21 10:21:29 +08:00
|
|
|
struct {
|
|
|
|
struct berval vdn_dn;
|
|
|
|
struct berval vdn_ndn;
|
|
|
|
} v_dn;
|
2009-04-20 08:31:33 +08:00
|
|
|
AttributeDescription *v_ad;
|
2005-02-21 10:21:29 +08:00
|
|
|
} values;
|
|
|
|
/* return values for emit mode */
|
|
|
|
BerVarray rvalue_vals;
|
|
|
|
BerVarray rvalue_nvals;
|
2005-03-15 16:57:34 +08:00
|
|
|
#define SLAP_CONFIG_EMIT 0x2000 /* emit instead of set */
|
2005-03-21 16:31:48 +08:00
|
|
|
#define SLAP_CONFIG_ADD 0x4000 /* config file add vs LDAP add */
|
2005-03-15 16:57:34 +08:00
|
|
|
int op;
|
2004-11-05 14:22:04 +08:00
|
|
|
int type; /* ConfigTable.arg_type & ARGS_USERLAND */
|
2007-01-22 18:53:48 +08:00
|
|
|
Operation *ca_op;
|
2004-11-05 14:22:04 +08:00
|
|
|
BackendDB *be;
|
|
|
|
BackendInfo *bi;
|
2005-05-09 11:42:51 +08:00
|
|
|
Entry *ca_entry; /* entry being modified */
|
2008-01-22 21:26:16 +08:00
|
|
|
void *ca_private; /* anything */
|
2005-04-22 03:31:39 +08:00
|
|
|
ConfigDriver *cleanup;
|
2007-02-25 01:24:48 +08:00
|
|
|
ConfigType table; /* which config table did we come from */
|
2004-11-05 14:22:04 +08:00
|
|
|
} ConfigArgs;
|
|
|
|
|
2005-05-26 17:43:39 +08:00
|
|
|
/* If lineno is zero, we have an actual LDAP Add request from a client.
|
|
|
|
* Otherwise, we're reading a config file or a config dir.
|
|
|
|
*/
|
|
|
|
#define CONFIG_ONLINE_ADD(ca) (!((ca)->lineno))
|
|
|
|
|
2005-02-21 10:21:29 +08:00
|
|
|
#define value_int values.v_int
|
2007-09-05 03:32:54 +08:00
|
|
|
#define value_uint values.v_uint
|
2005-02-21 10:21:29 +08:00
|
|
|
#define value_long values.v_long
|
2009-07-25 14:47:00 +08:00
|
|
|
#define value_ulong values.v_ulong
|
2005-02-21 10:21:29 +08:00
|
|
|
#define value_ber_t values.v_ber_t
|
|
|
|
#define value_string values.v_string
|
2005-03-15 16:57:34 +08:00
|
|
|
#define value_bv values.v_bv
|
2005-02-21 10:21:29 +08:00
|
|
|
#define value_dn values.v_dn.vdn_dn
|
|
|
|
#define value_ndn values.v_dn.vdn_ndn
|
2009-04-20 08:31:33 +08:00
|
|
|
#define value_ad values.v_ad
|
2005-02-21 10:21:29 +08:00
|
|
|
|
2009-02-13 09:12:56 +08:00
|
|
|
int config_fp_parse_line(ConfigArgs *c);
|
|
|
|
|
2005-03-18 07:07:44 +08:00
|
|
|
int config_register_schema(ConfigTable *ct, ConfigOCs *co);
|
2005-07-12 03:03:27 +08:00
|
|
|
int config_del_vals(ConfigTable *cf, ConfigArgs *c);
|
2005-02-21 10:21:29 +08:00
|
|
|
int config_get_vals(ConfigTable *ct, ConfigArgs *c);
|
2005-03-15 16:57:34 +08:00
|
|
|
int config_add_vals(ConfigTable *ct, ConfigArgs *c);
|
2005-07-12 03:03:27 +08:00
|
|
|
|
|
|
|
void init_config_argv( ConfigArgs *c );
|
|
|
|
int init_config_attrs(ConfigTable *ct);
|
|
|
|
int init_config_ocs( ConfigOCs *ocs );
|
2015-09-07 12:09:51 +08:00
|
|
|
void config_parse_ldif( ConfigArgs *c );
|
2005-07-12 03:03:27 +08:00
|
|
|
int config_parse_vals(ConfigTable *ct, ConfigArgs *c, int valx);
|
2006-11-12 10:22:23 +08:00
|
|
|
int config_parse_add(ConfigTable *ct, ConfigArgs *c, int valx);
|
2005-07-12 03:03:27 +08:00
|
|
|
int read_config_file(const char *fname, int depth, ConfigArgs *cf,
|
|
|
|
ConfigTable *cft );
|
|
|
|
|
2005-03-15 16:57:34 +08:00
|
|
|
ConfigTable * config_find_keyword(ConfigTable *ct, ConfigArgs *c);
|
2005-05-09 11:42:51 +08:00
|
|
|
Entry * config_build_entry( Operation *op, SlapReply *rs, CfEntryInfo *parent,
|
|
|
|
ConfigArgs *c, struct berval *rdn, ConfigOCs *main, ConfigOCs *extra );
|
2005-11-20 02:01:28 +08:00
|
|
|
|
2009-07-29 17:04:39 +08:00
|
|
|
Listener *config_check_my_url(const char *url, LDAPURLDesc *lud);
|
2009-08-18 07:02:50 +08:00
|
|
|
int config_shadow( ConfigArgs *c, slap_mask_t flag );
|
2005-11-25 23:16:54 +08:00
|
|
|
#define config_slurp_shadow(c) config_shadow((c), SLAP_DBFLAG_SLURP_SHADOW)
|
|
|
|
#define config_sync_shadow(c) config_shadow((c), SLAP_DBFLAG_SYNC_SHADOW)
|
|
|
|
|
2005-11-20 02:01:28 +08:00
|
|
|
/* Make sure we don't exceed the bits reserved for userland */
|
|
|
|
#define config_check_userland(last) \
|
|
|
|
assert( ( ( (last) - 1 ) & ARGS_USERLAND ) == ( (last) - 1 ) );
|
|
|
|
|
2005-11-29 10:10:47 +08:00
|
|
|
#define SLAP_X_ORDERED_FMT "{%d}"
|
|
|
|
|
2009-07-14 08:52:45 +08:00
|
|
|
LDAP_SLAPD_V (slap_verbmasks *) slap_ldap_response_code;
|
2007-12-28 09:21:22 +08:00
|
|
|
extern int slap_ldap_response_code_register( struct berval *bv, int err );
|
2007-12-28 08:38:27 +08:00
|
|
|
|
2009-07-14 08:52:45 +08:00
|
|
|
LDAP_SLAPD_V (ConfigTable) olcDatabaseDummy[];
|
2008-10-13 04:20:46 +08:00
|
|
|
|
2008-01-22 21:26:16 +08:00
|
|
|
LDAP_END_DECL
|
|
|
|
|
2005-11-20 02:01:28 +08:00
|
|
|
#endif /* CONFIG_H */
|