]> git.sur5r.net Git - openldap/blob - servers/slapd/bconfig.c
ITS#3937 add config_syslog var to track state of loglevel directive,
[openldap] / servers / slapd / bconfig.c
1 /* bconfig.c - the config backend */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 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 /* ACKNOWLEDGEMENTS:
17  * This work was originally developed by Howard Chu for inclusion
18  * in OpenLDAP Software.
19  */
20
21 #include "portable.h"
22
23 #include <stdio.h>
24 #include <ac/string.h>
25 #include <ac/ctype.h>
26 #include <ac/errno.h>
27 #include <sys/stat.h>
28
29 #include "slap.h"
30
31 #ifdef LDAP_SLAPI
32 #include "slapi/slapi.h"
33 #endif
34
35 #include <ldif.h>
36 #include <lutil.h>
37
38 #include "config.h"
39
40 static struct berval config_rdn = BER_BVC("cn=config");
41 static struct berval schema_rdn = BER_BVC("cn=schema");
42
43 #define IFMT    "{%d}"
44
45 #ifdef SLAPD_MODULES
46 typedef struct modpath_s {
47         struct modpath_s *mp_next;
48         struct berval mp_path;
49         BerVarray mp_loads;
50 } ModPaths;
51
52 static ModPaths modpaths, *modlast = &modpaths, *modcur = &modpaths;
53 #endif
54
55 typedef struct ConfigFile {
56         struct ConfigFile *c_sibs;
57         struct ConfigFile *c_kids;
58         struct berval c_file;
59         AttributeType *c_at_head, *c_at_tail;
60         ContentRule *c_cr_head, *c_cr_tail;
61         ObjectClass *c_oc_head, *c_oc_tail;
62         OidMacro *c_om_head, *c_om_tail;
63         BerVarray c_dseFiles;
64 } ConfigFile;
65
66 typedef struct {
67         ConfigFile *cb_config;
68         CfEntryInfo *cb_root;
69         BackendDB       cb_db;  /* underlying database */
70         int             cb_got_ldif;
71         int             cb_use_ldif;
72 } CfBackInfo;
73
74 /* These do nothing in slapd, they're kept only to make them
75  * editable here.
76  */
77 static char *replica_pidFile, *replica_argsFile;
78 static int replicationInterval;
79
80 static char     *passwd_salt;
81 static char     *logfileName;
82 #ifdef SLAP_AUTH_REWRITE
83 static BerVarray authz_rewrites;
84 #endif
85
86 static struct berval cfdir;
87
88 /* Private state */
89 static AttributeDescription *cfAd_backend, *cfAd_database, *cfAd_overlay,
90         *cfAd_include;
91
92 static ConfigFile *cfn;
93
94 static Avlnode *CfOcTree;
95
96 static int config_add_internal( CfBackInfo *cfb, Entry *e, ConfigArgs *ca,
97         SlapReply *rs, int *renumber );
98
99 static ConfigDriver config_fname;
100 static ConfigDriver config_cfdir;
101 static ConfigDriver config_generic;
102 static ConfigDriver config_search_base;
103 static ConfigDriver config_passwd_hash;
104 static ConfigDriver config_schema_dn;
105 static ConfigDriver config_sizelimit;
106 static ConfigDriver config_timelimit;
107 static ConfigDriver config_overlay;
108 static ConfigDriver config_suffix; 
109 static ConfigDriver config_rootdn;
110 static ConfigDriver config_rootpw;
111 static ConfigDriver config_restrict;
112 static ConfigDriver config_allows;
113 static ConfigDriver config_disallows;
114 static ConfigDriver config_requires;
115 static ConfigDriver config_security;
116 static ConfigDriver config_referral;
117 static ConfigDriver config_loglevel;
118 static ConfigDriver config_replica;
119 static ConfigDriver config_updatedn;
120 static ConfigDriver config_updateref;
121 static ConfigDriver config_include;
122 #ifdef HAVE_TLS
123 static ConfigDriver config_tls_option;
124 static ConfigDriver config_tls_config;
125 #endif
126 extern ConfigDriver syncrepl_config;
127
128 enum {
129         CFG_ACL = 1,
130         CFG_BACKEND,
131         CFG_DATABASE,
132         CFG_TLS_RAND,
133         CFG_TLS_CIPHER,
134         CFG_TLS_CERT_FILE,
135         CFG_TLS_CERT_KEY,
136         CFG_TLS_CA_PATH,
137         CFG_TLS_CA_FILE,
138         CFG_TLS_VERIFY,
139         CFG_TLS_CRLCHECK,
140         CFG_CONCUR,
141         CFG_THREADS,
142         CFG_SALT,
143         CFG_LIMITS,
144         CFG_RO,
145         CFG_REWRITE,
146         CFG_DEPTH,
147         CFG_OID,
148         CFG_OC,
149         CFG_DIT,
150         CFG_ATTR,
151         CFG_ATOPT,
152         CFG_REPLOG,
153         CFG_ROOTDSE,
154         CFG_LOGFILE,
155         CFG_PLUGIN,
156         CFG_MODLOAD,
157         CFG_MODPATH,
158         CFG_LASTMOD,
159         CFG_AZPOLICY,
160         CFG_AZREGEXP,
161         CFG_SASLSECP,
162         CFG_SSTR_IF_MAX,
163         CFG_SSTR_IF_MIN,
164
165         CFG_LAST
166 };
167
168 typedef struct {
169         char *name, *oid;
170 } OidRec;
171
172 static OidRec OidMacros[] = {
173         /* OpenLDAProot:666.11.1 */
174         { "OLcfg", "1.3.6.1.4.1.4203.666.11.1" },
175         { "OLcfgAt", "OLcfg:3" },
176         { "OLcfgGlAt", "OLcfgAt:0" },
177         { "OLcfgBkAt", "OLcfgAt:1" },
178         { "OLcfgDbAt", "OLcfgAt:2" },
179         { "OLcfgOvAt", "OLcfgAt:3" },
180         { "OLcfgOc", "OLcfg:4" },
181         { "OLcfgGlOc", "OLcfgOc:0" },
182         { "OLcfgBkOc", "OLcfgOc:1" },
183         { "OLcfgDbOc", "OLcfgOc:2" },
184         { "OLcfgOvOc", "OLcfgOc:3" },
185         { "OMsyn", "1.3.6.1.4.1.1466.115.121.1" },
186         { "OMsInteger", "OMsyn:27" },
187         { "OMsBoolean", "OMsyn:7" },
188         { "OMsDN", "OMsyn:12" },
189         { "OMsDirectoryString", "OMsyn:15" },
190         { "OMsOctetString", "OMsyn:40" },
191         { NULL, NULL }
192 };
193
194 /*
195  * OLcfg{Bk|Db}{Oc|At}:0                -> common
196  * OLcfg{Bk|Db}{Oc|At}:1                -> bdb
197  * OLcfg{Bk|Db}{Oc|At}:2                -> ldif
198  * OLcfg{Bk|Db}{Oc|At}:3                -> ldap?
199  */
200
201 /* alphabetical ordering */
202
203 static ConfigTable config_back_cf_table[] = {
204         /* This attr is read-only */
205         { "", "", 0, 0, 0, ARG_MAGIC,
206                 &config_fname, "( OLcfgGlAt:78 NAME 'olcConfigFile' "
207                         "DESC 'File for slapd configuration directives' "
208                         "EQUALITY caseIgnoreMatch "
209                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
210         { "", "", 0, 0, 0, ARG_MAGIC,
211                 &config_cfdir, "( OLcfgGlAt:79 NAME 'olcConfigDir' "
212                         "DESC 'Directory for slapd configuration backend' "
213                         "EQUALITY caseIgnoreMatch "
214                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
215         { "access",     NULL, 0, 0, 0, ARG_MAY_DB|ARG_MAGIC|CFG_ACL,
216                 &config_generic, "( OLcfgGlAt:1 NAME 'olcAccess' "
217                         "DESC 'Access Control List' "
218                         "EQUALITY caseIgnoreMatch "
219                         "SYNTAX OMsDirectoryString X-ORDERED 'VALUES' )", NULL, NULL },
220         { "allows",     "features", 2, 0, 5, ARG_PRE_DB|ARG_MAGIC,
221                 &config_allows, "( OLcfgGlAt:2 NAME 'olcAllows' "
222                         "DESC 'Allowed set of deprecated features' "
223                         "EQUALITY caseIgnoreMatch "
224                         "SYNTAX OMsDirectoryString )", NULL, NULL },
225         { "argsfile", "file", 2, 2, 0, ARG_STRING,
226                 &slapd_args_file, "( OLcfgGlAt:3 NAME 'olcArgsFile' "
227                         "DESC 'File for slapd command line options' "
228                         "EQUALITY caseIgnoreMatch "
229                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
230         { "attributeoptions", NULL, 0, 0, 0, ARG_MAGIC|CFG_ATOPT,
231                 &config_generic, "( OLcfgGlAt:5 NAME 'olcAttributeOptions' "
232                         "EQUALITY caseIgnoreMatch "
233                         "SYNTAX OMsDirectoryString )", NULL, NULL },
234         { "attribute",  "attribute", 2, 0, 9,
235                 ARG_PAREN|ARG_MAGIC|CFG_ATTR|ARG_NO_DELETE|ARG_NO_INSERT,
236                 &config_generic, "( OLcfgGlAt:4 NAME 'olcAttributeTypes' "
237                         "DESC 'OpenLDAP attributeTypes' "
238                         "EQUALITY caseIgnoreMatch "
239                         "SYNTAX OMsDirectoryString X-ORDERED 'VALUES' )",
240                                 NULL, NULL },
241         { "authid-rewrite", NULL, 2, 0, STRLENOF( "authid-rewrite" ),
242 #ifdef SLAP_AUTH_REWRITE
243                 ARG_MAGIC|CFG_REWRITE|ARG_NO_INSERT, &config_generic,
244 #else
245                 ARG_IGNORED, NULL,
246 #endif
247                  "( OLcfgGlAt:6 NAME 'olcAuthIDRewrite' "
248                         "EQUALITY caseIgnoreMatch "
249                         "SYNTAX OMsDirectoryString X-ORDERED 'VALUES' )", NULL, NULL },
250         { "authz-policy", "policy", 2, 2, 0, ARG_STRING|ARG_MAGIC|CFG_AZPOLICY,
251                 &config_generic, "( OLcfgGlAt:7 NAME 'olcAuthzPolicy' "
252                         "EQUALITY caseIgnoreMatch "
253                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
254         { "authz-regexp", NULL, 3, 3, 0, ARG_MAGIC|CFG_AZREGEXP|ARG_NO_INSERT,
255                 &config_generic, "( OLcfgGlAt:8 NAME 'olcAuthzRegexp' "
256                         "EQUALITY caseIgnoreMatch "
257                         "SYNTAX OMsDirectoryString X-ORDERED 'VALUES' )", NULL, NULL },
258         { "backend", "type", 2, 2, 0, ARG_PRE_DB|ARG_MAGIC|CFG_BACKEND,
259                 &config_generic, "( OLcfgGlAt:9 NAME 'olcBackend' "
260                         "DESC 'A type of backend' "
261                         "EQUALITY caseIgnoreMatch "
262                         "SYNTAX OMsDirectoryString SINGLE-VALUE X-ORDERED 'SIBLINGS' )",
263                                 NULL, NULL },
264         { "concurrency", "level", 2, 2, 0, ARG_INT|ARG_MAGIC|CFG_CONCUR,
265                 &config_generic, "( OLcfgGlAt:10 NAME 'olcConcurrency' "
266                         "SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
267         { "conn_max_pending", "max", 2, 2, 0, ARG_INT,
268                 &slap_conn_max_pending, "( OLcfgGlAt:11 NAME 'olcConnMaxPending' "
269                         "SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
270         { "conn_max_pending_auth", "max", 2, 2, 0, ARG_INT,
271                 &slap_conn_max_pending_auth, "( OLcfgGlAt:12 NAME 'olcConnMaxPendingAuth' "
272                         "SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
273         { "database", "type", 2, 2, 0, ARG_MAGIC|CFG_DATABASE,
274                 &config_generic, "( OLcfgGlAt:13 NAME 'olcDatabase' "
275                         "DESC 'The backend type for a database instance' "
276                         "SUP olcBackend SINGLE-VALUE X-ORDERED 'SIBLINGS' )", NULL, NULL },
277         { "defaultSearchBase", "dn", 2, 2, 0, ARG_PRE_BI|ARG_PRE_DB|ARG_DN|ARG_QUOTE|ARG_MAGIC,
278                 &config_search_base, "( OLcfgGlAt:14 NAME 'olcDefaultSearchBase' "
279                         "SYNTAX OMsDN SINGLE-VALUE )", NULL, NULL },
280         { "disallows", "features", 2, 0, 8, ARG_PRE_DB|ARG_MAGIC,
281                 &config_disallows, "( OLcfgGlAt:15 NAME 'olcDisallows' "
282                         "EQUALITY caseIgnoreMatch "
283                         "SYNTAX OMsDirectoryString )", NULL, NULL },
284         { "ditcontentrule",     NULL, 0, 0, 0, ARG_MAGIC|CFG_DIT|ARG_NO_DELETE|ARG_NO_INSERT,
285                 &config_generic, "( OLcfgGlAt:16 NAME 'olcDitContentRules' "
286                         "DESC 'OpenLDAP DIT content rules' "
287                         "EQUALITY caseIgnoreMatch "
288                         "SYNTAX OMsDirectoryString X-ORDERED 'VALUES' )",
289                         NULL, NULL },
290         { "gentlehup", "on|off", 2, 2, 0,
291 #ifdef SIGHUP
292                 ARG_ON_OFF, &global_gentlehup,
293 #else
294                 ARG_IGNORED, NULL,
295 #endif
296                 "( OLcfgGlAt:17 NAME 'olcGentleHUP' "
297                         "SYNTAX OMsBoolean SINGLE-VALUE )", NULL, NULL },
298         { "idletimeout", "timeout", 2, 2, 0, ARG_INT,
299                 &global_idletimeout, "( OLcfgGlAt:18 NAME 'olcIdleTimeout' "
300                         "SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
301         { "include", "file", 2, 2, 0, ARG_MAGIC,
302                 &config_include, "( OLcfgGlAt:19 NAME 'olcInclude' "
303                         "SUP labeledURI )", NULL, NULL },
304         { "index_substr_if_minlen", "min", 2, 2, 0, ARG_INT|ARG_NONZERO|ARG_MAGIC|CFG_SSTR_IF_MIN,
305                 &config_generic, "( OLcfgGlAt:20 NAME 'olcIndexSubstrIfMinLen' "
306                         "SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
307         { "index_substr_if_maxlen", "max", 2, 2, 0, ARG_INT|ARG_NONZERO|ARG_MAGIC|CFG_SSTR_IF_MAX,
308                 &config_generic, "( OLcfgGlAt:21 NAME 'olcIndexSubstrIfMaxLen' "
309                         "SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
310         { "index_substr_any_len", "len", 2, 2, 0, ARG_INT|ARG_NONZERO,
311                 &index_substr_any_len, "( OLcfgGlAt:22 NAME 'olcIndexSubstrAnyLen' "
312                         "SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
313         { "index_substr_any_step", "step", 2, 2, 0, ARG_INT|ARG_NONZERO,
314                 &index_substr_any_step, "( OLcfgGlAt:23 NAME 'olcIndexSubstrAnyStep' "
315                         "SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
316         { "lastmod", "on|off", 2, 2, 0, ARG_DB|ARG_ON_OFF|ARG_MAGIC|CFG_LASTMOD,
317                 &config_generic, "( OLcfgDbAt:0.4 NAME 'olcLastMod' "
318                         "SYNTAX OMsBoolean SINGLE-VALUE )", NULL, NULL },
319         { "limits", "limits", 2, 0, 0, ARG_DB|ARG_MAGIC|CFG_LIMITS,
320                 &config_generic, "( OLcfgDbAt:0.5 NAME 'olcLimits' "
321                         "SYNTAX OMsDirectoryString X-ORDERED 'VALUES' )", NULL, NULL },
322         { "localSSF", "ssf", 2, 2, 0, ARG_INT,
323                 &local_ssf, "( OLcfgGlAt:26 NAME 'olcLocalSSF' "
324                         "SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
325         { "logfile", "file", 2, 2, 0, ARG_STRING|ARG_MAGIC|CFG_LOGFILE,
326                 &config_generic, "( OLcfgGlAt:27 NAME 'olcLogFile' "
327                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
328         { "loglevel", "level", 2, 0, 0, ARG_MAGIC,
329                 &config_loglevel, "( OLcfgGlAt:28 NAME 'olcLogLevel' "
330                         "SYNTAX OMsDirectoryString )", NULL, NULL },
331         { "maxDerefDepth", "depth", 2, 2, 0, ARG_DB|ARG_INT|ARG_MAGIC|CFG_DEPTH,
332                 &config_generic, "( OLcfgDbAt:0.6 NAME 'olcMaxDerefDepth' "
333                         "SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
334         { "moduleload", "file", 2, 0, 0,
335 #ifdef SLAPD_MODULES
336                 ARG_MAGIC|CFG_MODLOAD, &config_generic,
337 #else
338                 ARG_IGNORED, NULL,
339 #endif
340                 "( OLcfgGlAt:30 NAME 'olcModuleLoad' "
341                         "SYNTAX OMsDirectoryString X-ORDERED 'VALUES' )", NULL, NULL },
342         { "modulepath", "path", 2, 2, 0,
343 #ifdef SLAPD_MODULES
344                 ARG_MAGIC|CFG_MODPATH|ARG_NO_DELETE|ARG_NO_INSERT, &config_generic,
345 #else
346                 ARG_IGNORED, NULL,
347 #endif
348                 "( OLcfgGlAt:31 NAME 'olcModulePath' "
349                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
350         { "objectclass", "objectclass", 2, 0, 0, ARG_PAREN|ARG_MAGIC|CFG_OC|ARG_NO_DELETE|ARG_NO_INSERT,
351                 &config_generic, "( OLcfgGlAt:32 NAME 'olcObjectClasses' "
352                 "DESC 'OpenLDAP object classes' "
353                 "EQUALITY caseIgnoreMatch "
354                 "SYNTAX OMsDirectoryString X-ORDERED 'VALUES' )",
355                         NULL, NULL },
356         { "objectidentifier", NULL,     0, 0, 0, ARG_MAGIC|CFG_OID,
357                 &config_generic, "( OLcfgGlAt:33 NAME 'olcObjectIdentifier' "
358                         "SYNTAX OMsDirectoryString X-ORDERED 'VALUES' )", NULL, NULL },
359         { "overlay", "overlay", 2, 2, 0, ARG_MAGIC,
360                 &config_overlay, "( OLcfgGlAt:34 NAME 'olcOverlay' "
361                         "SUP olcDatabase SINGLE-VALUE X-ORDERED 'SIBLINGS' )", NULL, NULL },
362         { "password-crypt-salt-format", "salt", 2, 2, 0, ARG_STRING|ARG_MAGIC|CFG_SALT,
363                 &config_generic, "( OLcfgGlAt:35 NAME 'olcPasswordCryptSaltFormat' "
364                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
365         { "password-hash", "hash", 2, 2, 0, ARG_MAGIC,
366                 &config_passwd_hash, "( OLcfgGlAt:36 NAME 'olcPasswordHash' "
367                         "SYNTAX OMsDirectoryString )", NULL, NULL },
368         { "pidfile", "file", 2, 2, 0, ARG_STRING,
369                 &slapd_pid_file, "( OLcfgGlAt:37 NAME 'olcPidFile' "
370                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
371         { "plugin", NULL, 0, 0, 0,
372 #ifdef LDAP_SLAPI
373                 ARG_MAGIC|CFG_PLUGIN, &config_generic,
374 #else
375                 ARG_IGNORED, NULL,
376 #endif
377                 "( OLcfgGlAt:38 NAME 'olcPlugin' "
378                         "SYNTAX OMsDirectoryString )", NULL, NULL },
379         { "pluginlog", "filename", 2, 2, 0,
380 #ifdef LDAP_SLAPI
381                 ARG_STRING, &slapi_log_file,
382 #else
383                 ARG_IGNORED, NULL,
384 #endif
385                 "( OLcfgGlAt:39 NAME 'olcPluginLogFile' "
386                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
387         { "readonly", "on|off", 2, 2, 0, ARG_MAY_DB|ARG_ON_OFF|ARG_MAGIC|CFG_RO,
388                 &config_generic, "( OLcfgGlAt:40 NAME 'olcReadOnly' "
389                         "SYNTAX OMsBoolean SINGLE-VALUE )", NULL, NULL },
390         { "referral", "url", 2, 2, 0, ARG_MAGIC,
391                 &config_referral, "( OLcfgGlAt:41 NAME 'olcReferral' "
392                         "SUP labeledURI SINGLE-VALUE )", NULL, NULL },
393         { "replica", "host or uri", 2, 0, 0, ARG_DB|ARG_MAGIC,
394                 &config_replica, "( OLcfgDbAt:0.7 NAME 'olcReplica' "
395                         "SUP labeledURI )", NULL, NULL },
396         { "replica-argsfile", NULL, 0, 0, 0, ARG_STRING,
397                 &replica_argsFile, "( OLcfgGlAt:43 NAME 'olcReplicaArgsFile' "
398                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
399         { "replica-pidfile", NULL, 0, 0, 0, ARG_STRING,
400                 &replica_pidFile, "( OLcfgGlAt:44 NAME 'olcReplicaPidFile' "
401                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
402         { "replicationInterval", NULL, 0, 0, 0, ARG_INT,
403                 &replicationInterval, "( OLcfgGlAt:45 NAME 'olcReplicationInterval' "
404                         "SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
405         { "replogfile", "filename", 2, 2, 0, ARG_MAY_DB|ARG_MAGIC|ARG_STRING|CFG_REPLOG,
406                 &config_generic, "( OLcfgGlAt:46 NAME 'olcReplogFile' "
407                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
408         { "require", "features", 2, 0, 7, ARG_MAY_DB|ARG_MAGIC,
409                 &config_requires, "( OLcfgGlAt:47 NAME 'olcRequires' "
410                         "SYNTAX OMsDirectoryString )", NULL, NULL },
411         { "restrict", "op_list", 2, 0, 0, ARG_MAY_DB|ARG_MAGIC,
412                 &config_restrict, "( OLcfgGlAt:48 NAME 'olcRestrict' "
413                         "SYNTAX OMsDirectoryString )", NULL, NULL },
414         { "reverse-lookup", "on|off", 2, 2, 0,
415 #ifdef SLAPD_RLOOKUPS
416                 ARG_ON_OFF, &use_reverse_lookup,
417 #else
418                 ARG_IGNORED, NULL,
419 #endif
420                 "( OLcfgGlAt:49 NAME 'olcReverseLookup' "
421                         "SYNTAX OMsBoolean SINGLE-VALUE )", NULL, NULL },
422         { "rootdn", "dn", 2, 2, 0, ARG_DB|ARG_DN|ARG_QUOTE|ARG_MAGIC,
423                 &config_rootdn, "( OLcfgDbAt:0.8 NAME 'olcRootDN' "
424                         "SYNTAX OMsDN SINGLE-VALUE )", NULL, NULL },
425         { "rootDSE", "file", 2, 2, 0, ARG_MAGIC|CFG_ROOTDSE,
426                 &config_generic, "( OLcfgGlAt:51 NAME 'olcRootDSE' "
427                         "SYNTAX OMsDirectoryString )", NULL, NULL },
428         { "rootpw", "password", 2, 2, 0, ARG_BERVAL|ARG_DB|ARG_MAGIC,
429                 &config_rootpw, "( OLcfgDbAt:0.9 NAME 'olcRootPW' "
430                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
431         { "sasl-authz-policy", NULL, 2, 2, 0, ARG_MAGIC|CFG_AZPOLICY,
432                 &config_generic, NULL, NULL, NULL },
433         { "sasl-host", "host", 2, 2, 0,
434 #ifdef HAVE_CYRUS_SASL
435                 ARG_STRING|ARG_UNIQUE, &global_host,
436 #else
437                 ARG_IGNORED, NULL,
438 #endif
439                 "( OLcfgGlAt:53 NAME 'olcSaslHost' "
440                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
441         { "sasl-realm", "realm", 2, 2, 0,
442 #ifdef HAVE_CYRUS_SASL
443                 ARG_STRING|ARG_UNIQUE, &global_realm,
444 #else
445                 ARG_IGNORED, NULL,
446 #endif
447                 "( OLcfgGlAt:54 NAME 'olcSaslRealm' "
448                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
449         { "sasl-regexp", NULL, 3, 3, 0, ARG_MAGIC|CFG_AZREGEXP,
450                 &config_generic, NULL, NULL, NULL },
451         { "sasl-secprops", "properties", 2, 2, 0,
452 #ifdef HAVE_CYRUS_SASL
453                 ARG_MAGIC|CFG_SASLSECP, &config_generic,
454 #else
455                 ARG_IGNORED, NULL,
456 #endif
457                 "( OLcfgGlAt:56 NAME 'olcSaslSecProps' "
458                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
459         { "saslRegexp", NULL, 3, 3, 0, ARG_MAGIC|CFG_AZREGEXP,
460                 &config_generic, NULL, NULL, NULL },
461         { "schemadn", "dn", 2, 2, 0, ARG_MAY_DB|ARG_DN|ARG_QUOTE|ARG_MAGIC,
462                 &config_schema_dn, "( OLcfgGlAt:58 NAME 'olcSchemaDN' "
463                         "SYNTAX OMsDN SINGLE-VALUE )", NULL, NULL },
464         { "security", "factors", 2, 0, 0, ARG_MAY_DB|ARG_MAGIC,
465                 &config_security, "( OLcfgGlAt:59 NAME 'olcSecurity' "
466                         "SYNTAX OMsDirectoryString )", NULL, NULL },
467         { "sizelimit", "limit", 2, 0, 0, ARG_MAY_DB|ARG_MAGIC,
468                 &config_sizelimit, "( OLcfgGlAt:60 NAME 'olcSizeLimit' "
469                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
470         { "sockbuf_max_incoming", "max", 2, 2, 0, ARG_BER_LEN_T,
471                 &sockbuf_max_incoming, "( OLcfgGlAt:61 NAME 'olcSockbufMaxIncoming' "
472                         "SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
473         { "sockbuf_max_incoming_auth", "max", 2, 2, 0, ARG_BER_LEN_T,
474                 &sockbuf_max_incoming_auth, "( OLcfgGlAt:62 NAME 'olcSockbufMaxIncomingAuth' "
475                         "SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
476         { "srvtab", "file", 2, 2, 0,
477 #ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND
478                 ARG_STRING, &ldap_srvtab,
479 #else
480                 ARG_IGNORED, NULL,
481 #endif
482                 "( OLcfgGlAt:63 NAME 'olcSrvtab' "
483                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
484         { "suffix",     "suffix", 2, 2, 0, ARG_DB|ARG_DN|ARG_QUOTE|ARG_MAGIC,
485                 &config_suffix, "( OLcfgDbAt:0.10 NAME 'olcSuffix' "
486                         "SYNTAX OMsDN )", NULL, NULL },
487         { "syncrepl", NULL, 0, 0, 0, ARG_DB|ARG_MAGIC,
488                 &syncrepl_config, "( OLcfgDbAt:0.11 NAME 'olcSyncrepl' "
489                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
490         { "threads", "count", 2, 2, 0, ARG_INT|ARG_MAGIC|CFG_THREADS,
491                 &config_generic, "( OLcfgGlAt:66 NAME 'olcThreads' "
492                         "SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
493         { "timelimit", "limit", 2, 0, 0, ARG_MAY_DB|ARG_MAGIC,
494                 &config_timelimit, "( OLcfgGlAt:67 NAME 'olcTimeLimit' "
495                         "SYNTAX OMsDirectoryString )", NULL, NULL },
496         { "TLSCACertificateFile", NULL, 0, 0, 0,
497 #ifdef HAVE_TLS
498                 CFG_TLS_CA_FILE|ARG_STRING|ARG_MAGIC, &config_tls_option,
499 #else
500                 ARG_IGNORED, NULL,
501 #endif
502                 "( OLcfgGlAt:68 NAME 'olcTLSCACertificateFile' "
503                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
504         { "TLSCACertificatePath", NULL, 0, 0, 0,
505 #ifdef HAVE_TLS
506                 CFG_TLS_CA_PATH|ARG_STRING|ARG_MAGIC, &config_tls_option,
507 #else
508                 ARG_IGNORED, NULL,
509 #endif
510                 "( OLcfgGlAt:69 NAME 'olcTLSCACertificatePath' "
511                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
512         { "TLSCertificateFile", NULL, 0, 0, 0,
513 #ifdef HAVE_TLS
514                 CFG_TLS_CERT_FILE|ARG_STRING|ARG_MAGIC, &config_tls_option,
515 #else
516                 ARG_IGNORED, NULL,
517 #endif
518                 "( OLcfgGlAt:70 NAME 'olcTLSCertificateFile' "
519                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
520         { "TLSCertificateKeyFile", NULL, 0, 0, 0,
521 #ifdef HAVE_TLS
522                 CFG_TLS_CERT_KEY|ARG_STRING|ARG_MAGIC, &config_tls_option,
523 #else
524                 ARG_IGNORED, NULL,
525 #endif
526                 "( OLcfgGlAt:71 NAME 'olcTLSCertificateKeyFile' "
527                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
528         { "TLSCipherSuite",     NULL, 0, 0, 0,
529 #ifdef HAVE_TLS
530                 CFG_TLS_CIPHER|ARG_STRING|ARG_MAGIC, &config_tls_option,
531 #else
532                 ARG_IGNORED, NULL,
533 #endif
534                 "( OLcfgGlAt:72 NAME 'olcTLSCipherSuite' "
535                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
536         { "TLSCRLCheck", NULL, 0, 0, 0,
537 #if defined(HAVE_TLS) && defined(HAVE_OPENSSL_CRL)
538                 CFG_TLS_CRLCHECK|ARG_STRING|ARG_MAGIC, &config_tls_config,
539 #else
540                 ARG_IGNORED, NULL,
541 #endif
542                 "( OLcfgGlAt:73 NAME 'olcTLSCRLCheck' "
543                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
544         { "TLSRandFile", NULL, 0, 0, 0,
545 #ifdef HAVE_TLS
546                 CFG_TLS_RAND|ARG_STRING|ARG_MAGIC, &config_tls_option,
547 #else
548                 ARG_IGNORED, NULL,
549 #endif
550                 "( OLcfgGlAt:74 NAME 'olcTLSRandFile' "
551                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
552         { "TLSVerifyClient", NULL, 0, 0, 0,
553 #ifdef HAVE_TLS
554                 CFG_TLS_VERIFY|ARG_STRING|ARG_MAGIC, &config_tls_config,
555 #else
556                 ARG_IGNORED, NULL,
557 #endif
558                 "( OLcfgGlAt:75 NAME 'olcTLSVerifyClient' "
559                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
560         { "ucdata-path", "path", 2, 2, 0, ARG_IGNORED,
561                 NULL, NULL, NULL, NULL },
562         { "updatedn", "dn", 2, 2, 0, ARG_DB|ARG_DN|ARG_QUOTE|ARG_MAGIC,
563                 &config_updatedn, "( OLcfgDbAt:0.12 NAME 'olcUpdateDN' "
564                         "SYNTAX OMsDN SINGLE-VALUE )", NULL, NULL },
565         { "updateref", "url", 2, 2, 0, ARG_DB|ARG_MAGIC,
566                 &config_updateref, "( OLcfgDbAt:0.13 NAME 'olcUpdateRef' "
567                         "SUP labeledURI )", NULL, NULL },
568         { NULL, NULL, 0, 0, 0, ARG_IGNORED,
569                 NULL, NULL, NULL, NULL }
570 };
571
572 /* Routines to check if a child can be added to this type */
573 static ConfigLDAPadd cfAddSchema, cfAddInclude, cfAddDatabase,
574         cfAddBackend, cfAddModule, cfAddOverlay;
575
576 /* NOTE: be careful when defining array members
577  * that can be conditionally compiled */
578 #define CFOC_GLOBAL     cf_ocs[1]
579 #define CFOC_SCHEMA     cf_ocs[2]
580 #define CFOC_BACKEND    cf_ocs[3]
581 #define CFOC_DATABASE   cf_ocs[4]
582 #define CFOC_OVERLAY    cf_ocs[5]
583 #define CFOC_INCLUDE    cf_ocs[6]
584 #define CFOC_FRONTEND   cf_ocs[7]
585 #ifdef SLAPD_MODULES
586 #define CFOC_MODULE     cf_ocs[8]
587 #endif /* SLAPD_MODULES */
588
589 static ConfigOCs cf_ocs[] = {
590         { "( OLcfgGlOc:0 "
591                 "NAME 'olcConfig' "
592                 "DESC 'OpenLDAP configuration object' "
593                 "ABSTRACT SUP top )", Cft_Abstract, NULL },
594         { "( OLcfgGlOc:1 "
595                 "NAME 'olcGlobal' "
596                 "DESC 'OpenLDAP Global configuration options' "
597                 "SUP olcConfig STRUCTURAL "
598                 "MAY ( cn $ olcConfigFile $ olcConfigDir $ olcAllows $ olcArgsFile $ "
599                  "olcAttributeOptions $ olcAuthIDRewrite $ "
600                  "olcAuthzPolicy $ olcAuthzRegexp $ olcConcurrency $ "
601                  "olcConnMaxPending $ olcConnMaxPendingAuth $ "
602                  "olcDisallows $ olcGentleHUP $ olcIdleTimeout $ "
603                  "olcIndexSubstrIfMaxLen $ olcIndexSubstrIfMinLen $ "
604                  "olcIndexSubstrAnyLen $ olcIndexSubstrAnyStep $ olcLocalSSF $ "
605                  "olcLogLevel $ "
606                  "olcPasswordCryptSaltFormat $ olcPasswordHash $ olcPidFile $ "
607                  "olcPluginLogFile $ olcReadOnly $ olcReferral $ "
608                  "olcReplicaPidFile $ olcReplicaArgsFile $ olcReplicationInterval $ "
609                  "olcReplogFile $ olcRequires $ olcRestrict $ olcReverseLookup $ "
610                  "olcRootDSE $ "
611                  "olcSaslHost $ olcSaslRealm $ olcSaslSecProps $ "
612                  "olcSecurity $ olcSizeLimit $ "
613                  "olcSockbufMaxIncoming $ olcSockbufMaxIncomingAuth $ olcSrvtab $ "
614                  "olcThreads $ olcTimeLimit $ olcTLSCACertificateFile $ "
615                  "olcTLSCACertificatePath $ olcTLSCertificateFile $ "
616                  "olcTLSCertificateKeyFile $ olcTLSCipherSuite $ olcTLSCRLCheck $ "
617                  "olcTLSRandFile $ olcTLSVerifyClient $ "
618                  "olcObjectIdentifier $ olcAttributeTypes $ olcObjectClasses $ "
619                  "olcDitContentRules ) )", Cft_Global },
620         { "( OLcfgGlOc:2 "
621                 "NAME 'olcSchemaConfig' "
622                 "DESC 'OpenLDAP schema object' "
623                 "SUP olcConfig STRUCTURAL "
624                 "MAY ( cn $ olcObjectIdentifier $ olcAttributeTypes $ "
625                  "olcObjectClasses $ olcDitContentRules ) )",
626                         Cft_Schema, NULL, cfAddSchema },
627         { "( OLcfgGlOc:3 "
628                 "NAME 'olcBackendConfig' "
629                 "DESC 'OpenLDAP Backend-specific options' "
630                 "SUP olcConfig STRUCTURAL "
631                 "MUST olcBackend )", Cft_Backend, NULL, cfAddBackend },
632         { "( OLcfgGlOc:4 "
633                 "NAME 'olcDatabaseConfig' "
634                 "DESC 'OpenLDAP Database-specific options' "
635                 "SUP olcConfig STRUCTURAL "
636                 "MUST olcDatabase "
637                 "MAY ( olcSuffix $ olcAccess $ olcLastMod $ olcLimits $ "
638                  "olcMaxDerefDepth $ olcPlugin $ olcReadOnly $ olcReplica $ "
639                  "olcReplogFile $ olcRequires $ olcRestrict $ olcRootDN $ olcRootPW $ "
640                  "olcSchemaDN $ olcSecurity $ olcSizeLimit $ olcSyncrepl $ "
641                  "olcTimeLimit $ olcUpdateDN $ olcUpdateRef ) )",
642                         Cft_Database, NULL, cfAddDatabase },
643         { "( OLcfgGlOc:5 "
644                 "NAME 'olcOverlayConfig' "
645                 "DESC 'OpenLDAP Overlay-specific options' "
646                 "SUP olcConfig STRUCTURAL "
647                 "MUST olcOverlay )", Cft_Overlay, NULL, cfAddOverlay },
648         { "( OLcfgGlOc:6 "
649                 "NAME 'olcIncludeFile' "
650                 "DESC 'OpenLDAP configuration include file' "
651                 "SUP olcConfig STRUCTURAL "
652                 "MUST olcInclude "
653                 "MAY ( cn $ olcRootDSE ) )",
654                 Cft_Include, NULL, cfAddInclude },
655         /* This should be STRUCTURAL like all the other database classes, but
656          * that would mean inheriting all of the olcDatabaseConfig attributes,
657          * which causes them to be merged twice in config_build_entry.
658          */
659         { "( OLcfgGlOc:7 "
660                 "NAME 'olcFrontendConfig' "
661                 "DESC 'OpenLDAP frontend configuration' "
662                 "AUXILIARY "
663                 "MAY olcDefaultSearchBase )",
664                 Cft_Database, NULL, NULL },
665 #ifdef SLAPD_MODULES
666         { "( OLcfgGlOc:8 "
667                 "NAME 'olcModuleList' "
668                 "DESC 'OpenLDAP dynamic module info' "
669                 "SUP olcConfig STRUCTURAL "
670                 "MAY ( cn $ olcModulePath $ olcModuleLoad ) )",
671                 Cft_Module, NULL, cfAddModule },
672 #endif
673         { NULL, 0, NULL }
674 };
675
676 static int
677 config_generic(ConfigArgs *c) {
678         char *p;
679         int i;
680
681         if ( c->op == SLAP_CONFIG_EMIT ) {
682                 int rc = 0;
683                 switch(c->type) {
684                 case CFG_CONCUR:
685                         c->value_int = ldap_pvt_thread_get_concurrency();
686                         break;
687                 case CFG_THREADS:
688                         c->value_int = connection_pool_max;
689                         break;
690                 case CFG_SALT:
691                         if ( passwd_salt )
692                                 c->value_string = ch_strdup( passwd_salt );
693                         else
694                                 rc = 1;
695                         break;
696                 case CFG_LIMITS:
697                         if ( c->be->be_limits ) {
698                                 char buf[4096*3];
699                                 struct berval bv;
700                                 int i;
701
702                                 for ( i=0; c->be->be_limits[i]; i++ ) {
703                                         bv.bv_len = sprintf( buf, IFMT, i );
704                                         bv.bv_val = buf+bv.bv_len;
705                                         limits_unparse( c->be->be_limits[i], &bv );
706                                         bv.bv_len += bv.bv_val - buf;
707                                         bv.bv_val = buf;
708                                         value_add_one( &c->rvalue_vals, &bv );
709                                 }
710                         }
711                         if ( !c->rvalue_vals ) rc = 1;
712                         break;
713                 case CFG_RO:
714                         c->value_int = (c->be->be_restrictops & SLAP_RESTRICT_OP_WRITES) ==
715                                 SLAP_RESTRICT_OP_WRITES;
716                         break;
717                 case CFG_AZPOLICY:
718                         c->value_string = ch_strdup( slap_sasl_getpolicy());
719                         break;
720                 case CFG_AZREGEXP:
721                         slap_sasl_regexp_unparse( &c->rvalue_vals );
722                         if ( !c->rvalue_vals ) rc = 1;
723                         break;
724 #ifdef HAVE_CYRUS_SASL
725                 case CFG_SASLSECP: {
726                         struct berval bv = BER_BVNULL;
727                         slap_sasl_secprops_unparse( &bv );
728                         if ( !BER_BVISNULL( &bv )) {
729                                 ber_bvarray_add( &c->rvalue_vals, &bv );
730                         } else {
731                                 rc = 1;
732                         }
733                         }
734                         break;
735 #endif
736                 case CFG_DEPTH:
737                         c->value_int = c->be->be_max_deref_depth;
738                         break;
739                 case CFG_OID: {
740                         ConfigFile *cf = c->private;
741                         if ( !cf )
742                                 oidm_unparse( &c->rvalue_vals, NULL, NULL, 1 );
743                         else if ( cf->c_om_head )
744                                 oidm_unparse( &c->rvalue_vals, cf->c_om_head,
745                                         cf->c_om_tail, 0 );
746                         if ( !c->rvalue_vals )
747                                 rc = 1;
748                         }
749                         break;
750                 case CFG_OC: {
751                         ConfigFile *cf = c->private;
752                         if ( !cf )
753                                 oc_unparse( &c->rvalue_vals, NULL, NULL, 1 );
754                         else if ( cf->c_oc_head )
755                                 oc_unparse( &c->rvalue_vals, cf->c_oc_head,
756                                         cf->c_oc_tail, 0 );
757                         if ( !c->rvalue_vals )
758                                 rc = 1;
759                         }
760                         break;
761                 case CFG_ATTR: {
762                         ConfigFile *cf = c->private;
763                         if ( !cf )
764                                 at_unparse( &c->rvalue_vals, NULL, NULL, 1 );
765                         else if ( cf->c_at_head )
766                                 at_unparse( &c->rvalue_vals, cf->c_at_head,
767                                         cf->c_at_tail, 0 );
768                         if ( !c->rvalue_vals )
769                                 rc = 1;
770                         }
771                         break;
772                 case CFG_DIT: {
773                         ConfigFile *cf = c->private;
774                         if ( !cf )
775                                 cr_unparse( &c->rvalue_vals, NULL, NULL, 1 );
776                         else if ( cf->c_cr_head )
777                                 cr_unparse( &c->rvalue_vals, cf->c_cr_head,
778                                         cf->c_cr_tail, 0 );
779                         if ( !c->rvalue_vals )
780                                 rc = 1;
781                         }
782                         break;
783                         
784                 case CFG_ACL: {
785                         AccessControl *a;
786                         char *src, *dst, ibuf[11];
787                         struct berval bv, abv;
788                         for (i=0, a=c->be->be_acl; a; i++,a=a->acl_next) {
789                                 abv.bv_len = sprintf( ibuf, IFMT, i );
790                                 acl_unparse( a, &bv );
791                                 abv.bv_val = ch_malloc( abv.bv_len + bv.bv_len + 1 );
792                                 AC_MEMCPY( abv.bv_val, ibuf, abv.bv_len );
793                                 /* Turn TAB / EOL into plain space */
794                                 for (src=bv.bv_val,dst=abv.bv_val+abv.bv_len; *src; src++) {
795                                         if (isspace(*src)) *dst++ = ' ';
796                                         else *dst++ = *src;
797                                 }
798                                 *dst = '\0';
799                                 if (dst[-1] == ' ') {
800                                         dst--;
801                                         *dst = '\0';
802                                 }
803                                 abv.bv_len = dst - abv.bv_val;
804                                 ber_bvarray_add( &c->rvalue_vals, &abv );
805                         }
806                         rc = (!i);
807                         break;
808                 }
809                 case CFG_REPLOG:
810                         if ( c->be->be_replogfile )
811                                 c->value_string = ch_strdup( c->be->be_replogfile );
812                         break;
813                 case CFG_ROOTDSE: {
814                         ConfigFile *cf = c->private;
815                         if ( cf->c_dseFiles ) {
816                                 value_add( &c->rvalue_vals, cf->c_dseFiles );
817                         } else {
818                                 rc = 1;
819                         }
820                         }
821                         break;
822                 case CFG_LOGFILE:
823                         if ( logfileName )
824                                 c->value_string = ch_strdup( logfileName );
825                         else
826                                 rc = 1;
827                         break;
828                 case CFG_LASTMOD:
829                         c->value_int = (SLAP_NOLASTMOD(c->be) == 0);
830                         break;
831                 case CFG_SSTR_IF_MAX:
832                         c->value_int = index_substr_if_maxlen;
833                         break;
834                 case CFG_SSTR_IF_MIN:
835                         c->value_int = index_substr_if_minlen;
836                         break;
837 #ifdef SLAPD_MODULES
838                 case CFG_MODLOAD: {
839                         ModPaths *mp = c->private;
840                         if (mp->mp_loads) {
841                                 int i;
842                                 for (i=0; !BER_BVISNULL(&mp->mp_loads[i]); i++) {
843                                         struct berval bv;
844                                         bv.bv_val = c->log;
845                                         bv.bv_len = sprintf( bv.bv_val, IFMT "%s", i,
846                                                 mp->mp_loads[i].bv_val );
847                                         value_add_one( &c->rvalue_vals, &bv );
848                                 }
849                         }
850
851                         rc = c->rvalue_vals ? 0 : 1;
852                         }
853                         break;
854                 case CFG_MODPATH: {
855                         ModPaths *mp = c->private;
856                         if ( !BER_BVISNULL( &mp->mp_path ))
857                                 value_add_one( &c->rvalue_vals, &mp->mp_path );
858
859                         rc = c->rvalue_vals ? 0 : 1;
860                         }
861                         break;
862 #endif
863 #ifdef LDAP_SLAPI
864                 case CFG_PLUGIN:
865                         slapi_int_plugin_unparse( c->be, &c->rvalue_vals );
866                         if ( !c->rvalue_vals ) rc = 1;
867                         break;
868 #endif
869 #ifdef SLAP_AUTH_REWRITE
870                 case CFG_REWRITE:
871                         if ( authz_rewrites ) {
872                                 struct berval bv, idx;
873                                 char ibuf[32];
874                                 int i;
875
876                                 idx.bv_val = ibuf;
877                                 for ( i=0; !BER_BVISNULL( &authz_rewrites[i] ); i++ ) {
878                                         idx.bv_len = sprintf( idx.bv_val, IFMT, i );
879                                         bv.bv_len = idx.bv_len + authz_rewrites[i].bv_len;
880                                         bv.bv_val = ch_malloc( bv.bv_len + 1 );
881                                         strcpy( bv.bv_val, idx.bv_val );
882                                         strcpy( bv.bv_val+idx.bv_len, authz_rewrites[i].bv_val );
883                                         ber_bvarray_add( &c->rvalue_vals, &bv );
884                                 }
885                         }
886                         if ( !c->rvalue_vals ) rc = 1;
887                         break;
888 #endif
889                 default:
890                         rc = 1;
891                 }
892                 return rc;
893         } else if ( c->op == LDAP_MOD_DELETE ) {
894                 int rc = 0;
895                 switch(c->type) {
896                 /* single-valued attrs, no-ops */
897                 case CFG_CONCUR:
898                 case CFG_THREADS:
899                 case CFG_RO:
900                 case CFG_AZPOLICY:
901                 case CFG_DEPTH:
902                 case CFG_LASTMOD:
903                 case CFG_SASLSECP:
904                 case CFG_SSTR_IF_MAX:
905                 case CFG_SSTR_IF_MIN:
906                         break;
907
908                 /* no-ops, requires slapd restart */
909                 case CFG_PLUGIN:
910                 case CFG_MODLOAD:
911                 case CFG_AZREGEXP:
912                 case CFG_REWRITE:
913                         sprintf(c->log, "change requires slapd restart");
914                         break;
915
916                 case CFG_SALT:
917                         ch_free( passwd_salt );
918                         passwd_salt = NULL;
919                         break;
920
921                 case CFG_REPLOG:
922                         ch_free( c->be->be_replogfile );
923                         c->be->be_replogfile = NULL;
924                         break;
925
926                 case CFG_LOGFILE:
927                         ch_free( logfileName );
928                         logfileName = NULL;
929                         break;
930
931                 case CFG_ACL:
932                         if ( c->valx < 0 ) {
933                                 AccessControl *end;
934                                 if ( c->be == frontendDB )
935                                         end = NULL;
936                                 else
937                                         end = frontendDB->be_acl;
938                                 acl_destroy( c->be->be_acl, end );
939                         } else {
940                                 AccessControl **prev, *a;
941                                 int i;
942                                 for (i=0, prev = &c->be->be_acl; i < c->valx;
943                                         i++ ) {
944                                         a = *prev;
945                                         prev = &a->acl_next;
946                                 }
947                                 a = *prev;
948                                 *prev = a->acl_next;
949                                 acl_free( a );
950                         }
951                         break;
952
953                 case CFG_LIMITS:
954                         /* FIXME: there is no limits_free function */
955                 case CFG_ATOPT:
956                         /* FIXME: there is no ad_option_free function */
957                 case CFG_ROOTDSE:
958                         /* FIXME: there is no way to remove attributes added by
959                                 a DSE file */
960                 case CFG_OID:
961                 case CFG_OC:
962                 case CFG_DIT:
963                 case CFG_ATTR:
964                 case CFG_MODPATH:
965                 default:
966                         rc = 1;
967                         break;
968                 }
969                 return rc;
970         }
971
972         p = strchr(c->line,'(' /*')'*/);
973
974         switch(c->type) {
975                 case CFG_BACKEND:
976                         if(!(c->bi = backend_info(c->argv[1]))) {
977                                 sprintf( c->msg, "<%s> failed init", c->argv[0] );
978                                 Debug(LDAP_DEBUG_ANY, "%s: %s (%s)!\n",
979                                         c->log, c->msg, c->argv[1] );
980                                 return(1);
981                         }
982                         break;
983
984                 case CFG_DATABASE:
985                         c->bi = NULL;
986                         /* NOTE: config is always the first backend!
987                          */
988                         if ( !strcasecmp( c->argv[1], "config" )) {
989                                 c->be = LDAP_STAILQ_FIRST(&backendDB);
990                         } else if ( !strcasecmp( c->argv[1], "frontend" )) {
991                                 c->be = frontendDB;
992                         } else {
993                                 c->be = backend_db_init(c->argv[1]);
994                                 if ( !c->be ) {
995                                         sprintf( c->msg, "<%s> failed init", c->argv[0] );
996                                         Debug(LDAP_DEBUG_ANY, "%s: %s (%s)!\n",
997                                                 c->log, c->msg, c->argv[1] );
998                                         return(1);
999                                 }
1000                         }
1001                         break;
1002
1003                 case CFG_CONCUR:
1004                         ldap_pvt_thread_set_concurrency(c->value_int);
1005                         break;
1006
1007                 case CFG_THREADS:
1008                         ldap_pvt_thread_pool_maxthreads(&connection_pool, c->value_int);
1009                         connection_pool_max = c->value_int;     /* save for reference */
1010                         break;
1011
1012                 case CFG_SALT:
1013                         if ( passwd_salt ) ch_free( passwd_salt );
1014                         passwd_salt = c->value_string;
1015                         lutil_salt_format(passwd_salt);
1016                         break;
1017
1018                 case CFG_LIMITS:
1019                         if(limits_parse(c->be, c->fname, c->lineno, c->argc, c->argv))
1020                                 return(1);
1021                         break;
1022
1023                 case CFG_RO:
1024                         if(c->value_int)
1025                                 c->be->be_restrictops |= SLAP_RESTRICT_OP_WRITES;
1026                         else
1027                                 c->be->be_restrictops &= ~SLAP_RESTRICT_OP_WRITES;
1028                         break;
1029
1030                 case CFG_AZPOLICY:
1031                         ch_free(c->value_string);
1032                         if (slap_sasl_setpolicy( c->argv[1] )) {
1033                                 sprintf( c->msg, "<%s> unable to parse value", c->argv[0] );
1034                                 Debug(LDAP_DEBUG_ANY, "%s: %s \"%s\"\n",
1035                                         c->log, c->msg, c->argv[1] );
1036                                 return(1);
1037                         }
1038                         break;
1039                 
1040                 case CFG_AZREGEXP:
1041                         if (slap_sasl_regexp_config( c->argv[1], c->argv[2] ))
1042                                 return(1);
1043                         break;
1044                                 
1045 #ifdef HAVE_CYRUS_SASL
1046                 case CFG_SASLSECP:
1047                         {
1048                         char *txt = slap_sasl_secprops( c->argv[1] );
1049                         if ( txt ) {
1050                                 snprintf( c->msg, sizeof(c->msg), "<%s> %s",
1051                                         c->argv[0], txt );
1052                                 Debug(LDAP_DEBUG_ANY, "%s: %s\n", c->log, c->msg, 0 );
1053                                 return(1);
1054                         }
1055                         break;
1056                         }
1057 #endif
1058
1059                 case CFG_DEPTH:
1060                         c->be->be_max_deref_depth = c->value_int;
1061                         break;
1062
1063                 case CFG_OID: {
1064                         OidMacro *om;
1065
1066                         if(parse_oidm(c->fname, c->lineno, c->argc, c->argv, 1, &om))
1067                                 return(1);
1068                         if (!cfn->c_om_head) cfn->c_om_head = om;
1069                         cfn->c_om_tail = om;
1070                         }
1071                         break;
1072
1073                 case CFG_OC: {
1074                         ObjectClass *oc;
1075
1076                         if(parse_oc(c->fname, c->lineno, p, c->argv, &oc)) return(1);
1077                         if (!cfn->c_oc_head) cfn->c_oc_head = oc;
1078                         cfn->c_oc_tail = oc;
1079                         }
1080                         break;
1081
1082                 case CFG_DIT: {
1083                         ContentRule *cr;
1084
1085                         if(parse_cr(c->fname, c->lineno, p, c->argv, &cr)) return(1);
1086                         if (!cfn->c_cr_head) cfn->c_cr_head = cr;
1087                         cfn->c_cr_tail = cr;
1088                         }
1089                         break;
1090
1091                 case CFG_ATTR: {
1092                         AttributeType *at;
1093
1094                         if(parse_at(c->fname, c->lineno, p, c->argv, &at)) return(1);
1095                         if (!cfn->c_at_head) cfn->c_at_head = at;
1096                         cfn->c_at_tail = at;
1097                         }
1098                         break;
1099
1100                 case CFG_ATOPT:
1101                         ad_define_option(NULL, NULL, 0);
1102                         for(i = 1; i < c->argc; i++)
1103                                 if(ad_define_option(c->argv[i], c->fname, c->lineno))
1104                                         return(1);
1105                         break;
1106
1107                 case CFG_ACL:
1108                         parse_acl(c->be, c->fname, c->lineno, c->argc, c->argv, c->valx);
1109                         break;
1110
1111                 case CFG_REPLOG:
1112                         if(SLAP_MONITOR(c->be)) {
1113                                 Debug(LDAP_DEBUG_ANY, "%s: "
1114                                         "\"replogfile\" should not be used "
1115                                         "inside monitor database\n",
1116                                         c->log, 0, 0);
1117                                 return(0);      /* FIXME: should this be an error? */
1118                         }
1119
1120                         c->be->be_replogfile = c->value_string;
1121                         break;
1122
1123                 case CFG_ROOTDSE:
1124                         if(read_root_dse_file(c->argv[1])) {
1125                                 sprintf( c->msg, "<%s> could not read file", c->argv[0] );
1126                                 Debug(LDAP_DEBUG_ANY, "%s: %s %s\n",
1127                                         c->log, c->msg, c->argv[1] );
1128                                 return(1);
1129                         }
1130                         {
1131                                 struct berval bv;
1132                                 ber_str2bv( c->argv[1], 0, 1, &bv );
1133                                 ber_bvarray_add( &cfn->c_dseFiles, &bv );
1134                         }
1135                         break;
1136
1137                 case CFG_LOGFILE: {
1138                                 FILE *logfile;
1139                                 if ( logfileName ) ch_free( logfileName );
1140                                 logfileName = c->value_string;
1141                                 logfile = fopen(logfileName, "w");
1142                                 if(logfile) lutil_debug_file(logfile);
1143                         } break;
1144
1145                 case CFG_LASTMOD:
1146                         if(SLAP_NOLASTMODCMD(c->be)) {
1147                                 sprintf( c->msg, "<%s> not available for %s database",
1148                                         c->argv[0], c->be->bd_info->bi_type );
1149                                 Debug(LDAP_DEBUG_ANY, "%s: %s\n",
1150                                         c->log, c->msg, 0 );
1151                                 return(1);
1152                         }
1153                         if(c->value_int)
1154                                 SLAP_DBFLAGS(c->be) &= ~SLAP_DBFLAG_NOLASTMOD;
1155                         else
1156                                 SLAP_DBFLAGS(c->be) |= SLAP_DBFLAG_NOLASTMOD;
1157                         break;
1158
1159                 case CFG_SSTR_IF_MAX:
1160                         if (c->value_int < index_substr_if_minlen) {
1161                                 sprintf( c->msg, "<%s> invalid value", c->argv[0] );
1162                                 Debug(LDAP_DEBUG_ANY, "%s: %s (%d)\n",
1163                                         c->log, c->msg, c->value_int );
1164                                 return(1);
1165                         }
1166                         index_substr_if_maxlen = c->value_int;
1167                         break;
1168
1169                 case CFG_SSTR_IF_MIN:
1170                         if (c->value_int > index_substr_if_maxlen) {
1171                                 sprintf( c->msg, "<%s> invalid value", c->argv[0] );
1172                                 Debug(LDAP_DEBUG_ANY, "%s: %s (%d)\n",
1173                                         c->log, c->msg, c->value_int );
1174                                 return(1);
1175                         }
1176                         index_substr_if_minlen = c->value_int;
1177                         break;
1178
1179 #ifdef SLAPD_MODULES
1180                 case CFG_MODLOAD:
1181                         /* If we're just adding a module on an existing modpath,
1182                          * make sure we've selected the current path.
1183                          */
1184                         if ( c->op == LDAP_MOD_ADD && c->private && modcur != c->private ) {
1185                                 modcur = c->private;
1186                                 /* This should never fail */
1187                                 if ( module_path( modcur->mp_path.bv_val )) {
1188                                         sprintf( c->msg, "<%s> module path no longer valid",
1189                                                 c->argv[0] );
1190                                         Debug(LDAP_DEBUG_ANY, "%s: %s (%s)\n",
1191                                                 c->log, c->msg, modcur->mp_path.bv_val );
1192                                         return(1);
1193                                 }
1194                         }
1195                         if(module_load(c->argv[1], c->argc - 2, (c->argc > 2) ? c->argv + 2 : NULL))
1196                                 return(1);
1197                         /* Record this load on the current path */
1198                         {
1199                                 struct berval bv;
1200                                 char *ptr;
1201                                 if ( c->op == SLAP_CONFIG_ADD ) {
1202                                         ptr = c->line + STRLENOF("moduleload");
1203                                         while (!isspace(*ptr)) ptr++;
1204                                         while (isspace(*ptr)) ptr++;
1205                                 } else {
1206                                         ptr = c->line;
1207                                 }
1208                                 ber_str2bv(ptr, 0, 1, &bv);
1209                                 ber_bvarray_add( &modcur->mp_loads, &bv );
1210                         }
1211                         break;
1212
1213                 case CFG_MODPATH:
1214                         if(module_path(c->argv[1])) return(1);
1215                         /* Record which path was used with each module */
1216                         {
1217                                 ModPaths *mp;
1218
1219                                 if (!modpaths.mp_loads) {
1220                                         mp = &modpaths;
1221                                 } else {
1222                                         mp = ch_malloc( sizeof( ModPaths ));
1223                                         modlast->mp_next = mp;
1224                                 }
1225                                 ber_str2bv(c->argv[1], 0, 1, &mp->mp_path);
1226                                 mp->mp_next = NULL;
1227                                 mp->mp_loads = NULL;
1228                                 modlast = mp;
1229                                 c->private = mp;
1230                                 modcur = mp;
1231                         }
1232                         
1233                         break;
1234 #endif
1235
1236 #ifdef LDAP_SLAPI
1237                 case CFG_PLUGIN:
1238                         if(slapi_int_read_config(c->be, c->fname, c->lineno, c->argc, c->argv) != LDAP_SUCCESS)
1239                                 return(1);
1240                         slapi_plugins_used++;
1241                         break;
1242 #endif
1243
1244 #ifdef SLAP_AUTH_REWRITE
1245                 case CFG_REWRITE: {
1246                         struct berval bv;
1247                         char *line;
1248                         
1249                         if(slap_sasl_rewrite_config(c->fname, c->lineno, c->argc, c->argv))
1250                                 return(1);
1251
1252                         if ( c->argc > 1 ) {
1253                                 char    *s;
1254
1255                                 /* quote all args but the first */
1256                                 line = ldap_charray2str( c->argv, "\" \"" );
1257                                 ber_str2bv( line, 0, 0, &bv );
1258                                 s = strchr( bv.bv_val, '"' );
1259                                 assert( s != NULL );
1260                                 /* move the trailing quote of argv[0] to the end */
1261                                 AC_MEMCPY( s, s + 1, bv.bv_len - ( s - bv.bv_val ) );
1262                                 bv.bv_val[ bv.bv_len - 1 ] = '"';
1263
1264                         } else {
1265                                 ber_str2bv( c->argv[ 0 ], 0, 1, &bv );
1266                         }
1267                         
1268                         ber_bvarray_add( &authz_rewrites, &bv );
1269                         }
1270                         break;
1271 #endif
1272
1273
1274                 default:
1275                         Debug( SLAPD_DEBUG_CONFIG_ERROR,
1276                                 "%s: unknown CFG_TYPE %d"
1277                                 SLAPD_CONF_UNKNOWN_IGNORED ".\n",
1278                                 c->log, c->type, 0 );
1279 #ifdef SLAPD_CONF_UNKNOWN_BAILOUT
1280                         return 1;
1281 #endif /* SLAPD_CONF_UNKNOWN_BAILOUT */
1282
1283         }
1284         return(0);
1285 }
1286
1287
1288 static int
1289 config_fname(ConfigArgs *c) {
1290         if(c->op == SLAP_CONFIG_EMIT) {
1291                 if (c->private) {
1292                         ConfigFile *cf = c->private;
1293                         value_add_one( &c->rvalue_vals, &cf->c_file );
1294                         return 0;
1295                 }
1296                 return 1;
1297         }
1298         return(0);
1299 }
1300
1301 static int
1302 config_cfdir(ConfigArgs *c) {
1303         if(c->op == SLAP_CONFIG_EMIT) {
1304                 if ( !BER_BVISEMPTY( &cfdir )) {
1305                         value_add_one( &c->rvalue_vals, &cfdir );
1306                         return 0;
1307                 }
1308                 return 1;
1309         }
1310         return(0);
1311 }
1312
1313 static int
1314 config_search_base(ConfigArgs *c) {
1315         if(c->op == SLAP_CONFIG_EMIT) {
1316                 int rc = 1;
1317                 if (!BER_BVISEMPTY(&default_search_base)) {
1318                         value_add_one(&c->rvalue_vals, &default_search_base);
1319                         value_add_one(&c->rvalue_nvals, &default_search_nbase);
1320                         rc = 0;
1321                 }
1322                 return rc;
1323         } else if( c->op == LDAP_MOD_DELETE ) {
1324                 ch_free( default_search_base.bv_val );
1325                 ch_free( default_search_nbase.bv_val );
1326                 BER_BVZERO( &default_search_base );
1327                 BER_BVZERO( &default_search_nbase );
1328                 return 0;
1329         }
1330
1331         if(c->bi || c->be != frontendDB) {
1332                 Debug(LDAP_DEBUG_ANY, "%s: defaultSearchBase line must appear "
1333                         "prior to any backend or database definition\n",
1334                         c->log, 0, 0);
1335                 return(1);
1336         }
1337
1338         if(default_search_nbase.bv_len) {
1339                 free(default_search_base.bv_val);
1340                 free(default_search_nbase.bv_val);
1341         }
1342
1343         default_search_base = c->value_dn;
1344         default_search_nbase = c->value_ndn;
1345         return(0);
1346 }
1347
1348 static int
1349 config_passwd_hash(ConfigArgs *c) {
1350         int i;
1351         if (c->op == SLAP_CONFIG_EMIT) {
1352                 struct berval bv;
1353                 for (i=0; default_passwd_hash && default_passwd_hash[i]; i++) {
1354                         ber_str2bv(default_passwd_hash[i], 0, 0, &bv);
1355                         value_add_one(&c->rvalue_vals, &bv);
1356                 }
1357                 return i ? 0 : 1;
1358         } else if ( c->op == LDAP_MOD_DELETE ) {
1359                 if ( c->valx < 0 ) {
1360                         ldap_charray_free( default_passwd_hash );
1361                         default_passwd_hash = NULL;
1362                 } else {
1363                         i = c->valx;
1364                         ch_free( default_passwd_hash[i] );
1365                         for (; default_passwd_hash[i]; i++ )
1366                                 default_passwd_hash[i] = default_passwd_hash[i+1];
1367                 }
1368                 return 0;
1369         }
1370         if(default_passwd_hash) {
1371                 Debug(LDAP_DEBUG_ANY, "%s: "
1372                         "already set default password_hash\n",
1373                         c->log, 0, 0);
1374                 return(1);
1375         }
1376         for(i = 1; i < c->argc; i++) {
1377                 if(!lutil_passwd_scheme(c->argv[i])) {
1378                         sprintf( c->msg, "<%s> schema not available", c->argv[0] );
1379                         Debug(LDAP_DEBUG_ANY, "%s: %s (%s)\n",
1380                                 c->log, c->msg, c->argv[i]);
1381                 } else {
1382                         ldap_charray_add(&default_passwd_hash, c->argv[i]);
1383                 }
1384                 if(!default_passwd_hash) {
1385                         sprintf( c->msg, "<%s> no valid hashes found", c->argv[0] );
1386                         Debug(LDAP_DEBUG_ANY, "%s: %s\n",
1387                                 c->log, c->msg, 0 );
1388                         return(1);
1389                 }
1390         }
1391         return(0);
1392 }
1393
1394 static int
1395 config_schema_dn(ConfigArgs *c) {
1396         if ( c->op == SLAP_CONFIG_EMIT ) {
1397                 int rc = 1;
1398                 if ( !BER_BVISEMPTY( &c->be->be_schemadn )) {
1399                         value_add_one(&c->rvalue_vals, &c->be->be_schemadn);
1400                         value_add_one(&c->rvalue_nvals, &c->be->be_schemandn);
1401                         rc = 0;
1402                 }
1403                 return rc;
1404         } else if ( c->op == LDAP_MOD_DELETE ) {
1405                 ch_free( c->be->be_schemadn.bv_val );
1406                 ch_free( c->be->be_schemandn.bv_val );
1407                 BER_BVZERO( &c->be->be_schemadn );
1408                 BER_BVZERO( &c->be->be_schemandn );
1409                 return 0;
1410         }
1411         ch_free( c->be->be_schemadn.bv_val );
1412         ch_free( c->be->be_schemandn.bv_val );
1413         c->be->be_schemadn = c->value_dn;
1414         c->be->be_schemandn = c->value_ndn;
1415         return(0);
1416 }
1417
1418 static int
1419 config_sizelimit(ConfigArgs *c) {
1420         int i, rc = 0;
1421         char *next;
1422         struct slap_limits_set *lim = &c->be->be_def_limit;
1423         if (c->op == SLAP_CONFIG_EMIT) {
1424                 char buf[8192];
1425                 struct berval bv;
1426                 bv.bv_val = buf;
1427                 bv.bv_len = 0;
1428                 limits_unparse_one( lim, SLAP_LIMIT_SIZE, &bv );
1429                 if ( !BER_BVISEMPTY( &bv ))
1430                         value_add_one( &c->rvalue_vals, &bv );
1431                 else
1432                         rc = 1;
1433                 return rc;
1434         } else if ( c->op == LDAP_MOD_DELETE ) {
1435                 /* Reset to defaults */
1436                 lim->lms_s_soft = SLAPD_DEFAULT_SIZELIMIT;
1437                 lim->lms_s_hard = 0;
1438                 lim->lms_s_unchecked = -1;
1439                 lim->lms_s_pr = 0;
1440                 lim->lms_s_pr_hide = 0;
1441                 lim->lms_s_pr_total = 0;
1442                 return 0;
1443         }
1444         for(i = 1; i < c->argc; i++) {
1445                 if(!strncasecmp(c->argv[i], "size", 4)) {
1446                         rc = limits_parse_one(c->argv[i], lim);
1447                         if ( rc ) {
1448                                 sprintf( c->msg, "<%s> unable to parse value", c->argv[0] );
1449                                 Debug(LDAP_DEBUG_ANY, "%s: %s \"%s\"\n",
1450                                         c->log, c->msg, c->argv[i]);
1451                                 return(1);
1452                         }
1453                 } else {
1454                         if(!strcasecmp(c->argv[i], "unlimited")) {
1455                                 lim->lms_s_soft = -1;
1456                         } else {
1457                                 lim->lms_s_soft = strtol(c->argv[i], &next, 0);
1458                                 if(next == c->argv[i]) {
1459                                         sprintf( c->msg, "<%s> unable to parse limit", c->argv[0]);
1460                                         Debug(LDAP_DEBUG_ANY, "%s: %s \"%s\"\n",
1461                                                 c->log, c->msg, c->argv[i]);
1462                                         return(1);
1463                                 } else if(next[0] != '\0') {
1464                                         Debug( SLAPD_DEBUG_CONFIG_ERROR, "%s: "
1465                                                 "trailing chars \"%s\" in \"sizelimit <limit>\" line"
1466                                                 SLAPD_CONF_UNKNOWN_IGNORED ".\n",
1467                                                 c->log, next, 0);
1468 #ifdef SLAPD_CONF_UNKNOWN_BAILOUT
1469                                         return 1;
1470 #endif /* SLAPD_CONF_UNKNOWN_BAILOUT */
1471                                 }
1472                         }
1473                         lim->lms_s_hard = 0;
1474                 }
1475         }
1476         return(0);
1477 }
1478
1479 static int
1480 config_timelimit(ConfigArgs *c) {
1481         int i, rc = 0;
1482         char *next;
1483         struct slap_limits_set *lim = &c->be->be_def_limit;
1484         if (c->op == SLAP_CONFIG_EMIT) {
1485                 char buf[8192];
1486                 struct berval bv;
1487                 bv.bv_val = buf;
1488                 bv.bv_len = 0;
1489                 limits_unparse_one( lim, SLAP_LIMIT_TIME, &bv );
1490                 if ( !BER_BVISEMPTY( &bv ))
1491                         value_add_one( &c->rvalue_vals, &bv );
1492                 else
1493                         rc = 1;
1494                 return rc;
1495         } else if ( c->op == LDAP_MOD_DELETE ) {
1496                 /* Reset to defaults */
1497                 lim->lms_t_soft = SLAPD_DEFAULT_TIMELIMIT;
1498                 lim->lms_t_hard = 0;
1499                 return 0;
1500         }
1501         for(i = 1; i < c->argc; i++) {
1502                 if(!strncasecmp(c->argv[i], "time", 4)) {
1503                         rc = limits_parse_one(c->argv[i], lim);
1504                         if ( rc ) {
1505                                 sprintf( c->msg, "<%s> unable to parse value", c->argv[0] );
1506                                 Debug(LDAP_DEBUG_ANY, "%s: %s \"%s\"\n",
1507                                         c->log, c->msg, c->argv[i]);
1508                                 return(1);
1509                         }
1510                 } else {
1511                         if(!strcasecmp(c->argv[i], "unlimited")) {
1512                                 lim->lms_t_soft = -1;
1513                         } else {
1514                                 lim->lms_t_soft = strtol(c->argv[i], &next, 0);
1515                                 if(next == c->argv[i]) {
1516                                         sprintf( c->msg, "<%s> unable to parse limit", c->argv[0]);
1517                                         Debug(LDAP_DEBUG_ANY, "%s: %s \"%s\"\n",
1518                                                 c->log, c->msg, c->argv[i]);
1519                                         return(1);
1520                                 } else if(next[0] != '\0') {
1521                                         Debug( SLAPD_DEBUG_CONFIG_ERROR, "%s: "
1522                                                 "trailing chars \"%s\" in \"timelimit <limit>\" line"
1523                                                 SLAPD_CONF_UNKNOWN_IGNORED ".\n",
1524                                                 c->log, next, 0);
1525 #ifdef SLAPD_CONF_UNKNOWN_BAILOUT
1526                                         return 1;
1527 #endif /* SLAPD_CONF_UNKNOWN_BAILOUT */
1528                                 }
1529                         }
1530                         lim->lms_t_hard = 0;
1531                 }
1532         }
1533         return(0);
1534 }
1535
1536 static int
1537 config_overlay(ConfigArgs *c) {
1538         slap_overinfo *oi;
1539         if (c->op == SLAP_CONFIG_EMIT) {
1540                 return 1;
1541         } else if ( c->op == LDAP_MOD_DELETE ) {
1542                 assert(0);
1543         }
1544         if(c->argv[1][0] == '-' && overlay_config(c->be, &c->argv[1][1])) {
1545                 /* log error */
1546                 Debug( SLAPD_DEBUG_CONFIG_ERROR, "%s: (optional) %s overlay \"%s\" configuration failed"
1547                         SLAPD_CONF_UNKNOWN_IGNORED ".\n",
1548                         c->log, c->be == frontendDB ? "global " : "", &c->argv[1][1]);
1549 #ifdef SLAPD_CONF_UNKNOWN_BAILOUT
1550                 return 1;
1551 #endif /* SLAPD_CONF_UNKNOWN_BAILOUT */
1552         } else if(overlay_config(c->be, c->argv[1])) {
1553                 return(1);
1554         }
1555         /* Setup context for subsequent config directives.
1556          * The newly added overlay is at the head of the list.
1557          */
1558         oi = (slap_overinfo *)c->be->bd_info;
1559         c->bi = &oi->oi_list->on_bi;
1560         return(0);
1561 }
1562
1563 static int
1564 config_suffix(ConfigArgs *c)
1565 {
1566         Backend *tbe;
1567         struct berval pdn, ndn;
1568         char    *notallowed = NULL;
1569
1570         if ( c->be == frontendDB ) {
1571                 notallowed = "frontend";
1572
1573         } else if ( SLAP_MONITOR(c->be) ) {
1574                 notallowed = "monitor";
1575
1576         } else if ( SLAP_CONFIG(c->be) ) {
1577                 notallowed = "config";
1578         }
1579
1580         if ( notallowed != NULL ) {
1581                 char    buf[ SLAP_TEXT_BUFLEN ] = { '\0' };
1582
1583                 switch ( c->op ) {
1584                 case LDAP_MOD_ADD:
1585                 case LDAP_MOD_DELETE:
1586                 case LDAP_MOD_REPLACE:
1587                 case LDAP_MOD_INCREMENT:
1588                 case SLAP_CONFIG_ADD:
1589                         if ( !BER_BVISNULL( &c->value_dn ) ) {
1590                                 snprintf( buf, sizeof( buf ), "<%s> ",
1591                                                 c->value_dn.bv_val );
1592                         }
1593
1594                         Debug(LDAP_DEBUG_ANY,
1595                                 "%s: suffix %snot allowed in %s database.\n",
1596                                 c->log, buf, notallowed );
1597                         break;
1598
1599                 case SLAP_CONFIG_EMIT:
1600                         /* don't complain when emitting... */
1601                         break;
1602
1603                 default:
1604                         /* FIXME: don't know what values may be valid;
1605                          * please remove assertion, or add legal values
1606                          * to either block */
1607                         assert( 0 );
1608                         break;
1609                 }
1610
1611                 return 1;
1612         }
1613
1614         if (c->op == SLAP_CONFIG_EMIT) {
1615                 if ( c->be->be_suffix == NULL
1616                                 || BER_BVISNULL( &c->be->be_suffix[0] ) )
1617                 {
1618                         return 1;
1619                 } else {
1620                         value_add( &c->rvalue_vals, c->be->be_suffix );
1621                         value_add( &c->rvalue_nvals, c->be->be_nsuffix );
1622                         return 0;
1623                 }
1624         } else if ( c->op == LDAP_MOD_DELETE ) {
1625                 if ( c->valx < 0 ) {
1626                         ber_bvarray_free( c->be->be_suffix );
1627                         ber_bvarray_free( c->be->be_nsuffix );
1628                         c->be->be_suffix = NULL;
1629                         c->be->be_nsuffix = NULL;
1630                 } else {
1631                         int i = c->valx;
1632                         ch_free( c->be->be_suffix[i].bv_val );
1633                         ch_free( c->be->be_nsuffix[i].bv_val );
1634                         for (; c->be->be_suffix[i].bv_val; i++) {
1635                                 c->be->be_suffix[i] = c->be->be_suffix[i+1];
1636                                 c->be->be_nsuffix[i] = c->be->be_nsuffix[i+1];
1637                         }
1638                 }
1639                 return 0;
1640         }
1641
1642 #ifdef SLAPD_MONITOR_DN
1643         if(!strcasecmp(c->argv[1], SLAPD_MONITOR_DN)) {
1644                 sprintf( c->msg, "<%s> DN is reserved for monitoring slapd",
1645                         c->argv[0] );
1646                 Debug(LDAP_DEBUG_ANY, "%s: %s (%s)\n",
1647                         c->log, c->msg, SLAPD_MONITOR_DN);
1648                 return(1);
1649         }
1650 #endif
1651
1652         pdn = c->value_dn;
1653         ndn = c->value_ndn;
1654         tbe = select_backend(&ndn, 0, 0);
1655         if(tbe == c->be) {
1656                 Debug( SLAPD_DEBUG_CONFIG_ERROR,
1657                         "%s: suffix already served by this backend!"
1658                         SLAPD_CONF_UNKNOWN_IGNORED ".\n",
1659                         c->log, 0, 0);
1660 #ifdef SLAPD_CONF_UNKNOWN_BAILOUT
1661                 return 1;
1662 #endif /* SLAPD_CONF_UNKNOWN_BAILOUT */
1663                 free(pdn.bv_val);
1664                 free(ndn.bv_val);
1665         } else if(tbe) {
1666                 sprintf( c->msg, "<%s> suffix already served by a preceding backend",
1667                         c->argv[0] );
1668                 Debug(LDAP_DEBUG_ANY, "%s: %s \"%s\"\n",
1669                         c->log, c->msg, tbe->be_suffix[0].bv_val);
1670                 free(pdn.bv_val);
1671                 free(ndn.bv_val);
1672                 return(1);
1673         } else if(pdn.bv_len == 0 && default_search_nbase.bv_len) {
1674                 Debug(LDAP_DEBUG_ANY, "%s: suffix DN empty and default search "
1675                         "base provided \"%s\" (assuming okay)\n",
1676                         c->log, default_search_base.bv_val, 0);
1677         }
1678         ber_bvarray_add(&c->be->be_suffix, &pdn);
1679         ber_bvarray_add(&c->be->be_nsuffix, &ndn);
1680         return(0);
1681 }
1682
1683 static int
1684 config_rootdn(ConfigArgs *c) {
1685         if (c->op == SLAP_CONFIG_EMIT) {
1686                 if ( !BER_BVISNULL( &c->be->be_rootdn )) {
1687                         value_add_one(&c->rvalue_vals, &c->be->be_rootdn);
1688                         value_add_one(&c->rvalue_nvals, &c->be->be_rootndn);
1689                         return 0;
1690                 } else {
1691                         return 1;
1692                 }
1693         } else if ( c->op == LDAP_MOD_DELETE ) {
1694                 ch_free( c->be->be_rootdn.bv_val );
1695                 ch_free( c->be->be_rootndn.bv_val );
1696                 BER_BVZERO( &c->be->be_rootdn );
1697                 BER_BVZERO( &c->be->be_rootndn );
1698                 return 0;
1699         }
1700         if ( !BER_BVISNULL( &c->be->be_rootdn )) {
1701                 ch_free( c->be->be_rootdn.bv_val );
1702                 ch_free( c->be->be_rootndn.bv_val );
1703         }
1704         c->be->be_rootdn = c->value_dn;
1705         c->be->be_rootndn = c->value_ndn;
1706         return(0);
1707 }
1708
1709 static int
1710 config_rootpw(ConfigArgs *c) {
1711         Backend *tbe;
1712
1713         if (c->op == SLAP_CONFIG_EMIT) {
1714                 if (!BER_BVISEMPTY(&c->be->be_rootpw)) {
1715                         /* don't copy, because "rootpw" is marked
1716                          * as CFG_BERVAL */
1717                         c->value_bv = c->be->be_rootpw;
1718                         return 0;
1719                 }
1720                 return 1;
1721         } else if ( c->op == LDAP_MOD_DELETE ) {
1722                 ch_free( c->be->be_rootpw.bv_val );
1723                 BER_BVZERO( &c->be->be_rootpw );
1724                 return 0;
1725         }
1726
1727         tbe = select_backend(&c->be->be_rootndn, 0, 0);
1728         if(tbe != c->be) {
1729                 sprintf( c->msg, "<%s> can only be set when rootdn is under suffix",
1730                         c->argv[0] );
1731                 Debug(LDAP_DEBUG_ANY, "%s: %s\n",
1732                         c->log, c->msg, 0);
1733                 return(1);
1734         }
1735         if ( !BER_BVISNULL( &c->be->be_rootpw ))
1736                 ch_free( c->be->be_rootpw.bv_val );
1737         c->be->be_rootpw = c->value_bv;
1738         return(0);
1739 }
1740
1741 static int
1742 config_restrict(ConfigArgs *c) {
1743         slap_mask_t restrictops = 0;
1744         int i;
1745         slap_verbmasks restrictable_ops[] = {
1746                 { BER_BVC("bind"),              SLAP_RESTRICT_OP_BIND },
1747                 { BER_BVC("add"),               SLAP_RESTRICT_OP_ADD },
1748                 { BER_BVC("modify"),            SLAP_RESTRICT_OP_MODIFY },
1749                 { BER_BVC("rename"),            SLAP_RESTRICT_OP_RENAME },
1750                 { BER_BVC("modrdn"),            0 },
1751                 { BER_BVC("delete"),            SLAP_RESTRICT_OP_DELETE },
1752                 { BER_BVC("search"),            SLAP_RESTRICT_OP_SEARCH },
1753                 { BER_BVC("compare"),   SLAP_RESTRICT_OP_COMPARE },
1754                 { BER_BVC("read"),              SLAP_RESTRICT_OP_READS },
1755                 { BER_BVC("write"),             SLAP_RESTRICT_OP_WRITES },
1756                 { BER_BVC("extended"),  SLAP_RESTRICT_OP_EXTENDED },
1757                 { BER_BVC("extended=" LDAP_EXOP_START_TLS ),            SLAP_RESTRICT_EXOP_START_TLS },
1758                 { BER_BVC("extended=" LDAP_EXOP_MODIFY_PASSWD ),        SLAP_RESTRICT_EXOP_MODIFY_PASSWD },
1759                 { BER_BVC("extended=" LDAP_EXOP_X_WHO_AM_I ),           SLAP_RESTRICT_EXOP_WHOAMI },
1760                 { BER_BVC("extended=" LDAP_EXOP_X_CANCEL ),             SLAP_RESTRICT_EXOP_CANCEL },
1761                 { BER_BVNULL,   0 }
1762         };
1763
1764         if (c->op == SLAP_CONFIG_EMIT) {
1765                 return mask_to_verbs( restrictable_ops, c->be->be_restrictops,
1766                         &c->rvalue_vals );
1767         } else if ( c->op == LDAP_MOD_DELETE ) {
1768                 if ( !c->line ) {
1769                         c->be->be_restrictops = 0;
1770                 } else {
1771                         restrictops = verb_to_mask( c->line, restrictable_ops );
1772                         c->be->be_restrictops ^= restrictops;
1773                 }
1774                 return 0;
1775         }
1776         i = verbs_to_mask( c->argc, c->argv, restrictable_ops, &restrictops );
1777         if ( i ) {
1778                 sprintf( c->msg, "<%s> unknown operation", c->argv[0] );
1779                 Debug(LDAP_DEBUG_ANY, "%s: %s %s\n",
1780                         c->log, c->msg, c->argv[i]);
1781                 return(1);
1782         }
1783         if ( restrictops & SLAP_RESTRICT_OP_EXTENDED )
1784                 restrictops &= ~SLAP_RESTRICT_EXOP_MASK;
1785         c->be->be_restrictops |= restrictops;
1786         return(0);
1787 }
1788
1789 static int
1790 config_allows(ConfigArgs *c) {
1791         slap_mask_t allows = 0;
1792         int i;
1793         slap_verbmasks allowable_ops[] = {
1794                 { BER_BVC("bind_v2"),           SLAP_ALLOW_BIND_V2 },
1795                 { BER_BVC("bind_anon_cred"),    SLAP_ALLOW_BIND_ANON_CRED },
1796                 { BER_BVC("bind_anon_dn"),      SLAP_ALLOW_BIND_ANON_DN },
1797                 { BER_BVC("update_anon"),       SLAP_ALLOW_UPDATE_ANON },
1798                 { BER_BVNULL,   0 }
1799         };
1800         if (c->op == SLAP_CONFIG_EMIT) {
1801                 return mask_to_verbs( allowable_ops, global_allows, &c->rvalue_vals );
1802         } else if ( c->op == LDAP_MOD_DELETE ) {
1803                 if ( !c->line ) {
1804                         global_allows = 0;
1805                 } else {
1806                         allows = verb_to_mask( c->line, allowable_ops );
1807                         global_allows ^= allows;
1808                 }
1809                 return 0;
1810         }
1811         i = verbs_to_mask(c->argc, c->argv, allowable_ops, &allows);
1812         if ( i ) {
1813                 sprintf( c->msg, "<%s> unknown feature", c->argv[0] );
1814                 Debug(LDAP_DEBUG_ANY, "%s: %s %s\n",
1815                         c->log, c->msg, c->argv[i]);
1816                 return(1);
1817         }
1818         global_allows |= allows;
1819         return(0);
1820 }
1821
1822 static int
1823 config_disallows(ConfigArgs *c) {
1824         slap_mask_t disallows = 0;
1825         int i;
1826         slap_verbmasks disallowable_ops[] = {
1827                 { BER_BVC("bind_anon"),         SLAP_DISALLOW_BIND_ANON },
1828                 { BER_BVC("bind_simple"),       SLAP_DISALLOW_BIND_SIMPLE },
1829                 { BER_BVC("bind_krb4"),         SLAP_DISALLOW_BIND_KRBV4 },
1830                 { BER_BVC("tls_2_anon"),                SLAP_DISALLOW_TLS_2_ANON },
1831                 { BER_BVC("tls_authc"),         SLAP_DISALLOW_TLS_AUTHC },
1832                 { BER_BVNULL, 0 }
1833         };
1834         if (c->op == SLAP_CONFIG_EMIT) {
1835                 return mask_to_verbs( disallowable_ops, global_disallows, &c->rvalue_vals );
1836         } else if ( c->op == LDAP_MOD_DELETE ) {
1837                 if ( !c->line ) {
1838                         global_disallows = 0;
1839                 } else {
1840                         disallows = verb_to_mask( c->line, disallowable_ops );
1841                         global_disallows ^= disallows;
1842                 }
1843                 return 0;
1844         }
1845         i = verbs_to_mask(c->argc, c->argv, disallowable_ops, &disallows);
1846         if ( i ) {
1847                 sprintf( c->msg, "<%s> unknown feature", c->argv[0] );
1848                 Debug(LDAP_DEBUG_ANY, "%s: %s %s\n",
1849                         c->log, c->msg, c->argv[i]);
1850                 return(1);
1851         }
1852         global_disallows |= disallows;
1853         return(0);
1854 }
1855
1856 static int
1857 config_requires(ConfigArgs *c) {
1858         slap_mask_t requires = 0;
1859         int i;
1860         slap_verbmasks requires_ops[] = {
1861                 { BER_BVC("bind"),              SLAP_REQUIRE_BIND },
1862                 { BER_BVC("LDAPv3"),            SLAP_REQUIRE_LDAP_V3 },
1863                 { BER_BVC("authc"),             SLAP_REQUIRE_AUTHC },
1864                 { BER_BVC("sasl"),              SLAP_REQUIRE_SASL },
1865                 { BER_BVC("strong"),            SLAP_REQUIRE_STRONG },
1866                 { BER_BVNULL, 0 }
1867         };
1868         if (c->op == SLAP_CONFIG_EMIT) {
1869                 return mask_to_verbs( requires_ops, c->be->be_requires, &c->rvalue_vals );
1870         } else if ( c->op == LDAP_MOD_DELETE ) {
1871                 if ( !c->line ) {
1872                         c->be->be_requires = 0;
1873                 } else {
1874                         requires = verb_to_mask( c->line, requires_ops );
1875                         c->be->be_requires ^= requires;
1876                 }
1877                 return 0;
1878         }
1879         i = verbs_to_mask(c->argc, c->argv, requires_ops, &requires);
1880         if ( i ) {
1881                 sprintf( c->msg, "<%s> unknown feature", c->argv[0] );
1882                 Debug(LDAP_DEBUG_ANY, "%s: %s %s\n",
1883                         c->log, c->msg, c->argv[i]);
1884                 return(1);
1885         }
1886         c->be->be_requires = requires;
1887         return(0);
1888 }
1889
1890 static slap_verbmasks   *loglevel_ops;
1891
1892 static int
1893 loglevel_init( void )
1894 {
1895         slap_verbmasks  lo[] = {
1896                 { BER_BVC("Any"),       -1 },
1897                 { BER_BVC("Trace"),     LDAP_DEBUG_TRACE },
1898                 { BER_BVC("Packets"),   LDAP_DEBUG_PACKETS },
1899                 { BER_BVC("Args"),      LDAP_DEBUG_ARGS },
1900                 { BER_BVC("Conns"),     LDAP_DEBUG_CONNS },
1901                 { BER_BVC("BER"),       LDAP_DEBUG_BER },
1902                 { BER_BVC("Filter"),    LDAP_DEBUG_FILTER },
1903                 { BER_BVC("Config"),    LDAP_DEBUG_CONFIG },
1904                 { BER_BVC("ACL"),       LDAP_DEBUG_ACL },
1905                 { BER_BVC("Stats"),     LDAP_DEBUG_STATS },
1906                 { BER_BVC("Stats2"),    LDAP_DEBUG_STATS2 },
1907                 { BER_BVC("Shell"),     LDAP_DEBUG_SHELL },
1908                 { BER_BVC("Parse"),     LDAP_DEBUG_PARSE },
1909                 { BER_BVC("Cache"),     LDAP_DEBUG_CACHE },
1910                 { BER_BVC("Index"),     LDAP_DEBUG_INDEX },
1911                 { BER_BVC("Sync"),      LDAP_DEBUG_SYNC },
1912                 { BER_BVNULL,   0 }
1913         };
1914
1915         return slap_verbmasks_init( &loglevel_ops, lo );
1916 }
1917
1918 static void
1919 loglevel_destroy( void )
1920 {
1921         if ( loglevel_ops ) {
1922                 (void)slap_verbmasks_destroy( loglevel_ops );
1923         }
1924         loglevel_ops = NULL;
1925 }
1926
1927 static slap_mask_t      loglevel_ignore[] = { -1, 0 };
1928
1929 int
1930 slap_loglevel_register( slap_mask_t m, struct berval *s )
1931 {
1932         int     rc;
1933
1934         if ( loglevel_ops == NULL ) {
1935                 loglevel_init();
1936         }
1937
1938         rc = slap_verbmasks_append( &loglevel_ops, m, s, loglevel_ignore );
1939
1940         if ( rc != 0 ) {
1941                 Debug( LDAP_DEBUG_ANY, "slap_loglevel_register(%lu, \"%s\") failed\n",
1942                         m, s->bv_val, 0 );
1943         }
1944
1945         return rc;
1946 }
1947
1948 int
1949 str2loglevel( const char *s, int *l )
1950 {
1951         int     i;
1952
1953         if ( loglevel_ops == NULL ) {
1954                 loglevel_init();
1955         }
1956
1957         i = verb_to_mask( s, loglevel_ops );
1958
1959         if ( BER_BVISNULL( &loglevel_ops[ i ].word) ) {
1960                 return -1;
1961         }
1962
1963         *l = loglevel_ops[ i ].mask;
1964
1965         return 0;
1966 }
1967
1968 static int config_syslog;
1969
1970 static int
1971 config_loglevel(ConfigArgs *c) {
1972         int i;
1973         char *next;
1974
1975         if ( loglevel_ops == NULL ) {
1976                 loglevel_init();
1977         }
1978
1979         if (c->op == SLAP_CONFIG_EMIT) {
1980                 return mask_to_verbs( loglevel_ops, config_syslog, &c->rvalue_vals );
1981         } else if ( c->op == LDAP_MOD_DELETE ) {
1982                 if ( !c->line ) {
1983                         config_syslog = 0;
1984                 } else {
1985                         int level = verb_to_mask( c->line, loglevel_ops );
1986                         config_syslog ^= level;
1987                 }
1988                 if ( slapMode & SLAP_SERVER_MODE ) {
1989                         ldap_syslog = config_syslog;
1990                 }
1991                 return 0;
1992         }
1993
1994         config_syslog = 0;
1995
1996         for( i=1; i < c->argc; i++ ) {
1997                 int     level;
1998
1999                 if ( isdigit( c->argv[i][0] ) || c->argv[i][0] == '-' ) {
2000                         level = strtol( c->argv[i], &next, 10 );
2001                         if ( next == NULL || next[0] != '\0' ) {
2002                                 sprintf( c->msg, "<%s> unable to parse level", c->argv[0] );
2003                                 Debug( LDAP_DEBUG_ANY, "%s: %s \"%s\"\n",
2004                                         c->log, c->msg, c->argv[i]);
2005                                 return( 1 );
2006                         }
2007                 } else {
2008                         if ( str2loglevel( c->argv[i], &level ) ) {
2009                                 sprintf( c->msg, "<%s> unknown level", c->argv[0] );
2010                                 Debug( LDAP_DEBUG_ANY, "%s: %s \"%s\"\n",
2011                                         c->log, c->msg, c->argv[i]);
2012                                 return( 1 );
2013                         }
2014                 }
2015                 config_syslog |= level;
2016                 if ( slapMode & SLAP_SERVER_MODE ) {
2017                         ldap_syslog = config_syslog;
2018                 }
2019         }
2020         return(0);
2021 }
2022
2023 static int
2024 config_referral(ConfigArgs *c) {
2025         struct berval val;
2026         if (c->op == SLAP_CONFIG_EMIT) {
2027                 if ( default_referral ) {
2028                         value_add( &c->rvalue_vals, default_referral );
2029                         return 0;
2030                 } else {
2031                         return 1;
2032                 }
2033         } else if ( c->op == LDAP_MOD_DELETE ) {
2034                 if ( c->valx < 0 ) {
2035                         ber_bvarray_free( default_referral );
2036                         default_referral = NULL;
2037                 } else {
2038                         int i = c->valx;
2039                         ch_free( default_referral[i].bv_val );
2040                         for (; default_referral[i].bv_val; i++ )
2041                                 default_referral[i] = default_referral[i+1];
2042                 }
2043                 return 0;
2044         }
2045         if(validate_global_referral(c->argv[1])) {
2046                 sprintf( c->msg, "<%s> invalid URL", c->argv[0] );
2047                 Debug(LDAP_DEBUG_ANY, "%s: %s (%s)\n",
2048                         c->log, c->msg, c->argv[1]);
2049                 return(1);
2050         }
2051
2052         ber_str2bv(c->argv[1], 0, 0, &val);
2053         if(value_add_one(&default_referral, &val)) return(LDAP_OTHER);
2054         return(0);
2055 }
2056
2057 static struct {
2058         struct berval key;
2059         int off;
2060 } sec_keys[] = {
2061         { BER_BVC("ssf="), offsetof(slap_ssf_set_t, sss_ssf) },
2062         { BER_BVC("transport="), offsetof(slap_ssf_set_t, sss_transport) },
2063         { BER_BVC("tls="), offsetof(slap_ssf_set_t, sss_tls) },
2064         { BER_BVC("sasl="), offsetof(slap_ssf_set_t, sss_sasl) },
2065         { BER_BVC("update_ssf="), offsetof(slap_ssf_set_t, sss_update_ssf) },
2066         { BER_BVC("update_transport="), offsetof(slap_ssf_set_t, sss_update_transport) },
2067         { BER_BVC("update_tls="), offsetof(slap_ssf_set_t, sss_update_tls) },
2068         { BER_BVC("update_sasl="), offsetof(slap_ssf_set_t, sss_update_sasl) },
2069         { BER_BVC("simple_bind="), offsetof(slap_ssf_set_t, sss_simple_bind) },
2070         { BER_BVNULL, 0 }
2071 };
2072
2073 static int
2074 config_security(ConfigArgs *c) {
2075         slap_ssf_set_t *set = &c->be->be_ssf_set;
2076         char *next;
2077         int i, j;
2078         if (c->op == SLAP_CONFIG_EMIT) {
2079                 char numbuf[32];
2080                 struct berval bv;
2081                 slap_ssf_t *tgt;
2082                 int rc = 1;
2083
2084                 for (i=0; !BER_BVISNULL( &sec_keys[i].key ); i++) {
2085                         tgt = (slap_ssf_t *)((char *)set + sec_keys[i].off);
2086                         if ( *tgt ) {
2087                                 rc = 0;
2088                                 bv.bv_len = sprintf( numbuf, "%u", *tgt );
2089                                 bv.bv_len += sec_keys[i].key.bv_len;
2090                                 bv.bv_val = ch_malloc( bv.bv_len + 1);
2091                                 next = lutil_strcopy( bv.bv_val, sec_keys[i].key.bv_val );
2092                                 strcpy( next, numbuf );
2093                                 ber_bvarray_add( &c->rvalue_vals, &bv );
2094                         }
2095                 }
2096                 return rc;
2097         }
2098         for(i = 1; i < c->argc; i++) {
2099                 slap_ssf_t *tgt = NULL;
2100                 char *src;
2101                 for ( j=0; !BER_BVISNULL( &sec_keys[j].key ); j++ ) {
2102                         if(!strncasecmp(c->argv[i], sec_keys[j].key.bv_val,
2103                                 sec_keys[j].key.bv_len)) {
2104                                 src = c->argv[i] + sec_keys[j].key.bv_len;
2105                                 tgt = (slap_ssf_t *)((char *)set + sec_keys[j].off);
2106                                 break;
2107                         }
2108                 }
2109                 if ( !tgt ) {
2110                         sprintf( c->msg, "<%s> unknown factor", c->argv[0] );
2111                         Debug(LDAP_DEBUG_ANY, "%s: %s %s\n",
2112                                 c->log, c->msg, c->argv[i]);
2113                         return(1);
2114                 }
2115
2116                 *tgt = strtol(src, &next, 10);
2117                 if(next == NULL || next[0] != '\0' ) {
2118                         sprintf( c->msg, "<%s> unable to parse factor", c->argv[0] );
2119                         Debug(LDAP_DEBUG_ANY, "%s: %s \"%s\"\n",
2120                                 c->log, c->msg, c->argv[i]);
2121                         return(1);
2122                 }
2123         }
2124         return(0);
2125 }
2126
2127 char *
2128 anlist_unparse( AttributeName *an, char *ptr ) {
2129         int comma = 0;
2130
2131         for (; !BER_BVISNULL( &an->an_name ); an++) {
2132                 if ( comma ) *ptr++ = ',';
2133                 ptr = lutil_strcopy( ptr, an->an_name.bv_val );
2134                 comma = 1;
2135         }
2136         return ptr;
2137 }
2138
2139 static void
2140 replica_unparse( struct slap_replica_info *ri, int i, struct berval *bv )
2141 {
2142         int len;
2143         char *ptr;
2144         struct berval bc = BER_BVNULL;
2145         char numbuf[32];
2146
2147         len = sprintf(numbuf, IFMT, i );
2148
2149         len += strlen( ri->ri_uri ) + STRLENOF("uri=");
2150         if ( ri->ri_nsuffix ) {
2151                 for (i=0; !BER_BVISNULL( &ri->ri_nsuffix[i] ); i++) {
2152                         len += ri->ri_nsuffix[i].bv_len + STRLENOF(" suffix=\"\"");
2153                 }
2154         }
2155         if ( ri->ri_attrs ) {
2156                 len += STRLENOF("attr");
2157                 if ( ri->ri_exclude ) len++;
2158                 for (i=0; !BER_BVISNULL( &ri->ri_attrs[i].an_name ); i++) {
2159                         len += 1 + ri->ri_attrs[i].an_name.bv_len;
2160                 }
2161         }
2162         bindconf_unparse( &ri->ri_bindconf, &bc );
2163         len += bc.bv_len;
2164
2165         bv->bv_val = ch_malloc(len + 1);
2166         bv->bv_len = len;
2167
2168         ptr = lutil_strcopy( bv->bv_val, numbuf );
2169         ptr = lutil_strcopy( ptr, "uri=" );
2170         ptr = lutil_strcopy( ptr, ri->ri_uri );
2171
2172         if ( ri->ri_nsuffix ) {
2173                 for (i=0; !BER_BVISNULL( &ri->ri_nsuffix[i] ); i++) {
2174                         ptr = lutil_strcopy( ptr, " suffix=\"" );
2175                         ptr = lutil_strcopy( ptr, ri->ri_nsuffix[i].bv_val );
2176                         *ptr++ = '"';
2177                 }
2178         }
2179         if ( ri->ri_attrs ) {
2180                 ptr = lutil_strcopy( ptr, "attr" );
2181                 if ( ri->ri_exclude ) *ptr++ = '!';
2182                 *ptr++ = '=';
2183                 ptr = anlist_unparse( ri->ri_attrs, ptr );
2184         }
2185         if ( bc.bv_val ) {
2186                 strcpy( ptr, bc.bv_val );
2187                 ch_free( bc.bv_val );
2188         }
2189 }
2190
2191 static int
2192 config_replica(ConfigArgs *c) {
2193         int i, nr = -1, len;
2194         char *replicahost, *replicauri;
2195         LDAPURLDesc *ludp;
2196
2197         if (c->op == SLAP_CONFIG_EMIT) {
2198                 if (c->be->be_replica) {
2199                         struct berval bv;
2200                         for (i=0;c->be->be_replica[i]; i++) {
2201                                 replica_unparse( c->be->be_replica[i], i, &bv );
2202                                 ber_bvarray_add( &c->rvalue_vals, &bv );
2203                         }
2204                         return 0;
2205                 }
2206                 return 1;
2207         } else if ( c->op == LDAP_MOD_DELETE ) {
2208                 /* FIXME: there is no replica_free function */
2209                 if ( c->valx < 0 ) {
2210                 } else {
2211                 }
2212         }
2213         if(SLAP_MONITOR(c->be)) {
2214                 Debug(LDAP_DEBUG_ANY, "%s: "
2215                         "\"replica\" should not be used inside monitor database\n",
2216                         c->log, 0, 0);
2217                 return(0);      /* FIXME: should this be an error? */
2218         }
2219
2220         for(i = 1; i < c->argc; i++) {
2221                 if(!strncasecmp(c->argv[i], "host=", STRLENOF("host="))) {
2222                         replicahost = c->argv[i] + STRLENOF("host=");
2223                         len = strlen( replicahost );
2224                         replicauri = ch_malloc( len + STRLENOF("ldap://") + 1 );
2225                         sprintf( replicauri, "ldap://%s", replicahost );
2226                         replicahost = replicauri + STRLENOF( "ldap://");
2227                         nr = add_replica_info(c->be, replicauri, replicahost);
2228                         break;
2229                 } else if(!strncasecmp(c->argv[i], "uri=", STRLENOF("uri="))) {
2230                         if(ldap_url_parse(c->argv[i] + STRLENOF("uri="), &ludp) != LDAP_SUCCESS) {
2231                                 sprintf( c->msg, "<%s> invalid uri", c->argv[0] );
2232                                 Debug(LDAP_DEBUG_ANY, "%s: %s\n", c->log, c->msg, 0 );
2233                                 return(1);
2234                         }
2235                         if(!ludp->lud_host) {
2236                                 ldap_free_urldesc(ludp);
2237                                 sprintf( c->msg, "<%s> invalid uri - missing hostname",
2238                                         c->argv[0] );
2239                                 Debug(LDAP_DEBUG_ANY, "%s: %s\n", c->log, c->msg, 0 );
2240                                 return(1);
2241                         }
2242                         ldap_free_urldesc(ludp);
2243                         replicauri = c->argv[i] + STRLENOF("uri=");
2244                         replicauri = ch_strdup( replicauri );
2245                         replicahost = strchr( replicauri, '/' );
2246                         replicahost += 2;
2247                         nr = add_replica_info(c->be, replicauri, replicahost);
2248                         break;
2249                 }
2250         }
2251         if(i == c->argc) {
2252                 sprintf( c->msg, "<%s> missing host or uri", c->argv[0] );
2253                 Debug(LDAP_DEBUG_ANY, "%s: %s\n", c->log, c->msg, 0 );
2254                 return(1);
2255         } else if(nr == -1) {
2256                 sprintf( c->msg, "<%s> unable to add replica", c->argv[0] );
2257                 Debug(LDAP_DEBUG_ANY, "%s: %s \"%s\"\n", c->log, c->msg, replicauri );
2258                 return(1);
2259         } else {
2260                 for(i = 1; i < c->argc; i++) {
2261                         if(!strncasecmp(c->argv[i], "suffix=", STRLENOF( "suffix="))) {
2262                                 switch(add_replica_suffix(c->be, nr, c->argv[i] + STRLENOF("suffix="))) {
2263                                         case 1:
2264                                                 Debug( SLAPD_DEBUG_CONFIG_ERROR, "%s: "
2265                                                 "suffix \"%s\" in \"replica\" line is not valid for backend"
2266                                                 SLAPD_CONF_UNKNOWN_IGNORED ".\n",
2267                                                 c->log, c->argv[i] + STRLENOF("suffix="), 0);
2268 #ifdef SLAPD_CONF_UNKNOWN_BAILOUT
2269                                                 return 1;
2270 #endif /* SLAPD_CONF_UNKNOWN_BAILOUT */
2271                                                 break;
2272                                         case 2:
2273                                                 Debug( SLAPD_DEBUG_CONFIG_ERROR, "%s: "
2274                                                 "unable to normalize suffix in \"replica\" line"
2275                                                 SLAPD_CONF_UNKNOWN_IGNORED ".\n",
2276                                                 c->log, 0, 0);
2277 #ifdef SLAPD_CONF_UNKNOWN_BAILOUT
2278                                                 return 1;
2279 #endif /* SLAPD_CONF_UNKNOWN_BAILOUT */
2280                                                 break;
2281                                 }
2282
2283                         } else if(!strncasecmp(c->argv[i], "attr", STRLENOF("attr"))) {
2284                                 int exclude = 0;
2285                                 char *arg = c->argv[i] + STRLENOF("attr");
2286                                 if(arg[0] == '!') {
2287                                         arg++;
2288                                         exclude = 1;
2289                                 }
2290                                 if(arg[0] != '=') {
2291                                         continue;
2292                                 }
2293                                 if(add_replica_attrs(c->be, nr, arg + 1, exclude)) {
2294                                         sprintf( c->msg, "<%s> unknown attribute", c->argv[0] );
2295                                         Debug(LDAP_DEBUG_ANY, "%s: %s \"%s\"\n",
2296                                                 c->log, c->msg, arg + 1);
2297                                         return(1);
2298                                 }
2299                         } else if ( bindconf_parse( c->argv[i],
2300                                         &c->be->be_replica[nr]->ri_bindconf ) ) {
2301                                 return(1);
2302                         }
2303                 }
2304         }
2305         return(0);
2306 }
2307
2308 static int
2309 config_updatedn(ConfigArgs *c) {
2310         if (c->op == SLAP_CONFIG_EMIT) {
2311                 if (!BER_BVISEMPTY(&c->be->be_update_ndn)) {
2312                         value_add_one(&c->rvalue_vals, &c->be->be_update_ndn);
2313                         value_add_one(&c->rvalue_nvals, &c->be->be_update_ndn);
2314                         return 0;
2315                 }
2316                 return 1;
2317         } else if ( c->op == LDAP_MOD_DELETE ) {
2318                 ch_free( c->be->be_update_ndn.bv_val );
2319                 BER_BVZERO( &c->be->be_update_ndn );
2320                 SLAP_DBFLAGS(c->be) ^= (SLAP_DBFLAG_SHADOW | SLAP_DBFLAG_SLURP_SHADOW);
2321                 return 0;
2322         }
2323         if(SLAP_SHADOW(c->be)) {
2324                 sprintf( c->msg, "<%s> database already shadowed", c->argv[0] );
2325                 Debug(LDAP_DEBUG_ANY, "%s: %s\n",
2326                         c->log, c->msg, 0);
2327                 return(1);
2328         }
2329
2330         ber_memfree_x( c->value_dn.bv_val, NULL );
2331         if ( !BER_BVISNULL( &c->be->be_update_ndn ) ) {
2332                 ber_memfree_x( c->be->be_update_ndn.bv_val, NULL );
2333         }
2334         c->be->be_update_ndn = c->value_ndn;
2335         BER_BVZERO( &c->value_dn );
2336         BER_BVZERO( &c->value_ndn );
2337
2338         SLAP_DBFLAGS(c->be) |= (SLAP_DBFLAG_SHADOW | SLAP_DBFLAG_SLURP_SHADOW);
2339         return(0);
2340 }
2341
2342 static int
2343 config_updateref(ConfigArgs *c) {
2344         struct berval val;
2345         if (c->op == SLAP_CONFIG_EMIT) {
2346                 if ( c->be->be_update_refs ) {
2347                         value_add( &c->rvalue_vals, c->be->be_update_refs );
2348                         return 0;
2349                 } else {
2350                         return 1;
2351                 }
2352         } else if ( c->op == LDAP_MOD_DELETE ) {
2353                 if ( c->valx < 0 ) {
2354                         ber_bvarray_free( c->be->be_update_refs );
2355                         c->be->be_update_refs = NULL;
2356                 } else {
2357                         int i = c->valx;
2358                         ch_free( c->be->be_update_refs[i].bv_val );
2359                         for (; c->be->be_update_refs[i].bv_val; i++)
2360                                 c->be->be_update_refs[i] = c->be->be_update_refs[i+1];
2361                 }
2362                 return 0;
2363         }
2364         if(!SLAP_SHADOW(c->be)) {
2365                 sprintf( c->msg, "<%s> must appear after syncrepl or updatedn",
2366                         c->argv[0] );
2367                 Debug(LDAP_DEBUG_ANY, "%s: %s\n",
2368                         c->log, c->msg, 0);
2369                 return(1);
2370         }
2371
2372         if(validate_global_referral(c->argv[1])) {
2373                 sprintf( c->msg, "<%s> invalid URL", c->argv[0] );
2374                 Debug(LDAP_DEBUG_ANY, "%s: %s (%s)\n",
2375                         c->log, c->msg, c->argv[1]);
2376                 return(1);
2377         }
2378         ber_str2bv(c->argv[1], 0, 0, &val);
2379         if(value_add_one(&c->be->be_update_refs, &val)) return(LDAP_OTHER);
2380         return(0);
2381 }
2382
2383 static int
2384 config_include(ConfigArgs *c) {
2385         int savelineno = c->lineno;
2386         int rc;
2387         ConfigFile *cf;
2388         ConfigFile *cfsave = cfn;
2389         ConfigFile *cf2 = NULL;
2390         if (c->op == SLAP_CONFIG_EMIT) {
2391                 if (c->private) {
2392                         ConfigFile *cf = c->private;
2393                         value_add_one( &c->rvalue_vals, &cf->c_file );
2394                         return 0;
2395                 }
2396                 return 1;
2397         } else if ( c->op == LDAP_MOD_DELETE ) {
2398         }
2399         cf = ch_calloc( 1, sizeof(ConfigFile));
2400         if ( cfn->c_kids ) {
2401                 for (cf2=cfn->c_kids; cf2 && cf2->c_sibs; cf2=cf2->c_sibs) ;
2402                 cf2->c_sibs = cf;
2403         } else {
2404                 cfn->c_kids = cf;
2405         }
2406         cfn = cf;
2407         ber_str2bv( c->argv[1], 0, 1, &cf->c_file );
2408         rc = read_config_file(c->argv[1], c->depth + 1, c, config_back_cf_table);
2409         c->lineno = savelineno - 1;
2410         cfn = cfsave;
2411         if ( rc ) {
2412                 if ( cf2 ) cf2->c_sibs = NULL;
2413                 else cfn->c_kids = NULL;
2414                 ch_free( cf->c_file.bv_val );
2415                 ch_free( cf );
2416         } else {
2417                 c->private = cf;
2418         }
2419         return(rc);
2420 }
2421
2422 #ifdef HAVE_TLS
2423 static int
2424 config_tls_option(ConfigArgs *c) {
2425         int flag;
2426         switch(c->type) {
2427         case CFG_TLS_RAND:      flag = LDAP_OPT_X_TLS_RANDOM_FILE;      break;
2428         case CFG_TLS_CIPHER:    flag = LDAP_OPT_X_TLS_CIPHER_SUITE;     break;
2429         case CFG_TLS_CERT_FILE: flag = LDAP_OPT_X_TLS_CERTFILE;         break;  
2430         case CFG_TLS_CERT_KEY:  flag = LDAP_OPT_X_TLS_KEYFILE;          break;
2431         case CFG_TLS_CA_PATH:   flag = LDAP_OPT_X_TLS_CACERTDIR;        break;
2432         case CFG_TLS_CA_FILE:   flag = LDAP_OPT_X_TLS_CACERTFILE;       break;
2433         default:                Debug(LDAP_DEBUG_ANY, "%s: "
2434                                         "unknown tls_option <0x%x>\n",
2435                                         c->log, c->type, 0);
2436         }
2437         if (c->op == SLAP_CONFIG_EMIT) {
2438                 return ldap_pvt_tls_get_option( NULL, flag, &c->value_string );
2439         } else if ( c->op == LDAP_MOD_DELETE ) {
2440                 return ldap_pvt_tls_set_option( NULL, flag, NULL );
2441         }
2442         ch_free(c->value_string);
2443         return(ldap_pvt_tls_set_option(NULL, flag, c->argv[1]));
2444 }
2445
2446 /* FIXME: this ought to be provided by libldap */
2447 static int
2448 config_tls_config(ConfigArgs *c) {
2449         int i, flag;
2450         slap_verbmasks crlkeys[] = {
2451                 { BER_BVC("none"),      LDAP_OPT_X_TLS_CRL_NONE },
2452                 { BER_BVC("peer"),      LDAP_OPT_X_TLS_CRL_PEER },
2453                 { BER_BVC("all"),       LDAP_OPT_X_TLS_CRL_ALL },
2454                 { BER_BVNULL, 0 }
2455         };
2456         slap_verbmasks vfykeys[] = {
2457                 { BER_BVC("never"),     LDAP_OPT_X_TLS_NEVER },
2458                 { BER_BVC("demand"),    LDAP_OPT_X_TLS_DEMAND },
2459                 { BER_BVC("try"),       LDAP_OPT_X_TLS_TRY },
2460                 { BER_BVC("hard"),      LDAP_OPT_X_TLS_HARD },
2461                 { BER_BVNULL, 0 }
2462         }, *keys;
2463         switch(c->type) {
2464         case CFG_TLS_CRLCHECK:  flag = LDAP_OPT_X_TLS_CRLCHECK;         keys = crlkeys; break;
2465         case CFG_TLS_VERIFY:    flag = LDAP_OPT_X_TLS_REQUIRE_CERT;     keys = vfykeys; break;
2466         default:
2467                 Debug(LDAP_DEBUG_ANY, "%s: "
2468                                 "unknown tls_option <0x%x>\n",
2469                                 c->log, c->type, 0);
2470         }
2471         if (c->op == SLAP_CONFIG_EMIT) {
2472                 ldap_pvt_tls_get_option( NULL, flag, &c->value_int );
2473                 for (i=0; !BER_BVISNULL(&keys[i].word); i++) {
2474                         if (keys[i].mask == c->value_int) {
2475                                 c->value_string = ch_strdup( keys[i].word.bv_val );
2476                                 return 0;
2477                         }
2478                 }
2479                 return 1;
2480         } else if ( c->op == LDAP_MOD_DELETE ) {
2481                 int i = 0;
2482                 return ldap_pvt_tls_set_option( NULL, flag, &i );
2483         }
2484         ch_free( c->value_string );
2485         if(isdigit((unsigned char)c->argv[1][0])) {
2486                 i = atoi(c->argv[1]);
2487                 return(ldap_pvt_tls_set_option(NULL, flag, &i));
2488         } else {
2489                 return(ldap_int_tls_config(NULL, flag, c->argv[1]));
2490         }
2491 }
2492 #endif
2493
2494 static CfEntryInfo *
2495 config_find_base( CfEntryInfo *root, struct berval *dn, CfEntryInfo **last )
2496 {
2497         struct berval cdn;
2498         char *c;
2499
2500         if ( !root ) {
2501                 *last = NULL;
2502                 return NULL;
2503         }
2504
2505         if ( dn_match( &root->ce_entry->e_nname, dn ))
2506                 return root;
2507
2508         c = dn->bv_val+dn->bv_len;
2509         for (;*c != ',';c--);
2510
2511         while(root) {
2512                 *last = root;
2513                 for (--c;c>dn->bv_val && *c != ',';c--);
2514                 cdn.bv_val = c;
2515                 if ( *c == ',' )
2516                         cdn.bv_val++;
2517                 cdn.bv_len = dn->bv_len - (cdn.bv_val - dn->bv_val);
2518
2519                 root = root->ce_kids;
2520
2521                 for (;root;root=root->ce_sibs) {
2522                         if ( dn_match( &root->ce_entry->e_nname, &cdn )) {
2523                                 if ( cdn.bv_val == dn->bv_val ) {
2524                                         return root;
2525                                 }
2526                                 break;
2527                         }
2528                 }
2529         }
2530         return root;
2531 }
2532
2533 typedef struct setup_cookie {
2534         CfBackInfo *cfb;
2535         ConfigArgs *ca;
2536 } setup_cookie;
2537
2538 static int
2539 config_ldif_resp( Operation *op, SlapReply *rs )
2540 {
2541         if ( rs->sr_type == REP_SEARCH ) {
2542                 setup_cookie *sc = op->o_callback->sc_private;
2543
2544                 sc->cfb->cb_got_ldif = 1;
2545                 rs->sr_err = config_add_internal( sc->cfb, rs->sr_entry, sc->ca, NULL, NULL );
2546                 if ( rs->sr_err != LDAP_SUCCESS ) {
2547                         Debug( LDAP_DEBUG_ANY, "config error processing %s: %s\n",
2548                                 rs->sr_entry->e_name.bv_val, sc->ca->msg, 0 );
2549                 }
2550         }
2551         return rs->sr_err;
2552 }
2553
2554 /* Configure and read the underlying back-ldif store */
2555 static int
2556 config_setup_ldif( BackendDB *be, const char *dir, int readit ) {
2557         CfBackInfo *cfb = be->be_private;
2558         ConfigArgs c = {0};
2559         ConfigTable *ct;
2560         char *argv[3];
2561         int rc = 0;
2562         setup_cookie sc;
2563         slap_callback cb = { NULL, config_ldif_resp, NULL, NULL };
2564         Connection conn = {0};
2565         char opbuf[OPERATION_BUFFER_SIZE];
2566         Operation *op;
2567         SlapReply rs = {REP_RESULT};
2568         Filter filter = { LDAP_FILTER_PRESENT };
2569         struct berval filterstr = BER_BVC("(objectclass=*)");
2570         struct stat st;
2571
2572         /* Is the config directory available? */
2573         if ( stat( dir, &st ) < 0 ) {
2574                 /* No, so don't bother using the backing store.
2575                  * All changes will be in-memory only.
2576                  */
2577                 return 0;
2578         }
2579                 
2580         cfb->cb_db.bd_info = backend_info( "ldif" );
2581         if ( !cfb->cb_db.bd_info )
2582                 return 0;       /* FIXME: eventually this will be a fatal error */
2583
2584         if ( cfb->cb_db.bd_info->bi_db_init( &cfb->cb_db )) return 1;
2585
2586         /* Mark that back-ldif type is in use */
2587         cfb->cb_db.bd_info->bi_nDB++;
2588
2589         cfb->cb_db.be_suffix = be->be_suffix;
2590         cfb->cb_db.be_nsuffix = be->be_nsuffix;
2591         cfb->cb_db.be_rootdn = be->be_rootdn;
2592         cfb->cb_db.be_rootndn = be->be_rootndn;
2593
2594         ber_str2bv( dir, 0, 1, &cfdir );
2595
2596         c.be = &cfb->cb_db;
2597         c.fname = "slapd";
2598         c.argc = 2;
2599         argv[0] = "directory";
2600         argv[1] = (char *)dir;
2601         argv[2] = NULL;
2602         c.argv = argv;
2603
2604         ct = config_find_keyword( c.be->be_cf_ocs->co_table, &c );
2605         if ( !ct )
2606                 return 1;
2607
2608         if ( config_add_vals( ct, &c ))
2609                 return 1;
2610
2611         if ( backend_startup_one( &cfb->cb_db ))
2612                 return 1;
2613
2614         if ( readit ) {
2615                 void *thrctx = ldap_pvt_thread_pool_context();
2616
2617                 op = (Operation *)opbuf;
2618                 connection_fake_init( &conn, op, thrctx );
2619
2620                 filter.f_desc = slap_schema.si_ad_objectClass;
2621
2622                 op->o_tag = LDAP_REQ_SEARCH;
2623
2624                 op->ors_filter = &filter;
2625                 op->ors_filterstr = filterstr;
2626                 op->ors_scope = LDAP_SCOPE_SUBTREE;
2627
2628                 op->o_dn = be->be_rootdn;
2629                 op->o_ndn = be->be_rootndn;
2630
2631                 op->o_req_dn = be->be_suffix[0];
2632                 op->o_req_ndn = be->be_nsuffix[0];
2633
2634                 op->ors_tlimit = SLAP_NO_LIMIT;
2635                 op->ors_slimit = SLAP_NO_LIMIT;
2636
2637                 op->ors_attrs = slap_anlist_all_attributes;
2638                 op->ors_attrsonly = 0;
2639
2640                 op->o_callback = &cb;
2641                 sc.cfb = cfb;
2642                 sc.ca = &c;
2643                 cb.sc_private = &sc;
2644
2645                 op->o_bd = &cfb->cb_db;
2646                 rc = op->o_bd->be_search( op, &rs );
2647
2648                 ldap_pvt_thread_pool_context_reset( thrctx );
2649         }
2650
2651         cfb->cb_use_ldif = 1;
2652
2653         return rc;
2654 }
2655
2656 static int
2657 CfOc_cmp( const void *c1, const void *c2 ) {
2658         const ConfigOCs *co1 = c1;
2659         const ConfigOCs *co2 = c2;
2660
2661         return ber_bvcmp( co1->co_name, co2->co_name );
2662 }
2663
2664 int
2665 config_register_schema(ConfigTable *ct, ConfigOCs *ocs) {
2666         int i;
2667
2668         i = init_config_attrs( ct );
2669         if ( i ) return i;
2670
2671         /* set up the objectclasses */
2672         i = init_config_ocs( ocs );
2673         if ( i ) return i;
2674
2675         for (i=0; ocs[i].co_def; i++) {
2676                 if ( ocs[i].co_oc ) {
2677                         ocs[i].co_name = &ocs[i].co_oc->soc_cname;
2678                         if ( !ocs[i].co_table )
2679                                 ocs[i].co_table = ct;
2680                         avl_insert( &CfOcTree, &ocs[i], CfOc_cmp, avl_dup_error );
2681                 }
2682         }
2683         return 0;
2684 }
2685
2686 int
2687 read_config(const char *fname, const char *dir) {
2688         BackendDB *be;
2689         CfBackInfo *cfb;
2690         const char *cfdir, *cfname;
2691         int rc;
2692
2693         /* Setup the config backend */
2694         be = backend_db_init( "config" );
2695         if ( !be )
2696                 return 1;
2697
2698         cfb = be->be_private;
2699
2700         /* If no .conf, or a dir was specified, setup the dir */
2701         if ( !fname || dir ) {
2702                 if ( dir ) {
2703                         /* If explicitly given, check for existence */
2704                         struct stat st;
2705
2706                         if ( stat( dir, &st ) < 0 ) {
2707                                 Debug( LDAP_DEBUG_ANY,
2708                                         "invalid config directory %s, error %d\n",
2709                                                 dir, errno, 0 );
2710                                 return 1;
2711                         }
2712                         cfdir = dir;
2713                 } else {
2714                         cfdir = SLAPD_DEFAULT_CONFIGDIR;
2715                 }
2716                 /* if fname is defaulted, try reading .d */
2717                 rc = config_setup_ldif( be, cfdir, !fname );
2718
2719                 /* It's OK if the base object doesn't exist yet */
2720                 if ( rc && rc != LDAP_NO_SUCH_OBJECT )
2721                         return 1;
2722
2723                 /* If we read the config from back-ldif, nothing to do here */
2724                 if ( cfb->cb_got_ldif ) {
2725                         rc = 0;
2726                         goto done;
2727                 }
2728         }
2729
2730         if ( fname )
2731                 cfname = fname;
2732         else
2733                 cfname = SLAPD_DEFAULT_CONFIGFILE;
2734
2735         rc = read_config_file(cfname, 0, NULL, config_back_cf_table);
2736
2737         if ( rc == 0 )
2738                 ber_str2bv( cfname, 0, 1, &cfb->cb_config->c_file );
2739
2740         /* If we got this far and failed, it may be a serious problem. In server
2741          * mode, we should never come to this. However, it may be alright if we're
2742          * using slapadd to create the conf dir.
2743          */
2744         while ( rc ) {
2745                 if ( slapMode & (SLAP_SERVER_MODE|SLAP_TOOL_READMAIN|SLAP_TOOL_READONLY))
2746                         break;
2747                 /* If a config file was explicitly given, fail */
2748                 if ( fname )
2749                         break;
2750                 
2751                 /* Seems to be slapadd with a config dir, let it continue */
2752                 if ( cfb->cb_use_ldif ) {
2753                         rc = 0;
2754                         cfb->cb_got_ldif = 1;
2755                 }
2756                 break;
2757         }
2758
2759 done:
2760         if ( rc == 0 && BER_BVISNULL( &frontendDB->be_schemadn ) ) {
2761                 ber_str2bv( SLAPD_SCHEMA_DN, STRLENOF( SLAPD_SCHEMA_DN ), 1,
2762                         &frontendDB->be_schemadn );
2763                 rc = dnNormalize( 0, NULL, NULL, &frontendDB->be_schemadn, &frontendDB->be_schemandn, NULL );
2764                 if ( rc != LDAP_SUCCESS ) {
2765                         Debug(LDAP_DEBUG_ANY, "read_config: "
2766                                 "unable to normalize default schema DN \"%s\"\n",
2767                                 frontendDB->be_schemadn.bv_val, 0, 0 );
2768                         /* must not happen */
2769                         assert( 0 );
2770                 }
2771         }
2772         return rc;
2773 }
2774
2775 static int
2776 config_back_bind( Operation *op, SlapReply *rs )
2777 {
2778         if ( op->orb_method == LDAP_AUTH_SIMPLE && be_isroot_pw( op )) {
2779                 ber_dupbv( &op->orb_edn, be_root_dn( op->o_bd ));
2780                 /* frontend sends result */
2781                 return LDAP_SUCCESS;
2782         }
2783
2784         rs->sr_err = LDAP_INVALID_CREDENTIALS;
2785         send_ldap_result( op, rs );
2786
2787         return rs->sr_err;
2788 }
2789
2790 static int
2791 config_send( Operation *op, SlapReply *rs, CfEntryInfo *ce, int depth )
2792 {
2793         int rc = 0;
2794
2795         if ( test_filter( op, ce->ce_entry, op->ors_filter ) == LDAP_COMPARE_TRUE )
2796         {
2797                 rs->sr_attrs = op->ors_attrs;
2798                 rs->sr_entry = ce->ce_entry;
2799                 rc = send_search_entry( op, rs );
2800         }
2801         if ( op->ors_scope == LDAP_SCOPE_SUBTREE ) {
2802                 if ( ce->ce_kids ) {
2803                         rc = config_send( op, rs, ce->ce_kids, 1 );
2804                         if ( rc ) return rc;
2805                 }
2806                 if ( depth ) {
2807                         for (ce=ce->ce_sibs; ce; ce=ce->ce_sibs) {
2808                                 rc = config_send( op, rs, ce, 0 );
2809                                 if ( rc ) break;
2810                         }
2811                 }
2812         }
2813         return rc;
2814 }
2815
2816 static ConfigTable *
2817 config_find_table( ConfigOCs **colst, int nocs, AttributeDescription *ad )
2818 {
2819         int i, j;
2820
2821         for (j=0; j<nocs; j++) {
2822                 for (i=0; colst[j]->co_table[i].name; i++)
2823                         if ( colst[j]->co_table[i].ad == ad )
2824                                 return &colst[j]->co_table[i];
2825         }
2826         return NULL;
2827 }
2828
2829 /* Sort the attributes of the entry according to the order defined
2830  * in the objectclass, with required attributes occurring before
2831  * allowed attributes. For any attributes with sequencing dependencies
2832  * (e.g., rootDN must be defined after suffix) the objectclass must
2833  * list the attributes in the desired sequence.
2834  */
2835 static void
2836 sort_attrs( Entry *e, ConfigOCs **colst, int nocs )
2837 {
2838         Attribute *a, *head = NULL, *tail = NULL, **prev;
2839         int i, j;
2840
2841         for (i=0; i<nocs; i++) {
2842                 if ( colst[i]->co_oc->soc_required ) {
2843                         AttributeType **at = colst[i]->co_oc->soc_required;
2844                         for (j=0; at[j]; j++) {
2845                                 for (a=e->e_attrs, prev=&e->e_attrs; a;
2846                                         prev = &(*prev)->a_next, a=a->a_next) {
2847                                         if ( a->a_desc == at[j]->sat_ad ) {
2848                                                 *prev = a->a_next;
2849                                                 if (!head) {
2850                                                         head = a;
2851                                                         tail = a;
2852                                                 } else {
2853                                                         tail->a_next = a;
2854                                                         tail = a;
2855                                                 }
2856                                                 break;
2857                                         }
2858                                 }
2859                         }
2860                 }
2861                 if ( colst[i]->co_oc->soc_allowed ) {
2862                         AttributeType **at = colst[i]->co_oc->soc_allowed;
2863                         for (j=0; at[j]; j++) {
2864                                 for (a=e->e_attrs, prev=&e->e_attrs; a;
2865                                         prev = &(*prev)->a_next, a=a->a_next) {
2866                                         if ( a->a_desc == at[j]->sat_ad ) {
2867                                                 *prev = a->a_next;
2868                                                 if (!head) {
2869                                                         head = a;
2870                                                         tail = a;
2871                                                 } else {
2872                                                         tail->a_next = a;
2873                                                         tail = a;
2874                                                 }
2875                                                 break;
2876                                         }
2877                                 }
2878                         }
2879                 }
2880         }
2881         if ( tail ) {
2882                 tail->a_next = e->e_attrs;
2883                 e->e_attrs = head;
2884         }
2885 }
2886
2887 static int
2888 check_vals( ConfigTable *ct, ConfigArgs *ca, void *ptr, int isAttr )
2889 {
2890         Attribute *a = NULL;
2891         AttributeDescription *ad;
2892         BerVarray vals;
2893
2894         int i, rc = 0, sort = 0;
2895
2896         if ( isAttr ) {
2897                 a = ptr;
2898                 ad = a->a_desc;
2899                 vals = a->a_vals;
2900         } else {
2901                 Modifications *ml = ptr;
2902                 ad = ml->sml_desc;
2903                 vals = ml->sml_values;
2904         }
2905
2906         if ( a && ( ad->ad_type->sat_flags & SLAP_AT_ORDERED_VAL )) {
2907                 sort = 1;
2908                 rc = ordered_value_sort( a, 1 );
2909                 if ( rc )
2910                         return rc;
2911         }
2912         for ( i=0; vals[i].bv_val; i++ ) {
2913                 ca->line = vals[i].bv_val;
2914                 if ( sort ) {
2915                         char *idx = strchr( ca->line, '}' );
2916                         if ( idx ) ca->line = idx+1;
2917                 }
2918                 rc = config_parse_vals( ct, ca, i );
2919                 if ( rc ) {
2920                         break;
2921                 }
2922         }
2923         return rc;
2924 }
2925
2926 static int
2927 check_name_index( CfEntryInfo *parent, ConfigType ce_type, Entry *e,
2928         SlapReply *rs, int *renum )
2929 {
2930         CfEntryInfo *ce;
2931         int index = -1, gotindex = 0, nsibs;
2932         int renumber = 0, tailindex = 0;
2933         char *ptr1, *ptr2;
2934         struct berval rdn;
2935
2936         if ( renum ) *renum = 0;
2937
2938         /* These entries don't get indexed/renumbered */
2939         if ( ce_type == Cft_Global ) return 0;
2940         if ( ce_type == Cft_Schema && parent->ce_type == Cft_Global ) return 0;
2941
2942         if ( ce_type == Cft_Include || ce_type == Cft_Module )
2943                 tailindex = 1;
2944
2945         /* See if the rdn has an index already */
2946         dnRdn( &e->e_name, &rdn );
2947         ptr1 = strchr( e->e_name.bv_val, '{' );
2948         if ( ptr1 && ptr1 - e->e_name.bv_val < rdn.bv_len ) {
2949                 ptr2 = strchr( ptr1, '}' );
2950                 if (!ptr2 || ptr2 - e->e_name.bv_val > rdn.bv_len)
2951                         return LDAP_NAMING_VIOLATION;
2952                 if ( ptr2-ptr1 == 1)
2953                         return LDAP_NAMING_VIOLATION;
2954                 gotindex = 1;
2955                 index = atoi(ptr1+1);
2956                 if ( index < 0 ) {
2957                         /* Special case, we allow -1 for the frontendDB */
2958                         if ( index != -1 || ce_type != Cft_Database ||
2959                                 strncmp( ptr2+1, "frontend,", STRLENOF("frontend,") ))
2960
2961                                 return LDAP_NAMING_VIOLATION;
2962                 }
2963         }
2964
2965         /* count related kids */
2966         for (nsibs=0, ce=parent->ce_kids; ce; ce=ce->ce_sibs) {
2967                 if ( ce->ce_type == ce_type ) nsibs++;
2968         }
2969
2970         if ( index != nsibs ) {
2971                 if ( gotindex ) {
2972                         if ( index < nsibs ) {
2973                                 if ( tailindex ) return LDAP_NAMING_VIOLATION;
2974                                 /* Siblings need to be renumbered */
2975                                 renumber = 1;
2976                         }
2977                 }
2978                 if ( !renumber ) {
2979                         struct berval ival, newrdn, nnewrdn;
2980                         struct berval rtype, rval;
2981                         Attribute *a;
2982                         AttributeDescription *ad = NULL;
2983                         char ibuf[32];
2984                         const char *text;
2985
2986                         rval.bv_val = strchr(rdn.bv_val, '=' ) + 1;
2987                         rval.bv_len = rdn.bv_len - (rval.bv_val - rdn.bv_val);
2988                         rtype.bv_val = rdn.bv_val;
2989                         rtype.bv_len = rval.bv_val - rtype.bv_val - 1;
2990
2991                         /* Find attr */
2992                         slap_bv2ad( &rtype, &ad, &text );
2993                         a = attr_find( e->e_attrs, ad );
2994                         if (!a ) return LDAP_NAMING_VIOLATION;
2995
2996                         ival.bv_val = ibuf;
2997                         ival.bv_len = sprintf( ibuf, IFMT, nsibs );
2998                         
2999                         newrdn.bv_len = rdn.bv_len + ival.bv_len;
3000                         newrdn.bv_val = ch_malloc( newrdn.bv_len+1 );
3001
3002                         if ( tailindex ) {
3003                                 ptr1 = lutil_strncopy( newrdn.bv_val, rdn.bv_val, rdn.bv_len );
3004                                 ptr1 = lutil_strcopy( ptr1, ival.bv_val );
3005                         } else {
3006                                 int xlen;
3007                                 if ( !gotindex ) {
3008                                         ptr2 = rval.bv_val;
3009                                         xlen = rval.bv_len;
3010                                 } else {
3011                                         xlen = rdn.bv_len - (ptr2 - rdn.bv_val);
3012                                 }
3013                                 ptr1 = lutil_strncopy( newrdn.bv_val, rtype.bv_val,
3014                                         rtype.bv_len );
3015                                 *ptr1++ = '=';
3016                                 ptr1 = lutil_strcopy( ptr1, ival.bv_val );
3017                                 ptr1 = lutil_strncopy( ptr1, ptr2, xlen );
3018                                 *ptr1 = '\0';
3019                         }
3020
3021                         /* Do the equivalent of ModRDN */
3022                         /* Replace DN / NDN */
3023                         newrdn.bv_len = ptr1 - newrdn.bv_val;
3024                         rdnNormalize( 0, NULL, NULL, &newrdn, &nnewrdn, NULL );
3025                         free( e->e_name.bv_val );
3026                         build_new_dn( &e->e_name, &parent->ce_entry->e_name,
3027                                 &newrdn, NULL );
3028                         free( e->e_nname.bv_val );
3029                         build_new_dn( &e->e_nname, &parent->ce_entry->e_nname,
3030                                 &nnewrdn, NULL );
3031
3032                         /* Replace attr */
3033                         free( a->a_vals[0].bv_val );
3034                         ptr1 = strchr( newrdn.bv_val, '=' ) + 1;
3035                         a->a_vals[0].bv_len = newrdn.bv_len - (ptr1 - newrdn.bv_val);
3036                         a->a_vals[0].bv_val = ch_malloc( a->a_vals[0].bv_len + 1 );
3037                         strcpy( a->a_vals[0].bv_val, ptr1 );
3038
3039                         if ( a->a_nvals != a->a_vals ) {
3040                                 free( a->a_nvals[0].bv_val );
3041                                 ptr1 = strchr( nnewrdn.bv_val, '=' ) + 1;
3042                                 a->a_nvals[0].bv_len = nnewrdn.bv_len - (ptr1 - nnewrdn.bv_val);
3043                                 a->a_nvals[0].bv_val = ch_malloc( a->a_nvals[0].bv_len + 1 );
3044                                 strcpy( a->a_nvals[0].bv_val, ptr1 );
3045                         }
3046                         free( nnewrdn.bv_val );
3047                         free( newrdn.bv_val );
3048                 }
3049         }
3050         if ( renum ) *renum = renumber;
3051         return 0;
3052 }
3053
3054 static ConfigOCs **
3055 count_ocs( Attribute *oc_at, int *nocs )
3056 {
3057         int i, j, n;
3058         ConfigOCs co, *coptr, **colst;
3059
3060         /* count the objectclasses */
3061         for ( i=0; oc_at->a_nvals[i].bv_val; i++ );
3062         n = i;
3063         colst = (ConfigOCs **)ch_malloc( n * sizeof(ConfigOCs *));
3064
3065         for ( i=0, j=0; i<n; i++) {
3066                 co.co_name = &oc_at->a_nvals[i];
3067                 coptr = avl_find( CfOcTree, &co, CfOc_cmp );
3068                 
3069                 /* ignore non-config objectclasses. probably should be
3070                  * an error, general data doesn't belong here.
3071                  */
3072                 if ( !coptr ) continue;
3073
3074                 /* Ignore the root objectclass, it has no implementation.
3075                  */
3076                 if ( coptr->co_type == Cft_Abstract ) continue;
3077                 colst[j++] = coptr;
3078         }
3079         *nocs = j;
3080         return colst;
3081 }
3082
3083 static int
3084 cfAddInclude( CfEntryInfo *p, Entry *e, ConfigArgs *ca )
3085 {
3086         if ( p->ce_type != Cft_Global && p->ce_type != Cft_Include )
3087                 return LDAP_CONSTRAINT_VIOLATION;
3088
3089         /* If we're reading from a configdir, don't parse this entry */
3090         if ( ca->lineno )
3091                 return LDAP_COMPARE_TRUE;
3092
3093         cfn = p->ce_private;
3094         ca->private = cfn;
3095         return LDAP_SUCCESS;
3096 }
3097
3098 static int
3099 cfAddSchema( CfEntryInfo *p, Entry *e, ConfigArgs *ca )
3100 {
3101         ConfigFile *cfo;
3102
3103         /* This entry is hardcoded, don't re-parse it */
3104         if ( p->ce_type == Cft_Global ) {
3105                 cfn = p->ce_private;
3106                 ca->private = cfn;
3107                 return LDAP_COMPARE_TRUE;
3108         }
3109         if ( p->ce_type != Cft_Schema )
3110                 return LDAP_CONSTRAINT_VIOLATION;
3111
3112         cfn = ch_calloc( 1, sizeof(ConfigFile) );
3113         ca->private = cfn;
3114         cfo = p->ce_private;
3115         cfn->c_sibs = cfo->c_kids;
3116         cfo->c_kids = cfn;
3117         return LDAP_SUCCESS;
3118 }
3119
3120 static int
3121 cfAddDatabase( CfEntryInfo *p, Entry *e, struct config_args_s *ca )
3122 {
3123         if ( p->ce_type != Cft_Global )
3124                 return LDAP_CONSTRAINT_VIOLATION;
3125         ca->be = frontendDB;    /* just to get past check_vals */
3126         return LDAP_SUCCESS;
3127 }
3128
3129 static int
3130 cfAddBackend( CfEntryInfo *p, Entry *e, struct config_args_s *ca )
3131 {
3132         if ( p->ce_type != Cft_Global )
3133                 return LDAP_CONSTRAINT_VIOLATION;
3134         return LDAP_SUCCESS;
3135 }
3136
3137 static int
3138 cfAddModule( CfEntryInfo *p, Entry *e, struct config_args_s *ca )
3139 {
3140         if ( p->ce_type != Cft_Global )
3141                 return LDAP_CONSTRAINT_VIOLATION;
3142         return LDAP_SUCCESS;
3143 }
3144
3145 static int
3146 cfAddOverlay( CfEntryInfo *p, Entry *e, struct config_args_s *ca )
3147 {
3148         if ( p->ce_type != Cft_Database )
3149                 return LDAP_CONSTRAINT_VIOLATION;
3150         ca->be = p->ce_be;
3151         return LDAP_SUCCESS;
3152 }
3153
3154 /* Parse an LDAP entry into config directives */
3155 static int
3156 config_add_internal( CfBackInfo *cfb, Entry *e, ConfigArgs *ca, SlapReply *rs, int *renum )
3157 {
3158         CfEntryInfo *ce, *last;
3159         ConfigOCs **colst;
3160         Attribute *a, *oc_at;
3161         int i, nocs, rc = 0;
3162         struct berval pdn;
3163         ConfigTable *ct;
3164         char *ptr;
3165
3166         /* Make sure parent exists and entry does not */
3167         ce = config_find_base( cfb->cb_root, &e->e_nname, &last );
3168         if ( ce )
3169                 return LDAP_ALREADY_EXISTS;
3170
3171         dnParent( &e->e_nname, &pdn );
3172
3173         /* If last is NULL, the new entry is the root/suffix entry, 
3174          * otherwise last should be the parent.
3175          */
3176         if ( last && !dn_match( &last->ce_entry->e_nname, &pdn )) {
3177                 if ( rs )
3178                         rs->sr_matched = last->ce_entry->e_name.bv_val;
3179                 return LDAP_NO_SUCH_OBJECT;
3180         }
3181
3182         oc_at = attr_find( e->e_attrs, slap_schema.si_ad_objectClass );
3183         if ( !oc_at ) return LDAP_OBJECT_CLASS_VIOLATION;
3184
3185         memset( ca, 0, sizeof(ConfigArgs));
3186
3187         /* Fake the coordinates based on whether we're part of an
3188          * LDAP Add or if reading the config dir
3189          */
3190         if ( rs ) {
3191                 ca->fname = "slapd";
3192                 ca->lineno = 0;
3193         } else {
3194                 ca->fname = cfdir.bv_val;
3195                 ca->lineno = 1;
3196         }
3197
3198         colst = count_ocs( oc_at, &nocs );
3199
3200         /* Only the root can be Cft_Global, everything else must
3201          * have a parent. Only limited nesting arrangements are allowed.
3202          */
3203         rc = LDAP_CONSTRAINT_VIOLATION;
3204         if ( colst[0]->co_type == Cft_Global && !last ) {
3205                 cfn = cfb->cb_config;
3206                 ca->private = cfn;
3207                 ca->be = frontendDB;    /* just to get past check_vals */
3208                 rc = LDAP_SUCCESS;
3209         }
3210
3211         /* Check whether the Add is allowed by its parent, and do
3212          * any necessary arg setup
3213          */
3214         if ( last ) {
3215                 for ( i=0; i<nocs; i++ ) {
3216                         if ( colst[i]->co_ldadd &&
3217                                 ( rc = colst[i]->co_ldadd( last, e, ca ))
3218                                         != LDAP_CONSTRAINT_VIOLATION ) {
3219                                 break;
3220                         }
3221                 }
3222         }
3223
3224         /* Add the entry but don't parse it, we already have its contents */
3225         if ( rc == LDAP_COMPARE_TRUE ) {
3226                 rc = LDAP_SUCCESS;
3227                 goto ok;
3228         }
3229
3230         if ( rc != LDAP_SUCCESS )
3231                 goto done;
3232
3233         /* Parse all the values and check for simple syntax errors before
3234          * performing any set actions.
3235          *
3236          * If doing an LDAPadd, check for indexed names and any necessary
3237          * renaming/renumbering. Entries that don't need indexed names are
3238          * ignored. Entries that need an indexed name and arrive without one
3239          * are assigned to the end. Entries that arrive with an index may
3240          * cause the following entries to be renumbered/bumped down.
3241          *
3242          * Note that "pseudo-indexed" entries (cn=Include{xx}, cn=Module{xx})
3243          * don't allow Adding an entry with an index that's already in use.
3244          * This is flagged as an error (LDAP_ALREADY_EXISTS) up above.
3245          *
3246          * These entries can have auto-assigned indexes (appended to the end)
3247          * but only the other types support auto-renumbering of siblings.
3248          */
3249         rc = check_name_index( last, colst[0]->co_type, e, rs, renum );
3250         if ( rc )
3251                 goto done;
3252
3253         init_config_argv( ca );
3254
3255         /* Make sure we process attrs in the required order */
3256         sort_attrs( e, colst, nocs );
3257
3258         for ( a=e->e_attrs; a; a=a->a_next ) {
3259                 if ( a == oc_at ) continue;
3260                 ct = config_find_table( colst, nocs, a->a_desc );
3261                 if ( !ct ) continue;    /* user data? */
3262                 rc = check_vals( ct, ca, a, 1 );
3263                 if ( rc ) goto done;
3264         }
3265
3266         /* Basic syntax checks are OK. Do the actual settings. */
3267         for ( a=e->e_attrs; a; a=a->a_next ) {
3268                 if ( a == oc_at ) continue;
3269                 ct = config_find_table( colst, nocs, a->a_desc );
3270                 if ( !ct ) continue;    /* user data? */
3271                 for (i=0; a->a_vals[i].bv_val; i++) {
3272                         ca->line = a->a_vals[i].bv_val;
3273                         if ( a->a_desc->ad_type->sat_flags & SLAP_AT_ORDERED ) {
3274                                 ptr = strchr( ca->line, '}' );
3275                                 if ( ptr ) ca->line = ptr+1;
3276                         }
3277                         ca->valx = i;
3278                         rc = config_parse_add( ct, ca );
3279                         if ( rc ) {
3280                                 rc = LDAP_OTHER;
3281                                 goto done;
3282                         }
3283                 }
3284         }
3285 ok:
3286         /* Newly added databases and overlays need to be started up */
3287         if ( CONFIG_ONLINE_ADD( ca )) {
3288                 if ( colst[0]->co_type == Cft_Database ) {
3289                         rc = backend_startup_one( ca->be );
3290
3291                 } else if ( colst[0]->co_type == Cft_Overlay ) {
3292                         if ( ca->bi->bi_db_open ) {
3293                                 BackendInfo *bi_orig = ca->be->bd_info;
3294                                 ca->be->bd_info = ca->bi;
3295                                 rc = ca->bi->bi_db_open( ca->be );
3296                                 ca->be->bd_info = bi_orig;
3297                         }
3298                 }
3299                 if ( rc ) {
3300                         sprintf( ca->msg, "<%s> failed startup", ca->argv[0] );
3301                         Debug(LDAP_DEBUG_ANY, "%s: %s (%s)!\n",
3302                                 ca->log, ca->msg, ca->argv[1] );
3303                         rc = LDAP_OTHER;
3304                         goto done;
3305                 }
3306         }
3307
3308         ce = ch_calloc( 1, sizeof(CfEntryInfo) );
3309         ce->ce_parent = last;
3310         ce->ce_entry = entry_dup( e );
3311         ce->ce_entry->e_private = ce;
3312         ce->ce_type = colst[0]->co_type;
3313         ce->ce_be = ca->be;
3314         ce->ce_bi = ca->bi;
3315         ce->ce_private = ca->private;
3316         if ( !last ) {
3317                 cfb->cb_root = ce;
3318         } else if ( last->ce_kids ) {
3319                 CfEntryInfo *c2;
3320
3321                 for (c2=last->ce_kids; c2 && c2->ce_sibs; c2 = c2->ce_sibs);
3322
3323                 c2->ce_sibs = ce;
3324         } else {
3325                 last->ce_kids = ce;
3326         }
3327
3328 done:
3329         if ( rc ) {
3330                 if ( (colst[0]->co_type == Cft_Database) && ca->be ) {
3331                         if ( ca->be != frontendDB )
3332                                 backend_destroy_one( ca->be, 1 );
3333                 } else if ( (colst[0]->co_type == Cft_Overlay) && ca->bi ) {
3334                         overlay_destroy_one( ca->be, (slap_overinst *)ca->bi );
3335                 }
3336         }
3337
3338         ch_free( ca->argv );
3339         if ( colst ) ch_free( colst );
3340         return rc;
3341 }
3342
3343 /* Parse an LDAP entry into config directives, then store in underlying
3344  * database.
3345  */
3346 static int
3347 config_back_add( Operation *op, SlapReply *rs )
3348 {
3349         CfBackInfo *cfb;
3350         int renumber;
3351         ConfigArgs ca;
3352
3353         if ( !be_isroot( op ) ) {
3354                 rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
3355                 goto out;
3356         }
3357
3358         cfb = (CfBackInfo *)op->o_bd->be_private;
3359
3360         ldap_pvt_thread_pool_pause( &connection_pool );
3361
3362         /* Strategy:
3363          * 1) check for existence of entry
3364          * 2) check for sibling renumbering
3365          * 3) perform internal add
3366          * 4) store entry in underlying database
3367          * 5) perform any necessary renumbering
3368          */
3369         rs->sr_err = config_add_internal( cfb, op->ora_e, &ca, rs, &renumber );
3370         if ( rs->sr_err != LDAP_SUCCESS ) {
3371                 rs->sr_text = ca.msg;
3372         } else if ( cfb->cb_use_ldif ) {
3373                 BackendDB *be = op->o_bd;
3374                 slap_callback sc = { NULL, slap_null_cb, NULL, NULL };
3375                 op->o_bd = &cfb->cb_db;
3376                 sc.sc_next = op->o_callback;
3377                 op->o_callback = &sc;
3378                 op->o_bd->be_add( op, rs );
3379                 op->o_bd = be;
3380                 op->o_callback = sc.sc_next;
3381         }
3382         if ( renumber ) {
3383         }
3384
3385         ldap_pvt_thread_pool_resume( &connection_pool );
3386
3387 out:
3388         send_ldap_result( op, rs );
3389         return rs->sr_err;
3390 }
3391
3392 typedef struct delrec {
3393         struct delrec *next;
3394         int nidx;
3395         int idx[1];
3396 } delrec;
3397
3398 static int
3399 config_modify_internal( CfEntryInfo *ce, Operation *op, SlapReply *rs,
3400         ConfigArgs *ca )
3401 {
3402         int rc = LDAP_UNWILLING_TO_PERFORM;
3403         Modifications *ml;
3404         Entry *e = ce->ce_entry;
3405         Attribute *save_attrs = e->e_attrs, *oc_at;
3406         ConfigTable *ct;
3407         ConfigOCs **colst;
3408         int i, nocs;
3409         char *ptr;
3410         delrec *dels = NULL, *deltail = NULL;
3411
3412         oc_at = attr_find( e->e_attrs, slap_schema.si_ad_objectClass );
3413         if ( !oc_at ) return LDAP_OBJECT_CLASS_VIOLATION;
3414
3415         colst = count_ocs( oc_at, &nocs );
3416
3417         e->e_attrs = attrs_dup( e->e_attrs );
3418
3419         init_config_argv( ca );
3420         ca->be = ce->ce_be;
3421         ca->bi = ce->ce_bi;
3422         ca->private = ce->ce_private;
3423         ca->ca_entry = e;
3424         strcpy( ca->log, "back-config" );
3425
3426         for (ml = op->orm_modlist; ml; ml=ml->sml_next) {
3427                 ct = config_find_table( colst, nocs, ml->sml_desc );
3428                 switch (ml->sml_op) {
3429                 case LDAP_MOD_DELETE:
3430                 case LDAP_MOD_REPLACE: {
3431                         BerVarray vals = NULL, nvals;
3432                         int *idx = NULL;
3433                         if ( ct && ( ct->arg_type & ARG_NO_DELETE )) {
3434                                 rc = LDAP_OTHER;
3435                                 snprintf(ca->msg, sizeof(ca->msg), "cannot delete %s",
3436                                         ml->sml_desc->ad_cname.bv_val );
3437                                 goto out;
3438                         }
3439                         if ( ml->sml_op == LDAP_MOD_REPLACE ) {
3440                                 vals = ml->sml_values;
3441                                 nvals = ml->sml_nvalues;
3442                                 ml->sml_values = NULL;
3443                                 ml->sml_nvalues = NULL;
3444                         }
3445                         /* If we're deleting by values, remember the indexes of the
3446                          * values we deleted.
3447                          */
3448                         if ( ct && ml->sml_values ) {
3449                                 delrec *d;
3450                                 for (i=0; ml->sml_values[i].bv_val; i++);
3451                                 d = ch_malloc( sizeof(delrec) + (i - 1)* sizeof(int));
3452                                 d->nidx = i;
3453                                 d->next = NULL;
3454                                 if ( dels ) {
3455                                         deltail->next = d;
3456                                 } else {
3457                                         dels = d;
3458                                 }
3459                                 deltail = d;
3460                                 idx = d->idx;
3461                         }
3462                         rc = modify_delete_vindex(e, &ml->sml_mod,
3463                                 get_permissiveModify(op),
3464                                 &rs->sr_text, ca->msg, sizeof(ca->msg), idx );
3465                         if ( ml->sml_op == LDAP_MOD_REPLACE ) {
3466                                 ml->sml_values = vals;
3467                                 ml->sml_nvalues = nvals;
3468                         }
3469                         if ( !vals )
3470                                 break;
3471                         }
3472                         /* FALLTHRU: LDAP_MOD_REPLACE && vals */
3473
3474                 case LDAP_MOD_ADD:
3475                 case SLAP_MOD_SOFTADD: {
3476                         int mop = ml->sml_op;
3477                         int navals = -1;
3478                         ml->sml_op = LDAP_MOD_ADD;
3479                         if ( ct ) {
3480                                 if ( ct->arg_type & ARG_NO_INSERT ) {
3481                                         Attribute *a = attr_find( e->e_attrs, ml->sml_desc );
3482                                         if ( a ) {
3483                                                 for (i = 0; a->a_vals[i].bv_val; i++ );
3484                                                 navals = i;
3485                                         }
3486                                 }
3487                                 for ( i=0; !BER_BVISNULL( &ml->sml_values[i] ); i++ ) {
3488                                         if ( ml->sml_values[i].bv_val[0] == '{' &&
3489                                                 navals >= 0 ) {
3490                                                 int j = strtol( ml->sml_values[i].bv_val+1, NULL, 0 );
3491                                                 if ( j < navals ) {
3492                                                         rc = LDAP_OTHER;
3493                                                         snprintf(ca->msg, sizeof(ca->msg), "cannot insert %s",
3494                                                                 ml->sml_desc->ad_cname.bv_val );
3495                                                         goto out;
3496                                                 }
3497                                         }
3498                                         rc = check_vals( ct, ca, ml, 0 );
3499                                         if ( rc ) goto out;
3500                                 }
3501                         }
3502                         rc = modify_add_values(e, &ml->sml_mod,
3503                                    get_permissiveModify(op),
3504                                    &rs->sr_text, ca->msg, sizeof(ca->msg) );
3505
3506                         /* If value already exists, show success here
3507                          * and ignore this operation down below.
3508                          */
3509                         if ( mop == SLAP_MOD_SOFTADD ) {
3510                                 if ( rc == LDAP_TYPE_OR_VALUE_EXISTS )
3511                                         rc = LDAP_SUCCESS;
3512                                 else
3513                                         mop = LDAP_MOD_ADD;
3514                         }
3515                         ml->sml_op = mop;
3516                         break;
3517                         }
3518
3519                         break;
3520                 case LDAP_MOD_INCREMENT:        /* FIXME */
3521                         break;
3522                 default:
3523                         break;
3524                 }
3525                 if(rc != LDAP_SUCCESS) break;
3526         }
3527         
3528         if(rc == LDAP_SUCCESS) {
3529                 /* check that the entry still obeys the schema */
3530                 rc = entry_schema_check(op, e, NULL, 0,
3531                         &rs->sr_text, ca->msg, sizeof(ca->msg) );
3532         }
3533         if ( rc == LDAP_SUCCESS ) {
3534                 /* Basic syntax checks are OK. Do the actual settings. */
3535                 for ( ml = op->orm_modlist; ml; ml = ml->sml_next ) {
3536                         ct = config_find_table( colst, nocs, ml->sml_desc );
3537                         if ( !ct ) continue;
3538
3539                         switch (ml->sml_op) {
3540                         case LDAP_MOD_DELETE:
3541                         case LDAP_MOD_REPLACE: {
3542                                 BerVarray vals = NULL, nvals;
3543                                 Attribute *a;
3544                                 delrec *d;
3545
3546                                 a = attr_find( e->e_attrs, ml->sml_desc );
3547
3548                                 if ( ml->sml_op == LDAP_MOD_REPLACE ) {
3549                                         vals = ml->sml_values;
3550                                         nvals = ml->sml_nvalues;
3551                                         ml->sml_values = NULL;
3552                                         ml->sml_nvalues = NULL;
3553                                 }
3554
3555                                 if ( ml->sml_values )
3556                                         d = dels;
3557
3558                                 /* If we didn't delete the whole attribute */
3559                                 if ( ml->sml_values && a ) {
3560                                         struct berval *mvals;
3561                                         int j;
3562
3563                                         if ( ml->sml_nvalues )
3564                                                 mvals = ml->sml_nvalues;
3565                                         else
3566                                                 mvals = ml->sml_values;
3567
3568                                         /* use the indexes we saved up above */
3569                                         for (i=0; i < d->nidx; i++) {
3570                                                 struct berval bv = *mvals++;
3571                                                 if ( a->a_desc->ad_type->sat_flags & SLAP_AT_ORDERED &&
3572                                                         bv.bv_val[0] == '{' ) {
3573                                                         ptr = strchr( bv.bv_val, '}' ) + 1;
3574                                                         bv.bv_len -= ptr - bv.bv_val;
3575                                                         bv.bv_val = ptr;
3576                                                 }
3577                                                 ca->line = bv.bv_val;
3578                                                 ca->valx = d->idx[i];
3579                                                 rc = config_del_vals( ct, ca );
3580                                                 if ( rc != LDAP_SUCCESS ) break;
3581                                                 for (j=i+1; j < d->nidx; j++)
3582                                                         if ( d->idx[j] >d->idx[i] )
3583                                                                 d->idx[j]--;
3584                                         }
3585                                 } else {
3586                                         ca->valx = -1;
3587                                         ca->line = NULL;
3588                                         rc = config_del_vals( ct, ca );
3589                                         if ( rc ) rc = LDAP_OTHER;
3590                                 }
3591                                 if ( ml->sml_values ) {
3592                                         ch_free( dels );
3593                                         dels = d->next;
3594                                 }
3595                                 if ( ml->sml_op == LDAP_MOD_REPLACE ) {
3596                                         ml->sml_values = vals;
3597                                         ml->sml_nvalues = nvals;
3598                                 }
3599                                 if ( !vals || rc != LDAP_SUCCESS )
3600                                         break;
3601                                 }
3602                                 /* FALLTHRU: LDAP_MOD_REPLACE && vals */
3603
3604                         case LDAP_MOD_ADD:
3605                                 for (i=0; ml->sml_values[i].bv_val; i++) {
3606                                         ca->line = ml->sml_values[i].bv_val;
3607                                         ca->valx = -1;
3608                                         if ( ml->sml_desc->ad_type->sat_flags & SLAP_AT_ORDERED &&
3609                                                 ca->line[0] == '{' ) {
3610                                                 ptr = strchr( ca->line, '}' );
3611                                                 if ( ptr ) {
3612                                                         ca->valx = strtol( ca->line+1, NULL, 0 );
3613                                                         ca->line = ptr+1;
3614                                                 }
3615                                         }
3616                                         rc = config_parse_add( ct, ca );
3617                                         if ( rc ) {
3618                                                 rc = LDAP_OTHER;
3619                                                 goto out;
3620                                         }
3621                                 }
3622
3623                                 break;
3624                         }
3625                 }
3626         }
3627
3628 out:
3629         if ( ca->cleanup )
3630                 ca->cleanup( ca );
3631         if ( rc == LDAP_SUCCESS ) {
3632                 attrs_free( save_attrs );
3633         } else {
3634                 attrs_free( e->e_attrs );
3635                 e->e_attrs = save_attrs;
3636         }
3637         ch_free( ca->argv );
3638         if ( colst ) ch_free( colst );
3639
3640         return rc;
3641 }
3642
3643 static int
3644 config_back_modify( Operation *op, SlapReply *rs )
3645 {
3646         CfBackInfo *cfb;
3647         CfEntryInfo *ce, *last;
3648         Modifications *ml;
3649         ConfigArgs ca = {0};
3650         struct berval rdn;
3651         char *ptr;
3652         AttributeDescription *rad = NULL;
3653
3654         if ( !be_isroot( op ) ) {
3655                 rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
3656                 goto out;
3657         }
3658
3659         cfb = (CfBackInfo *)op->o_bd->be_private;
3660
3661         ce = config_find_base( cfb->cb_root, &op->o_req_ndn, &last );
3662         if ( !ce ) {
3663                 if ( last )
3664                         rs->sr_matched = last->ce_entry->e_name.bv_val;
3665                 rs->sr_err = LDAP_NO_SUCH_OBJECT;
3666                 goto out;
3667         }
3668
3669         /* Get type of RDN */
3670         rdn = ce->ce_entry->e_nname;
3671         ptr = strchr( rdn.bv_val, '=' );
3672         rdn.bv_len = ptr - rdn.bv_val;
3673         slap_bv2ad( &rdn, &rad, &rs->sr_text );
3674
3675         /* Some basic validation... */
3676         for ( ml = op->orm_modlist; ml; ml = ml->sml_next ) {
3677                 /* Don't allow Modify of RDN; must use ModRdn for that. */
3678                 if ( ml->sml_desc == rad ) {
3679                         rs->sr_err = LDAP_NOT_ALLOWED_ON_RDN;
3680                         rs->sr_text = "Use modrdn to change the entry name";
3681                         goto out;
3682                 }
3683         }
3684
3685         ldap_pvt_thread_pool_pause( &connection_pool );
3686
3687         /* Strategy:
3688          * 1) perform the Modify on the cached Entry.
3689          * 2) verify that the Entry still satisfies the schema.
3690          * 3) perform the individual config operations.
3691          * 4) store Modified entry in underlying LDIF backend.
3692          */
3693         rs->sr_err = config_modify_internal( ce, op, rs, &ca );
3694         if ( rs->sr_err ) {
3695                 rs->sr_text = ca.msg;
3696         } else if ( cfb->cb_use_ldif ) {
3697                 BackendDB *be = op->o_bd;
3698                 slap_callback sc = { NULL, slap_null_cb, NULL, NULL };
3699                 op->o_bd = &cfb->cb_db;
3700                 sc.sc_next = op->o_callback;
3701                 op->o_callback = &sc;
3702                 op->o_bd->be_modify( op, rs );
3703                 op->o_bd = be;
3704                 op->o_callback = sc.sc_next;
3705         }
3706
3707         ldap_pvt_thread_pool_resume( &connection_pool );
3708 out:
3709         send_ldap_result( op, rs );
3710         return rs->sr_err;
3711 }
3712
3713 static int
3714 config_back_modrdn( Operation *op, SlapReply *rs )
3715 {
3716         CfBackInfo *cfb;
3717         CfEntryInfo *ce, *last;
3718
3719         if ( !be_isroot( op ) ) {
3720                 rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
3721                 goto out;
3722         }
3723
3724         cfb = (CfBackInfo *)op->o_bd->be_private;
3725
3726         ce = config_find_base( cfb->cb_root, &op->o_req_ndn, &last );
3727         if ( !ce ) {
3728                 if ( last )
3729                         rs->sr_matched = last->ce_entry->e_name.bv_val;
3730                 rs->sr_err = LDAP_NO_SUCH_OBJECT;
3731                 goto out;
3732         }
3733
3734         /* We don't allow moving objects to new parents.
3735          * Generally we only allow reordering a set of ordered entries.
3736          */
3737         if ( op->orr_newSup ) {
3738                 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
3739                 goto out;
3740         }
3741         ldap_pvt_thread_pool_pause( &connection_pool );
3742
3743         ldap_pvt_thread_pool_resume( &connection_pool );
3744 out:
3745         send_ldap_result( op, rs );
3746         return rs->sr_err;
3747 }
3748
3749 static int
3750 config_back_search( Operation *op, SlapReply *rs )
3751 {
3752         CfBackInfo *cfb;
3753         CfEntryInfo *ce, *last;
3754
3755         if ( !be_isroot( op ) ) {
3756                 rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
3757                 goto out;
3758         }
3759
3760         cfb = (CfBackInfo *)op->o_bd->be_private;
3761
3762         ce = config_find_base( cfb->cb_root, &op->o_req_ndn, &last );
3763         if ( !ce ) {
3764                 if ( last )
3765                         rs->sr_matched = last->ce_entry->e_name.bv_val;
3766                 rs->sr_err = LDAP_NO_SUCH_OBJECT;
3767                 goto out;
3768         }
3769         switch ( op->ors_scope ) {
3770         case LDAP_SCOPE_BASE:
3771         case LDAP_SCOPE_SUBTREE:
3772                 config_send( op, rs, ce, 0 );
3773                 break;
3774                 
3775         case LDAP_SCOPE_ONELEVEL:
3776                 for (ce = ce->ce_kids; ce; ce=ce->ce_sibs) {
3777                         config_send( op, rs, ce, 1 );
3778                 }
3779                 break;
3780         }
3781                 
3782         rs->sr_err = LDAP_SUCCESS;
3783 out:
3784         send_ldap_result( op, rs );
3785         return 0;
3786 }
3787
3788 static void
3789 config_build_attrs( Entry *e, AttributeType **at, AttributeDescription *ad,
3790         ConfigTable *ct, ConfigArgs *c )
3791 {
3792         int i, rc;
3793
3794         for (; at && *at; at++) {
3795                 /* Skip the naming attr */
3796                 if ((*at)->sat_ad == ad || (*at)->sat_ad == slap_schema.si_ad_cn )
3797                         continue;
3798                 for (i=0;ct[i].name;i++) {
3799                         if (ct[i].ad == (*at)->sat_ad) {
3800                                 rc = config_get_vals(&ct[i], c);
3801                                 if (rc == LDAP_SUCCESS) {
3802                                         if ( c->rvalue_nvals )
3803                                                 attr_merge(e, ct[i].ad, c->rvalue_vals,
3804                                                         c->rvalue_nvals);
3805                                         else
3806                                                 attr_merge_normalize(e, ct[i].ad,
3807                                                         c->rvalue_vals, NULL);
3808                                         ber_bvarray_free( c->rvalue_nvals );
3809                                         ber_bvarray_free( c->rvalue_vals );
3810                                 }
3811                                 break;
3812                         }
3813                 }
3814         }
3815 }
3816
3817 Entry *
3818 config_build_entry( Operation *op, SlapReply *rs, CfEntryInfo *parent,
3819         ConfigArgs *c, struct berval *rdn, ConfigOCs *main, ConfigOCs *extra )
3820 {
3821         Entry *e = ch_calloc( 1, sizeof(Entry) );
3822         CfEntryInfo *ce = ch_calloc( 1, sizeof(CfEntryInfo) );
3823         struct berval val;
3824         struct berval ad_name;
3825         AttributeDescription *ad = NULL;
3826         int rc;
3827         char *ptr;
3828         const char *text;
3829         Attribute *oc_at;
3830         struct berval pdn;
3831         ObjectClass *oc;
3832         CfEntryInfo *ceprev = NULL;
3833
3834         e->e_private = ce;
3835         ce->ce_entry = e;
3836         ce->ce_parent = parent;
3837         if ( parent ) {
3838                 pdn = parent->ce_entry->e_nname;
3839                 if ( parent->ce_kids )
3840                         for ( ceprev = parent->ce_kids; ceprev->ce_sibs;
3841                                 ceprev = ceprev->ce_sibs );
3842         } else {
3843                 BER_BVZERO( &pdn );
3844         }
3845
3846         ce->ce_type = main->co_type;
3847         ce->ce_private = c->private;
3848         ce->ce_be = c->be;
3849         ce->ce_bi = c->bi;
3850
3851         build_new_dn( &e->e_name, &pdn, rdn, NULL );
3852         ber_dupbv( &e->e_nname, &e->e_name );
3853
3854         attr_merge_normalize_one(e, slap_schema.si_ad_objectClass,
3855                 main->co_name, NULL );
3856         if ( extra )
3857                 attr_merge_normalize_one(e, slap_schema.si_ad_objectClass,
3858                         extra->co_name, NULL );
3859         ptr = strchr(rdn->bv_val, '=');
3860         ad_name.bv_val = rdn->bv_val;
3861         ad_name.bv_len = ptr - rdn->bv_val;
3862         rc = slap_bv2ad( &ad_name, &ad, &text );
3863         if ( rc ) {
3864                 return NULL;
3865         }
3866         val.bv_val = ptr+1;
3867         val.bv_len = rdn->bv_len - (val.bv_val - rdn->bv_val);
3868         attr_merge_normalize_one(e, ad, &val, NULL );
3869
3870         oc = main->co_oc;
3871         if ( oc->soc_required )
3872                 config_build_attrs( e, oc->soc_required, ad, main->co_table, c );
3873
3874         if ( oc->soc_allowed )
3875                 config_build_attrs( e, oc->soc_allowed, ad, main->co_table, c );
3876
3877         if ( extra ) {
3878                 oc = extra->co_oc;
3879                 if ( oc->soc_required )
3880                         config_build_attrs( e, oc->soc_required, ad, extra->co_table, c );
3881
3882                 if ( oc->soc_allowed )
3883                         config_build_attrs( e, oc->soc_allowed, ad, extra->co_table, c );
3884         }
3885
3886         oc_at = attr_find( e->e_attrs, slap_schema.si_ad_objectClass );
3887         rc = structural_class(oc_at->a_vals, &val, NULL, &text, c->msg,
3888                 sizeof(c->msg));
3889         attr_merge_normalize_one(e, slap_schema.si_ad_structuralObjectClass, &val, NULL );
3890         if ( op ) {
3891                 op->ora_e = e;
3892                 op->o_bd->be_add( op, rs );
3893         }
3894         if ( ceprev ) {
3895                 ceprev->ce_sibs = ce;
3896         } else if ( parent ) {
3897                 parent->ce_kids = ce;
3898         }
3899
3900         return e;
3901 }
3902
3903 static void
3904 config_build_schema_inc( ConfigArgs *c, CfEntryInfo *ceparent,
3905         Operation *op, SlapReply *rs )
3906 {
3907         Entry *e;
3908         ConfigFile *cf = c->private;
3909         char *ptr;
3910         struct berval bv;
3911
3912         for (; cf; cf=cf->c_sibs, c->depth++) {
3913                 c->value_dn.bv_val = c->log;
3914                 bv.bv_val = strrchr(cf->c_file.bv_val, LDAP_DIRSEP[0]);
3915                 if ( !bv.bv_val ) {
3916                         bv = cf->c_file;
3917                 } else {
3918                         bv.bv_val++;
3919                         bv.bv_len = cf->c_file.bv_len - (bv.bv_val - cf->c_file.bv_val);
3920                 }
3921                 ptr = strchr( bv.bv_val, '.' );
3922                 if ( ptr )
3923                         bv.bv_len = ptr - bv.bv_val;
3924                 c->value_dn.bv_len = sprintf(c->value_dn.bv_val, "cn=" IFMT, c->depth);
3925                 strncpy( c->value_dn.bv_val + c->value_dn.bv_len, bv.bv_val,
3926                         bv.bv_len );
3927                 c->value_dn.bv_len += bv.bv_len;
3928                 c->value_dn.bv_val[c->value_dn.bv_len] ='\0';
3929
3930                 c->private = cf;
3931                 e = config_build_entry( op, rs, ceparent, c, &c->value_dn,
3932                         &CFOC_SCHEMA, NULL );
3933                 if ( e && cf->c_kids ) {
3934                         c->private = cf->c_kids;
3935                         config_build_schema_inc( c, e->e_private, op, rs );
3936                 }
3937         }
3938 }
3939
3940 static void
3941 config_build_includes( ConfigArgs *c, CfEntryInfo *ceparent,
3942         Operation *op, SlapReply *rs )
3943 {
3944         Entry *e;
3945         int i;
3946         ConfigFile *cf = c->private;
3947
3948         for (i=0; cf; cf=cf->c_sibs, i++) {
3949                 c->value_dn.bv_val = c->log;
3950                 c->value_dn.bv_len = sprintf(c->value_dn.bv_val, "cn=include" IFMT, i);
3951                 c->private = cf;
3952                 e = config_build_entry( op, rs, ceparent, c, &c->value_dn,
3953                         &CFOC_INCLUDE, NULL );
3954                 if ( e && cf->c_kids ) {
3955                         c->private = cf->c_kids;
3956                         config_build_includes( c, e->e_private, op, rs );
3957                 }
3958         }
3959 }
3960
3961 #ifdef SLAPD_MODULES
3962
3963 static void
3964 config_build_modules( ConfigArgs *c, CfEntryInfo *ceparent,
3965         Operation *op, SlapReply *rs )
3966 {
3967         int i;
3968         ModPaths *mp;
3969
3970         for (i=0, mp=&modpaths; mp; mp=mp->mp_next, i++) {
3971                 if ( BER_BVISNULL( &mp->mp_path ) && !mp->mp_loads )
3972                         continue;
3973                 c->value_dn.bv_val = c->log;
3974                 c->value_dn.bv_len = sprintf(c->value_dn.bv_val, "cn=module" IFMT, i);
3975                 c->private = mp;
3976                 config_build_entry( op, rs, ceparent, c, &c->value_dn,
3977                         &CFOC_MODULE, NULL );
3978         }
3979 }
3980 #endif
3981
3982 static int
3983 config_back_db_open( BackendDB *be )
3984 {
3985         CfBackInfo *cfb = be->be_private;
3986         struct berval rdn;
3987         Entry *e, *parent;
3988         CfEntryInfo *ce, *ceparent;
3989         int i;
3990         BackendInfo *bi;
3991         ConfigArgs c;
3992         Connection conn = {0};
3993         char opbuf[OPERATION_BUFFER_SIZE];
3994         Operation *op;
3995         slap_callback cb = { NULL, slap_null_cb, NULL, NULL };
3996         SlapReply rs = {REP_RESULT};
3997         void *thrctx = NULL;
3998
3999         /* If we read the config from back-ldif, nothing to do here */
4000         if ( cfb->cb_got_ldif )
4001                 return 0;
4002
4003         if ( cfb->cb_use_ldif ) {
4004                 thrctx = ldap_pvt_thread_pool_context();
4005                 op = (Operation *)opbuf;
4006                 connection_fake_init( &conn, op, thrctx );
4007
4008                 op->o_dn = be->be_rootdn;
4009                 op->o_ndn = be->be_rootndn;
4010
4011                 op->o_tag = LDAP_REQ_ADD;
4012                 op->o_callback = &cb;
4013                 op->o_bd = &cfb->cb_db;
4014         } else {
4015                 op = NULL;
4016         }
4017
4018         /* create root of tree */
4019         rdn = config_rdn;
4020         c.private = cfb->cb_config;
4021         c.be = frontendDB;
4022         e = config_build_entry( op, &rs, NULL, &c, &rdn, &CFOC_GLOBAL, NULL );
4023         ce = e->e_private;
4024         cfb->cb_root = ce;
4025
4026         parent = e;
4027         ceparent = ce;
4028
4029         /* Create includeFile nodes */
4030         if ( cfb->cb_config->c_kids ) {
4031                 c.depth = 0;
4032                 c.private = cfb->cb_config->c_kids;
4033                 config_build_includes( &c, ceparent, op, &rs );
4034         }
4035
4036 #ifdef SLAPD_MODULES
4037         /* Create Module nodes... */
4038         if ( modpaths.mp_loads ) {
4039                 config_build_modules( &c, ceparent, op, &rs );
4040         }
4041 #endif
4042
4043         /* Create schema nodes... cn=schema will contain the hardcoded core
4044          * schema, read-only. Child objects will contain runtime loaded schema
4045          * files.
4046          */
4047         rdn = schema_rdn;
4048         c.private = NULL;
4049         e = config_build_entry( op, &rs, ceparent, &c, &rdn, &CFOC_SCHEMA, NULL );
4050         ce = e->e_private;
4051
4052         /* Create schema nodes for included schema... */
4053         if ( cfb->cb_config->c_kids ) {
4054                 c.depth = 0;
4055                 c.private = cfb->cb_config->c_kids;
4056                 config_build_schema_inc( &c, ce, op, &rs );
4057         }
4058
4059         /* Create backend nodes. Skip if they don't provide a cf_table.
4060          * There usually aren't any of these.
4061          */
4062         
4063         c.line = 0;
4064         LDAP_STAILQ_FOREACH( bi, &backendInfo, bi_next) {
4065                 if (!bi->bi_cf_ocs) continue;
4066                 if (!bi->bi_private) continue;
4067
4068                 rdn.bv_val = c.log;
4069                 rdn.bv_len = sprintf(rdn.bv_val, "%s=%s", cfAd_backend->ad_cname.bv_val, bi->bi_type);
4070                 c.bi = bi;
4071                 e = config_build_entry( op, &rs, ceparent, &c, &rdn, &CFOC_BACKEND,
4072                         bi->bi_cf_ocs );
4073         }
4074
4075         /* Create database nodes... */
4076         frontendDB->be_cf_ocs = &CFOC_FRONTEND;
4077         LDAP_STAILQ_NEXT(frontendDB, be_next) = LDAP_STAILQ_FIRST(&backendDB);
4078         for ( i = -1, be = frontendDB ; be;
4079                 i++, be = LDAP_STAILQ_NEXT( be, be_next )) {
4080                 slap_overinfo *oi = NULL;
4081
4082                 if ( overlay_is_over( be )) {
4083                         oi = be->bd_info->bi_private;
4084                         bi = oi->oi_orig;
4085                 } else {
4086                         bi = be->bd_info;
4087                 }
4088                 rdn.bv_val = c.log;
4089                 rdn.bv_len = sprintf(rdn.bv_val, "%s=" IFMT "%s", cfAd_database->ad_cname.bv_val,
4090                         i, bi->bi_type);
4091                 c.be = be;
4092                 c.bi = bi;
4093                 e = config_build_entry( op, &rs, ceparent, &c, &rdn, &CFOC_DATABASE,
4094                         be->be_cf_ocs );
4095                 ce = e->e_private;
4096                 if ( be->be_cf_ocs && be->be_cf_ocs->co_cfadd )
4097                         be->be_cf_ocs->co_cfadd( op, &rs, e, &c );
4098                 /* Iterate through overlays */
4099                 if ( oi ) {
4100                         slap_overinst *on;
4101                         Entry *oe;
4102                         int j;
4103
4104                         for (j=0,on=oi->oi_list; on; j++,on=on->on_next) {
4105                                 rdn.bv_val = c.log;
4106                                 rdn.bv_len = sprintf(rdn.bv_val, "%s=" IFMT "%s",
4107                                         cfAd_overlay->ad_cname.bv_val, j, on->on_bi.bi_type );
4108                                 c.be = be;
4109                                 c.bi = &on->on_bi;
4110                                 oe = config_build_entry( op, &rs, ce, &c, &rdn,
4111                                         &CFOC_OVERLAY, c.bi->bi_cf_ocs );
4112                                 if ( c.bi->bi_cf_ocs && c.bi->bi_cf_ocs->co_cfadd )
4113                                         c.bi->bi_cf_ocs->co_cfadd( op, &rs, oe, &c );
4114                         }
4115                 }
4116         }
4117         if ( thrctx )
4118                 ldap_pvt_thread_pool_context_reset( thrctx );
4119
4120         return 0;
4121 }
4122
4123 static void
4124 cfb_free_cffile( ConfigFile *cf )
4125 {
4126         ConfigFile *next;
4127
4128         for (; cf; cf=next) {
4129                 next = cf->c_sibs;
4130                 if ( cf->c_kids )
4131                         cfb_free_cffile( cf->c_kids );
4132                 ch_free( cf->c_file.bv_val );
4133                 ber_bvarray_free( cf->c_dseFiles );
4134                 ch_free( cf );
4135         }
4136 }
4137
4138 static void
4139 cfb_free_entries( CfEntryInfo *ce )
4140 {
4141         CfEntryInfo *next;
4142
4143         for (; ce; ce=next) {
4144                 next = ce->ce_sibs;
4145                 if ( ce->ce_kids )
4146                         cfb_free_entries( ce->ce_kids );
4147                 ce->ce_entry->e_private = NULL;
4148                 entry_free( ce->ce_entry );
4149                 ch_free( ce );
4150         }
4151 }
4152
4153 static int
4154 config_back_db_close( BackendDB *be )
4155 {
4156         CfBackInfo *cfb = be->be_private;
4157
4158         cfb_free_entries( cfb->cb_root );
4159         cfb->cb_root = NULL;
4160
4161         if ( cfb->cb_db.bd_info ) {
4162                 backend_shutdown( &cfb->cb_db );
4163         }
4164
4165         return 0;
4166 }
4167
4168 static int
4169 config_back_db_destroy( BackendDB *be )
4170 {
4171         CfBackInfo *cfb = be->be_private;
4172
4173         cfb_free_cffile( cfb->cb_config );
4174
4175         ch_free( cfdir.bv_val );
4176
4177         avl_free( CfOcTree, NULL );
4178
4179         if ( cfb->cb_db.bd_info ) {
4180                 cfb->cb_db.be_suffix = NULL;
4181                 cfb->cb_db.be_nsuffix = NULL;
4182                 BER_BVZERO( &cfb->cb_db.be_rootdn );
4183                 BER_BVZERO( &cfb->cb_db.be_rootndn );
4184
4185                 backend_destroy_one( &cfb->cb_db, 0 );
4186         }
4187
4188         free( be->be_private );
4189
4190         loglevel_destroy();
4191
4192         return 0;
4193 }
4194
4195 static int
4196 config_back_db_init( BackendDB *be )
4197 {
4198         struct berval dn;
4199         CfBackInfo *cfb;
4200
4201         cfb = ch_calloc( 1, sizeof(CfBackInfo));
4202         cfb->cb_config = ch_calloc( 1, sizeof(ConfigFile));
4203         cfn = cfb->cb_config;
4204         be->be_private = cfb;
4205
4206         ber_dupbv( &be->be_rootdn, &config_rdn );
4207         ber_dupbv( &be->be_rootndn, &be->be_rootdn );
4208         ber_dupbv( &dn, &be->be_rootdn );
4209         ber_bvarray_add( &be->be_suffix, &dn );
4210         ber_dupbv( &dn, &be->be_rootdn );
4211         ber_bvarray_add( &be->be_nsuffix, &dn );
4212
4213         /* Hide from namingContexts */
4214         SLAP_BFLAGS(be) |= SLAP_BFLAG_CONFIG;
4215
4216         return 0;
4217 }
4218
4219 static int
4220 config_back_destroy( BackendInfo *bi )
4221 {
4222         ldif_must_b64_encode_release();
4223         return 0;
4224 }
4225
4226 static int
4227 config_tool_entry_open( BackendDB *be, int mode )
4228 {
4229         CfBackInfo *cfb = be->be_private;
4230         BackendInfo *bi = cfb->cb_db.bd_info;
4231
4232         if ( bi && bi->bi_tool_entry_open )
4233                 return bi->bi_tool_entry_open( &cfb->cb_db, mode );
4234         else
4235                 return -1;
4236         
4237 }
4238
4239 static int
4240 config_tool_entry_close( BackendDB *be )
4241 {
4242         CfBackInfo *cfb = be->be_private;
4243         BackendInfo *bi = cfb->cb_db.bd_info;
4244
4245         if ( bi && bi->bi_tool_entry_close )
4246                 return bi->bi_tool_entry_close( &cfb->cb_db );
4247         else
4248                 return -1;
4249 }
4250
4251 static ID
4252 config_tool_entry_first( BackendDB *be )
4253 {
4254         CfBackInfo *cfb = be->be_private;
4255         BackendInfo *bi = cfb->cb_db.bd_info;
4256
4257         if ( bi && bi->bi_tool_entry_first )
4258                 return bi->bi_tool_entry_first( &cfb->cb_db );
4259         else
4260                 return NOID;
4261 }
4262
4263 static ID
4264 config_tool_entry_next( BackendDB *be )
4265 {
4266         CfBackInfo *cfb = be->be_private;
4267         BackendInfo *bi = cfb->cb_db.bd_info;
4268
4269         if ( bi && bi->bi_tool_entry_next )
4270                 return bi->bi_tool_entry_next( &cfb->cb_db );
4271         else
4272                 return NOID;
4273 }
4274
4275 static Entry *
4276 config_tool_entry_get( BackendDB *be, ID id )
4277 {
4278         CfBackInfo *cfb = be->be_private;
4279         BackendInfo *bi = cfb->cb_db.bd_info;
4280
4281         if ( bi && bi->bi_tool_entry_get )
4282                 return bi->bi_tool_entry_get( &cfb->cb_db, id );
4283         else
4284                 return NULL;
4285 }
4286
4287 static ID
4288 config_tool_entry_put( BackendDB *be, Entry *e, struct berval *text )
4289 {
4290         CfBackInfo *cfb = be->be_private;
4291         BackendInfo *bi = cfb->cb_db.bd_info;
4292         ConfigArgs ca;
4293
4294         if ( bi && bi->bi_tool_entry_put &&
4295                 config_add_internal( cfb, e, &ca, NULL, NULL ) == 0 )
4296                 return bi->bi_tool_entry_put( &cfb->cb_db, e, text );
4297         else
4298                 return NOID;
4299 }
4300
4301 static struct {
4302         char *name;
4303         AttributeDescription **desc;
4304 } ads[] = {
4305         { "backend", &cfAd_backend },
4306         { "database", &cfAd_database },
4307         { "include", &cfAd_include },
4308         { "overlay", &cfAd_overlay },
4309         { NULL, NULL }
4310 };
4311
4312 /* Notes:
4313  *   add / delete: all types that may be added or deleted must use an
4314  * X-ORDERED attributeType for their RDN. Adding and deleting entries
4315  * should automatically renumber the index of any siblings as needed,
4316  * so that no gaps in the numbering sequence exist after the add/delete
4317  * is completed.
4318  *   What can be added:
4319  *     schema objects
4320  *     backend objects for backend-specific config directives
4321  *     database objects
4322  *     overlay objects
4323  *
4324  *   delete: probably no support this time around.
4325  *
4326  *   modrdn: generally not done. Will be invoked automatically by add/
4327  * delete to update numbering sequence. Perform as an explicit operation
4328  * so that the renumbering effect may be replicated. Subtree rename must
4329  * be supported, since renumbering a database will affect all its child
4330  * overlays.
4331  *
4332  *  modify: must be fully supported. 
4333  */
4334
4335 int
4336 config_back_initialize( BackendInfo *bi )
4337 {
4338         ConfigTable             *ct = config_back_cf_table;
4339         char                    *argv[4];
4340         int                     i;
4341         AttributeDescription    *ad = NULL;
4342         const char              *text;
4343         static char             *controls[] = {
4344                 LDAP_CONTROL_MANAGEDSAIT,
4345                 NULL
4346         };
4347
4348         bi->bi_controls = controls;
4349
4350         bi->bi_open = 0;
4351         bi->bi_close = 0;
4352         bi->bi_config = 0;
4353         bi->bi_destroy = config_back_destroy;
4354
4355         bi->bi_db_init = config_back_db_init;
4356         bi->bi_db_config = 0;
4357         bi->bi_db_open = config_back_db_open;
4358         bi->bi_db_close = config_back_db_close;
4359         bi->bi_db_destroy = config_back_db_destroy;
4360
4361         bi->bi_op_bind = config_back_bind;
4362         bi->bi_op_unbind = 0;
4363         bi->bi_op_search = config_back_search;
4364         bi->bi_op_compare = 0;
4365         bi->bi_op_modify = config_back_modify;
4366         bi->bi_op_modrdn = config_back_modrdn;
4367         bi->bi_op_add = config_back_add;
4368         bi->bi_op_delete = 0;
4369         bi->bi_op_abandon = 0;
4370
4371         bi->bi_extended = 0;
4372
4373         bi->bi_chk_referrals = 0;
4374
4375 #ifdef SLAP_OVERLAY_ACCESS
4376         bi->bi_access_allowed = slap_access_always_allowed;
4377 #endif /* SLAP_OVERLAY_ACCESS */
4378
4379         bi->bi_connection_init = 0;
4380         bi->bi_connection_destroy = 0;
4381
4382         bi->bi_tool_entry_open = config_tool_entry_open;
4383         bi->bi_tool_entry_close = config_tool_entry_close;
4384         bi->bi_tool_entry_first = config_tool_entry_first;
4385         bi->bi_tool_entry_next = config_tool_entry_next;
4386         bi->bi_tool_entry_get = config_tool_entry_get;
4387         bi->bi_tool_entry_put = config_tool_entry_put;
4388
4389         /* Make sure we don't exceed the bits reserved for userland */
4390         assert( ( ( CFG_LAST - 1 ) & ARGS_USERLAND ) == ( CFG_LAST - 1 ) );
4391
4392         argv[3] = NULL;
4393         for (i=0; OidMacros[i].name; i++ ) {
4394                 argv[1] = OidMacros[i].name;
4395                 argv[2] = OidMacros[i].oid;
4396                 parse_oidm( "slapd", i, 3, argv, 0, NULL );
4397         }
4398
4399         bi->bi_cf_ocs = cf_ocs;
4400
4401         i = config_register_schema( ct, cf_ocs );
4402         if ( i ) return i;
4403
4404         /* setup olcRootPW to be base64-encoded when written in LDIF form;
4405          * basically, we don't care if it fails */
4406         i = slap_str2ad( "olcRootPW", &ad, &text );
4407         if ( i ) {
4408                 Debug( LDAP_DEBUG_ANY, "config_back_initialize: "
4409                         "warning, unable to get \"olcRootPW\" "
4410                         "attribute description: %d: %s\n",
4411                         i, text, 0 );
4412         } else {
4413                 (void)ldif_must_b64_encode_register( ad->ad_cname.bv_val,
4414                         ad->ad_type->sat_oid );
4415         }
4416
4417         /* set up the notable AttributeDescriptions */
4418         i = 0;
4419         for (;ct->name;ct++) {
4420                 if (strcmp(ct->name, ads[i].name)) continue;
4421                 *ads[i].desc = ct->ad;
4422                 i++;
4423                 if (!ads[i].name) break;
4424         }
4425
4426         return 0;
4427 }
4428