]> git.sur5r.net Git - openldap/blob - servers/slapd/config.h
735471a1fc591bfba86d95fa00f4d4f7506129ae
[openldap] / servers / slapd / config.h
1 /* config.h - configuration abstraction structure */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 1998-2005 The OpenLDAP Foundation.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted only as authorized by the OpenLDAP
10  * Public License.
11  *
12  * A copy of this license is available in the file LICENSE in the
13  * top-level directory of the distribution or, alternatively, at
14  * <http://www.OpenLDAP.org/license.html>.
15  */
16
17 #ifndef CONFIG_H
18 #define CONFIG_H
19
20 typedef struct ConfigTable {
21         char *name;
22         char *what;
23         int min_args;
24         int max_args;
25         int length;
26         unsigned int arg_type;
27         void *arg_item;
28         char *attribute;
29         AttributeDescription *ad;
30         void *notify;
31 } ConfigTable;
32
33 typedef enum {
34         Cft_Abstract = 0,
35         Cft_Global,
36         Cft_Schema,
37         Cft_Backend,
38         Cft_Database,
39         Cft_Overlay,
40         Cft_Include,
41         Cft_Module,
42         Cft_Misc        /* backend/overlay defined */
43 } ConfigType;
44
45 #define ARGS_USERLAND   0x00000fff
46 #define ARGS_TYPES      0x000ff000
47 #define ARGS_POINTER    0x0003f000
48 #define ARGS_NUMERIC    0x0000f000
49 #define ARG_INT         0x00001000
50 #define ARG_LONG        0x00002000
51 #define ARG_BER_LEN_T   0x00004000
52 #define ARG_ON_OFF      0x00008000
53 #define ARG_STRING      0x00010000
54 #define ARG_BERVAL      0x00020000
55 #define ARG_DN          0x00040000
56 #define ARG_IGNORED     0x00080000
57
58 #define ARGS_SYNTAX     0xfff00000
59 #define ARG_PRE_BI      0x00100000
60 #define ARG_PRE_DB      0x00200000
61 #define ARG_DB          0x00400000      /* Only applies to DB */
62 #define ARG_MAY_DB      0x00800000      /* May apply to DB */
63 #define ARG_PAREN       0x01000000
64 #define ARG_NONZERO     0x02000000
65 #define ARG_NO_INSERT   0x04000000      /* no arbitrary inserting */
66 #define ARG_NO_DELETE   0x08000000      /* no runtime deletes */
67 #define ARG_UNIQUE      0x10000000
68 #define ARG_QUOTE       0x20000000      /* wrap with quotes before parsing */
69 #define ARG_OFFSET      0x40000000
70 #define ARG_MAGIC       0x80000000
71
72 #define ARG_BAD_CONF    0xdead0000      /* overload return values */
73
74 /* This is a config entry's e_private data */
75 typedef struct CfEntryInfo {
76         struct CfEntryInfo *ce_parent;
77         struct CfEntryInfo *ce_sibs;
78         struct CfEntryInfo *ce_kids;
79         Entry *ce_entry;
80         ConfigType ce_type;
81         BackendInfo *ce_bi;
82         BackendDB *ce_be;
83         void *ce_private;
84 } CfEntryInfo;
85
86 struct config_args_s;
87
88 /* Check if the child is allowed to be LDAPAdd'd to the parent */
89 typedef int (ConfigLDAPadd)(
90         CfEntryInfo *parent, Entry *child, struct config_args_s *ca);
91
92 /* Let the object create children out of slapd.conf */
93 typedef int (ConfigCfAdd)(
94         Operation *op, SlapReply *rs, Entry *parent, struct config_args_s *ca );
95
96 typedef struct ConfigOCs {
97         char *co_def;
98         ConfigType co_type;
99         ConfigTable *co_table;
100         ConfigLDAPadd *co_ldadd;
101         ConfigCfAdd *co_cfadd;
102         ObjectClass *co_oc;
103         struct berval *co_name;
104 } ConfigOCs;
105
106 typedef int (ConfigDriver)(struct config_args_s *c);
107
108 typedef struct config_args_s {
109         int argc;
110         char **argv;
111         int argv_size;
112         char *line;
113         char *tline;
114         const char *fname;
115         int lineno;
116         char log[MAXPATHLEN + STRLENOF(": line 18446744073709551615") + 1];
117         char msg[SLAP_TEXT_BUFLEN];
118         int depth;
119         int valx;       /* multi-valued value index */
120         /* parsed first val for simple cases */
121         union {
122                 int v_int;
123                 long v_long;
124                 ber_len_t v_ber_t;
125                 char *v_string;
126                 struct berval v_bv;
127                 struct {
128                         struct berval vdn_dn;
129                         struct berval vdn_ndn;
130                 } v_dn;
131         } values;
132         /* return values for emit mode */
133         BerVarray rvalue_vals;
134         BerVarray rvalue_nvals;
135 #define SLAP_CONFIG_EMIT        0x2000  /* emit instead of set */
136 #define SLAP_CONFIG_ADD         0x4000  /* config file add vs LDAP add */
137         int op;
138         int type;       /* ConfigTable.arg_type & ARGS_USERLAND */
139         BackendDB *be;
140         BackendInfo *bi;
141         Entry *ca_entry;        /* entry being modified */
142         void *private;  /* anything */
143         ConfigDriver *cleanup;
144 } ConfigArgs;
145
146 /* If lineno is zero, we have an actual LDAP Add request from a client.
147  * Otherwise, we're reading a config file or a config dir.
148  */
149 #define CONFIG_ONLINE_ADD(ca)   (!((ca)->lineno))
150
151 #define value_int values.v_int
152 #define value_long values.v_long
153 #define value_ber_t values.v_ber_t
154 #define value_string values.v_string
155 #define value_bv values.v_bv
156 #define value_dn values.v_dn.vdn_dn
157 #define value_ndn values.v_dn.vdn_ndn
158
159 int config_register_schema(ConfigTable *ct, ConfigOCs *co);
160 int config_del_vals(ConfigTable *cf, ConfigArgs *c);
161 int config_get_vals(ConfigTable *ct, ConfigArgs *c);
162 int config_add_vals(ConfigTable *ct, ConfigArgs *c);
163
164 void init_config_argv( ConfigArgs *c );
165 int init_config_attrs(ConfigTable *ct);
166 int init_config_ocs( ConfigOCs *ocs );
167 int config_parse_vals(ConfigTable *ct, ConfigArgs *c, int valx);
168 int config_parse_add(ConfigTable *ct, ConfigArgs *c);
169 int read_config_file(const char *fname, int depth, ConfigArgs *cf,
170         ConfigTable *cft );
171
172 ConfigTable * config_find_keyword(ConfigTable *ct, ConfigArgs *c);
173 Entry * config_build_entry( Operation *op, SlapReply *rs, CfEntryInfo *parent,
174         ConfigArgs *c, struct berval *rdn, ConfigOCs *main, ConfigOCs *extra );
175
176 int config_shadow( ConfigArgs *c, int flag );
177 #define config_slurp_shadow(c)  config_shadow((c), SLAP_DBFLAG_SLURP_SHADOW)
178 #define config_sync_shadow(c)   config_shadow((c), SLAP_DBFLAG_SYNC_SHADOW)
179
180         /* Make sure we don't exceed the bits reserved for userland */
181 #define config_check_userland(last) \
182         assert( ( ( (last) - 1 ) & ARGS_USERLAND ) == ( (last) - 1 ) );
183
184 #define SLAP_X_ORDERED_FMT      "{%d}"
185
186 #endif /* CONFIG_H */