]> git.sur5r.net Git - openldap/blob - servers/slapd/bconfig.c
29b8ed3f574bbc9702937956e6ddab1e3ec7101c
[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);
1240                                 if ( !c->be ) {
1241                                         snprintf( c->msg, sizeof( c->msg ), "<%s> failed init", c->argv[0] );
1242                                         Debug(LDAP_DEBUG_ANY, "%s: %s (%s)!\n",
1243                                                 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 )
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 ))
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 );
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 );
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 );
4162                                 ca->be->bd_info = bi_orig;
4163                         }
4164                 }
4165                 if ( rc ) {
4166                         snprintf( ca->msg, sizeof( ca->msg ), "<%s> failed startup", ca->argv[0] );
4167                         Debug(LDAP_DEBUG_ANY, "%s: %s (%s)!\n",
4168                                 ca->log, ca->msg, ca->argv[1] );
4169                         rc = LDAP_OTHER;
4170                         goto done;
4171                 }
4172         }
4173
4174         ca->valx = ibase;
4175         ce = ch_calloc( 1, sizeof(CfEntryInfo) );
4176         ce->ce_parent = last;
4177         ce->ce_entry = entry_dup( e );
4178         ce->ce_entry->e_private = ce;
4179         ce->ce_type = colst[0]->co_type;
4180         ce->ce_be = ca->be;
4181         ce->ce_bi = ca->bi;
4182         ce->ce_private = ca->private;
4183         ca->ca_entry = ce->ce_entry;
4184         if ( !last ) {
4185                 cfb->cb_root = ce;
4186         } else if ( last->ce_kids ) {
4187                 CfEntryInfo *c2, **cprev;
4188
4189                 /* Advance to first of this type */
4190                 cprev = &last->ce_kids;
4191                 for ( c2 = *cprev; c2 && c2->ce_type < ce->ce_type; ) {
4192                         cprev = &c2->ce_sibs;
4193                         c2 = c2->ce_sibs;
4194                 }
4195                 /* Account for the (-1) frontendDB entry */
4196                 if ( ce->ce_type == Cft_Database ) {
4197                         if ( ca->be == frontendDB )
4198                                 ibase = 0;
4199                         else if ( ibase != -1 )
4200                                 ibase++;
4201                 }
4202                 /* Append */
4203                 if ( ibase < 0 ) {
4204                         for (c2 = *cprev; c2 && c2->ce_type == ce->ce_type;) {
4205                                 cprev = &c2->ce_sibs;
4206                                 c2 = c2->ce_sibs;
4207                         }
4208                 } else {
4209                 /* Insert */
4210                         int i;
4211                         for ( i=0; i<ibase; i++ ) {
4212                                 c2 = *cprev;
4213                                 cprev = &c2->ce_sibs;
4214                         }
4215                 }
4216                 ce->ce_sibs = *cprev;
4217                 *cprev = ce;
4218         } else {
4219                 last->ce_kids = ce;
4220         }
4221
4222 done:
4223         if ( rc ) {
4224                 if ( (colst[0]->co_type == Cft_Database) && ca->be ) {
4225                         if ( ca->be != frontendDB )
4226                                 backend_destroy_one( ca->be, 1 );
4227                 } else if ( (colst[0]->co_type == Cft_Overlay) && ca->bi ) {
4228                         overlay_destroy_one( ca->be, (slap_overinst *)ca->bi );
4229                 } else if ( colst[0]->co_type == Cft_Schema ) {
4230                         schema_destroy_one( ca, colst, nocs, last );
4231                 }
4232         }
4233 done_noop:
4234
4235         ch_free( ca->argv );
4236         if ( colst ) ch_free( colst );
4237         return rc;
4238 }
4239
4240 #define BIGTMP  10000
4241 static int
4242 config_rename_add( Operation *op, SlapReply *rs, CfEntryInfo *ce,
4243         int base, int rebase, int max, int use_ldif )
4244 {
4245         CfEntryInfo *ce2, *ce3, *cetmp = NULL, *cerem = NULL;
4246         ConfigType etype = ce->ce_type;
4247         int count = 0, rc = 0;
4248
4249         /* Reverse ce list */
4250         for (ce2 = ce->ce_sibs;ce2;ce2 = ce3) {
4251                 if (ce2->ce_type != etype) {
4252                         cerem = ce2;
4253                         break;
4254                 }
4255                 ce3 = ce2->ce_sibs;
4256                 ce2->ce_sibs = cetmp;
4257                 cetmp = ce2;
4258                 count++;
4259                 if ( max && count >= max ) {
4260                         cerem = ce3;
4261                         break;
4262                 }
4263         }
4264
4265         /* Move original to a temp name until increments are done */
4266         if ( rebase ) {
4267                 ce->ce_entry->e_private = NULL;
4268                 rc = config_renumber_one( op, rs, ce->ce_parent, ce->ce_entry,
4269                         base+BIGTMP, 0, use_ldif );
4270                 ce->ce_entry->e_private = ce;
4271         }
4272         /* start incrementing */
4273         for (ce2=cetmp; ce2; ce2=ce3) {
4274                 ce3 = ce2->ce_sibs;
4275                 ce2->ce_sibs = cerem;
4276                 cerem = ce2;
4277                 if ( rc == 0 ) 
4278                         rc = config_renumber_one( op, rs, ce2->ce_parent, ce2->ce_entry,
4279                                 count+base, 0, use_ldif );
4280                 count--;
4281         }
4282         if ( rebase )
4283                 rc = config_renumber_one( op, rs, ce->ce_parent, ce->ce_entry,
4284                         base, 0, use_ldif );
4285         return rc;
4286 }
4287
4288 static int
4289 config_rename_del( Operation *op, SlapReply *rs, CfEntryInfo *ce,
4290         CfEntryInfo *ce2, int old, int use_ldif )
4291 {
4292         int count = 0;
4293
4294         /* Renumber original to a temp value */
4295         ce->ce_entry->e_private = NULL;
4296         config_renumber_one( op, rs, ce->ce_parent, ce->ce_entry,
4297                 old+BIGTMP, 0, use_ldif );
4298         ce->ce_entry->e_private = ce;
4299
4300         /* start decrementing */
4301         for (; ce2 != ce; ce2=ce2->ce_sibs) {
4302                 config_renumber_one( op, rs, ce2->ce_parent, ce2->ce_entry,
4303                         count+old, 0, use_ldif );
4304                 count++;
4305         }
4306         return config_renumber_one( op, rs, ce->ce_parent, ce->ce_entry,
4307                 count+old, 0, use_ldif );
4308 }
4309
4310 /* Parse an LDAP entry into config directives, then store in underlying
4311  * database.
4312  */
4313 static int
4314 config_back_add( Operation *op, SlapReply *rs )
4315 {
4316         CfBackInfo *cfb;
4317         int renumber;
4318         ConfigArgs ca;
4319
4320         if ( !access_allowed( op, op->ora_e, slap_schema.si_ad_entry,
4321                 NULL, ACL_WADD, NULL )) {
4322                 rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
4323                 goto out;
4324         }
4325
4326         cfb = (CfBackInfo *)op->o_bd->be_private;
4327
4328         /* add opattrs for syncprov */
4329         {
4330                 char textbuf[SLAP_TEXT_BUFLEN];
4331                 size_t textlen = sizeof textbuf;
4332                 rs->sr_err = entry_schema_check(op, op->ora_e, NULL, 0, 1,
4333                         &rs->sr_text, textbuf, sizeof( textbuf ) );
4334                 if ( rs->sr_err != LDAP_SUCCESS )
4335                         goto out;
4336                 rs->sr_err = slap_add_opattrs( op, &rs->sr_text, textbuf, textlen, 1 );
4337                 if ( rs->sr_err != LDAP_SUCCESS ) {
4338                         Debug( LDAP_DEBUG_TRACE,
4339                                 LDAP_XSTRING(config_back_add) ": entry failed op attrs add: "
4340                                 "%s (%d)\n", rs->sr_text, rs->sr_err, 0 );
4341                         goto out;
4342                 }
4343         }
4344
4345         ldap_pvt_thread_pool_pause( &connection_pool );
4346
4347         /* Strategy:
4348          * 1) check for existence of entry
4349          * 2) check for sibling renumbering
4350          * 3) perform internal add
4351          * 4) perform any necessary renumbering
4352          * 5) store entry in underlying database
4353          */
4354         rs->sr_err = config_add_internal( cfb, op->ora_e, &ca, rs, &renumber, op );
4355         if ( rs->sr_err != LDAP_SUCCESS ) {
4356                 rs->sr_text = ca.msg;
4357                 goto out2;
4358         }
4359
4360         if ( renumber ) {
4361                 CfEntryInfo *ce = ca.ca_entry->e_private;
4362                 req_add_s addr = op->oq_add;
4363                 op->o_tag = LDAP_REQ_MODRDN;
4364                 rs->sr_err = config_rename_add( op, rs, ce, ca.valx, 0, 0, cfb->cb_use_ldif );
4365                 op->o_tag = LDAP_REQ_ADD;
4366                 op->oq_add = addr;
4367                 if ( rs->sr_err != LDAP_SUCCESS ) {
4368                         goto out2;
4369                 }
4370         }
4371
4372         if ( cfb->cb_use_ldif ) {
4373                 BackendDB *be = op->o_bd;
4374                 slap_callback sc = { NULL, slap_null_cb, NULL, NULL }, *scp;
4375                 struct berval dn, ndn;
4376
4377                 op->o_bd = &cfb->cb_db;
4378
4379                 /* Save current rootdn; use the underlying DB's rootdn */
4380                 dn = op->o_dn;
4381                 ndn = op->o_ndn;
4382                 op->o_dn = op->o_bd->be_rootdn;
4383                 op->o_ndn = op->o_bd->be_rootndn;
4384
4385                 scp = op->o_callback;
4386                 op->o_callback = &sc;
4387                 op->o_bd->be_add( op, rs );
4388                 op->o_bd = be;
4389                 op->o_callback = scp;
4390                 op->o_dn = dn;
4391                 op->o_ndn = ndn;
4392         }
4393
4394 out2:;
4395         ldap_pvt_thread_pool_resume( &connection_pool );
4396
4397 out:;
4398         send_ldap_result( op, rs );
4399         slap_graduate_commit_csn( op );
4400         return rs->sr_err;
4401 }
4402
4403 typedef struct delrec {
4404         struct delrec *next;
4405         int nidx;
4406         int idx[1];
4407 } delrec;
4408
4409 static int
4410 config_modify_add( ConfigTable *ct, ConfigArgs *ca, AttributeDescription *ad,
4411         int i )
4412 {
4413         int rc;
4414
4415         if (ad->ad_type->sat_flags & SLAP_AT_ORDERED &&
4416                 ca->line[0] == '{' )
4417         {
4418                 char *ptr = strchr( ca->line + 1, '}' );
4419                 if ( ptr ) {
4420                         char    *next;
4421
4422                         ca->valx = strtol( ca->line + 1, &next, 0 );
4423                         if ( next == ca->line + 1 || next[ 0 ] != '}' ) {
4424                                 return LDAP_OTHER;
4425                         }
4426                         ca->line = ptr+1;
4427                 }
4428         }
4429         rc = config_parse_add( ct, ca, i );
4430         if ( rc ) {
4431                 rc = LDAP_OTHER;
4432         }
4433         return rc;
4434 }
4435
4436 static int
4437 config_modify_internal( CfEntryInfo *ce, Operation *op, SlapReply *rs,
4438         ConfigArgs *ca )
4439 {
4440         int rc = LDAP_UNWILLING_TO_PERFORM;
4441         Modifications *ml;
4442         Entry *e = ce->ce_entry;
4443         Attribute *save_attrs = e->e_attrs, *oc_at, *s, *a;
4444         ConfigTable *ct;
4445         ConfigOCs **colst;
4446         int i, nocs;
4447         char *ptr;
4448         delrec *dels = NULL, *deltail = NULL;
4449
4450         oc_at = attr_find( e->e_attrs, slap_schema.si_ad_objectClass );
4451         if ( !oc_at ) return LDAP_OBJECT_CLASS_VIOLATION;
4452
4453         colst = count_ocs( oc_at, &nocs );
4454
4455         /* make sure add/del flags are clear; should always be true */
4456         for ( s = save_attrs; s; s = s->a_next ) {
4457                 s->a_flags &= ~(SLAP_ATTR_IXADD|SLAP_ATTR_IXDEL);
4458         }
4459
4460         e->e_attrs = attrs_dup( e->e_attrs );
4461
4462         init_config_argv( ca );
4463         ca->be = ce->ce_be;
4464         ca->bi = ce->ce_bi;
4465         ca->private = ce->ce_private;
4466         ca->ca_entry = e;
4467         ca->fname = "slapd";
4468         ca->ca_op = op;
4469         strcpy( ca->log, "back-config" );
4470
4471         for (ml = op->orm_modlist; ml; ml=ml->sml_next) {
4472                 ct = config_find_table( colst, nocs, ml->sml_desc, ca );
4473                 switch (ml->sml_op) {
4474                 case LDAP_MOD_DELETE:
4475                 case LDAP_MOD_REPLACE: {
4476                         BerVarray vals = NULL, nvals = NULL;
4477                         int *idx = NULL;
4478                         if ( ct && ( ct->arg_type & ARG_NO_DELETE )) {
4479                                 rc = LDAP_OTHER;
4480                                 snprintf(ca->msg, sizeof(ca->msg), "cannot delete %s",
4481                                         ml->sml_desc->ad_cname.bv_val );
4482                                 goto out_noop;
4483                         }
4484                         if ( ml->sml_op == LDAP_MOD_REPLACE ) {
4485                                 vals = ml->sml_values;
4486                                 nvals = ml->sml_nvalues;
4487                                 ml->sml_values = NULL;
4488                                 ml->sml_nvalues = NULL;
4489                         }
4490                         /* If we're deleting by values, remember the indexes of the
4491                          * values we deleted.
4492                          */
4493                         if ( ct && ml->sml_values ) {
4494                                 delrec *d;
4495                                 for (i=0; ml->sml_values[i].bv_val; i++);
4496                                 d = ch_malloc( sizeof(delrec) + (i - 1)* sizeof(int));
4497                                 d->nidx = i;
4498                                 d->next = NULL;
4499                                 if ( dels ) {
4500                                         deltail->next = d;
4501                                 } else {
4502                                         dels = d;
4503                                 }
4504                                 deltail = d;
4505                                 idx = d->idx;
4506                         }
4507                         rc = modify_delete_vindex(e, &ml->sml_mod,
4508                                 get_permissiveModify(op),
4509                                 &rs->sr_text, ca->msg, sizeof(ca->msg), idx );
4510                         if ( ml->sml_op == LDAP_MOD_REPLACE ) {
4511                                 ml->sml_values = vals;
4512                                 ml->sml_nvalues = nvals;
4513                         }
4514                         if ( !vals )
4515                                 break;
4516                         }
4517                         /* FALLTHRU: LDAP_MOD_REPLACE && vals */
4518
4519                 case LDAP_MOD_ADD:
4520                 case SLAP_MOD_SOFTADD: {
4521                         int mop = ml->sml_op;
4522                         int navals = -1;
4523                         ml->sml_op = LDAP_MOD_ADD;
4524                         if ( ct ) {
4525                                 if ( ct->arg_type & ARG_NO_INSERT ) {
4526                                         Attribute *a = attr_find( e->e_attrs, ml->sml_desc );
4527                                         if ( a ) {
4528                                                 for (i = 0; a->a_vals[i].bv_val; i++ );
4529                                                 navals = i;
4530                                         }
4531                                 }
4532                                 for ( i=0; !BER_BVISNULL( &ml->sml_values[i] ); i++ ) {
4533                                         if ( ml->sml_values[i].bv_val[0] == '{' &&
4534                                                 navals >= 0 )
4535                                         {
4536                                                 char    *next, *val = ml->sml_values[i].bv_val + 1;
4537                                                 int     j;
4538
4539                                                 j = strtol( val, &next, 0 );
4540                                                 if ( next == val || next[ 0 ] != '}' || j < navals ) {
4541                                                         rc = LDAP_OTHER;
4542                                                         snprintf(ca->msg, sizeof(ca->msg), "cannot insert %s",
4543                                                                 ml->sml_desc->ad_cname.bv_val );
4544                                                         goto out_noop;
4545                                                 }
4546                                         }
4547                                         rc = check_vals( ct, ca, ml, 0 );
4548                                         if ( rc ) goto out_noop;
4549                                 }
4550                         }
4551                         rc = modify_add_values(e, &ml->sml_mod,
4552                                    get_permissiveModify(op),
4553                                    &rs->sr_text, ca->msg, sizeof(ca->msg) );
4554
4555                         /* If value already exists, show success here
4556                          * and ignore this operation down below.
4557                          */
4558                         if ( mop == SLAP_MOD_SOFTADD ) {
4559                                 if ( rc == LDAP_TYPE_OR_VALUE_EXISTS )
4560                                         rc = LDAP_SUCCESS;
4561                                 else
4562                                         mop = LDAP_MOD_ADD;
4563                         }
4564                         ml->sml_op = mop;
4565                         break;
4566                         }
4567
4568                         break;
4569                 case LDAP_MOD_INCREMENT:        /* FIXME */
4570                         break;
4571                 default:
4572                         break;
4573                 }
4574                 if(rc != LDAP_SUCCESS) break;
4575         }
4576         
4577         if ( rc == LDAP_SUCCESS) {
4578                 /* check that the entry still obeys the schema */
4579                 rc = entry_schema_check(op, e, NULL, 0, 0,
4580                         &rs->sr_text, ca->msg, sizeof(ca->msg) );
4581                 if ( rc ) goto out_noop;
4582         }
4583         /* Basic syntax checks are OK. Do the actual settings. */
4584         for ( ml = op->orm_modlist; ml; ml = ml->sml_next ) {
4585                 ct = config_find_table( colst, nocs, ml->sml_desc, ca );
4586                 if ( !ct ) continue;
4587
4588                 s = attr_find( save_attrs, ml->sml_desc );
4589                 a = attr_find( e->e_attrs, ml->sml_desc );
4590
4591                 switch (ml->sml_op) {
4592                 case LDAP_MOD_DELETE:
4593                 case LDAP_MOD_REPLACE: {
4594                         BerVarray vals = NULL, nvals = NULL;
4595                         delrec *d = NULL;
4596
4597                         if ( ml->sml_op == LDAP_MOD_REPLACE ) {
4598                                 vals = ml->sml_values;
4599                                 nvals = ml->sml_nvalues;
4600                                 ml->sml_values = NULL;
4601                                 ml->sml_nvalues = NULL;
4602                         }
4603
4604                         if ( ml->sml_values )
4605                                 d = dels;
4606
4607                         /* If we didn't delete the whole attribute */
4608                         if ( ml->sml_values && a ) {
4609                                 struct berval *mvals;
4610                                 int j;
4611
4612                                 if ( ml->sml_nvalues )
4613                                         mvals = ml->sml_nvalues;
4614                                 else
4615                                         mvals = ml->sml_values;
4616
4617                                 /* use the indexes we saved up above */
4618                                 for (i=0; i < d->nidx; i++) {
4619                                         struct berval bv = *mvals++;
4620                                         if ( a->a_desc->ad_type->sat_flags & SLAP_AT_ORDERED &&
4621                                                 bv.bv_val[0] == '{' ) {
4622                                                 ptr = strchr( bv.bv_val, '}' ) + 1;
4623                                                 bv.bv_len -= ptr - bv.bv_val;
4624                                                 bv.bv_val = ptr;
4625                                         }
4626                                         ca->line = bv.bv_val;
4627                                         ca->valx = d->idx[i];
4628                                         rc = config_del_vals( ct, ca );
4629                                         if ( rc != LDAP_SUCCESS ) break;
4630                                         if ( s )
4631                                                 s->a_flags |= SLAP_ATTR_IXDEL;
4632                                         for (j=i+1; j < d->nidx; j++)
4633                                                 if ( d->idx[j] >d->idx[i] )
4634                                                         d->idx[j]--;
4635                                 }
4636                         } else {
4637                                 ca->valx = -1;
4638                                 ca->line = NULL;
4639                                 rc = config_del_vals( ct, ca );
4640                                 if ( rc ) rc = LDAP_OTHER;
4641                                 if ( s )
4642                                         s->a_flags |= SLAP_ATTR_IXDEL;
4643                         }
4644                         if ( ml->sml_values ) {
4645                                 d = d->next;
4646                                 ch_free( dels );
4647                                 dels = d;
4648                         }
4649                         if ( ml->sml_op == LDAP_MOD_REPLACE ) {
4650                                 ml->sml_values = vals;
4651                                 ml->sml_nvalues = nvals;
4652                         }
4653                         if ( !vals || rc != LDAP_SUCCESS )
4654                                 break;
4655                         }
4656                         /* FALLTHRU: LDAP_MOD_REPLACE && vals */
4657
4658                 case LDAP_MOD_ADD:
4659                         for (i=0; ml->sml_values[i].bv_val; i++) {
4660                                 ca->line = ml->sml_values[i].bv_val;
4661                                 ca->valx = -1;
4662                                 rc = config_modify_add( ct, ca, ml->sml_desc, i );
4663                                 if ( rc )
4664                                         goto out;
4665                                 a->a_flags |= SLAP_ATTR_IXADD;
4666                         }
4667                         break;
4668                 }
4669         }
4670
4671 out:
4672         /* Undo for a failed operation */
4673         if ( rc != LDAP_SUCCESS ) {
4674                 for ( s = save_attrs; s; s = s->a_next ) {
4675                         if ( s->a_flags & SLAP_ATTR_IXDEL ) {
4676                                 s->a_flags &= ~(SLAP_ATTR_IXDEL|SLAP_ATTR_IXADD);
4677                                 ct = config_find_table( colst, nocs, s->a_desc, ca );
4678                                 a = attr_find( e->e_attrs, s->a_desc );
4679                                 if ( a ) {
4680                                         /* clear the flag so the add check below will skip it */
4681                                         a->a_flags &= ~(SLAP_ATTR_IXDEL|SLAP_ATTR_IXADD);
4682                                         ca->valx = -1;
4683                                         ca->line = NULL;
4684                                         config_del_vals( ct, ca );
4685                                 }
4686                                 for ( i=0; !BER_BVISNULL( &s->a_vals[i] ); i++ ) {
4687                                         ca->line = s->a_vals[i].bv_val;
4688                                         ca->valx = -1;
4689                                         config_modify_add( ct, ca, s->a_desc, i );
4690                                 }
4691                         }
4692                 }
4693                 for ( a = e->e_attrs; a; a = a->a_next ) {
4694                         if ( a->a_flags & SLAP_ATTR_IXADD ) {
4695                                 ct = config_find_table( colst, nocs, a->a_desc, ca );
4696                                 ca->valx = -1;
4697                                 ca->line = NULL;
4698                                 config_del_vals( ct, ca );
4699                                 s = attr_find( save_attrs, a->a_desc );
4700                                 if ( s ) {
4701                                         s->a_flags &= ~(SLAP_ATTR_IXDEL|SLAP_ATTR_IXADD);
4702                                         for ( i=0; !BER_BVISNULL( &s->a_vals[i] ); i++ ) {
4703                                                 ca->line = s->a_vals[i].bv_val;
4704                                                 ca->valx = -1;
4705                                                 config_modify_add( ct, ca, s->a_desc, i );
4706                                         }
4707                                 }
4708                         }
4709                 }
4710         }
4711
4712         if ( ca->cleanup )
4713                 ca->cleanup( ca );
4714 out_noop:
4715         if ( rc == LDAP_SUCCESS ) {
4716                 attrs_free( save_attrs );
4717         } else {
4718                 attrs_free( e->e_attrs );
4719                 e->e_attrs = save_attrs;
4720         }
4721         ch_free( ca->argv );
4722         if ( colst ) ch_free( colst );
4723         while( dels ) {
4724                 deltail = dels->next;
4725                 ch_free( dels );
4726                 dels = deltail;
4727         }
4728
4729         return rc;
4730 }
4731
4732 static int
4733 config_back_modify( Operation *op, SlapReply *rs )
4734 {
4735         CfBackInfo *cfb;
4736         CfEntryInfo *ce, *last;
4737         Modifications *ml;
4738         ConfigArgs ca = {0};
4739         struct berval rdn;
4740         char *ptr;
4741         AttributeDescription *rad = NULL;
4742
4743         cfb = (CfBackInfo *)op->o_bd->be_private;
4744
4745         ce = config_find_base( cfb->cb_root, &op->o_req_ndn, &last );
4746         if ( !ce ) {
4747                 if ( last )
4748                         rs->sr_matched = last->ce_entry->e_name.bv_val;
4749                 rs->sr_err = LDAP_NO_SUCH_OBJECT;
4750                 goto out;
4751         }
4752
4753         if ( !acl_check_modlist( op, ce->ce_entry, op->orm_modlist )) {
4754                 rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
4755                 goto out;
4756         }
4757
4758         /* Get type of RDN */
4759         rdn = ce->ce_entry->e_nname;
4760         ptr = strchr( rdn.bv_val, '=' );
4761         rdn.bv_len = ptr - rdn.bv_val;
4762         slap_bv2ad( &rdn, &rad, &rs->sr_text );
4763
4764         /* Some basic validation... */
4765         for ( ml = op->orm_modlist; ml; ml = ml->sml_next ) {
4766                 /* Don't allow Modify of RDN; must use ModRdn for that. */
4767                 if ( ml->sml_desc == rad ) {
4768                         rs->sr_err = LDAP_NOT_ALLOWED_ON_RDN;
4769                         rs->sr_text = "Use modrdn to change the entry name";
4770                         goto out;
4771                 }
4772         }
4773
4774         slap_mods_opattrs( op, &op->orm_modlist, 1 );
4775
4776         if ( !slapd_shutdown )
4777                 ldap_pvt_thread_pool_pause( &connection_pool );
4778
4779         /* Strategy:
4780          * 1) perform the Modify on the cached Entry.
4781          * 2) verify that the Entry still satisfies the schema.
4782          * 3) perform the individual config operations.
4783          * 4) store Modified entry in underlying LDIF backend.
4784          */
4785         rs->sr_err = config_modify_internal( ce, op, rs, &ca );
4786         if ( rs->sr_err ) {
4787                 rs->sr_text = ca.msg;
4788         } else if ( cfb->cb_use_ldif ) {
4789                 BackendDB *be = op->o_bd;
4790                 slap_callback sc = { NULL, slap_null_cb, NULL, NULL }, *scp;
4791                 struct berval dn, ndn;
4792
4793                 op->o_bd = &cfb->cb_db;
4794
4795                 dn = op->o_dn;
4796                 ndn = op->o_ndn;
4797                 op->o_dn = op->o_bd->be_rootdn;
4798                 op->o_ndn = op->o_bd->be_rootndn;
4799
4800                 scp = op->o_callback;
4801                 op->o_callback = &sc;
4802                 op->o_bd->be_modify( op, rs );
4803                 op->o_bd = be;
4804                 op->o_callback = scp;
4805                 op->o_dn = dn;
4806                 op->o_ndn = ndn;
4807         }
4808
4809         if ( !slapd_shutdown )
4810                 ldap_pvt_thread_pool_resume( &connection_pool );
4811 out:
4812         send_ldap_result( op, rs );
4813         slap_graduate_commit_csn( op );
4814         return rs->sr_err;
4815 }
4816
4817 static int
4818 config_back_modrdn( Operation *op, SlapReply *rs )
4819 {
4820         CfBackInfo *cfb;
4821         CfEntryInfo *ce, *last;
4822         struct berval rdn;
4823         int ixold, ixnew;
4824
4825         cfb = (CfBackInfo *)op->o_bd->be_private;
4826
4827         ce = config_find_base( cfb->cb_root, &op->o_req_ndn, &last );
4828         if ( !ce ) {
4829                 if ( last )
4830                         rs->sr_matched = last->ce_entry->e_name.bv_val;
4831                 rs->sr_err = LDAP_NO_SUCH_OBJECT;
4832                 goto out;
4833         }
4834         if ( !access_allowed( op, ce->ce_entry, slap_schema.si_ad_entry,
4835                 NULL, ACL_WRITE, NULL )) {
4836                 rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
4837                 goto out;
4838         }
4839         { Entry *parent;
4840                 if ( ce->ce_parent )
4841                         parent = ce->ce_parent->ce_entry;
4842                 else
4843                         parent = (Entry *)&slap_entry_root;
4844                 if ( !access_allowed( op, parent, slap_schema.si_ad_children,
4845                         NULL, ACL_WRITE, NULL )) {
4846                         rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
4847                         goto out;
4848                 }
4849         }
4850
4851         /* We don't allow moving objects to new parents.
4852          * Generally we only allow reordering a set of ordered entries.
4853          */
4854         if ( op->orr_newSup ) {
4855                 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
4856                 goto out;
4857         }
4858
4859         /* If newRDN == oldRDN, quietly succeed */
4860         dnRdn( &op->o_req_ndn, &rdn );
4861         if ( dn_match( &rdn, &op->orr_nnewrdn )) {
4862                 rs->sr_err = LDAP_SUCCESS;
4863                 goto out;
4864         }
4865
4866         /* Current behavior, subject to change as needed:
4867          *
4868          * For backends and overlays, we only allow renumbering.
4869          * For schema, we allow renaming with the same number.
4870          * Otherwise, the op is not allowed.
4871          */
4872
4873         if ( ce->ce_type == Cft_Schema ) {
4874                 char *ptr1, *ptr2;
4875                 int len;
4876
4877                 /* Can't alter the main cn=schema entry */
4878                 if ( ce->ce_parent->ce_type == Cft_Global ) {
4879                         rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
4880                         rs->sr_text = "renaming not allowed for this entry";
4881                         goto out;
4882                 }
4883
4884                 /* We could support this later if desired */
4885                 ptr1 = ber_bvchr( &rdn, '}' );
4886                 ptr2 = ber_bvchr( &op->orr_newrdn, '}' );
4887                 len = ptr1 - rdn.bv_val;
4888                 if ( len != ptr2 - op->orr_newrdn.bv_val ||
4889                         strncmp( rdn.bv_val, op->orr_newrdn.bv_val, len )) {
4890                         rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
4891                         rs->sr_text = "schema reordering not supported";
4892                         goto out;
4893                 }
4894         } else if ( ce->ce_type == Cft_Database ||
4895                 ce->ce_type == Cft_Overlay ) {
4896                 char *ptr1, *ptr2, *iptr1, *iptr2;
4897                 int len1, len2;
4898
4899                 iptr2 = ber_bvchr( &op->orr_newrdn, '=' ) + 1;
4900                 if ( *iptr2 != '{' ) {
4901                         rs->sr_err = LDAP_NAMING_VIOLATION;
4902                         rs->sr_text = "new ordering index is required";
4903                         goto out;
4904                 }
4905                 iptr2++;
4906                 iptr1 = ber_bvchr( &rdn, '{' ) + 1;
4907                 ptr1 = ber_bvchr( &rdn, '}' );
4908                 ptr2 = ber_bvchr( &op->orr_newrdn, '}' );
4909                 if ( !ptr2 ) {
4910                         rs->sr_err = LDAP_NAMING_VIOLATION;
4911                         rs->sr_text = "new ordering index is required";
4912                         goto out;
4913                 }
4914
4915                 len1 = ptr1 - rdn.bv_val;
4916                 len2 = ptr2 - op->orr_newrdn.bv_val;
4917
4918                 if ( rdn.bv_len - len1 != op->orr_newrdn.bv_len - len2 ||
4919                         strncmp( ptr1, ptr2, rdn.bv_len - len1 )) {
4920                         rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
4921                         rs->sr_text = "changing database/overlay type not allowed";
4922                         goto out;
4923                 }
4924                 ixold = strtol( iptr1, NULL, 0 );
4925                 ixnew = strtol( iptr2, &ptr1, 0 );
4926                 if ( ptr1 != ptr2 || ixold < 0 || ixnew < 0 ) {
4927                         rs->sr_err = LDAP_NAMING_VIOLATION;
4928                         goto out;
4929                 }
4930                 /* config DB is always 0, cannot be changed */
4931                 if ( ce->ce_type == Cft_Database && ( ixold == 0 || ixnew == 0 )) {
4932                         rs->sr_err = LDAP_CONSTRAINT_VIOLATION;
4933                         goto out;
4934                 }
4935         } else {
4936                 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
4937                 rs->sr_text = "renaming not supported for this entry";
4938                 goto out;
4939         }
4940
4941         ldap_pvt_thread_pool_pause( &connection_pool );
4942
4943         if ( ce->ce_type == Cft_Schema ) {
4944                 req_modrdn_s modr = op->oq_modrdn;
4945                 struct berval rdn;
4946                 Attribute *a;
4947                 rs->sr_err = config_rename_attr( rs, ce->ce_entry, &rdn, &a );
4948                 if ( rs->sr_err == LDAP_SUCCESS ) {
4949                         rs->sr_err = config_rename_one( op, rs, ce->ce_entry,
4950                                 ce->ce_parent, a, &op->orr_newrdn, &op->orr_nnewrdn,
4951                                 cfb->cb_use_ldif );
4952                 }
4953                 op->oq_modrdn = modr;
4954         } else {
4955                 CfEntryInfo *ce2, *cebase, **cprev, **cbprev, *ceold;
4956                 req_modrdn_s modr = op->oq_modrdn;
4957                 int i;
4958
4959                 /* Advance to first of this type */
4960                 cprev = &ce->ce_parent->ce_kids;
4961                 for ( ce2 = *cprev; ce2 && ce2->ce_type != ce->ce_type; ) {
4962                         cprev = &ce2->ce_sibs;
4963                         ce2 = ce2->ce_sibs;
4964                 }
4965                 /* Skip the -1 entry */
4966                 if ( ce->ce_type == Cft_Database ) {
4967                         cprev = &ce2->ce_sibs;
4968                         ce2 = ce2->ce_sibs;
4969                 }
4970                 cebase = ce2;
4971                 cbprev = cprev;
4972
4973                 /* Remove from old slot */
4974                 for ( ce2 = *cprev; ce2 && ce2 != ce; ce2 = ce2->ce_sibs )
4975                         cprev = &ce2->ce_sibs;
4976                 *cprev = ce->ce_sibs;
4977                 ceold = ce->ce_sibs;
4978
4979                 /* Insert into new slot */
4980                 cprev = cbprev;
4981                 for ( i=0; i<ixnew; i++ ) {
4982                         ce2 = *cprev;
4983                         if ( !ce2 )
4984                                 break;
4985                         cprev = &ce2->ce_sibs;
4986                 }
4987                 ce->ce_sibs = *cprev;
4988                 *cprev = ce;
4989
4990                 ixnew = i;
4991
4992                 /* NOTE: These should be encoded in the OC tables, not inline here */
4993                 if ( ce->ce_type == Cft_Database )
4994                         backend_db_move( ce->ce_be, ixnew );
4995                 else if ( ce->ce_type == Cft_Overlay )
4996                         overlay_move( ce->ce_be, (slap_overinst *)ce->ce_bi, ixnew );
4997                         
4998                 if ( ixold < ixnew ) {
4999                         rs->sr_err = config_rename_del( op, rs, ce, ceold, ixold,
5000                                 cfb->cb_use_ldif );
5001                 } else {
5002                         rs->sr_err = config_rename_add( op, rs, ce, ixnew, 1,
5003                                 ixold - ixnew, cfb->cb_use_ldif );
5004                 }
5005                 op->oq_modrdn = modr;
5006         }
5007
5008         ldap_pvt_thread_pool_resume( &connection_pool );
5009 out:
5010         send_ldap_result( op, rs );
5011         return rs->sr_err;
5012 }
5013
5014 static int
5015 config_back_delete( Operation *op, SlapReply *rs )
5016 {
5017         send_ldap_error( op, rs, LDAP_UNWILLING_TO_PERFORM, NULL );
5018         return rs->sr_err;
5019 }
5020
5021 static int
5022 config_back_search( Operation *op, SlapReply *rs )
5023 {
5024         CfBackInfo *cfb;
5025         CfEntryInfo *ce, *last;
5026         slap_mask_t mask;
5027
5028         cfb = (CfBackInfo *)op->o_bd->be_private;
5029
5030         ce = config_find_base( cfb->cb_root, &op->o_req_ndn, &last );
5031         if ( !ce ) {
5032                 if ( last )
5033                         rs->sr_matched = last->ce_entry->e_name.bv_val;
5034                 rs->sr_err = LDAP_NO_SUCH_OBJECT;
5035                 goto out;
5036         }
5037         if ( !access_allowed_mask( op, ce->ce_entry, slap_schema.si_ad_entry, NULL,
5038                 ACL_SEARCH, NULL, &mask ))
5039         {
5040                 if ( !ACL_GRANT( mask, ACL_DISCLOSE )) {
5041                         rs->sr_err = LDAP_NO_SUCH_OBJECT;
5042                 } else {
5043                         rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
5044                 }
5045                 goto out;
5046         }
5047         switch ( op->ors_scope ) {
5048         case LDAP_SCOPE_BASE:
5049         case LDAP_SCOPE_SUBTREE:
5050                 config_send( op, rs, ce, 0 );
5051                 break;
5052                 
5053         case LDAP_SCOPE_ONELEVEL:
5054                 for (ce = ce->ce_kids; ce; ce=ce->ce_sibs) {
5055                         config_send( op, rs, ce, 1 );
5056                 }
5057                 break;
5058         }
5059                 
5060         rs->sr_err = LDAP_SUCCESS;
5061 out:
5062         send_ldap_result( op, rs );
5063         return 0;
5064 }
5065
5066 /* no-op, we never free entries */
5067 int config_entry_release(
5068         Operation *op,
5069         Entry *e,
5070         int rw )
5071 {
5072         if ( !e->e_private ) {
5073                 entry_free( e );
5074         }
5075         return LDAP_SUCCESS;
5076 }
5077
5078 /* return LDAP_SUCCESS IFF we can retrieve the specified entry.
5079  */
5080 int config_back_entry_get(
5081         Operation *op,
5082         struct berval *ndn,
5083         ObjectClass *oc,
5084         AttributeDescription *at,
5085         int rw,
5086         Entry **ent )
5087 {
5088         CfBackInfo *cfb;
5089         CfEntryInfo *ce, *last;
5090
5091         cfb = (CfBackInfo *)op->o_bd->be_private;
5092
5093         ce = config_find_base( cfb->cb_root, ndn, &last );
5094         if ( ce ) {
5095                 *ent = ce->ce_entry;
5096                 if ( *ent && oc && !is_entry_objectclass_or_sub( *ent, oc ) ) {
5097                         *ent = NULL;
5098                 }
5099         }
5100
5101         return ( *ent == NULL ? 1 : 0 );
5102 }
5103
5104 static void
5105 config_build_attrs( Entry *e, AttributeType **at, AttributeDescription *ad,
5106         ConfigTable *ct, ConfigArgs *c )
5107 {
5108         int i, rc;
5109
5110         for (; at && *at; at++) {
5111                 /* Skip the naming attr */
5112                 if ((*at)->sat_ad == ad || (*at)->sat_ad == slap_schema.si_ad_cn )
5113                         continue;
5114                 for (i=0;ct[i].name;i++) {
5115                         if (ct[i].ad == (*at)->sat_ad) {
5116                                 rc = config_get_vals(&ct[i], c);
5117                                 /* NOTE: tolerate that config_get_vals()
5118                                  * returns success with no values */
5119                                 if (rc == LDAP_SUCCESS && c->rvalue_vals != NULL ) {
5120                                         if ( c->rvalue_nvals )
5121                                                 attr_merge(e, ct[i].ad, c->rvalue_vals,
5122                                                         c->rvalue_nvals);
5123                                         else
5124                                                 attr_merge_normalize(e, ct[i].ad,
5125                                                         c->rvalue_vals, NULL);
5126                                         ber_bvarray_free( c->rvalue_nvals );
5127                                         ber_bvarray_free( c->rvalue_vals );
5128                                 }
5129                                 break;
5130                         }
5131                 }
5132         }
5133 }
5134
5135 Entry *
5136 config_build_entry( Operation *op, SlapReply *rs, CfEntryInfo *parent,
5137         ConfigArgs *c, struct berval *rdn, ConfigOCs *main, ConfigOCs *extra )
5138 {
5139         Entry *e = entry_alloc();
5140         CfEntryInfo *ce = ch_calloc( 1, sizeof(CfEntryInfo) );
5141         struct berval val;
5142         struct berval ad_name;
5143         AttributeDescription *ad = NULL;
5144         int rc;
5145         char *ptr;
5146         const char *text;
5147         Attribute *oc_at;
5148         struct berval pdn;
5149         ObjectClass *oc;
5150         CfEntryInfo *ceprev = NULL;
5151
5152         Debug( LDAP_DEBUG_TRACE, "config_build_entry: \"%s\"\n", rdn->bv_val, 0, 0);
5153         e->e_private = ce;
5154         ce->ce_entry = e;
5155         ce->ce_type = main->co_type;
5156         ce->ce_parent = parent;
5157         if ( parent ) {
5158                 pdn = parent->ce_entry->e_nname;
5159                 if ( parent->ce_kids )
5160                         for ( ceprev = parent->ce_kids; ceprev->ce_sibs &&
5161                                 ceprev->ce_type <= ce->ce_type;
5162                                 ceprev = ceprev->ce_sibs );
5163         } else {
5164                 BER_BVZERO( &pdn );
5165         }
5166
5167         ce->ce_private = c->private;
5168         ce->ce_be = c->be;
5169         ce->ce_bi = c->bi;
5170
5171         build_new_dn( &e->e_name, &pdn, rdn, NULL );
5172         ber_dupbv( &e->e_nname, &e->e_name );
5173
5174         attr_merge_normalize_one(e, slap_schema.si_ad_objectClass,
5175                 main->co_name, NULL );
5176         if ( extra )
5177                 attr_merge_normalize_one(e, slap_schema.si_ad_objectClass,
5178                         extra->co_name, NULL );
5179         ptr = strchr(rdn->bv_val, '=');
5180         ad_name.bv_val = rdn->bv_val;
5181         ad_name.bv_len = ptr - rdn->bv_val;
5182         rc = slap_bv2ad( &ad_name, &ad, &text );
5183         if ( rc ) {
5184                 return NULL;
5185         }
5186         val.bv_val = ptr+1;
5187         val.bv_len = rdn->bv_len - (val.bv_val - rdn->bv_val);
5188         attr_merge_normalize_one(e, ad, &val, NULL );
5189
5190         oc = main->co_oc;
5191         c->table = main->co_type;
5192         if ( oc->soc_required )
5193                 config_build_attrs( e, oc->soc_required, ad, main->co_table, c );
5194
5195         if ( oc->soc_allowed )
5196                 config_build_attrs( e, oc->soc_allowed, ad, main->co_table, c );
5197
5198         if ( extra ) {
5199                 oc = extra->co_oc;
5200                 c->table = extra->co_type;
5201                 if ( oc->soc_required )
5202                         config_build_attrs( e, oc->soc_required, ad, extra->co_table, c );
5203
5204                 if ( oc->soc_allowed )
5205                         config_build_attrs( e, oc->soc_allowed, ad, extra->co_table, c );
5206         }
5207
5208         oc_at = attr_find( e->e_attrs, slap_schema.si_ad_objectClass );
5209         rc = structural_class(oc_at->a_vals, &oc, NULL, &text, c->msg,
5210                 sizeof(c->msg), op ? op->o_tmpmemctx : NULL );
5211         attr_merge_normalize_one(e, slap_schema.si_ad_structuralObjectClass, &oc->soc_cname, NULL );
5212         if ( op && !op->o_noop ) {
5213                 op->ora_e = e;
5214                 op->ora_modlist = NULL;
5215                 op->o_bd->be_add( op, rs );
5216                 if ( ( rs->sr_err != LDAP_SUCCESS ) 
5217                                 && (rs->sr_err != LDAP_ALREADY_EXISTS) ) {
5218                         return NULL;
5219                 }
5220         }
5221         if ( ceprev ) {
5222                 ce->ce_sibs = ceprev->ce_sibs;
5223                 ceprev->ce_sibs = ce;
5224         } else if ( parent ) {
5225                 ce->ce_sibs = parent->ce_kids;
5226                 parent->ce_kids = ce;
5227         }
5228
5229         return e;
5230 }
5231
5232 static int
5233 config_build_schema_inc( ConfigArgs *c, CfEntryInfo *ceparent,
5234         Operation *op, SlapReply *rs )
5235 {
5236         Entry *e;
5237         ConfigFile *cf = c->private;
5238         char *ptr;
5239         struct berval bv;
5240
5241         for (; cf; cf=cf->c_sibs, c->depth++) {
5242                 if ( !cf->c_at_head && !cf->c_cr_head && !cf->c_oc_head &&
5243                         !cf->c_om_head ) continue;
5244                 c->value_dn.bv_val = c->log;
5245                 LUTIL_SLASHPATH( cf->c_file.bv_val );
5246                 bv.bv_val = strrchr(cf->c_file.bv_val, LDAP_DIRSEP[0]);
5247                 if ( !bv.bv_val ) {
5248                         bv = cf->c_file;
5249                 } else {
5250                         bv.bv_val++;
5251                         bv.bv_len = cf->c_file.bv_len - (bv.bv_val - cf->c_file.bv_val);
5252                 }
5253                 ptr = strchr( bv.bv_val, '.' );
5254                 if ( ptr )
5255                         bv.bv_len = ptr - bv.bv_val;
5256                 c->value_dn.bv_len = snprintf(c->value_dn.bv_val, sizeof( c->log ), "cn=" SLAP_X_ORDERED_FMT, c->depth);
5257                 if ( c->value_dn.bv_len >= sizeof( c->log ) ) {
5258                         /* FIXME: how can indicate error? */
5259                         return -1;
5260                 }
5261                 strncpy( c->value_dn.bv_val + c->value_dn.bv_len, bv.bv_val,
5262                         bv.bv_len );
5263                 c->value_dn.bv_len += bv.bv_len;
5264                 c->value_dn.bv_val[c->value_dn.bv_len] ='\0';
5265
5266                 c->private = cf;
5267                 e = config_build_entry( op, rs, ceparent, c, &c->value_dn,
5268                         &CFOC_SCHEMA, NULL );
5269                 if ( !e ) {
5270                         return -1;
5271                 } else if ( e && cf->c_kids ) {
5272                         c->private = cf->c_kids;
5273                         config_build_schema_inc( c, e->e_private, op, rs );
5274                 }
5275         }
5276         return 0;
5277 }
5278
5279 #ifdef SLAPD_MODULES
5280
5281 static int
5282 config_build_modules( ConfigArgs *c, CfEntryInfo *ceparent,
5283         Operation *op, SlapReply *rs )
5284 {
5285         int i;
5286         ModPaths *mp;
5287
5288         for (i=0, mp=&modpaths; mp; mp=mp->mp_next, i++) {
5289                 if ( BER_BVISNULL( &mp->mp_path ) && !mp->mp_loads )
5290                         continue;
5291                 c->value_dn.bv_val = c->log;
5292                 c->value_dn.bv_len = snprintf(c->value_dn.bv_val, sizeof( c->log ), "cn=module" SLAP_X_ORDERED_FMT, i);
5293                 if ( c->value_dn.bv_len >= sizeof( c->log ) ) {
5294                         /* FIXME: how can indicate error? */
5295                         return -1;
5296                 }
5297                 c->private = mp;
5298                 if ( ! config_build_entry( op, rs, ceparent, c, &c->value_dn, &CFOC_MODULE, NULL )) {
5299                         return -1;
5300                 }
5301         }
5302         return 0;
5303 }
5304 #endif
5305
5306 static int
5307 config_check_schema(Operation *op, CfBackInfo *cfb)
5308 {
5309         struct berval schema_dn = BER_BVC(SCHEMA_RDN "," CONFIG_RDN);
5310         ConfigArgs c = {0};
5311         CfEntryInfo *ce, *last;
5312         Entry *e;
5313
5314         /* If there's no root entry, we must be in the midst of converting */
5315         if ( !cfb->cb_root )
5316                 return 0;
5317
5318         /* Make sure the main schema entry exists */
5319         ce = config_find_base( cfb->cb_root, &schema_dn, &last );
5320         if ( ce ) {
5321                 Attribute *a;
5322                 struct berval *bv;
5323
5324                 e = ce->ce_entry;
5325
5326                 /* Make sure it's up to date */
5327                 if ( cf_om_tail != om_sys_tail ) {
5328                         a = attr_find( e->e_attrs, cfAd_om );
5329                         if ( a ) {
5330                                 if ( a->a_nvals != a->a_vals )
5331                                         ber_bvarray_free( a->a_nvals );
5332                                 ber_bvarray_free( a->a_vals );
5333                                 a->a_vals = NULL;
5334                                 a->a_nvals = NULL;
5335                         }
5336                         oidm_unparse( &bv, NULL, NULL, 1 );
5337                         attr_merge_normalize( e, cfAd_om, bv, NULL );
5338                         ber_bvarray_free( bv );
5339                         cf_om_tail = om_sys_tail;
5340                 }
5341                 if ( cf_at_tail != at_sys_tail ) {
5342                         a = attr_find( e->e_attrs, cfAd_attr );
5343                         if ( a ) {
5344                                 if ( a->a_nvals != a->a_vals )
5345                                         ber_bvarray_free( a->a_nvals );
5346                                 ber_bvarray_free( a->a_vals );
5347                                 a->a_vals = NULL;
5348                                 a->a_nvals = NULL;
5349                         }
5350                         at_unparse( &bv, NULL, NULL, 1 );
5351                         attr_merge_normalize( e, cfAd_attr, bv, NULL );
5352                         ber_bvarray_free( bv );
5353                         cf_at_tail = at_sys_tail;
5354                 }
5355                 if ( cf_oc_tail != oc_sys_tail ) {
5356                         a = attr_find( e->e_attrs, cfAd_oc );
5357                         if ( a ) {
5358                                 if ( a->a_nvals != a->a_vals )
5359                                         ber_bvarray_free( a->a_nvals );
5360                                 ber_bvarray_free( a->a_vals );
5361                                 a->a_vals = NULL;
5362                                 a->a_nvals = NULL;
5363                         }
5364                         oc_unparse( &bv, NULL, NULL, 1 );
5365                         attr_merge_normalize( e, cfAd_oc, bv, NULL );
5366                         ber_bvarray_free( bv );
5367                         cf_oc_tail = oc_sys_tail;
5368                 }
5369         } else {
5370                 SlapReply rs = {REP_RESULT};
5371                 c.private = NULL;
5372                 e = config_build_entry( op, &rs, cfb->cb_root, &c, &schema_rdn,
5373                         &CFOC_SCHEMA, NULL );
5374                 if ( !e ) {
5375                         return -1;
5376                 }
5377                 ce = e->e_private;
5378                 ce->ce_private = cfb->cb_config;
5379                 cf_at_tail = at_sys_tail;
5380                 cf_oc_tail = oc_sys_tail;
5381                 cf_om_tail = om_sys_tail;
5382         }
5383         return 0;
5384 }
5385
5386 static const char *defacl[] = {
5387         NULL, "to", "*", "by", "*", "none", NULL
5388 };
5389
5390 static int
5391 config_back_db_open( BackendDB *be )
5392 {
5393         CfBackInfo *cfb = be->be_private;
5394         struct berval rdn;
5395         Entry *e, *parent;
5396         CfEntryInfo *ce, *ceparent;
5397         int i, unsupp = 0;
5398         BackendInfo *bi;
5399         ConfigArgs c;
5400         Connection conn = {0};
5401         OperationBuffer opbuf;
5402         Operation *op;
5403         slap_callback cb = { NULL, slap_null_cb, NULL, NULL };
5404         SlapReply rs = {REP_RESULT};
5405         void *thrctx = NULL;
5406
5407         Debug( LDAP_DEBUG_TRACE, "config_back_db_open\n", 0, 0, 0);
5408
5409         /* If we have no explicitly configured ACLs, don't just use
5410          * the global ACLs. Explicitly deny access to everything.
5411          */
5412         if ( frontendDB->be_acl && be->be_acl == frontendDB->be_acl ) {
5413                 parse_acl(be, "config_back_db_open", 0, 6, (char **)defacl, 0 );
5414         }
5415
5416         thrctx = ldap_pvt_thread_pool_context();
5417         connection_fake_init( &conn, &opbuf, thrctx );
5418         op = &opbuf.ob_op;
5419
5420         op->o_tag = LDAP_REQ_ADD;
5421         op->o_callback = &cb;
5422         op->o_bd = &cfb->cb_db;
5423         op->o_dn = op->o_bd->be_rootdn;
5424         op->o_ndn = op->o_bd->be_rootndn;
5425
5426         if ( !cfb->cb_use_ldif ) {
5427                 op->o_noop = 1;
5428         }
5429
5430         /* If we read the config from back-ldif, do some quick sanity checks */
5431         if ( cfb->cb_got_ldif ) {
5432                 return config_check_schema( op, cfb );
5433         }
5434
5435         /* create root of tree */
5436         rdn = config_rdn;
5437         c.private = cfb->cb_config;
5438         c.be = frontendDB;
5439         e = config_build_entry( op, &rs, NULL, &c, &rdn, &CFOC_GLOBAL, NULL );
5440         if ( !e ) {
5441                 return -1;
5442         }
5443         ce = e->e_private;
5444         cfb->cb_root = ce;
5445
5446         parent = e;
5447         ceparent = ce;
5448
5449 #ifdef SLAPD_MODULES
5450         /* Create Module nodes... */
5451         if ( modpaths.mp_loads ) {
5452                 if ( config_build_modules( &c, ceparent, op, &rs ) ){
5453                         return -1;
5454                 }
5455         }
5456 #endif
5457
5458         /* Create schema nodes... cn=schema will contain the hardcoded core
5459          * schema, read-only. Child objects will contain runtime loaded schema
5460          * files.
5461          */
5462         rdn = schema_rdn;
5463         c.private = NULL;
5464         e = config_build_entry( op, &rs, ceparent, &c, &rdn, &CFOC_SCHEMA, NULL );
5465         if ( !e ) {
5466                 return -1;
5467         }
5468         ce = e->e_private;
5469         ce->ce_private = cfb->cb_config;
5470         cf_at_tail = at_sys_tail;
5471         cf_oc_tail = oc_sys_tail;
5472         cf_om_tail = om_sys_tail;
5473
5474         /* Create schema nodes for included schema... */
5475         if ( cfb->cb_config->c_kids ) {
5476                 c.depth = 0;
5477                 c.private = cfb->cb_config->c_kids;
5478                 if (config_build_schema_inc( &c, ce, op, &rs )) {
5479                         return -1;
5480                 }
5481         }
5482
5483         /* Create backend nodes. Skip if they don't provide a cf_table.
5484          * There usually aren't any of these.
5485          */
5486         
5487         c.line = 0;
5488         LDAP_STAILQ_FOREACH( bi, &backendInfo, bi_next) {
5489                 if (!bi->bi_cf_ocs) {
5490                         /* If it only supports the old config mech, complain. */
5491                         if ( bi->bi_config ) {
5492                                 Debug( LDAP_DEBUG_ANY,
5493                                         "WARNING: No dynamic config support for backend %s.\n",
5494                                         bi->bi_type, 0, 0 );
5495                                 unsupp++;
5496                         }
5497                         continue;
5498                 }
5499                 if (!bi->bi_private) continue;
5500
5501                 rdn.bv_val = c.log;
5502                 rdn.bv_len = snprintf(rdn.bv_val, sizeof( c.log ),
5503                         "%s=%s", cfAd_backend->ad_cname.bv_val, bi->bi_type);
5504                 if ( rdn.bv_len >= sizeof( c.log ) ) {
5505                         /* FIXME: holler ... */ ;
5506                 }
5507                 c.bi = bi;
5508                 e = config_build_entry( op, &rs, ceparent, &c, &rdn, &CFOC_BACKEND,
5509                         bi->bi_cf_ocs );
5510                 if ( !e ) {
5511                         return -1;
5512                 }
5513         }
5514
5515         /* Create database nodes... */
5516         frontendDB->be_cf_ocs = &CFOC_FRONTEND;
5517         LDAP_STAILQ_NEXT(frontendDB, be_next) = LDAP_STAILQ_FIRST(&backendDB);
5518         for ( i = -1, be = frontendDB ; be;
5519                 i++, be = LDAP_STAILQ_NEXT( be, be_next )) {
5520                 slap_overinfo *oi = NULL;
5521
5522                 if ( overlay_is_over( be )) {
5523                         oi = be->bd_info->bi_private;
5524                         bi = oi->oi_orig;
5525                 } else {
5526                         bi = be->bd_info;
5527                 }
5528
5529                 /* If this backend supports the old config mechanism, but not
5530                  * the new mech, complain.
5531                  */
5532                 if ( !be->be_cf_ocs && bi->bi_db_config ) {
5533                         Debug( LDAP_DEBUG_ANY,
5534                                 "WARNING: No dynamic config support for database %s.\n",
5535                                 bi->bi_type, 0, 0 );
5536                         unsupp++;
5537                 }
5538                 rdn.bv_val = c.log;
5539                 rdn.bv_len = snprintf(rdn.bv_val, sizeof( c.log ),
5540                         "%s=" SLAP_X_ORDERED_FMT "%s", cfAd_database->ad_cname.bv_val,
5541                         i, bi->bi_type);
5542                 if ( rdn.bv_len >= sizeof( c.log ) ) {
5543                         /* FIXME: holler ... */ ;
5544                 }
5545                 c.be = be;
5546                 c.bi = bi;
5547                 e = config_build_entry( op, &rs, ceparent, &c, &rdn, &CFOC_DATABASE,
5548                         be->be_cf_ocs );
5549                 if ( !e ) {
5550                         return -1;
5551                 }
5552                 ce = e->e_private;
5553                 if ( be->be_cf_ocs && be->be_cf_ocs->co_cfadd )
5554                         be->be_cf_ocs->co_cfadd( op, &rs, e, &c );
5555                 /* Iterate through overlays */
5556                 if ( oi ) {
5557                         slap_overinst *on;
5558                         Entry *oe;
5559                         int j;
5560
5561                         for (j=0,on=oi->oi_list; on; j++,on=on->on_next) {
5562                                 if ( on->on_bi.bi_db_config && !on->on_bi.bi_cf_ocs ) {
5563                                         Debug( LDAP_DEBUG_ANY,
5564                                                 "WARNING: No dynamic config support for overlay %s.\n",
5565                                                 on->on_bi.bi_type, 0, 0 );
5566                                         unsupp++;
5567                                 }
5568                                 rdn.bv_val = c.log;
5569                                 rdn.bv_len = snprintf(rdn.bv_val, sizeof( c.log ),
5570                                         "%s=" SLAP_X_ORDERED_FMT "%s",
5571                                         cfAd_overlay->ad_cname.bv_val, j, on->on_bi.bi_type );
5572                                 if ( rdn.bv_len >= sizeof( c.log ) ) {
5573                                         /* FIXME: holler ... */ ;
5574                                 }
5575                                 c.be = be;
5576                                 c.bi = &on->on_bi;
5577                                 oe = config_build_entry( op, &rs, ce, &c, &rdn,
5578                                         &CFOC_OVERLAY, c.bi->bi_cf_ocs );
5579                                 if ( !oe ) {
5580                                         return -1;
5581                                 }
5582                                 if ( c.bi->bi_cf_ocs && c.bi->bi_cf_ocs->co_cfadd )
5583                                         c.bi->bi_cf_ocs->co_cfadd( op, &rs, oe, &c );
5584                         }
5585                 }
5586         }
5587         if ( thrctx )
5588                 ldap_pvt_thread_pool_context_reset( thrctx );
5589
5590         if ( unsupp  && cfb->cb_use_ldif ) {
5591                 Debug( LDAP_DEBUG_ANY, "\nWARNING: The converted cn=config "
5592                         "directory is incomplete and may not work.\n\n", 0, 0, 0 );
5593         }
5594
5595         return 0;
5596 }
5597
5598 static void
5599 cfb_free_cffile( ConfigFile *cf )
5600 {
5601         ConfigFile *next;
5602
5603         for (; cf; cf=next) {
5604                 next = cf->c_sibs;
5605                 if ( cf->c_kids )
5606                         cfb_free_cffile( cf->c_kids );
5607                 ch_free( cf->c_file.bv_val );
5608                 ber_bvarray_free( cf->c_dseFiles );
5609                 ch_free( cf );
5610         }
5611 }
5612
5613 static void
5614 cfb_free_entries( CfEntryInfo *ce )
5615 {
5616         CfEntryInfo *next;
5617
5618         for (; ce; ce=next) {
5619                 next = ce->ce_sibs;
5620                 if ( ce->ce_kids )
5621                         cfb_free_entries( ce->ce_kids );
5622                 ce->ce_entry->e_private = NULL;
5623                 entry_free( ce->ce_entry );
5624                 ch_free( ce );
5625         }
5626 }
5627
5628 static int
5629 config_back_db_close( BackendDB *be )
5630 {
5631         CfBackInfo *cfb = be->be_private;
5632
5633         cfb_free_entries( cfb->cb_root );
5634         cfb->cb_root = NULL;
5635
5636         if ( cfb->cb_db.bd_info ) {
5637                 backend_shutdown( &cfb->cb_db );
5638         }
5639
5640         return 0;
5641 }
5642
5643 static int
5644 config_back_db_destroy( BackendDB *be )
5645 {
5646         CfBackInfo *cfb = be->be_private;
5647
5648         cfb_free_cffile( cfb->cb_config );
5649
5650         ch_free( cfdir.bv_val );
5651
5652         avl_free( CfOcTree, NULL );
5653
5654         if ( cfb->cb_db.bd_info ) {
5655                 cfb->cb_db.be_suffix = NULL;
5656                 cfb->cb_db.be_nsuffix = NULL;
5657                 BER_BVZERO( &cfb->cb_db.be_rootdn );
5658                 BER_BVZERO( &cfb->cb_db.be_rootndn );
5659
5660                 backend_destroy_one( &cfb->cb_db, 0 );
5661         }
5662
5663         loglevel_destroy();
5664
5665         return 0;
5666 }
5667
5668 static int
5669 config_back_db_init( BackendDB *be )
5670 {
5671         struct berval dn;
5672         CfBackInfo *cfb;
5673
5674         cfb = &cfBackInfo;
5675         cfb->cb_config = ch_calloc( 1, sizeof(ConfigFile));
5676         cfn = cfb->cb_config;
5677         be->be_private = cfb;
5678
5679         ber_dupbv( &be->be_rootdn, &config_rdn );
5680         ber_dupbv( &be->be_rootndn, &be->be_rootdn );
5681         ber_dupbv( &dn, &be->be_rootdn );
5682         ber_bvarray_add( &be->be_suffix, &dn );
5683         ber_dupbv( &dn, &be->be_rootdn );
5684         ber_bvarray_add( &be->be_nsuffix, &dn );
5685
5686         /* Hide from namingContexts */
5687         SLAP_BFLAGS(be) |= SLAP_BFLAG_CONFIG;
5688
5689         return 0;
5690 }
5691
5692 static int
5693 config_back_destroy( BackendInfo *bi )
5694 {
5695         ldif_must_b64_encode_release();
5696         return 0;
5697 }
5698
5699 static int
5700 config_tool_entry_open( BackendDB *be, int mode )
5701 {
5702         CfBackInfo *cfb = be->be_private;
5703         BackendInfo *bi = cfb->cb_db.bd_info;
5704
5705         if ( bi && bi->bi_tool_entry_open )
5706                 return bi->bi_tool_entry_open( &cfb->cb_db, mode );
5707         else
5708                 return -1;
5709         
5710 }
5711
5712 static int
5713 config_tool_entry_close( BackendDB *be )
5714 {
5715         CfBackInfo *cfb = be->be_private;
5716         BackendInfo *bi = cfb->cb_db.bd_info;
5717
5718         if ( bi && bi->bi_tool_entry_close )
5719                 return bi->bi_tool_entry_close( &cfb->cb_db );
5720         else
5721                 return -1;
5722 }
5723
5724 static ID
5725 config_tool_entry_first( BackendDB *be )
5726 {
5727         CfBackInfo *cfb = be->be_private;
5728         BackendInfo *bi = cfb->cb_db.bd_info;
5729
5730         if ( bi && bi->bi_tool_entry_first )
5731                 return bi->bi_tool_entry_first( &cfb->cb_db );
5732         else
5733                 return NOID;
5734 }
5735
5736 static ID
5737 config_tool_entry_next( BackendDB *be )
5738 {
5739         CfBackInfo *cfb = be->be_private;
5740         BackendInfo *bi = cfb->cb_db.bd_info;
5741
5742         if ( bi && bi->bi_tool_entry_next )
5743                 return bi->bi_tool_entry_next( &cfb->cb_db );
5744         else
5745                 return NOID;
5746 }
5747
5748 static Entry *
5749 config_tool_entry_get( BackendDB *be, ID id )
5750 {
5751         CfBackInfo *cfb = be->be_private;
5752         BackendInfo *bi = cfb->cb_db.bd_info;
5753
5754         if ( bi && bi->bi_tool_entry_get )
5755                 return bi->bi_tool_entry_get( &cfb->cb_db, id );
5756         else
5757                 return NULL;
5758 }
5759
5760 static int entry_put_got_frontend=0;
5761 static int entry_put_got_config=0;
5762 static ID
5763 config_tool_entry_put( BackendDB *be, Entry *e, struct berval *text )
5764 {
5765         CfBackInfo *cfb = be->be_private;
5766         BackendInfo *bi = cfb->cb_db.bd_info;
5767         int rc;
5768         struct berval rdn, vals[ 2 ];
5769         ConfigArgs ca;
5770         OperationBuffer opbuf;
5771         Entry *ce;
5772         Connection conn = {0};
5773         Operation *op = NULL;
5774         void *thrctx;
5775
5776         /* Create entry for frontend database if it does not exist already */
5777         if ( !entry_put_got_frontend ) {
5778                 if ( !strncmp( e->e_nname.bv_val, "olcDatabase", 
5779                                 STRLENOF( "olcDatabase" ))) {
5780                         if ( strncmp( e->e_nname.bv_val + 
5781                                         STRLENOF( "olcDatabase" ), "={-1}frontend",
5782                                         STRLENOF( "={-1}frontend" )) && 
5783                                         strncmp( e->e_nname.bv_val + 
5784                                         STRLENOF( "olcDatabase" ), "=frontend",
5785                                         STRLENOF( "=frontend" ))) {
5786                                 vals[1].bv_len = 0;
5787                                 vals[1].bv_val = NULL;
5788                                 memset( &ca, 0, sizeof(ConfigArgs));
5789                                 ca.be = frontendDB;
5790                                 ca.bi = frontendDB->bd_info;
5791                                 ca.be->be_cf_ocs = &CFOC_FRONTEND;
5792                                 rdn.bv_val = ca.log;
5793                                 rdn.bv_len = snprintf(rdn.bv_val, sizeof( ca.log ),
5794                                         "%s=" SLAP_X_ORDERED_FMT "%s",
5795                                         cfAd_database->ad_cname.bv_val, -1,
5796                                         ca.bi->bi_type);
5797                                 ce = config_build_entry( NULL, NULL, cfb->cb_root, &ca, &rdn,
5798                                                 &CFOC_DATABASE, ca.be->be_cf_ocs );
5799                                 thrctx = ldap_pvt_thread_pool_context();
5800                                 connection_fake_init2( &conn, &opbuf, thrctx,0 );
5801                                 op = &opbuf.ob_op;
5802                                 op->o_bd = &cfb->cb_db;
5803                                 op->o_tag = LDAP_REQ_ADD;
5804                                 op->ora_e = ce;
5805                                 op->o_dn = be->be_rootdn;
5806                                 op->o_ndn = be->be_rootndn;
5807                                 rc = slap_add_opattrs(op, NULL, NULL, 0, 0);
5808                                 if ( rc != LDAP_SUCCESS ) {
5809                                         text->bv_val = "autocreation of \"olcDatabase={-1}frontend\" failed";
5810                                         text->bv_len = STRLENOF("autocreation of \"olcDatabase={-1}frontend\" failed");
5811                                         return NOID;
5812                                 }
5813
5814                                 if ( ce && bi && bi->bi_tool_entry_put && 
5815                                                 bi->bi_tool_entry_put( &cfb->cb_db, ce, text ) != NOID ) {
5816                                         entry_put_got_frontend++;
5817                                 } else {
5818                                         text->bv_val = "autocreation of \"olcDatabase={-1}frontend\" failed";
5819                                         text->bv_len = STRLENOF("autocreation of \"olcDatabase={-1}frontend\" failed");
5820                                         return NOID;
5821                                 }
5822                         } else {
5823                                 entry_put_got_frontend++;
5824                         }
5825                 }
5826         }
5827         /* Create entry for config database if it does not exist already */
5828         if ( !entry_put_got_config ) {
5829                 if ( !strncmp( e->e_nname.bv_val, "olcDatabase",
5830                                 STRLENOF( "olcDatabase" ))) {
5831                         if ( strncmp( e->e_nname.bv_val +
5832                                         STRLENOF( "olcDatabase" ), "={0}config",
5833                                         STRLENOF( "={0}config" )) &&
5834                                         strncmp( e->e_nname.bv_val +
5835                                         STRLENOF( "olcDatabase" ), "=config",
5836                                         STRLENOF( "=config" )) ) {
5837                                 vals[1].bv_len = 0;
5838                                 vals[1].bv_val = NULL;
5839                                 memset( &ca, 0, sizeof(ConfigArgs));
5840                                 ca.be = LDAP_STAILQ_FIRST( &backendDB );
5841                                 ca.bi = ca.be->bd_info;
5842                                 rdn.bv_val = ca.log;
5843                                 rdn.bv_len = snprintf(rdn.bv_val, sizeof( ca.log ),
5844                                         "%s=" SLAP_X_ORDERED_FMT "%s",
5845                                         cfAd_database->ad_cname.bv_val, 0,
5846                                         ca.bi->bi_type);
5847                                 ce = config_build_entry( NULL, NULL, cfb->cb_root, &ca, &rdn, &CFOC_DATABASE,
5848                                                 ca.be->be_cf_ocs );
5849                                 if ( ! op ) {
5850                                         thrctx = ldap_pvt_thread_pool_context();
5851                                         connection_fake_init2( &conn, &opbuf, thrctx,0 );
5852                                         op = &opbuf.ob_op;
5853                                         op->o_bd = &cfb->cb_db;
5854                                         op->o_tag = LDAP_REQ_ADD;
5855                                         op->o_dn = be->be_rootdn;
5856                                         op->o_ndn = be->be_rootndn;
5857                                 }
5858                                 op->ora_e = ce;
5859                                 rc = slap_add_opattrs(op, NULL, NULL, 0, 0);
5860                                 if ( rc != LDAP_SUCCESS ) {
5861                                         text->bv_val = "autocreation of \"olcDatabase={0}config\" failed";
5862                                         text->bv_len = STRLENOF("autocreation of \"olcDatabase={0}config\" failed");
5863                                         return NOID;
5864                                 }
5865                                 if (ce && bi && bi->bi_tool_entry_put &&
5866                                                 bi->bi_tool_entry_put( &cfb->cb_db, ce, text ) != NOID ) {
5867                                         entry_put_got_config++;
5868                                 } else {
5869                                         text->bv_val = "autocreation of \"olcDatabase={0}config\" failed";
5870                                         text->bv_len = STRLENOF("autocreation of \"olcDatabase={0}config\" failed");
5871                                         return NOID;
5872                                 }
5873                         } else {
5874                                 entry_put_got_config++;
5875                         }
5876                 }
5877         }
5878         if ( bi && bi->bi_tool_entry_put &&
5879                 config_add_internal( cfb, e, &ca, NULL, NULL, NULL ) == 0 )
5880                 return bi->bi_tool_entry_put( &cfb->cb_db, e, text );
5881         else
5882                 return NOID;
5883 }
5884
5885 static struct {
5886         char *name;
5887         AttributeDescription **desc;
5888 } ads[] = {
5889         { "attribute", &cfAd_attr },
5890         { "backend", &cfAd_backend },
5891         { "database", &cfAd_database },
5892         { "include", &cfAd_include },
5893         { "objectclass", &cfAd_oc },
5894         { "objectidentifier", &cfAd_om },
5895         { "overlay", &cfAd_overlay },
5896         { NULL, NULL }
5897 };
5898
5899 /* Notes:
5900  *   add / delete: all types that may be added or deleted must use an
5901  * X-ORDERED attributeType for their RDN. Adding and deleting entries
5902  * should automatically renumber the index of any siblings as needed,
5903  * so that no gaps in the numbering sequence exist after the add/delete
5904  * is completed.
5905  *   What can be added:
5906  *     schema objects
5907  *     backend objects for backend-specific config directives
5908  *     database objects
5909  *     overlay objects
5910  *
5911  *   delete: probably no support this time around.
5912  *
5913  *   modrdn: generally not done. Will be invoked automatically by add/
5914  * delete to update numbering sequence. Perform as an explicit operation
5915  * so that the renumbering effect may be replicated. Subtree rename must
5916  * be supported, since renumbering a database will affect all its child
5917  * overlays.
5918  *
5919  *  modify: must be fully supported. 
5920  */
5921
5922 int
5923 config_back_initialize( BackendInfo *bi )
5924 {
5925         ConfigTable             *ct = config_back_cf_table;
5926         ConfigArgs ca;
5927         char                    *argv[4];
5928         int                     i;
5929         AttributeDescription    *ad = NULL;
5930         const char              *text;
5931         static char             *controls[] = {
5932                 LDAP_CONTROL_MANAGEDSAIT,
5933                 NULL
5934         };
5935
5936         /* Make sure we don't exceed the bits reserved for userland */
5937         config_check_userland( CFG_LAST );
5938
5939         bi->bi_controls = controls;
5940
5941         bi->bi_open = 0;
5942         bi->bi_close = 0;
5943         bi->bi_config = 0;
5944         bi->bi_destroy = config_back_destroy;
5945
5946         bi->bi_db_init = config_back_db_init;
5947         bi->bi_db_config = 0;
5948         bi->bi_db_open = config_back_db_open;
5949         bi->bi_db_close = config_back_db_close;
5950         bi->bi_db_destroy = config_back_db_destroy;
5951
5952         bi->bi_op_bind = config_back_bind;
5953         bi->bi_op_unbind = 0;
5954         bi->bi_op_search = config_back_search;
5955         bi->bi_op_compare = 0;
5956         bi->bi_op_modify = config_back_modify;
5957         bi->bi_op_modrdn = config_back_modrdn;
5958         bi->bi_op_add = config_back_add;
5959         bi->bi_op_delete = config_back_delete;
5960         bi->bi_op_abandon = 0;
5961
5962         bi->bi_extended = 0;
5963
5964         bi->bi_chk_referrals = 0;
5965
5966         bi->bi_access_allowed = slap_access_allowed;
5967
5968         bi->bi_connection_init = 0;
5969         bi->bi_connection_destroy = 0;
5970
5971         bi->bi_entry_release_rw = config_entry_release;
5972         bi->bi_entry_get_rw = config_back_entry_get;
5973
5974         bi->bi_tool_entry_open = config_tool_entry_open;
5975         bi->bi_tool_entry_close = config_tool_entry_close;
5976         bi->bi_tool_entry_first = config_tool_entry_first;
5977         bi->bi_tool_entry_next = config_tool_entry_next;
5978         bi->bi_tool_entry_get = config_tool_entry_get;
5979         bi->bi_tool_entry_put = config_tool_entry_put;
5980
5981         ca.argv = argv;
5982         argv[ 0 ] = "slapd";
5983         ca.argv = argv;
5984         ca.argc = 3;
5985         ca.fname = argv[0];
5986
5987         argv[3] = NULL;
5988         for (i=0; OidMacros[i].name; i++ ) {
5989                 argv[1] = OidMacros[i].name;
5990                 argv[2] = OidMacros[i].oid;
5991                 parse_oidm( &ca, 0, NULL );
5992         }
5993
5994         bi->bi_cf_ocs = cf_ocs;
5995
5996         i = config_register_schema( ct, cf_ocs );
5997         if ( i ) return i;
5998
5999         /* setup olcRootPW to be base64-encoded when written in LDIF form;
6000          * basically, we don't care if it fails */
6001         i = slap_str2ad( "olcRootPW", &ad, &text );
6002         if ( i ) {
6003                 Debug( LDAP_DEBUG_ANY, "config_back_initialize: "
6004                         "warning, unable to get \"olcRootPW\" "
6005                         "attribute description: %d: %s\n",
6006                         i, text, 0 );
6007         } else {
6008                 (void)ldif_must_b64_encode_register( ad->ad_cname.bv_val,
6009                         ad->ad_type->sat_oid );
6010         }
6011
6012         /* set up the notable AttributeDescriptions */
6013         i = 0;
6014         for (;ct->name;ct++) {
6015                 if (strcmp(ct->name, ads[i].name)) continue;
6016                 *ads[i].desc = ct->ad;
6017                 i++;
6018                 if (!ads[i].name) break;
6019         }
6020
6021         return 0;
6022 }
6023