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