]> git.sur5r.net Git - openldap/blob - servers/slapd/bconfig.c
fbee634de1d4a56c2bc128f460c0e8a5473adc3d
[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-2007 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 #define CONFIG_RDN      "cn=config"
41 #define SCHEMA_RDN      "cn=schema"
42
43 static struct berval config_rdn = BER_BVC(CONFIG_RDN);
44 static struct berval schema_rdn = BER_BVC(SCHEMA_RDN);
45
46 extern int slap_DN_strict;      /* dn.c */
47
48 #ifdef SLAPD_MODULES
49 typedef struct modpath_s {
50         struct modpath_s *mp_next;
51         struct berval mp_path;
52         BerVarray mp_loads;
53 } ModPaths;
54
55 static ModPaths modpaths, *modlast = &modpaths, *modcur = &modpaths;
56 #endif
57
58 typedef struct ConfigFile {
59         struct ConfigFile *c_sibs;
60         struct ConfigFile *c_kids;
61         struct berval c_file;
62         AttributeType *c_at_head, *c_at_tail;
63         ContentRule *c_cr_head, *c_cr_tail;
64         ObjectClass *c_oc_head, *c_oc_tail;
65         OidMacro *c_om_head, *c_om_tail;
66         BerVarray c_dseFiles;
67 } ConfigFile;
68
69 typedef struct {
70         ConfigFile *cb_config;
71         CfEntryInfo *cb_root;
72         BackendDB       cb_db;  /* underlying database */
73         int             cb_got_ldif;
74         int             cb_use_ldif;
75 } CfBackInfo;
76
77 static CfBackInfo cfBackInfo;
78
79 static char     *passwd_salt;
80 static char     *logfileName;
81 #ifdef SLAP_AUTH_REWRITE
82 static BerVarray authz_rewrites;
83 #endif
84
85 static struct berval cfdir;
86
87 /* Private state */
88 static AttributeDescription *cfAd_backend, *cfAd_database, *cfAd_overlay,
89         *cfAd_include, *cfAd_attr, *cfAd_oc, *cfAd_om;
90
91 static ConfigFile *cfn;
92
93 static Avlnode *CfOcTree;
94
95 /* System schema state */
96 extern AttributeType *at_sys_tail;      /* at.c */
97 extern ObjectClass *oc_sys_tail;        /* oc.c */
98 extern OidMacro *om_sys_tail;   /* oidm.c */
99 static AttributeType *cf_at_tail;
100 static ObjectClass *cf_oc_tail;
101 static OidMacro *cf_om_tail;
102
103 static int config_add_internal( CfBackInfo *cfb, Entry *e, ConfigArgs *ca,
104         SlapReply *rs, int *renumber, Operation *op );
105
106 static int config_check_schema( Operation *op, CfBackInfo *cfb );
107
108 static ConfigDriver config_fname;
109 static ConfigDriver config_cfdir;
110 static ConfigDriver config_generic;
111 static ConfigDriver config_search_base;
112 static ConfigDriver config_passwd_hash;
113 static ConfigDriver config_schema_dn;
114 static ConfigDriver config_sizelimit;
115 static ConfigDriver config_timelimit;
116 static ConfigDriver config_overlay;
117 static ConfigDriver config_subordinate; 
118 static ConfigDriver config_suffix; 
119 static ConfigDriver config_rootdn;
120 static ConfigDriver config_rootpw;
121 static ConfigDriver config_restrict;
122 static ConfigDriver config_allows;
123 static ConfigDriver config_disallows;
124 static ConfigDriver config_requires;
125 static ConfigDriver config_security;
126 static ConfigDriver config_referral;
127 static ConfigDriver config_loglevel;
128 static ConfigDriver config_updatedn;
129 static ConfigDriver config_updateref;
130 static ConfigDriver config_include;
131 static ConfigDriver config_obsolete;
132 #ifdef HAVE_TLS
133 static ConfigDriver config_tls_option;
134 static ConfigDriver config_tls_config;
135 #endif
136 extern ConfigDriver syncrepl_config;
137
138 enum {
139         CFG_ACL = 1,
140         CFG_BACKEND,
141         CFG_DATABASE,
142         CFG_TLS_RAND,
143         CFG_TLS_CIPHER,
144         CFG_TLS_CERT_FILE,
145         CFG_TLS_CERT_KEY,
146         CFG_TLS_CA_PATH,
147         CFG_TLS_CA_FILE,
148         CFG_TLS_DH_FILE,
149         CFG_TLS_VERIFY,
150         CFG_TLS_CRLCHECK,
151         CFG_TLS_CRL_FILE,
152         CFG_CONCUR,
153         CFG_THREADS,
154         CFG_SALT,
155         CFG_LIMITS,
156         CFG_RO,
157         CFG_REWRITE,
158         CFG_DEPTH,
159         CFG_OID,
160         CFG_OC,
161         CFG_DIT,
162         CFG_ATTR,
163         CFG_ATOPT,
164         CFG_ROOTDSE,
165         CFG_LOGFILE,
166         CFG_PLUGIN,
167         CFG_MODLOAD,
168         CFG_MODPATH,
169         CFG_LASTMOD,
170         CFG_AZPOLICY,
171         CFG_AZREGEXP,
172         CFG_SASLSECP,
173         CFG_SSTR_IF_MAX,
174         CFG_SSTR_IF_MIN,
175         CFG_TTHREADS,
176         CFG_MIRRORMODE,
177         CFG_HIDDEN,
178         CFG_MONITORING,
179         CFG_SERVERID,
180
181         CFG_LAST
182 };
183
184 typedef struct {
185         char *name, *oid;
186 } OidRec;
187
188 static OidRec OidMacros[] = {
189         /* OpenLDAProot:666.11.1 */
190         { "OLcfg", "1.3.6.1.4.1.4203.666.11.1" },
191         { "OLcfgAt", "OLcfg:3" },
192         { "OLcfgGlAt", "OLcfgAt:0" },
193         { "OLcfgBkAt", "OLcfgAt:1" },
194         { "OLcfgDbAt", "OLcfgAt:2" },
195         { "OLcfgOvAt", "OLcfgAt:3" },
196         { "OLcfgOc", "OLcfg:4" },
197         { "OLcfgGlOc", "OLcfgOc:0" },
198         { "OLcfgBkOc", "OLcfgOc:1" },
199         { "OLcfgDbOc", "OLcfgOc:2" },
200         { "OLcfgOvOc", "OLcfgOc:3" },
201
202         /* Syntaxes. We should just start using the standard names and
203          * document that they are predefined and available for users
204          * to reference in their own schema. Defining schema without
205          * OID macros is for masochists...
206          */
207         { "OMsyn", "1.3.6.1.4.1.1466.115.121.1" },
208         { "OMsBoolean", "OMsyn:7" },
209         { "OMsDN", "OMsyn:12" },
210         { "OMsDirectoryString", "OMsyn:15" },
211         { "OMsInteger", "OMsyn:27" },
212         { "OMsOID", "OMsyn:38" },
213         { "OMsOctetString", "OMsyn:40" },
214         { NULL, NULL }
215 };
216
217 /*
218  * Backend/Database registry
219  *
220  * OLcfg{Bk|Db}{Oc|At}:0                -> common
221  * OLcfg{Bk|Db}{Oc|At}:1                -> back-bdb(/back-hdb)
222  * OLcfg{Bk|Db}{Oc|At}:2                -> back-ldif
223  * OLcfg{Bk|Db}{Oc|At}:3                -> back-ldap
224  * OLcfg{Bk|Db}{Oc|At}:4                -> back-monitor
225  */
226
227 /*
228  * Overlay registry
229  *
230  * OLcfgOv{Oc|At}:1                     -> syncprov
231  * OLcfgOv{Oc|At}:2                     -> pcache
232  * OLcfgOv{Oc|At}:3                     -> chain
233  * OLcfgOv{Oc|At}:4                     -> accesslog
234  * OLcfgOv{Oc|At}:5                     -> valsort
235  * (FIXME: separate arc for contribware?)
236  * OLcfgOv{Oc|At}:6                     -> smbk5pwd
237  * OLcfgOv{Oc|At}:7                     -> distproc
238  * OLcfgOv{Oc|At}:8                     -> dynlist
239  * OLcfgOv{Oc|At}:9                     -> dds
240  * OLcfgOv{Oc|At}:10                    -> unique
241  * OLcfgOv{Oc|At}:11                    -> refint
242  * OLcfgOv{Oc|At}:12                    -> ppolicy
243  * OLcfgOv{Oc|At}:13                    -> constraint
244  * OLcfgOv{Oc|At}:14                    -> translucent
245  * OLcfgOv{Oc|At}:15                    -> auditlog
246  * OLcfgOv{Oc|At}:16                    -> rwm
247  */
248
249 /* alphabetical ordering */
250
251 static ConfigTable config_back_cf_table[] = {
252         /* This attr is read-only */
253         { "", "", 0, 0, 0, ARG_MAGIC,
254                 &config_fname, "( OLcfgGlAt:78 NAME 'olcConfigFile' "
255                         "DESC 'File for slapd configuration directives' "
256                         "EQUALITY caseIgnoreMatch "
257                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
258         { "", "", 0, 0, 0, ARG_MAGIC,
259                 &config_cfdir, "( OLcfgGlAt:79 NAME 'olcConfigDir' "
260                         "DESC 'Directory for slapd configuration backend' "
261                         "EQUALITY caseIgnoreMatch "
262                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
263         { "access",     NULL, 0, 0, 0, ARG_MAY_DB|ARG_MAGIC|CFG_ACL,
264                 &config_generic, "( OLcfgGlAt:1 NAME 'olcAccess' "
265                         "DESC 'Access Control List' "
266                         "EQUALITY caseIgnoreMatch "
267                         "SYNTAX OMsDirectoryString X-ORDERED 'VALUES' )", NULL, NULL },
268         { "allows",     "features", 2, 0, 5, ARG_PRE_DB|ARG_MAGIC,
269                 &config_allows, "( OLcfgGlAt:2 NAME 'olcAllows' "
270                         "DESC 'Allowed set of deprecated features' "
271                         "EQUALITY caseIgnoreMatch "
272                         "SYNTAX OMsDirectoryString )", NULL, NULL },
273         { "argsfile", "file", 2, 2, 0, ARG_STRING,
274                 &slapd_args_file, "( OLcfgGlAt:3 NAME 'olcArgsFile' "
275                         "DESC 'File for slapd command line options' "
276                         "EQUALITY caseIgnoreMatch "
277                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
278         { "attributeoptions", NULL, 0, 0, 0, ARG_MAGIC|CFG_ATOPT,
279                 &config_generic, "( OLcfgGlAt:5 NAME 'olcAttributeOptions' "
280                         "EQUALITY caseIgnoreMatch "
281                         "SYNTAX OMsDirectoryString )", NULL, NULL },
282         { "attribute",  "attribute", 2, 0, STRLENOF( "attribute" ),
283                 ARG_PAREN|ARG_MAGIC|CFG_ATTR,
284                 &config_generic, "( OLcfgGlAt:4 NAME 'olcAttributeTypes' "
285                         "DESC 'OpenLDAP attributeTypes' "
286                         "EQUALITY caseIgnoreMatch "
287                         "SYNTAX OMsDirectoryString X-ORDERED 'VALUES' )",
288                                 NULL, NULL },
289         { "authid-rewrite", NULL, 2, 0, STRLENOF( "authid-rewrite" ),
290 #ifdef SLAP_AUTH_REWRITE
291                 ARG_MAGIC|CFG_REWRITE|ARG_NO_INSERT, &config_generic,
292 #else
293                 ARG_IGNORED, NULL,
294 #endif
295                  "( OLcfgGlAt:6 NAME 'olcAuthIDRewrite' "
296                         "EQUALITY caseIgnoreMatch "
297                         "SYNTAX OMsDirectoryString X-ORDERED 'VALUES' )", NULL, NULL },
298         { "authz-policy", "policy", 2, 2, 0, ARG_STRING|ARG_MAGIC|CFG_AZPOLICY,
299                 &config_generic, "( OLcfgGlAt:7 NAME 'olcAuthzPolicy' "
300                         "EQUALITY caseIgnoreMatch "
301                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
302         { "authz-regexp", NULL, 3, 3, 0, ARG_MAGIC|CFG_AZREGEXP|ARG_NO_INSERT,
303                 &config_generic, "( OLcfgGlAt:8 NAME 'olcAuthzRegexp' "
304                         "EQUALITY caseIgnoreMatch "
305                         "SYNTAX OMsDirectoryString X-ORDERED 'VALUES' )", NULL, NULL },
306         { "backend", "type", 2, 2, 0, ARG_PRE_DB|ARG_MAGIC|CFG_BACKEND,
307                 &config_generic, "( OLcfgGlAt:9 NAME 'olcBackend' "
308                         "DESC 'A type of backend' "
309                         "EQUALITY caseIgnoreMatch "
310                         "SYNTAX OMsDirectoryString SINGLE-VALUE X-ORDERED 'SIBLINGS' )",
311                                 NULL, NULL },
312         { "concurrency", "level", 2, 2, 0, ARG_INT|ARG_MAGIC|CFG_CONCUR,
313                 &config_generic, "( OLcfgGlAt:10 NAME 'olcConcurrency' "
314                         "SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
315         { "conn_max_pending", "max", 2, 2, 0, ARG_INT,
316                 &slap_conn_max_pending, "( OLcfgGlAt:11 NAME 'olcConnMaxPending' "
317                         "SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
318         { "conn_max_pending_auth", "max", 2, 2, 0, ARG_INT,
319                 &slap_conn_max_pending_auth, "( OLcfgGlAt:12 NAME 'olcConnMaxPendingAuth' "
320                         "SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
321         { "database", "type", 2, 2, 0, ARG_MAGIC|CFG_DATABASE,
322                 &config_generic, "( OLcfgGlAt:13 NAME 'olcDatabase' "
323                         "DESC 'The backend type for a database instance' "
324                         "SUP olcBackend SINGLE-VALUE X-ORDERED 'SIBLINGS' )", NULL, NULL },
325         { "defaultSearchBase", "dn", 2, 2, 0, ARG_PRE_BI|ARG_PRE_DB|ARG_DN|ARG_QUOTE|ARG_MAGIC,
326                 &config_search_base, "( OLcfgGlAt:14 NAME 'olcDefaultSearchBase' "
327                         "SYNTAX OMsDN SINGLE-VALUE )", NULL, NULL },
328         { "disallows", "features", 2, 0, 8, ARG_PRE_DB|ARG_MAGIC,
329                 &config_disallows, "( OLcfgGlAt:15 NAME 'olcDisallows' "
330                         "EQUALITY caseIgnoreMatch "
331                         "SYNTAX OMsDirectoryString )", NULL, NULL },
332         { "ditcontentrule",     NULL, 0, 0, 0, ARG_MAGIC|CFG_DIT|ARG_NO_DELETE|ARG_NO_INSERT,
333                 &config_generic, "( OLcfgGlAt:16 NAME 'olcDitContentRules' "
334                         "DESC 'OpenLDAP DIT content rules' "
335                         "EQUALITY caseIgnoreMatch "
336                         "SYNTAX OMsDirectoryString X-ORDERED 'VALUES' )",
337                         NULL, NULL },
338         { "gentlehup", "on|off", 2, 2, 0,
339 #ifdef SIGHUP
340                 ARG_ON_OFF, &global_gentlehup,
341 #else
342                 ARG_IGNORED, NULL,
343 #endif
344                 "( OLcfgGlAt:17 NAME 'olcGentleHUP' "
345                         "SYNTAX OMsBoolean SINGLE-VALUE )", NULL, NULL },
346         { "hidden", "on|off", 2, 2, 0, ARG_DB|ARG_ON_OFF|ARG_MAGIC|CFG_HIDDEN,
347                 &config_generic, "( OLcfgDbAt:0.17 NAME 'olcHidden' "
348                         "SYNTAX OMsBoolean SINGLE-VALUE )", NULL, NULL },
349         { "idletimeout", "timeout", 2, 2, 0, ARG_INT,
350                 &global_idletimeout, "( OLcfgGlAt:18 NAME 'olcIdleTimeout' "
351                         "SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
352         { "include", "file", 2, 2, 0, ARG_MAGIC,
353                 &config_include, NULL, NULL, NULL },
354         { "index_substr_if_minlen", "min", 2, 2, 0, ARG_INT|ARG_NONZERO|ARG_MAGIC|CFG_SSTR_IF_MIN,
355                 &config_generic, "( OLcfgGlAt:20 NAME 'olcIndexSubstrIfMinLen' "
356                         "SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
357         { "index_substr_if_maxlen", "max", 2, 2, 0, ARG_INT|ARG_NONZERO|ARG_MAGIC|CFG_SSTR_IF_MAX,
358                 &config_generic, "( OLcfgGlAt:21 NAME 'olcIndexSubstrIfMaxLen' "
359                         "SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
360         { "index_substr_any_len", "len", 2, 2, 0, ARG_INT|ARG_NONZERO,
361                 &index_substr_any_len, "( OLcfgGlAt:22 NAME 'olcIndexSubstrAnyLen' "
362                         "SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
363         { "index_substr_any_step", "step", 2, 2, 0, ARG_INT|ARG_NONZERO,
364                 &index_substr_any_step, "( OLcfgGlAt:23 NAME 'olcIndexSubstrAnyStep' "
365                         "SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
366         { "lastmod", "on|off", 2, 2, 0, ARG_DB|ARG_ON_OFF|ARG_MAGIC|CFG_LASTMOD,
367                 &config_generic, "( OLcfgDbAt:0.4 NAME 'olcLastMod' "
368                         "SYNTAX OMsBoolean SINGLE-VALUE )", NULL, NULL },
369         { "limits", "limits", 2, 0, 0, ARG_DB|ARG_MAGIC|CFG_LIMITS,
370                 &config_generic, "( OLcfgDbAt:0.5 NAME 'olcLimits' "
371                         "EQUALITY caseIgnoreMatch "
372                         "SYNTAX OMsDirectoryString X-ORDERED 'VALUES' )", NULL, NULL },
373         { "localSSF", "ssf", 2, 2, 0, ARG_INT,
374                 &local_ssf, "( OLcfgGlAt:26 NAME 'olcLocalSSF' "
375                         "SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
376         { "logfile", "file", 2, 2, 0, ARG_STRING|ARG_MAGIC|CFG_LOGFILE,
377                 &config_generic, "( OLcfgGlAt:27 NAME 'olcLogFile' "
378                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
379         { "loglevel", "level", 2, 0, 0, ARG_MAGIC,
380                 &config_loglevel, "( OLcfgGlAt:28 NAME 'olcLogLevel' "
381                         "EQUALITY caseIgnoreMatch "
382                         "SYNTAX OMsDirectoryString )", NULL, NULL },
383         { "maxDerefDepth", "depth", 2, 2, 0, ARG_DB|ARG_INT|ARG_MAGIC|CFG_DEPTH,
384                 &config_generic, "( OLcfgDbAt:0.6 NAME 'olcMaxDerefDepth' "
385                         "SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
386         { "mirrormode", "on|off", 2, 2, 0, ARG_DB|ARG_ON_OFF|ARG_MAGIC|CFG_MIRRORMODE,
387                 &config_generic, "( OLcfgDbAt:0.16 NAME 'olcMirrorMode' "
388                         "SYNTAX OMsBoolean SINGLE-VALUE )", NULL, NULL },
389         { "moduleload", "file", 2, 0, 0,
390 #ifdef SLAPD_MODULES
391                 ARG_MAGIC|CFG_MODLOAD|ARG_NO_DELETE, &config_generic,
392 #else
393                 ARG_IGNORED, NULL,
394 #endif
395                 "( OLcfgGlAt:30 NAME 'olcModuleLoad' "
396                         "EQUALITY caseIgnoreMatch "
397                         "SYNTAX OMsDirectoryString X-ORDERED 'VALUES' )", NULL, NULL },
398         { "modulepath", "path", 2, 2, 0,
399 #ifdef SLAPD_MODULES
400                 ARG_MAGIC|CFG_MODPATH|ARG_NO_DELETE|ARG_NO_INSERT, &config_generic,
401 #else
402                 ARG_IGNORED, NULL,
403 #endif
404                 "( OLcfgGlAt:31 NAME 'olcModulePath' "
405                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
406         { "monitoring", "TRUE|FALSE", 2, 2, 0,
407                 ARG_MAGIC|CFG_MONITORING|ARG_DB|ARG_ON_OFF, &config_generic,
408                 "( OLcfgDbAt:0.18 NAME 'olcMonitoring' "
409                         "SYNTAX OMsBoolean SINGLE-VALUE )", NULL, NULL },
410         { "objectclass", "objectclass", 2, 0, 0, ARG_PAREN|ARG_MAGIC|CFG_OC,
411                 &config_generic, "( OLcfgGlAt:32 NAME 'olcObjectClasses' "
412                 "DESC 'OpenLDAP object classes' "
413                 "EQUALITY caseIgnoreMatch "
414                 "SYNTAX OMsDirectoryString X-ORDERED 'VALUES' )",
415                         NULL, NULL },
416         { "objectidentifier", "name> <oid",     3, 3, 0, ARG_MAGIC|CFG_OID,
417                 &config_generic, "( OLcfgGlAt:33 NAME 'olcObjectIdentifier' "
418                         "EQUALITY caseIgnoreMatch "
419                         "SYNTAX OMsDirectoryString X-ORDERED 'VALUES' )", NULL, NULL },
420         { "overlay", "overlay", 2, 2, 0, ARG_MAGIC,
421                 &config_overlay, "( OLcfgGlAt:34 NAME 'olcOverlay' "
422                         "SUP olcDatabase SINGLE-VALUE X-ORDERED 'SIBLINGS' )", NULL, NULL },
423         { "password-crypt-salt-format", "salt", 2, 2, 0, ARG_STRING|ARG_MAGIC|CFG_SALT,
424                 &config_generic, "( OLcfgGlAt:35 NAME 'olcPasswordCryptSaltFormat' "
425                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
426         { "password-hash", "hash", 2, 2, 0, ARG_MAGIC,
427                 &config_passwd_hash, "( OLcfgGlAt:36 NAME 'olcPasswordHash' "
428                         "EQUALITY caseIgnoreMatch "
429                         "SYNTAX OMsDirectoryString )", NULL, NULL },
430         { "pidfile", "file", 2, 2, 0, ARG_STRING,
431                 &slapd_pid_file, "( OLcfgGlAt:37 NAME 'olcPidFile' "
432                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
433         { "plugin", NULL, 0, 0, 0,
434 #ifdef LDAP_SLAPI
435                 ARG_MAGIC|CFG_PLUGIN, &config_generic,
436 #else
437                 ARG_IGNORED, NULL,
438 #endif
439                 "( OLcfgGlAt:38 NAME 'olcPlugin' "
440                         "EQUALITY caseIgnoreMatch "
441                         "SYNTAX OMsDirectoryString )", NULL, NULL },
442         { "pluginlog", "filename", 2, 2, 0,
443 #ifdef LDAP_SLAPI
444                 ARG_STRING, &slapi_log_file,
445 #else
446                 ARG_IGNORED, NULL,
447 #endif
448                 "( OLcfgGlAt:39 NAME 'olcPluginLogFile' "
449                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
450         { "readonly", "on|off", 2, 2, 0, ARG_MAY_DB|ARG_ON_OFF|ARG_MAGIC|CFG_RO,
451                 &config_generic, "( OLcfgGlAt:40 NAME 'olcReadOnly' "
452                         "SYNTAX OMsBoolean SINGLE-VALUE )", NULL, NULL },
453         { "referral", "url", 2, 2, 0, ARG_MAGIC,
454                 &config_referral, "( OLcfgGlAt:41 NAME 'olcReferral' "
455                         "SUP labeledURI SINGLE-VALUE )", NULL, NULL },
456         { "replica", "host or uri", 2, 0, 0, ARG_DB|ARG_MAGIC,
457                 &config_obsolete, "( OLcfgDbAt:0.7 NAME 'olcReplica' "
458                         "EQUALITY caseIgnoreMatch "
459                         "SUP labeledURI X-ORDERED 'VALUES' )", NULL, NULL },
460         { "replica-argsfile", NULL, 0, 0, 0, ARG_MAY_DB|ARG_MAGIC,
461                 &config_obsolete, "( OLcfgGlAt:43 NAME 'olcReplicaArgsFile' "
462                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
463         { "replica-pidfile", NULL, 0, 0, 0, ARG_MAY_DB|ARG_MAGIC,
464                 &config_obsolete, "( OLcfgGlAt:44 NAME 'olcReplicaPidFile' "
465                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
466         { "replicationInterval", NULL, 0, 0, 0, ARG_MAY_DB|ARG_MAGIC,
467                 &config_obsolete, "( OLcfgGlAt:45 NAME 'olcReplicationInterval' "
468                         "SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
469         { "replogfile", "filename", 2, 2, 0, ARG_MAY_DB|ARG_MAGIC,
470                 &config_obsolete, "( OLcfgGlAt:46 NAME 'olcReplogFile' "
471                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
472         { "require", "features", 2, 0, 7, ARG_MAY_DB|ARG_MAGIC,
473                 &config_requires, "( OLcfgGlAt:47 NAME 'olcRequires' "
474                         "EQUALITY caseIgnoreMatch "
475                         "SYNTAX OMsDirectoryString )", NULL, NULL },
476         { "restrict", "op_list", 2, 0, 0, ARG_MAY_DB|ARG_MAGIC,
477                 &config_restrict, "( OLcfgGlAt:48 NAME 'olcRestrict' "
478                         "EQUALITY caseIgnoreMatch "
479                         "SYNTAX OMsDirectoryString )", NULL, NULL },
480         { "reverse-lookup", "on|off", 2, 2, 0,
481 #ifdef SLAPD_RLOOKUPS
482                 ARG_ON_OFF, &use_reverse_lookup,
483 #else
484                 ARG_IGNORED, NULL,
485 #endif
486                 "( OLcfgGlAt:49 NAME 'olcReverseLookup' "
487                         "SYNTAX OMsBoolean SINGLE-VALUE )", NULL, NULL },
488         { "rootdn", "dn", 2, 2, 0, ARG_DB|ARG_DN|ARG_QUOTE|ARG_MAGIC,
489                 &config_rootdn, "( OLcfgDbAt:0.8 NAME 'olcRootDN' "
490                         "SYNTAX OMsDN SINGLE-VALUE )", NULL, NULL },
491         { "rootDSE", "file", 2, 2, 0, ARG_MAGIC|CFG_ROOTDSE,
492                 &config_generic, "( OLcfgGlAt:51 NAME 'olcRootDSE' "
493                         "EQUALITY caseIgnoreMatch "
494                         "SYNTAX OMsDirectoryString )", NULL, NULL },
495         { "rootpw", "password", 2, 2, 0, ARG_BERVAL|ARG_DB|ARG_MAGIC,
496                 &config_rootpw, "( OLcfgDbAt:0.9 NAME 'olcRootPW' "
497                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
498         { "sasl-authz-policy", NULL, 2, 2, 0, ARG_MAGIC|CFG_AZPOLICY,
499                 &config_generic, NULL, NULL, NULL },
500         { "sasl-host", "host", 2, 2, 0,
501 #ifdef HAVE_CYRUS_SASL
502                 ARG_STRING|ARG_UNIQUE, &global_host,
503 #else
504                 ARG_IGNORED, NULL,
505 #endif
506                 "( OLcfgGlAt:53 NAME 'olcSaslHost' "
507                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
508         { "sasl-realm", "realm", 2, 2, 0,
509 #ifdef HAVE_CYRUS_SASL
510                 ARG_STRING|ARG_UNIQUE, &global_realm,
511 #else
512                 ARG_IGNORED, NULL,
513 #endif
514                 "( OLcfgGlAt:54 NAME 'olcSaslRealm' "
515                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
516         { "sasl-regexp", NULL, 3, 3, 0, ARG_MAGIC|CFG_AZREGEXP,
517                 &config_generic, NULL, NULL, NULL },
518         { "sasl-secprops", "properties", 2, 2, 0,
519 #ifdef HAVE_CYRUS_SASL
520                 ARG_MAGIC|CFG_SASLSECP, &config_generic,
521 #else
522                 ARG_IGNORED, NULL,
523 #endif
524                 "( OLcfgGlAt:56 NAME 'olcSaslSecProps' "
525                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
526         { "saslRegexp", NULL, 3, 3, 0, ARG_MAGIC|CFG_AZREGEXP,
527                 &config_generic, NULL, NULL, NULL },
528         { "schemadn", "dn", 2, 2, 0, ARG_MAY_DB|ARG_DN|ARG_QUOTE|ARG_MAGIC,
529                 &config_schema_dn, "( OLcfgGlAt:58 NAME 'olcSchemaDN' "
530                         "SYNTAX OMsDN SINGLE-VALUE )", NULL, NULL },
531         { "security", "factors", 2, 0, 0, ARG_MAY_DB|ARG_MAGIC,
532                 &config_security, "( OLcfgGlAt:59 NAME 'olcSecurity' "
533                         "EQUALITY caseIgnoreMatch "
534                         "SYNTAX OMsDirectoryString )", NULL, NULL },
535         { "serverID", "number> <[URI]", 2, 3, 0, ARG_MAGIC|CFG_SERVERID,
536                 &config_generic, "( OLcfgGlAt:81 NAME 'olcServerID' "
537                         "EQUALITY caseIgnoreMatch "
538                         "SYNTAX OMsDirectoryString )", NULL, NULL },
539         { "sizelimit", "limit", 2, 0, 0, ARG_MAY_DB|ARG_MAGIC,
540                 &config_sizelimit, "( OLcfgGlAt:60 NAME 'olcSizeLimit' "
541                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
542         { "sockbuf_max_incoming", "max", 2, 2, 0, ARG_BER_LEN_T,
543                 &sockbuf_max_incoming, "( OLcfgGlAt:61 NAME 'olcSockbufMaxIncoming' "
544                         "SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
545         { "sockbuf_max_incoming_auth", "max", 2, 2, 0, ARG_BER_LEN_T,
546                 &sockbuf_max_incoming_auth, "( OLcfgGlAt:62 NAME 'olcSockbufMaxIncomingAuth' "
547                         "SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
548         { "subordinate", "[advertise]", 1, 2, 0, ARG_DB|ARG_MAGIC,
549                 &config_subordinate, "( OLcfgDbAt:0.15 NAME 'olcSubordinate' "
550                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
551         { "suffix",     "suffix", 2, 2, 0, ARG_DB|ARG_DN|ARG_QUOTE|ARG_MAGIC,
552                 &config_suffix, "( OLcfgDbAt:0.10 NAME 'olcSuffix' "
553                         "EQUALITY distinguishedNameMatch "
554                         "SYNTAX OMsDN )", NULL, NULL },
555         { "syncrepl", NULL, 0, 0, 0, ARG_DB|ARG_MAGIC,
556                 &syncrepl_config, "( OLcfgDbAt:0.11 NAME 'olcSyncrepl' "
557                         "EQUALITY caseIgnoreMatch "
558                         "SYNTAX OMsDirectoryString X-ORDERED 'VALUES' )", NULL, NULL },
559         { "threads", "count", 2, 2, 0,
560 #ifdef NO_THREADS
561                 ARG_IGNORED, NULL,
562 #else
563                 ARG_INT|ARG_MAGIC|CFG_THREADS, &config_generic,
564 #endif
565                 "( OLcfgGlAt:66 NAME 'olcThreads' "
566                         "SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
567         { "timelimit", "limit", 2, 0, 0, ARG_MAY_DB|ARG_MAGIC,
568                 &config_timelimit, "( OLcfgGlAt:67 NAME 'olcTimeLimit' "
569                         "SYNTAX OMsDirectoryString )", NULL, NULL },
570         { "TLSCACertificateFile", NULL, 0, 0, 0,
571 #ifdef HAVE_TLS
572                 CFG_TLS_CA_FILE|ARG_STRING|ARG_MAGIC, &config_tls_option,
573 #else
574                 ARG_IGNORED, NULL,
575 #endif
576                 "( OLcfgGlAt:68 NAME 'olcTLSCACertificateFile' "
577                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
578         { "TLSCACertificatePath", NULL, 0, 0, 0,
579 #ifdef HAVE_TLS
580                 CFG_TLS_CA_PATH|ARG_STRING|ARG_MAGIC, &config_tls_option,
581 #else
582                 ARG_IGNORED, NULL,
583 #endif
584                 "( OLcfgGlAt:69 NAME 'olcTLSCACertificatePath' "
585                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
586         { "TLSCertificateFile", NULL, 0, 0, 0,
587 #ifdef HAVE_TLS
588                 CFG_TLS_CERT_FILE|ARG_STRING|ARG_MAGIC, &config_tls_option,
589 #else
590                 ARG_IGNORED, NULL,
591 #endif
592                 "( OLcfgGlAt:70 NAME 'olcTLSCertificateFile' "
593                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
594         { "TLSCertificateKeyFile", NULL, 0, 0, 0,
595 #ifdef HAVE_TLS
596                 CFG_TLS_CERT_KEY|ARG_STRING|ARG_MAGIC, &config_tls_option,
597 #else
598                 ARG_IGNORED, NULL,
599 #endif
600                 "( OLcfgGlAt:71 NAME 'olcTLSCertificateKeyFile' "
601                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
602         { "TLSCipherSuite",     NULL, 0, 0, 0,
603 #ifdef HAVE_TLS
604                 CFG_TLS_CIPHER|ARG_STRING|ARG_MAGIC, &config_tls_option,
605 #else
606                 ARG_IGNORED, NULL,
607 #endif
608                 "( OLcfgGlAt:72 NAME 'olcTLSCipherSuite' "
609                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
610         { "TLSCRLCheck", NULL, 0, 0, 0,
611 #if defined(HAVE_TLS) && defined(HAVE_OPENSSL_CRL)
612                 CFG_TLS_CRLCHECK|ARG_STRING|ARG_MAGIC, &config_tls_config,
613 #else
614                 ARG_IGNORED, NULL,
615 #endif
616                 "( OLcfgGlAt:73 NAME 'olcTLSCRLCheck' "
617                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
618         { "TLSCRLFile", NULL, 0, 0, 0,
619 #if defined(HAVE_GNUTLS)
620                 CFG_TLS_CRL_FILE|ARG_STRING|ARG_MAGIC, &config_tls_option,
621 #else
622                 ARG_IGNORED, NULL,
623 #endif
624                 "( OLcfgGlAt:82 NAME 'olcTLSCRLFile' "
625                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
626         { "TLSRandFile", NULL, 0, 0, 0,
627 #ifdef HAVE_TLS
628                 CFG_TLS_RAND|ARG_STRING|ARG_MAGIC, &config_tls_option,
629 #else
630                 ARG_IGNORED, NULL,
631 #endif
632                 "( OLcfgGlAt:74 NAME 'olcTLSRandFile' "
633                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
634         { "TLSVerifyClient", NULL, 0, 0, 0,
635 #ifdef HAVE_TLS
636                 CFG_TLS_VERIFY|ARG_STRING|ARG_MAGIC, &config_tls_config,
637 #else
638                 ARG_IGNORED, NULL,
639 #endif
640                 "( OLcfgGlAt:75 NAME 'olcTLSVerifyClient' "
641                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
642         { "TLSDHParamFile", NULL, 0, 0, 0,
643 #ifdef HAVE_TLS
644                 CFG_TLS_DH_FILE|ARG_STRING|ARG_MAGIC, &config_tls_option,
645 #else
646                 ARG_IGNORED, NULL,
647 #endif
648                 "( OLcfgGlAt:77 NAME 'olcTLSDHParamFile' "
649                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
650         { "tool-threads", "count", 2, 2, 0, ARG_INT|ARG_MAGIC|CFG_TTHREADS,
651                 &config_generic, "( OLcfgGlAt:80 NAME 'olcToolThreads' "
652                         "SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
653         { "ucdata-path", "path", 2, 2, 0, ARG_IGNORED,
654                 NULL, NULL, NULL, NULL },
655         { "updatedn", "dn", 2, 2, 0, ARG_DB|ARG_DN|ARG_QUOTE|ARG_MAGIC,
656                 &config_updatedn, "( OLcfgDbAt:0.12 NAME 'olcUpdateDN' "
657                         "SYNTAX OMsDN SINGLE-VALUE )", NULL, NULL },
658         { "updateref", "url", 2, 2, 0, ARG_DB|ARG_MAGIC,
659                 &config_updateref, "( OLcfgDbAt:0.13 NAME 'olcUpdateRef' "
660                         "EQUALITY caseIgnoreMatch "
661                         "SUP labeledURI )", NULL, NULL },
662         { NULL, NULL, 0, 0, 0, ARG_IGNORED,
663                 NULL, NULL, NULL, NULL }
664 };
665
666 /* Routines to check if a child can be added to this type */
667 static ConfigLDAPadd cfAddSchema, cfAddDatabase,
668         cfAddBackend, cfAddModule, cfAddOverlay;
669
670 /* NOTE: be careful when defining array members
671  * that can be conditionally compiled */
672 #define CFOC_GLOBAL     cf_ocs[1]
673 #define CFOC_SCHEMA     cf_ocs[2]
674 #define CFOC_BACKEND    cf_ocs[3]
675 #define CFOC_DATABASE   cf_ocs[4]
676 #define CFOC_OVERLAY    cf_ocs[5]
677 #define CFOC_FRONTEND   cf_ocs[6]
678 #ifdef SLAPD_MODULES
679 #define CFOC_MODULE     cf_ocs[7]
680 #endif /* SLAPD_MODULES */
681
682 static ConfigOCs cf_ocs[] = {
683         { "( OLcfgGlOc:0 "
684                 "NAME 'olcConfig' "
685                 "DESC 'OpenLDAP configuration object' "
686                 "ABSTRACT SUP top )", Cft_Abstract, NULL },
687         { "( OLcfgGlOc:1 "
688                 "NAME 'olcGlobal' "
689                 "DESC 'OpenLDAP Global configuration options' "
690                 "SUP olcConfig STRUCTURAL "
691                 "MAY ( cn $ olcConfigFile $ olcConfigDir $ olcAllows $ olcArgsFile $ "
692                  "olcAttributeOptions $ olcAuthIDRewrite $ "
693                  "olcAuthzPolicy $ olcAuthzRegexp $ olcConcurrency $ "
694                  "olcConnMaxPending $ olcConnMaxPendingAuth $ "
695                  "olcDisallows $ olcGentleHUP $ olcIdleTimeout $ "
696                  "olcIndexSubstrIfMaxLen $ olcIndexSubstrIfMinLen $ "
697                  "olcIndexSubstrAnyLen $ olcIndexSubstrAnyStep $ olcLocalSSF $ "
698                  "olcLogLevel $ "
699                  "olcPasswordCryptSaltFormat $ olcPasswordHash $ olcPidFile $ "
700                  "olcPluginLogFile $ olcReadOnly $ olcReferral $ "
701                  "olcReplogFile $ olcRequires $ olcRestrict $ olcReverseLookup $ "
702                  "olcRootDSE $ "
703                  "olcSaslHost $ olcSaslRealm $ olcSaslSecProps $ "
704                  "olcSecurity $ olcServerID $ olcSizeLimit $ "
705                  "olcSockbufMaxIncoming $ olcSockbufMaxIncomingAuth $ "
706                  "olcThreads $ olcTimeLimit $ olcTLSCACertificateFile $ "
707                  "olcTLSCACertificatePath $ olcTLSCertificateFile $ "
708                  "olcTLSCertificateKeyFile $ olcTLSCipherSuite $ olcTLSCRLCheck $ "
709                  "olcTLSRandFile $ olcTLSVerifyClient $ olcTLSDHParamFile $ "
710                  "olcTLSCRLFile $ olcToolThreads $ "
711                  "olcObjectIdentifier $ olcAttributeTypes $ olcObjectClasses $ "
712                  "olcDitContentRules ) )", Cft_Global },
713         { "( OLcfgGlOc:2 "
714                 "NAME 'olcSchemaConfig' "
715                 "DESC 'OpenLDAP schema object' "
716                 "SUP olcConfig STRUCTURAL "
717                 "MAY ( cn $ olcObjectIdentifier $ olcAttributeTypes $ "
718                  "olcObjectClasses $ olcDitContentRules ) )",
719                         Cft_Schema, NULL, cfAddSchema },
720         { "( OLcfgGlOc:3 "
721                 "NAME 'olcBackendConfig' "
722                 "DESC 'OpenLDAP Backend-specific options' "
723                 "SUP olcConfig STRUCTURAL "
724                 "MUST olcBackend )", Cft_Backend, NULL, cfAddBackend },
725         { "( OLcfgGlOc:4 "
726                 "NAME 'olcDatabaseConfig' "
727                 "DESC 'OpenLDAP Database-specific options' "
728                 "SUP olcConfig STRUCTURAL "
729                 "MUST olcDatabase "
730                 "MAY ( olcHidden $ olcSuffix $ olcSubordinate $ olcAccess $ "
731                  "olcLastMod $ olcLimits $ "
732                  "olcMaxDerefDepth $ olcPlugin $ olcReadOnly $ olcReplica $ "
733                  "olcReplicaArgsFile $ olcReplicaPidFile $ olcReplicationInterval $ "
734                  "olcReplogFile $ olcRequires $ olcRestrict $ olcRootDN $ olcRootPW $ "
735                  "olcSchemaDN $ olcSecurity $ olcSizeLimit $ olcSyncrepl $ "
736                  "olcTimeLimit $ olcUpdateDN $ olcUpdateRef $ olcMirrorMode $ "
737                  "olcMonitoring ) )",
738                         Cft_Database, NULL, cfAddDatabase },
739         { "( OLcfgGlOc:5 "
740                 "NAME 'olcOverlayConfig' "
741                 "DESC 'OpenLDAP Overlay-specific options' "
742                 "SUP olcConfig STRUCTURAL "
743                 "MUST olcOverlay )", Cft_Overlay, NULL, cfAddOverlay },
744         /* This should be STRUCTURAL like all the other database classes, but
745          * that would mean inheriting all of the olcDatabaseConfig attributes,
746          * which causes them to be merged twice in config_build_entry.
747          */
748         { "( OLcfgGlOc:7 "
749                 "NAME 'olcFrontendConfig' "
750                 "DESC 'OpenLDAP frontend configuration' "
751                 "AUXILIARY "
752                 "MAY olcDefaultSearchBase )",
753                 Cft_Database, NULL, NULL },
754 #ifdef SLAPD_MODULES
755         { "( OLcfgGlOc:8 "
756                 "NAME 'olcModuleList' "
757                 "DESC 'OpenLDAP dynamic module info' "
758                 "SUP olcConfig STRUCTURAL "
759                 "MAY ( cn $ olcModulePath $ olcModuleLoad ) )",
760                 Cft_Module, NULL, cfAddModule },
761 #endif
762         { NULL, 0, NULL }
763 };
764
765 typedef struct ServerID {
766         struct ServerID *si_next;
767         struct berval si_url;
768         int si_num;
769 } ServerID;
770
771 static ServerID *sid_list;
772
773 static int
774 config_generic(ConfigArgs *c) {
775         int i;
776
777         if ( c->op == SLAP_CONFIG_EMIT ) {
778                 int rc = 0;
779                 switch(c->type) {
780                 case CFG_CONCUR:
781                         c->value_int = ldap_pvt_thread_get_concurrency();
782                         break;
783                 case CFG_THREADS:
784                         c->value_int = connection_pool_max;
785                         break;
786                 case CFG_TTHREADS:
787                         c->value_int = slap_tool_thread_max;
788                         break;
789                 case CFG_SALT:
790                         if ( passwd_salt )
791                                 c->value_string = ch_strdup( passwd_salt );
792                         else
793                                 rc = 1;
794                         break;
795                 case CFG_LIMITS:
796                         if ( c->be->be_limits ) {
797                                 char buf[4096*3];
798                                 struct berval bv;
799
800                                 for ( i=0; c->be->be_limits[i]; i++ ) {
801                                         bv.bv_len = snprintf( buf, sizeof( buf ), SLAP_X_ORDERED_FMT, i );
802                                         if ( bv.bv_len >= sizeof( buf ) ) {
803                                                 ber_bvarray_free_x( c->rvalue_vals, NULL );
804                                                 c->rvalue_vals = NULL;
805                                                 rc = 1;
806                                                 break;
807                                         }
808                                         bv.bv_val = buf + bv.bv_len;
809                                         limits_unparse( c->be->be_limits[i], &bv,
810                                                         sizeof( buf ) - ( bv.bv_val - buf ) );
811                                         bv.bv_len += bv.bv_val - buf;
812                                         bv.bv_val = buf;
813                                         value_add_one( &c->rvalue_vals, &bv );
814                                 }
815                         }
816                         if ( !c->rvalue_vals ) rc = 1;
817                         break;
818                 case CFG_RO:
819                         c->value_int = (c->be->be_restrictops & SLAP_RESTRICT_OP_WRITES) ==
820                                 SLAP_RESTRICT_OP_WRITES;
821                         break;
822                 case CFG_AZPOLICY:
823                         c->value_string = ch_strdup( slap_sasl_getpolicy());
824                         break;
825                 case CFG_AZREGEXP:
826                         slap_sasl_regexp_unparse( &c->rvalue_vals );
827                         if ( !c->rvalue_vals ) rc = 1;
828                         break;
829 #ifdef HAVE_CYRUS_SASL
830                 case CFG_SASLSECP: {
831                         struct berval bv = BER_BVNULL;
832                         slap_sasl_secprops_unparse( &bv );
833                         if ( !BER_BVISNULL( &bv )) {
834                                 ber_bvarray_add( &c->rvalue_vals, &bv );
835                         } else {
836                                 rc = 1;
837                         }
838                         }
839                         break;
840 #endif
841                 case CFG_DEPTH:
842                         c->value_int = c->be->be_max_deref_depth;
843                         break;
844                 case CFG_HIDDEN:
845                         if ( SLAP_DBHIDDEN( c->be )) {
846                                 c->value_int = 1;
847                         } else {
848                                 rc = 1;
849                         }
850                         break;
851                 case CFG_OID: {
852                         ConfigFile *cf = c->private;
853                         if ( !cf )
854                                 oidm_unparse( &c->rvalue_vals, NULL, NULL, 1 );
855                         else if ( cf->c_om_head )
856                                 oidm_unparse( &c->rvalue_vals, cf->c_om_head,
857                                         cf->c_om_tail, 0 );
858                         if ( !c->rvalue_vals )
859                                 rc = 1;
860                         }
861                         break;
862                 case CFG_ATOPT:
863                         ad_unparse_options( &c->rvalue_vals );
864                         break;
865                 case CFG_OC: {
866                         ConfigFile *cf = c->private;
867                         if ( !cf )
868                                 oc_unparse( &c->rvalue_vals, NULL, NULL, 1 );
869                         else if ( cf->c_oc_head )
870                                 oc_unparse( &c->rvalue_vals, cf->c_oc_head,
871                                         cf->c_oc_tail, 0 );
872                         if ( !c->rvalue_vals )
873                                 rc = 1;
874                         }
875                         break;
876                 case CFG_ATTR: {
877                         ConfigFile *cf = c->private;
878                         if ( !cf )
879                                 at_unparse( &c->rvalue_vals, NULL, NULL, 1 );
880                         else if ( cf->c_at_head )
881                                 at_unparse( &c->rvalue_vals, cf->c_at_head,
882                                         cf->c_at_tail, 0 );
883                         if ( !c->rvalue_vals )
884                                 rc = 1;
885                         }
886                         break;
887                 case CFG_DIT: {
888                         ConfigFile *cf = c->private;
889                         if ( !cf )
890                                 cr_unparse( &c->rvalue_vals, NULL, NULL, 1 );
891                         else if ( cf->c_cr_head )
892                                 cr_unparse( &c->rvalue_vals, cf->c_cr_head,
893                                         cf->c_cr_tail, 0 );
894                         if ( !c->rvalue_vals )
895                                 rc = 1;
896                         }
897                         break;
898                         
899                 case CFG_ACL: {
900                         AccessControl *a;
901                         char *src, *dst, ibuf[11];
902                         struct berval bv, abv;
903                         for (i=0, a=c->be->be_acl; a; i++,a=a->acl_next) {
904                                 abv.bv_len = snprintf( ibuf, sizeof( ibuf ), SLAP_X_ORDERED_FMT, i );
905                                 if ( abv.bv_len >= sizeof( ibuf ) ) {
906                                         ber_bvarray_free_x( c->rvalue_vals, NULL );
907                                         c->rvalue_vals = NULL;
908                                         i = 0;
909                                         break;
910                                 }
911                                 acl_unparse( a, &bv );
912                                 abv.bv_val = ch_malloc( abv.bv_len + bv.bv_len + 1 );
913                                 AC_MEMCPY( abv.bv_val, ibuf, abv.bv_len );
914                                 /* Turn TAB / EOL into plain space */
915                                 for (src=bv.bv_val,dst=abv.bv_val+abv.bv_len; *src; src++) {
916                                         if (isspace((unsigned char)*src)) *dst++ = ' ';
917                                         else *dst++ = *src;
918                                 }
919                                 *dst = '\0';
920                                 if (dst[-1] == ' ') {
921                                         dst--;
922                                         *dst = '\0';
923                                 }
924                                 abv.bv_len = dst - abv.bv_val;
925                                 ber_bvarray_add( &c->rvalue_vals, &abv );
926                         }
927                         rc = (!i);
928                         break;
929                 }
930                 case CFG_ROOTDSE: {
931                         ConfigFile *cf = c->private;
932                         if ( cf->c_dseFiles ) {
933                                 value_add( &c->rvalue_vals, cf->c_dseFiles );
934                         } else {
935                                 rc = 1;
936                         }
937                         }
938                         break;
939                 case CFG_SERVERID:
940                         if ( sid_list ) {
941                                 ServerID *si;
942                                 struct berval bv;
943
944                                 for ( si = sid_list; si; si=si->si_next ) {
945                                         if ( !BER_BVISEMPTY( &si->si_url )) {
946                                                 bv.bv_len = si->si_url.bv_len + 6;
947                                                 bv.bv_val = ch_malloc( bv.bv_len );
948                                                 sprintf( bv.bv_val, "%d %s", si->si_num,
949                                                         si->si_url.bv_val );
950                                                 ber_bvarray_add( &c->rvalue_vals, &bv );
951                                         } else {
952                                                 char buf[5];
953                                                 bv.bv_val = buf;
954                                                 bv.bv_len = sprintf( buf, "%d", si->si_num );
955                                                 value_add_one( &c->rvalue_vals, &bv );
956                                         }
957                                 }
958                         } else {
959                                 rc = 1;
960                         }
961                         break;
962                 case CFG_LOGFILE:
963                         if ( logfileName )
964                                 c->value_string = ch_strdup( logfileName );
965                         else
966                                 rc = 1;
967                         break;
968                 case CFG_LASTMOD:
969                         c->value_int = (SLAP_NOLASTMOD(c->be) == 0);
970                         break;
971                 case CFG_MIRRORMODE:
972                         if ( SLAP_SHADOW(c->be))
973                                 c->value_int = (SLAP_SINGLE_SHADOW(c->be) == 0);
974                         else
975                                 rc = 1;
976                         break;
977                 case CFG_MONITORING:
978                         c->value_int = (SLAP_DBMONITORING(c->be) != 0);
979                         break;
980                 case CFG_SSTR_IF_MAX:
981                         c->value_int = index_substr_if_maxlen;
982                         break;
983                 case CFG_SSTR_IF_MIN:
984                         c->value_int = index_substr_if_minlen;
985                         break;
986 #ifdef SLAPD_MODULES
987                 case CFG_MODLOAD: {
988                         ModPaths *mp = c->private;
989                         if (mp->mp_loads) {
990                                 int i;
991                                 for (i=0; !BER_BVISNULL(&mp->mp_loads[i]); i++) {
992                                         struct berval bv;
993                                         bv.bv_val = c->log;
994                                         bv.bv_len = snprintf( bv.bv_val, sizeof( c->log ),
995                                                 SLAP_X_ORDERED_FMT "%s", i,
996                                                 mp->mp_loads[i].bv_val );
997                                         if ( bv.bv_len >= sizeof( c->log ) ) {
998                                                 ber_bvarray_free_x( c->rvalue_vals, NULL );
999                                                 c->rvalue_vals = NULL;
1000                                                 break;
1001                                         }
1002                                         value_add_one( &c->rvalue_vals, &bv );
1003                                 }
1004                         }
1005
1006                         rc = c->rvalue_vals ? 0 : 1;
1007                         }
1008                         break;
1009                 case CFG_MODPATH: {
1010                         ModPaths *mp = c->private;
1011                         if ( !BER_BVISNULL( &mp->mp_path ))
1012                                 value_add_one( &c->rvalue_vals, &mp->mp_path );
1013
1014                         rc = c->rvalue_vals ? 0 : 1;
1015                         }
1016                         break;
1017 #endif
1018 #ifdef LDAP_SLAPI
1019                 case CFG_PLUGIN:
1020                         slapi_int_plugin_unparse( c->be, &c->rvalue_vals );
1021                         if ( !c->rvalue_vals ) rc = 1;
1022                         break;
1023 #endif
1024 #ifdef SLAP_AUTH_REWRITE
1025                 case CFG_REWRITE:
1026                         if ( authz_rewrites ) {
1027                                 struct berval bv, idx;
1028                                 char ibuf[32];
1029                                 int i;
1030
1031                                 idx.bv_val = ibuf;
1032                                 for ( i=0; !BER_BVISNULL( &authz_rewrites[i] ); i++ ) {
1033                                         idx.bv_len = snprintf( idx.bv_val, sizeof( ibuf ), SLAP_X_ORDERED_FMT, i );
1034                                         if ( idx.bv_len >= sizeof( ibuf ) ) {
1035                                                 ber_bvarray_free_x( c->rvalue_vals, NULL );
1036                                                 c->rvalue_vals = NULL;
1037                                                 break;
1038                                         }
1039                                         bv.bv_len = idx.bv_len + authz_rewrites[i].bv_len;
1040                                         bv.bv_val = ch_malloc( bv.bv_len + 1 );
1041                                         AC_MEMCPY( bv.bv_val, idx.bv_val, idx.bv_len );
1042                                         AC_MEMCPY( &bv.bv_val[ idx.bv_len ],
1043                                                 authz_rewrites[i].bv_val,
1044                                                 authz_rewrites[i].bv_len + 1 );
1045                                         ber_bvarray_add( &c->rvalue_vals, &bv );
1046                                 }
1047                         }
1048                         if ( !c->rvalue_vals ) rc = 1;
1049                         break;
1050 #endif
1051                 default:
1052                         rc = 1;
1053                 }
1054                 return rc;
1055         } else if ( c->op == LDAP_MOD_DELETE ) {
1056                 int rc = 0;
1057                 switch(c->type) {
1058                 /* single-valued attrs, no-ops */
1059                 case CFG_CONCUR:
1060                 case CFG_THREADS:
1061                 case CFG_TTHREADS:
1062                 case CFG_RO:
1063                 case CFG_AZPOLICY:
1064                 case CFG_DEPTH:
1065                 case CFG_LASTMOD:
1066                 case CFG_MIRRORMODE:
1067                 case CFG_MONITORING:
1068                 case CFG_SASLSECP:
1069                 case CFG_SSTR_IF_MAX:
1070                 case CFG_SSTR_IF_MIN:
1071                         break;
1072
1073                 /* no-ops, requires slapd restart */
1074                 case CFG_PLUGIN:
1075                 case CFG_MODLOAD:
1076                 case CFG_AZREGEXP:
1077                 case CFG_REWRITE:
1078                         snprintf(c->log, sizeof( c->log ), "change requires slapd restart");
1079                         break;
1080
1081                 case CFG_SALT:
1082                         ch_free( passwd_salt );
1083                         passwd_salt = NULL;
1084                         break;
1085
1086                 case CFG_LOGFILE:
1087                         ch_free( logfileName );
1088                         logfileName = NULL;
1089                         break;
1090
1091                 case CFG_SERVERID: {
1092                         ServerID *si, **sip;
1093
1094                         for ( i=0, si = sid_list, sip = &sid_list;
1095                                 si; si = *sip, i++ ) {
1096                                 if ( c->valx == -1 || i == c->valx ) {
1097                                         *sip = si->si_next;
1098                                         ch_free( si );
1099                                         if ( c->valx >= 0 )
1100                                                 break;
1101                                 } else {
1102                                         sip = &si->si_next;
1103                                 }
1104                         }
1105                         }
1106                         break;
1107                 case CFG_HIDDEN:
1108                         c->be->be_flags &= ~SLAP_DBFLAG_HIDDEN;
1109                         break;
1110
1111                 case CFG_ACL:
1112                         if ( c->valx < 0 ) {
1113                                 AccessControl *end;
1114                                 if ( c->be == frontendDB )
1115                                         end = NULL;
1116                                 else
1117                                         end = frontendDB->be_acl;
1118                                 acl_destroy( c->be->be_acl, end );
1119                                 c->be->be_acl = end;
1120
1121                         } else {
1122                                 AccessControl **prev, *a;
1123                                 int i;
1124                                 for (i=0, prev = &c->be->be_acl; i < c->valx;
1125                                         i++ ) {
1126                                         a = *prev;
1127                                         prev = &a->acl_next;
1128                                 }
1129                                 a = *prev;
1130                                 *prev = a->acl_next;
1131                                 acl_free( a );
1132                         }
1133                         break;
1134
1135                 case CFG_OC: {
1136                         CfEntryInfo *ce = c->ca_entry->e_private;
1137                         /* can't modify the hardcoded schema */
1138                         if ( ce->ce_parent->ce_type == Cft_Global )
1139                                 return 1;
1140                         }
1141                         cfn = c->private;
1142                         if ( c->valx < 0 ) {
1143                                 ObjectClass *oc;
1144
1145                                 for( oc = cfn->c_oc_head; oc; oc_next( &oc )) {
1146                                         oc_delete( oc );
1147                                         if ( oc  == cfn->c_oc_tail )
1148                                                 break;
1149                                 }
1150                                 cfn->c_oc_head = cfn->c_oc_tail = NULL;
1151                         } else {
1152                                 ObjectClass *oc, *prev = NULL;
1153
1154                                 for ( i=0, oc=cfn->c_oc_head; i<c->valx; i++) {
1155                                         prev = oc;
1156                                         oc_next( &oc );
1157                                 }
1158                                 oc_delete( oc );
1159                                 if ( cfn->c_oc_tail == oc ) {
1160                                         cfn->c_oc_tail = prev;
1161                                 }
1162                                 if ( cfn->c_oc_head == oc ) {
1163                                         oc_next( &oc );
1164                                         cfn->c_oc_head = oc;
1165                                 }
1166                         }
1167                         break;
1168
1169                 case CFG_ATTR: {
1170                         CfEntryInfo *ce = c->ca_entry->e_private;
1171                         /* can't modify the hardcoded schema */
1172                         if ( ce->ce_parent->ce_type == Cft_Global )
1173                                 return 1;
1174                         }
1175                         cfn = c->private;
1176                         if ( c->valx < 0 ) {
1177                                 AttributeType *at;
1178
1179                                 for( at = cfn->c_at_head; at; at_next( &at )) {
1180                                         at_delete( at );
1181                                         if ( at  == cfn->c_at_tail )
1182                                                 break;
1183                                 }
1184                                 cfn->c_at_head = cfn->c_at_tail = NULL;
1185                         } else {
1186                                 AttributeType *at, *prev = NULL;
1187
1188                                 for ( i=0, at=cfn->c_at_head; i<c->valx; i++) {
1189                                         prev = at;
1190                                         at_next( &at );
1191                                 }
1192                                 at_delete( at );
1193                                 if ( cfn->c_at_tail == at ) {
1194                                         cfn->c_at_tail = prev;
1195                                 }
1196                                 if ( cfn->c_at_head == at ) {
1197                                         at_next( &at );
1198                                         cfn->c_at_head = at;
1199                                 }
1200                         }
1201                         break;
1202
1203                 case CFG_LIMITS:
1204                         /* FIXME: there is no limits_free function */
1205                 case CFG_ATOPT:
1206                         /* FIXME: there is no ad_option_free function */
1207                 case CFG_ROOTDSE:
1208                         /* FIXME: there is no way to remove attributes added by
1209                                 a DSE file */
1210                 case CFG_OID:
1211                 case CFG_DIT:
1212                 case CFG_MODPATH:
1213                 default:
1214                         rc = 1;
1215                         break;
1216                 }
1217                 return rc;
1218         }
1219
1220         switch(c->type) {
1221                 case CFG_BACKEND:
1222                         if(!(c->bi = backend_info(c->argv[1]))) {
1223                                 snprintf( c->msg, sizeof( c->msg ), "<%s> failed init", c->argv[0] );
1224                                 Debug(LDAP_DEBUG_ANY, "%s: %s (%s)!\n",
1225                                         c->log, c->msg, c->argv[1] );
1226                                 return(1);
1227                         }
1228                         break;
1229
1230                 case CFG_DATABASE:
1231                         c->bi = NULL;
1232                         /* NOTE: config is always the first backend!
1233                          */
1234                         if ( !strcasecmp( c->argv[1], "config" )) {
1235                                 c->be = LDAP_STAILQ_FIRST(&backendDB);
1236                         } else if ( !strcasecmp( c->argv[1], "frontend" )) {
1237                                 c->be = frontendDB;
1238                         } else {
1239                                 c->be = backend_db_init(c->argv[1], NULL, c->valx, c);
1240                                 if ( !c->be ) {
1241                                         if ( c->msg[0] == 0 )
1242                                                 snprintf( c->msg, sizeof( c->msg ), "<%s> failed init", c->argv[0] );
1243                                         Debug(LDAP_DEBUG_ANY, "%s: %s (%s)\n", c->log, c->msg, c->argv[1] );
1244                                         return(1);
1245                                 }
1246                         }
1247                         break;
1248
1249                 case CFG_CONCUR:
1250                         ldap_pvt_thread_set_concurrency(c->value_int);
1251                         break;
1252
1253                 case CFG_THREADS:
1254                         if ( c->value_int < 2 ) {
1255                                 snprintf( c->msg, sizeof( c->msg ),
1256                                         "threads=%d smaller than minimum value 2",
1257                                         c->value_int );
1258                                 Debug(LDAP_DEBUG_ANY, "%s: %s.\n",
1259                                         c->log, c->msg, 0 );
1260                                 return 1;
1261
1262                         } else if ( c->value_int > 2 * SLAP_MAX_WORKER_THREADS ) {
1263                                 snprintf( c->msg, sizeof( c->msg ),
1264                                         "warning, threads=%d larger than twice the default (2*%d=%d); YMMV",
1265                                         c->value_int, SLAP_MAX_WORKER_THREADS, 2 * SLAP_MAX_WORKER_THREADS );
1266                                 Debug(LDAP_DEBUG_ANY, "%s: %s.\n",
1267                                         c->log, c->msg, 0 );
1268                         }
1269                         if ( slapMode & SLAP_SERVER_MODE )
1270                                 ldap_pvt_thread_pool_maxthreads(&connection_pool, c->value_int);
1271                         connection_pool_max = c->value_int;     /* save for reference */
1272                         break;
1273
1274                 case CFG_TTHREADS:
1275                         if ( slapMode & SLAP_TOOL_MODE )
1276                                 ldap_pvt_thread_pool_maxthreads(&connection_pool, c->value_int);
1277                         slap_tool_thread_max = c->value_int;    /* save for reference */
1278                         break;
1279
1280                 case CFG_SALT:
1281                         if ( passwd_salt ) ch_free( passwd_salt );
1282                         passwd_salt = c->value_string;
1283                         lutil_salt_format(passwd_salt);
1284                         break;
1285
1286                 case CFG_LIMITS:
1287                         if(limits_parse(c->be, c->fname, c->lineno, c->argc, c->argv))
1288                                 return(1);
1289                         break;
1290
1291                 case CFG_RO:
1292                         if(c->value_int)
1293                                 c->be->be_restrictops |= SLAP_RESTRICT_OP_WRITES;
1294                         else
1295                                 c->be->be_restrictops &= ~SLAP_RESTRICT_OP_WRITES;
1296                         break;
1297
1298                 case CFG_AZPOLICY:
1299                         ch_free(c->value_string);
1300                         if (slap_sasl_setpolicy( c->argv[1] )) {
1301                                 snprintf( c->msg, sizeof( c->msg ), "<%s> unable to parse value", c->argv[0] );
1302                                 Debug(LDAP_DEBUG_ANY, "%s: %s \"%s\"\n",
1303                                         c->log, c->msg, c->argv[1] );
1304                                 return(1);
1305                         }
1306                         break;
1307                 
1308                 case CFG_AZREGEXP:
1309                         if (slap_sasl_regexp_config( c->argv[1], c->argv[2] ))
1310                                 return(1);
1311                         break;
1312                                 
1313 #ifdef HAVE_CYRUS_SASL
1314                 case CFG_SASLSECP:
1315                         {
1316                         char *txt = slap_sasl_secprops( c->argv[1] );
1317                         if ( txt ) {
1318                                 snprintf( c->msg, sizeof(c->msg), "<%s> %s",
1319                                         c->argv[0], txt );
1320                                 Debug(LDAP_DEBUG_ANY, "%s: %s\n", c->log, c->msg, 0 );
1321                                 return(1);
1322                         }
1323                         break;
1324                         }
1325 #endif
1326
1327                 case CFG_DEPTH:
1328                         c->be->be_max_deref_depth = c->value_int;
1329                         break;
1330
1331                 case CFG_OID: {
1332                         OidMacro *om;
1333
1334                         if ( c->op == LDAP_MOD_ADD && c->private && cfn != c->private )
1335                                 cfn = c->private;
1336                         if(parse_oidm(c, 1, &om))
1337                                 return(1);
1338                         if (!cfn->c_om_head) cfn->c_om_head = om;
1339                         cfn->c_om_tail = om;
1340                         }
1341                         break;
1342
1343                 case CFG_OC: {
1344                         ObjectClass *oc, *prev;
1345
1346                         if ( c->op == LDAP_MOD_ADD && c->private && cfn != c->private )
1347                                 cfn = c->private;
1348                         if ( c->valx < 0 ) {
1349                                 prev = cfn->c_oc_tail;
1350                         } else {
1351                                 prev = NULL;
1352                                 /* If adding anything after the first, prev is easy */
1353                                 if ( c->valx ) {
1354                                         int i;
1355                                         for (i=0, oc = cfn->c_oc_head; i<c->valx; i++) {
1356                                                 prev = oc;
1357                                                 oc_next( &oc );
1358                                         }
1359                                 } else
1360                                 /* If adding the first, and head exists, find its prev */
1361                                         if (cfn->c_oc_head) {
1362                                         for ( oc_start( &oc ); oc != cfn->c_oc_head; ) {
1363                                                 prev = oc;
1364                                                 oc_next( &oc );
1365                                         }
1366                                 }
1367                                 /* else prev is NULL, append to end of global list */
1368                         }
1369                         if(parse_oc(c, &oc, prev)) return(1);
1370                         if (!cfn->c_oc_head) cfn->c_oc_head = oc;
1371                         if (cfn->c_oc_tail == prev) cfn->c_oc_tail = oc;
1372                         }
1373                         break;
1374
1375                 case CFG_ATTR: {
1376                         AttributeType *at, *prev;
1377
1378                         if ( c->op == LDAP_MOD_ADD && c->private && cfn != c->private )
1379                                 cfn = c->private;
1380                         if ( c->valx < 0 ) {
1381                                 prev = cfn->c_at_tail;
1382                         } else {
1383                                 prev = NULL;
1384                                 /* If adding anything after the first, prev is easy */
1385                                 if ( c->valx ) {
1386                                         int i;
1387                                         for (i=0, at = cfn->c_at_head; i<c->valx; i++) {
1388                                                 prev = at;
1389                                                 at_next( &at );
1390                                         }
1391                                 } else
1392                                 /* If adding the first, and head exists, find its prev */
1393                                         if (cfn->c_at_head) {
1394                                         for ( at_start( &at ); at != cfn->c_at_head; ) {
1395                                                 prev = at;
1396                                                 at_next( &at );
1397                                         }
1398                                 }
1399                                 /* else prev is NULL, append to end of global list */
1400                         }
1401                         if(parse_at(c, &at, prev)) return(1);
1402                         if (!cfn->c_at_head) cfn->c_at_head = at;
1403                         if (cfn->c_at_tail == prev) cfn->c_at_tail = at;
1404                         }
1405                         break;
1406
1407                 case CFG_DIT: {
1408                         ContentRule *cr;
1409
1410                         if ( c->op == LDAP_MOD_ADD && c->private && cfn != c->private )
1411                                 cfn = c->private;
1412                         if(parse_cr(c, &cr)) return(1);
1413                         if (!cfn->c_cr_head) cfn->c_cr_head = cr;
1414                         cfn->c_cr_tail = cr;
1415                         }
1416                         break;
1417
1418                 case CFG_ATOPT:
1419                         ad_define_option(NULL, NULL, 0);
1420                         for(i = 1; i < c->argc; i++)
1421                                 if(ad_define_option(c->argv[i], c->fname, c->lineno))
1422                                         return(1);
1423                         break;
1424
1425                 case CFG_ACL:
1426                         /* Don't append to the global ACL if we're on a specific DB */
1427                         i = c->valx;
1428                         if ( c->be != frontendDB && frontendDB->be_acl && c->valx == -1 ) {
1429                                 AccessControl *a;
1430                                 i = 0;
1431                                 for ( a=c->be->be_acl; a && a != frontendDB->be_acl;
1432                                         a = a->acl_next )
1433                                         i++;
1434                         }
1435                         if ( parse_acl(c->be, c->fname, c->lineno, c->argc, c->argv, i ) ) {
1436                                 return 1;
1437                         }
1438                         break;
1439
1440                 case CFG_ROOTDSE:
1441                         if(root_dse_read_file(c->argv[1])) {
1442                                 snprintf( c->msg, sizeof( c->msg ), "<%s> could not read file", c->argv[0] );
1443                                 Debug(LDAP_DEBUG_ANY, "%s: %s %s\n",
1444                                         c->log, c->msg, c->argv[1] );
1445                                 return(1);
1446                         }
1447                         {
1448                                 struct berval bv;
1449                                 ber_str2bv( c->argv[1], 0, 1, &bv );
1450                                 if ( c->op == LDAP_MOD_ADD && c->private && cfn != c->private )
1451                                         cfn = c->private;
1452                                 ber_bvarray_add( &cfn->c_dseFiles, &bv );
1453                         }
1454                         break;
1455
1456                 case CFG_SERVERID:
1457                         {
1458                                 ServerID *si, **sip;
1459                                 LDAPURLDesc *lud;
1460                                 int num = atoi( c->argv[1] );
1461                                 if ( num < 0 || num > SLAP_SYNC_SID_MAX ) {
1462                                         snprintf( c->msg, sizeof( c->msg ),
1463                                                 "<%s> illegal server ID", c->argv[0] );
1464                                         Debug(LDAP_DEBUG_ANY, "%s: %s %s\n",
1465                                                 c->log, c->msg, c->argv[1] );
1466                                         return 1;
1467                                 }
1468                                 /* only one value allowed if no URL is given */
1469                                 if ( c->argc > 2 ) {
1470                                         int len;
1471
1472                                         if ( sid_list && BER_BVISEMPTY( &sid_list->si_url )) {
1473                                                 snprintf( c->msg, sizeof( c->msg ),
1474                                                         "<%s> only one server ID allowed now", c->argv[0] );
1475                                                 Debug(LDAP_DEBUG_ANY, "%s: %s %s\n",
1476                                                         c->log, c->msg, c->argv[1] );
1477                                                 return 1;
1478                                         }
1479
1480                                         if ( ldap_url_parse( c->argv[2], &lud )) {
1481                                                 snprintf( c->msg, sizeof( c->msg ),
1482                                                         "<%s> invalid URL", c->argv[0] );
1483                                                 Debug(LDAP_DEBUG_ANY, "%s: %s %s\n",
1484                                                         c->log, c->msg, c->argv[2] );
1485                                                 return 1;
1486                                         }
1487                                         len = strlen( c->argv[2] );
1488                                         si = ch_malloc( sizeof(ServerID) + len + 1 );
1489                                         si->si_url.bv_val = (char *)(si+1);
1490                                         si->si_url.bv_len = len;
1491                                         strcpy( si->si_url.bv_val, c->argv[2] );
1492                                 } else {
1493                                         if ( sid_list ) {
1494                                                 snprintf( c->msg, sizeof( c->msg ),
1495                                                         "<%s> unqualified server ID not allowed now", c->argv[0] );
1496                                                 Debug(LDAP_DEBUG_ANY, "%s: %s %s\n",
1497                                                         c->log, c->msg, c->argv[1] );
1498                                                 return 1;
1499                                         }
1500                                         si = ch_malloc( sizeof(ServerID) );
1501                                         BER_BVZERO( &si->si_url );
1502                                         slap_serverID = num;
1503                                 }
1504                                 si->si_next = NULL;
1505                                 si->si_num = num;
1506                                 for ( sip = &sid_list; *sip; sip = &(*sip)->si_next );
1507                                 *sip = si;
1508
1509                                 if (( slapMode & SLAP_SERVER_MODE ) && c->argc > 2 ) {
1510                                         /* If hostname is empty, or is localhost, or matches
1511                                          * our hostname, this serverID refers to this host.
1512                                          * Compare it against listeners and ports.
1513                                          */
1514                                         if ( !lud->lud_host || !lud->lud_host[0] ||
1515                                                 !strncasecmp("localhost", lud->lud_host,
1516                                                         STRLENOF("localhost")) ||
1517                                                 !strcasecmp( global_host, lud->lud_host )) {
1518                                                 Listener **l = slapd_get_listeners();
1519                                                 int i;
1520
1521                                                 for ( i=0; l[i]; i++ ) {
1522                                                         LDAPURLDesc *lu2;
1523                                                         int isMe = 0;
1524                                                         ldap_url_parse( l[i]->sl_url.bv_val, &lu2 );
1525                                                         do {
1526                                                                 if ( strcasecmp( lud->lud_scheme,
1527                                                                         lu2->lud_scheme ))
1528                                                                         break;
1529                                                                 if ( lud->lud_port != lu2->lud_port )
1530                                                                         break;
1531                                                                 /* Listener on ANY address */
1532                                                                 if ( !lu2->lud_host || !lu2->lud_host[0] ) {
1533                                                                         isMe = 1;
1534                                                                         break;
1535                                                                 }
1536                                                                 /* URL on ANY address */
1537                                                                 if ( !lud->lud_host || !lud->lud_host[0] ) {
1538                                                                         isMe = 1;
1539                                                                         break;
1540                                                                 }
1541                                                                 /* Listener has specific host, must
1542                                                                  * match it
1543                                                                  */
1544                                                                 if ( !strcasecmp( lud->lud_host,
1545                                                                         lu2->lud_host )) {
1546                                                                         isMe = 1;
1547                                                                         break;
1548                                                                 }
1549                                                         } while(0);
1550                                                         ldap_free_urldesc( lu2 );
1551                                                         if ( isMe ) {
1552                                                                 slap_serverID = si->si_num;
1553                                                                 break;
1554                                                         }
1555                                                 }
1556                                         }
1557                                 }
1558                                 if ( c->argc > 2 )
1559                                         ldap_free_urldesc( lud );
1560                         }
1561                         break;
1562                 case CFG_LOGFILE: {
1563                                 FILE *logfile;
1564                                 if ( logfileName ) ch_free( logfileName );
1565                                 logfileName = c->value_string;
1566                                 logfile = fopen(logfileName, "w");
1567                                 if(logfile) lutil_debug_file(logfile);
1568                         } break;
1569
1570                 case CFG_LASTMOD:
1571                         if(SLAP_NOLASTMODCMD(c->be)) {
1572                                 snprintf( c->msg, sizeof( c->msg ), "<%s> not available for %s database",
1573                                         c->argv[0], c->be->bd_info->bi_type );
1574                                 Debug(LDAP_DEBUG_ANY, "%s: %s\n",
1575                                         c->log, c->msg, 0 );
1576                                 return(1);
1577                         }
1578                         if(c->value_int)
1579                                 SLAP_DBFLAGS(c->be) &= ~SLAP_DBFLAG_NOLASTMOD;
1580                         else
1581                                 SLAP_DBFLAGS(c->be) |= SLAP_DBFLAG_NOLASTMOD;
1582                         break;
1583
1584                 case CFG_MIRRORMODE:
1585                         if(!SLAP_SHADOW(c->be)) {
1586                                 snprintf( c->msg, sizeof( c->msg ), "<%s> database is not a shadow",
1587                                         c->argv[0] );
1588                                 Debug(LDAP_DEBUG_ANY, "%s: %s\n",
1589                                         c->log, c->msg, 0 );
1590                                 return(1);
1591                         }
1592                         if(c->value_int)
1593                                 SLAP_DBFLAGS(c->be) &= ~SLAP_DBFLAG_SINGLE_SHADOW;
1594                         else
1595                                 SLAP_DBFLAGS(c->be) |= SLAP_DBFLAG_SINGLE_SHADOW;
1596                         break;
1597
1598                 case CFG_MONITORING:
1599                         if(c->value_int)
1600                                 SLAP_DBFLAGS(c->be) |= SLAP_DBFLAG_MONITORING;
1601                         else
1602                                 SLAP_DBFLAGS(c->be) &= ~SLAP_DBFLAG_MONITORING;
1603                         break;
1604
1605                 case CFG_HIDDEN:
1606                         if (c->value_int)
1607                                 SLAP_DBFLAGS(c->be) |= SLAP_DBFLAG_HIDDEN;
1608                         else
1609                                 SLAP_DBFLAGS(c->be) &= ~SLAP_DBFLAG_HIDDEN;
1610                         break;
1611
1612                 case CFG_SSTR_IF_MAX:
1613                         if (c->value_int < index_substr_if_minlen) {
1614                                 snprintf( c->msg, sizeof( c->msg ), "<%s> invalid value", c->argv[0] );
1615                                 Debug(LDAP_DEBUG_ANY, "%s: %s (%d)\n",
1616                                         c->log, c->msg, c->value_int );
1617                                 return(1);
1618                         }
1619                         index_substr_if_maxlen = c->value_int;
1620                         break;
1621
1622                 case CFG_SSTR_IF_MIN:
1623                         if (c->value_int > index_substr_if_maxlen) {
1624                                 snprintf( c->msg, sizeof( c->msg ), "<%s> invalid value", c->argv[0] );
1625                                 Debug(LDAP_DEBUG_ANY, "%s: %s (%d)\n",
1626                                         c->log, c->msg, c->value_int );
1627                                 return(1);
1628                         }
1629                         index_substr_if_minlen = c->value_int;
1630                         break;
1631
1632 #ifdef SLAPD_MODULES
1633                 case CFG_MODLOAD:
1634                         /* If we're just adding a module on an existing modpath,
1635                          * make sure we've selected the current path.
1636                          */
1637                         if ( c->op == LDAP_MOD_ADD && c->private && modcur != c->private ) {
1638                                 modcur = c->private;
1639                                 /* This should never fail */
1640                                 if ( module_path( modcur->mp_path.bv_val )) {
1641                                         snprintf( c->msg, sizeof( c->msg ), "<%s> module path no longer valid",
1642                                                 c->argv[0] );
1643                                         Debug(LDAP_DEBUG_ANY, "%s: %s (%s)\n",
1644                                                 c->log, c->msg, modcur->mp_path.bv_val );
1645                                         return(1);
1646                                 }
1647                         }
1648                         if(module_load(c->argv[1], c->argc - 2, (c->argc > 2) ? c->argv + 2 : NULL))
1649                                 return(1);
1650                         /* Record this load on the current path */
1651                         {
1652                                 struct berval bv;
1653                                 char *ptr;
1654                                 if ( c->op == SLAP_CONFIG_ADD ) {
1655                                         ptr = c->line + STRLENOF("moduleload");
1656                                         while (!isspace((unsigned char) *ptr)) ptr++;
1657                                         while (isspace((unsigned char) *ptr)) ptr++;
1658                                 } else {
1659                                         ptr = c->line;
1660                                 }
1661                                 ber_str2bv(ptr, 0, 1, &bv);
1662                                 ber_bvarray_add( &modcur->mp_loads, &bv );
1663                         }
1664                         /* Check for any new hardcoded schema */
1665                         if ( c->op == LDAP_MOD_ADD && CONFIG_ONLINE_ADD( c )) {
1666                                 config_check_schema( NULL, &cfBackInfo );
1667                         }
1668                         break;
1669
1670                 case CFG_MODPATH:
1671                         if(module_path(c->argv[1])) return(1);
1672                         /* Record which path was used with each module */
1673                         {
1674                                 ModPaths *mp;
1675
1676                                 if (!modpaths.mp_loads) {
1677                                         mp = &modpaths;
1678                                 } else {
1679                                         mp = ch_malloc( sizeof( ModPaths ));
1680                                         modlast->mp_next = mp;
1681                                 }
1682                                 ber_str2bv(c->argv[1], 0, 1, &mp->mp_path);
1683                                 mp->mp_next = NULL;
1684                                 mp->mp_loads = NULL;
1685                                 modlast = mp;
1686                                 c->private = mp;
1687                                 modcur = mp;
1688                         }
1689                         
1690                         break;
1691 #endif
1692
1693 #ifdef LDAP_SLAPI
1694                 case CFG_PLUGIN:
1695                         if(slapi_int_read_config(c->be, c->fname, c->lineno, c->argc, c->argv) != LDAP_SUCCESS)
1696                                 return(1);
1697                         slapi_plugins_used++;
1698                         break;
1699 #endif
1700
1701 #ifdef SLAP_AUTH_REWRITE
1702                 case CFG_REWRITE: {
1703                         struct berval bv;
1704                         char *line;
1705                         
1706                         if(slap_sasl_rewrite_config(c->fname, c->lineno, c->argc, c->argv))
1707                                 return(1);
1708
1709                         if ( c->argc > 1 ) {
1710                                 char    *s;
1711
1712                                 /* quote all args but the first */
1713                                 line = ldap_charray2str( c->argv, "\" \"" );
1714                                 ber_str2bv( line, 0, 0, &bv );
1715                                 s = ber_bvchr( &bv, '"' );
1716                                 assert( s != NULL );
1717                                 /* move the trailing quote of argv[0] to the end */
1718                                 AC_MEMCPY( s, s + 1, bv.bv_len - ( s - bv.bv_val ) );
1719                                 bv.bv_val[ bv.bv_len - 1 ] = '"';
1720
1721                         } else {
1722                                 ber_str2bv( c->argv[ 0 ], 0, 1, &bv );
1723                         }
1724                         
1725                         ber_bvarray_add( &authz_rewrites, &bv );
1726                         }
1727                         break;
1728 #endif
1729
1730
1731                 default:
1732                         Debug( LDAP_DEBUG_ANY,
1733                                 "%s: unknown CFG_TYPE %d.\n",
1734                                 c->log, c->type, 0 );
1735                         return 1;
1736
1737         }
1738         return(0);
1739 }
1740
1741
1742 static int
1743 config_fname(ConfigArgs *c) {
1744         if(c->op == SLAP_CONFIG_EMIT) {
1745                 if (c->private) {
1746                         ConfigFile *cf = c->private;
1747                         value_add_one( &c->rvalue_vals, &cf->c_file );
1748                         return 0;
1749                 }
1750                 return 1;
1751         }
1752         return(0);
1753 }
1754
1755 static int
1756 config_cfdir(ConfigArgs *c) {
1757         if(c->op == SLAP_CONFIG_EMIT) {
1758                 if ( !BER_BVISEMPTY( &cfdir )) {
1759                         value_add_one( &c->rvalue_vals, &cfdir );
1760                         return 0;
1761                 }
1762                 return 1;
1763         }
1764         return(0);
1765 }
1766
1767 static int
1768 config_search_base(ConfigArgs *c) {
1769         if(c->op == SLAP_CONFIG_EMIT) {
1770                 int rc = 1;
1771                 if (!BER_BVISEMPTY(&default_search_base)) {
1772                         value_add_one(&c->rvalue_vals, &default_search_base);
1773                         value_add_one(&c->rvalue_nvals, &default_search_nbase);
1774                         rc = 0;
1775                 }
1776                 return rc;
1777         } else if( c->op == LDAP_MOD_DELETE ) {
1778                 ch_free( default_search_base.bv_val );
1779                 ch_free( default_search_nbase.bv_val );
1780                 BER_BVZERO( &default_search_base );
1781                 BER_BVZERO( &default_search_nbase );
1782                 return 0;
1783         }
1784
1785         if(c->bi || c->be != frontendDB) {
1786                 Debug(LDAP_DEBUG_ANY, "%s: defaultSearchBase line must appear "
1787                         "prior to any backend or database definition\n",
1788                         c->log, 0, 0);
1789                 return(1);
1790         }
1791
1792         if(default_search_nbase.bv_len) {
1793                 free(default_search_base.bv_val);
1794                 free(default_search_nbase.bv_val);
1795         }
1796
1797         default_search_base = c->value_dn;
1798         default_search_nbase = c->value_ndn;
1799         return(0);
1800 }
1801
1802 static int
1803 config_passwd_hash(ConfigArgs *c) {
1804         int i;
1805         if (c->op == SLAP_CONFIG_EMIT) {
1806                 struct berval bv;
1807                 for (i=0; default_passwd_hash && default_passwd_hash[i]; i++) {
1808                         ber_str2bv(default_passwd_hash[i], 0, 0, &bv);
1809                         value_add_one(&c->rvalue_vals, &bv);
1810                 }
1811                 return i ? 0 : 1;
1812         } else if ( c->op == LDAP_MOD_DELETE ) {
1813                 if ( c->valx < 0 ) {
1814                         ldap_charray_free( default_passwd_hash );
1815                         default_passwd_hash = NULL;
1816                 } else {
1817                         i = c->valx;
1818                         ch_free( default_passwd_hash[i] );
1819                         for (; default_passwd_hash[i]; i++ )
1820                                 default_passwd_hash[i] = default_passwd_hash[i+1];
1821                 }
1822                 return 0;
1823         }
1824         if(default_passwd_hash) {
1825                 Debug(LDAP_DEBUG_ANY, "%s: "
1826                         "already set default password_hash\n",
1827                         c->log, 0, 0);
1828                 return(1);
1829         }
1830         for(i = 1; i < c->argc; i++) {
1831                 if(!lutil_passwd_scheme(c->argv[i])) {
1832                         snprintf( c->msg, sizeof( c->msg ), "<%s> scheme not available", c->argv[0] );
1833                         Debug(LDAP_DEBUG_ANY, "%s: %s (%s)\n",
1834                                 c->log, c->msg, c->argv[i]);
1835                 } else {
1836                         ldap_charray_add(&default_passwd_hash, c->argv[i]);
1837                 }
1838                 if(!default_passwd_hash) {
1839                         snprintf( c->msg, sizeof( c->msg ), "<%s> no valid hashes found", c->argv[0] );
1840                         Debug(LDAP_DEBUG_ANY, "%s: %s\n",
1841                                 c->log, c->msg, 0 );
1842                         return(1);
1843                 }
1844         }
1845         return(0);
1846 }
1847
1848 static int
1849 config_schema_dn(ConfigArgs *c) {
1850         if ( c->op == SLAP_CONFIG_EMIT ) {
1851                 int rc = 1;
1852                 if ( !BER_BVISEMPTY( &c->be->be_schemadn )) {
1853                         value_add_one(&c->rvalue_vals, &c->be->be_schemadn);
1854                         value_add_one(&c->rvalue_nvals, &c->be->be_schemandn);
1855                         rc = 0;
1856                 }
1857                 return rc;
1858         } else if ( c->op == LDAP_MOD_DELETE ) {
1859                 ch_free( c->be->be_schemadn.bv_val );
1860                 ch_free( c->be->be_schemandn.bv_val );
1861                 BER_BVZERO( &c->be->be_schemadn );
1862                 BER_BVZERO( &c->be->be_schemandn );
1863                 return 0;
1864         }
1865         ch_free( c->be->be_schemadn.bv_val );
1866         ch_free( c->be->be_schemandn.bv_val );
1867         c->be->be_schemadn = c->value_dn;
1868         c->be->be_schemandn = c->value_ndn;
1869         return(0);
1870 }
1871
1872 static int
1873 config_sizelimit(ConfigArgs *c) {
1874         int i, rc = 0;
1875         struct slap_limits_set *lim = &c->be->be_def_limit;
1876         if (c->op == SLAP_CONFIG_EMIT) {
1877                 char buf[8192];
1878                 struct berval bv;
1879                 bv.bv_val = buf;
1880                 bv.bv_len = 0;
1881                 limits_unparse_one( lim, SLAP_LIMIT_SIZE, &bv, sizeof( buf ) );
1882                 if ( !BER_BVISEMPTY( &bv ))
1883                         value_add_one( &c->rvalue_vals, &bv );
1884                 else
1885                         rc = 1;
1886                 return rc;
1887         } else if ( c->op == LDAP_MOD_DELETE ) {
1888                 /* Reset to defaults */
1889                 lim->lms_s_soft = SLAPD_DEFAULT_SIZELIMIT;
1890                 lim->lms_s_hard = 0;
1891                 lim->lms_s_unchecked = -1;
1892                 lim->lms_s_pr = 0;
1893                 lim->lms_s_pr_hide = 0;
1894                 lim->lms_s_pr_total = 0;
1895                 return 0;
1896         }
1897         for(i = 1; i < c->argc; i++) {
1898                 if(!strncasecmp(c->argv[i], "size", 4)) {
1899                         rc = limits_parse_one(c->argv[i], lim);
1900                         if ( rc ) {
1901                                 snprintf( c->msg, sizeof( c->msg ), "<%s> unable to parse value", c->argv[0] );
1902                                 Debug(LDAP_DEBUG_ANY, "%s: %s \"%s\"\n",
1903                                         c->log, c->msg, c->argv[i]);
1904                                 return(1);
1905                         }
1906                 } else {
1907                         if(!strcasecmp(c->argv[i], "unlimited")) {
1908                                 lim->lms_s_soft = -1;
1909                         } else {
1910                                 if ( lutil_atoix( &lim->lms_s_soft, c->argv[i], 0 ) != 0 ) {
1911                                         snprintf( c->msg, sizeof( c->msg ), "<%s> unable to parse limit", c->argv[0]);
1912                                         Debug(LDAP_DEBUG_ANY, "%s: %s \"%s\"\n",
1913                                                 c->log, c->msg, c->argv[i]);
1914                                         return(1);
1915                                 }
1916                         }
1917                         lim->lms_s_hard = 0;
1918                 }
1919         }
1920         return(0);
1921 }
1922
1923 static int
1924 config_timelimit(ConfigArgs *c) {
1925         int i, rc = 0;
1926         struct slap_limits_set *lim = &c->be->be_def_limit;
1927         if (c->op == SLAP_CONFIG_EMIT) {
1928                 char buf[8192];
1929                 struct berval bv;
1930                 bv.bv_val = buf;
1931                 bv.bv_len = 0;
1932                 limits_unparse_one( lim, SLAP_LIMIT_TIME, &bv, sizeof( buf ) );
1933                 if ( !BER_BVISEMPTY( &bv ))
1934                         value_add_one( &c->rvalue_vals, &bv );
1935                 else
1936                         rc = 1;
1937                 return rc;
1938         } else if ( c->op == LDAP_MOD_DELETE ) {
1939                 /* Reset to defaults */
1940                 lim->lms_t_soft = SLAPD_DEFAULT_TIMELIMIT;
1941                 lim->lms_t_hard = 0;
1942                 return 0;
1943         }
1944         for(i = 1; i < c->argc; i++) {
1945                 if(!strncasecmp(c->argv[i], "time", 4)) {
1946                         rc = limits_parse_one(c->argv[i], lim);
1947                         if ( rc ) {
1948                                 snprintf( c->msg, sizeof( c->msg ), "<%s> unable to parse value", c->argv[0] );
1949                                 Debug(LDAP_DEBUG_ANY, "%s: %s \"%s\"\n",
1950                                         c->log, c->msg, c->argv[i]);
1951                                 return(1);
1952                         }
1953                 } else {
1954                         if(!strcasecmp(c->argv[i], "unlimited")) {
1955                                 lim->lms_t_soft = -1;
1956                         } else {
1957                                 if ( lutil_atoix( &lim->lms_t_soft, c->argv[i], 0 ) != 0 ) {
1958                                         snprintf( c->msg, sizeof( c->msg ), "<%s> unable to parse limit", c->argv[0]);
1959                                         Debug(LDAP_DEBUG_ANY, "%s: %s \"%s\"\n",
1960                                                 c->log, c->msg, c->argv[i]);
1961                                         return(1);
1962                                 }
1963                         }
1964                         lim->lms_t_hard = 0;
1965                 }
1966         }
1967         return(0);
1968 }
1969
1970 static int
1971 config_overlay(ConfigArgs *c) {
1972         if (c->op == SLAP_CONFIG_EMIT) {
1973                 return 1;
1974         } else if ( c->op == LDAP_MOD_DELETE ) {
1975                 assert(0);
1976         }
1977         if(c->argv[1][0] == '-' && overlay_config(c->be, &c->argv[1][1],
1978                 c->valx, &c->bi)) {
1979                 /* log error */
1980                 Debug( LDAP_DEBUG_ANY,
1981                         "%s: (optional) %s overlay \"%s\" configuration failed.\n",
1982                         c->log, c->be == frontendDB ? "global " : "", &c->argv[1][1]);
1983                 return 1;
1984         } else if(overlay_config(c->be, c->argv[1], c->valx, &c->bi)) {
1985                 return(1);
1986         }
1987         return(0);
1988 }
1989
1990 static int
1991 config_subordinate(ConfigArgs *c)
1992 {
1993         int rc = 1;
1994         int advertise;
1995
1996         switch( c->op ) {
1997         case SLAP_CONFIG_EMIT:
1998                 if ( SLAP_GLUE_SUBORDINATE( c->be )) {
1999                         struct berval bv;
2000
2001                         bv.bv_val = SLAP_GLUE_ADVERTISE( c->be ) ? "advertise" : "TRUE";
2002                         bv.bv_len = SLAP_GLUE_ADVERTISE( c->be ) ? STRLENOF("advertise") :
2003                                 STRLENOF("TRUE");
2004
2005                         value_add_one( &c->rvalue_vals, &bv );
2006                         rc = 0;
2007                 }
2008                 break;
2009         case LDAP_MOD_DELETE:
2010                 if ( !c->line  || strcasecmp( c->line, "advertise" )) {
2011                         glue_sub_del( c->be );
2012                 } else {
2013                         SLAP_DBFLAGS( c->be ) &= ~SLAP_DBFLAG_GLUE_ADVERTISE;
2014                 }
2015                 rc = 0;
2016                 break;
2017         case LDAP_MOD_ADD:
2018         case SLAP_CONFIG_ADD:
2019                 advertise = ( c->argc == 2 && !strcasecmp( c->argv[1], "advertise" ));
2020                 rc = glue_sub_add( c->be, advertise, CONFIG_ONLINE_ADD( c ));
2021                 break;
2022         }
2023         return rc;
2024 }
2025
2026 static int
2027 config_suffix(ConfigArgs *c)
2028 {
2029         Backend *tbe;
2030         struct berval pdn, ndn;
2031         char    *notallowed = NULL;
2032
2033         if ( c->be == frontendDB ) {
2034                 notallowed = "frontend";
2035
2036         } else if ( SLAP_MONITOR(c->be) ) {
2037                 notallowed = "monitor";
2038
2039         } else if ( SLAP_CONFIG(c->be) ) {
2040                 notallowed = "config";
2041         }
2042
2043         if ( notallowed != NULL ) {
2044                 char    buf[ SLAP_TEXT_BUFLEN ] = { '\0' };
2045
2046                 switch ( c->op ) {
2047                 case LDAP_MOD_ADD:
2048                 case LDAP_MOD_DELETE:
2049                 case LDAP_MOD_REPLACE:
2050                 case LDAP_MOD_INCREMENT:
2051                 case SLAP_CONFIG_ADD:
2052                         if ( !BER_BVISNULL( &c->value_dn ) ) {
2053                                 snprintf( buf, sizeof( buf ), "<%s> ",
2054                                                 c->value_dn.bv_val );
2055                         }
2056
2057                         Debug(LDAP_DEBUG_ANY,
2058                                 "%s: suffix %snot allowed in %s database.\n",
2059                                 c->log, buf, notallowed );
2060                         break;
2061
2062                 case SLAP_CONFIG_EMIT:
2063                         /* don't complain when emitting... */
2064                         break;
2065
2066                 default:
2067                         /* FIXME: don't know what values may be valid;
2068                          * please remove assertion, or add legal values
2069                          * to either block */
2070                         assert( 0 );
2071                         break;
2072                 }
2073
2074                 return 1;
2075         }
2076
2077         if (c->op == SLAP_CONFIG_EMIT) {
2078                 if ( c->be->be_suffix == NULL
2079                                 || BER_BVISNULL( &c->be->be_suffix[0] ) )
2080                 {
2081                         return 1;
2082                 } else {
2083                         value_add( &c->rvalue_vals, c->be->be_suffix );
2084                         value_add( &c->rvalue_nvals, c->be->be_nsuffix );
2085                         return 0;
2086                 }
2087         } else if ( c->op == LDAP_MOD_DELETE ) {
2088                 if ( c->valx < 0 ) {
2089                         ber_bvarray_free( c->be->be_suffix );
2090                         ber_bvarray_free( c->be->be_nsuffix );
2091                         c->be->be_suffix = NULL;
2092                         c->be->be_nsuffix = NULL;
2093                 } else {
2094                         int i = c->valx;
2095                         ch_free( c->be->be_suffix[i].bv_val );
2096                         ch_free( c->be->be_nsuffix[i].bv_val );
2097                         do {
2098                                 c->be->be_suffix[i] = c->be->be_suffix[i+1];
2099                                 c->be->be_nsuffix[i] = c->be->be_nsuffix[i+1];
2100                                 i++;
2101                         } while ( !BER_BVISNULL( &c->be->be_suffix[i] ) );
2102                 }
2103                 return 0;
2104         }
2105
2106 #ifdef SLAPD_MONITOR_DN
2107         if(!strcasecmp(c->argv[1], SLAPD_MONITOR_DN)) {
2108                 snprintf( c->msg, sizeof( c->msg ), "<%s> DN is reserved for monitoring slapd",
2109                         c->argv[0] );
2110                 Debug(LDAP_DEBUG_ANY, "%s: %s (%s)\n",
2111                         c->log, c->msg, SLAPD_MONITOR_DN);
2112                 return(1);
2113         }
2114 #endif
2115
2116         pdn = c->value_dn;
2117         ndn = c->value_ndn;
2118         if (SLAP_DBHIDDEN( c->be ))
2119                 tbe = NULL;
2120         else
2121                 tbe = select_backend(&ndn, 0);
2122         if(tbe == c->be) {
2123                 Debug( LDAP_DEBUG_ANY, "%s: suffix already served by this backend!.\n",
2124                         c->log, 0, 0);
2125                 return 1;
2126                 free(pdn.bv_val);
2127                 free(ndn.bv_val);
2128         } else if(tbe) {
2129                 BackendDB *b2 = tbe;
2130
2131                 /* Does tbe precede be? */
2132                 while (( b2 = LDAP_STAILQ_NEXT(b2, be_next )) && b2 && b2 != c->be );
2133
2134                 if ( b2 ) {
2135                         char    *type = tbe->bd_info->bi_type;
2136
2137                         if ( overlay_is_over( tbe ) ) {
2138                                 slap_overinfo   *oi = (slap_overinfo *)tbe->bd_info->bi_private;
2139                                 type = oi->oi_orig->bi_type;
2140                         }
2141
2142                         snprintf( c->msg, sizeof( c->msg ), "<%s> namingContext \"%s\" "
2143                                 "already served by a preceding %s database",
2144                                 c->argv[0], pdn.bv_val, type );
2145                         Debug(LDAP_DEBUG_ANY, "%s: %s serving namingContext \"%s\"\n",
2146                                 c->log, c->msg, tbe->be_suffix[0].bv_val);
2147                         free(pdn.bv_val);
2148                         free(ndn.bv_val);
2149                         return(1);
2150                 }
2151         }
2152         if(pdn.bv_len == 0 && default_search_nbase.bv_len) {
2153                 Debug(LDAP_DEBUG_ANY, "%s: suffix DN empty and default search "
2154                         "base provided \"%s\" (assuming okay)\n",
2155                         c->log, default_search_base.bv_val, 0);
2156         }
2157         ber_bvarray_add(&c->be->be_suffix, &pdn);
2158         ber_bvarray_add(&c->be->be_nsuffix, &ndn);
2159         return(0);
2160 }
2161
2162 static int
2163 config_rootdn(ConfigArgs *c) {
2164         if (c->op == SLAP_CONFIG_EMIT) {
2165                 if ( !BER_BVISNULL( &c->be->be_rootdn )) {
2166                         value_add_one(&c->rvalue_vals, &c->be->be_rootdn);
2167                         value_add_one(&c->rvalue_nvals, &c->be->be_rootndn);
2168                         return 0;
2169                 } else {
2170                         return 1;
2171                 }
2172         } else if ( c->op == LDAP_MOD_DELETE ) {
2173                 ch_free( c->be->be_rootdn.bv_val );
2174                 ch_free( c->be->be_rootndn.bv_val );
2175                 BER_BVZERO( &c->be->be_rootdn );
2176                 BER_BVZERO( &c->be->be_rootndn );
2177                 return 0;
2178         }
2179         if ( !BER_BVISNULL( &c->be->be_rootdn )) {
2180                 ch_free( c->be->be_rootdn.bv_val );
2181                 ch_free( c->be->be_rootndn.bv_val );
2182         }
2183         c->be->be_rootdn = c->value_dn;
2184         c->be->be_rootndn = c->value_ndn;
2185         return(0);
2186 }
2187
2188 static int
2189 config_rootpw(ConfigArgs *c) {
2190         Backend *tbe;
2191
2192         if (c->op == SLAP_CONFIG_EMIT) {
2193                 if (!BER_BVISEMPTY(&c->be->be_rootpw)) {
2194                         /* don't copy, because "rootpw" is marked
2195                          * as CFG_BERVAL */
2196                         c->value_bv = c->be->be_rootpw;
2197                         return 0;
2198                 }
2199                 return 1;
2200         } else if ( c->op == LDAP_MOD_DELETE ) {
2201                 ch_free( c->be->be_rootpw.bv_val );
2202                 BER_BVZERO( &c->be->be_rootpw );
2203                 return 0;
2204         }
2205
2206         tbe = select_backend(&c->be->be_rootndn, 0);
2207         if(tbe != c->be) {
2208                 snprintf( c->msg, sizeof( c->msg ), "<%s> can only be set when rootdn is under suffix",
2209                         c->argv[0] );
2210                 Debug(LDAP_DEBUG_ANY, "%s: %s\n",
2211                         c->log, c->msg, 0);
2212                 return(1);
2213         }
2214         if ( !BER_BVISNULL( &c->be->be_rootpw ))
2215                 ch_free( c->be->be_rootpw.bv_val );
2216         c->be->be_rootpw = c->value_bv;
2217         return(0);
2218 }
2219
2220 static int
2221 config_restrict(ConfigArgs *c) {
2222         slap_mask_t restrictops = 0;
2223         int i;
2224         slap_verbmasks restrictable_ops[] = {
2225                 { BER_BVC("bind"),              SLAP_RESTRICT_OP_BIND },
2226                 { BER_BVC("add"),               SLAP_RESTRICT_OP_ADD },
2227                 { BER_BVC("modify"),            SLAP_RESTRICT_OP_MODIFY },
2228                 { BER_BVC("rename"),            SLAP_RESTRICT_OP_RENAME },
2229                 { BER_BVC("modrdn"),            0 },
2230                 { BER_BVC("delete"),            SLAP_RESTRICT_OP_DELETE },
2231                 { BER_BVC("search"),            SLAP_RESTRICT_OP_SEARCH },
2232                 { BER_BVC("compare"),           SLAP_RESTRICT_OP_COMPARE },
2233                 { BER_BVC("read"),              SLAP_RESTRICT_OP_READS },
2234                 { BER_BVC("write"),             SLAP_RESTRICT_OP_WRITES },
2235                 { BER_BVC("extended"),          SLAP_RESTRICT_OP_EXTENDED },
2236                 { BER_BVC("extended=" LDAP_EXOP_START_TLS ),            SLAP_RESTRICT_EXOP_START_TLS },
2237                 { BER_BVC("extended=" LDAP_EXOP_MODIFY_PASSWD ),        SLAP_RESTRICT_EXOP_MODIFY_PASSWD },
2238                 { BER_BVC("extended=" LDAP_EXOP_X_WHO_AM_I ),           SLAP_RESTRICT_EXOP_WHOAMI },
2239                 { BER_BVC("extended=" LDAP_EXOP_X_CANCEL ),             SLAP_RESTRICT_EXOP_CANCEL },
2240                 { BER_BVC("all"),               SLAP_RESTRICT_OP_ALL },
2241                 { BER_BVNULL,   0 }
2242         };
2243
2244         if (c->op == SLAP_CONFIG_EMIT) {
2245                 return mask_to_verbs( restrictable_ops, c->be->be_restrictops,
2246                         &c->rvalue_vals );
2247         } else if ( c->op == LDAP_MOD_DELETE ) {
2248                 if ( !c->line ) {
2249                         c->be->be_restrictops = 0;
2250                 } else {
2251                         restrictops = verb_to_mask( c->line, restrictable_ops );
2252                         c->be->be_restrictops ^= restrictops;
2253                 }
2254                 return 0;
2255         }
2256         i = verbs_to_mask( c->argc, c->argv, restrictable_ops, &restrictops );
2257         if ( i ) {
2258                 snprintf( c->msg, sizeof( c->msg ), "<%s> unknown operation", c->argv[0] );
2259                 Debug(LDAP_DEBUG_ANY, "%s: %s %s\n",
2260                         c->log, c->msg, c->argv[i]);
2261                 return(1);
2262         }
2263         if ( restrictops & SLAP_RESTRICT_OP_EXTENDED )
2264                 restrictops &= ~SLAP_RESTRICT_EXOP_MASK;
2265         c->be->be_restrictops |= restrictops;
2266         return(0);
2267 }
2268
2269 static int
2270 config_allows(ConfigArgs *c) {
2271         slap_mask_t allows = 0;
2272         int i;
2273         slap_verbmasks allowable_ops[] = {
2274                 { BER_BVC("bind_v2"),           SLAP_ALLOW_BIND_V2 },
2275                 { BER_BVC("bind_anon_cred"),    SLAP_ALLOW_BIND_ANON_CRED },
2276                 { BER_BVC("bind_anon_dn"),      SLAP_ALLOW_BIND_ANON_DN },
2277                 { BER_BVC("update_anon"),       SLAP_ALLOW_UPDATE_ANON },
2278                 { BER_BVC("proxy_authz_anon"),  SLAP_ALLOW_PROXY_AUTHZ_ANON },
2279                 { BER_BVNULL,   0 }
2280         };
2281         if (c->op == SLAP_CONFIG_EMIT) {
2282                 return mask_to_verbs( allowable_ops, global_allows, &c->rvalue_vals );
2283         } else if ( c->op == LDAP_MOD_DELETE ) {
2284                 if ( !c->line ) {
2285                         global_allows = 0;
2286                 } else {
2287                         allows = verb_to_mask( c->line, allowable_ops );
2288                         global_allows ^= allows;
2289                 }
2290                 return 0;
2291         }
2292         i = verbs_to_mask(c->argc, c->argv, allowable_ops, &allows);
2293         if ( i ) {
2294                 snprintf( c->msg, sizeof( c->msg ), "<%s> unknown feature", c->argv[0] );
2295                 Debug(LDAP_DEBUG_ANY, "%s: %s %s\n",
2296                         c->log, c->msg, c->argv[i]);
2297                 return(1);
2298         }
2299         global_allows |= allows;
2300         return(0);
2301 }
2302
2303 static int
2304 config_disallows(ConfigArgs *c) {
2305         slap_mask_t disallows = 0;
2306         int i;
2307         slap_verbmasks disallowable_ops[] = {
2308                 { BER_BVC("bind_anon"),         SLAP_DISALLOW_BIND_ANON },
2309                 { BER_BVC("bind_simple"),       SLAP_DISALLOW_BIND_SIMPLE },
2310                 { BER_BVC("tls_2_anon"),                SLAP_DISALLOW_TLS_2_ANON },
2311                 { BER_BVC("tls_authc"),         SLAP_DISALLOW_TLS_AUTHC },
2312                 { BER_BVNULL, 0 }
2313         };
2314         if (c->op == SLAP_CONFIG_EMIT) {
2315                 return mask_to_verbs( disallowable_ops, global_disallows, &c->rvalue_vals );
2316         } else if ( c->op == LDAP_MOD_DELETE ) {
2317                 if ( !c->line ) {
2318                         global_disallows = 0;
2319                 } else {
2320                         disallows = verb_to_mask( c->line, disallowable_ops );
2321                         global_disallows ^= disallows;
2322                 }
2323                 return 0;
2324         }
2325         i = verbs_to_mask(c->argc, c->argv, disallowable_ops, &disallows);
2326         if ( i ) {
2327                 snprintf( c->msg, sizeof( c->msg ), "<%s> unknown feature", c->argv[0] );
2328                 Debug(LDAP_DEBUG_ANY, "%s: %s %s\n",
2329                         c->log, c->msg, c->argv[i]);
2330                 return(1);
2331         }
2332         global_disallows |= disallows;
2333         return(0);
2334 }
2335
2336 static int
2337 config_requires(ConfigArgs *c) {
2338         slap_mask_t requires = frontendDB->be_requires;
2339         int i, argc = c->argc;
2340         char **argv = c->argv;
2341
2342         slap_verbmasks requires_ops[] = {
2343                 { BER_BVC("bind"),              SLAP_REQUIRE_BIND },
2344                 { BER_BVC("LDAPv3"),            SLAP_REQUIRE_LDAP_V3 },
2345                 { BER_BVC("authc"),             SLAP_REQUIRE_AUTHC },
2346                 { BER_BVC("sasl"),              SLAP_REQUIRE_SASL },
2347                 { BER_BVC("strong"),            SLAP_REQUIRE_STRONG },
2348                 { BER_BVNULL, 0 }
2349         };
2350         if (c->op == SLAP_CONFIG_EMIT) {
2351                 return mask_to_verbs( requires_ops, c->be->be_requires, &c->rvalue_vals );
2352         } else if ( c->op == LDAP_MOD_DELETE ) {
2353                 if ( !c->line ) {
2354                         c->be->be_requires = 0;
2355                 } else {
2356                         requires = verb_to_mask( c->line, requires_ops );
2357                         c->be->be_requires ^= requires;
2358                 }
2359                 return 0;
2360         }
2361         /* "none" can only be first, to wipe out default/global values */
2362         if ( strcasecmp( c->argv[ 1 ], "none" ) == 0 ) {
2363                 argv++;
2364                 argc--;
2365                 requires = 0;
2366         }
2367         i = verbs_to_mask(argc, argv, requires_ops, &requires);
2368         if ( i ) {
2369                 if (strcasecmp( c->argv[ i ], "none" ) == 0 ) {
2370                         snprintf( c->msg, sizeof( c->msg ), "<%s> \"none\" (#%d) must be listed first", c->argv[0], i - 1 );
2371                         Debug(LDAP_DEBUG_ANY, "%s: %s\n",
2372                                 c->log, c->msg, 0);
2373                 } else {
2374                         snprintf( c->msg, sizeof( c->msg ), "<%s> unknown feature #%d", c->argv[0], i - 1 );
2375                         Debug(LDAP_DEBUG_ANY, "%s: %s \"%s\"\n",
2376                                 c->log, c->msg, c->argv[i]);
2377                 }
2378                 return(1);
2379         }
2380         c->be->be_requires = requires;
2381         return(0);
2382 }
2383
2384 static slap_verbmasks   *loglevel_ops;
2385
2386 static int
2387 loglevel_init( void )
2388 {
2389         slap_verbmasks  lo[] = {
2390                 { BER_BVC("Any"),       -1 },
2391                 { BER_BVC("Trace"),     LDAP_DEBUG_TRACE },
2392                 { BER_BVC("Packets"),   LDAP_DEBUG_PACKETS },
2393                 { BER_BVC("Args"),      LDAP_DEBUG_ARGS },
2394                 { BER_BVC("Conns"),     LDAP_DEBUG_CONNS },
2395                 { BER_BVC("BER"),       LDAP_DEBUG_BER },
2396                 { BER_BVC("Filter"),    LDAP_DEBUG_FILTER },
2397                 { BER_BVC("Config"),    LDAP_DEBUG_CONFIG },
2398                 { BER_BVC("ACL"),       LDAP_DEBUG_ACL },
2399                 { BER_BVC("Stats"),     LDAP_DEBUG_STATS },
2400                 { BER_BVC("Stats2"),    LDAP_DEBUG_STATS2 },
2401                 { BER_BVC("Shell"),     LDAP_DEBUG_SHELL },
2402                 { BER_BVC("Parse"),     LDAP_DEBUG_PARSE },
2403 #if 0   /* no longer used (nor supported) */
2404                 { BER_BVC("Cache"),     LDAP_DEBUG_CACHE },
2405                 { BER_BVC("Index"),     LDAP_DEBUG_INDEX },
2406 #endif
2407                 { BER_BVC("Sync"),      LDAP_DEBUG_SYNC },
2408                 { BER_BVC("None"),      LDAP_DEBUG_NONE },
2409                 { BER_BVNULL,           0 }
2410         };
2411
2412         return slap_verbmasks_init( &loglevel_ops, lo );
2413 }
2414
2415 static void
2416 loglevel_destroy( void )
2417 {
2418         if ( loglevel_ops ) {
2419                 (void)slap_verbmasks_destroy( loglevel_ops );
2420         }
2421         loglevel_ops = NULL;
2422 }
2423
2424 static slap_mask_t      loglevel_ignore[] = { -1, 0 };
2425
2426 int
2427 slap_loglevel_register( slap_mask_t m, struct berval *s )
2428 {
2429         int     rc;
2430
2431         if ( loglevel_ops == NULL ) {
2432                 loglevel_init();
2433         }
2434
2435         rc = slap_verbmasks_append( &loglevel_ops, m, s, loglevel_ignore );
2436
2437         if ( rc != 0 ) {
2438                 Debug( LDAP_DEBUG_ANY, "slap_loglevel_register(%lu, \"%s\") failed\n",
2439                         m, s->bv_val, 0 );
2440         }
2441
2442         return rc;
2443 }
2444
2445 int
2446 slap_loglevel_get( struct berval *s, int *l )
2447 {
2448         int             rc;
2449         slap_mask_t     m, i;
2450
2451         if ( loglevel_ops == NULL ) {
2452                 loglevel_init();
2453         }
2454
2455         for ( m = 0, i = 1; !BER_BVISNULL( &loglevel_ops[ i ].word ); i++ ) {
2456                 m |= loglevel_ops[ i ].mask;
2457         }
2458
2459         for ( i = 1; m & i; i <<= 1 )
2460                 ;
2461
2462         if ( i == 0 ) {
2463                 return -1;
2464         }
2465
2466         rc = slap_verbmasks_append( &loglevel_ops, i, s, loglevel_ignore );
2467
2468         if ( rc != 0 ) {
2469                 Debug( LDAP_DEBUG_ANY, "slap_loglevel_get(%lu, \"%s\") failed\n",
2470                         i, s->bv_val, 0 );
2471
2472         } else {
2473                 *l = i;
2474         }
2475
2476         return rc;
2477 }
2478
2479 int
2480 str2loglevel( const char *s, int *l )
2481 {
2482         int     i;
2483
2484         if ( loglevel_ops == NULL ) {
2485                 loglevel_init();
2486         }
2487
2488         i = verb_to_mask( s, loglevel_ops );
2489
2490         if ( BER_BVISNULL( &loglevel_ops[ i ].word ) ) {
2491                 return -1;
2492         }
2493
2494         *l = loglevel_ops[ i ].mask;
2495
2496         return 0;
2497 }
2498
2499 const char *
2500 loglevel2str( int l )
2501 {
2502         struct berval   bv = BER_BVNULL;
2503
2504         loglevel2bv( l, &bv );
2505
2506         return bv.bv_val;
2507 }
2508
2509 int
2510 loglevel2bv( int l, struct berval *bv )
2511 {
2512         if ( loglevel_ops == NULL ) {
2513                 loglevel_init();
2514         }
2515
2516         BER_BVZERO( bv );
2517
2518         return enum_to_verb( loglevel_ops, l, bv ) == -1;
2519 }
2520
2521 int
2522 loglevel2bvarray( int l, BerVarray *bva )
2523 {
2524         if ( loglevel_ops == NULL ) {
2525                 loglevel_init();
2526         }
2527
2528         return mask_to_verbs( loglevel_ops, l, bva );
2529 }
2530
2531 int
2532 loglevel_print( FILE *out )
2533 {
2534         int     i;
2535
2536         if ( loglevel_ops == NULL ) {
2537                 loglevel_init();
2538         }
2539
2540         fprintf( out, "Installed log subsystems:\n\n" );
2541         for ( i = 0; !BER_BVISNULL( &loglevel_ops[ i ].word ); i++ ) {
2542                 fprintf( out, "\t%-30s (%lu)\n",
2543                         loglevel_ops[ i ].word.bv_val,
2544                         loglevel_ops[ i ].mask );
2545         }
2546
2547         fprintf( out, "\nNOTE: custom log subsystems may be later installed "
2548                 "by specific code\n\n" );
2549
2550         return 0;
2551 }
2552
2553 static int config_syslog;
2554
2555 static int
2556 config_loglevel(ConfigArgs *c) {
2557         int i;
2558
2559         if ( loglevel_ops == NULL ) {
2560                 loglevel_init();
2561         }
2562
2563         if (c->op == SLAP_CONFIG_EMIT) {
2564                 /* Get default or commandline slapd setting */
2565                 if ( ldap_syslog && !config_syslog )
2566                         config_syslog = ldap_syslog;
2567                 return loglevel2bvarray( config_syslog, &c->rvalue_vals );
2568
2569         } else if ( c->op == LDAP_MOD_DELETE ) {
2570                 if ( !c->line ) {
2571                         config_syslog = 0;
2572                 } else {
2573                         int level = verb_to_mask( c->line, loglevel_ops );
2574                         config_syslog ^= level;
2575                 }
2576                 if ( slapMode & SLAP_SERVER_MODE ) {
2577                         ldap_syslog = config_syslog;
2578                 }
2579                 return 0;
2580         }
2581
2582         for( i=1; i < c->argc; i++ ) {
2583                 int     level;
2584
2585                 if ( isdigit((unsigned char)c->argv[i][0]) || c->argv[i][0] == '-' ) {
2586                         if( lutil_atoi( &level, c->argv[i] ) != 0 ) {
2587                                 snprintf( c->msg, sizeof( c->msg ), "<%s> unable to parse level", c->argv[0] );
2588                                 Debug( LDAP_DEBUG_ANY, "%s: %s \"%s\"\n",
2589                                         c->log, c->msg, c->argv[i]);
2590                                 return( 1 );
2591                         }
2592                 } else {
2593                         if ( str2loglevel( c->argv[i], &level ) ) {
2594                                 snprintf( c->msg, sizeof( c->msg ), "<%s> unknown level", c->argv[0] );
2595                                 Debug( LDAP_DEBUG_ANY, "%s: %s \"%s\"\n",
2596                                         c->log, c->msg, c->argv[i]);
2597                                 return( 1 );
2598                         }
2599                 }
2600                 /* Explicitly setting a zero clears all the levels */
2601                 if ( level )
2602                         config_syslog |= level;
2603                 else
2604                         config_syslog = 0;
2605         }
2606         if ( slapMode & SLAP_SERVER_MODE ) {
2607                 ldap_syslog = config_syslog;
2608         }
2609         return(0);
2610 }
2611
2612 static int
2613 config_referral(ConfigArgs *c) {
2614         struct berval val;
2615         if (c->op == SLAP_CONFIG_EMIT) {
2616                 if ( default_referral ) {
2617                         value_add( &c->rvalue_vals, default_referral );
2618                         return 0;
2619                 } else {
2620                         return 1;
2621                 }
2622         } else if ( c->op == LDAP_MOD_DELETE ) {
2623                 if ( c->valx < 0 ) {
2624                         ber_bvarray_free( default_referral );
2625                         default_referral = NULL;
2626                 } else {
2627                         int i = c->valx;
2628                         ch_free( default_referral[i].bv_val );
2629                         for (; default_referral[i].bv_val; i++ )
2630                                 default_referral[i] = default_referral[i+1];
2631                 }
2632                 return 0;
2633         }
2634         if(validate_global_referral(c->argv[1])) {
2635                 snprintf( c->msg, sizeof( c->msg ), "<%s> invalid URL", c->argv[0] );
2636                 Debug(LDAP_DEBUG_ANY, "%s: %s (%s)\n",
2637                         c->log, c->msg, c->argv[1]);
2638                 return(1);
2639         }
2640
2641         ber_str2bv(c->argv[1], 0, 0, &val);
2642         if(value_add_one(&default_referral, &val)) return(LDAP_OTHER);
2643         return(0);
2644 }
2645
2646 static struct {
2647         struct berval key;
2648         int off;
2649 } sec_keys[] = {
2650         { BER_BVC("ssf="), offsetof(slap_ssf_set_t, sss_ssf) },
2651         { BER_BVC("transport="), offsetof(slap_ssf_set_t, sss_transport) },
2652         { BER_BVC("tls="), offsetof(slap_ssf_set_t, sss_tls) },
2653         { BER_BVC("sasl="), offsetof(slap_ssf_set_t, sss_sasl) },
2654         { BER_BVC("update_ssf="), offsetof(slap_ssf_set_t, sss_update_ssf) },
2655         { BER_BVC("update_transport="), offsetof(slap_ssf_set_t, sss_update_transport) },
2656         { BER_BVC("update_tls="), offsetof(slap_ssf_set_t, sss_update_tls) },
2657         { BER_BVC("update_sasl="), offsetof(slap_ssf_set_t, sss_update_sasl) },
2658         { BER_BVC("simple_bind="), offsetof(slap_ssf_set_t, sss_simple_bind) },
2659         { BER_BVNULL, 0 }
2660 };
2661
2662 static int
2663 config_security(ConfigArgs *c) {
2664         slap_ssf_set_t *set = &c->be->be_ssf_set;
2665         char *next;
2666         int i, j;
2667         if (c->op == SLAP_CONFIG_EMIT) {
2668                 char numbuf[32];
2669                 struct berval bv;
2670                 slap_ssf_t *tgt;
2671                 int rc = 1;
2672
2673                 for (i=0; !BER_BVISNULL( &sec_keys[i].key ); i++) {
2674                         tgt = (slap_ssf_t *)((char *)set + sec_keys[i].off);
2675                         if ( *tgt ) {
2676                                 rc = 0;
2677                                 bv.bv_len = snprintf( numbuf, sizeof( numbuf ), "%u", *tgt );
2678                                 if ( bv.bv_len >= sizeof( numbuf ) ) {
2679                                         ber_bvarray_free_x( c->rvalue_vals, NULL );
2680                                         c->rvalue_vals = NULL;
2681                                         rc = 1;
2682                                         break;
2683                                 }
2684                                 bv.bv_len += sec_keys[i].key.bv_len;
2685                                 bv.bv_val = ch_malloc( bv.bv_len + 1);
2686                                 next = lutil_strcopy( bv.bv_val, sec_keys[i].key.bv_val );
2687                                 strcpy( next, numbuf );
2688                                 ber_bvarray_add( &c->rvalue_vals, &bv );
2689                         }
2690                 }
2691                 return rc;
2692         }
2693         for(i = 1; i < c->argc; i++) {
2694                 slap_ssf_t *tgt = NULL;
2695                 char *src = NULL;
2696                 for ( j=0; !BER_BVISNULL( &sec_keys[j].key ); j++ ) {
2697                         if(!strncasecmp(c->argv[i], sec_keys[j].key.bv_val,
2698                                 sec_keys[j].key.bv_len)) {
2699                                 src = c->argv[i] + sec_keys[j].key.bv_len;
2700                                 tgt = (slap_ssf_t *)((char *)set + sec_keys[j].off);
2701                                 break;
2702                         }
2703                 }
2704                 if ( !tgt ) {
2705                         snprintf( c->msg, sizeof( c->msg ), "<%s> unknown factor", c->argv[0] );
2706                         Debug(LDAP_DEBUG_ANY, "%s: %s %s\n",
2707                                 c->log, c->msg, c->argv[i]);
2708                         return(1);
2709                 }
2710
2711                 if ( lutil_atou( tgt, src ) != 0 ) {
2712                         snprintf( c->msg, sizeof( c->msg ), "<%s> unable to parse factor", c->argv[0] );
2713                         Debug(LDAP_DEBUG_ANY, "%s: %s \"%s\"\n",
2714                                 c->log, c->msg, c->argv[i]);
2715                         return(1);
2716                 }
2717         }
2718         return(0);
2719 }
2720
2721 char *
2722 anlist_unparse( AttributeName *an, char *ptr, ber_len_t buflen ) {
2723         int comma = 0;
2724         char *start = ptr;
2725
2726         for (; !BER_BVISNULL( &an->an_name ); an++) {
2727                 /* if buflen == 0, assume the buffer size has been 
2728                  * already checked otherwise */
2729                 if ( buflen > 0 && buflen - ( ptr - start ) < comma + an->an_name.bv_len ) return NULL;
2730                 if ( comma ) *ptr++ = ',';
2731                 ptr = lutil_strcopy( ptr, an->an_name.bv_val );
2732                 comma = 1;
2733         }
2734         return ptr;
2735 }
2736
2737 static int
2738 config_updatedn(ConfigArgs *c) {
2739         if (c->op == SLAP_CONFIG_EMIT) {
2740                 if (!BER_BVISEMPTY(&c->be->be_update_ndn)) {
2741                         value_add_one(&c->rvalue_vals, &c->be->be_update_ndn);
2742                         value_add_one(&c->rvalue_nvals, &c->be->be_update_ndn);
2743                         return 0;
2744                 }
2745                 return 1;
2746         } else if ( c->op == LDAP_MOD_DELETE ) {
2747                 ch_free( c->be->be_update_ndn.bv_val );
2748                 BER_BVZERO( &c->be->be_update_ndn );
2749                 SLAP_DBFLAGS(c->be) ^= (SLAP_DBFLAG_SHADOW | SLAP_DBFLAG_SLURP_SHADOW);
2750                 return 0;
2751         }
2752         if(SLAP_SHADOW(c->be)) {
2753                 snprintf( c->msg, sizeof( c->msg ), "<%s> database already shadowed", c->argv[0] );
2754                 Debug(LDAP_DEBUG_ANY, "%s: %s\n",
2755                         c->log, c->msg, 0);
2756                 return(1);
2757         }
2758
2759         ber_memfree_x( c->value_dn.bv_val, NULL );
2760         if ( !BER_BVISNULL( &c->be->be_update_ndn ) ) {
2761                 ber_memfree_x( c->be->be_update_ndn.bv_val, NULL );
2762         }
2763         c->be->be_update_ndn = c->value_ndn;
2764         BER_BVZERO( &c->value_dn );
2765         BER_BVZERO( &c->value_ndn );
2766
2767         return config_slurp_shadow( c );
2768 }
2769
2770 int
2771 config_shadow( ConfigArgs *c, int flag )
2772 {
2773         char    *notallowed = NULL;
2774
2775         if ( c->be == frontendDB ) {
2776                 notallowed = "frontend";
2777
2778         } else if ( SLAP_MONITOR(c->be) ) {
2779                 notallowed = "monitor";
2780         }
2781
2782         if ( notallowed != NULL ) {
2783                 Debug( LDAP_DEBUG_ANY, "%s: %s database cannot be shadow.\n", c->log, notallowed, 0 );
2784                 return 1;
2785         }
2786
2787         SLAP_DBFLAGS(c->be) |= (SLAP_DBFLAG_SHADOW | SLAP_DBFLAG_SINGLE_SHADOW | flag);
2788
2789         return 0;
2790 }
2791
2792 static int
2793 config_updateref(ConfigArgs *c) {
2794         struct berval val;
2795         if (c->op == SLAP_CONFIG_EMIT) {
2796                 if ( c->be->be_update_refs ) {
2797                         value_add( &c->rvalue_vals, c->be->be_update_refs );
2798                         return 0;
2799                 } else {
2800                         return 1;
2801                 }
2802         } else if ( c->op == LDAP_MOD_DELETE ) {
2803                 if ( c->valx < 0 ) {
2804                         ber_bvarray_free( c->be->be_update_refs );
2805                         c->be->be_update_refs = NULL;
2806                 } else {
2807                         int i = c->valx;
2808                         ch_free( c->be->be_update_refs[i].bv_val );
2809                         for (; c->be->be_update_refs[i].bv_val; i++)
2810                                 c->be->be_update_refs[i] = c->be->be_update_refs[i+1];
2811                 }
2812                 return 0;
2813         }
2814         if(!SLAP_SHADOW(c->be) && !c->be->be_syncinfo) {
2815                 snprintf( c->msg, sizeof( c->msg ), "<%s> must appear after syncrepl or updatedn",
2816                         c->argv[0] );
2817                 Debug(LDAP_DEBUG_ANY, "%s: %s\n",
2818                         c->log, c->msg, 0);
2819                 return(1);
2820         }
2821
2822         if(validate_global_referral(c->argv[1])) {
2823                 snprintf( c->msg, sizeof( c->msg ), "<%s> invalid URL", c->argv[0] );
2824                 Debug(LDAP_DEBUG_ANY, "%s: %s (%s)\n",
2825                         c->log, c->msg, c->argv[1]);
2826                 return(1);
2827         }
2828         ber_str2bv(c->argv[1], 0, 0, &val);
2829         if(value_add_one(&c->be->be_update_refs, &val)) return(LDAP_OTHER);
2830         return(0);
2831 }
2832
2833 static int
2834 config_obsolete(ConfigArgs *c) {
2835         if (c->op == SLAP_CONFIG_EMIT)
2836                 return 1;
2837
2838         snprintf( c->msg, sizeof( c->msg ), "<%s> keyword is obsolete (ignored)",
2839                 c->argv[0] );
2840         Debug(LDAP_DEBUG_ANY, "%s: %s\n", c->log, c->msg, 0);
2841         return(0);
2842 }
2843
2844 static int
2845 config_include(ConfigArgs *c) {
2846         int savelineno = c->lineno;
2847         int rc;
2848         ConfigFile *cf;
2849         ConfigFile *cfsave = cfn;
2850         ConfigFile *cf2 = NULL;
2851
2852         /* No dynamic config for include files */
2853         cf = ch_calloc( 1, sizeof(ConfigFile));
2854         if ( cfn->c_kids ) {
2855                 for (cf2=cfn->c_kids; cf2 && cf2->c_sibs; cf2=cf2->c_sibs) ;
2856                 cf2->c_sibs = cf;
2857         } else {
2858                 cfn->c_kids = cf;
2859         }
2860         cfn = cf;
2861         ber_str2bv( c->argv[1], 0, 1, &cf->c_file );
2862         rc = read_config_file(c->argv[1], c->depth + 1, c, config_back_cf_table);
2863         c->lineno = savelineno - 1;
2864         cfn = cfsave;
2865         if ( rc ) {
2866                 if ( cf2 ) cf2->c_sibs = NULL;
2867                 else cfn->c_kids = NULL;
2868                 ch_free( cf->c_file.bv_val );
2869                 ch_free( cf );
2870         } else {
2871                 c->private = cf;
2872         }
2873         return(rc);
2874 }
2875
2876 #ifdef HAVE_TLS
2877 static int
2878 config_tls_option(ConfigArgs *c) {
2879         int flag;
2880         LDAP *ld = slap_tls_ld;
2881         switch(c->type) {
2882         case CFG_TLS_RAND:      flag = LDAP_OPT_X_TLS_RANDOM_FILE;      ld = NULL; break;
2883         case CFG_TLS_CIPHER:    flag = LDAP_OPT_X_TLS_CIPHER_SUITE;     break;
2884         case CFG_TLS_CERT_FILE: flag = LDAP_OPT_X_TLS_CERTFILE;         break;  
2885         case CFG_TLS_CERT_KEY:  flag = LDAP_OPT_X_TLS_KEYFILE;          break;
2886         case CFG_TLS_CA_PATH:   flag = LDAP_OPT_X_TLS_CACERTDIR;        break;
2887         case CFG_TLS_CA_FILE:   flag = LDAP_OPT_X_TLS_CACERTFILE;       break;
2888         case CFG_TLS_DH_FILE:   flag = LDAP_OPT_X_TLS_DHFILE;   break;
2889 #ifdef HAVE_GNUTLS
2890         case CFG_TLS_CRL_FILE:  flag = LDAP_OPT_X_TLS_CRLFILE;  break;
2891 #endif
2892         default:                Debug(LDAP_DEBUG_ANY, "%s: "
2893                                         "unknown tls_option <0x%x>\n",
2894                                         c->log, c->type, 0);
2895                 return 1;
2896         }
2897         if (c->op == SLAP_CONFIG_EMIT) {
2898                 return ldap_pvt_tls_get_option( ld, flag, &c->value_string );
2899         } else if ( c->op == LDAP_MOD_DELETE ) {
2900                 return ldap_pvt_tls_set_option( ld, flag, NULL );
2901         }
2902         ch_free(c->value_string);
2903         return(ldap_pvt_tls_set_option(ld, flag, c->argv[1]));
2904 }
2905
2906 /* FIXME: this ought to be provided by libldap */
2907 static int
2908 config_tls_config(ConfigArgs *c) {
2909         int i, flag;
2910         switch(c->type) {
2911         case CFG_TLS_CRLCHECK:  flag = LDAP_OPT_X_TLS_CRLCHECK; break;
2912         case CFG_TLS_VERIFY:    flag = LDAP_OPT_X_TLS_REQUIRE_CERT; break;
2913         default:
2914                 Debug(LDAP_DEBUG_ANY, "%s: "
2915                                 "unknown tls_option <0x%x>\n",
2916                                 c->log, c->type, 0);
2917                 return 1;
2918         }
2919         if (c->op == SLAP_CONFIG_EMIT) {
2920                 return slap_tls_get_config( slap_tls_ld, flag, &c->value_string );
2921         } else if ( c->op == LDAP_MOD_DELETE ) {
2922                 int i = 0;
2923                 return ldap_pvt_tls_set_option( slap_tls_ld, flag, &i );
2924         }
2925         ch_free( c->value_string );
2926         if ( isdigit( (unsigned char)c->argv[1][0] ) ) {
2927                 if ( lutil_atoi( &i, c->argv[1] ) != 0 ) {
2928                         Debug(LDAP_DEBUG_ANY, "%s: "
2929                                 "unable to parse %s \"%s\"\n",
2930                                 c->log, c->argv[0], c->argv[1] );
2931                         return 1;
2932                 }
2933                 return(ldap_pvt_tls_set_option(slap_tls_ld, flag, &i));
2934         } else {
2935                 return(ldap_int_tls_config(slap_tls_ld, flag, c->argv[1]));
2936         }
2937 }
2938 #endif
2939
2940 static CfEntryInfo *
2941 config_find_base( CfEntryInfo *root, struct berval *dn, CfEntryInfo **last )
2942 {
2943         struct berval cdn;
2944         char *c;
2945
2946         if ( !root ) {
2947                 *last = NULL;
2948                 return NULL;
2949         }
2950
2951         if ( dn_match( &root->ce_entry->e_nname, dn ))
2952                 return root;
2953
2954         c = dn->bv_val+dn->bv_len;
2955         for (;*c != ',';c--);
2956
2957         while(root) {
2958                 *last = root;
2959                 for (--c;c>dn->bv_val && *c != ',';c--);
2960                 cdn.bv_val = c;
2961                 if ( *c == ',' )
2962                         cdn.bv_val++;
2963                 cdn.bv_len = dn->bv_len - (cdn.bv_val - dn->bv_val);
2964
2965                 root = root->ce_kids;
2966
2967                 for (;root;root=root->ce_sibs) {
2968                         if ( dn_match( &root->ce_entry->e_nname, &cdn )) {
2969                                 if ( cdn.bv_val == dn->bv_val ) {
2970                                         return root;
2971                                 }
2972                                 break;
2973                         }
2974                 }
2975         }
2976         return root;
2977 }
2978
2979 typedef struct setup_cookie {
2980         CfBackInfo *cfb;
2981         ConfigArgs *ca;
2982         Entry *frontend;
2983         Entry *config;
2984         int     got_frontend;
2985         int got_config;
2986 } setup_cookie;
2987
2988 static int
2989 config_ldif_resp( Operation *op, SlapReply *rs )
2990 {
2991         if ( rs->sr_type == REP_SEARCH ) {
2992                 setup_cookie *sc = op->o_callback->sc_private;
2993
2994                 sc->cfb->cb_got_ldif = 1;
2995                 /* Does the frontend exist? */
2996                 if ( !sc->got_frontend ) {
2997                         if ( !strncmp( rs->sr_entry->e_nname.bv_val,
2998                                 "olcDatabase", STRLENOF( "olcDatabase" ))) {
2999                                 if ( strncmp( rs->sr_entry->e_nname.bv_val +
3000                                         STRLENOF( "olcDatabase" ), "={-1}frontend",
3001                                         STRLENOF( "={-1}frontend" ))) {
3002                                         struct berval rdn;
3003                                         int i = op->o_noop;
3004                                         sc->ca->be = frontendDB;
3005                                         sc->ca->bi = frontendDB->bd_info;
3006                                         frontendDB->be_cf_ocs = &CFOC_FRONTEND;
3007                                         rdn.bv_val = sc->ca->log;
3008                                         rdn.bv_len = snprintf(rdn.bv_val, sizeof( sc->ca->log ),
3009                                                 "%s=" SLAP_X_ORDERED_FMT "%s",
3010                                                 cfAd_database->ad_cname.bv_val, -1,
3011                                                 sc->ca->bi->bi_type);
3012                                         op->o_noop = 1;
3013                                         sc->frontend = config_build_entry( op, rs,
3014                                                 sc->cfb->cb_root, sc->ca, &rdn, &CFOC_DATABASE,
3015                                                 sc->ca->be->be_cf_ocs );
3016                                         op->o_noop = i;
3017                                         sc->got_frontend++;
3018                                 } else {
3019                                         sc->got_frontend++;
3020                                         goto ok;
3021                                 }
3022                         }
3023                 }
3024                 /* Does the configDB exist? */
3025                 if ( sc->got_frontend && !sc->got_config &&
3026                         !strncmp( rs->sr_entry->e_nname.bv_val,
3027                         "olcDatabase", STRLENOF( "olcDatabase" ))) {
3028                         if ( strncmp( rs->sr_entry->e_nname.bv_val +
3029                                 STRLENOF( "olcDatabase" ), "={0}config",
3030                                 STRLENOF( "={0}config" ))) {
3031                                 struct berval rdn;
3032                                 int i = op->o_noop;
3033                                 sc->ca->be = LDAP_STAILQ_FIRST( &backendDB );
3034                                 sc->ca->bi = sc->ca->be->bd_info;
3035                                 rdn.bv_val = sc->ca->log;
3036                                 rdn.bv_len = snprintf(rdn.bv_val, sizeof( sc->ca->log ),
3037                                         "%s=" SLAP_X_ORDERED_FMT "%s",
3038                                         cfAd_database->ad_cname.bv_val, 0,
3039                                         sc->ca->bi->bi_type);
3040                                 op->o_noop = 1;
3041                                 sc->config = config_build_entry( op, rs, sc->cfb->cb_root,
3042                                         sc->ca, &rdn, &CFOC_DATABASE, sc->ca->be->be_cf_ocs );
3043                                 op->o_noop = i;
3044                         }
3045                         sc->got_config++;
3046                 }
3047
3048 ok:
3049                 rs->sr_err = config_add_internal( sc->cfb, rs->sr_entry, sc->ca, NULL, NULL, NULL );
3050                 if ( rs->sr_err != LDAP_SUCCESS ) {
3051                         Debug( LDAP_DEBUG_ANY, "config error processing %s: %s\n",
3052                                 rs->sr_entry->e_name.bv_val, sc->ca->msg, 0 );
3053                 }
3054         }
3055         return rs->sr_err;
3056 }
3057
3058 /* Configure and read the underlying back-ldif store */
3059 static int
3060 config_setup_ldif( BackendDB *be, const char *dir, int readit ) {
3061         CfBackInfo *cfb = be->be_private;
3062         ConfigArgs c = {0};
3063         ConfigTable *ct;
3064         char *argv[3];
3065         int rc = 0;
3066         setup_cookie sc;
3067         slap_callback cb = { NULL, config_ldif_resp, NULL, NULL };
3068         Connection conn = {0};
3069         OperationBuffer opbuf;
3070         Operation *op;
3071         SlapReply rs = {REP_RESULT};
3072         Filter filter = { LDAP_FILTER_PRESENT };
3073         struct berval filterstr = BER_BVC("(objectclass=*)");
3074         struct stat st;
3075
3076         /* Is the config directory available? */
3077         if ( stat( dir, &st ) < 0 ) {
3078                 /* No, so don't bother using the backing store.
3079                  * All changes will be in-memory only.
3080                  */
3081                 return 0;
3082         }
3083                 
3084         cfb->cb_db.bd_info = backend_info( "ldif" );
3085         if ( !cfb->cb_db.bd_info )
3086                 return 0;       /* FIXME: eventually this will be a fatal error */
3087
3088         if ( backend_db_init( "ldif", &cfb->cb_db, -1, NULL ) == NULL )
3089                 return 1;
3090
3091         cfb->cb_db.be_suffix = be->be_suffix;
3092         cfb->cb_db.be_nsuffix = be->be_nsuffix;
3093
3094         /* The suffix is always "cn=config". The underlying DB's rootdn
3095          * is always the same as the suffix.
3096          */
3097         cfb->cb_db.be_rootdn = be->be_suffix[0];
3098         cfb->cb_db.be_rootndn = be->be_nsuffix[0];
3099
3100         ber_str2bv( dir, 0, 1, &cfdir );
3101
3102         c.be = &cfb->cb_db;
3103         c.fname = "slapd";
3104         c.argc = 2;
3105         argv[0] = "directory";
3106         argv[1] = (char *)dir;
3107         argv[2] = NULL;
3108         c.argv = argv;
3109         c.table = Cft_Database;
3110
3111         ct = config_find_keyword( c.be->be_cf_ocs->co_table, &c );
3112         if ( !ct )
3113                 return 1;
3114
3115         if ( config_add_vals( ct, &c ))
3116                 return 1;
3117
3118         if ( backend_startup_one( &cfb->cb_db, NULL ))
3119                 return 1;
3120
3121         if ( readit ) {
3122                 void *thrctx = ldap_pvt_thread_pool_context();
3123                 int prev_DN_strict;
3124
3125                 connection_fake_init( &conn, &opbuf, thrctx );
3126                 op = &opbuf.ob_op;
3127
3128                 filter.f_desc = slap_schema.si_ad_objectClass;
3129
3130                 op->o_tag = LDAP_REQ_SEARCH;
3131
3132                 op->ors_filter = &filter;
3133                 op->ors_filterstr = filterstr;
3134                 op->ors_scope = LDAP_SCOPE_SUBTREE;
3135
3136                 op->o_dn = c.be->be_rootdn;
3137                 op->o_ndn = c.be->be_rootndn;
3138
3139                 op->o_req_dn = be->be_suffix[0];
3140                 op->o_req_ndn = be->be_nsuffix[0];
3141
3142                 op->ors_tlimit = SLAP_NO_LIMIT;
3143                 op->ors_slimit = SLAP_NO_LIMIT;
3144
3145                 op->ors_attrs = slap_anlist_all_attributes;
3146                 op->ors_attrsonly = 0;
3147
3148                 op->o_callback = &cb;
3149                 sc.cfb = cfb;
3150                 sc.ca = &c;
3151                 cb.sc_private = &sc;
3152                 sc.got_frontend = 0;
3153                 sc.got_config = 0;
3154                 sc.frontend = NULL;
3155                 sc.config = NULL;
3156
3157                 op->o_bd = &cfb->cb_db;
3158                 
3159                 /* Allow unknown attrs in DNs */
3160                 prev_DN_strict = slap_DN_strict;
3161                 slap_DN_strict = 0;
3162
3163                 rc = op->o_bd->be_search( op, &rs );
3164
3165                 /* Restore normal DN validation */
3166                 slap_DN_strict = prev_DN_strict;
3167
3168                 op->o_tag = LDAP_REQ_ADD;
3169                 if ( rc == LDAP_SUCCESS && sc.frontend ) {
3170                         op->ora_e = sc.frontend;
3171                         rc = op->o_bd->be_add( op, &rs );
3172                 }
3173                 if ( rc == LDAP_SUCCESS && sc.config ) {
3174                         op->ora_e = sc.config;
3175                         rc = op->o_bd->be_add( op, &rs );
3176                 }
3177                 ldap_pvt_thread_pool_context_reset( thrctx );
3178         }
3179
3180         /* ITS#4194 - only use if it's present, or we're converting. */
3181         if ( !readit || rc == LDAP_SUCCESS )
3182                 cfb->cb_use_ldif = 1;
3183
3184         return rc;
3185 }
3186
3187 static int
3188 CfOc_cmp( const void *c1, const void *c2 ) {
3189         const ConfigOCs *co1 = c1;
3190         const ConfigOCs *co2 = c2;
3191
3192         return ber_bvcmp( co1->co_name, co2->co_name );
3193 }
3194
3195 int
3196 config_register_schema(ConfigTable *ct, ConfigOCs *ocs) {
3197         int i;
3198
3199         i = init_config_attrs( ct );
3200         if ( i ) return i;
3201
3202         /* set up the objectclasses */
3203         i = init_config_ocs( ocs );
3204         if ( i ) return i;
3205
3206         for (i=0; ocs[i].co_def; i++) {
3207                 if ( ocs[i].co_oc ) {
3208                         ocs[i].co_name = &ocs[i].co_oc->soc_cname;
3209                         if ( !ocs[i].co_table )
3210                                 ocs[i].co_table = ct;
3211                         avl_insert( &CfOcTree, &ocs[i], CfOc_cmp, avl_dup_error );
3212                 }
3213         }
3214         return 0;
3215 }
3216
3217 int
3218 read_config(const char *fname, const char *dir) {
3219         BackendDB *be;
3220         CfBackInfo *cfb;
3221         const char *cfdir, *cfname;
3222         int rc;
3223
3224         /* Setup the config backend */
3225         be = backend_db_init( "config", NULL, 0, NULL );
3226         if ( !be )
3227                 return 1;
3228
3229         cfb = be->be_private;
3230         be->be_dfltaccess = ACL_NONE;
3231
3232         /* If no .conf, or a dir was specified, setup the dir */
3233         if ( !fname || dir ) {
3234                 if ( dir ) {
3235                         /* If explicitly given, check for existence */
3236                         struct stat st;
3237
3238                         if ( stat( dir, &st ) < 0 ) {
3239                                 Debug( LDAP_DEBUG_ANY,
3240                                         "invalid config directory %s, error %d\n",
3241                                                 dir, errno, 0 );
3242                                 return 1;
3243                         }
3244                         cfdir = dir;
3245                 } else {
3246                         cfdir = SLAPD_DEFAULT_CONFIGDIR;
3247                 }
3248                 /* if fname is defaulted, try reading .d */
3249                 rc = config_setup_ldif( be, cfdir, !fname );
3250
3251                 if ( rc ) {
3252                         /* It may be OK if the base object doesn't exist yet. */
3253                         if ( rc != LDAP_NO_SUCH_OBJECT )
3254                                 return 1;
3255                         /* ITS#4194: But if dir was specified and no fname,
3256                          * then we were supposed to read the dir. Unless we're
3257                          * trying to slapadd the dir...
3258                          */
3259                         if ( dir && !fname ) {
3260                                 if ( slapMode & (SLAP_SERVER_MODE|SLAP_TOOL_READMAIN|SLAP_TOOL_READONLY))
3261                                         return 1;
3262                                 /* Assume it's slapadd with a config dir, let it continue */
3263                                 rc = 0;
3264                                 cfb->cb_got_ldif = 1;
3265                                 cfb->cb_use_ldif = 1;
3266                                 goto done;
3267                         }
3268                 }
3269
3270                 /* If we read the config from back-ldif, nothing to do here */
3271                 if ( cfb->cb_got_ldif ) {
3272                         rc = 0;
3273                         goto done;
3274                 }
3275         }
3276
3277         if ( fname )
3278                 cfname = fname;
3279         else
3280                 cfname = SLAPD_DEFAULT_CONFIGFILE;
3281
3282         rc = read_config_file(cfname, 0, NULL, config_back_cf_table);
3283
3284         if ( rc == 0 )
3285                 ber_str2bv( cfname, 0, 1, &cfb->cb_config->c_file );
3286
3287 done:
3288         if ( rc == 0 && BER_BVISNULL( &frontendDB->be_schemadn ) ) {
3289                 ber_str2bv( SLAPD_SCHEMA_DN, STRLENOF( SLAPD_SCHEMA_DN ), 1,
3290                         &frontendDB->be_schemadn );
3291                 rc = dnNormalize( 0, NULL, NULL, &frontendDB->be_schemadn, &frontendDB->be_schemandn, NULL );
3292                 if ( rc != LDAP_SUCCESS ) {
3293                         Debug(LDAP_DEBUG_ANY, "read_config: "
3294                                 "unable to normalize default schema DN \"%s\"\n",
3295                                 frontendDB->be_schemadn.bv_val, 0, 0 );
3296                         /* must not happen */
3297                         assert( 0 );
3298                 }
3299         }
3300         return rc;
3301 }
3302
3303 static int
3304 config_back_bind( Operation *op, SlapReply *rs )
3305 {
3306         if ( op->orb_method == LDAP_AUTH_SIMPLE && be_isroot_pw( op )) {
3307                 ber_dupbv( &op->orb_edn, be_root_dn( op->o_bd ));
3308                 /* frontend sends result */
3309                 return LDAP_SUCCESS;
3310         }
3311
3312         rs->sr_err = LDAP_INVALID_CREDENTIALS;
3313         send_ldap_result( op, rs );
3314
3315         return rs->sr_err;
3316 }
3317
3318 static int
3319 config_send( Operation *op, SlapReply *rs, CfEntryInfo *ce, int depth )
3320 {
3321         int rc = 0;
3322
3323         if ( test_filter( op, ce->ce_entry, op->ors_filter ) == LDAP_COMPARE_TRUE )
3324         {
3325                 rs->sr_attrs = op->ors_attrs;
3326                 rs->sr_entry = ce->ce_entry;
3327                 rs->sr_flags = 0;
3328                 rc = send_search_entry( op, rs );
3329         }
3330         if ( op->ors_scope == LDAP_SCOPE_SUBTREE ) {
3331                 if ( ce->ce_kids ) {
3332                         rc = config_send( op, rs, ce->ce_kids, 1 );
3333                         if ( rc ) return rc;
3334                 }
3335                 if ( depth ) {
3336                         for (ce=ce->ce_sibs; ce; ce=ce->ce_sibs) {
3337                                 rc = config_send( op, rs, ce, 0 );
3338                                 if ( rc ) break;
3339                         }
3340                 }
3341         }
3342         return rc;
3343 }
3344
3345 static ConfigTable *
3346 config_find_table( ConfigOCs **colst, int nocs, AttributeDescription *ad,
3347         ConfigArgs *ca )
3348 {
3349         int i, j;
3350
3351         for (j=0; j<nocs; j++) {
3352                 for (i=0; colst[j]->co_table[i].name; i++)
3353                         if ( colst[j]->co_table[i].ad == ad ) {
3354                                 ca->table = colst[j]->co_type;
3355                                 return &colst[j]->co_table[i];
3356                         }
3357         }
3358         return NULL;
3359 }
3360
3361 /* Sort the attributes of the entry according to the order defined
3362  * in the objectclass, with required attributes occurring before
3363  * allowed attributes. For any attributes with sequencing dependencies
3364  * (e.g., rootDN must be defined after suffix) the objectclass must
3365  * list the attributes in the desired sequence.
3366  */
3367 static void
3368 sort_attrs( Entry *e, ConfigOCs **colst, int nocs )
3369 {
3370         Attribute *a, *head = NULL, *tail = NULL, **prev;
3371         int i, j;
3372
3373         for (i=0; i<nocs; i++) {
3374                 if ( colst[i]->co_oc->soc_required ) {
3375                         AttributeType **at = colst[i]->co_oc->soc_required;
3376                         for (j=0; at[j]; j++) {
3377                                 for (a=e->e_attrs, prev=&e->e_attrs; a;
3378                                         prev = &(*prev)->a_next, a=a->a_next) {
3379                                         if ( a->a_desc == at[j]->sat_ad ) {
3380                                                 *prev = a->a_next;
3381                                                 if (!head) {
3382                                                         head = a;
3383                                                         tail = a;
3384                                                 } else {
3385                                                         tail->a_next = a;
3386                                                         tail = a;
3387                                                 }
3388                                                 break;
3389                                         }
3390                                 }
3391                         }
3392                 }
3393                 if ( colst[i]->co_oc->soc_allowed ) {
3394                         AttributeType **at = colst[i]->co_oc->soc_allowed;
3395                         for (j=0; at[j]; j++) {
3396                                 for (a=e->e_attrs, prev=&e->e_attrs; a;
3397                                         prev = &(*prev)->a_next, a=a->a_next) {
3398                                         if ( a->a_desc == at[j]->sat_ad ) {
3399                                                 *prev = a->a_next;
3400                                                 if (!head) {
3401                                                         head = a;
3402                                                         tail = a;
3403                                                 } else {
3404                                                         tail->a_next = a;
3405                                                         tail = a;
3406                                                 }
3407                                                 break;
3408                                         }
3409                                 }
3410                         }
3411                 }
3412         }
3413         if ( tail ) {
3414                 tail->a_next = e->e_attrs;
3415                 e->e_attrs = head;
3416         }
3417 }
3418
3419 static int
3420 check_vals( ConfigTable *ct, ConfigArgs *ca, void *ptr, int isAttr )
3421 {
3422         Attribute *a = NULL;
3423         AttributeDescription *ad;
3424         BerVarray vals;
3425
3426         int i, rc = 0;
3427
3428         if ( isAttr ) {
3429                 a = ptr;
3430                 ad = a->a_desc;
3431                 vals = a->a_vals;
3432         } else {
3433                 Modifications *ml = ptr;
3434                 ad = ml->sml_desc;
3435                 vals = ml->sml_values;
3436         }
3437
3438         if ( a && ( ad->ad_type->sat_flags & SLAP_AT_ORDERED_VAL )) {
3439                 rc = ordered_value_sort( a, 1 );
3440                 if ( rc ) {
3441                         snprintf(ca->msg, sizeof( ca->msg ), "ordered_value_sort failed on attr %s\n",
3442                                 ad->ad_cname.bv_val );
3443                         return rc;
3444                 }
3445         }
3446         for ( i=0; vals[i].bv_val; i++ ) {
3447                 ca->line = vals[i].bv_val;
3448                 if (( ad->ad_type->sat_flags & SLAP_AT_ORDERED_VAL ) &&
3449                         ca->line[0] == '{' ) {
3450                         char *idx = strchr( ca->line, '}' );
3451                         if ( idx ) ca->line = idx+1;
3452                 }
3453                 rc = config_parse_vals( ct, ca, i );
3454                 if ( rc ) {
3455                         break;
3456                 }
3457         }
3458         return rc;
3459 }
3460
3461 static int
3462 config_rename_attr( SlapReply *rs, Entry *e, struct berval *rdn,
3463         Attribute **at )
3464 {
3465         struct berval rtype, rval;
3466         Attribute *a;
3467         AttributeDescription *ad = NULL;
3468
3469         dnRdn( &e->e_name, rdn );
3470         rval.bv_val = strchr(rdn->bv_val, '=' ) + 1;
3471         rval.bv_len = rdn->bv_len - (rval.bv_val - rdn->bv_val);
3472         rtype.bv_val = rdn->bv_val;
3473         rtype.bv_len = rval.bv_val - rtype.bv_val - 1;
3474
3475         /* Find attr */
3476         slap_bv2ad( &rtype, &ad, &rs->sr_text );
3477         a = attr_find( e->e_attrs, ad );
3478         if (!a ) return LDAP_NAMING_VIOLATION;
3479         *at = a;
3480
3481         return 0;
3482 }
3483
3484 static void
3485 config_rename_kids( CfEntryInfo *ce )
3486 {
3487         CfEntryInfo *ce2;
3488         struct berval rdn, nrdn;
3489
3490         for (ce2 = ce->ce_kids; ce2; ce2 = ce2->ce_sibs) {
3491                 dnRdn ( &ce2->ce_entry->e_name, &rdn );
3492                 dnRdn ( &ce2->ce_entry->e_nname, &nrdn );
3493                 free( ce2->ce_entry->e_name.bv_val );
3494                 free( ce2->ce_entry->e_nname.bv_val );
3495                 build_new_dn( &ce2->ce_entry->e_name, &ce->ce_entry->e_name,
3496                         &rdn, NULL );
3497                 build_new_dn( &ce2->ce_entry->e_nname, &ce->ce_entry->e_nname,
3498                         &nrdn, NULL );
3499                 config_rename_kids( ce2 );
3500         }
3501 }
3502
3503 static int
3504 config_rename_one( Operation *op, SlapReply *rs, Entry *e,
3505         CfEntryInfo *parent, Attribute *a, struct berval *newrdn,
3506         struct berval *nnewrdn, int use_ldif )
3507 {
3508         char *ptr1;
3509         int rc = 0;
3510         struct berval odn, ondn;
3511
3512         odn = e->e_name;
3513         ondn = e->e_nname;
3514         build_new_dn( &e->e_name, &parent->ce_entry->e_name, newrdn, NULL );
3515         build_new_dn( &e->e_nname, &parent->ce_entry->e_nname, nnewrdn, NULL );
3516
3517         /* Replace attr */
3518         free( a->a_vals[0].bv_val );
3519         ptr1 = strchr( newrdn->bv_val, '=' ) + 1;
3520         a->a_vals[0].bv_len = newrdn->bv_len - (ptr1 - newrdn->bv_val);
3521         a->a_vals[0].bv_val = ch_malloc( a->a_vals[0].bv_len + 1 );
3522         strcpy( a->a_vals[0].bv_val, ptr1 );
3523
3524         if ( a->a_nvals != a->a_vals ) {
3525                 free( a->a_nvals[0].bv_val );
3526                 ptr1 = strchr( nnewrdn->bv_val, '=' ) + 1;
3527                 a->a_nvals[0].bv_len = nnewrdn->bv_len - (ptr1 - nnewrdn->bv_val);
3528                 a->a_nvals[0].bv_val = ch_malloc( a->a_nvals[0].bv_len + 1 );
3529                 strcpy( a->a_nvals[0].bv_val, ptr1 );
3530         }
3531         if ( use_ldif ) {
3532                 CfBackInfo *cfb = (CfBackInfo *)op->o_bd->be_private;
3533                 BackendDB *be = op->o_bd;
3534                 slap_callback sc = { NULL, slap_null_cb, NULL, NULL }, *scp;
3535                 struct berval dn, ndn, xdn, xndn;
3536
3537                 op->o_bd = &cfb->cb_db;
3538
3539                 /* Save current rootdn; use the underlying DB's rootdn */
3540                 dn = op->o_dn;
3541                 ndn = op->o_ndn;
3542                 xdn = op->o_req_dn;
3543                 xndn = op->o_req_ndn;
3544                 op->o_dn = op->o_bd->be_rootdn;
3545                 op->o_ndn = op->o_bd->be_rootndn;
3546                 op->o_req_dn = odn;
3547                 op->o_req_ndn = ondn;
3548
3549                 scp = op->o_callback;
3550                 op->o_callback = &sc;
3551                 op->orr_newrdn = *newrdn;
3552                 op->orr_nnewrdn = *nnewrdn;
3553                 op->orr_newSup = NULL;
3554                 op->orr_nnewSup = NULL;
3555                 op->orr_deleteoldrdn = 1;
3556                 op->orr_modlist = NULL;
3557                 slap_modrdn2mods( op, rs );
3558                 slap_mods_opattrs( op, &op->orr_modlist, 1 );
3559                 rc = op->o_bd->be_modrdn( op, rs );
3560                 slap_mods_free( op->orr_modlist, 1 );
3561
3562                 op->o_bd = be;
3563                 op->o_callback = scp;
3564                 op->o_dn = dn;
3565                 op->o_ndn = ndn;
3566                 op->o_req_dn = xdn;
3567                 op->o_req_ndn = xndn;
3568         }
3569         free( odn.bv_val );
3570         free( ondn.bv_val );
3571         if ( e->e_private )
3572                 config_rename_kids( e->e_private );
3573         return rc;
3574 }
3575
3576 static int
3577 config_renumber_one( Operation *op, SlapReply *rs, CfEntryInfo *parent, 
3578         Entry *e, int idx, int tailindex, int use_ldif )
3579 {
3580         struct berval ival, newrdn, nnewrdn;
3581         struct berval rdn;
3582         Attribute *a;
3583         char ibuf[32], *ptr1, *ptr2 = NULL;
3584         int rc = 0;
3585
3586         rc = config_rename_attr( rs, e, &rdn, &a );
3587         if ( rc ) return rc;
3588
3589         ival.bv_val = ibuf;
3590         ival.bv_len = snprintf( ibuf, sizeof( ibuf ), SLAP_X_ORDERED_FMT, idx );
3591         if ( ival.bv_len >= sizeof( ibuf ) ) {
3592                 return LDAP_NAMING_VIOLATION;
3593         }
3594         
3595         newrdn.bv_len = rdn.bv_len + ival.bv_len;
3596         newrdn.bv_val = ch_malloc( newrdn.bv_len+1 );
3597
3598         if ( tailindex ) {
3599                 ptr1 = lutil_strncopy( newrdn.bv_val, rdn.bv_val, rdn.bv_len );
3600                 ptr1 = lutil_strcopy( ptr1, ival.bv_val );
3601         } else {
3602                 int xlen;
3603                 ptr2 = ber_bvchr( &rdn, '}' );
3604                 if ( ptr2 ) {
3605                         ptr2++;
3606                 } else {
3607                         ptr2 = rdn.bv_val + a->a_desc->ad_cname.bv_len + 1;
3608                 }
3609                 xlen = rdn.bv_len - (ptr2 - rdn.bv_val);
3610                 ptr1 = lutil_strncopy( newrdn.bv_val, a->a_desc->ad_cname.bv_val,
3611                         a->a_desc->ad_cname.bv_len );
3612                 *ptr1++ = '=';
3613                 ptr1 = lutil_strcopy( ptr1, ival.bv_val );
3614                 ptr1 = lutil_strncopy( ptr1, ptr2, xlen );
3615                 *ptr1 = '\0';
3616         }
3617
3618         /* Do the equivalent of ModRDN */
3619         /* Replace DN / NDN */
3620         newrdn.bv_len = ptr1 - newrdn.bv_val;
3621         rdnNormalize( 0, NULL, NULL, &newrdn, &nnewrdn, NULL );
3622         rc = config_rename_one( op, rs, e, parent, a, &newrdn, &nnewrdn, use_ldif );
3623
3624         free( nnewrdn.bv_val );
3625         free( newrdn.bv_val );
3626         return rc;
3627 }
3628
3629 static int
3630 check_name_index( CfEntryInfo *parent, ConfigType ce_type, Entry *e,
3631         SlapReply *rs, int *renum, int *ibase )
3632 {
3633         CfEntryInfo *ce;
3634         int index = -1, gotindex = 0, nsibs, rc = 0;
3635         int renumber = 0, tailindex = 0, isfrontend = 0, isconfig = 0;
3636         char *ptr1, *ptr2 = NULL;
3637         struct berval rdn;
3638
3639         if ( renum ) *renum = 0;
3640
3641         /* These entries don't get indexed/renumbered */
3642         if ( ce_type == Cft_Global ) return 0;
3643         if ( ce_type == Cft_Schema && parent->ce_type == Cft_Global ) return 0;
3644
3645         if ( ce_type == Cft_Module )
3646                 tailindex = 1;
3647
3648         /* See if the rdn has an index already */
3649         dnRdn( &e->e_name, &rdn );
3650         if ( ce_type == Cft_Database ) {
3651                 if ( !strncmp( rdn.bv_val + rdn.bv_len - STRLENOF("frontend"),
3652                                 "frontend", STRLENOF("frontend") )) 
3653                         isfrontend = 1;
3654                 else if ( !strncmp( rdn.bv_val + rdn.bv_len - STRLENOF("config"),
3655                                 "config", STRLENOF("config") )) 
3656                         isconfig = 1;
3657         }
3658         ptr1 = ber_bvchr( &e->e_name, '{' );
3659         if ( ptr1 && ptr1 - e->e_name.bv_val < rdn.bv_len ) {
3660                 char    *next;
3661                 ptr2 = strchr( ptr1, '}' );
3662                 if (!ptr2 || ptr2 - e->e_name.bv_val > rdn.bv_len)
3663                         return LDAP_NAMING_VIOLATION;
3664                 if ( ptr2-ptr1 == 1)
3665                         return LDAP_NAMING_VIOLATION;
3666                 gotindex = 1;
3667                 index = strtol( ptr1 + 1, &next, 10 );
3668                 if ( next == ptr1 + 1 || next[ 0 ] != '}' ) {
3669                         return LDAP_NAMING_VIOLATION;
3670                 }
3671                 if ( index < 0 ) {
3672                         /* Special case, we allow -1 for the frontendDB */
3673                         if ( index != -1 || !isfrontend )
3674                                 return LDAP_NAMING_VIOLATION;
3675                 }
3676                 if ( isconfig && index != 0 ){
3677                         return LDAP_NAMING_VIOLATION;
3678                 }
3679         }
3680
3681         /* count related kids */
3682         for (nsibs=0, ce=parent->ce_kids; ce; ce=ce->ce_sibs) {
3683                 if ( ce->ce_type == ce_type ) nsibs++;
3684         }
3685
3686         /* account for -1 frontend */
3687         if ( ce_type == Cft_Database )
3688                 nsibs--;
3689
3690         if ( index != nsibs ) {
3691                 if ( gotindex ) {
3692                         if ( index < nsibs ) {
3693                                 if ( tailindex ) return LDAP_NAMING_VIOLATION;
3694                                 /* Siblings need to be renumbered */
3695                                 if ( index != -1 || !isfrontend )
3696                                         renumber = 1;
3697                         }
3698                 }
3699                 /* config DB is always "0" */
3700                 if ( isconfig && index == -1 ) {
3701                         index = 0;
3702                 }
3703                 if ( !isfrontend && index == -1 ) {
3704                         index = nsibs;
3705                 }
3706
3707                 /* just make index = nsibs */
3708                 if ( !renumber ) {
3709                         rc = config_renumber_one( NULL, rs, parent, e, index, tailindex, 0 );
3710                 }
3711         }
3712         if ( ibase ) *ibase = index;
3713         if ( renum ) *renum = renumber;
3714         return rc;
3715 }
3716
3717 static int
3718 count_oc( ObjectClass *oc, ConfigOCs ***copp, int *nocs )
3719 {
3720         ConfigOCs       co, *cop;
3721         ObjectClass     **sups;
3722
3723         co.co_name = &oc->soc_cname;
3724         cop = avl_find( CfOcTree, &co, CfOc_cmp );
3725         if ( cop ) {
3726                 int     i;
3727
3728                 /* check for duplicates */
3729                 for ( i = 0; i < *nocs; i++ ) {
3730                         if ( *copp && (*copp)[i] == cop ) {
3731                                 break;
3732                         }
3733                 }
3734
3735                 if ( i == *nocs ) {
3736                         ConfigOCs **tmp = ch_realloc( *copp, (*nocs + 1)*sizeof( ConfigOCs * ) );
3737                         if ( tmp == NULL ) {
3738                                 return -1;
3739                         }
3740                         *copp = tmp;
3741                         (*copp)[*nocs] = cop;
3742                         (*nocs)++;
3743                 }
3744         }
3745
3746         for ( sups = oc->soc_sups; sups && *sups; sups++ ) {
3747                 if ( count_oc( *sups, copp, nocs ) ) {
3748                         return -1;
3749                 }
3750         }
3751
3752         return 0;
3753 }
3754
3755 static ConfigOCs **
3756 count_ocs( Attribute *oc_at, int *nocs )
3757 {
3758         int             i;
3759         ConfigOCs       **colst = NULL;
3760
3761         *nocs = 0;
3762
3763         for ( i = 0; !BER_BVISNULL( &oc_at->a_nvals[i] ); i++ )
3764                 /* count attrs */ ;
3765
3766         for ( ; i--; ) {
3767                 ObjectClass     *oc = oc_bvfind( &oc_at->a_nvals[i] );
3768
3769                 assert( oc != NULL );
3770                 if ( count_oc( oc, &colst, nocs ) ) {
3771                         ch_free( colst );
3772                         return NULL;
3773                 }
3774         }
3775
3776         return colst;
3777 }
3778
3779 static int
3780 cfAddSchema( CfEntryInfo *p, Entry *e, ConfigArgs *ca )
3781 {
3782         ConfigFile *cfo;
3783
3784         /* This entry is hardcoded, don't re-parse it */
3785         if ( p->ce_type == Cft_Global ) {
3786                 cfn = p->ce_private;
3787                 ca->private = cfn;
3788                 return LDAP_COMPARE_TRUE;
3789         }
3790         if ( p->ce_type != Cft_Schema )
3791                 return LDAP_CONSTRAINT_VIOLATION;
3792
3793         cfn = ch_calloc( 1, sizeof(ConfigFile) );
3794         ca->private = cfn;
3795         cfo = p->ce_private;
3796         cfn->c_sibs = cfo->c_kids;
3797         cfo->c_kids = cfn;
3798         return LDAP_SUCCESS;
3799 }
3800
3801 static int
3802 cfAddDatabase( CfEntryInfo *p, Entry *e, struct config_args_s *ca )
3803 {
3804         if ( p->ce_type != Cft_Global ) {
3805                 return LDAP_CONSTRAINT_VIOLATION;
3806         }
3807         ca->be = frontendDB;    /* just to get past check_vals */
3808         return LDAP_SUCCESS;
3809 }
3810
3811 static int
3812 cfAddBackend( CfEntryInfo *p, Entry *e, struct config_args_s *ca )
3813 {
3814         if ( p->ce_type != Cft_Global ) {
3815                 return LDAP_CONSTRAINT_VIOLATION;
3816         }
3817         return LDAP_SUCCESS;
3818 }
3819
3820 static int
3821 cfAddModule( CfEntryInfo *p, Entry *e, struct config_args_s *ca )
3822 {
3823         if ( p->ce_type != Cft_Global ) {
3824                 return LDAP_CONSTRAINT_VIOLATION;
3825         }
3826         return LDAP_SUCCESS;
3827 }
3828
3829 static int
3830 cfAddOverlay( CfEntryInfo *p, Entry *e, struct config_args_s *ca )
3831 {
3832         if ( p->ce_type != Cft_Database ) {
3833                 return LDAP_CONSTRAINT_VIOLATION;
3834         }
3835         ca->be = p->ce_be;
3836         return LDAP_SUCCESS;
3837 }
3838
3839 static void
3840 schema_destroy_one( ConfigArgs *ca, ConfigOCs **colst, int nocs,
3841         CfEntryInfo *p )
3842 {
3843         ConfigTable *ct;
3844         ConfigFile *cfo;
3845         AttributeDescription *ad;
3846         const char *text;
3847
3848         ca->valx = -1;
3849         ca->line = NULL;
3850         if ( cfn->c_cr_head ) {
3851                 struct berval bv = BER_BVC("olcDitContentRules");
3852                 ad = NULL;
3853                 slap_bv2ad( &bv, &ad, &text );
3854                 ct = config_find_table( colst, nocs, ad, ca );
3855                 config_del_vals( ct, ca );
3856         }
3857         if ( cfn->c_oc_head ) {
3858                 struct berval bv = BER_BVC("olcObjectClasses");
3859                 ad = NULL;
3860                 slap_bv2ad( &bv, &ad, &text );
3861                 ct = config_find_table( colst, nocs, ad, ca );
3862                 config_del_vals( ct, ca );
3863         }
3864         if ( cfn->c_at_head ) {
3865                 struct berval bv = BER_BVC("olcAttributeTypes");
3866                 ad = NULL;
3867                 slap_bv2ad( &bv, &ad, &text );
3868                 ct = config_find_table( colst, nocs, ad, ca );
3869                 config_del_vals( ct, ca );
3870         }
3871         if ( cfn->c_om_head ) {
3872                 struct berval bv = BER_BVC("olcObjectIdentifier");
3873                 ad = NULL;
3874                 slap_bv2ad( &bv, &ad, &text );
3875                 ct = config_find_table( colst, nocs, ad, ca );
3876                 config_del_vals( ct, ca );
3877         }
3878         cfo = p->ce_private;
3879         cfo->c_kids = cfn->c_sibs;
3880         ch_free( cfn );
3881 }
3882
3883 static int
3884 config_add_oc( ConfigOCs **cop, CfEntryInfo *last, Entry *e, ConfigArgs *ca )
3885 {
3886         int             rc = LDAP_CONSTRAINT_VIOLATION;
3887         ObjectClass     **ocp;
3888
3889         if ( (*cop)->co_ldadd ) {
3890                 rc = (*cop)->co_ldadd( last, e, ca );
3891                 if ( rc != LDAP_CONSTRAINT_VIOLATION ) {
3892                         return rc;
3893                 }
3894         }
3895
3896         for ( ocp = (*cop)->co_oc->soc_sups; ocp && *ocp; ocp++ ) {
3897                 ConfigOCs       co = { 0 };
3898
3899                 co.co_name = &(*ocp)->soc_cname;
3900                 *cop = avl_find( CfOcTree, &co, CfOc_cmp );
3901                 if ( *cop == NULL ) {
3902                         return rc;
3903                 }
3904
3905                 rc = config_add_oc( cop, last, e, ca );
3906                 if ( rc != LDAP_CONSTRAINT_VIOLATION ) {
3907                         return rc;
3908                 }
3909         }
3910
3911         return rc;
3912 }
3913
3914 /* Parse an LDAP entry into config directives */
3915 static int
3916 config_add_internal( CfBackInfo *cfb, Entry *e, ConfigArgs *ca, SlapReply *rs,
3917         int *renum, Operation *op )
3918 {
3919         CfEntryInfo     *ce, *last = NULL;
3920         ConfigOCs       co, *coptr, **colst;
3921         Attribute       *a, *oc_at, *soc_at;
3922         int             i, ibase = -1, nocs, rc = 0;
3923         struct berval   pdn;
3924         ConfigTable     *ct;
3925         char            *ptr;
3926
3927         memset( ca, 0, sizeof(ConfigArgs));
3928
3929         /* Make sure parent exists and entry does not. But allow
3930          * Databases and Overlays to be inserted. Don't do any
3931          * auto-renumbering if manageDSAit control is present.
3932          */
3933         ce = config_find_base( cfb->cb_root, &e->e_nname, &last );
3934         if ( ce ) {
3935                 if ( ( op && op->o_managedsait ) ||
3936                         ( ce->ce_type != Cft_Database && ce->ce_type != Cft_Overlay &&
3937                           ce->ce_type != Cft_Module ) )
3938                 {
3939                         Debug( LDAP_DEBUG_TRACE, "%s: config_add_internal: "
3940                                 "DN=\"%s\" already exists\n",
3941                                 op->o_log_prefix, e->e_name.bv_val, 0 );
3942                         return LDAP_ALREADY_EXISTS;
3943                 }
3944         }
3945
3946         dnParent( &e->e_nname, &pdn );
3947
3948         /* If last is NULL, the new entry is the root/suffix entry, 
3949          * otherwise last should be the parent.
3950          */
3951         if ( last && !dn_match( &last->ce_entry->e_nname, &pdn ) ) {
3952                 if ( rs ) {
3953                         rs->sr_matched = last->ce_entry->e_name.bv_val;
3954                 }
3955                 Debug( LDAP_DEBUG_TRACE, "%s: config_add_internal: "
3956                         "DN=\"%s\" not child of DN=\"%s\"\n",
3957                         op ? op->o_log_prefix : "", e->e_name.bv_val,
3958                         last->ce_entry->e_name.bv_val );
3959                 return LDAP_NO_SUCH_OBJECT;
3960         }
3961
3962         if ( op ) {
3963                 /* No parent, must be root. This will never happen... */
3964                 if ( !last && !be_isroot( op ) && !be_shadow_update( op ) ) {
3965                         return LDAP_NO_SUCH_OBJECT;
3966                 }
3967
3968                 if ( last && !access_allowed( op, last->ce_entry,
3969                         slap_schema.si_ad_children, NULL, ACL_WADD, NULL ) )
3970                 {
3971                         Debug( LDAP_DEBUG_TRACE, "%s: config_add_internal: "
3972                                 "DN=\"%s\" no write access to \"children\" of parent\n",
3973                                 op->o_log_prefix, e->e_name.bv_val, 0 );
3974                         return LDAP_INSUFFICIENT_ACCESS;
3975                 }
3976         }
3977
3978         oc_at = attr_find( e->e_attrs, slap_schema.si_ad_objectClass );
3979         if ( !oc_at ) {
3980                 Debug( LDAP_DEBUG_TRACE, "%s: config_add_internal: "
3981                         "DN=\"%s\" no objectClass\n",
3982                         op ? op->o_log_prefix : "", e->e_name.bv_val, 0 );
3983                 return LDAP_OBJECT_CLASS_VIOLATION;
3984         }
3985
3986         soc_at = attr_find( e->e_attrs, slap_schema.si_ad_structuralObjectClass );
3987         if ( !soc_at ) {
3988                 ObjectClass     *soc = NULL;
3989                 char            textbuf[ SLAP_TEXT_BUFLEN ];
3990                 const char      *text = textbuf;
3991
3992                 /* FIXME: check result */
3993                 rc = structural_class( oc_at->a_nvals, &soc, NULL,
3994                         &text, textbuf, sizeof(textbuf), NULL );
3995                 if ( rc != LDAP_SUCCESS ) {
3996                         Debug( LDAP_DEBUG_TRACE, "%s: config_add_internal: "
3997                                 "DN=\"%s\" no structural objectClass (%s)\n",
3998                                 op ? op->o_log_prefix : "", e->e_name.bv_val, text );
3999                         return rc;
4000                 }
4001                 attr_merge_one( e, slap_schema.si_ad_structuralObjectClass, &soc->soc_cname, NULL );
4002                 soc_at = attr_find( e->e_attrs, slap_schema.si_ad_structuralObjectClass );
4003                 if ( soc_at == NULL ) {
4004                         Debug( LDAP_DEBUG_TRACE, "%s: config_add_internal: "
4005                                 "DN=\"%s\" no structural objectClass; "
4006                                 "unable to merge computed class %s\n",
4007                                 op ? op->o_log_prefix : "", e->e_name.bv_val,
4008                                 soc->soc_cname.bv_val );
4009                         return LDAP_OBJECT_CLASS_VIOLATION;
4010                 }
4011
4012                 Debug( LDAP_DEBUG_TRACE, "%s: config_add_internal: "
4013                         "DN=\"%s\" no structural objectClass; "
4014                         "computed objectClass %s merged\n",
4015                         op ? op->o_log_prefix : "", e->e_name.bv_val,
4016                         soc->soc_cname.bv_val );
4017         }
4018
4019         /* Fake the coordinates based on whether we're part of an
4020          * LDAP Add or if reading the config dir
4021          */
4022         if ( rs ) {
4023                 ca->fname = "slapd";
4024                 ca->lineno = 0;
4025         } else {
4026                 ca->fname = cfdir.bv_val;
4027                 ca->lineno = 1;
4028         }
4029         ca->ca_op = op;
4030
4031         co.co_name = &soc_at->a_nvals[0];
4032         coptr = avl_find( CfOcTree, &co, CfOc_cmp );
4033         if ( coptr == NULL ) {
4034                 Debug( LDAP_DEBUG_TRACE, "%s: config_add_internal: "
4035                         "DN=\"%s\" no structural objectClass in configuration table\n",
4036                         op ? op->o_log_prefix : "", e->e_name.bv_val, 0 );
4037                 return LDAP_OBJECT_CLASS_VIOLATION;
4038         }
4039
4040         /* Only the root can be Cft_Global, everything else must
4041          * have a parent. Only limited nesting arrangements are allowed.
4042          */
4043         rc = LDAP_CONSTRAINT_VIOLATION;
4044         if ( coptr->co_type == Cft_Global && !last ) {
4045                 cfn = cfb->cb_config;
4046                 ca->private = cfn;
4047                 ca->be = frontendDB;    /* just to get past check_vals */
4048                 rc = LDAP_SUCCESS;
4049         }
4050
4051         /* Check whether the Add is allowed by its parent, and do
4052          * any necessary arg setup
4053          */
4054         if ( last ) {
4055                 rc = config_add_oc( &coptr, last, e, ca );
4056                 if ( rc == LDAP_CONSTRAINT_VIOLATION ) {
4057                         Debug( LDAP_DEBUG_TRACE, "%s: config_add_internal: "
4058                                 "DN=\"%s\" no structural objectClass add function\n",
4059                                 op ? op->o_log_prefix : "", e->e_name.bv_val, 0 );
4060                         return LDAP_OBJECT_CLASS_VIOLATION;
4061                 }
4062         }
4063
4064         colst = count_ocs( oc_at, &nocs );
4065
4066         /* Add the entry but don't parse it, we already have its contents */
4067         if ( rc == LDAP_COMPARE_TRUE ) {
4068                 rc = LDAP_SUCCESS;
4069                 goto ok;
4070         }
4071
4072         if ( rc != LDAP_SUCCESS )
4073                 goto done_noop;
4074
4075         /* Parse all the values and check for simple syntax errors before
4076          * performing any set actions.
4077          *
4078          * If doing an LDAPadd, check for indexed names and any necessary
4079          * renaming/renumbering. Entries that don't need indexed names are
4080          * ignored. Entries that need an indexed name and arrive without one
4081          * are assigned to the end. Entries that arrive with an index may
4082          * cause the following entries to be renumbered/bumped down.
4083          *
4084          * Note that "pseudo-indexed" entries (cn=Include{xx}, cn=Module{xx})
4085          * don't allow Adding an entry with an index that's already in use.
4086          * This is flagged as an error (LDAP_ALREADY_EXISTS) up above.
4087          *
4088          * These entries can have auto-assigned indexes (appended to the end)
4089          * but only the other types support auto-renumbering of siblings.
4090          */
4091         {
4092                 rc = check_name_index( last, coptr->co_type, e, rs, renum,
4093                         &ibase );
4094                 if ( rc ) {
4095                         goto done_noop;
4096                 }
4097                 if ( renum && *renum && coptr->co_type != Cft_Database &&
4098                         coptr->co_type != Cft_Overlay )
4099                 {
4100                         snprintf( ca->msg, sizeof( ca->msg ),
4101                                 "operation requires sibling renumbering" );
4102                         rc = LDAP_UNWILLING_TO_PERFORM;
4103                         goto done_noop;
4104                 }
4105         }
4106
4107         init_config_argv( ca );
4108
4109         /* Make sure we process attrs in the required order */
4110         sort_attrs( e, colst, nocs );
4111
4112         for ( a = e->e_attrs; a; a = a->a_next ) {
4113                 if ( a == oc_at ) continue;
4114                 ct = config_find_table( colst, nocs, a->a_desc, ca );
4115                 if ( !ct ) continue;    /* user data? */
4116                 rc = check_vals( ct, ca, a, 1 );
4117                 if ( rc ) goto done_noop;
4118         }
4119
4120         /* Basic syntax checks are OK. Do the actual settings. */
4121         for ( a=e->e_attrs; a; a=a->a_next ) {
4122                 if ( a == oc_at ) continue;
4123                 ct = config_find_table( colst, nocs, a->a_desc, ca );
4124                 if ( !ct ) continue;    /* user data? */
4125                 for (i=0; a->a_vals[i].bv_val; i++) {
4126                         char *iptr = NULL;
4127                         ca->line = a->a_vals[i].bv_val;
4128                         if ( a->a_desc->ad_type->sat_flags & SLAP_AT_ORDERED ) {
4129                                 ptr = strchr( ca->line, '}' );
4130                                 if ( ptr ) {
4131                                         iptr = strchr( ca->line, '{' );
4132                                         ca->line = ptr+1;
4133                                 }
4134                         }
4135                         if ( a->a_desc->ad_type->sat_flags & SLAP_AT_ORDERED_SIB ) {
4136                                 if ( iptr ) {
4137                                         ca->valx = strtol( iptr+1, NULL, 0 );
4138                                 } else {
4139                                         ca->valx = -1;
4140                                 }
4141                         } else {
4142                                 ca->valx = i;
4143                         }
4144                         rc = config_parse_add( ct, ca, i );
4145                         if ( rc ) {
4146                                 rc = LDAP_OTHER;
4147                                 goto done;
4148                         }
4149                 }
4150         }
4151 ok:
4152         /* Newly added databases and overlays need to be started up */
4153         if ( CONFIG_ONLINE_ADD( ca )) {
4154                 if ( colst[0]->co_type == Cft_Database ) {
4155                         rc = backend_startup_one( ca->be, ca );
4156
4157                 } else if ( colst[0]->co_type == Cft_Overlay ) {
4158                         if ( ca->bi->bi_db_open ) {
4159                                 BackendInfo *bi_orig = ca->be->bd_info;
4160                                 ca->be->bd_info = ca->bi;
4161                                 rc = ca->bi->bi_db_open( ca->be, ca );
4162                                 ca->be->bd_info = bi_orig;
4163                         }
4164                 }
4165                 if ( rc ) {
4166                         if (ca->msg[0] = 0)
4167                                 snprintf( ca->msg, sizeof( ca->msg ), "<%s> failed startup", ca->argv[0] );
4168
4169                         Debug(LDAP_DEBUG_ANY, "%s: %s (%s)!\n",
4170                                 ca->log, ca->msg, ca->argv[1] );
4171                         rc = LDAP_OTHER;
4172                         goto done;
4173                 }
4174         }
4175
4176         ca->valx = ibase;
4177         ce = ch_calloc( 1, sizeof(CfEntryInfo) );
4178         ce->ce_parent = last;
4179         ce->ce_entry = entry_dup( e );
4180         ce->ce_entry->e_private = ce;
4181         ce->ce_type = colst[0]->co_type;
4182         ce->ce_be = ca->be;
4183         ce->ce_bi = ca->bi;
4184         ce->ce_private = ca->private;
4185         ca->ca_entry = ce->ce_entry;
4186         if ( !last ) {
4187                 cfb->cb_root = ce;
4188         } else if ( last->ce_kids ) {
4189                 CfEntryInfo *c2, **cprev;
4190
4191                 /* Advance to first of this type */
4192                 cprev = &last->ce_kids;
4193                 for ( c2 = *cprev; c2 && c2->ce_type < ce->ce_type; ) {
4194                         cprev = &c2->ce_sibs;
4195                         c2 = c2->ce_sibs;
4196                 }
4197                 /* Account for the (-1) frontendDB entry */
4198                 if ( ce->ce_type == Cft_Database ) {
4199                         if ( ca->be == frontendDB )
4200                                 ibase = 0;
4201                         else if ( ibase != -1 )
4202                                 ibase++;
4203                 }
4204                 /* Append */
4205                 if ( ibase < 0 ) {
4206                         for (c2 = *cprev; c2 && c2->ce_type == ce->ce_type;) {
4207                                 cprev = &c2->ce_sibs;
4208                                 c2 = c2->ce_sibs;
4209                         }
4210                 } else {
4211                 /* Insert */
4212                         int i;
4213                         for ( i=0; i<ibase; i++ ) {
4214                                 c2 = *cprev;
4215                                 cprev = &c2->ce_sibs;
4216                         }
4217                 }
4218                 ce->ce_sibs = *cprev;
4219                 *cprev = ce;
4220         } else {
4221                 last->ce_kids = ce;
4222         }
4223
4224 done:
4225         if ( rc ) {
4226                 if ( (colst[0]->co_type == Cft_Database) && ca->be ) {
4227                         if ( ca->be != frontendDB )
4228                                 backend_destroy_one( ca->be, 1 );
4229                 } else if ( (colst[0]->co_type == Cft_Overlay) && ca->bi ) {
4230                         overlay_destroy_one( ca->be, (slap_overinst *)ca->bi );
4231                 } else if ( colst[0]->co_type == Cft_Schema ) {
4232                         schema_destroy_one( ca, colst, nocs, last );
4233                 }
4234         }
4235 done_noop:
4236
4237         ch_free( ca->argv );
4238         if ( colst ) ch_free( colst );
4239         return rc;
4240 }
4241
4242 #define BIGTMP  10000
4243 static int
4244 config_rename_add( Operation *op, SlapReply *rs, CfEntryInfo *ce,
4245         int base, int rebase, int max, int use_ldif )
4246 {
4247         CfEntryInfo *ce2, *ce3, *cetmp = NULL, *cerem = NULL;
4248         ConfigType etype = ce->ce_type;
4249         int count = 0, rc = 0;
4250
4251         /* Reverse ce list */
4252         for (ce2 = ce->ce_sibs;ce2;ce2 = ce3) {
4253                 if (ce2->ce_type != etype) {
4254                         cerem = ce2;
4255                         break;
4256                 }
4257                 ce3 = ce2->ce_sibs;
4258                 ce2->ce_sibs = cetmp;
4259                 cetmp = ce2;
4260                 count++;
4261                 if ( max && count >= max ) {
4262                         cerem = ce3;
4263                         break;
4264                 }
4265         }
4266
4267         /* Move original to a temp name until increments are done */
4268         if ( rebase ) {
4269                 ce->ce_entry->e_private = NULL;
4270                 rc = config_renumber_one( op, rs, ce->ce_parent, ce->ce_entry,
4271                         base+BIGTMP, 0, use_ldif );
4272                 ce->ce_entry->e_private = ce;
4273         }
4274         /* start incrementing */
4275         for (ce2=cetmp; ce2; ce2=ce3) {
4276                 ce3 = ce2->ce_sibs;
4277                 ce2->ce_sibs = cerem;
4278                 cerem = ce2;
4279                 if ( rc == 0 ) 
4280                         rc = config_renumber_one( op, rs, ce2->ce_parent, ce2->ce_entry,
4281                                 count+base, 0, use_ldif );
4282                 count--;
4283         }
4284         if ( rebase )
4285                 rc = config_renumber_one( op, rs, ce->ce_parent, ce->ce_entry,
4286                         base, 0, use_ldif );
4287         return rc;
4288 }
4289
4290 static int
4291 config_rename_del( Operation *op, SlapReply *rs, CfEntryInfo *ce,
4292         CfEntryInfo *ce2, int old, int use_ldif )
4293 {
4294         int count = 0;
4295
4296         /* Renumber original to a temp value */
4297         ce->ce_entry->e_private = NULL;
4298         config_renumber_one( op, rs, ce->ce_parent, ce->ce_entry,
4299                 old+BIGTMP, 0, use_ldif );
4300         ce->ce_entry->e_private = ce;
4301
4302         /* start decrementing */
4303         for (; ce2 != ce; ce2=ce2->ce_sibs) {
4304                 config_renumber_one( op, rs, ce2->ce_parent, ce2->ce_entry,
4305                         count+old, 0, use_ldif );
4306                 count++;
4307         }
4308         return config_renumber_one( op, rs, ce->ce_parent, ce->ce_entry,
4309                 count+old, 0, use_ldif );
4310 }
4311
4312 /* Parse an LDAP entry into config directives, then store in underlying
4313  * database.
4314  */
4315 static int
4316 config_back_add( Operation *op, SlapReply *rs )
4317 {
4318         CfBackInfo *cfb;
4319         int renumber;
4320         ConfigArgs ca;
4321
4322         if ( !access_allowed( op, op->ora_e, slap_schema.si_ad_entry,
4323                 NULL, ACL_WADD, NULL )) {
4324                 rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
4325                 goto out;
4326         }
4327
4328         cfb = (CfBackInfo *)op->o_bd->be_private;
4329
4330         /* add opattrs for syncprov */
4331         {
4332                 char textbuf[SLAP_TEXT_BUFLEN];
4333                 size_t textlen = sizeof textbuf;
4334                 rs->sr_err = entry_schema_check(op, op->ora_e, NULL, 0, 1,
4335                         &rs->sr_text, textbuf, sizeof( textbuf ) );
4336                 if ( rs->sr_err != LDAP_SUCCESS )
4337                         goto out;
4338                 rs->sr_err = slap_add_opattrs( op, &rs->sr_text, textbuf, textlen, 1 );
4339                 if ( rs->sr_err != LDAP_SUCCESS ) {
4340                         Debug( LDAP_DEBUG_TRACE,
4341                                 LDAP_XSTRING(config_back_add) ": entry failed op attrs add: "
4342                                 "%s (%d)\n", rs->sr_text, rs->sr_err, 0 );
4343                         goto out;
4344                 }
4345         }
4346
4347         ldap_pvt_thread_pool_pause( &connection_pool );
4348
4349         /* Strategy:
4350          * 1) check for existence of entry
4351          * 2) check for sibling renumbering
4352          * 3) perform internal add
4353          * 4) perform any necessary renumbering
4354          * 5) store entry in underlying database
4355          */
4356         rs->sr_err = config_add_internal( cfb, op->ora_e, &ca, rs, &renumber, op );
4357         if ( rs->sr_err != LDAP_SUCCESS ) {
4358                 rs->sr_text = ca.msg;
4359                 goto out2;
4360         }
4361
4362         if ( renumber ) {
4363                 CfEntryInfo *ce = ca.ca_entry->e_private;
4364                 req_add_s addr = op->oq_add;
4365                 op->o_tag = LDAP_REQ_MODRDN;
4366                 rs->sr_err = config_rename_add( op, rs, ce, ca.valx, 0, 0, cfb->cb_use_ldif );
4367                 op->o_tag = LDAP_REQ_ADD;
4368                 op->oq_add = addr;
4369                 if ( rs->sr_err != LDAP_SUCCESS ) {
4370                         goto out2;
4371                 }
4372         }
4373
4374         if ( cfb->cb_use_ldif ) {
4375                 BackendDB *be = op->o_bd;
4376                 slap_callback sc = { NULL, slap_null_cb, NULL, NULL }, *scp;
4377                 struct berval dn, ndn;
4378
4379                 op->o_bd = &cfb->cb_db;
4380
4381                 /* Save current rootdn; use the underlying DB's rootdn */
4382                 dn = op->o_dn;
4383                 ndn = op->o_ndn;
4384                 op->o_dn = op->o_bd->be_rootdn;
4385                 op->o_ndn = op->o_bd->be_rootndn;
4386
4387                 scp = op->o_callback;
4388                 op->o_callback = &sc;
4389                 op->o_bd->be_add( op, rs );
4390                 op->o_bd = be;
4391                 op->o_callback = scp;
4392                 op->o_dn = dn;
4393                 op->o_ndn = ndn;
4394         }
4395
4396 out2:;
4397         ldap_pvt_thread_pool_resume( &connection_pool );
4398
4399 out:;
4400         send_ldap_result( op, rs );
4401         slap_graduate_commit_csn( op );
4402         return rs->sr_err;
4403 }
4404
4405 typedef struct delrec {
4406         struct delrec *next;
4407         int nidx;
4408         int idx[1];
4409 } delrec;
4410
4411 static int
4412 config_modify_add( ConfigTable *ct, ConfigArgs *ca, AttributeDescription *ad,
4413         int i )
4414 {
4415         int rc;
4416
4417         if (ad->ad_type->sat_flags & SLAP_AT_ORDERED &&
4418                 ca->line[0] == '{' )
4419         {
4420                 char *ptr = strchr( ca->line + 1, '}' );
4421                 if ( ptr ) {
4422                         char    *next;
4423
4424                         ca->valx = strtol( ca->line + 1, &next, 0 );
4425                         if ( next == ca->line + 1 || next[ 0 ] != '}' ) {
4426                                 return LDAP_OTHER;
4427                         }
4428                         ca->line = ptr+1;
4429                 }
4430         }
4431         rc = config_parse_add( ct, ca, i );
4432         if ( rc ) {
4433                 rc = LDAP_OTHER;
4434         }
4435         return rc;
4436 }
4437
4438 static int
4439 config_modify_internal( CfEntryInfo *ce, Operation *op, SlapReply *rs,
4440         ConfigArgs *ca )
4441 {
4442         int rc = LDAP_UNWILLING_TO_PERFORM;
4443         Modifications *ml;
4444         Entry *e = ce->ce_entry;
4445         Attribute *save_attrs = e->e_attrs, *oc_at, *s, *a;
4446         ConfigTable *ct;
4447         ConfigOCs **colst;
4448         int i, nocs;
4449         char *ptr;
4450         delrec *dels = NULL, *deltail = NULL;
4451
4452         oc_at = attr_find( e->e_attrs, slap_schema.si_ad_objectClass );
4453         if ( !oc_at ) return LDAP_OBJECT_CLASS_VIOLATION;
4454
4455         colst = count_ocs( oc_at, &nocs );
4456
4457         /* make sure add/del flags are clear; should always be true */
4458         for ( s = save_attrs; s; s = s->a_next ) {
4459                 s->a_flags &= ~(SLAP_ATTR_IXADD|SLAP_ATTR_IXDEL);
4460         }
4461
4462         e->e_attrs = attrs_dup( e->e_attrs );
4463
4464         init_config_argv( ca );
4465         ca->be = ce->ce_be;
4466         ca->bi = ce->ce_bi;
4467         ca->private = ce->ce_private;
4468         ca->ca_entry = e;
4469         ca->fname = "slapd";
4470         ca->ca_op = op;
4471         strcpy( ca->log, "back-config" );
4472
4473         for (ml = op->orm_modlist; ml; ml=ml->sml_next) {
4474                 ct = config_find_table( colst, nocs, ml->sml_desc, ca );
4475                 switch (ml->sml_op) {
4476                 case LDAP_MOD_DELETE:
4477                 case LDAP_MOD_REPLACE: {
4478                         BerVarray vals = NULL, nvals = NULL;
4479                         int *idx = NULL;
4480                         if ( ct && ( ct->arg_type & ARG_NO_DELETE )) {
4481                                 rc = LDAP_OTHER;
4482                                 snprintf(ca->msg, sizeof(ca->msg), "cannot delete %s",
4483                                         ml->sml_desc->ad_cname.bv_val );
4484                                 goto out_noop;
4485                         }
4486                         if ( ml->sml_op == LDAP_MOD_REPLACE ) {
4487                                 vals = ml->sml_values;
4488                                 nvals = ml->sml_nvalues;
4489                                 ml->sml_values = NULL;
4490                                 ml->sml_nvalues = NULL;
4491                         }
4492                         /* If we're deleting by values, remember the indexes of the
4493                          * values we deleted.
4494                          */
4495                         if ( ct && ml->sml_values ) {
4496                                 delrec *d;
4497                                 for (i=0; ml->sml_values[i].bv_val; i++);
4498                                 d = ch_malloc( sizeof(delrec) + (i - 1)* sizeof(int));
4499                                 d->nidx = i;
4500                                 d->next = NULL;
4501                                 if ( dels ) {
4502                                         deltail->next = d;
4503                                 } else {
4504                                         dels = d;
4505                                 }
4506                                 deltail = d;
4507                                 idx = d->idx;
4508                         }
4509                         rc = modify_delete_vindex(e, &ml->sml_mod,
4510                                 get_permissiveModify(op),
4511                                 &rs->sr_text, ca->msg, sizeof(ca->msg), idx );
4512                         if ( ml->sml_op == LDAP_MOD_REPLACE ) {
4513                                 ml->sml_values = vals;
4514                                 ml->sml_nvalues = nvals;
4515                         }
4516                         if ( !vals )
4517                                 break;
4518                         }
4519                         /* FALLTHRU: LDAP_MOD_REPLACE && vals */
4520
4521                 case LDAP_MOD_ADD:
4522                 case SLAP_MOD_SOFTADD: {
4523                         int mop = ml->sml_op;
4524                         int navals = -1;
4525                         ml->sml_op = LDAP_MOD_ADD;
4526                         if ( ct ) {
4527                                 if ( ct->arg_type & ARG_NO_INSERT ) {
4528                                         Attribute *a = attr_find( e->e_attrs, ml->sml_desc );
4529                                         if ( a ) {
4530                                                 for (i = 0; a->a_vals[i].bv_val; i++ );
4531                                                 navals = i;
4532                                         }
4533                                 }
4534                                 for ( i=0; !BER_BVISNULL( &ml->sml_values[i] ); i++ ) {
4535                                         if ( ml->sml_values[i].bv_val[0] == '{' &&
4536                                                 navals >= 0 )
4537                                         {
4538                                                 char    *next, *val = ml->sml_values[i].bv_val + 1;
4539                                                 int     j;
4540
4541                                                 j = strtol( val, &next, 0 );
4542                                                 if ( next == val || next[ 0 ] != '}' || j < navals ) {
4543                                                         rc = LDAP_OTHER;
4544                                                         snprintf(ca->msg, sizeof(ca->msg), "cannot insert %s",
4545                                                                 ml->sml_desc->ad_cname.bv_val );
4546                                                         goto out_noop;
4547                                                 }
4548                                         }
4549                                         rc = check_vals( ct, ca, ml, 0 );
4550                                         if ( rc ) goto out_noop;
4551                                 }
4552                         }
4553                         rc = modify_add_values(e, &ml->sml_mod,
4554                                    get_permissiveModify(op),
4555                                    &rs->sr_text, ca->msg, sizeof(ca->msg) );
4556
4557                         /* If value already exists, show success here
4558                          * and ignore this operation down below.
4559                          */
4560                         if ( mop == SLAP_MOD_SOFTADD ) {
4561                                 if ( rc == LDAP_TYPE_OR_VALUE_EXISTS )
4562                                         rc = LDAP_SUCCESS;
4563                                 else
4564                                         mop = LDAP_MOD_ADD;
4565                         }
4566                         ml->sml_op = mop;
4567                         break;
4568                         }
4569
4570                         break;
4571                 case LDAP_MOD_INCREMENT:        /* FIXME */
4572                         break;
4573                 default:
4574                         break;
4575                 }
4576                 if(rc != LDAP_SUCCESS) break;
4577         }
4578         
4579         if ( rc == LDAP_SUCCESS) {
4580                 /* check that the entry still obeys the schema */
4581                 rc = entry_schema_check(op, e, NULL, 0, 0,
4582                         &rs->sr_text, ca->msg, sizeof(ca->msg) );
4583                 if ( rc ) goto out_noop;
4584         }
4585         /* Basic syntax checks are OK. Do the actual settings. */
4586         for ( ml = op->orm_modlist; ml; ml = ml->sml_next ) {
4587                 ct = config_find_table( colst, nocs, ml->sml_desc, ca );
4588                 if ( !ct ) continue;
4589
4590                 s = attr_find( save_attrs, ml->sml_desc );
4591                 a = attr_find( e->e_attrs, ml->sml_desc );
4592
4593                 switch (ml->sml_op) {
4594                 case LDAP_MOD_DELETE:
4595                 case LDAP_MOD_REPLACE: {
4596                         BerVarray vals = NULL, nvals = NULL;
4597                         delrec *d = NULL;
4598
4599                         if ( ml->sml_op == LDAP_MOD_REPLACE ) {
4600                                 vals = ml->sml_values;
4601                                 nvals = ml->sml_nvalues;
4602                                 ml->sml_values = NULL;
4603                                 ml->sml_nvalues = NULL;
4604                         }
4605
4606                         if ( ml->sml_values )
4607                                 d = dels;
4608
4609                         /* If we didn't delete the whole attribute */
4610                         if ( ml->sml_values && a ) {
4611                                 struct berval *mvals;
4612                                 int j;
4613
4614                                 if ( ml->sml_nvalues )
4615                                         mvals = ml->sml_nvalues;
4616                                 else
4617                                         mvals = ml->sml_values;
4618
4619                                 /* use the indexes we saved up above */
4620                                 for (i=0; i < d->nidx; i++) {
4621                                         struct berval bv = *mvals++;
4622                                         if ( a->a_desc->ad_type->sat_flags & SLAP_AT_ORDERED &&
4623                                                 bv.bv_val[0] == '{' ) {
4624                                                 ptr = strchr( bv.bv_val, '}' ) + 1;
4625                                                 bv.bv_len -= ptr - bv.bv_val;
4626                                                 bv.bv_val = ptr;
4627                                         }
4628                                         ca->line = bv.bv_val;
4629                                         ca->valx = d->idx[i];
4630                                         rc = config_del_vals( ct, ca );
4631                                         if ( rc != LDAP_SUCCESS ) break;
4632                                         if ( s )
4633                                                 s->a_flags |= SLAP_ATTR_IXDEL;
4634                                         for (j=i+1; j < d->nidx; j++)
4635                                                 if ( d->idx[j] >d->idx[i] )
4636                                                         d->idx[j]--;
4637                                 }
4638                         } else {
4639                                 ca->valx = -1;
4640                                 ca->line = NULL;
4641                                 rc = config_del_vals( ct, ca );
4642                                 if ( rc ) rc = LDAP_OTHER;
4643                                 if ( s )
4644                                         s->a_flags |= SLAP_ATTR_IXDEL;
4645                         }
4646                         if ( ml->sml_values ) {
4647                                 d = d->next;
4648                                 ch_free( dels );
4649                                 dels = d;
4650                         }
4651                         if ( ml->sml_op == LDAP_MOD_REPLACE ) {
4652                                 ml->sml_values = vals;
4653                                 ml->sml_nvalues = nvals;
4654                         }
4655                         if ( !vals || rc != LDAP_SUCCESS )
4656                                 break;
4657                         }
4658                         /* FALLTHRU: LDAP_MOD_REPLACE && vals */
4659
4660                 case LDAP_MOD_ADD:
4661                         for (i=0; ml->sml_values[i].bv_val; i++) {
4662                                 ca->line = ml->sml_values[i].bv_val;
4663                                 ca->valx = -1;
4664                                 rc = config_modify_add( ct, ca, ml->sml_desc, i );
4665                                 if ( rc )
4666                                         goto out;
4667                                 a->a_flags |= SLAP_ATTR_IXADD;
4668                         }
4669                         break;
4670                 }
4671         }
4672
4673 out:
4674         /* Undo for a failed operation */
4675         if ( rc != LDAP_SUCCESS ) {
4676                 for ( s = save_attrs; s; s = s->a_next ) {
4677                         if ( s->a_flags & SLAP_ATTR_IXDEL ) {
4678                                 s->a_flags &= ~(SLAP_ATTR_IXDEL|SLAP_ATTR_IXADD);
4679                                 ct = config_find_table( colst, nocs, s->a_desc, ca );
4680                                 a = attr_find( e->e_attrs, s->a_desc );
4681                                 if ( a ) {
4682                                         /* clear the flag so the add check below will skip it */
4683                                         a->a_flags &= ~(SLAP_ATTR_IXDEL|SLAP_ATTR_IXADD);
4684                                         ca->valx = -1;
4685                                         ca->line = NULL;
4686                                         config_del_vals( ct, ca );
4687                                 }
4688                                 for ( i=0; !BER_BVISNULL( &s->a_vals[i] ); i++ ) {
4689                                         ca->line = s->a_vals[i].bv_val;
4690                                         ca->valx = -1;
4691                                         config_modify_add( ct, ca, s->a_desc, i );
4692                                 }
4693                         }
4694                 }
4695                 for ( a = e->e_attrs; a; a = a->a_next ) {
4696                         if ( a->a_flags & SLAP_ATTR_IXADD ) {
4697                                 ct = config_find_table( colst, nocs, a->a_desc, ca );
4698                                 ca->valx = -1;
4699                                 ca->line = NULL;
4700                                 config_del_vals( ct, ca );
4701                                 s = attr_find( save_attrs, a->a_desc );
4702                                 if ( s ) {
4703                                         s->a_flags &= ~(SLAP_ATTR_IXDEL|SLAP_ATTR_IXADD);
4704                                         for ( i=0; !BER_BVISNULL( &s->a_vals[i] ); i++ ) {
4705                                                 ca->line = s->a_vals[i].bv_val;
4706                                                 ca->valx = -1;
4707                                                 config_modify_add( ct, ca, s->a_desc, i );
4708                                         }
4709                                 }
4710                         }
4711                 }
4712         }
4713
4714         if ( ca->cleanup )
4715                 ca->cleanup( ca );
4716 out_noop:
4717         if ( rc == LDAP_SUCCESS ) {
4718                 attrs_free( save_attrs );
4719         } else {
4720                 attrs_free( e->e_attrs );
4721                 e->e_attrs = save_attrs;
4722         }
4723         ch_free( ca->argv );
4724         if ( colst ) ch_free( colst );
4725         while( dels ) {
4726                 deltail = dels->next;
4727                 ch_free( dels );
4728                 dels = deltail;
4729         }
4730
4731         return rc;
4732 }
4733
4734 static int
4735 config_back_modify( Operation *op, SlapReply *rs )
4736 {
4737         CfBackInfo *cfb;
4738         CfEntryInfo *ce, *last;
4739         Modifications *ml;
4740         ConfigArgs ca = {0};
4741         struct berval rdn;
4742         char *ptr;
4743         AttributeDescription *rad = NULL;
4744
4745         cfb = (CfBackInfo *)op->o_bd->be_private;
4746
4747         ce = config_find_base( cfb->cb_root, &op->o_req_ndn, &last );
4748         if ( !ce ) {
4749                 if ( last )
4750                         rs->sr_matched = last->ce_entry->e_name.bv_val;
4751                 rs->sr_err = LDAP_NO_SUCH_OBJECT;
4752                 goto out;
4753         }
4754
4755         if ( !acl_check_modlist( op, ce->ce_entry, op->orm_modlist )) {
4756                 rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
4757                 goto out;
4758         }
4759
4760         /* Get type of RDN */
4761         rdn = ce->ce_entry->e_nname;
4762         ptr = strchr( rdn.bv_val, '=' );
4763         rdn.bv_len = ptr - rdn.bv_val;
4764         slap_bv2ad( &rdn, &rad, &rs->sr_text );
4765
4766         /* Some basic validation... */
4767         for ( ml = op->orm_modlist; ml; ml = ml->sml_next ) {
4768                 /* Don't allow Modify of RDN; must use ModRdn for that. */
4769                 if ( ml->sml_desc == rad ) {
4770                         rs->sr_err = LDAP_NOT_ALLOWED_ON_RDN;
4771                         rs->sr_text = "Use modrdn to change the entry name";
4772                         goto out;
4773                 }
4774         }
4775
4776         slap_mods_opattrs( op, &op->orm_modlist, 1 );
4777
4778         if ( !slapd_shutdown )
4779                 ldap_pvt_thread_pool_pause( &connection_pool );
4780
4781         /* Strategy:
4782          * 1) perform the Modify on the cached Entry.
4783          * 2) verify that the Entry still satisfies the schema.
4784          * 3) perform the individual config operations.
4785          * 4) store Modified entry in underlying LDIF backend.
4786          */
4787         rs->sr_err = config_modify_internal( ce, op, rs, &ca );
4788         if ( rs->sr_err ) {
4789                 rs->sr_text = ca.msg;
4790         } else if ( cfb->cb_use_ldif ) {
4791                 BackendDB *be = op->o_bd;
4792                 slap_callback sc = { NULL, slap_null_cb, NULL, NULL }, *scp;
4793                 struct berval dn, ndn;
4794
4795                 op->o_bd = &cfb->cb_db;
4796
4797                 dn = op->o_dn;
4798                 ndn = op->o_ndn;
4799                 op->o_dn = op->o_bd->be_rootdn;
4800                 op->o_ndn = op->o_bd->be_rootndn;
4801
4802                 scp = op->o_callback;
4803                 op->o_callback = &sc;
4804                 op->o_bd->be_modify( op, rs );
4805                 op->o_bd = be;
4806                 op->o_callback = scp;
4807                 op->o_dn = dn;
4808                 op->o_ndn = ndn;
4809         }
4810
4811         if ( !slapd_shutdown )
4812                 ldap_pvt_thread_pool_resume( &connection_pool );
4813 out:
4814         send_ldap_result( op, rs );
4815         slap_graduate_commit_csn( op );
4816         return rs->sr_err;
4817 }
4818
4819 static int
4820 config_back_modrdn( Operation *op, SlapReply *rs )
4821 {
4822         CfBackInfo *cfb;
4823         CfEntryInfo *ce, *last;
4824         struct berval rdn;
4825         int ixold, ixnew;
4826
4827         cfb = (CfBackInfo *)op->o_bd->be_private;
4828
4829         ce = config_find_base( cfb->cb_root, &op->o_req_ndn, &last );
4830         if ( !ce ) {
4831                 if ( last )
4832                         rs->sr_matched = last->ce_entry->e_name.bv_val;
4833                 rs->sr_err = LDAP_NO_SUCH_OBJECT;
4834                 goto out;
4835         }
4836         if ( !access_allowed( op, ce->ce_entry, slap_schema.si_ad_entry,
4837                 NULL, ACL_WRITE, NULL )) {
4838                 rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
4839                 goto out;
4840         }
4841         { Entry *parent;
4842                 if ( ce->ce_parent )
4843                         parent = ce->ce_parent->ce_entry;
4844                 else
4845                         parent = (Entry *)&slap_entry_root;
4846                 if ( !access_allowed( op, parent, slap_schema.si_ad_children,
4847                         NULL, ACL_WRITE, NULL )) {
4848                         rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
4849                         goto out;
4850                 }
4851         }
4852
4853         /* We don't allow moving objects to new parents.
4854          * Generally we only allow reordering a set of ordered entries.
4855          */
4856         if ( op->orr_newSup ) {
4857                 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
4858                 goto out;
4859         }
4860
4861         /* If newRDN == oldRDN, quietly succeed */
4862         dnRdn( &op->o_req_ndn, &rdn );
4863         if ( dn_match( &rdn, &op->orr_nnewrdn )) {
4864                 rs->sr_err = LDAP_SUCCESS;
4865                 goto out;
4866         }
4867
4868         /* Current behavior, subject to change as needed:
4869          *
4870          * For backends and overlays, we only allow renumbering.
4871          * For schema, we allow renaming with the same number.
4872          * Otherwise, the op is not allowed.
4873          */
4874
4875         if ( ce->ce_type == Cft_Schema ) {
4876                 char *ptr1, *ptr2;
4877                 int len;
4878
4879                 /* Can't alter the main cn=schema entry */
4880                 if ( ce->ce_parent->ce_type == Cft_Global ) {
4881                         rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
4882                         rs->sr_text = "renaming not allowed for this entry";
4883                         goto out;
4884                 }
4885
4886                 /* We could support this later if desired */
4887                 ptr1 = ber_bvchr( &rdn, '}' );
4888                 ptr2 = ber_bvchr( &op->orr_newrdn, '}' );
4889                 len = ptr1 - rdn.bv_val;
4890                 if ( len != ptr2 - op->orr_newrdn.bv_val ||
4891                         strncmp( rdn.bv_val, op->orr_newrdn.bv_val, len )) {
4892                         rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
4893                         rs->sr_text = "schema reordering not supported";
4894                         goto out;
4895                 }
4896         } else if ( ce->ce_type == Cft_Database ||
4897                 ce->ce_type == Cft_Overlay ) {
4898                 char *ptr1, *ptr2, *iptr1, *iptr2;
4899                 int len1, len2;
4900
4901                 iptr2 = ber_bvchr( &op->orr_newrdn, '=' ) + 1;
4902                 if ( *iptr2 != '{' ) {
4903                         rs->sr_err = LDAP_NAMING_VIOLATION;
4904                         rs->sr_text = "new ordering index is required";
4905                         goto out;
4906                 }
4907                 iptr2++;
4908                 iptr1 = ber_bvchr( &rdn, '{' ) + 1;
4909                 ptr1 = ber_bvchr( &rdn, '}' );
4910                 ptr2 = ber_bvchr( &op->orr_newrdn, '}' );
4911                 if ( !ptr2 ) {
4912                         rs->sr_err = LDAP_NAMING_VIOLATION;
4913                         rs->sr_text = "new ordering index is required";
4914                         goto out;
4915                 }
4916
4917                 len1 = ptr1 - rdn.bv_val;
4918                 len2 = ptr2 - op->orr_newrdn.bv_val;
4919
4920                 if ( rdn.bv_len - len1 != op->orr_newrdn.bv_len - len2 ||
4921                         strncmp( ptr1, ptr2, rdn.bv_len - len1 )) {
4922                         rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
4923                         rs->sr_text = "changing database/overlay type not allowed";
4924                         goto out;
4925                 }
4926                 ixold = strtol( iptr1, NULL, 0 );
4927                 ixnew = strtol( iptr2, &ptr1, 0 );
4928                 if ( ptr1 != ptr2 || ixold < 0 || ixnew < 0 ) {
4929                         rs->sr_err = LDAP_NAMING_VIOLATION;
4930                         goto out;
4931                 }
4932                 /* config DB is always 0, cannot be changed */
4933                 if ( ce->ce_type == Cft_Database && ( ixold == 0 || ixnew == 0 )) {
4934                         rs->sr_err = LDAP_CONSTRAINT_VIOLATION;
4935                         goto out;
4936                 }
4937         } else {
4938                 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
4939                 rs->sr_text = "renaming not supported for this entry";
4940                 goto out;
4941         }
4942
4943         ldap_pvt_thread_pool_pause( &connection_pool );
4944
4945         if ( ce->ce_type == Cft_Schema ) {
4946                 req_modrdn_s modr = op->oq_modrdn;
4947                 struct berval rdn;
4948                 Attribute *a;
4949                 rs->sr_err = config_rename_attr( rs, ce->ce_entry, &rdn, &a );
4950                 if ( rs->sr_err == LDAP_SUCCESS ) {
4951                         rs->sr_err = config_rename_one( op, rs, ce->ce_entry,
4952                                 ce->ce_parent, a, &op->orr_newrdn, &op->orr_nnewrdn,
4953                                 cfb->cb_use_ldif );
4954                 }
4955                 op->oq_modrdn = modr;
4956         } else {
4957                 CfEntryInfo *ce2, *cebase, **cprev, **cbprev, *ceold;
4958                 req_modrdn_s modr = op->oq_modrdn;
4959                 int i;
4960
4961                 /* Advance to first of this type */
4962                 cprev = &ce->ce_parent->ce_kids;
4963                 for ( ce2 = *cprev; ce2 && ce2->ce_type != ce->ce_type; ) {
4964                         cprev = &ce2->ce_sibs;
4965                         ce2 = ce2->ce_sibs;
4966                 }
4967                 /* Skip the -1 entry */
4968                 if ( ce->ce_type == Cft_Database ) {
4969                         cprev = &ce2->ce_sibs;
4970                         ce2 = ce2->ce_sibs;
4971                 }
4972                 cebase = ce2;
4973                 cbprev = cprev;
4974
4975                 /* Remove from old slot */
4976                 for ( ce2 = *cprev; ce2 && ce2 != ce; ce2 = ce2->ce_sibs )
4977                         cprev = &ce2->ce_sibs;
4978                 *cprev = ce->ce_sibs;
4979                 ceold = ce->ce_sibs;
4980
4981                 /* Insert into new slot */
4982                 cprev = cbprev;
4983                 for ( i=0; i<ixnew; i++ ) {
4984                         ce2 = *cprev;
4985                         if ( !ce2 )
4986                                 break;
4987                         cprev = &ce2->ce_sibs;
4988                 }
4989                 ce->ce_sibs = *cprev;
4990                 *cprev = ce;
4991
4992                 ixnew = i;
4993
4994                 /* NOTE: These should be encoded in the OC tables, not inline here */
4995                 if ( ce->ce_type == Cft_Database )
4996                         backend_db_move( ce->ce_be, ixnew );
4997                 else if ( ce->ce_type == Cft_Overlay )
4998                         overlay_move( ce->ce_be, (slap_overinst *)ce->ce_bi, ixnew );
4999                         
5000                 if ( ixold < ixnew ) {
5001                         rs->sr_err = config_rename_del( op, rs, ce, ceold, ixold,
5002                                 cfb->cb_use_ldif );
5003                 } else {
5004                         rs->sr_err = config_rename_add( op, rs, ce, ixnew, 1,
5005                                 ixold - ixnew, cfb->cb_use_ldif );
5006                 }
5007                 op->oq_modrdn = modr;
5008         }
5009
5010         ldap_pvt_thread_pool_resume( &connection_pool );
5011 out:
5012         send_ldap_result( op, rs );
5013         return rs->sr_err;
5014 }
5015
5016 static int
5017 config_back_delete( Operation *op, SlapReply *rs )
5018 {
5019         send_ldap_error( op, rs, LDAP_UNWILLING_TO_PERFORM, NULL );
5020         return rs->sr_err;
5021 }
5022
5023 static int
5024 config_back_search( Operation *op, SlapReply *rs )
5025 {
5026         CfBackInfo *cfb;
5027         CfEntryInfo *ce, *last;
5028         slap_mask_t mask;
5029
5030         cfb = (CfBackInfo *)op->o_bd->be_private;
5031
5032         ce = config_find_base( cfb->cb_root, &op->o_req_ndn, &last );
5033         if ( !ce ) {
5034                 if ( last )
5035                         rs->sr_matched = last->ce_entry->e_name.bv_val;
5036                 rs->sr_err = LDAP_NO_SUCH_OBJECT;
5037                 goto out;
5038         }
5039         if ( !access_allowed_mask( op, ce->ce_entry, slap_schema.si_ad_entry, NULL,
5040                 ACL_SEARCH, NULL, &mask ))
5041         {
5042                 if ( !ACL_GRANT( mask, ACL_DISCLOSE )) {
5043                         rs->sr_err = LDAP_NO_SUCH_OBJECT;
5044                 } else {
5045                         rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
5046                 }
5047                 goto out;
5048         }
5049         switch ( op->ors_scope ) {
5050         case LDAP_SCOPE_BASE:
5051         case LDAP_SCOPE_SUBTREE:
5052                 config_send( op, rs, ce, 0 );
5053                 break;
5054                 
5055         case LDAP_SCOPE_ONELEVEL:
5056                 for (ce = ce->ce_kids; ce; ce=ce->ce_sibs) {
5057                         config_send( op, rs, ce, 1 );
5058                 }
5059                 break;
5060         }
5061                 
5062         rs->sr_err = LDAP_SUCCESS;
5063 out:
5064         send_ldap_result( op, rs );
5065         return 0;
5066 }
5067
5068 /* no-op, we never free entries */
5069 int config_entry_release(
5070         Operation *op,
5071         Entry *e,
5072         int rw )
5073 {
5074         if ( !e->e_private ) {
5075                 entry_free( e );
5076         }
5077         return LDAP_SUCCESS;
5078 }
5079
5080 /* return LDAP_SUCCESS IFF we can retrieve the specified entry.
5081  */
5082 int config_back_entry_get(
5083         Operation *op,
5084         struct berval *ndn,
5085         ObjectClass *oc,
5086         AttributeDescription *at,
5087         int rw,
5088         Entry **ent )
5089 {
5090         CfBackInfo *cfb;
5091         CfEntryInfo *ce, *last;
5092
5093         cfb = (CfBackInfo *)op->o_bd->be_private;
5094
5095         ce = config_find_base( cfb->cb_root, ndn, &last );
5096         if ( ce ) {
5097                 *ent = ce->ce_entry;
5098                 if ( *ent && oc && !is_entry_objectclass_or_sub( *ent, oc ) ) {
5099                         *ent = NULL;
5100                 }
5101         }
5102
5103         return ( *ent == NULL ? 1 : 0 );
5104 }
5105
5106 static void
5107 config_build_attrs( Entry *e, AttributeType **at, AttributeDescription *ad,
5108         ConfigTable *ct, ConfigArgs *c )
5109 {
5110         int i, rc;
5111
5112         for (; at && *at; at++) {
5113                 /* Skip the naming attr */
5114                 if ((*at)->sat_ad == ad || (*at)->sat_ad == slap_schema.si_ad_cn )
5115                         continue;
5116                 for (i=0;ct[i].name;i++) {
5117                         if (ct[i].ad == (*at)->sat_ad) {
5118                                 rc = config_get_vals(&ct[i], c);
5119                                 /* NOTE: tolerate that config_get_vals()
5120                                  * returns success with no values */
5121                                 if (rc == LDAP_SUCCESS && c->rvalue_vals != NULL ) {
5122                                         if ( c->rvalue_nvals )
5123                                                 attr_merge(e, ct[i].ad, c->rvalue_vals,
5124                                                         c->rvalue_nvals);
5125                                         else
5126                                                 attr_merge_normalize(e, ct[i].ad,
5127                                                         c->rvalue_vals, NULL);
5128                                         ber_bvarray_free( c->rvalue_nvals );
5129                                         ber_bvarray_free( c->rvalue_vals );
5130                                 }
5131                                 break;
5132                         }
5133                 }
5134         }
5135 }
5136
5137 Entry *
5138 config_build_entry( Operation *op, SlapReply *rs, CfEntryInfo *parent,
5139         ConfigArgs *c, struct berval *rdn, ConfigOCs *main, ConfigOCs *extra )
5140 {
5141         Entry *e = entry_alloc();
5142         CfEntryInfo *ce = ch_calloc( 1, sizeof(CfEntryInfo) );
5143         struct berval val;
5144         struct berval ad_name;
5145         AttributeDescription *ad = NULL;
5146         int rc;
5147         char *ptr;
5148         const char *text;
5149         Attribute *oc_at;
5150         struct berval pdn;
5151         ObjectClass *oc;
5152         CfEntryInfo *ceprev = NULL;
5153
5154         Debug( LDAP_DEBUG_TRACE, "config_build_entry: \"%s\"\n", rdn->bv_val, 0, 0);
5155         e->e_private = ce;
5156         ce->ce_entry = e;
5157         ce->ce_type = main->co_type;
5158         ce->ce_parent = parent;
5159         if ( parent ) {
5160                 pdn = parent->ce_entry->e_nname;
5161                 if ( parent->ce_kids )
5162                         for ( ceprev = parent->ce_kids; ceprev->ce_sibs &&
5163                                 ceprev->ce_type <= ce->ce_type;
5164                                 ceprev = ceprev->ce_sibs );
5165         } else {
5166                 BER_BVZERO( &pdn );
5167         }
5168
5169         ce->ce_private = c->private;
5170         ce->ce_be = c->be;
5171         ce->ce_bi = c->bi;
5172
5173         build_new_dn( &e->e_name, &pdn, rdn, NULL );
5174         ber_dupbv( &e->e_nname, &e->e_name );
5175
5176         attr_merge_normalize_one(e, slap_schema.si_ad_objectClass,
5177                 main->co_name, NULL );
5178         if ( extra )
5179                 attr_merge_normalize_one(e, slap_schema.si_ad_objectClass,
5180                         extra->co_name, NULL );
5181         ptr = strchr(rdn->bv_val, '=');
5182         ad_name.bv_val = rdn->bv_val;
5183         ad_name.bv_len = ptr - rdn->bv_val;
5184         rc = slap_bv2ad( &ad_name, &ad, &text );
5185         if ( rc ) {
5186                 return NULL;
5187         }
5188         val.bv_val = ptr+1;
5189         val.bv_len = rdn->bv_len - (val.bv_val - rdn->bv_val);
5190         attr_merge_normalize_one(e, ad, &val, NULL );
5191
5192         oc = main->co_oc;
5193         c->table = main->co_type;
5194         if ( oc->soc_required )
5195                 config_build_attrs( e, oc->soc_required, ad, main->co_table, c );
5196
5197         if ( oc->soc_allowed )
5198                 config_build_attrs( e, oc->soc_allowed, ad, main->co_table, c );
5199
5200         if ( extra ) {
5201                 oc = extra->co_oc;
5202                 c->table = extra->co_type;
5203                 if ( oc->soc_required )
5204                         config_build_attrs( e, oc->soc_required, ad, extra->co_table, c );
5205
5206                 if ( oc->soc_allowed )
5207                         config_build_attrs( e, oc->soc_allowed, ad, extra->co_table, c );
5208         }
5209
5210         oc_at = attr_find( e->e_attrs, slap_schema.si_ad_objectClass );
5211         rc = structural_class(oc_at->a_vals, &oc, NULL, &text, c->msg,
5212                 sizeof(c->msg), op ? op->o_tmpmemctx : NULL );
5213         attr_merge_normalize_one(e, slap_schema.si_ad_structuralObjectClass, &oc->soc_cname, NULL );
5214         if ( op && !op->o_noop ) {
5215                 op->ora_e = e;
5216                 op->ora_modlist = NULL;
5217                 op->o_bd->be_add( op, rs );
5218                 if ( ( rs->sr_err != LDAP_SUCCESS ) 
5219                                 && (rs->sr_err != LDAP_ALREADY_EXISTS) ) {
5220                         return NULL;
5221                 }
5222         }
5223         if ( ceprev ) {
5224                 ce->ce_sibs = ceprev->ce_sibs;
5225                 ceprev->ce_sibs = ce;
5226         } else if ( parent ) {
5227                 ce->ce_sibs = parent->ce_kids;
5228                 parent->ce_kids = ce;
5229         }
5230
5231         return e;
5232 }
5233
5234 static int
5235 config_build_schema_inc( ConfigArgs *c, CfEntryInfo *ceparent,
5236         Operation *op, SlapReply *rs )
5237 {
5238         Entry *e;
5239         ConfigFile *cf = c->private;
5240         char *ptr;
5241         struct berval bv;
5242
5243         for (; cf; cf=cf->c_sibs, c->depth++) {
5244                 if ( !cf->c_at_head && !cf->c_cr_head && !cf->c_oc_head &&
5245                         !cf->c_om_head ) continue;
5246                 c->value_dn.bv_val = c->log;
5247                 LUTIL_SLASHPATH( cf->c_file.bv_val );
5248                 bv.bv_val = strrchr(cf->c_file.bv_val, LDAP_DIRSEP[0]);
5249                 if ( !bv.bv_val ) {
5250                         bv = cf->c_file;
5251                 } else {
5252                         bv.bv_val++;
5253                         bv.bv_len = cf->c_file.bv_len - (bv.bv_val - cf->c_file.bv_val);
5254                 }
5255                 ptr = strchr( bv.bv_val, '.' );
5256                 if ( ptr )
5257                         bv.bv_len = ptr - bv.bv_val;
5258                 c->value_dn.bv_len = snprintf(c->value_dn.bv_val, sizeof( c->log ), "cn=" SLAP_X_ORDERED_FMT, c->depth);
5259                 if ( c->value_dn.bv_len >= sizeof( c->log ) ) {
5260                         /* FIXME: how can indicate error? */
5261                         return -1;
5262                 }
5263                 strncpy( c->value_dn.bv_val + c->value_dn.bv_len, bv.bv_val,
5264                         bv.bv_len );
5265                 c->value_dn.bv_len += bv.bv_len;
5266                 c->value_dn.bv_val[c->value_dn.bv_len] ='\0';
5267
5268                 c->private = cf;
5269                 e = config_build_entry( op, rs, ceparent, c, &c->value_dn,
5270                         &CFOC_SCHEMA, NULL );
5271                 if ( !e ) {
5272                         return -1;
5273                 } else if ( e && cf->c_kids ) {
5274                         c->private = cf->c_kids;
5275                         config_build_schema_inc( c, e->e_private, op, rs );
5276                 }
5277         }
5278         return 0;
5279 }
5280
5281 #ifdef SLAPD_MODULES
5282
5283 static int
5284 config_build_modules( ConfigArgs *c, CfEntryInfo *ceparent,
5285         Operation *op, SlapReply *rs )
5286 {
5287         int i;
5288         ModPaths *mp;
5289
5290         for (i=0, mp=&modpaths; mp; mp=mp->mp_next, i++) {
5291                 if ( BER_BVISNULL( &mp->mp_path ) && !mp->mp_loads )
5292                         continue;
5293                 c->value_dn.bv_val = c->log;
5294                 c->value_dn.bv_len = snprintf(c->value_dn.bv_val, sizeof( c->log ), "cn=module" SLAP_X_ORDERED_FMT, i);
5295                 if ( c->value_dn.bv_len >= sizeof( c->log ) ) {
5296                         /* FIXME: how can indicate error? */
5297                         return -1;
5298                 }
5299                 c->private = mp;
5300                 if ( ! config_build_entry( op, rs, ceparent, c, &c->value_dn, &CFOC_MODULE, NULL )) {
5301                         return -1;
5302                 }
5303         }
5304         return 0;
5305 }
5306 #endif
5307
5308 static int
5309 config_check_schema(Operation *op, CfBackInfo *cfb)
5310 {
5311         struct berval schema_dn = BER_BVC(SCHEMA_RDN "," CONFIG_RDN);
5312         ConfigArgs c = {0};
5313         CfEntryInfo *ce, *last;
5314         Entry *e;
5315
5316         /* If there's no root entry, we must be in the midst of converting */
5317         if ( !cfb->cb_root )
5318                 return 0;
5319
5320         /* Make sure the main schema entry exists */
5321         ce = config_find_base( cfb->cb_root, &schema_dn, &last );
5322         if ( ce ) {
5323                 Attribute *a;
5324                 struct berval *bv;
5325
5326                 e = ce->ce_entry;
5327
5328                 /* Make sure it's up to date */
5329                 if ( cf_om_tail != om_sys_tail ) {
5330                         a = attr_find( e->e_attrs, cfAd_om );
5331                         if ( a ) {
5332                                 if ( a->a_nvals != a->a_vals )
5333                                         ber_bvarray_free( a->a_nvals );
5334                                 ber_bvarray_free( a->a_vals );
5335                                 a->a_vals = NULL;
5336                                 a->a_nvals = NULL;
5337                         }
5338                         oidm_unparse( &bv, NULL, NULL, 1 );
5339                         attr_merge_normalize( e, cfAd_om, bv, NULL );
5340                         ber_bvarray_free( bv );
5341                         cf_om_tail = om_sys_tail;
5342                 }
5343                 if ( cf_at_tail != at_sys_tail ) {
5344                         a = attr_find( e->e_attrs, cfAd_attr );
5345                         if ( a ) {
5346                                 if ( a->a_nvals != a->a_vals )
5347                                         ber_bvarray_free( a->a_nvals );
5348                                 ber_bvarray_free( a->a_vals );
5349                                 a->a_vals = NULL;
5350                                 a->a_nvals = NULL;
5351                         }
5352                         at_unparse( &bv, NULL, NULL, 1 );
5353                         attr_merge_normalize( e, cfAd_attr, bv, NULL );
5354                         ber_bvarray_free( bv );
5355                         cf_at_tail = at_sys_tail;
5356                 }
5357                 if ( cf_oc_tail != oc_sys_tail ) {
5358                         a = attr_find( e->e_attrs, cfAd_oc );
5359                         if ( a ) {
5360                                 if ( a->a_nvals != a->a_vals )
5361                                         ber_bvarray_free( a->a_nvals );
5362                                 ber_bvarray_free( a->a_vals );
5363                                 a->a_vals = NULL;
5364                                 a->a_nvals = NULL;
5365                         }
5366                         oc_unparse( &bv, NULL, NULL, 1 );
5367                         attr_merge_normalize( e, cfAd_oc, bv, NULL );
5368                         ber_bvarray_free( bv );
5369                         cf_oc_tail = oc_sys_tail;
5370                 }
5371         } else {
5372                 SlapReply rs = {REP_RESULT};
5373                 c.private = NULL;
5374                 e = config_build_entry( op, &rs, cfb->cb_root, &c, &schema_rdn,
5375                         &CFOC_SCHEMA, NULL );
5376                 if ( !e ) {
5377                         return -1;
5378                 }
5379                 ce = e->e_private;
5380                 ce->ce_private = cfb->cb_config;
5381                 cf_at_tail = at_sys_tail;
5382                 cf_oc_tail = oc_sys_tail;
5383                 cf_om_tail = om_sys_tail;
5384         }
5385         return 0;
5386 }
5387
5388 static const char *defacl[] = {
5389         NULL, "to", "*", "by", "*", "none", NULL
5390 };
5391
5392 static int
5393 config_back_db_open( BackendDB *be, ConfigArgs *ca )
5394 {
5395         CfBackInfo *cfb = be->be_private;
5396         struct berval rdn;
5397         Entry *e, *parent;
5398         CfEntryInfo *ce, *ceparent;
5399         int i, unsupp = 0;
5400         BackendInfo *bi;
5401         ConfigArgs c;
5402         Connection conn = {0};
5403         OperationBuffer opbuf;
5404         Operation *op;
5405         slap_callback cb = { NULL, slap_null_cb, NULL, NULL };
5406         SlapReply rs = {REP_RESULT};
5407         void *thrctx = NULL;
5408
5409         Debug( LDAP_DEBUG_TRACE, "config_back_db_open\n", 0, 0, 0);
5410
5411         /* If we have no explicitly configured ACLs, don't just use
5412          * the global ACLs. Explicitly deny access to everything.
5413          */
5414         if ( frontendDB->be_acl && be->be_acl == frontendDB->be_acl ) {
5415                 parse_acl(be, "config_back_db_open", 0, 6, (char **)defacl, 0 );
5416         }
5417
5418         thrctx = ldap_pvt_thread_pool_context();
5419         connection_fake_init( &conn, &opbuf, thrctx );
5420         op = &opbuf.ob_op;
5421
5422         op->o_tag = LDAP_REQ_ADD;
5423         op->o_callback = &cb;
5424         op->o_bd = &cfb->cb_db;
5425         op->o_dn = op->o_bd->be_rootdn;
5426         op->o_ndn = op->o_bd->be_rootndn;
5427
5428         if ( !cfb->cb_use_ldif ) {
5429                 op->o_noop = 1;
5430         }
5431
5432         /* If we read the config from back-ldif, do some quick sanity checks */
5433         if ( cfb->cb_got_ldif ) {
5434                 return config_check_schema( op, cfb );
5435         }
5436
5437         /* create root of tree */
5438         rdn = config_rdn;
5439         c.private = cfb->cb_config;
5440         c.be = frontendDB;
5441         e = config_build_entry( op, &rs, NULL, &c, &rdn, &CFOC_GLOBAL, NULL );
5442         if ( !e ) {
5443                 return -1;
5444         }
5445         ce = e->e_private;
5446         cfb->cb_root = ce;
5447
5448         parent = e;
5449         ceparent = ce;
5450
5451 #ifdef SLAPD_MODULES
5452         /* Create Module nodes... */
5453         if ( modpaths.mp_loads ) {
5454                 if ( config_build_modules( &c, ceparent, op, &rs ) ){
5455                         return -1;
5456                 }
5457         }
5458 #endif
5459
5460         /* Create schema nodes... cn=schema will contain the hardcoded core
5461          * schema, read-only. Child objects will contain runtime loaded schema
5462          * files.
5463          */
5464         rdn = schema_rdn;
5465         c.private = NULL;
5466         e = config_build_entry( op, &rs, ceparent, &c, &rdn, &CFOC_SCHEMA, NULL );
5467         if ( !e ) {
5468                 return -1;
5469         }
5470         ce = e->e_private;
5471         ce->ce_private = cfb->cb_config;
5472         cf_at_tail = at_sys_tail;
5473         cf_oc_tail = oc_sys_tail;
5474         cf_om_tail = om_sys_tail;
5475
5476         /* Create schema nodes for included schema... */
5477         if ( cfb->cb_config->c_kids ) {
5478                 c.depth = 0;
5479                 c.private = cfb->cb_config->c_kids;
5480                 if (config_build_schema_inc( &c, ce, op, &rs )) {
5481                         return -1;
5482                 }
5483         }
5484
5485         /* Create backend nodes. Skip if they don't provide a cf_table.
5486          * There usually aren't any of these.
5487          */
5488         
5489         c.line = 0;
5490         LDAP_STAILQ_FOREACH( bi, &backendInfo, bi_next) {
5491                 if (!bi->bi_cf_ocs) {
5492                         /* If it only supports the old config mech, complain. */
5493                         if ( bi->bi_config ) {
5494                                 Debug( LDAP_DEBUG_ANY,
5495                                         "WARNING: No dynamic config support for backend %s.\n",
5496                                         bi->bi_type, 0, 0 );
5497                                 unsupp++;
5498                         }
5499                         continue;
5500                 }
5501                 if (!bi->bi_private) continue;
5502
5503                 rdn.bv_val = c.log;
5504                 rdn.bv_len = snprintf(rdn.bv_val, sizeof( c.log ),
5505                         "%s=%s", cfAd_backend->ad_cname.bv_val, bi->bi_type);
5506                 if ( rdn.bv_len >= sizeof( c.log ) ) {
5507                         /* FIXME: holler ... */ ;
5508                 }
5509                 c.bi = bi;
5510                 e = config_build_entry( op, &rs, ceparent, &c, &rdn, &CFOC_BACKEND,
5511                         bi->bi_cf_ocs );
5512                 if ( !e ) {
5513                         return -1;
5514                 }
5515         }
5516
5517         /* Create database nodes... */
5518         frontendDB->be_cf_ocs = &CFOC_FRONTEND;
5519         LDAP_STAILQ_NEXT(frontendDB, be_next) = LDAP_STAILQ_FIRST(&backendDB);
5520         for ( i = -1, be = frontendDB ; be;
5521                 i++, be = LDAP_STAILQ_NEXT( be, be_next )) {
5522                 slap_overinfo *oi = NULL;
5523
5524                 if ( overlay_is_over( be )) {
5525                         oi = be->bd_info->bi_private;
5526                         bi = oi->oi_orig;
5527                 } else {
5528                         bi = be->bd_info;
5529                 }
5530
5531                 /* If this backend supports the old config mechanism, but not
5532                  * the new mech, complain.
5533                  */
5534                 if ( !be->be_cf_ocs && bi->bi_db_config ) {
5535                         Debug( LDAP_DEBUG_ANY,
5536                                 "WARNING: No dynamic config support for database %s.\n",
5537                                 bi->bi_type, 0, 0 );
5538                         unsupp++;
5539                 }
5540                 rdn.bv_val = c.log;
5541                 rdn.bv_len = snprintf(rdn.bv_val, sizeof( c.log ),
5542                         "%s=" SLAP_X_ORDERED_FMT "%s", cfAd_database->ad_cname.bv_val,
5543                         i, bi->bi_type);
5544                 if ( rdn.bv_len >= sizeof( c.log ) ) {
5545                         /* FIXME: holler ... */ ;
5546                 }
5547                 c.be = be;
5548                 c.bi = bi;
5549                 e = config_build_entry( op, &rs, ceparent, &c, &rdn, &CFOC_DATABASE,
5550                         be->be_cf_ocs );
5551                 if ( !e ) {
5552                         return -1;
5553                 }
5554                 ce = e->e_private;
5555                 if ( be->be_cf_ocs && be->be_cf_ocs->co_cfadd )
5556                         be->be_cf_ocs->co_cfadd( op, &rs, e, &c );
5557                 /* Iterate through overlays */
5558                 if ( oi ) {
5559                         slap_overinst *on;
5560                         Entry *oe;
5561                         int j;
5562
5563                         for (j=0,on=oi->oi_list; on; j++,on=on->on_next) {
5564                                 if ( on->on_bi.bi_db_config && !on->on_bi.bi_cf_ocs ) {
5565                                         Debug( LDAP_DEBUG_ANY,
5566                                                 "WARNING: No dynamic config support for overlay %s.\n",
5567                                                 on->on_bi.bi_type, 0, 0 );
5568                                         unsupp++;
5569                                 }
5570                                 rdn.bv_val = c.log;
5571                                 rdn.bv_len = snprintf(rdn.bv_val, sizeof( c.log ),
5572                                         "%s=" SLAP_X_ORDERED_FMT "%s",
5573                                         cfAd_overlay->ad_cname.bv_val, j, on->on_bi.bi_type );
5574                                 if ( rdn.bv_len >= sizeof( c.log ) ) {
5575                                         /* FIXME: holler ... */ ;
5576                                 }
5577                                 c.be = be;
5578                                 c.bi = &on->on_bi;
5579                                 oe = config_build_entry( op, &rs, ce, &c, &rdn,
5580                                         &CFOC_OVERLAY, c.bi->bi_cf_ocs );
5581                                 if ( !oe ) {
5582                                         return -1;
5583                                 }
5584                                 if ( c.bi->bi_cf_ocs && c.bi->bi_cf_ocs->co_cfadd )
5585                                         c.bi->bi_cf_ocs->co_cfadd( op, &rs, oe, &c );
5586                         }
5587                 }
5588         }
5589         if ( thrctx )
5590                 ldap_pvt_thread_pool_context_reset( thrctx );
5591
5592         if ( unsupp  && cfb->cb_use_ldif ) {
5593                 Debug( LDAP_DEBUG_ANY, "\nWARNING: The converted cn=config "
5594                         "directory is incomplete and may not work.\n\n", 0, 0, 0 );
5595         }
5596
5597         return 0;
5598 }
5599
5600 static void
5601 cfb_free_cffile( ConfigFile *cf )
5602 {
5603         ConfigFile *next;
5604
5605         for (; cf; cf=next) {
5606                 next = cf->c_sibs;
5607                 if ( cf->c_kids )
5608                         cfb_free_cffile( cf->c_kids );
5609                 ch_free( cf->c_file.bv_val );
5610                 ber_bvarray_free( cf->c_dseFiles );
5611                 ch_free( cf );
5612         }
5613 }
5614
5615 static void
5616 cfb_free_entries( CfEntryInfo *ce )
5617 {
5618         CfEntryInfo *next;
5619
5620         for (; ce; ce=next) {
5621                 next = ce->ce_sibs;
5622                 if ( ce->ce_kids )
5623                         cfb_free_entries( ce->ce_kids );
5624                 ce->ce_entry->e_private = NULL;
5625                 entry_free( ce->ce_entry );
5626                 ch_free( ce );
5627         }
5628 }
5629
5630 static int
5631 config_back_db_close( BackendDB *be, ConfigArgs *ca )
5632 {
5633         CfBackInfo *cfb = be->be_private;
5634
5635         cfb_free_entries( cfb->cb_root );
5636         cfb->cb_root = NULL;
5637
5638         if ( cfb->cb_db.bd_info ) {
5639                 backend_shutdown( &cfb->cb_db );
5640         }
5641
5642         return 0;
5643 }
5644
5645 static int
5646 config_back_db_destroy( BackendDB *be, ConfigArgs *ca )
5647 {
5648         CfBackInfo *cfb = be->be_private;
5649
5650         cfb_free_cffile( cfb->cb_config );
5651
5652         ch_free( cfdir.bv_val );
5653
5654         avl_free( CfOcTree, NULL );
5655
5656         if ( cfb->cb_db.bd_info ) {
5657                 cfb->cb_db.be_suffix = NULL;
5658                 cfb->cb_db.be_nsuffix = NULL;
5659                 BER_BVZERO( &cfb->cb_db.be_rootdn );
5660                 BER_BVZERO( &cfb->cb_db.be_rootndn );
5661
5662                 backend_destroy_one( &cfb->cb_db, 0 );
5663         }
5664
5665         loglevel_destroy();
5666
5667         return 0;
5668 }
5669
5670 static int
5671 config_back_db_init( BackendDB *be, ConfigArgs* ca )
5672 {
5673         struct berval dn;
5674         CfBackInfo *cfb;
5675
5676         cfb = &cfBackInfo;
5677         cfb->cb_config = ch_calloc( 1, sizeof(ConfigFile));
5678         cfn = cfb->cb_config;
5679         be->be_private = cfb;
5680
5681         ber_dupbv( &be->be_rootdn, &config_rdn );
5682         ber_dupbv( &be->be_rootndn, &be->be_rootdn );
5683         ber_dupbv( &dn, &be->be_rootdn );
5684         ber_bvarray_add( &be->be_suffix, &dn );
5685         ber_dupbv( &dn, &be->be_rootdn );
5686         ber_bvarray_add( &be->be_nsuffix, &dn );
5687
5688         /* Hide from namingContexts */
5689         SLAP_BFLAGS(be) |= SLAP_BFLAG_CONFIG;
5690
5691         return 0;
5692 }
5693
5694 static int
5695 config_back_destroy( BackendInfo *bi )
5696 {
5697         ldif_must_b64_encode_release();
5698         return 0;
5699 }
5700
5701 static int
5702 config_tool_entry_open( BackendDB *be, int mode )
5703 {
5704         CfBackInfo *cfb = be->be_private;
5705         BackendInfo *bi = cfb->cb_db.bd_info;
5706
5707         if ( bi && bi->bi_tool_entry_open )
5708                 return bi->bi_tool_entry_open( &cfb->cb_db, mode );
5709         else
5710                 return -1;
5711         
5712 }
5713
5714 static int
5715 config_tool_entry_close( BackendDB *be )
5716 {
5717         CfBackInfo *cfb = be->be_private;
5718         BackendInfo *bi = cfb->cb_db.bd_info;
5719
5720         if ( bi && bi->bi_tool_entry_close )
5721                 return bi->bi_tool_entry_close( &cfb->cb_db );
5722         else
5723                 return -1;
5724 }
5725
5726 static ID
5727 config_tool_entry_first( BackendDB *be )
5728 {
5729         CfBackInfo *cfb = be->be_private;
5730         BackendInfo *bi = cfb->cb_db.bd_info;
5731
5732         if ( bi && bi->bi_tool_entry_first )
5733                 return bi->bi_tool_entry_first( &cfb->cb_db );
5734         else
5735                 return NOID;
5736 }
5737
5738 static ID
5739 config_tool_entry_next( BackendDB *be )
5740 {
5741         CfBackInfo *cfb = be->be_private;
5742         BackendInfo *bi = cfb->cb_db.bd_info;
5743
5744         if ( bi && bi->bi_tool_entry_next )
5745                 return bi->bi_tool_entry_next( &cfb->cb_db );
5746         else
5747                 return NOID;
5748 }
5749
5750 static Entry *
5751 config_tool_entry_get( BackendDB *be, ID id )
5752 {
5753         CfBackInfo *cfb = be->be_private;
5754         BackendInfo *bi = cfb->cb_db.bd_info;
5755
5756         if ( bi && bi->bi_tool_entry_get )
5757                 return bi->bi_tool_entry_get( &cfb->cb_db, id );
5758         else
5759                 return NULL;
5760 }
5761
5762 static int entry_put_got_frontend=0;
5763 static int entry_put_got_config=0;
5764 static ID
5765 config_tool_entry_put( BackendDB *be, Entry *e, struct berval *text )
5766 {
5767         CfBackInfo *cfb = be->be_private;
5768         BackendInfo *bi = cfb->cb_db.bd_info;
5769         int rc;
5770         struct berval rdn, vals[ 2 ];
5771         ConfigArgs ca;
5772         OperationBuffer opbuf;
5773         Entry *ce;
5774         Connection conn = {0};
5775         Operation *op = NULL;
5776         void *thrctx;
5777
5778         /* Create entry for frontend database if it does not exist already */
5779         if ( !entry_put_got_frontend ) {
5780                 if ( !strncmp( e->e_nname.bv_val, "olcDatabase", 
5781                                 STRLENOF( "olcDatabase" ))) {
5782                         if ( strncmp( e->e_nname.bv_val + 
5783                                         STRLENOF( "olcDatabase" ), "={-1}frontend",
5784                                         STRLENOF( "={-1}frontend" )) && 
5785                                         strncmp( e->e_nname.bv_val + 
5786                                         STRLENOF( "olcDatabase" ), "=frontend",
5787                                         STRLENOF( "=frontend" ))) {
5788                                 vals[1].bv_len = 0;
5789                                 vals[1].bv_val = NULL;
5790                                 memset( &ca, 0, sizeof(ConfigArgs));
5791                                 ca.be = frontendDB;
5792                                 ca.bi = frontendDB->bd_info;
5793                                 ca.be->be_cf_ocs = &CFOC_FRONTEND;
5794                                 rdn.bv_val = ca.log;
5795                                 rdn.bv_len = snprintf(rdn.bv_val, sizeof( ca.log ),
5796                                         "%s=" SLAP_X_ORDERED_FMT "%s",
5797                                         cfAd_database->ad_cname.bv_val, -1,
5798                                         ca.bi->bi_type);
5799                                 ce = config_build_entry( NULL, NULL, cfb->cb_root, &ca, &rdn,
5800                                                 &CFOC_DATABASE, ca.be->be_cf_ocs );
5801                                 thrctx = ldap_pvt_thread_pool_context();
5802                                 connection_fake_init2( &conn, &opbuf, thrctx,0 );
5803                                 op = &opbuf.ob_op;
5804                                 op->o_bd = &cfb->cb_db;
5805                                 op->o_tag = LDAP_REQ_ADD;
5806                                 op->ora_e = ce;
5807                                 op->o_dn = be->be_rootdn;
5808                                 op->o_ndn = be->be_rootndn;
5809                                 rc = slap_add_opattrs(op, NULL, NULL, 0, 0);
5810                                 if ( rc != LDAP_SUCCESS ) {
5811                                         text->bv_val = "autocreation of \"olcDatabase={-1}frontend\" failed";
5812                                         text->bv_len = STRLENOF("autocreation of \"olcDatabase={-1}frontend\" failed");
5813                                         return NOID;
5814                                 }
5815
5816                                 if ( ce && bi && bi->bi_tool_entry_put && 
5817                                                 bi->bi_tool_entry_put( &cfb->cb_db, ce, text ) != NOID ) {
5818                                         entry_put_got_frontend++;
5819                                 } else {
5820                                         text->bv_val = "autocreation of \"olcDatabase={-1}frontend\" failed";
5821                                         text->bv_len = STRLENOF("autocreation of \"olcDatabase={-1}frontend\" failed");
5822                                         return NOID;
5823                                 }
5824                         } else {
5825                                 entry_put_got_frontend++;
5826                         }
5827                 }
5828         }
5829         /* Create entry for config database if it does not exist already */
5830         if ( !entry_put_got_config ) {
5831                 if ( !strncmp( e->e_nname.bv_val, "olcDatabase",
5832                                 STRLENOF( "olcDatabase" ))) {
5833                         if ( strncmp( e->e_nname.bv_val +
5834                                         STRLENOF( "olcDatabase" ), "={0}config",
5835                                         STRLENOF( "={0}config" )) &&
5836                                         strncmp( e->e_nname.bv_val +
5837                                         STRLENOF( "olcDatabase" ), "=config",
5838                                         STRLENOF( "=config" )) ) {
5839                                 vals[1].bv_len = 0;
5840                                 vals[1].bv_val = NULL;
5841                                 memset( &ca, 0, sizeof(ConfigArgs));
5842                                 ca.be = LDAP_STAILQ_FIRST( &backendDB );
5843                                 ca.bi = ca.be->bd_info;
5844                                 rdn.bv_val = ca.log;
5845                                 rdn.bv_len = snprintf(rdn.bv_val, sizeof( ca.log ),
5846                                         "%s=" SLAP_X_ORDERED_FMT "%s",
5847                                         cfAd_database->ad_cname.bv_val, 0,
5848                                         ca.bi->bi_type);
5849                                 ce = config_build_entry( NULL, NULL, cfb->cb_root, &ca, &rdn, &CFOC_DATABASE,
5850                                                 ca.be->be_cf_ocs );
5851                                 if ( ! op ) {
5852                                         thrctx = ldap_pvt_thread_pool_context();
5853                                         connection_fake_init2( &conn, &opbuf, thrctx,0 );
5854                                         op = &opbuf.ob_op;
5855                                         op->o_bd = &cfb->cb_db;
5856                                         op->o_tag = LDAP_REQ_ADD;
5857                                         op->o_dn = be->be_rootdn;
5858                                         op->o_ndn = be->be_rootndn;
5859                                 }
5860                                 op->ora_e = ce;
5861                                 rc = slap_add_opattrs(op, NULL, NULL, 0, 0);
5862                                 if ( rc != LDAP_SUCCESS ) {
5863                                         text->bv_val = "autocreation of \"olcDatabase={0}config\" failed";
5864                                         text->bv_len = STRLENOF("autocreation of \"olcDatabase={0}config\" failed");
5865                                         return NOID;
5866                                 }
5867                                 if (ce && bi && bi->bi_tool_entry_put &&
5868                                                 bi->bi_tool_entry_put( &cfb->cb_db, ce, text ) != NOID ) {
5869                                         entry_put_got_config++;
5870                                 } else {
5871                                         text->bv_val = "autocreation of \"olcDatabase={0}config\" failed";
5872                                         text->bv_len = STRLENOF("autocreation of \"olcDatabase={0}config\" failed");
5873                                         return NOID;
5874                                 }
5875                         } else {
5876                                 entry_put_got_config++;
5877                         }
5878                 }
5879         }
5880         if ( bi && bi->bi_tool_entry_put &&
5881                 config_add_internal( cfb, e, &ca, NULL, NULL, NULL ) == 0 )
5882                 return bi->bi_tool_entry_put( &cfb->cb_db, e, text );
5883         else
5884                 return NOID;
5885 }
5886
5887 static struct {
5888         char *name;
5889         AttributeDescription **desc;
5890 } ads[] = {
5891         { "attribute", &cfAd_attr },
5892         { "backend", &cfAd_backend },
5893         { "database", &cfAd_database },
5894         { "include", &cfAd_include },
5895         { "objectclass", &cfAd_oc },
5896         { "objectidentifier", &cfAd_om },
5897         { "overlay", &cfAd_overlay },
5898         { NULL, NULL }
5899 };
5900
5901 /* Notes:
5902  *   add / delete: all types that may be added or deleted must use an
5903  * X-ORDERED attributeType for their RDN. Adding and deleting entries
5904  * should automatically renumber the index of any siblings as needed,
5905  * so that no gaps in the numbering sequence exist after the add/delete
5906  * is completed.
5907  *   What can be added:
5908  *     schema objects
5909  *     backend objects for backend-specific config directives
5910  *     database objects
5911  *     overlay objects
5912  *
5913  *   delete: probably no support this time around.
5914  *
5915  *   modrdn: generally not done. Will be invoked automatically by add/
5916  * delete to update numbering sequence. Perform as an explicit operation
5917  * so that the renumbering effect may be replicated. Subtree rename must
5918  * be supported, since renumbering a database will affect all its child
5919  * overlays.
5920  *
5921  *  modify: must be fully supported. 
5922  */
5923
5924 int
5925 config_back_initialize( BackendInfo *bi )
5926 {
5927         ConfigTable             *ct = config_back_cf_table;
5928         ConfigArgs ca;
5929         char                    *argv[4];
5930         int                     i;
5931         AttributeDescription    *ad = NULL;
5932         const char              *text;
5933         static char             *controls[] = {
5934                 LDAP_CONTROL_MANAGEDSAIT,
5935                 NULL
5936         };
5937
5938         /* Make sure we don't exceed the bits reserved for userland */
5939         config_check_userland( CFG_LAST );
5940
5941         bi->bi_controls = controls;
5942
5943         bi->bi_open = 0;
5944         bi->bi_close = 0;
5945         bi->bi_config = 0;
5946         bi->bi_destroy = config_back_destroy;
5947
5948         bi->bi_db_init = config_back_db_init;
5949         bi->bi_db_config = 0;
5950         bi->bi_db_open = config_back_db_open;
5951         bi->bi_db_close = config_back_db_close;
5952         bi->bi_db_destroy = config_back_db_destroy;
5953
5954         bi->bi_op_bind = config_back_bind;
5955         bi->bi_op_unbind = 0;
5956         bi->bi_op_search = config_back_search;
5957         bi->bi_op_compare = 0;
5958         bi->bi_op_modify = config_back_modify;
5959         bi->bi_op_modrdn = config_back_modrdn;
5960         bi->bi_op_add = config_back_add;
5961         bi->bi_op_delete = config_back_delete;
5962         bi->bi_op_abandon = 0;
5963
5964         bi->bi_extended = 0;
5965
5966         bi->bi_chk_referrals = 0;
5967
5968         bi->bi_access_allowed = slap_access_allowed;
5969
5970         bi->bi_connection_init = 0;
5971         bi->bi_connection_destroy = 0;
5972
5973         bi->bi_entry_release_rw = config_entry_release;
5974         bi->bi_entry_get_rw = config_back_entry_get;
5975
5976         bi->bi_tool_entry_open = config_tool_entry_open;
5977         bi->bi_tool_entry_close = config_tool_entry_close;
5978         bi->bi_tool_entry_first = config_tool_entry_first;
5979         bi->bi_tool_entry_next = config_tool_entry_next;
5980         bi->bi_tool_entry_get = config_tool_entry_get;
5981         bi->bi_tool_entry_put = config_tool_entry_put;
5982
5983         ca.argv = argv;
5984         argv[ 0 ] = "slapd";
5985         ca.argv = argv;
5986         ca.argc = 3;
5987         ca.fname = argv[0];
5988
5989         argv[3] = NULL;
5990         for (i=0; OidMacros[i].name; i++ ) {
5991                 argv[1] = OidMacros[i].name;
5992                 argv[2] = OidMacros[i].oid;
5993                 parse_oidm( &ca, 0, NULL );
5994         }
5995
5996         bi->bi_cf_ocs = cf_ocs;
5997
5998         i = config_register_schema( ct, cf_ocs );
5999         if ( i ) return i;
6000
6001         /* setup olcRootPW to be base64-encoded when written in LDIF form;
6002          * basically, we don't care if it fails */
6003         i = slap_str2ad( "olcRootPW", &ad, &text );
6004         if ( i ) {
6005                 Debug( LDAP_DEBUG_ANY, "config_back_initialize: "
6006                         "warning, unable to get \"olcRootPW\" "
6007                         "attribute description: %d: %s\n",
6008                         i, text, 0 );
6009         } else {
6010                 (void)ldif_must_b64_encode_register( ad->ad_cname.bv_val,
6011                         ad->ad_type->sat_oid );
6012         }
6013
6014         /* set up the notable AttributeDescriptions */
6015         i = 0;
6016         for (;ct->name;ct++) {
6017                 if (strcmp(ct->name, ads[i].name)) continue;
6018                 *ads[i].desc = ct->ad;
6019                 i++;
6020                 if (!ads[i].name) break;
6021         }
6022
6023         return 0;
6024 }
6025