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