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