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