]> git.sur5r.net Git - openldap/blob - servers/slapd/bconfig.c
ec21bdc21018845c42272016d3f43a895624b6c0
[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 = 0;
2149         int i;
2150         slap_verbmasks requires_ops[] = {
2151                 { BER_BVC("bind"),              SLAP_REQUIRE_BIND },
2152                 { BER_BVC("LDAPv3"),            SLAP_REQUIRE_LDAP_V3 },
2153                 { BER_BVC("authc"),             SLAP_REQUIRE_AUTHC },
2154                 { BER_BVC("sasl"),              SLAP_REQUIRE_SASL },
2155                 { BER_BVC("strong"),            SLAP_REQUIRE_STRONG },
2156                 { BER_BVNULL, 0 }
2157         };
2158         if (c->op == SLAP_CONFIG_EMIT) {
2159                 return mask_to_verbs( requires_ops, c->be->be_requires, &c->rvalue_vals );
2160         } else if ( c->op == LDAP_MOD_DELETE ) {
2161                 if ( !c->line ) {
2162                         c->be->be_requires = 0;
2163                 } else {
2164                         requires = verb_to_mask( c->line, requires_ops );
2165                         c->be->be_requires ^= requires;
2166                 }
2167                 return 0;
2168         }
2169         i = verbs_to_mask(c->argc, c->argv, requires_ops, &requires);
2170         if ( i ) {
2171                 snprintf( c->msg, sizeof( c->msg ), "<%s> unknown feature", c->argv[0] );
2172                 Debug(LDAP_DEBUG_ANY, "%s: %s %s\n",
2173                         c->log, c->msg, c->argv[i]);
2174                 return(1);
2175         }
2176         c->be->be_requires = requires;
2177         return(0);
2178 }
2179
2180 static slap_verbmasks   *loglevel_ops;
2181
2182 static int
2183 loglevel_init( void )
2184 {
2185         slap_verbmasks  lo[] = {
2186                 { BER_BVC("Any"),       -1 },
2187                 { BER_BVC("Trace"),     LDAP_DEBUG_TRACE },
2188                 { BER_BVC("Packets"),   LDAP_DEBUG_PACKETS },
2189                 { BER_BVC("Args"),      LDAP_DEBUG_ARGS },
2190                 { BER_BVC("Conns"),     LDAP_DEBUG_CONNS },
2191                 { BER_BVC("BER"),       LDAP_DEBUG_BER },
2192                 { BER_BVC("Filter"),    LDAP_DEBUG_FILTER },
2193                 { BER_BVC("Config"),    LDAP_DEBUG_CONFIG },
2194                 { BER_BVC("ACL"),       LDAP_DEBUG_ACL },
2195                 { BER_BVC("Stats"),     LDAP_DEBUG_STATS },
2196                 { BER_BVC("Stats2"),    LDAP_DEBUG_STATS2 },
2197                 { BER_BVC("Shell"),     LDAP_DEBUG_SHELL },
2198                 { BER_BVC("Parse"),     LDAP_DEBUG_PARSE },
2199 #if 0   /* no longer used (nor supported) */
2200                 { BER_BVC("Cache"),     LDAP_DEBUG_CACHE },
2201                 { BER_BVC("Index"),     LDAP_DEBUG_INDEX },
2202 #endif
2203                 { BER_BVC("Sync"),      LDAP_DEBUG_SYNC },
2204                 { BER_BVC("None"),      LDAP_DEBUG_NONE },
2205                 { BER_BVNULL,           0 }
2206         };
2207
2208         return slap_verbmasks_init( &loglevel_ops, lo );
2209 }
2210
2211 static void
2212 loglevel_destroy( void )
2213 {
2214         if ( loglevel_ops ) {
2215                 (void)slap_verbmasks_destroy( loglevel_ops );
2216         }
2217         loglevel_ops = NULL;
2218 }
2219
2220 static slap_mask_t      loglevel_ignore[] = { -1, 0 };
2221
2222 int
2223 slap_loglevel_register( slap_mask_t m, struct berval *s )
2224 {
2225         int     rc;
2226
2227         if ( loglevel_ops == NULL ) {
2228                 loglevel_init();
2229         }
2230
2231         rc = slap_verbmasks_append( &loglevel_ops, m, s, loglevel_ignore );
2232
2233         if ( rc != 0 ) {
2234                 Debug( LDAP_DEBUG_ANY, "slap_loglevel_register(%lu, \"%s\") failed\n",
2235                         m, s->bv_val, 0 );
2236         }
2237
2238         return rc;
2239 }
2240
2241 int
2242 slap_loglevel_get( struct berval *s, int *l )
2243 {
2244         int             rc;
2245         unsigned long   i;
2246         slap_mask_t     m;
2247
2248         if ( loglevel_ops == NULL ) {
2249                 loglevel_init();
2250         }
2251
2252         for ( m = 0, i = 1; !BER_BVISNULL( &loglevel_ops[ i ].word ); i++ ) {
2253                 m |= loglevel_ops[ i ].mask;
2254         }
2255
2256         m = ~m;
2257
2258         for ( i = 1; i <= ( 1 << ( sizeof( int ) * 8 - 1 ) ) && !( m & i ); i <<= 1 )
2259                 ;
2260
2261         if ( !( m & i ) ) {
2262                 return -1;
2263         }
2264
2265         rc = slap_verbmasks_append( &loglevel_ops, i, s, loglevel_ignore );
2266
2267         if ( rc != 0 ) {
2268                 Debug( LDAP_DEBUG_ANY, "slap_loglevel_get(%lu, \"%s\") failed\n",
2269                         i, s->bv_val, 0 );
2270
2271         } else {
2272                 *l = i;
2273         }
2274
2275         return rc;
2276 }
2277
2278 int
2279 str2loglevel( const char *s, int *l )
2280 {
2281         int     i;
2282
2283         if ( loglevel_ops == NULL ) {
2284                 loglevel_init();
2285         }
2286
2287         i = verb_to_mask( s, loglevel_ops );
2288
2289         if ( BER_BVISNULL( &loglevel_ops[ i ].word ) ) {
2290                 return -1;
2291         }
2292
2293         *l = loglevel_ops[ i ].mask;
2294
2295         return 0;
2296 }
2297
2298 const char *
2299 loglevel2str( int l )
2300 {
2301         struct berval   bv = BER_BVNULL;
2302
2303         loglevel2bv( l, &bv );
2304
2305         return bv.bv_val;
2306 }
2307
2308 int
2309 loglevel2bv( int l, struct berval *bv )
2310 {
2311         if ( loglevel_ops == NULL ) {
2312                 loglevel_init();
2313         }
2314
2315         BER_BVZERO( bv );
2316
2317         return enum_to_verb( loglevel_ops, l, bv ) == -1;
2318 }
2319
2320 int
2321 loglevel2bvarray( int l, BerVarray *bva )
2322 {
2323         if ( loglevel_ops == NULL ) {
2324                 loglevel_init();
2325         }
2326
2327         return mask_to_verbs( loglevel_ops, l, bva );
2328 }
2329
2330 static int config_syslog;
2331
2332 static int
2333 config_loglevel(ConfigArgs *c) {
2334         int i;
2335
2336         if ( loglevel_ops == NULL ) {
2337                 loglevel_init();
2338         }
2339
2340         if (c->op == SLAP_CONFIG_EMIT) {
2341                 /* Get default or commandline slapd setting */
2342                 if ( ldap_syslog && !config_syslog )
2343                         config_syslog = ldap_syslog;
2344                 return loglevel2bvarray( config_syslog, &c->rvalue_vals );
2345
2346         } else if ( c->op == LDAP_MOD_DELETE ) {
2347                 if ( !c->line ) {
2348                         config_syslog = 0;
2349                 } else {
2350                         int level = verb_to_mask( c->line, loglevel_ops );
2351                         config_syslog ^= level;
2352                 }
2353                 if ( slapMode & SLAP_SERVER_MODE ) {
2354                         ldap_syslog = config_syslog;
2355                 }
2356                 return 0;
2357         }
2358
2359         config_syslog = 0;
2360
2361         for( i=1; i < c->argc; i++ ) {
2362                 int     level;
2363
2364                 if ( isdigit((unsigned char)c->argv[i][0]) || c->argv[i][0] == '-' ) {
2365                         if( lutil_atoi( &level, c->argv[i] ) != 0 ) {
2366                                 snprintf( c->msg, sizeof( c->msg ), "<%s> unable to parse level", c->argv[0] );
2367                                 Debug( LDAP_DEBUG_ANY, "%s: %s \"%s\"\n",
2368                                         c->log, c->msg, c->argv[i]);
2369                                 return( 1 );
2370                         }
2371                 } else {
2372                         if ( str2loglevel( c->argv[i], &level ) ) {
2373                                 snprintf( c->msg, sizeof( c->msg ), "<%s> unknown level", c->argv[0] );
2374                                 Debug( LDAP_DEBUG_ANY, "%s: %s \"%s\"\n",
2375                                         c->log, c->msg, c->argv[i]);
2376                                 return( 1 );
2377                         }
2378                 }
2379                 config_syslog |= level;
2380         }
2381         if ( slapMode & SLAP_SERVER_MODE ) {
2382                 ldap_syslog = config_syslog;
2383         }
2384         return(0);
2385 }
2386
2387 static int
2388 config_referral(ConfigArgs *c) {
2389         struct berval val;
2390         if (c->op == SLAP_CONFIG_EMIT) {
2391                 if ( default_referral ) {
2392                         value_add( &c->rvalue_vals, default_referral );
2393                         return 0;
2394                 } else {
2395                         return 1;
2396                 }
2397         } else if ( c->op == LDAP_MOD_DELETE ) {
2398                 if ( c->valx < 0 ) {
2399                         ber_bvarray_free( default_referral );
2400                         default_referral = NULL;
2401                 } else {
2402                         int i = c->valx;
2403                         ch_free( default_referral[i].bv_val );
2404                         for (; default_referral[i].bv_val; i++ )
2405                                 default_referral[i] = default_referral[i+1];
2406                 }
2407                 return 0;
2408         }
2409         if(validate_global_referral(c->argv[1])) {
2410                 snprintf( c->msg, sizeof( c->msg ), "<%s> invalid URL", c->argv[0] );
2411                 Debug(LDAP_DEBUG_ANY, "%s: %s (%s)\n",
2412                         c->log, c->msg, c->argv[1]);
2413                 return(1);
2414         }
2415
2416         ber_str2bv(c->argv[1], 0, 0, &val);
2417         if(value_add_one(&default_referral, &val)) return(LDAP_OTHER);
2418         return(0);
2419 }
2420
2421 static struct {
2422         struct berval key;
2423         int off;
2424 } sec_keys[] = {
2425         { BER_BVC("ssf="), offsetof(slap_ssf_set_t, sss_ssf) },
2426         { BER_BVC("transport="), offsetof(slap_ssf_set_t, sss_transport) },
2427         { BER_BVC("tls="), offsetof(slap_ssf_set_t, sss_tls) },
2428         { BER_BVC("sasl="), offsetof(slap_ssf_set_t, sss_sasl) },
2429         { BER_BVC("update_ssf="), offsetof(slap_ssf_set_t, sss_update_ssf) },
2430         { BER_BVC("update_transport="), offsetof(slap_ssf_set_t, sss_update_transport) },
2431         { BER_BVC("update_tls="), offsetof(slap_ssf_set_t, sss_update_tls) },
2432         { BER_BVC("update_sasl="), offsetof(slap_ssf_set_t, sss_update_sasl) },
2433         { BER_BVC("simple_bind="), offsetof(slap_ssf_set_t, sss_simple_bind) },
2434         { BER_BVNULL, 0 }
2435 };
2436
2437 static int
2438 config_security(ConfigArgs *c) {
2439         slap_ssf_set_t *set = &c->be->be_ssf_set;
2440         char *next;
2441         int i, j;
2442         if (c->op == SLAP_CONFIG_EMIT) {
2443                 char numbuf[32];
2444                 struct berval bv;
2445                 slap_ssf_t *tgt;
2446                 int rc = 1;
2447
2448                 for (i=0; !BER_BVISNULL( &sec_keys[i].key ); i++) {
2449                         tgt = (slap_ssf_t *)((char *)set + sec_keys[i].off);
2450                         if ( *tgt ) {
2451                                 rc = 0;
2452                                 bv.bv_len = snprintf( numbuf, sizeof( numbuf ), "%u", *tgt );
2453                                 if ( bv.bv_len >= sizeof( numbuf ) ) {
2454                                         ber_bvarray_free_x( c->rvalue_vals, NULL );
2455                                         c->rvalue_vals = NULL;
2456                                         rc = 1;
2457                                         break;
2458                                 }
2459                                 bv.bv_len += sec_keys[i].key.bv_len;
2460                                 bv.bv_val = ch_malloc( bv.bv_len + 1);
2461                                 next = lutil_strcopy( bv.bv_val, sec_keys[i].key.bv_val );
2462                                 strcpy( next, numbuf );
2463                                 ber_bvarray_add( &c->rvalue_vals, &bv );
2464                         }
2465                 }
2466                 return rc;
2467         }
2468         for(i = 1; i < c->argc; i++) {
2469                 slap_ssf_t *tgt = NULL;
2470                 char *src;
2471                 for ( j=0; !BER_BVISNULL( &sec_keys[j].key ); j++ ) {
2472                         if(!strncasecmp(c->argv[i], sec_keys[j].key.bv_val,
2473                                 sec_keys[j].key.bv_len)) {
2474                                 src = c->argv[i] + sec_keys[j].key.bv_len;
2475                                 tgt = (slap_ssf_t *)((char *)set + sec_keys[j].off);
2476                                 break;
2477                         }
2478                 }
2479                 if ( !tgt ) {
2480                         snprintf( c->msg, sizeof( c->msg ), "<%s> unknown factor", c->argv[0] );
2481                         Debug(LDAP_DEBUG_ANY, "%s: %s %s\n",
2482                                 c->log, c->msg, c->argv[i]);
2483                         return(1);
2484                 }
2485
2486                 if ( lutil_atou( tgt, src ) != 0 ) {
2487                         snprintf( c->msg, sizeof( c->msg ), "<%s> unable to parse factor", c->argv[0] );
2488                         Debug(LDAP_DEBUG_ANY, "%s: %s \"%s\"\n",
2489                                 c->log, c->msg, c->argv[i]);
2490                         return(1);
2491                 }
2492         }
2493         return(0);
2494 }
2495
2496 char *
2497 anlist_unparse( AttributeName *an, char *ptr, ber_len_t buflen ) {
2498         int comma = 0;
2499         char *start = ptr;
2500
2501         for (; !BER_BVISNULL( &an->an_name ); an++) {
2502                 /* if buflen == 0, assume the buffer size has been 
2503                  * already checked otherwise */
2504                 if ( buflen > 0 && buflen - ( ptr - start ) < comma + an->an_name.bv_len ) return NULL;
2505                 if ( comma ) *ptr++ = ',';
2506                 ptr = lutil_strcopy( ptr, an->an_name.bv_val );
2507                 comma = 1;
2508         }
2509         return ptr;
2510 }
2511
2512 static void
2513 replica_unparse( struct slap_replica_info *ri, int i, struct berval *bv )
2514 {
2515         int len;
2516         char *ptr;
2517         struct berval bc = BER_BVNULL;
2518         char numbuf[32];
2519
2520         assert( !BER_BVISNULL( &ri->ri_bindconf.sb_uri ) );
2521         
2522         BER_BVZERO( bv );
2523
2524         len = snprintf(numbuf, sizeof( numbuf ), SLAP_X_ORDERED_FMT, i );
2525         if ( len >= sizeof( numbuf ) ) {
2526                 /* FIXME: how can indicate error? */
2527                 return;
2528         }
2529
2530         if ( ri->ri_nsuffix ) {
2531                 for (i=0; !BER_BVISNULL( &ri->ri_nsuffix[i] ); i++) {
2532                         len += ri->ri_nsuffix[i].bv_len + STRLENOF(" suffix=\"\"");
2533                 }
2534         }
2535         if ( ri->ri_attrs ) {
2536                 len += STRLENOF(" attrs");
2537                 if ( ri->ri_exclude ) len++;
2538                 for (i=0; !BER_BVISNULL( &ri->ri_attrs[i].an_name ); i++) {
2539                         len += 1 + ri->ri_attrs[i].an_name.bv_len;
2540                 }
2541         }
2542         bindconf_unparse( &ri->ri_bindconf, &bc );
2543         len += bc.bv_len;
2544
2545         bv->bv_val = ch_malloc(len + 1);
2546         bv->bv_len = len;
2547
2548         ptr = lutil_strcopy( bv->bv_val, numbuf );
2549
2550         /* start with URI from bindconf */
2551         assert( !BER_BVISNULL( &bc ) );
2552         if ( bc.bv_val ) {
2553                 strcpy( ptr, bc.bv_val );
2554                 ch_free( bc.bv_val );
2555         }
2556
2557         if ( ri->ri_nsuffix ) {
2558                 for (i=0; !BER_BVISNULL( &ri->ri_nsuffix[i] ); i++) {
2559                         ptr = lutil_strcopy( ptr, " suffix=\"" );
2560                         ptr = lutil_strcopy( ptr, ri->ri_nsuffix[i].bv_val );
2561                         *ptr++ = '"';
2562                 }
2563         }
2564         if ( ri->ri_attrs ) {
2565                 ptr = lutil_strcopy( ptr, " attrs" );
2566                 if ( ri->ri_exclude ) *ptr++ = '!';
2567                 *ptr++ = '=';
2568                 ptr = anlist_unparse( ri->ri_attrs, ptr, 0 );
2569         }
2570 }
2571
2572 static int
2573 config_replica(ConfigArgs *c) {
2574         int i, nr = -1;
2575         char *replicahost = NULL, *replicauri = NULL;
2576         LDAPURLDesc *ludp;
2577
2578         if (c->op == SLAP_CONFIG_EMIT) {
2579                 if (c->be->be_replica) {
2580                         struct berval bv;
2581                         for (i=0;c->be->be_replica[i]; i++) {
2582                                 replica_unparse( c->be->be_replica[i], i, &bv );
2583                                 ber_bvarray_add( &c->rvalue_vals, &bv );
2584                         }
2585                         return 0;
2586                 }
2587                 return 1;
2588         } else if ( c->op == LDAP_MOD_DELETE ) {
2589                 /* FIXME: there is no replica_free function */
2590                 if ( c->valx < 0 ) {
2591                 } else {
2592                 }
2593         }
2594         if(SLAP_MONITOR(c->be)) {
2595                 Debug(LDAP_DEBUG_ANY, "%s: "
2596                         "\"replica\" should not be used inside monitor database\n",
2597                         c->log, 0, 0);
2598                 return(0);      /* FIXME: should this be an error? */
2599         }
2600
2601         for(i = 1; i < c->argc; i++) {
2602                 if(!strncasecmp(c->argv[i], "host=", STRLENOF("host="))) {
2603                         ber_len_t       len;
2604
2605                         if ( replicauri ) {
2606                                 snprintf( c->msg, sizeof( c->msg ), "<%s> replica host/URI already specified", c->argv[0] );
2607                                 Debug(LDAP_DEBUG_ANY, "%s: %s \"%s\"\n", c->log, c->msg, replicauri );
2608                                 return(1);
2609                         }
2610
2611                         replicahost = c->argv[i] + STRLENOF("host=");
2612                         len = strlen( replicahost ) + STRLENOF("ldap://");
2613                         replicauri = ch_malloc( len + 1 );
2614                         snprintf( replicauri, len + 1, "ldap://%s", replicahost );
2615                         replicahost = replicauri + STRLENOF( "ldap://");
2616                         nr = add_replica_info(c->be, replicauri, replicahost);
2617                         break;
2618                 } else if(!strncasecmp(c->argv[i], "uri=", STRLENOF("uri="))) {
2619                         ber_len_t       len;
2620
2621                         if ( replicauri ) {
2622                                 snprintf( c->msg, sizeof( c->msg ), "<%s> replica host/URI already specified", c->argv[0] );
2623                                 Debug(LDAP_DEBUG_ANY, "%s: %s \"%s\"\n", c->log, c->msg, replicauri );
2624                                 return(1);
2625                         }
2626
2627                         if(ldap_url_parse(c->argv[i] + STRLENOF("uri="), &ludp) != LDAP_SUCCESS) {
2628                                 snprintf( c->msg, sizeof( c->msg ), "<%s> invalid uri", c->argv[0] );
2629                                 Debug(LDAP_DEBUG_ANY, "%s: %s\n", c->log, c->msg, 0 );
2630                                 return(1);
2631                         }
2632                         if(!ludp->lud_host) {
2633                                 ldap_free_urldesc(ludp);
2634                                 snprintf( c->msg, sizeof( c->msg ), "<%s> invalid uri - missing hostname",
2635                                         c->argv[0] );
2636                                 Debug(LDAP_DEBUG_ANY, "%s: %s\n", c->log, c->msg, 0 );
2637                                 return(1);
2638                         }
2639
2640                         len = strlen(ludp->lud_scheme) + strlen(ludp->lud_host) +
2641                                 STRLENOF("://") + 1;
2642                         if (ludp->lud_port != LDAP_PORT) {
2643                                 if (ludp->lud_port < 1 || ludp->lud_port > 65535) {
2644                                         snprintf( c->msg, sizeof( c->msg ), "<%s> invalid port",
2645                                                 c->argv[0] );
2646                                         Debug(LDAP_DEBUG_ANY, "%s: %s\n", c->log, c->msg, 0 );
2647                                         return(1);
2648                                 }
2649                                 len += STRLENOF(":65535");
2650                         }
2651                         replicauri = ch_malloc( len );
2652                         replicahost = lutil_strcopy( replicauri, ludp->lud_scheme );
2653                         replicahost = lutil_strcopy( replicauri, "://" );
2654                         if (ludp->lud_port == LDAP_PORT) {
2655                                 strcpy( replicahost, ludp->lud_host );
2656                         } else {
2657                                 sprintf( replicahost, "%s:%d",ludp->lud_host,ludp->lud_port );
2658                         }
2659                         ldap_free_urldesc(ludp);
2660                         nr = add_replica_info(c->be, replicauri, replicahost);
2661                         break;
2662                 }
2663         }
2664         if(i == c->argc) {
2665                 snprintf( c->msg, sizeof( c->msg ), "<%s> missing host or uri", c->argv[0] );
2666                 Debug(LDAP_DEBUG_ANY, "%s: %s\n", c->log, c->msg, 0 );
2667                 return(1);
2668         } else if(nr == -1) {
2669                 snprintf( c->msg, sizeof( c->msg ), "<%s> unable to add replica", c->argv[0] );
2670                 Debug(LDAP_DEBUG_ANY, "%s: %s \"%s\"\n", c->log, c->msg,
2671                         replicauri ? replicauri : "" );
2672                 return(1);
2673         } else {
2674                 for(i = 1; i < c->argc; i++) {
2675                         if(!strncasecmp(c->argv[i], "uri=", STRLENOF("uri="))) {
2676                                 /* dealt with separately; don't let it get to bindconf */
2677                                 ;
2678
2679                         } else if(!strncasecmp(c->argv[i], "host=", STRLENOF("host="))) {
2680                                 /* dealt with separately; don't let it get to bindconf */
2681                                 ;
2682
2683                         } else if(!strncasecmp(c->argv[i], "suffix=", STRLENOF( "suffix="))) {
2684                                 switch(add_replica_suffix(c->be, nr, c->argv[i] + STRLENOF("suffix="))) {
2685                                         case 1:
2686                                                 Debug( LDAP_DEBUG_ANY, "%s: "
2687                                                         "suffix \"%s\" in \"replica\" line is not valid for backend.\n",
2688                                                         c->log, c->argv[i] + STRLENOF("suffix="), 0);
2689                                                 return 1;
2690                                                 break;
2691                                         case 2:
2692                                                 Debug( LDAP_DEBUG_ANY, "%s: "
2693                                                         "unable to normalize suffix in \"replica\" line.\n",
2694                                                         c->log, 0, 0);
2695                                                 return 1;
2696                                                 break;
2697                                 }
2698
2699                         } else if (!strncasecmp(c->argv[i], "attr", STRLENOF("attr"))
2700                                 || !strncasecmp(c->argv[i], "attrs", STRLENOF("attrs")))
2701                         {
2702                                 int exclude = 0;
2703                                 char *arg = c->argv[i] + STRLENOF("attr");
2704                                 if (arg[0] == 's') {
2705                                         arg++;
2706                                 } else {
2707                                         Debug( LDAP_DEBUG_ANY,
2708                                                 "%s: \"attr\" "
2709                                                 "is deprecated (and undocumented); "
2710                                                 "use \"attrs\" instead.\n",
2711                                                 c->log, 0, 0 );
2712                                 }
2713                                 if(arg[0] == '!') {
2714                                         arg++;
2715                                         exclude = 1;
2716                                 }
2717                                 if(arg[0] != '=') {
2718                                         continue;
2719                                 }
2720                                 if(add_replica_attrs(c->be, nr, arg + 1, exclude)) {
2721                                         snprintf( c->msg, sizeof( c->msg ), "<%s> unknown attribute", c->argv[0] );
2722                                         Debug(LDAP_DEBUG_ANY, "%s: %s \"%s\"\n",
2723                                                 c->log, c->msg, arg + 1);
2724                                         return(1);
2725                                 }
2726                         } else if ( bindconf_parse( c->argv[i],
2727                                         &c->be->be_replica[nr]->ri_bindconf ) ) {
2728                                 return(1);
2729                         }
2730                 }
2731         }
2732         return(0);
2733 }
2734
2735 static int
2736 config_updatedn(ConfigArgs *c) {
2737         if (c->op == SLAP_CONFIG_EMIT) {
2738                 if (!BER_BVISEMPTY(&c->be->be_update_ndn)) {
2739                         value_add_one(&c->rvalue_vals, &c->be->be_update_ndn);
2740                         value_add_one(&c->rvalue_nvals, &c->be->be_update_ndn);
2741                         return 0;
2742                 }
2743                 return 1;
2744         } else if ( c->op == LDAP_MOD_DELETE ) {
2745                 ch_free( c->be->be_update_ndn.bv_val );
2746                 BER_BVZERO( &c->be->be_update_ndn );
2747                 SLAP_DBFLAGS(c->be) ^= (SLAP_DBFLAG_SHADOW | SLAP_DBFLAG_SLURP_SHADOW);
2748                 return 0;
2749         }
2750         if(SLAP_SHADOW(c->be)) {
2751                 snprintf( c->msg, sizeof( c->msg ), "<%s> database already shadowed", c->argv[0] );
2752                 Debug(LDAP_DEBUG_ANY, "%s: %s\n",
2753                         c->log, c->msg, 0);
2754                 return(1);
2755         }
2756
2757         ber_memfree_x( c->value_dn.bv_val, NULL );
2758         if ( !BER_BVISNULL( &c->be->be_update_ndn ) ) {
2759                 ber_memfree_x( c->be->be_update_ndn.bv_val, NULL );
2760         }
2761         c->be->be_update_ndn = c->value_ndn;
2762         BER_BVZERO( &c->value_dn );
2763         BER_BVZERO( &c->value_ndn );
2764
2765         return config_slurp_shadow( c );
2766 }
2767
2768 int
2769 config_shadow( ConfigArgs *c, int flag )
2770 {
2771         char    *notallowed = NULL;
2772
2773         if ( c->be == frontendDB ) {
2774                 notallowed = "frontend";
2775
2776         } else if ( SLAP_MONITOR(c->be) ) {
2777                 notallowed = "monitor";
2778
2779         } else if ( SLAP_CONFIG(c->be) ) {
2780                 notallowed = "config";
2781         }
2782
2783         if ( notallowed != NULL ) {
2784                 Debug( LDAP_DEBUG_ANY, "%s: %s database cannot be shadow.\n", c->log, notallowed, 0 );
2785                 return 1;
2786         }
2787
2788         SLAP_DBFLAGS(c->be) |= (SLAP_DBFLAG_SHADOW | SLAP_DBFLAG_SINGLE_SHADOW | flag);
2789
2790         return 0;
2791 }
2792
2793 static int
2794 config_updateref(ConfigArgs *c) {
2795         struct berval val;
2796         if (c->op == SLAP_CONFIG_EMIT) {
2797                 if ( c->be->be_update_refs ) {
2798                         value_add( &c->rvalue_vals, c->be->be_update_refs );
2799                         return 0;
2800                 } else {
2801                         return 1;
2802                 }
2803         } else if ( c->op == LDAP_MOD_DELETE ) {
2804                 if ( c->valx < 0 ) {
2805                         ber_bvarray_free( c->be->be_update_refs );
2806                         c->be->be_update_refs = NULL;
2807                 } else {
2808                         int i = c->valx;
2809                         ch_free( c->be->be_update_refs[i].bv_val );
2810                         for (; c->be->be_update_refs[i].bv_val; i++)
2811                                 c->be->be_update_refs[i] = c->be->be_update_refs[i+1];
2812                 }
2813                 return 0;
2814         }
2815         if(!SLAP_SHADOW(c->be)) {
2816                 snprintf( c->msg, sizeof( c->msg ), "<%s> must appear after syncrepl or updatedn",
2817                         c->argv[0] );
2818                 Debug(LDAP_DEBUG_ANY, "%s: %s\n",
2819                         c->log, c->msg, 0);
2820                 return(1);
2821         }
2822
2823         if(validate_global_referral(c->argv[1])) {
2824                 snprintf( c->msg, sizeof( c->msg ), "<%s> invalid URL", c->argv[0] );
2825                 Debug(LDAP_DEBUG_ANY, "%s: %s (%s)\n",
2826                         c->log, c->msg, c->argv[1]);
2827                 return(1);
2828         }
2829         ber_str2bv(c->argv[1], 0, 0, &val);
2830         if(value_add_one(&c->be->be_update_refs, &val)) return(LDAP_OTHER);
2831         return(0);
2832 }
2833
2834 static int
2835 config_include(ConfigArgs *c) {
2836         int savelineno = c->lineno;
2837         int rc;
2838         ConfigFile *cf;
2839         ConfigFile *cfsave = cfn;
2840         ConfigFile *cf2 = NULL;
2841         if (c->op == SLAP_CONFIG_EMIT) {
2842                 if (c->private) {
2843                         ConfigFile *cf = c->private;
2844                         value_add_one( &c->rvalue_vals, &cf->c_file );
2845                         return 0;
2846                 }
2847                 return 1;
2848         } else if ( c->op == LDAP_MOD_DELETE ) {
2849         }
2850         cf = ch_calloc( 1, sizeof(ConfigFile));
2851         if ( cfn->c_kids ) {
2852                 for (cf2=cfn->c_kids; cf2 && cf2->c_sibs; cf2=cf2->c_sibs) ;
2853                 cf2->c_sibs = cf;
2854         } else {
2855                 cfn->c_kids = cf;
2856         }
2857         cfn = cf;
2858         ber_str2bv( c->argv[1], 0, 1, &cf->c_file );
2859         rc = read_config_file(c->argv[1], c->depth + 1, c, config_back_cf_table);
2860         c->lineno = savelineno - 1;
2861         cfn = cfsave;
2862         if ( rc ) {
2863                 if ( cf2 ) cf2->c_sibs = NULL;
2864                 else cfn->c_kids = NULL;
2865                 ch_free( cf->c_file.bv_val );
2866                 ch_free( cf );
2867         } else {
2868                 c->private = cf;
2869         }
2870         return(rc);
2871 }
2872
2873 #ifdef HAVE_TLS
2874 static int
2875 config_tls_option(ConfigArgs *c) {
2876         int flag;
2877         LDAP *ld = slap_tls_ld;
2878         switch(c->type) {
2879         case CFG_TLS_RAND:      flag = LDAP_OPT_X_TLS_RANDOM_FILE;      ld = NULL; break;
2880         case CFG_TLS_CIPHER:    flag = LDAP_OPT_X_TLS_CIPHER_SUITE;     break;
2881         case CFG_TLS_CERT_FILE: flag = LDAP_OPT_X_TLS_CERTFILE;         break;  
2882         case CFG_TLS_CERT_KEY:  flag = LDAP_OPT_X_TLS_KEYFILE;          break;
2883         case CFG_TLS_CA_PATH:   flag = LDAP_OPT_X_TLS_CACERTDIR;        break;
2884         case CFG_TLS_CA_FILE:   flag = LDAP_OPT_X_TLS_CACERTFILE;       break;
2885         case CFG_TLS_DH_FILE:   flag = LDAP_OPT_X_TLS_DHFILE;   break;
2886         default:                Debug(LDAP_DEBUG_ANY, "%s: "
2887                                         "unknown tls_option <0x%x>\n",
2888                                         c->log, c->type, 0);
2889                 return 1;
2890         }
2891         if (c->op == SLAP_CONFIG_EMIT) {
2892                 return ldap_pvt_tls_get_option( ld, flag, &c->value_string );
2893         } else if ( c->op == LDAP_MOD_DELETE ) {
2894                 return ldap_pvt_tls_set_option( ld, flag, NULL );
2895         }
2896         ch_free(c->value_string);
2897         return(ldap_pvt_tls_set_option(ld, flag, c->argv[1]));
2898 }
2899
2900 /* FIXME: this ought to be provided by libldap */
2901 static int
2902 config_tls_config(ConfigArgs *c) {
2903         int i, flag;
2904         slap_verbmasks crlkeys[] = {
2905                 { BER_BVC("none"),      LDAP_OPT_X_TLS_CRL_NONE },
2906                 { BER_BVC("peer"),      LDAP_OPT_X_TLS_CRL_PEER },
2907                 { BER_BVC("all"),       LDAP_OPT_X_TLS_CRL_ALL },
2908                 { BER_BVNULL, 0 }
2909         };
2910         slap_verbmasks vfykeys[] = {
2911                 { BER_BVC("never"),     LDAP_OPT_X_TLS_NEVER },
2912                 { BER_BVC("demand"),    LDAP_OPT_X_TLS_DEMAND },
2913                 { BER_BVC("try"),       LDAP_OPT_X_TLS_TRY },
2914                 { BER_BVC("hard"),      LDAP_OPT_X_TLS_HARD },
2915                 { BER_BVNULL, 0 }
2916         }, *keys;
2917         switch(c->type) {
2918         case CFG_TLS_CRLCHECK:  flag = LDAP_OPT_X_TLS_CRLCHECK;         keys = crlkeys; break;
2919         case CFG_TLS_VERIFY:    flag = LDAP_OPT_X_TLS_REQUIRE_CERT;     keys = vfykeys; break;
2920         default:
2921                 Debug(LDAP_DEBUG_ANY, "%s: "
2922                                 "unknown tls_option <0x%x>\n",
2923                                 c->log, c->type, 0);
2924                 return 1;
2925         }
2926         if (c->op == SLAP_CONFIG_EMIT) {
2927                 ldap_pvt_tls_get_option( slap_tls_ld, flag, &c->value_int );
2928                 for (i=0; !BER_BVISNULL(&keys[i].word); i++) {
2929                         if (keys[i].mask == c->value_int) {
2930                                 c->value_string = ch_strdup( keys[i].word.bv_val );
2931                                 return 0;
2932                         }
2933                 }
2934                 return 1;
2935         } else if ( c->op == LDAP_MOD_DELETE ) {
2936                 int i = 0;
2937                 return ldap_pvt_tls_set_option( slap_tls_ld, flag, &i );
2938         }
2939         ch_free( c->value_string );
2940         if ( isdigit( (unsigned char)c->argv[1][0] ) ) {
2941                 if ( lutil_atoi( &i, c->argv[1] ) != 0 ) {
2942                         Debug(LDAP_DEBUG_ANY, "%s: "
2943                                 "unable to parse %s \"%s\"\n",
2944                                 c->log, c->argv[0], c->argv[1] );
2945                         return 1;
2946                 }
2947                 return(ldap_pvt_tls_set_option(slap_tls_ld, flag, &i));
2948         } else {
2949                 return(ldap_int_tls_config(slap_tls_ld, flag, c->argv[1]));
2950         }
2951 }
2952 #endif
2953
2954 static CfEntryInfo *
2955 config_find_base( CfEntryInfo *root, struct berval *dn, CfEntryInfo **last )
2956 {
2957         struct berval cdn;
2958         char *c;
2959
2960         if ( !root ) {
2961                 *last = NULL;
2962                 return NULL;
2963         }
2964
2965         if ( dn_match( &root->ce_entry->e_nname, dn ))
2966                 return root;
2967
2968         c = dn->bv_val+dn->bv_len;
2969         for (;*c != ',';c--);
2970
2971         while(root) {
2972                 *last = root;
2973                 for (--c;c>dn->bv_val && *c != ',';c--);
2974                 cdn.bv_val = c;
2975                 if ( *c == ',' )
2976                         cdn.bv_val++;
2977                 cdn.bv_len = dn->bv_len - (cdn.bv_val - dn->bv_val);
2978
2979                 root = root->ce_kids;
2980
2981                 for (;root;root=root->ce_sibs) {
2982                         if ( dn_match( &root->ce_entry->e_nname, &cdn )) {
2983                                 if ( cdn.bv_val == dn->bv_val ) {
2984                                         return root;
2985                                 }
2986                                 break;
2987                         }
2988                 }
2989         }
2990         return root;
2991 }
2992
2993 typedef struct setup_cookie {
2994         CfBackInfo *cfb;
2995         ConfigArgs *ca;
2996 } setup_cookie;
2997
2998 static int
2999 config_ldif_resp( Operation *op, SlapReply *rs )
3000 {
3001         if ( rs->sr_type == REP_SEARCH ) {
3002                 setup_cookie *sc = op->o_callback->sc_private;
3003
3004                 sc->cfb->cb_got_ldif = 1;
3005                 rs->sr_err = config_add_internal( sc->cfb, rs->sr_entry, sc->ca, NULL, NULL, NULL );
3006                 if ( rs->sr_err != LDAP_SUCCESS ) {
3007                         Debug( LDAP_DEBUG_ANY, "config error processing %s: %s\n",
3008                                 rs->sr_entry->e_name.bv_val, sc->ca->msg, 0 );
3009                 }
3010         }
3011         return rs->sr_err;
3012 }
3013
3014 /* Configure and read the underlying back-ldif store */
3015 static int
3016 config_setup_ldif( BackendDB *be, const char *dir, int readit ) {
3017         CfBackInfo *cfb = be->be_private;
3018         ConfigArgs c = {0};
3019         ConfigTable *ct;
3020         char *argv[3];
3021         int rc = 0;
3022         setup_cookie sc;
3023         slap_callback cb = { NULL, config_ldif_resp, NULL, NULL };
3024         Connection conn = {0};
3025         OperationBuffer opbuf;
3026         Operation *op;
3027         SlapReply rs = {REP_RESULT};
3028         Filter filter = { LDAP_FILTER_PRESENT };
3029         struct berval filterstr = BER_BVC("(objectclass=*)");
3030         struct stat st;
3031
3032         /* Is the config directory available? */
3033         if ( stat( dir, &st ) < 0 ) {
3034                 /* No, so don't bother using the backing store.
3035                  * All changes will be in-memory only.
3036                  */
3037                 return 0;
3038         }
3039                 
3040         cfb->cb_db.bd_info = backend_info( "ldif" );
3041         if ( !cfb->cb_db.bd_info )
3042                 return 0;       /* FIXME: eventually this will be a fatal error */
3043
3044         if ( backend_db_init( "ldif", &cfb->cb_db ) == NULL )
3045                 return 1;
3046
3047         cfb->cb_db.be_suffix = be->be_suffix;
3048         cfb->cb_db.be_nsuffix = be->be_nsuffix;
3049
3050         /* The suffix is always "cn=config". The underlying DB's rootdn
3051          * is always the same as the suffix.
3052          */
3053         cfb->cb_db.be_rootdn = be->be_suffix[0];
3054         cfb->cb_db.be_rootndn = be->be_nsuffix[0];
3055
3056         ber_str2bv( dir, 0, 1, &cfdir );
3057
3058         c.be = &cfb->cb_db;
3059         c.fname = "slapd";
3060         c.argc = 2;
3061         argv[0] = "directory";
3062         argv[1] = (char *)dir;
3063         argv[2] = NULL;
3064         c.argv = argv;
3065
3066         ct = config_find_keyword( c.be->be_cf_ocs->co_table, &c );
3067         if ( !ct )
3068                 return 1;
3069
3070         if ( config_add_vals( ct, &c ))
3071                 return 1;
3072
3073         if ( backend_startup_one( &cfb->cb_db ))
3074                 return 1;
3075
3076         if ( readit ) {
3077                 void *thrctx = ldap_pvt_thread_pool_context();
3078                 int prev_DN_strict;
3079
3080                 op = (Operation *) &opbuf;
3081                 connection_fake_init( &conn, op, thrctx );
3082
3083                 filter.f_desc = slap_schema.si_ad_objectClass;
3084
3085                 op->o_tag = LDAP_REQ_SEARCH;
3086
3087                 op->ors_filter = &filter;
3088                 op->ors_filterstr = filterstr;
3089                 op->ors_scope = LDAP_SCOPE_SUBTREE;
3090
3091                 op->o_dn = c.be->be_rootdn;
3092                 op->o_ndn = c.be->be_rootndn;
3093
3094                 op->o_req_dn = be->be_suffix[0];
3095                 op->o_req_ndn = be->be_nsuffix[0];
3096
3097                 op->ors_tlimit = SLAP_NO_LIMIT;
3098                 op->ors_slimit = SLAP_NO_LIMIT;
3099
3100                 op->ors_attrs = slap_anlist_all_attributes;
3101                 op->ors_attrsonly = 0;
3102
3103                 op->o_callback = &cb;
3104                 sc.cfb = cfb;
3105                 sc.ca = &c;
3106                 cb.sc_private = &sc;
3107
3108                 op->o_bd = &cfb->cb_db;
3109                 
3110                 /* Allow unknown attrs in DNs */
3111                 prev_DN_strict = slap_DN_strict;
3112                 slap_DN_strict = 0;
3113
3114                 rc = op->o_bd->be_search( op, &rs );
3115
3116                 /* Restore normal DN validation */
3117                 slap_DN_strict = prev_DN_strict;
3118
3119                 ldap_pvt_thread_pool_context_reset( thrctx );
3120         }
3121
3122         /* ITS#4194 - only use if it's present, or we're converting. */
3123         if ( !readit || rc == LDAP_SUCCESS )
3124                 cfb->cb_use_ldif = 1;
3125
3126         return rc;
3127 }
3128
3129 static int
3130 CfOc_cmp( const void *c1, const void *c2 ) {
3131         const ConfigOCs *co1 = c1;
3132         const ConfigOCs *co2 = c2;
3133
3134         return ber_bvcmp( co1->co_name, co2->co_name );
3135 }
3136
3137 int
3138 config_register_schema(ConfigTable *ct, ConfigOCs *ocs) {
3139         int i;
3140
3141         i = init_config_attrs( ct );
3142         if ( i ) return i;
3143
3144         /* set up the objectclasses */
3145         i = init_config_ocs( ocs );
3146         if ( i ) return i;
3147
3148         for (i=0; ocs[i].co_def; i++) {
3149                 if ( ocs[i].co_oc ) {
3150                         ocs[i].co_name = &ocs[i].co_oc->soc_cname;
3151                         if ( !ocs[i].co_table )
3152                                 ocs[i].co_table = ct;
3153                         avl_insert( &CfOcTree, &ocs[i], CfOc_cmp, avl_dup_error );
3154                 }
3155         }
3156         return 0;
3157 }
3158
3159 int
3160 read_config(const char *fname, const char *dir) {
3161         BackendDB *be;
3162         CfBackInfo *cfb;
3163         const char *cfdir, *cfname;
3164         int rc;
3165
3166         /* Setup the config backend */
3167         be = backend_db_init( "config", NULL );
3168         if ( !be )
3169                 return 1;
3170
3171         cfb = be->be_private;
3172         be->be_dfltaccess = ACL_NONE;
3173
3174         /* If no .conf, or a dir was specified, setup the dir */
3175         if ( !fname || dir ) {
3176                 if ( dir ) {
3177                         /* If explicitly given, check for existence */
3178                         struct stat st;
3179
3180                         if ( stat( dir, &st ) < 0 ) {
3181                                 Debug( LDAP_DEBUG_ANY,
3182                                         "invalid config directory %s, error %d\n",
3183                                                 dir, errno, 0 );
3184                                 return 1;
3185                         }
3186                         cfdir = dir;
3187                 } else {
3188                         cfdir = SLAPD_DEFAULT_CONFIGDIR;
3189                 }
3190                 /* if fname is defaulted, try reading .d */
3191                 rc = config_setup_ldif( be, cfdir, !fname );
3192
3193                 if ( rc ) {
3194                         /* It may be OK if the base object doesn't exist yet. */
3195                         if ( rc != LDAP_NO_SUCH_OBJECT )
3196                                 return 1;
3197                         /* ITS#4194: But if dir was specified and no fname,
3198                          * then we were supposed to read the dir. Unless we're
3199                          * trying to slapadd the dir...
3200                          */
3201                         if ( dir && !fname ) {
3202                                 if ( slapMode & (SLAP_SERVER_MODE|SLAP_TOOL_READMAIN|SLAP_TOOL_READONLY))
3203                                         return 1;
3204                                 /* Assume it's slapadd with a config dir, let it continue */
3205                                 rc = 0;
3206                                 cfb->cb_got_ldif = 1;
3207                                 cfb->cb_use_ldif = 1;
3208                                 goto done;
3209                         }
3210                 }
3211
3212                 /* If we read the config from back-ldif, nothing to do here */
3213                 if ( cfb->cb_got_ldif ) {
3214                         rc = 0;
3215                         goto done;
3216                 }
3217         }
3218
3219         if ( fname )
3220                 cfname = fname;
3221         else
3222                 cfname = SLAPD_DEFAULT_CONFIGFILE;
3223
3224         rc = read_config_file(cfname, 0, NULL, config_back_cf_table);
3225
3226         if ( rc == 0 )
3227                 ber_str2bv( cfname, 0, 1, &cfb->cb_config->c_file );
3228
3229 done:
3230         if ( rc == 0 && BER_BVISNULL( &frontendDB->be_schemadn ) ) {
3231                 ber_str2bv( SLAPD_SCHEMA_DN, STRLENOF( SLAPD_SCHEMA_DN ), 1,
3232                         &frontendDB->be_schemadn );
3233                 rc = dnNormalize( 0, NULL, NULL, &frontendDB->be_schemadn, &frontendDB->be_schemandn, NULL );
3234                 if ( rc != LDAP_SUCCESS ) {
3235                         Debug(LDAP_DEBUG_ANY, "read_config: "
3236                                 "unable to normalize default schema DN \"%s\"\n",
3237                                 frontendDB->be_schemadn.bv_val, 0, 0 );
3238                         /* must not happen */
3239                         assert( 0 );
3240                 }
3241         }
3242         return rc;
3243 }
3244
3245 static int
3246 config_back_bind( Operation *op, SlapReply *rs )
3247 {
3248         if ( op->orb_method == LDAP_AUTH_SIMPLE && be_isroot_pw( op )) {
3249                 ber_dupbv( &op->orb_edn, be_root_dn( op->o_bd ));
3250                 /* frontend sends result */
3251                 return LDAP_SUCCESS;
3252         }
3253
3254         rs->sr_err = LDAP_INVALID_CREDENTIALS;
3255         send_ldap_result( op, rs );
3256
3257         return rs->sr_err;
3258 }
3259
3260 static int
3261 config_send( Operation *op, SlapReply *rs, CfEntryInfo *ce, int depth )
3262 {
3263         int rc = 0;
3264
3265         if ( test_filter( op, ce->ce_entry, op->ors_filter ) == LDAP_COMPARE_TRUE )
3266         {
3267                 rs->sr_attrs = op->ors_attrs;
3268                 rs->sr_entry = ce->ce_entry;
3269                 rs->sr_flags = 0;
3270                 rc = send_search_entry( op, rs );
3271         }
3272         if ( op->ors_scope == LDAP_SCOPE_SUBTREE ) {
3273                 if ( ce->ce_kids ) {
3274                         rc = config_send( op, rs, ce->ce_kids, 1 );
3275                         if ( rc ) return rc;
3276                 }
3277                 if ( depth ) {
3278                         for (ce=ce->ce_sibs; ce; ce=ce->ce_sibs) {
3279                                 rc = config_send( op, rs, ce, 0 );
3280                                 if ( rc ) break;
3281                         }
3282                 }
3283         }
3284         return rc;
3285 }
3286
3287 static ConfigTable *
3288 config_find_table( ConfigOCs **colst, int nocs, AttributeDescription *ad )
3289 {
3290         int i, j;
3291
3292         for (j=0; j<nocs; j++) {
3293                 for (i=0; colst[j]->co_table[i].name; i++)
3294                         if ( colst[j]->co_table[i].ad == ad )
3295                                 return &colst[j]->co_table[i];
3296         }
3297         return NULL;
3298 }
3299
3300 /* Sort the attributes of the entry according to the order defined
3301  * in the objectclass, with required attributes occurring before
3302  * allowed attributes. For any attributes with sequencing dependencies
3303  * (e.g., rootDN must be defined after suffix) the objectclass must
3304  * list the attributes in the desired sequence.
3305  */
3306 static void
3307 sort_attrs( Entry *e, ConfigOCs **colst, int nocs )
3308 {
3309         Attribute *a, *head = NULL, *tail = NULL, **prev;
3310         int i, j;
3311
3312         for (i=0; i<nocs; i++) {
3313                 if ( colst[i]->co_oc->soc_required ) {
3314                         AttributeType **at = colst[i]->co_oc->soc_required;
3315                         for (j=0; at[j]; j++) {
3316                                 for (a=e->e_attrs, prev=&e->e_attrs; a;
3317                                         prev = &(*prev)->a_next, a=a->a_next) {
3318                                         if ( a->a_desc == at[j]->sat_ad ) {
3319                                                 *prev = a->a_next;
3320                                                 if (!head) {
3321                                                         head = a;
3322                                                         tail = a;
3323                                                 } else {
3324                                                         tail->a_next = a;
3325                                                         tail = a;
3326                                                 }
3327                                                 break;
3328                                         }
3329                                 }
3330                         }
3331                 }
3332                 if ( colst[i]->co_oc->soc_allowed ) {
3333                         AttributeType **at = colst[i]->co_oc->soc_allowed;
3334                         for (j=0; at[j]; j++) {
3335                                 for (a=e->e_attrs, prev=&e->e_attrs; a;
3336                                         prev = &(*prev)->a_next, a=a->a_next) {
3337                                         if ( a->a_desc == at[j]->sat_ad ) {
3338                                                 *prev = a->a_next;
3339                                                 if (!head) {
3340                                                         head = a;
3341                                                         tail = a;
3342                                                 } else {
3343                                                         tail->a_next = a;
3344                                                         tail = a;
3345                                                 }
3346                                                 break;
3347                                         }
3348                                 }
3349                         }
3350                 }
3351         }
3352         if ( tail ) {
3353                 tail->a_next = e->e_attrs;
3354                 e->e_attrs = head;
3355         }
3356 }
3357
3358 static int
3359 check_vals( ConfigTable *ct, ConfigArgs *ca, void *ptr, int isAttr )
3360 {
3361         Attribute *a = NULL;
3362         AttributeDescription *ad;
3363         BerVarray vals;
3364
3365         int i, rc = 0, sort = 0;
3366
3367         if ( isAttr ) {
3368                 a = ptr;
3369                 ad = a->a_desc;
3370                 vals = a->a_vals;
3371         } else {
3372                 Modifications *ml = ptr;
3373                 ad = ml->sml_desc;
3374                 vals = ml->sml_values;
3375         }
3376
3377         if ( a && ( ad->ad_type->sat_flags & SLAP_AT_ORDERED_VAL )) {
3378                 sort = 1;
3379                 rc = ordered_value_sort( a, 1 );
3380                 if ( rc ) {
3381                         snprintf(ca->msg, sizeof( ca->msg ), "ordered_value_sort failed on attr %s\n",
3382                                 ad->ad_cname.bv_val );
3383                         return rc;
3384                 }
3385         }
3386         for ( i=0; vals[i].bv_val; i++ ) {
3387                 ca->line = vals[i].bv_val;
3388                 if ( sort ) {
3389                         char *idx = strchr( ca->line, '}' );
3390                         if ( idx ) ca->line = idx+1;
3391                 }
3392                 rc = config_parse_vals( ct, ca, i );
3393                 if ( rc ) {
3394                         break;
3395                 }
3396         }
3397         return rc;
3398 }
3399
3400 static int
3401 check_name_index( CfEntryInfo *parent, ConfigType ce_type, Entry *e,
3402         SlapReply *rs, int *renum )
3403 {
3404         CfEntryInfo *ce;
3405         int index = -1, gotindex = 0, nsibs;
3406         int renumber = 0, tailindex = 0;
3407         char *ptr1, *ptr2 = NULL;
3408         struct berval rdn;
3409
3410         if ( renum ) *renum = 0;
3411
3412         /* These entries don't get indexed/renumbered */
3413         if ( ce_type == Cft_Global ) return 0;
3414         if ( ce_type == Cft_Schema && parent->ce_type == Cft_Global ) return 0;
3415
3416         if ( ce_type == Cft_Include || ce_type == Cft_Module )
3417                 tailindex = 1;
3418
3419         /* See if the rdn has an index already */
3420         dnRdn( &e->e_name, &rdn );
3421         ptr1 = ber_bvchr( &e->e_name, '{' );
3422         if ( ptr1 && ptr1 - e->e_name.bv_val < rdn.bv_len ) {
3423                 char    *next;
3424                 ptr2 = strchr( ptr1, '}' );
3425                 if (!ptr2 || ptr2 - e->e_name.bv_val > rdn.bv_len)
3426                         return LDAP_NAMING_VIOLATION;
3427                 if ( ptr2-ptr1 == 1)
3428                         return LDAP_NAMING_VIOLATION;
3429                 gotindex = 1;
3430                 index = strtol( ptr1 + 1, &next, 10 );
3431                 if ( next == ptr1 + 1 || next[ 0 ] != '}' ) {
3432                         return LDAP_NAMING_VIOLATION;
3433                 }
3434                 if ( index < 0 ) {
3435                         /* Special case, we allow -1 for the frontendDB */
3436                         if ( index != -1 || ce_type != Cft_Database ||
3437                                 strncmp( ptr2+1, "frontend,", STRLENOF("frontend,") ))
3438
3439                                 return LDAP_NAMING_VIOLATION;
3440                 }
3441         }
3442
3443         /* count related kids */
3444         for (nsibs=0, ce=parent->ce_kids; ce; ce=ce->ce_sibs) {
3445                 if ( ce->ce_type == ce_type ) nsibs++;
3446         }
3447
3448         if ( index != nsibs ) {
3449                 if ( gotindex ) {
3450                         if ( index < nsibs ) {
3451                                 if ( tailindex ) return LDAP_NAMING_VIOLATION;
3452                                 /* Siblings need to be renumbered */
3453                                 renumber = 1;
3454                         }
3455                 }
3456                 if ( !renumber ) {
3457                         struct berval ival, newrdn, nnewrdn;
3458                         struct berval rtype, rval;
3459                         Attribute *a;
3460                         AttributeDescription *ad = NULL;
3461                         char ibuf[32];
3462                         const char *text;
3463
3464                         rval.bv_val = strchr(rdn.bv_val, '=' ) + 1;
3465                         rval.bv_len = rdn.bv_len - (rval.bv_val - rdn.bv_val);
3466                         rtype.bv_val = rdn.bv_val;
3467                         rtype.bv_len = rval.bv_val - rtype.bv_val - 1;
3468
3469                         /* Find attr */
3470                         slap_bv2ad( &rtype, &ad, &text );
3471                         a = attr_find( e->e_attrs, ad );
3472                         if (!a ) return LDAP_NAMING_VIOLATION;
3473
3474                         ival.bv_val = ibuf;
3475                         ival.bv_len = snprintf( ibuf, sizeof( ibuf ), SLAP_X_ORDERED_FMT, nsibs );
3476                         if ( ival.bv_len >= sizeof( ibuf ) ) {
3477                                 return LDAP_NAMING_VIOLATION;
3478                         }
3479                         
3480                         newrdn.bv_len = rdn.bv_len + ival.bv_len;
3481                         newrdn.bv_val = ch_malloc( newrdn.bv_len+1 );
3482
3483                         if ( tailindex ) {
3484                                 ptr1 = lutil_strncopy( newrdn.bv_val, rdn.bv_val, rdn.bv_len );
3485                                 ptr1 = lutil_strcopy( ptr1, ival.bv_val );
3486                         } else {
3487                                 int xlen;
3488                                 if ( !gotindex ) {
3489                                         ptr2 = rval.bv_val;
3490                                         xlen = rval.bv_len;
3491                                 } else {
3492                                         xlen = rdn.bv_len - (ptr2 - rdn.bv_val);
3493                                 }
3494                                 ptr1 = lutil_strncopy( newrdn.bv_val, rtype.bv_val,
3495                                         rtype.bv_len );
3496                                 *ptr1++ = '=';
3497                                 ptr1 = lutil_strcopy( ptr1, ival.bv_val );
3498                                 ptr1 = lutil_strncopy( ptr1, ptr2, xlen );
3499                                 *ptr1 = '\0';
3500                         }
3501
3502                         /* Do the equivalent of ModRDN */
3503                         /* Replace DN / NDN */
3504                         newrdn.bv_len = ptr1 - newrdn.bv_val;
3505                         rdnNormalize( 0, NULL, NULL, &newrdn, &nnewrdn, NULL );
3506                         free( e->e_name.bv_val );
3507                         build_new_dn( &e->e_name, &parent->ce_entry->e_name,
3508                                 &newrdn, NULL );
3509                         free( e->e_nname.bv_val );
3510                         build_new_dn( &e->e_nname, &parent->ce_entry->e_nname,
3511                                 &nnewrdn, NULL );
3512
3513                         /* Replace attr */
3514                         free( a->a_vals[0].bv_val );
3515                         ptr1 = strchr( newrdn.bv_val, '=' ) + 1;
3516                         a->a_vals[0].bv_len = newrdn.bv_len - (ptr1 - newrdn.bv_val);
3517                         a->a_vals[0].bv_val = ch_malloc( a->a_vals[0].bv_len + 1 );
3518                         strcpy( a->a_vals[0].bv_val, ptr1 );
3519
3520                         if ( a->a_nvals != a->a_vals ) {
3521                                 free( a->a_nvals[0].bv_val );
3522                                 ptr1 = strchr( nnewrdn.bv_val, '=' ) + 1;
3523                                 a->a_nvals[0].bv_len = nnewrdn.bv_len - (ptr1 - nnewrdn.bv_val);
3524                                 a->a_nvals[0].bv_val = ch_malloc( a->a_nvals[0].bv_len + 1 );
3525                                 strcpy( a->a_nvals[0].bv_val, ptr1 );
3526                         }
3527                         free( nnewrdn.bv_val );
3528                         free( newrdn.bv_val );
3529                 }
3530         }
3531         if ( renum ) *renum = renumber;
3532         return 0;
3533 }
3534
3535 static ConfigOCs **
3536 count_ocs( Attribute *oc_at, int *nocs )
3537 {
3538         int i, j, n;
3539         ConfigOCs co, *coptr, **colst;
3540
3541         /* count the objectclasses */
3542         for ( i=0; oc_at->a_nvals[i].bv_val; i++ );
3543         n = i;
3544         colst = (ConfigOCs **)ch_malloc( n * sizeof(ConfigOCs *));
3545
3546         for ( i=0, j=0; i<n; i++) {
3547                 co.co_name = &oc_at->a_nvals[i];
3548                 coptr = avl_find( CfOcTree, &co, CfOc_cmp );
3549                 
3550                 /* ignore non-config objectclasses. probably should be
3551                  * an error, general data doesn't belong here.
3552                  */
3553                 if ( !coptr ) continue;
3554
3555                 /* Ignore the root objectclass, it has no implementation.
3556                  */
3557                 if ( coptr->co_type == Cft_Abstract ) continue;
3558                 colst[j++] = coptr;
3559         }
3560         *nocs = j;
3561         return colst;
3562 }
3563
3564 static int
3565 cfAddInclude( CfEntryInfo *p, Entry *e, ConfigArgs *ca )
3566 {
3567         if ( p->ce_type != Cft_Global && p->ce_type != Cft_Include )
3568                 return LDAP_CONSTRAINT_VIOLATION;
3569
3570         /* If we're reading from a configdir, don't parse this entry */
3571         if ( ca->lineno )
3572                 return LDAP_COMPARE_TRUE;
3573
3574         cfn = p->ce_private;
3575         ca->private = cfn;
3576         return LDAP_SUCCESS;
3577 }
3578
3579 static int
3580 cfAddSchema( CfEntryInfo *p, Entry *e, ConfigArgs *ca )
3581 {
3582         ConfigFile *cfo;
3583
3584         /* This entry is hardcoded, don't re-parse it */
3585         if ( p->ce_type == Cft_Global ) {
3586                 cfn = p->ce_private;
3587                 ca->private = cfn;
3588                 return LDAP_COMPARE_TRUE;
3589         }
3590         if ( p->ce_type != Cft_Schema )
3591                 return LDAP_CONSTRAINT_VIOLATION;
3592
3593         cfn = ch_calloc( 1, sizeof(ConfigFile) );
3594         ca->private = cfn;
3595         cfo = p->ce_private;
3596         cfn->c_sibs = cfo->c_kids;
3597         cfo->c_kids = cfn;
3598         return LDAP_SUCCESS;
3599 }
3600
3601 static int
3602 cfAddDatabase( CfEntryInfo *p, Entry *e, struct config_args_s *ca )
3603 {
3604         if ( p->ce_type != Cft_Global )
3605                 return LDAP_CONSTRAINT_VIOLATION;
3606         ca->be = frontendDB;    /* just to get past check_vals */
3607         return LDAP_SUCCESS;
3608 }
3609
3610 static int
3611 cfAddBackend( CfEntryInfo *p, Entry *e, struct config_args_s *ca )
3612 {
3613         if ( p->ce_type != Cft_Global )
3614                 return LDAP_CONSTRAINT_VIOLATION;
3615         return LDAP_SUCCESS;
3616 }
3617
3618 static int
3619 cfAddModule( CfEntryInfo *p, Entry *e, struct config_args_s *ca )
3620 {
3621         if ( p->ce_type != Cft_Global )
3622                 return LDAP_CONSTRAINT_VIOLATION;
3623         return LDAP_SUCCESS;
3624 }
3625
3626 static int
3627 cfAddOverlay( CfEntryInfo *p, Entry *e, struct config_args_s *ca )
3628 {
3629         if ( p->ce_type != Cft_Database )
3630                 return LDAP_CONSTRAINT_VIOLATION;
3631         ca->be = p->ce_be;
3632         return LDAP_SUCCESS;
3633 }
3634
3635 /* Parse an LDAP entry into config directives */
3636 static int
3637 config_add_internal( CfBackInfo *cfb, Entry *e, ConfigArgs *ca, SlapReply *rs,
3638         int *renum, Operation *op )
3639 {
3640         CfEntryInfo *ce, *last;
3641         ConfigOCs **colst;
3642         Attribute *a, *oc_at;
3643         int i, nocs, rc = 0;
3644         struct berval pdn;
3645         ConfigTable *ct;
3646         char *ptr;
3647
3648         /* Make sure parent exists and entry does not */
3649         ce = config_find_base( cfb->cb_root, &e->e_nname, &last );
3650         if ( ce )
3651                 return LDAP_ALREADY_EXISTS;
3652
3653         dnParent( &e->e_nname, &pdn );
3654
3655         /* If last is NULL, the new entry is the root/suffix entry, 
3656          * otherwise last should be the parent.
3657          */
3658         if ( last && !dn_match( &last->ce_entry->e_nname, &pdn )) {
3659                 if ( rs )
3660                         rs->sr_matched = last->ce_entry->e_name.bv_val;
3661                 return LDAP_NO_SUCH_OBJECT;
3662         }
3663
3664         if ( op ) {
3665                 /* No parent, must be root. This will never happen... */
3666                 if ( !last && !be_isroot( op ) && !be_shadow_update( op ))
3667                         return LDAP_NO_SUCH_OBJECT;
3668                 if ( last && !access_allowed( op, last->ce_entry,
3669                         slap_schema.si_ad_children, NULL, ACL_WADD, NULL ))
3670                         return LDAP_INSUFFICIENT_ACCESS;
3671         }
3672
3673         oc_at = attr_find( e->e_attrs, slap_schema.si_ad_objectClass );
3674         if ( !oc_at ) return LDAP_OBJECT_CLASS_VIOLATION;
3675
3676         memset( ca, 0, sizeof(ConfigArgs));
3677
3678         /* Fake the coordinates based on whether we're part of an
3679          * LDAP Add or if reading the config dir
3680          */
3681         if ( rs ) {
3682                 ca->fname = "slapd";
3683                 ca->lineno = 0;
3684         } else {
3685                 ca->fname = cfdir.bv_val;
3686                 ca->lineno = 1;
3687         }
3688
3689         colst = count_ocs( oc_at, &nocs );
3690
3691         /* Only the root can be Cft_Global, everything else must
3692          * have a parent. Only limited nesting arrangements are allowed.
3693          */
3694         rc = LDAP_CONSTRAINT_VIOLATION;
3695         if ( colst[0]->co_type == Cft_Global && !last ) {
3696                 cfn = cfb->cb_config;
3697                 ca->private = cfn;
3698                 ca->be = frontendDB;    /* just to get past check_vals */
3699                 rc = LDAP_SUCCESS;
3700         }
3701
3702         /* Check whether the Add is allowed by its parent, and do
3703          * any necessary arg setup
3704          */
3705         if ( last ) {
3706                 for ( i=0; i<nocs; i++ ) {
3707                         if ( colst[i]->co_ldadd &&
3708                                 ( rc = colst[i]->co_ldadd( last, e, ca ))
3709                                         != LDAP_CONSTRAINT_VIOLATION ) {
3710                                 break;
3711                         }
3712                 }
3713         }
3714
3715         /* Add the entry but don't parse it, we already have its contents */
3716         if ( rc == LDAP_COMPARE_TRUE ) {
3717                 rc = LDAP_SUCCESS;
3718                 goto ok;
3719         }
3720
3721         if ( rc != LDAP_SUCCESS )
3722                 goto done;
3723
3724         /* Parse all the values and check for simple syntax errors before
3725          * performing any set actions.
3726          *
3727          * If doing an LDAPadd, check for indexed names and any necessary
3728          * renaming/renumbering. Entries that don't need indexed names are
3729          * ignored. Entries that need an indexed name and arrive without one
3730          * are assigned to the end. Entries that arrive with an index may
3731          * cause the following entries to be renumbered/bumped down.
3732          *
3733          * Note that "pseudo-indexed" entries (cn=Include{xx}, cn=Module{xx})
3734          * don't allow Adding an entry with an index that's already in use.
3735          * This is flagged as an error (LDAP_ALREADY_EXISTS) up above.
3736          *
3737          * These entries can have auto-assigned indexes (appended to the end)
3738          * but only the other types support auto-renumbering of siblings.
3739          */
3740         {
3741                 int renumber = renum ? *renum : 0;
3742                 rc = check_name_index( last, colst[0]->co_type, e, rs, renum );
3743                 if ( rc ) {
3744                         goto done;
3745                 }
3746                 if ( renum && *renum && renumber == -1 ) {
3747                         snprintf( ca->msg, sizeof( ca->msg ),
3748                                 "operation requires sibling renumbering" );
3749                         rc = LDAP_UNWILLING_TO_PERFORM;
3750                         goto done;
3751                 }
3752         }
3753
3754         init_config_argv( ca );
3755
3756         /* Make sure we process attrs in the required order */
3757         sort_attrs( e, colst, nocs );
3758
3759         for ( a=e->e_attrs; a; a=a->a_next ) {
3760                 if ( a == oc_at ) continue;
3761                 ct = config_find_table( colst, nocs, a->a_desc );
3762                 if ( !ct ) continue;    /* user data? */
3763                 rc = check_vals( ct, ca, a, 1 );
3764                 if ( rc ) goto done;
3765         }
3766
3767         /* Basic syntax checks are OK. Do the actual settings. */
3768         for ( a=e->e_attrs; a; a=a->a_next ) {
3769                 if ( a == oc_at ) continue;
3770                 ct = config_find_table( colst, nocs, a->a_desc );
3771                 if ( !ct ) continue;    /* user data? */
3772                 for (i=0; a->a_vals[i].bv_val; i++) {
3773                         ca->line = a->a_vals[i].bv_val;
3774                         if ( a->a_desc->ad_type->sat_flags & SLAP_AT_ORDERED ) {
3775                                 ptr = strchr( ca->line, '}' );
3776                                 if ( ptr ) ca->line = ptr+1;
3777                         }
3778                         ca->valx = i;
3779                         rc = config_parse_add( ct, ca );
3780                         if ( rc ) {
3781                                 rc = LDAP_OTHER;
3782                                 goto done;
3783                         }
3784                 }
3785         }
3786 ok:
3787         /* Newly added databases and overlays need to be started up */
3788         if ( CONFIG_ONLINE_ADD( ca )) {
3789                 if ( colst[0]->co_type == Cft_Database ) {
3790                         rc = backend_startup_one( ca->be );
3791
3792                 } else if ( colst[0]->co_type == Cft_Overlay ) {
3793                         if ( ca->bi->bi_db_open ) {
3794                                 BackendInfo *bi_orig = ca->be->bd_info;
3795                                 ca->be->bd_info = ca->bi;
3796                                 rc = ca->bi->bi_db_open( ca->be );
3797                                 ca->be->bd_info = bi_orig;
3798                         }
3799                 }
3800                 if ( rc ) {
3801                         snprintf( ca->msg, sizeof( ca->msg ), "<%s> failed startup", ca->argv[0] );
3802                         Debug(LDAP_DEBUG_ANY, "%s: %s (%s)!\n",
3803                                 ca->log, ca->msg, ca->argv[1] );
3804                         rc = LDAP_OTHER;
3805                         goto done;
3806                 }
3807         }
3808
3809         ce = ch_calloc( 1, sizeof(CfEntryInfo) );
3810         ce->ce_parent = last;
3811         ce->ce_entry = entry_dup( e );
3812         ce->ce_entry->e_private = ce;
3813         ce->ce_type = colst[0]->co_type;
3814         ce->ce_be = ca->be;
3815         ce->ce_bi = ca->bi;
3816         ce->ce_private = ca->private;
3817         if ( !last ) {
3818                 cfb->cb_root = ce;
3819         } else if ( last->ce_kids ) {
3820                 CfEntryInfo *c2;
3821
3822                 for (c2=last->ce_kids; c2 && c2->ce_sibs; c2 = c2->ce_sibs);
3823
3824                 c2->ce_sibs = ce;
3825         } else {
3826                 last->ce_kids = ce;
3827         }
3828
3829 done:
3830         if ( rc ) {
3831                 if ( (colst[0]->co_type == Cft_Database) && ca->be ) {
3832                         if ( ca->be != frontendDB )
3833                                 backend_destroy_one( ca->be, 1 );
3834                 } else if ( (colst[0]->co_type == Cft_Overlay) && ca->bi ) {
3835                         overlay_destroy_one( ca->be, (slap_overinst *)ca->bi );
3836                 }
3837         }
3838
3839         ch_free( ca->argv );
3840         if ( colst ) ch_free( colst );
3841         return rc;
3842 }
3843
3844 /* Parse an LDAP entry into config directives, then store in underlying
3845  * database.
3846  */
3847 static int
3848 config_back_add( Operation *op, SlapReply *rs )
3849 {
3850         CfBackInfo *cfb;
3851         int renumber;
3852         ConfigArgs ca;
3853
3854         if ( !access_allowed( op, op->ora_e, slap_schema.si_ad_entry,
3855                 NULL, ACL_WADD, NULL )) {
3856                 rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
3857                 goto out;
3858         }
3859
3860         cfb = (CfBackInfo *)op->o_bd->be_private;
3861
3862         ldap_pvt_thread_pool_pause( &connection_pool );
3863
3864         /* Strategy:
3865          * 1) check for existence of entry
3866          * 2) check for sibling renumbering
3867          * 3) perform internal add
3868          * 4) store entry in underlying database
3869          * 5) perform any necessary renumbering
3870          */
3871         /* NOTE: by now we do not accept adds that require renumbering */
3872         renumber = -1;
3873         rs->sr_err = config_add_internal( cfb, op->ora_e, &ca, rs, &renumber, op );
3874         if ( rs->sr_err != LDAP_SUCCESS ) {
3875                 rs->sr_text = ca.msg;
3876                 goto out2;
3877         }
3878
3879         if ( cfb->cb_use_ldif ) {
3880                 BackendDB *be = op->o_bd;
3881                 slap_callback sc = { NULL, slap_null_cb, NULL, NULL };
3882                 struct berval dn, ndn;
3883
3884                 op->o_bd = &cfb->cb_db;
3885
3886                 /* Save current rootdn; use the underlying DB's rootdn */
3887                 dn = op->o_dn;
3888                 ndn = op->o_ndn;
3889                 op->o_dn = op->o_bd->be_rootdn;
3890                 op->o_ndn = op->o_bd->be_rootndn;
3891
3892                 sc.sc_next = op->o_callback;
3893                 op->o_callback = &sc;
3894                 op->o_bd->be_add( op, rs );
3895                 op->o_bd = be;
3896                 op->o_callback = sc.sc_next;
3897                 op->o_dn = dn;
3898                 op->o_ndn = ndn;
3899         }
3900
3901         if ( renumber ) {
3902                 /* TODO */
3903         }
3904
3905 out2:;
3906         ldap_pvt_thread_pool_resume( &connection_pool );
3907
3908 out:;
3909         send_ldap_result( op, rs );
3910         return rs->sr_err;
3911 }
3912
3913 typedef struct delrec {
3914         struct delrec *next;
3915         int nidx;
3916         int idx[1];
3917 } delrec;
3918
3919 static int
3920 config_modify_internal( CfEntryInfo *ce, Operation *op, SlapReply *rs,
3921         ConfigArgs *ca )
3922 {
3923         int rc = LDAP_UNWILLING_TO_PERFORM;
3924         Modifications *ml;
3925         Entry *e = ce->ce_entry;
3926         Attribute *save_attrs = e->e_attrs, *oc_at;
3927         ConfigTable *ct;
3928         ConfigOCs **colst;
3929         int i, nocs;
3930         char *ptr;
3931         delrec *dels = NULL, *deltail = NULL;
3932
3933         oc_at = attr_find( e->e_attrs, slap_schema.si_ad_objectClass );
3934         if ( !oc_at ) return LDAP_OBJECT_CLASS_VIOLATION;
3935
3936         colst = count_ocs( oc_at, &nocs );
3937
3938         e->e_attrs = attrs_dup( e->e_attrs );
3939
3940         init_config_argv( ca );
3941         ca->be = ce->ce_be;
3942         ca->bi = ce->ce_bi;
3943         ca->private = ce->ce_private;
3944         ca->ca_entry = e;
3945         ca->fname = "slapd";
3946         strcpy( ca->log, "back-config" );
3947
3948         for (ml = op->orm_modlist; ml; ml=ml->sml_next) {
3949                 ct = config_find_table( colst, nocs, ml->sml_desc );
3950                 switch (ml->sml_op) {
3951                 case LDAP_MOD_DELETE:
3952                 case LDAP_MOD_REPLACE: {
3953                         BerVarray vals = NULL, nvals = NULL;
3954                         int *idx = NULL;
3955                         if ( ct && ( ct->arg_type & ARG_NO_DELETE )) {
3956                                 rc = LDAP_OTHER;
3957                                 snprintf(ca->msg, sizeof(ca->msg), "cannot delete %s",
3958                                         ml->sml_desc->ad_cname.bv_val );
3959                                 goto out;
3960                         }
3961                         if ( ml->sml_op == LDAP_MOD_REPLACE ) {
3962                                 vals = ml->sml_values;
3963                                 nvals = ml->sml_nvalues;
3964                                 ml->sml_values = NULL;
3965                                 ml->sml_nvalues = NULL;
3966                         }
3967                         /* If we're deleting by values, remember the indexes of the
3968                          * values we deleted.
3969                          */
3970                         if ( ct && ml->sml_values ) {
3971                                 delrec *d;
3972                                 for (i=0; ml->sml_values[i].bv_val; i++);
3973                                 d = ch_malloc( sizeof(delrec) + (i - 1)* sizeof(int));
3974                                 d->nidx = i;
3975                                 d->next = NULL;
3976                                 if ( dels ) {
3977                                         deltail->next = d;
3978                                 } else {
3979                                         dels = d;
3980                                 }
3981                                 deltail = d;
3982                                 idx = d->idx;
3983                         }
3984                         rc = modify_delete_vindex(e, &ml->sml_mod,
3985                                 get_permissiveModify(op),
3986                                 &rs->sr_text, ca->msg, sizeof(ca->msg), idx );
3987                         if ( ml->sml_op == LDAP_MOD_REPLACE ) {
3988                                 ml->sml_values = vals;
3989                                 ml->sml_nvalues = nvals;
3990                         }
3991                         if ( !vals )
3992                                 break;
3993                         }
3994                         /* FALLTHRU: LDAP_MOD_REPLACE && vals */
3995
3996                 case LDAP_MOD_ADD:
3997                 case SLAP_MOD_SOFTADD: {
3998                         int mop = ml->sml_op;
3999                         int navals = -1;
4000                         ml->sml_op = LDAP_MOD_ADD;
4001                         if ( ct ) {
4002                                 if ( ct->arg_type & ARG_NO_INSERT ) {
4003                                         Attribute *a = attr_find( e->e_attrs, ml->sml_desc );
4004                                         if ( a ) {
4005                                                 for (i = 0; a->a_vals[i].bv_val; i++ );
4006                                                 navals = i;
4007                                         }
4008                                 }
4009                                 for ( i=0; !BER_BVISNULL( &ml->sml_values[i] ); i++ ) {
4010                                         if ( ml->sml_values[i].bv_val[0] == '{' &&
4011                                                 navals >= 0 )
4012                                         {
4013                                                 char    *next, *val = ml->sml_values[i].bv_val + 1;
4014                                                 int     j;
4015
4016                                                 j = strtol( val, &next, 0 );
4017                                                 if ( next == val || next[ 0 ] != '}' || j < navals ) {
4018                                                         rc = LDAP_OTHER;
4019                                                         snprintf(ca->msg, sizeof(ca->msg), "cannot insert %s",
4020                                                                 ml->sml_desc->ad_cname.bv_val );
4021                                                         goto out;
4022                                                 }
4023                                         }
4024                                         rc = check_vals( ct, ca, ml, 0 );
4025                                         if ( rc ) goto out;
4026                                 }
4027                         }
4028                         rc = modify_add_values(e, &ml->sml_mod,
4029                                    get_permissiveModify(op),
4030                                    &rs->sr_text, ca->msg, sizeof(ca->msg) );
4031
4032                         /* If value already exists, show success here
4033                          * and ignore this operation down below.
4034                          */
4035                         if ( mop == SLAP_MOD_SOFTADD ) {
4036                                 if ( rc == LDAP_TYPE_OR_VALUE_EXISTS )
4037                                         rc = LDAP_SUCCESS;
4038                                 else
4039                                         mop = LDAP_MOD_ADD;
4040                         }
4041                         ml->sml_op = mop;
4042                         break;
4043                         }
4044
4045                         break;
4046                 case LDAP_MOD_INCREMENT:        /* FIXME */
4047                         break;
4048                 default:
4049                         break;
4050                 }
4051                 if(rc != LDAP_SUCCESS) break;
4052         }
4053         
4054         if(rc == LDAP_SUCCESS) {
4055                 /* check that the entry still obeys the schema */
4056                 rc = entry_schema_check(op, e, NULL, 0,
4057                         &rs->sr_text, ca->msg, sizeof(ca->msg) );
4058         }
4059         if ( rc == LDAP_SUCCESS ) {
4060                 /* Basic syntax checks are OK. Do the actual settings. */
4061                 for ( ml = op->orm_modlist; ml; ml = ml->sml_next ) {
4062                         ct = config_find_table( colst, nocs, ml->sml_desc );
4063                         if ( !ct ) continue;
4064
4065                         switch (ml->sml_op) {
4066                         case LDAP_MOD_DELETE:
4067                         case LDAP_MOD_REPLACE: {
4068                                 BerVarray vals = NULL, nvals = NULL;
4069                                 Attribute *a;
4070                                 delrec *d = NULL;
4071
4072                                 a = attr_find( e->e_attrs, ml->sml_desc );
4073
4074                                 if ( ml->sml_op == LDAP_MOD_REPLACE ) {
4075                                         vals = ml->sml_values;
4076                                         nvals = ml->sml_nvalues;
4077                                         ml->sml_values = NULL;
4078                                         ml->sml_nvalues = NULL;
4079                                 }
4080
4081                                 if ( ml->sml_values )
4082                                         d = dels;
4083
4084                                 /* If we didn't delete the whole attribute */
4085                                 if ( ml->sml_values && a ) {
4086                                         struct berval *mvals;
4087                                         int j;
4088
4089                                         if ( ml->sml_nvalues )
4090                                                 mvals = ml->sml_nvalues;
4091                                         else
4092                                                 mvals = ml->sml_values;
4093
4094                                         /* use the indexes we saved up above */
4095                                         for (i=0; i < d->nidx; i++) {
4096                                                 struct berval bv = *mvals++;
4097                                                 if ( a->a_desc->ad_type->sat_flags & SLAP_AT_ORDERED &&
4098                                                         bv.bv_val[0] == '{' ) {
4099                                                         ptr = strchr( bv.bv_val, '}' ) + 1;
4100                                                         bv.bv_len -= ptr - bv.bv_val;
4101                                                         bv.bv_val = ptr;
4102                                                 }
4103                                                 ca->line = bv.bv_val;
4104                                                 ca->valx = d->idx[i];
4105                                                 rc = config_del_vals( ct, ca );
4106                                                 if ( rc != LDAP_SUCCESS ) break;
4107                                                 for (j=i+1; j < d->nidx; j++)
4108                                                         if ( d->idx[j] >d->idx[i] )
4109                                                                 d->idx[j]--;
4110                                         }
4111                                 } else {
4112                                         ca->valx = -1;
4113                                         ca->line = NULL;
4114                                         rc = config_del_vals( ct, ca );
4115                                         if ( rc ) rc = LDAP_OTHER;
4116                                 }
4117                                 if ( ml->sml_values ) {
4118                                         ch_free( dels );
4119                                         dels = d->next;
4120                                 }
4121                                 if ( ml->sml_op == LDAP_MOD_REPLACE ) {
4122                                         ml->sml_values = vals;
4123                                         ml->sml_nvalues = nvals;
4124                                 }
4125                                 if ( !vals || rc != LDAP_SUCCESS )
4126                                         break;
4127                                 }
4128                                 /* FALLTHRU: LDAP_MOD_REPLACE && vals */
4129
4130                         case LDAP_MOD_ADD:
4131                                 for (i=0; ml->sml_values[i].bv_val; i++) {
4132                                         ca->line = ml->sml_values[i].bv_val;
4133                                         ca->valx = -1;
4134                                         if ( ml->sml_desc->ad_type->sat_flags & SLAP_AT_ORDERED &&
4135                                                 ca->line[0] == '{' )
4136                                         {
4137                                                 ptr = strchr( ca->line + 1, '}' );
4138                                                 if ( ptr ) {
4139                                                         char    *next;
4140
4141                                                         ca->valx = strtol( ca->line + 1, &next, 0 );
4142                                                         if ( next == ca->line + 1 || next[ 0 ] != '}' ) {
4143                                                                 rc = LDAP_OTHER;
4144                                                                 goto out;
4145                                                         }
4146                                                         ca->line = ptr+1;
4147                                                 }
4148                                         }
4149                                         rc = config_parse_add( ct, ca );
4150                                         if ( rc ) {
4151                                                 rc = LDAP_OTHER;
4152                                                 goto out;
4153                                         }
4154                                 }
4155
4156                                 break;
4157                         }
4158                 }
4159         }
4160
4161 out:
4162         if ( ca->cleanup )
4163                 ca->cleanup( ca );
4164         if ( rc == LDAP_SUCCESS ) {
4165                 attrs_free( save_attrs );
4166         } else {
4167                 attrs_free( e->e_attrs );
4168                 e->e_attrs = save_attrs;
4169         }
4170         ch_free( ca->argv );
4171         if ( colst ) ch_free( colst );
4172         while( dels ) {
4173                 deltail = dels->next;
4174                 ch_free( dels );
4175                 dels = deltail;
4176         }
4177
4178         return rc;
4179 }
4180
4181 static int
4182 config_back_modify( Operation *op, SlapReply *rs )
4183 {
4184         CfBackInfo *cfb;
4185         CfEntryInfo *ce, *last;
4186         Modifications *ml;
4187         ConfigArgs ca = {0};
4188         struct berval rdn;
4189         char *ptr;
4190         AttributeDescription *rad = NULL;
4191
4192         cfb = (CfBackInfo *)op->o_bd->be_private;
4193
4194         ce = config_find_base( cfb->cb_root, &op->o_req_ndn, &last );
4195         if ( !ce ) {
4196                 if ( last )
4197                         rs->sr_matched = last->ce_entry->e_name.bv_val;
4198                 rs->sr_err = LDAP_NO_SUCH_OBJECT;
4199                 goto out;
4200         }
4201
4202         if ( !acl_check_modlist( op, ce->ce_entry, op->orm_modlist )) {
4203                 rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
4204                 goto out;
4205         }
4206
4207         /* Get type of RDN */
4208         rdn = ce->ce_entry->e_nname;
4209         ptr = strchr( rdn.bv_val, '=' );
4210         rdn.bv_len = ptr - rdn.bv_val;
4211         slap_bv2ad( &rdn, &rad, &rs->sr_text );
4212
4213         /* Some basic validation... */
4214         for ( ml = op->orm_modlist; ml; ml = ml->sml_next ) {
4215                 /* Don't allow Modify of RDN; must use ModRdn for that. */
4216                 if ( ml->sml_desc == rad ) {
4217                         rs->sr_err = LDAP_NOT_ALLOWED_ON_RDN;
4218                         rs->sr_text = "Use modrdn to change the entry name";
4219                         goto out;
4220                 }
4221         }
4222
4223         ldap_pvt_thread_pool_pause( &connection_pool );
4224
4225         /* Strategy:
4226          * 1) perform the Modify on the cached Entry.
4227          * 2) verify that the Entry still satisfies the schema.
4228          * 3) perform the individual config operations.
4229          * 4) store Modified entry in underlying LDIF backend.
4230          */
4231         rs->sr_err = config_modify_internal( ce, op, rs, &ca );
4232         if ( rs->sr_err ) {
4233                 rs->sr_text = ca.msg;
4234         } else if ( cfb->cb_use_ldif ) {
4235                 BackendDB *be = op->o_bd;
4236                 slap_callback sc = { NULL, slap_null_cb, NULL, NULL };
4237                 struct berval dn, ndn;
4238
4239                 op->o_bd = &cfb->cb_db;
4240
4241                 dn = op->o_dn;
4242                 ndn = op->o_ndn;
4243                 op->o_dn = op->o_bd->be_rootdn;
4244                 op->o_ndn = op->o_bd->be_rootndn;
4245
4246                 sc.sc_next = op->o_callback;
4247                 op->o_callback = &sc;
4248                 op->o_bd->be_modify( op, rs );
4249                 op->o_bd = be;
4250                 op->o_callback = sc.sc_next;
4251                 op->o_dn = dn;
4252                 op->o_ndn = ndn;
4253         }
4254
4255         ldap_pvt_thread_pool_resume( &connection_pool );
4256 out:
4257         send_ldap_result( op, rs );
4258         return rs->sr_err;
4259 }
4260
4261 static int
4262 config_back_modrdn( Operation *op, SlapReply *rs )
4263 {
4264         CfBackInfo *cfb;
4265         CfEntryInfo *ce, *last;
4266
4267         cfb = (CfBackInfo *)op->o_bd->be_private;
4268
4269         ce = config_find_base( cfb->cb_root, &op->o_req_ndn, &last );
4270         if ( !ce ) {
4271                 if ( last )
4272                         rs->sr_matched = last->ce_entry->e_name.bv_val;
4273                 rs->sr_err = LDAP_NO_SUCH_OBJECT;
4274                 goto out;
4275         }
4276         if ( !access_allowed( op, ce->ce_entry, slap_schema.si_ad_entry,
4277                 NULL, ACL_WRITE, NULL )) {
4278                 rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
4279                 goto out;
4280         }
4281         { Entry *parent;
4282                 if ( ce->ce_parent )
4283                         parent = ce->ce_parent->ce_entry;
4284                 else
4285                         parent = (Entry *)&slap_entry_root;
4286                 if ( !access_allowed( op, parent, slap_schema.si_ad_children,
4287                         NULL, ACL_WRITE, NULL )) {
4288                         rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
4289                         goto out;
4290                 }
4291         }
4292
4293         /* We don't allow moving objects to new parents.
4294          * Generally we only allow reordering a set of ordered entries.
4295          */
4296         if ( op->orr_newSup ) {
4297                 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
4298                 goto out;
4299         }
4300         ldap_pvt_thread_pool_pause( &connection_pool );
4301
4302         rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
4303         rs->sr_text = "renaming not implemented yet within naming context";
4304
4305         ldap_pvt_thread_pool_resume( &connection_pool );
4306 out:
4307         send_ldap_result( op, rs );
4308         return rs->sr_err;
4309 }
4310
4311 static int
4312 config_back_search( Operation *op, SlapReply *rs )
4313 {
4314         CfBackInfo *cfb;
4315         CfEntryInfo *ce, *last;
4316         slap_mask_t mask;
4317
4318         cfb = (CfBackInfo *)op->o_bd->be_private;
4319
4320         ce = config_find_base( cfb->cb_root, &op->o_req_ndn, &last );
4321         if ( !ce ) {
4322                 if ( last )
4323                         rs->sr_matched = last->ce_entry->e_name.bv_val;
4324                 rs->sr_err = LDAP_NO_SUCH_OBJECT;
4325                 goto out;
4326         }
4327         if ( !access_allowed_mask( op, ce->ce_entry, slap_schema.si_ad_entry, NULL,
4328                 ACL_SEARCH, NULL, &mask ))
4329         {
4330                 if ( !ACL_GRANT( mask, ACL_DISCLOSE )) {
4331                         rs->sr_err = LDAP_NO_SUCH_OBJECT;
4332                 } else {
4333                         rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
4334                 }
4335                 goto out;
4336         }
4337         switch ( op->ors_scope ) {
4338         case LDAP_SCOPE_BASE:
4339         case LDAP_SCOPE_SUBTREE:
4340                 config_send( op, rs, ce, 0 );
4341                 break;
4342                 
4343         case LDAP_SCOPE_ONELEVEL:
4344                 for (ce = ce->ce_kids; ce; ce=ce->ce_sibs) {
4345                         config_send( op, rs, ce, 1 );
4346                 }
4347                 break;
4348         }
4349                 
4350         rs->sr_err = LDAP_SUCCESS;
4351 out:
4352         send_ldap_result( op, rs );
4353         return 0;
4354 }
4355
4356 static void
4357 config_build_attrs( Entry *e, AttributeType **at, AttributeDescription *ad,
4358         ConfigTable *ct, ConfigArgs *c )
4359 {
4360         int i, rc;
4361
4362         for (; at && *at; at++) {
4363                 /* Skip the naming attr */
4364                 if ((*at)->sat_ad == ad || (*at)->sat_ad == slap_schema.si_ad_cn )
4365                         continue;
4366                 for (i=0;ct[i].name;i++) {
4367                         if (ct[i].ad == (*at)->sat_ad) {
4368                                 rc = config_get_vals(&ct[i], c);
4369                                 /* NOTE: tolerate that config_get_vals()
4370                                  * returns success with no values */
4371                                 if (rc == LDAP_SUCCESS && c->rvalue_vals != NULL ) {
4372                                         if ( c->rvalue_nvals )
4373                                                 attr_merge(e, ct[i].ad, c->rvalue_vals,
4374                                                         c->rvalue_nvals);
4375                                         else
4376                                                 attr_merge_normalize(e, ct[i].ad,
4377                                                         c->rvalue_vals, NULL);
4378                                         ber_bvarray_free( c->rvalue_nvals );
4379                                         ber_bvarray_free( c->rvalue_vals );
4380                                 }
4381                                 break;
4382                         }
4383                 }
4384         }
4385 }
4386
4387 Entry *
4388 config_build_entry( Operation *op, SlapReply *rs, CfEntryInfo *parent,
4389         ConfigArgs *c, struct berval *rdn, ConfigOCs *main, ConfigOCs *extra )
4390 {
4391         Entry *e = ch_calloc( 1, sizeof(Entry) );
4392         CfEntryInfo *ce = ch_calloc( 1, sizeof(CfEntryInfo) );
4393         struct berval val;
4394         struct berval ad_name;
4395         AttributeDescription *ad = NULL;
4396         int rc;
4397         char *ptr;
4398         const char *text;
4399         Attribute *oc_at;
4400         struct berval pdn;
4401         ObjectClass *oc;
4402         CfEntryInfo *ceprev = NULL;
4403
4404         Debug( LDAP_DEBUG_TRACE, "config_build_entry: \"%s\"\n", rdn->bv_val, 0, 0);
4405         e->e_private = ce;
4406         ce->ce_entry = e;
4407         ce->ce_parent = parent;
4408         if ( parent ) {
4409                 pdn = parent->ce_entry->e_nname;
4410                 if ( parent->ce_kids )
4411                         for ( ceprev = parent->ce_kids; ceprev->ce_sibs;
4412                                 ceprev = ceprev->ce_sibs );
4413         } else {
4414                 BER_BVZERO( &pdn );
4415         }
4416
4417         ce->ce_type = main->co_type;
4418         ce->ce_private = c->private;
4419         ce->ce_be = c->be;
4420         ce->ce_bi = c->bi;
4421
4422         build_new_dn( &e->e_name, &pdn, rdn, NULL );
4423         ber_dupbv( &e->e_nname, &e->e_name );
4424
4425         attr_merge_normalize_one(e, slap_schema.si_ad_objectClass,
4426                 main->co_name, NULL );
4427         if ( extra )
4428                 attr_merge_normalize_one(e, slap_schema.si_ad_objectClass,
4429                         extra->co_name, NULL );
4430         ptr = strchr(rdn->bv_val, '=');
4431         ad_name.bv_val = rdn->bv_val;
4432         ad_name.bv_len = ptr - rdn->bv_val;
4433         rc = slap_bv2ad( &ad_name, &ad, &text );
4434         if ( rc ) {
4435                 return NULL;
4436         }
4437         val.bv_val = ptr+1;
4438         val.bv_len = rdn->bv_len - (val.bv_val - rdn->bv_val);
4439         attr_merge_normalize_one(e, ad, &val, NULL );
4440
4441         oc = main->co_oc;
4442         if ( oc->soc_required )
4443                 config_build_attrs( e, oc->soc_required, ad, main->co_table, c );
4444
4445         if ( oc->soc_allowed )
4446                 config_build_attrs( e, oc->soc_allowed, ad, main->co_table, c );
4447
4448         if ( extra ) {
4449                 oc = extra->co_oc;
4450                 if ( oc->soc_required )
4451                         config_build_attrs( e, oc->soc_required, ad, extra->co_table, c );
4452
4453                 if ( oc->soc_allowed )
4454                         config_build_attrs( e, oc->soc_allowed, ad, extra->co_table, c );
4455         }
4456
4457         oc_at = attr_find( e->e_attrs, slap_schema.si_ad_objectClass );
4458         rc = structural_class(oc_at->a_vals, &val, NULL, &text, c->msg,
4459                 sizeof(c->msg));
4460         attr_merge_normalize_one(e, slap_schema.si_ad_structuralObjectClass, &val, NULL );
4461         if ( op ) {
4462                 op->ora_e = e;
4463                 op->o_bd->be_add( op, rs );
4464                 if ( ( rs->sr_err != LDAP_SUCCESS ) 
4465                                 && (rs->sr_err != LDAP_ALREADY_EXISTS) ) {
4466                         return NULL;
4467                 }
4468         }
4469         if ( ceprev ) {
4470                 ceprev->ce_sibs = ce;
4471         } else if ( parent ) {
4472                 parent->ce_kids = ce;
4473         }
4474
4475         return e;
4476 }
4477
4478 static int
4479 config_build_schema_inc( ConfigArgs *c, CfEntryInfo *ceparent,
4480         Operation *op, SlapReply *rs )
4481 {
4482         Entry *e;
4483         ConfigFile *cf = c->private;
4484         char *ptr;
4485         struct berval bv;
4486
4487         for (; cf; cf=cf->c_sibs, c->depth++) {
4488                 c->value_dn.bv_val = c->log;
4489                 bv.bv_val = strrchr(cf->c_file.bv_val, LDAP_DIRSEP[0]);
4490                 if ( !bv.bv_val ) {
4491                         bv = cf->c_file;
4492                 } else {
4493                         bv.bv_val++;
4494                         bv.bv_len = cf->c_file.bv_len - (bv.bv_val - cf->c_file.bv_val);
4495                 }
4496                 ptr = strchr( bv.bv_val, '.' );
4497                 if ( ptr )
4498                         bv.bv_len = ptr - bv.bv_val;
4499                 c->value_dn.bv_len = snprintf(c->value_dn.bv_val, sizeof( c->log ), "cn=" SLAP_X_ORDERED_FMT, c->depth);
4500                 if ( c->value_dn.bv_len >= sizeof( c->log ) ) {
4501                         /* FIXME: how can indicate error? */
4502                         return -1;
4503                 }
4504                 strncpy( c->value_dn.bv_val + c->value_dn.bv_len, bv.bv_val,
4505                         bv.bv_len );
4506                 c->value_dn.bv_len += bv.bv_len;
4507                 c->value_dn.bv_val[c->value_dn.bv_len] ='\0';
4508
4509                 c->private = cf;
4510                 e = config_build_entry( op, rs, ceparent, c, &c->value_dn,
4511                         &CFOC_SCHEMA, NULL );
4512                 if ( !e ) {
4513                         return -1;
4514                 } else if ( e && cf->c_kids ) {
4515                         c->private = cf->c_kids;
4516                         config_build_schema_inc( c, e->e_private, op, rs );
4517                 }
4518         }
4519         return 0;
4520 }
4521
4522 static int
4523 config_build_includes( ConfigArgs *c, CfEntryInfo *ceparent,
4524         Operation *op, SlapReply *rs )
4525 {
4526         Entry *e;
4527         int i;
4528         ConfigFile *cf = c->private;
4529
4530         for (i=0; cf; cf=cf->c_sibs, i++) {
4531                 c->value_dn.bv_val = c->log;
4532                 c->value_dn.bv_len = snprintf(c->value_dn.bv_val, sizeof( c->log ), "cn=include" SLAP_X_ORDERED_FMT, i);
4533                 if ( c->value_dn.bv_len >= sizeof( c->log ) ) {
4534                         /* FIXME: how can indicate error? */
4535                         return -1;
4536                 }
4537                 c->private = cf;
4538                 e = config_build_entry( op, rs, ceparent, c, &c->value_dn,
4539                         &CFOC_INCLUDE, NULL );
4540                 if ( ! e ) {
4541                         return -1;
4542                 } else if ( e && cf->c_kids ) {
4543                         c->private = cf->c_kids;
4544                         config_build_includes( c, e->e_private, op, rs );
4545                 }
4546         }
4547         return 0;
4548 }
4549
4550 #ifdef SLAPD_MODULES
4551
4552 static int
4553 config_build_modules( ConfigArgs *c, CfEntryInfo *ceparent,
4554         Operation *op, SlapReply *rs )
4555 {
4556         int i;
4557         ModPaths *mp;
4558
4559         for (i=0, mp=&modpaths; mp; mp=mp->mp_next, i++) {
4560                 if ( BER_BVISNULL( &mp->mp_path ) && !mp->mp_loads )
4561                         continue;
4562                 c->value_dn.bv_val = c->log;
4563                 c->value_dn.bv_len = snprintf(c->value_dn.bv_val, sizeof( c->log ), "cn=module" SLAP_X_ORDERED_FMT, i);
4564                 if ( c->value_dn.bv_len >= sizeof( c->log ) ) {
4565                         /* FIXME: how can indicate error? */
4566                         return -1;
4567                 }
4568                 c->private = mp;
4569                 if ( ! config_build_entry( op, rs, ceparent, c, &c->value_dn, &CFOC_MODULE, NULL )) {
4570                         return -1;
4571                 }
4572         }
4573         return 0;
4574 }
4575 #endif
4576
4577 static const char *defacl[] = {
4578         NULL, "to", "*", "by", "*", "none", NULL
4579 };
4580
4581 static int
4582 config_back_db_open( BackendDB *be )
4583 {
4584         CfBackInfo *cfb = be->be_private;
4585         struct berval rdn;
4586         Entry *e, *parent;
4587         CfEntryInfo *ce, *ceparent;
4588         int i, unsupp = 0;
4589         BackendInfo *bi;
4590         ConfigArgs c;
4591         Connection conn = {0};
4592         OperationBuffer opbuf;
4593         Operation *op;
4594         slap_callback cb = { NULL, slap_null_cb, NULL, NULL };
4595         SlapReply rs = {REP_RESULT};
4596         void *thrctx = NULL;
4597
4598         Debug( LDAP_DEBUG_TRACE, "config_back_db_open\n", 0, 0, 0);
4599
4600         /* If we have no explicitly configured ACLs, don't just use
4601          * the global ACLs. Explicitly deny access to everything.
4602          */
4603         if ( frontendDB->be_acl && be->be_acl == frontendDB->be_acl ) {
4604                 parse_acl(be, "config_back_db_open", 0, 6, (char **)defacl, 0 );
4605         }
4606
4607         /* If we read the config from back-ldif, nothing to do here */
4608         if ( cfb->cb_got_ldif )
4609                 return 0;
4610
4611         if ( cfb->cb_use_ldif ) {
4612                 thrctx = ldap_pvt_thread_pool_context();
4613                 op = (Operation *) &opbuf;
4614                 connection_fake_init( &conn, op, thrctx );
4615
4616                 op->o_tag = LDAP_REQ_ADD;
4617                 op->o_callback = &cb;
4618                 op->o_bd = &cfb->cb_db;
4619                 op->o_dn = op->o_bd->be_rootdn;
4620                 op->o_ndn = op->o_bd->be_rootndn;
4621         } else {
4622                 op = NULL;
4623         }
4624
4625         /* create root of tree */
4626         rdn = config_rdn;
4627         c.private = cfb->cb_config;
4628         c.be = frontendDB;
4629         e = config_build_entry( op, &rs, NULL, &c, &rdn, &CFOC_GLOBAL, NULL );
4630         if ( !e ) {
4631                 return -1;
4632         }
4633         ce = e->e_private;
4634         cfb->cb_root = ce;
4635
4636         parent = e;
4637         ceparent = ce;
4638
4639         /* Create includeFile nodes */
4640         if ( cfb->cb_config->c_kids ) {
4641                 c.depth = 0;
4642                 c.private = cfb->cb_config->c_kids;
4643                 if ( config_build_includes( &c, ceparent, op, &rs ) ) {
4644                         return -1;
4645                 }
4646         }
4647
4648 #ifdef SLAPD_MODULES
4649         /* Create Module nodes... */
4650         if ( modpaths.mp_loads ) {
4651                 if ( config_build_modules( &c, ceparent, op, &rs ) ){
4652                         return -1;
4653                 }
4654         }
4655 #endif
4656
4657         /* Create schema nodes... cn=schema will contain the hardcoded core
4658          * schema, read-only. Child objects will contain runtime loaded schema
4659          * files.
4660          */
4661         rdn = schema_rdn;
4662         c.private = NULL;
4663         e = config_build_entry( op, &rs, ceparent, &c, &rdn, &CFOC_SCHEMA, NULL );
4664         if ( !e ) {
4665                 return -1;
4666         }
4667         ce = e->e_private;
4668
4669         /* Create schema nodes for included schema... */
4670         if ( cfb->cb_config->c_kids ) {
4671                 c.depth = 0;
4672                 c.private = cfb->cb_config->c_kids;
4673                 if (config_build_schema_inc( &c, ce, op, &rs )) {
4674                         return -1;
4675                 }
4676         }
4677
4678         /* Create backend nodes. Skip if they don't provide a cf_table.
4679          * There usually aren't any of these.
4680          */
4681         
4682         c.line = 0;
4683         LDAP_STAILQ_FOREACH( bi, &backendInfo, bi_next) {
4684                 if (!bi->bi_cf_ocs) {
4685                         /* If it only supports the old config mech, complain. */
4686                         if ( bi->bi_config ) {
4687                                 Debug( LDAP_DEBUG_ANY,
4688                                         "WARNING: No dynamic config support for backend %s.\n",
4689                                         bi->bi_type, 0, 0 );
4690                                 unsupp++;
4691                         }
4692                         continue;
4693                 }
4694                 if (!bi->bi_private) continue;
4695
4696                 rdn.bv_val = c.log;
4697                 rdn.bv_len = snprintf(rdn.bv_val, sizeof( c.log ),
4698                         "%s=%s", cfAd_backend->ad_cname.bv_val, bi->bi_type);
4699                 if ( rdn.bv_len >= sizeof( c.log ) ) {
4700                         /* FIXME: holler ... */ ;
4701                 }
4702                 c.bi = bi;
4703                 e = config_build_entry( op, &rs, ceparent, &c, &rdn, &CFOC_BACKEND,
4704                         bi->bi_cf_ocs );
4705                 if ( !e ) {
4706                         return -1;
4707                 }
4708         }
4709
4710         /* Create database nodes... */
4711         frontendDB->be_cf_ocs = &CFOC_FRONTEND;
4712         LDAP_STAILQ_NEXT(frontendDB, be_next) = LDAP_STAILQ_FIRST(&backendDB);
4713         for ( i = -1, be = frontendDB ; be;
4714                 i++, be = LDAP_STAILQ_NEXT( be, be_next )) {
4715                 slap_overinfo *oi = NULL;
4716
4717                 if ( overlay_is_over( be )) {
4718                         oi = be->bd_info->bi_private;
4719                         bi = oi->oi_orig;
4720                 } else {
4721                         bi = be->bd_info;
4722                 }
4723
4724                 /* If this backend supports the old config mechanism, but not
4725                  * the new mech, complain.
4726                  */
4727                 if ( !be->be_cf_ocs && bi->bi_db_config ) {
4728                         Debug( LDAP_DEBUG_ANY,
4729                                 "WARNING: No dynamic config support for database %s.\n",
4730                                 bi->bi_type, 0, 0 );
4731                         unsupp++;
4732                 }
4733                 rdn.bv_val = c.log;
4734                 rdn.bv_len = snprintf(rdn.bv_val, sizeof( c.log ),
4735                         "%s=" SLAP_X_ORDERED_FMT "%s", cfAd_database->ad_cname.bv_val,
4736                         i, bi->bi_type);
4737                 if ( rdn.bv_len >= sizeof( c.log ) ) {
4738                         /* FIXME: holler ... */ ;
4739                 }
4740                 c.be = be;
4741                 c.bi = bi;
4742                 e = config_build_entry( op, &rs, ceparent, &c, &rdn, &CFOC_DATABASE,
4743                         be->be_cf_ocs );
4744                 if ( !e ) {
4745                         return -1;
4746                 }
4747                 ce = e->e_private;
4748                 if ( be->be_cf_ocs && be->be_cf_ocs->co_cfadd )
4749                         be->be_cf_ocs->co_cfadd( op, &rs, e, &c );
4750                 /* Iterate through overlays */
4751                 if ( oi ) {
4752                         slap_overinst *on;
4753                         Entry *oe;
4754                         int j;
4755
4756                         for (j=0,on=oi->oi_list; on; j++,on=on->on_next) {
4757                                 if ( on->on_bi.bi_db_config && !on->on_bi.bi_cf_ocs ) {
4758                                         Debug( LDAP_DEBUG_ANY,
4759                                                 "WARNING: No dynamic config support for overlay %s.\n",
4760                                                 on->on_bi.bi_type, 0, 0 );
4761                                         unsupp++;
4762                                 }
4763                                 rdn.bv_val = c.log;
4764                                 rdn.bv_len = snprintf(rdn.bv_val, sizeof( c.log ),
4765                                         "%s=" SLAP_X_ORDERED_FMT "%s",
4766                                         cfAd_overlay->ad_cname.bv_val, j, on->on_bi.bi_type );
4767                                 if ( rdn.bv_len >= sizeof( c.log ) ) {
4768                                         /* FIXME: holler ... */ ;
4769                                 }
4770                                 c.be = be;
4771                                 c.bi = &on->on_bi;
4772                                 oe = config_build_entry( op, &rs, ce, &c, &rdn,
4773                                         &CFOC_OVERLAY, c.bi->bi_cf_ocs );
4774                                 if ( !oe ) {
4775                                         return -1;
4776                                 }
4777                                 if ( c.bi->bi_cf_ocs && c.bi->bi_cf_ocs->co_cfadd )
4778                                         c.bi->bi_cf_ocs->co_cfadd( op, &rs, oe, &c );
4779                         }
4780                 }
4781         }
4782         if ( thrctx )
4783                 ldap_pvt_thread_pool_context_reset( thrctx );
4784
4785         if ( unsupp  && cfb->cb_use_ldif ) {
4786                 Debug( LDAP_DEBUG_ANY, "\nWARNING: The converted cn=config "
4787                         "directory is incomplete and may not work.\n\n", 0, 0, 0 );
4788         }
4789
4790         return 0;
4791 }
4792
4793 static void
4794 cfb_free_cffile( ConfigFile *cf )
4795 {
4796         ConfigFile *next;
4797
4798         for (; cf; cf=next) {
4799                 next = cf->c_sibs;
4800                 if ( cf->c_kids )
4801                         cfb_free_cffile( cf->c_kids );
4802                 ch_free( cf->c_file.bv_val );
4803                 ber_bvarray_free( cf->c_dseFiles );
4804                 ch_free( cf );
4805         }
4806 }
4807
4808 static void
4809 cfb_free_entries( CfEntryInfo *ce )
4810 {
4811         CfEntryInfo *next;
4812
4813         for (; ce; ce=next) {
4814                 next = ce->ce_sibs;
4815                 if ( ce->ce_kids )
4816                         cfb_free_entries( ce->ce_kids );
4817                 ce->ce_entry->e_private = NULL;
4818                 entry_free( ce->ce_entry );
4819                 ch_free( ce );
4820         }
4821 }
4822
4823 static int
4824 config_back_db_close( BackendDB *be )
4825 {
4826         CfBackInfo *cfb = be->be_private;
4827
4828         cfb_free_entries( cfb->cb_root );
4829         cfb->cb_root = NULL;
4830
4831         if ( cfb->cb_db.bd_info ) {
4832                 backend_shutdown( &cfb->cb_db );
4833         }
4834
4835         return 0;
4836 }
4837
4838 static int
4839 config_back_db_destroy( BackendDB *be )
4840 {
4841         CfBackInfo *cfb = be->be_private;
4842
4843         cfb_free_cffile( cfb->cb_config );
4844
4845         ch_free( cfdir.bv_val );
4846
4847         avl_free( CfOcTree, NULL );
4848
4849         if ( cfb->cb_db.bd_info ) {
4850                 cfb->cb_db.be_suffix = NULL;
4851                 cfb->cb_db.be_nsuffix = NULL;
4852                 BER_BVZERO( &cfb->cb_db.be_rootdn );
4853                 BER_BVZERO( &cfb->cb_db.be_rootndn );
4854
4855                 backend_destroy_one( &cfb->cb_db, 0 );
4856         }
4857
4858         free( be->be_private );
4859
4860         loglevel_destroy();
4861
4862         return 0;
4863 }
4864
4865 static int
4866 config_back_db_init( BackendDB *be )
4867 {
4868         struct berval dn;
4869         CfBackInfo *cfb;
4870
4871         cfb = ch_calloc( 1, sizeof(CfBackInfo));
4872         cfb->cb_config = ch_calloc( 1, sizeof(ConfigFile));
4873         cfn = cfb->cb_config;
4874         be->be_private = cfb;
4875
4876         ber_dupbv( &be->be_rootdn, &config_rdn );
4877         ber_dupbv( &be->be_rootndn, &be->be_rootdn );
4878         ber_dupbv( &dn, &be->be_rootdn );
4879         ber_bvarray_add( &be->be_suffix, &dn );
4880         ber_dupbv( &dn, &be->be_rootdn );
4881         ber_bvarray_add( &be->be_nsuffix, &dn );
4882
4883         /* Hide from namingContexts */
4884         SLAP_BFLAGS(be) |= SLAP_BFLAG_CONFIG;
4885
4886         return 0;
4887 }
4888
4889 static int
4890 config_back_destroy( BackendInfo *bi )
4891 {
4892         ldif_must_b64_encode_release();
4893         return 0;
4894 }
4895
4896 static int
4897 config_tool_entry_open( BackendDB *be, int mode )
4898 {
4899         CfBackInfo *cfb = be->be_private;
4900         BackendInfo *bi = cfb->cb_db.bd_info;
4901
4902         if ( bi && bi->bi_tool_entry_open )
4903                 return bi->bi_tool_entry_open( &cfb->cb_db, mode );
4904         else
4905                 return -1;
4906         
4907 }
4908
4909 static int
4910 config_tool_entry_close( BackendDB *be )
4911 {
4912         CfBackInfo *cfb = be->be_private;
4913         BackendInfo *bi = cfb->cb_db.bd_info;
4914
4915         if ( bi && bi->bi_tool_entry_close )
4916                 return bi->bi_tool_entry_close( &cfb->cb_db );
4917         else
4918                 return -1;
4919 }
4920
4921 static ID
4922 config_tool_entry_first( BackendDB *be )
4923 {
4924         CfBackInfo *cfb = be->be_private;
4925         BackendInfo *bi = cfb->cb_db.bd_info;
4926
4927         if ( bi && bi->bi_tool_entry_first )
4928                 return bi->bi_tool_entry_first( &cfb->cb_db );
4929         else
4930                 return NOID;
4931 }
4932
4933 static ID
4934 config_tool_entry_next( BackendDB *be )
4935 {
4936         CfBackInfo *cfb = be->be_private;
4937         BackendInfo *bi = cfb->cb_db.bd_info;
4938
4939         if ( bi && bi->bi_tool_entry_next )
4940                 return bi->bi_tool_entry_next( &cfb->cb_db );
4941         else
4942                 return NOID;
4943 }
4944
4945 static Entry *
4946 config_tool_entry_get( BackendDB *be, ID id )
4947 {
4948         CfBackInfo *cfb = be->be_private;
4949         BackendInfo *bi = cfb->cb_db.bd_info;
4950
4951         if ( bi && bi->bi_tool_entry_get )
4952                 return bi->bi_tool_entry_get( &cfb->cb_db, id );
4953         else
4954                 return NULL;
4955 }
4956
4957 static ID
4958 config_tool_entry_put( BackendDB *be, Entry *e, struct berval *text )
4959 {
4960         CfBackInfo *cfb = be->be_private;
4961         BackendInfo *bi = cfb->cb_db.bd_info;
4962         ConfigArgs ca;
4963
4964         if ( bi && bi->bi_tool_entry_put &&
4965                 config_add_internal( cfb, e, &ca, NULL, NULL, NULL ) == 0 )
4966                 return bi->bi_tool_entry_put( &cfb->cb_db, e, text );
4967         else
4968                 return NOID;
4969 }
4970
4971 static struct {
4972         char *name;
4973         AttributeDescription **desc;
4974 } ads[] = {
4975         { "backend", &cfAd_backend },
4976         { "database", &cfAd_database },
4977         { "include", &cfAd_include },
4978         { "overlay", &cfAd_overlay },
4979         { NULL, NULL }
4980 };
4981
4982 /* Notes:
4983  *   add / delete: all types that may be added or deleted must use an
4984  * X-ORDERED attributeType for their RDN. Adding and deleting entries
4985  * should automatically renumber the index of any siblings as needed,
4986  * so that no gaps in the numbering sequence exist after the add/delete
4987  * is completed.
4988  *   What can be added:
4989  *     schema objects
4990  *     backend objects for backend-specific config directives
4991  *     database objects
4992  *     overlay objects
4993  *
4994  *   delete: probably no support this time around.
4995  *
4996  *   modrdn: generally not done. Will be invoked automatically by add/
4997  * delete to update numbering sequence. Perform as an explicit operation
4998  * so that the renumbering effect may be replicated. Subtree rename must
4999  * be supported, since renumbering a database will affect all its child
5000  * overlays.
5001  *
5002  *  modify: must be fully supported. 
5003  */
5004
5005 int
5006 config_back_initialize( BackendInfo *bi )
5007 {
5008         ConfigTable             *ct = config_back_cf_table;
5009         char                    *argv[4];
5010         int                     i;
5011         AttributeDescription    *ad = NULL;
5012         const char              *text;
5013         static char             *controls[] = {
5014                 LDAP_CONTROL_MANAGEDSAIT,
5015                 NULL
5016         };
5017
5018         /* Make sure we don't exceed the bits reserved for userland */
5019         config_check_userland( CFG_LAST );
5020
5021         bi->bi_controls = controls;
5022
5023         bi->bi_open = 0;
5024         bi->bi_close = 0;
5025         bi->bi_config = 0;
5026         bi->bi_destroy = config_back_destroy;
5027
5028         bi->bi_db_init = config_back_db_init;
5029         bi->bi_db_config = 0;
5030         bi->bi_db_open = config_back_db_open;
5031         bi->bi_db_close = config_back_db_close;
5032         bi->bi_db_destroy = config_back_db_destroy;
5033
5034         bi->bi_op_bind = config_back_bind;
5035         bi->bi_op_unbind = 0;
5036         bi->bi_op_search = config_back_search;
5037         bi->bi_op_compare = 0;
5038         bi->bi_op_modify = config_back_modify;
5039         bi->bi_op_modrdn = config_back_modrdn;
5040         bi->bi_op_add = config_back_add;
5041         bi->bi_op_delete = 0;
5042         bi->bi_op_abandon = 0;
5043
5044         bi->bi_extended = 0;
5045
5046         bi->bi_chk_referrals = 0;
5047
5048         bi->bi_access_allowed = slap_access_allowed;
5049
5050         bi->bi_connection_init = 0;
5051         bi->bi_connection_destroy = 0;
5052
5053         bi->bi_tool_entry_open = config_tool_entry_open;
5054         bi->bi_tool_entry_close = config_tool_entry_close;
5055         bi->bi_tool_entry_first = config_tool_entry_first;
5056         bi->bi_tool_entry_next = config_tool_entry_next;
5057         bi->bi_tool_entry_get = config_tool_entry_get;
5058         bi->bi_tool_entry_put = config_tool_entry_put;
5059
5060         argv[3] = NULL;
5061         for (i=0; OidMacros[i].name; i++ ) {
5062                 argv[1] = OidMacros[i].name;
5063                 argv[2] = OidMacros[i].oid;
5064                 parse_oidm( "slapd", i, 3, argv, 0, NULL );
5065         }
5066
5067         bi->bi_cf_ocs = cf_ocs;
5068
5069         i = config_register_schema( ct, cf_ocs );
5070         if ( i ) return i;
5071
5072         /* setup olcRootPW to be base64-encoded when written in LDIF form;
5073          * basically, we don't care if it fails */
5074         i = slap_str2ad( "olcRootPW", &ad, &text );
5075         if ( i ) {
5076                 Debug( LDAP_DEBUG_ANY, "config_back_initialize: "
5077                         "warning, unable to get \"olcRootPW\" "
5078                         "attribute description: %d: %s\n",
5079                         i, text, 0 );
5080         } else {
5081                 (void)ldif_must_b64_encode_register( ad->ad_cname.bv_val,
5082                         ad->ad_type->sat_oid );
5083         }
5084
5085         /* set up the notable AttributeDescriptions */
5086         i = 0;
5087         for (;ct->name;ct++) {
5088                 if (strcmp(ct->name, ads[i].name)) continue;
5089                 *ads[i].desc = ct->ad;
5090                 i++;
5091                 if (!ads[i].name) break;
5092         }
5093
5094         return 0;
5095 }
5096