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