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