]> git.sur5r.net Git - openldap/blob - servers/slapd/config.h
Happy New Year (belated)
[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-2008 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 #include<ac/string.h>
21
22 typedef struct ConfigTable {
23         char *name;
24         char *what;
25         int min_args;
26         int max_args;
27         int length;
28         unsigned int arg_type;
29         void *arg_item;
30         char *attribute;
31         AttributeDescription *ad;
32         void *notify;
33 } ConfigTable;
34
35 /* search entries are returned according to this order */
36 typedef enum {
37         Cft_Abstract = 0,
38         Cft_Global,
39         Cft_Module,
40         Cft_Schema,
41         Cft_Backend,
42         Cft_Database,
43         Cft_Overlay,
44         Cft_Misc        /* backend/overlay defined */
45 } ConfigType;
46
47 #define ARGS_USERLAND   0x00000fff
48
49 /* types are enumerated, not a bitmask */
50 #define ARGS_TYPES      0x0000f000
51 #define ARG_INT         0x00001000
52 #define ARG_LONG        0x00002000
53 #define ARG_BER_LEN_T   0x00003000
54 #define ARG_ON_OFF      0x00004000
55 #define ARG_STRING      0x00005000
56 #define ARG_BERVAL      0x00006000
57 #define ARG_DN          0x00007000
58 #define ARG_UINT        0x00008000
59
60 #define ARGS_SYNTAX     0xffff0000
61 #define ARG_IGNORED     0x00080000
62 #define ARG_PRE_BI      0x00100000
63 #define ARG_PRE_DB      0x00200000
64 #define ARG_DB          0x00400000      /* Only applies to DB */
65 #define ARG_MAY_DB      0x00800000      /* May apply to DB */
66 #define ARG_PAREN       0x01000000
67 #define ARG_NONZERO     0x02000000
68 #define ARG_NO_INSERT   0x04000000      /* no arbitrary inserting */
69 #define ARG_NO_DELETE   0x08000000      /* no runtime deletes */
70 #define ARG_UNIQUE      0x10000000
71 #define ARG_QUOTE       0x20000000      /* wrap with quotes before parsing */
72 #define ARG_OFFSET      0x40000000
73 #define ARG_MAGIC       0x80000000
74
75 #define ARG_BAD_CONF    0xdead0000      /* overload return values */
76
77 /* This is a config entry's e_private data */
78 typedef struct CfEntryInfo {
79         struct CfEntryInfo *ce_parent;
80         struct CfEntryInfo *ce_sibs;
81         struct CfEntryInfo *ce_kids;
82         Entry *ce_entry;
83         ConfigType ce_type;
84         BackendInfo *ce_bi;
85         BackendDB *ce_be;
86         void *ce_private;
87 } CfEntryInfo;
88
89 struct config_args_s;
90
91 /* Check if the child is allowed to be LDAPAdd'd to the parent */
92 typedef int (ConfigLDAPadd)(
93         CfEntryInfo *parent, Entry *child, struct config_args_s *ca);
94
95 /* Let the object create children out of slapd.conf */
96 typedef int (ConfigCfAdd)(
97         Operation *op, SlapReply *rs, Entry *parent, struct config_args_s *ca );
98
99 typedef struct ConfigOCs {
100         char *co_def;
101         ConfigType co_type;
102         ConfigTable *co_table;
103         ConfigLDAPadd *co_ldadd;
104         ConfigCfAdd *co_cfadd;
105         ObjectClass *co_oc;
106         struct berval *co_name;
107 } ConfigOCs;
108
109 typedef int (ConfigDriver)(struct config_args_s *c);
110
111 struct config_reply_s {
112         int err;
113         char msg[SLAP_TEXT_BUFLEN];
114 };
115
116 typedef struct config_args_s {
117         int argc;
118         char **argv;
119         int argv_size;
120         char *line;
121         char *tline;
122         const char *fname;
123         int lineno;
124         char log[MAXPATHLEN + STRLENOF(": line ") + LDAP_PVT_INTTYPE_CHARS(unsigned long)];
125 #define cr_msg reply.msg
126         ConfigReply reply;
127         int depth;
128         int valx;       /* multi-valued value index */
129         /* parsed first val for simple cases */
130         union {
131                 int v_int;
132                 unsigned v_uint;
133                 long v_long;
134                 ber_len_t v_ber_t;
135                 char *v_string;
136                 struct berval v_bv;
137                 struct {
138                         struct berval vdn_dn;
139                         struct berval vdn_ndn;
140                 } v_dn;
141         } values;
142         /* return values for emit mode */
143         BerVarray rvalue_vals;
144         BerVarray rvalue_nvals;
145 #define SLAP_CONFIG_EMIT        0x2000  /* emit instead of set */
146 #define SLAP_CONFIG_ADD         0x4000  /* config file add vs LDAP add */
147         int op;
148         int type;       /* ConfigTable.arg_type & ARGS_USERLAND */
149         Operation *ca_op;
150         BackendDB *be;
151         BackendInfo *bi;
152         Entry *ca_entry;        /* entry being modified */
153         void *private;  /* anything */
154         ConfigDriver *cleanup;
155         ConfigType table;       /* which config table did we come from */
156 } ConfigArgs;
157
158 /* If lineno is zero, we have an actual LDAP Add request from a client.
159  * Otherwise, we're reading a config file or a config dir.
160  */
161 #define CONFIG_ONLINE_ADD(ca)   (!((ca)->lineno))
162
163 #define value_int values.v_int
164 #define value_uint values.v_uint
165 #define value_long values.v_long
166 #define value_ber_t values.v_ber_t
167 #define value_string values.v_string
168 #define value_bv values.v_bv
169 #define value_dn values.v_dn.vdn_dn
170 #define value_ndn values.v_dn.vdn_ndn
171
172 int config_register_schema(ConfigTable *ct, ConfigOCs *co);
173 int config_del_vals(ConfigTable *cf, ConfigArgs *c);
174 int config_get_vals(ConfigTable *ct, ConfigArgs *c);
175 int config_add_vals(ConfigTable *ct, ConfigArgs *c);
176
177 void init_config_argv( ConfigArgs *c );
178 int init_config_attrs(ConfigTable *ct);
179 int init_config_ocs( ConfigOCs *ocs );
180 int config_parse_vals(ConfigTable *ct, ConfigArgs *c, int valx);
181 int config_parse_add(ConfigTable *ct, ConfigArgs *c, int valx);
182 int read_config_file(const char *fname, int depth, ConfigArgs *cf,
183         ConfigTable *cft );
184
185 ConfigTable * config_find_keyword(ConfigTable *ct, ConfigArgs *c);
186 Entry * config_build_entry( Operation *op, SlapReply *rs, CfEntryInfo *parent,
187         ConfigArgs *c, struct berval *rdn, ConfigOCs *main, ConfigOCs *extra );
188
189 int config_shadow( ConfigArgs *c, int flag );
190 #define config_slurp_shadow(c)  config_shadow((c), SLAP_DBFLAG_SLURP_SHADOW)
191 #define config_sync_shadow(c)   config_shadow((c), SLAP_DBFLAG_SYNC_SHADOW)
192
193         /* Make sure we don't exceed the bits reserved for userland */
194 #define config_check_userland(last) \
195         assert( ( ( (last) - 1 ) & ARGS_USERLAND ) == ( (last) - 1 ) );
196
197 #define SLAP_X_ORDERED_FMT      "{%d}"
198
199 extern slap_verbmasks *slap_ldap_response_code;
200 extern int slap_ldap_response_code_register( struct berval *bv, int err );
201
202 #endif /* CONFIG_H */