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