]> git.sur5r.net Git - openldap/blob - servers/slapd/config.h
c5eb1eb44ed09c2e3c384e3b85728f01bbb52ef1
[openldap] / servers / slapd / config.h
1 /* config.h - configuration abstraction structure */
2
3 /* $OpenLDAP$ */
4 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
5  *
6  * Copyright 1998-2005 The OpenLDAP Foundation.
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted only as authorized by the OpenLDAP
11  * Public License.
12  *
13  * A copy of this license is available in the file LICENSE in the
14  * top-level directory of the distribution or, alternatively, at
15  * <http://www.OpenLDAP.org/license.html>.
16  */
17
18 typedef struct ConfigTable {
19         char *name;
20         char *what;
21         int min_args;
22         int max_args;
23         int length;
24         unsigned int arg_type;
25         void *arg_item;
26         char *attribute;
27         AttributeDescription *ad;
28         void *notify;
29 } ConfigTable;
30
31 #define ARGS_USERLAND   0x00000fff
32 #define ARGS_TYPES      0x000ff000
33 #define ARGS_POINTER    0x0001f000
34 #define ARGS_NUMERIC    0x0000f000
35 #define ARG_INT         0x00001000
36 #define ARG_LONG        0x00002000
37 #define ARG_BER_LEN_T   0x00004000
38 #define ARG_ON_OFF      0x00008000
39 #define ARG_STRING      0x00010000
40 #define ARG_DN          0x00020000
41 #define ARG_EXISTS      0x00040000      /* XXX not yet */
42 #define ARG_IGNORED     0x00080000
43
44 #define ARGS_SYNTAX     0xfff00000
45 #define ARG_PRE_BI      0x00100000
46 #define ARG_PRE_DB      0x00200000
47 #define ARG_DB          0x00400000      /* Only applies to DB */
48 #define ARG_MAY_DB      0x00800000      /* May apply to DB */
49 #define ARG_PAREN       0x01000000
50 #define ARG_NONZERO     0x02000000
51 #define ARG_UNIQUE      0x10000000
52 #define ARG_SPECIAL     0x20000000      /* one special case */
53 #define ARG_OFFSET      0x40000000
54 #define ARG_MAGIC       0x80000000
55
56 #define ARG_BAD_CONF    0xdead0000      /* overload return values */
57 #define ARG_UNKNOWN     0xc0de0000
58
59 typedef struct config_args_s {
60         int argc;
61         char **argv;
62         int argv_size;
63         char *line;
64         const char *fname;
65         unsigned long lineno;
66         char log[PATH_MAX + STRLENOF(": line 18446744073709551615") + 1];
67         int depth;
68         int value_int;   /* parsed first val */
69         long value_long; /* for simple cases */
70         ber_len_t value_ber_t;
71         char *value_string;
72         struct berval value_dn;
73         struct berval value_ndn;
74         int emit;       /* emit instead of setting */
75         int type;       /* ConfigTable.arg_type & ARGS_USERLAND */
76         BackendDB *be;
77         BackendInfo *bi;
78 } ConfigArgs;
79
80 typedef int (ConfigDriver)(ConfigArgs *c);
81
82 #ifdef SLAPD_MODULES
83 typedef struct modpath_s {
84         struct modpath_s *mp_next;
85         struct berval mp_path;
86         BerVarray mp_loads;
87 } ModPaths;
88 #endif
89
90 typedef struct ConfigFile {
91         struct ConfigFile *c_sibs;
92         struct ConfigFile *c_kids;
93         struct berval c_file;
94 #ifdef SLAPD_MODULES
95         ModPaths c_modpaths;
96         ModPaths *c_modlast;
97 #endif
98         BerVarray c_dseFiles;
99 } ConfigFile;
100
101 void config_back_init( ConfigFile *cfp, ConfigTable *ct );