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