openldap/servers/slapd/config.h

138 lines
3.5 KiB
C
Raw Normal View History

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/>.
*
2005-01-02 04:49:32 +08:00
* Copyright 1998-2005 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>.
*/
#ifdef HAVE_LIMITS_H
#include <limits.h>
#endif
#ifndef PATH_MAX
#define PATH_MAX 4096
#endif
2005-02-21 02:33:40 +08:00
typedef struct ConfigTable {
2004-11-05 14:22:04 +08:00
char *name;
char *what;
2004-11-05 14:22:04 +08:00
int min_args;
int max_args;
int length;
unsigned int arg_type;
2004-11-05 14:22:04 +08:00
void *arg_item;
char *attribute;
AttributeDescription *ad;
void *notify;
} ConfigTable;
2005-03-20 17:13:48 +08:00
typedef enum {
Cft_Abstract = 0,
Cft_Global,
Cft_Schema,
Cft_Backend,
Cft_Database,
Cft_Overlay,
Cft_Include,
2005-03-21 16:31:48 +08:00
Cft_Module
2005-03-20 17:13:48 +08:00
} ConfigType;
#define ARGS_USERLAND 0x00000fff
#define ARGS_TYPES 0x000ff000
#define ARGS_POINTER 0x0003f000
#define ARGS_NUMERIC 0x0000f000
#define ARG_INT 0x00001000
#define ARG_LONG 0x00002000
#define ARG_BER_LEN_T 0x00004000
#define ARG_ON_OFF 0x00008000
#define ARG_STRING 0x00010000
#define ARG_BERVAL 0x00020000
#define ARG_DN 0x00040000
#define ARG_IGNORED 0x00080000
2004-11-05 14:22:04 +08:00
#define ARGS_SYNTAX 0xfff00000
#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
#define ARG_UNIQUE 0x10000000
2005-02-21 22:57:02 +08:00
#define ARG_MUTEX 0x20000000 /* modify in single-thread mode */
#define ARG_OFFSET 0x40000000
#define ARG_MAGIC 0x80000000
2004-11-05 14:22:04 +08:00
#define ARG_BAD_CONF 0xdead0000 /* overload return values */
#define ARG_UNKNOWN 0xc0de0000
2004-11-05 14:22:04 +08:00
extern ConfigTable config_back_cf_table[];
typedef struct ConfigOCs {
char *def;
2005-03-20 17:13:48 +08:00
ConfigType cft;
ObjectClass **oc;
#if 0
BI_op_add *add; /* optional, add-specific processing */
BI_op_delete *del; /* mandatory, delete implementation */
BI_op_modify *mod; /* optional, mod-specific */
BI_op_modrdn *ren; /* optional, modrdn... */
#endif
} ConfigOCs;
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;
unsigned long lineno;
char log[PATH_MAX + STRLENOF(": line 18446744073709551615") + 1];
2004-11-05 14:22:04 +08:00
int depth;
2005-02-21 10:21:29 +08:00
/* parsed first val for simple cases */
union {
int v_int;
long v_long;
ber_len_t v_ber_t;
char *v_string;
struct berval v_bv;
2005-02-21 10:21:29 +08:00
struct {
struct berval vdn_dn;
struct berval vdn_ndn;
} v_dn;
} values;
/* return values for emit mode */
BerVarray rvalue_vals;
BerVarray rvalue_nvals;
#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 */
int op;
2004-11-05 14:22:04 +08:00
int type; /* ConfigTable.arg_type & ARGS_USERLAND */
BackendDB *be;
BackendInfo *bi;
2005-03-21 16:31:48 +08:00
void *private; /* anything */
2004-11-05 14:22:04 +08:00
} ConfigArgs;
2005-02-21 10:21:29 +08:00
#define value_int values.v_int
#define value_long values.v_long
#define value_ber_t values.v_ber_t
#define value_string values.v_string
#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
2004-11-05 14:22:04 +08:00
typedef int (ConfigDriver)(ConfigArgs *c);
2005-02-21 02:33:40 +08:00
int config_register_schema(ConfigTable *ct, ConfigOCs *co);
2005-02-21 10:21:29 +08:00
int config_get_vals(ConfigTable *ct, ConfigArgs *c);
int config_add_vals(ConfigTable *ct, ConfigArgs *c);
ConfigTable * config_find_keyword(ConfigTable *ct, ConfigArgs *c);