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