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