1 /* bconfig.c - the config backend */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
5 * Copyright 2005-2009 The OpenLDAP Foundation.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted only as authorized by the OpenLDAP
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>.
17 * This work was originally developed by Howard Chu for inclusion
18 * in OpenLDAP Software.
24 #include <ac/string.h>
28 #include <ac/unistd.h>
33 #include "slapi/slapi.h"
41 #define CONFIG_RDN "cn=config"
42 #define SCHEMA_RDN "cn=schema"
44 static struct berval config_rdn = BER_BVC(CONFIG_RDN);
45 static struct berval schema_rdn = BER_BVC(SCHEMA_RDN);
47 extern int slap_DN_strict; /* dn.c */
50 typedef struct modpath_s {
51 struct modpath_s *mp_next;
52 struct berval mp_path;
56 static ModPaths modpaths, *modlast = &modpaths, *modcur = &modpaths;
59 typedef struct ConfigFile {
60 struct ConfigFile *c_sibs;
61 struct ConfigFile *c_kids;
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;
72 ConfigFile *cb_config;
74 BackendDB cb_db; /* underlying database */
79 static CfBackInfo cfBackInfo;
81 static char *passwd_salt;
83 static char *logfileName;
84 #ifdef SLAP_AUTH_REWRITE
85 static BerVarray authz_rewrites;
88 static struct berval cfdir;
91 static AttributeDescription *cfAd_backend, *cfAd_database, *cfAd_overlay,
92 *cfAd_include, *cfAd_attr, *cfAd_oc, *cfAd_om, *cfAd_syntax;
94 static ConfigFile *cfn;
96 static Avlnode *CfOcTree;
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;
108 static int config_add_internal( CfBackInfo *cfb, Entry *e, ConfigArgs *ca,
109 SlapReply *rs, int *renumber, Operation *op );
111 static int config_check_schema( Operation *op, CfBackInfo *cfb );
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;
141 static ConfigDriver config_tls_option;
142 static ConfigDriver config_tls_config;
144 extern ConfigDriver syncrepl_config;
152 CFG_TLS_PROTOCOL_MIN,
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 */
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...
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" },
235 * Backend/Database registry
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
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
272 /* alphabetical ordering */
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' )",
316 { "authid-rewrite", NULL, 2, 0, STRLENOF( "authid-rewrite" ),
317 #ifdef SLAP_AUTH_REWRITE
318 ARG_MAGIC|CFG_REWRITE|ARG_NO_INSERT, &config_generic,
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' )",
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' )",
365 { "gentlehup", "on|off", 2, 2, 0,
367 ARG_ON_OFF, &global_gentlehup,
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' )",
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,
429 ARG_MAGIC|CFG_MODLOAD|ARG_NO_DELETE, &config_generic,
433 "( OLcfgGlAt:30 NAME 'olcModuleLoad' "
434 "EQUALITY caseIgnoreMatch "
435 "SYNTAX OMsDirectoryString X-ORDERED 'VALUES' )", NULL, NULL },
436 { "modulepath", "path", 2, 2, 0,
438 ARG_MAGIC|CFG_MODPATH|ARG_NO_DELETE|ARG_NO_INSERT, &config_generic,
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' )",
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,
473 ARG_MAGIC|CFG_PLUGIN, &config_generic,
477 "( OLcfgGlAt:38 NAME 'olcPlugin' "
478 "EQUALITY caseIgnoreMatch "
479 "SYNTAX OMsDirectoryString )", NULL, NULL },
480 { "pluginlog", "filename", 2, 2, 0,
482 ARG_STRING, &slapi_log_file,
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,
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,
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,
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,
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,
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
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,
629 ARG_INT|ARG_MAGIC|CFG_THREADS, &config_generic,
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,
638 CFG_TLS_CA_FILE|ARG_STRING|ARG_MAGIC, &config_tls_option,
642 "( OLcfgGlAt:68 NAME 'olcTLSCACertificateFile' "
643 "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
644 { "TLSCACertificatePath", NULL, 0, 0, 0,
646 CFG_TLS_CA_PATH|ARG_STRING|ARG_MAGIC, &config_tls_option,
650 "( OLcfgGlAt:69 NAME 'olcTLSCACertificatePath' "
651 "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
652 { "TLSCertificateFile", NULL, 0, 0, 0,
654 CFG_TLS_CERT_FILE|ARG_STRING|ARG_MAGIC, &config_tls_option,
658 "( OLcfgGlAt:70 NAME 'olcTLSCertificateFile' "
659 "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
660 { "TLSCertificateKeyFile", NULL, 0, 0, 0,
662 CFG_TLS_CERT_KEY|ARG_STRING|ARG_MAGIC, &config_tls_option,
666 "( OLcfgGlAt:71 NAME 'olcTLSCertificateKeyFile' "
667 "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
668 { "TLSCipherSuite", NULL, 0, 0, 0,
670 CFG_TLS_CIPHER|ARG_STRING|ARG_MAGIC, &config_tls_option,
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,
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,
690 "( OLcfgGlAt:82 NAME 'olcTLSCRLFile' "
691 "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
692 { "TLSRandFile", NULL, 0, 0, 0,
694 CFG_TLS_RAND|ARG_STRING|ARG_MAGIC, &config_tls_option,
698 "( OLcfgGlAt:74 NAME 'olcTLSRandFile' "
699 "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
700 { "TLSVerifyClient", NULL, 0, 0, 0,
702 CFG_TLS_VERIFY|ARG_STRING|ARG_MAGIC, &config_tls_config,
706 "( OLcfgGlAt:75 NAME 'olcTLSVerifyClient' "
707 "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
708 { "TLSDHParamFile", NULL, 0, 0, 0,
710 CFG_TLS_DH_FILE|ARG_STRING|ARG_MAGIC, &config_tls_option,
714 "( OLcfgGlAt:77 NAME 'olcTLSDHParamFile' "
715 "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
716 { "TLSProtocolMin", NULL, 0, 0, 0,
718 CFG_TLS_PROTOCOL_MIN|ARG_STRING|ARG_MAGIC, &config_tls_config,
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 }
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 }
752 /* Routines to check if a child can be added to this type */
753 static ConfigLDAPadd cfAddSchema, cfAddInclude, cfAddDatabase,
754 cfAddBackend, cfAddModule, cfAddOverlay;
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]
766 #define CFOC_MODULE cf_ocs[8]
767 #endif /* SLAPD_MODULES */
769 static ConfigOCs cf_ocs[] = {
772 "DESC 'OpenLDAP configuration object' "
773 "ABSTRACT SUP top )", Cft_Abstract, NULL },
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 $ "
790 "olcSaslAuxprops $ olcSaslHost $ olcSaslRealm $ olcSaslSecProps $ "
791 "olcSecurity $ olcServerID $ olcSizeLimit $ "
792 "olcSockbufMaxIncoming $ olcSockbufMaxIncomingAuth $ "
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 },
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 },
809 "NAME 'olcBackendConfig' "
810 "DESC 'OpenLDAP Backend-specific options' "
811 "SUP olcConfig STRUCTURAL "
812 "MUST olcBackend )", Cft_Backend, NULL, cfAddBackend },
814 "NAME 'olcDatabaseConfig' "
815 "DESC 'OpenLDAP Database-specific options' "
816 "SUP olcConfig STRUCTURAL "
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 $ "
826 Cft_Database, NULL, cfAddDatabase },
828 "NAME 'olcOverlayConfig' "
829 "DESC 'OpenLDAP Overlay-specific options' "
830 "SUP olcConfig STRUCTURAL "
831 "MUST olcOverlay )", Cft_Overlay, NULL, cfAddOverlay },
833 "NAME 'olcIncludeFile' "
834 "DESC 'OpenLDAP configuration include file' "
835 "SUP olcConfig STRUCTURAL "
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.
845 "NAME 'olcFrontendConfig' "
846 "DESC 'OpenLDAP frontend configuration' "
848 "MAY ( olcDefaultSearchBase $ olcPasswordHash $ olcSortVals ) )",
849 Cft_Database, NULL, NULL },
852 "NAME 'olcModuleList' "
853 "DESC 'OpenLDAP dynamic module info' "
854 "SUP olcConfig STRUCTURAL "
855 "MAY ( cn $ olcModulePath $ olcModuleLoad ) )",
856 Cft_Module, NULL, cfAddModule },
861 typedef struct ServerID {
862 struct ServerID *si_next;
863 struct berval si_url;
867 static ServerID *sid_list;
869 typedef struct voidList {
870 struct voidList *vl_next;
874 typedef struct ADlist {
875 struct ADlist *al_next;
876 AttributeDescription *al_desc;
879 static ADlist *sortVals;
882 config_generic(ConfigArgs *c) {
885 if ( c->op == SLAP_CONFIG_EMIT ) {
889 c->value_int = ldap_pvt_thread_get_concurrency();
892 c->value_int = connection_pool_max;
895 c->value_int = slap_tool_thread_max;
899 c->value_string = ch_strdup( passwd_salt );
904 if ( c->be->be_limits ) {
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;
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;
921 value_add_one( &c->rvalue_vals, &bv );
924 if ( !c->rvalue_vals ) rc = 1;
927 c->value_int = (c->be->be_restrictops & SLAP_RESTRICT_READONLY);
930 c->value_string = ch_strdup( slap_sasl_getpolicy());
933 slap_sasl_regexp_unparse( &c->rvalue_vals );
934 if ( !c->rvalue_vals ) rc = 1;
936 #ifdef HAVE_CYRUS_SASL
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 );
949 c->value_int = c->be->be_max_deref_depth;
952 if ( SLAP_DBHIDDEN( c->be )) {
959 ConfigFile *cf = c->ca_private;
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,
965 if ( !c->rvalue_vals )
970 ad_unparse_options( &c->rvalue_vals );
973 ConfigFile *cf = c->ca_private;
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,
979 if ( !c->rvalue_vals )
984 ConfigFile *cf = c->ca_private;
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,
990 if ( !c->rvalue_vals )
995 ConfigFile *cf = c->ca_private;
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 )
1006 ConfigFile *cf = c->ca_private;
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,
1012 if ( !c->rvalue_vals )
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;
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++ = ' ';
1038 if (dst[-1] == ' ') {
1042 abv.bv_len = dst - abv.bv_val;
1043 ber_bvarray_add( &c->rvalue_vals, &abv );
1049 c->value_int = (SLAP_DBACL_ADD(c->be) != 0);
1052 ConfigFile *cf = c->ca_private;
1053 if ( cf->c_dseFiles ) {
1054 value_add( &c->rvalue_vals, cf->c_dseFiles );
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 );
1076 bv.bv_len = sprintf( buf, "%d", si->si_num );
1077 value_add_one( &c->rvalue_vals, &bv );
1086 c->value_string = ch_strdup( logfileName );
1091 c->value_int = (SLAP_NOLASTMOD(c->be) == 0);
1093 case CFG_SYNC_SUBENTRY:
1094 c->value_int = (SLAP_SYNC_SUBENTRY(c->be) != 0);
1096 case CFG_MIRRORMODE:
1097 if ( SLAP_SHADOW(c->be))
1098 c->value_int = (SLAP_SINGLE_SHADOW(c->be) == 0);
1102 case CFG_MONITORING:
1103 c->value_int = (SLAP_DBMONITORING(c->be) != 0);
1105 case CFG_SSTR_IF_MAX:
1106 c->value_uint = index_substr_if_maxlen;
1108 case CFG_SSTR_IF_MIN:
1109 c->value_uint = index_substr_if_minlen;
1112 c->value_int = index_intlen;
1114 case CFG_SORTVALS: {
1117 for ( sv = sortVals; sv; sv = sv->al_next ) {
1118 value_add_one( &c->rvalue_vals, &sv->al_desc->ad_cname );
1122 #ifdef SLAPD_MODULES
1124 ModPaths *mp = c->ca_private;
1127 for (i=0; !BER_BVISNULL(&mp->mp_loads[i]); i++) {
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;
1138 value_add_one( &c->rvalue_vals, &bv );
1142 rc = c->rvalue_vals ? 0 : 1;
1146 ModPaths *mp = c->ca_private;
1147 if ( !BER_BVISNULL( &mp->mp_path ))
1148 value_add_one( &c->rvalue_vals, &mp->mp_path );
1150 rc = c->rvalue_vals ? 0 : 1;
1156 slapi_int_plugin_unparse( c->be, &c->rvalue_vals );
1157 if ( !c->rvalue_vals ) rc = 1;
1160 #ifdef SLAP_AUTH_REWRITE
1162 if ( authz_rewrites ) {
1163 struct berval bv, idx;
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;
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 );
1184 if ( !c->rvalue_vals ) rc = 1;
1191 } else if ( c->op == LDAP_MOD_DELETE ) {
1194 /* single-valued attrs, no-ops */
1202 case CFG_MIRRORMODE:
1203 case CFG_MONITORING:
1205 case CFG_SSTR_IF_MAX:
1206 case CFG_SSTR_IF_MIN:
1208 case CFG_SYNC_SUBENTRY:
1211 /* no-ops, requires slapd restart */
1216 snprintf(c->log, sizeof( c->log ), "change requires slapd restart");
1220 ch_free( passwd_salt );
1225 ch_free( logfileName );
1233 case CFG_SERVERID: {
1234 ServerID *si, **sip;
1236 for ( i=0, si = sid_list, sip = &sid_list;
1237 si; si = *sip, i++ ) {
1238 if ( c->valx == -1 || i == c->valx ) {
1250 c->be->be_flags &= ~SLAP_DBFLAG_HIDDEN;
1254 index_intlen = SLAP_INDEX_INTLEN_DEFAULT;
1255 index_intlen_strlen = SLAP_INDEX_INTLEN_STRLEN(
1256 SLAP_INDEX_INTLEN_DEFAULT );
1260 if ( c->valx < 0 ) {
1261 acl_destroy( c->be->be_acl );
1262 c->be->be_acl = NULL;
1265 AccessControl **prev, *a;
1267 for (i=0, prev = &c->be->be_acl; i < c->valx;
1270 prev = &a->acl_next;
1273 *prev = a->acl_next;
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 )
1288 cfn = c->ca_private;
1289 if ( c->valx < 0 ) {
1292 for( oc = cfn->c_oc_head; oc; oc_next( &oc )) {
1294 if ( oc == cfn->c_oc_tail )
1297 cfn->c_oc_head = cfn->c_oc_tail = NULL;
1299 ObjectClass *oc, *prev = NULL;
1301 for ( i=0, oc=cfn->c_oc_head; i<c->valx; i++) {
1306 if ( cfn->c_oc_tail == oc ) {
1307 cfn->c_oc_tail = prev;
1309 if ( cfn->c_oc_head == oc ) {
1311 cfn->c_oc_head = oc;
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 )
1326 cfn = c->ca_private;
1327 if ( c->valx < 0 ) {
1330 for( at = cfn->c_at_head; at; at_next( &at )) {
1332 if ( at == cfn->c_at_tail )
1335 cfn->c_at_head = cfn->c_at_tail = NULL;
1337 AttributeType *at, *prev = NULL;
1339 for ( i=0, at=cfn->c_at_head; i<c->valx; i++) {
1344 if ( cfn->c_at_tail == at ) {
1345 cfn->c_at_tail = prev;
1347 if ( cfn->c_at_head == at ) {
1349 cfn->c_at_head = at;
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 )
1364 cfn = c->ca_private;
1365 if ( c->valx < 0 ) {
1368 for( syn = cfn->c_syn_head; syn; syn_next( &syn )) {
1370 if ( syn == cfn->c_syn_tail )
1373 cfn->c_syn_head = cfn->c_syn_tail = NULL;
1375 Syntax *syn, *prev = NULL;
1377 for ( i = 0, syn = cfn->c_syn_head; i < c->valx; i++) {
1382 if ( cfn->c_syn_tail == syn ) {
1383 cfn->c_syn_tail = prev;
1385 if ( cfn->c_syn_head == syn ) {
1387 cfn->c_syn_head = syn;
1392 if ( c->valx < 0 ) {
1394 for ( sv = sortVals; sv; sv = sortVals ) {
1395 sortVals = sv->al_next;
1396 sv->al_desc->ad_type->sat_flags &= ~SLAP_AT_SORTED_VAL;
1403 for ( prev = &sortVals, sv = sortVals; i < c->valx; i++ ) {
1404 prev = &sv->al_next;
1407 sv->al_desc->ad_type->sat_flags &= ~SLAP_AT_SORTED_VAL;
1408 *prev = sv->al_next;
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;
1422 if ( c->be->be_limits ) {
1423 for ( num = 0; c->be->be_limits[ num ]; num++ )
1427 if ( c->valx >= num ) {
1432 limits_destroy( c->be->be_limits );
1433 c->be->be_limits = NULL;
1436 limits_free_one( c->be->be_limits[ c->valx ] );
1438 for ( cnt = c->valx; cnt < num; cnt++ ) {
1439 c->be->be_limits[ cnt ] = c->be->be_limits[ cnt + 1 ];
1446 /* FIXME: there is no ad_option_free function */
1448 /* FIXME: there is no way to remove attributes added by
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] );
1472 /* NOTE: config is always the first backend!
1474 if ( !strcasecmp( c->argv[1], "config" )) {
1475 c->be = LDAP_STAILQ_FIRST(&backendDB);
1476 } else if ( !strcasecmp( c->argv[1], "frontend" )) {
1479 c->be = backend_db_init(c->argv[1], NULL, c->valx, &c->reply);
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] );
1490 ldap_pvt_thread_set_concurrency(c->value_int);
1494 if ( c->value_int < 2 ) {
1495 snprintf( c->cr_msg, sizeof( c->cr_msg ),
1496 "threads=%d smaller than minimum value 2",
1498 Debug(LDAP_DEBUG_ANY, "%s: %s.\n",
1499 c->log, c->cr_msg, 0 );
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 );
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 */
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 */
1521 if ( passwd_salt ) ch_free( passwd_salt );
1522 passwd_salt = c->value_string;
1523 lutil_salt_format(passwd_salt);
1527 if(limits_parse(c->be, c->fname, c->lineno, c->argc, c->argv))
1533 c->be->be_restrictops |= SLAP_RESTRICT_READONLY;
1535 c->be->be_restrictops &= ~SLAP_RESTRICT_READONLY;
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] );
1549 if (slap_sasl_regexp_config( c->argv[1], c->argv[2] ))
1553 #ifdef HAVE_CYRUS_SASL
1556 char *txt = slap_sasl_secprops( c->argv[1] );
1558 snprintf( c->cr_msg, sizeof(c->cr_msg), "<%s> %s",
1560 Debug(LDAP_DEBUG_ANY, "%s: %s\n", c->log, c->cr_msg, 0 );
1568 c->be->be_max_deref_depth = c->value_int;
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))
1578 if (!cfn->c_om_head) cfn->c_om_head = om;
1579 cfn->c_om_tail = om;
1584 ObjectClass *oc, *prev;
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;
1592 /* If adding anything after the first, prev is easy */
1595 for (i=0, oc = cfn->c_oc_head; i<c->valx; i++) {
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; ) {
1607 /* else prev is NULL, append to end of global list */
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;
1616 AttributeType *at, *prev;
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;
1624 /* If adding anything after the first, prev is easy */
1627 for (i=0, at = cfn->c_at_head; i<c->valx; i++) {
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; ) {
1639 /* else prev is NULL, append to end of global list */
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;
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;
1656 /* If adding anything after the first, prev is easy */
1659 for ( i = 0, syn = cfn->c_syn_head; i < c->valx; i++ ) {
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; ) {
1671 /* else prev is NULL, append to end of global list */
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;
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;
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))
1698 if ( c->value_int < SLAP_INDEX_INTLEN_DEFAULT )
1699 c->value_int = SLAP_INDEX_INTLEN_DEFAULT;
1700 else if ( c->value_int > 255 )
1702 index_intlen = c->value_int;
1703 index_intlen_strlen = SLAP_INDEX_INTLEN_STRLEN(
1707 case CFG_SORTVALS: {
1708 ADlist *svnew = NULL, *svtail, *sv;
1710 for ( i = 1; i < c->argc; i++ ) {
1711 AttributeDescription *ad = NULL;
1715 rc = slap_str2ad( c->argv[i], &ad, &text );
1717 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> unknown attribute type #%d",
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;
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",
1732 goto sortval_reject;
1734 sv = ch_malloc( sizeof( ADlist ));
1739 svtail->al_next = sv;
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 );
1748 sv->al_next = svnew;
1755 /* Don't append to the global ACL if we're on a specific DB */
1757 if ( c->valx == -1 ) {
1760 for ( a=c->be->be_acl; a; a = a->acl_next )
1763 if ( parse_acl(c->be, c->fname, c->lineno, c->argc, c->argv, i ) ) {
1770 SLAP_DBFLAGS(c->be) |= SLAP_DBFLAG_ACL_ADD;
1772 SLAP_DBFLAGS(c->be) &= ~SLAP_DBFLAG_ACL_ADD;
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] );
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 );
1793 ServerID *si, **sip;
1796 if (( lutil_atoi( &num, c->argv[1] ) &&
1797 lutil_atoix( &num, c->argv[1], 16 )) ||
1798 num < 0 || num > SLAP_SYNC_SID_MAX )
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] );
1806 /* only one value allowed if no URL is given */
1807 if ( c->argc > 2 ) {
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] );
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] );
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] );
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] );
1838 si = ch_malloc( sizeof(ServerID) );
1839 BER_BVZERO( &si->si_url );
1840 slap_serverID = num;
1841 Debug( LDAP_DEBUG_CONFIG,
1843 c->log, slap_serverID, 0 );
1847 for ( sip = &sid_list; *sip; sip = &(*sip)->si_next );
1850 if (( slapMode & SLAP_SERVER_MODE ) && c->argc > 2 ) {
1851 Listener *l = config_check_my_url( c->argv[2], lud );
1853 slap_serverID = si->si_num;
1854 Debug( LDAP_DEBUG_CONFIG,
1855 "%s: SID=0x%03x (listener=%s)\n",
1856 c->log, slap_serverID,
1861 ldap_free_urldesc( lud );
1865 if ( logfileName ) ch_free( logfileName );
1866 logfileName = c->value_string;
1867 logfile = fopen(logfileName, "w");
1868 if(logfile) lutil_debug_file(logfile);
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 );
1880 SLAP_DBFLAGS(c->be) &= ~SLAP_DBFLAG_NOLASTMOD;
1882 SLAP_DBFLAGS(c->be) |= SLAP_DBFLAG_NOLASTMOD;
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",
1889 Debug(LDAP_DEBUG_ANY, "%s: %s\n",
1890 c->log, c->cr_msg, 0 );
1894 SLAP_DBFLAGS(c->be) &= ~SLAP_DBFLAG_SINGLE_SHADOW;
1896 SLAP_DBFLAGS(c->be) |= SLAP_DBFLAG_SINGLE_SHADOW;
1899 case CFG_MONITORING:
1901 SLAP_DBFLAGS(c->be) |= SLAP_DBFLAG_MONITORING;
1903 SLAP_DBFLAGS(c->be) &= ~SLAP_DBFLAG_MONITORING;
1908 SLAP_DBFLAGS(c->be) |= SLAP_DBFLAG_HIDDEN;
1910 SLAP_DBFLAGS(c->be) &= ~SLAP_DBFLAG_HIDDEN;
1913 case CFG_SYNC_SUBENTRY:
1915 SLAP_DBFLAGS(c->be) |= SLAP_DBFLAG_SYNC_SUBENTRY;
1917 SLAP_DBFLAGS(c->be) &= ~SLAP_DBFLAG_SYNC_SUBENTRY;
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 );
1927 index_substr_if_maxlen = c->value_uint;
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 );
1937 index_substr_if_minlen = c->value_uint;
1940 #ifdef SLAPD_MODULES
1942 /* If we're just adding a module on an existing modpath,
1943 * make sure we've selected the current path.
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",
1951 Debug(LDAP_DEBUG_ANY, "%s: %s (%s)\n",
1952 c->log, c->cr_msg, modcur->mp_path.bv_val );
1956 if(module_load(c->argv[1], c->argc - 2, (c->argc > 2) ? c->argv + 2 : NULL))
1958 /* Record this load on the current path */
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++;
1969 ber_str2bv(ptr, 0, 1, &bv);
1970 ber_bvarray_add( &modcur->mp_loads, &bv );
1972 /* Check for any new hardcoded schema */
1973 if ( c->op == LDAP_MOD_ADD && CONFIG_ONLINE_ADD( c )) {
1974 config_check_schema( NULL, &cfBackInfo );
1979 if(module_path(c->argv[1])) return(1);
1980 /* Record which path was used with each module */
1984 if (!modpaths.mp_loads) {
1987 mp = ch_malloc( sizeof( ModPaths ));
1988 modlast->mp_next = mp;
1990 ber_str2bv(c->argv[1], 0, 1, &mp->mp_path);
1992 mp->mp_loads = NULL;
2003 if(slapi_int_read_config(c->be, c->fname, c->lineno, c->argc, c->argv) != LDAP_SUCCESS)
2005 slapi_plugins_used++;
2009 #ifdef SLAP_AUTH_REWRITE
2015 if ( c->op == LDAP_MOD_ADD ) {
2019 if(slap_sasl_rewrite_config(c->fname, c->lineno, c->argc, c->argv))
2023 if ( c->argc > 1 ) {
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 ] = '"';
2036 ber_str2bv( c->argv[ 0 ], 0, 1, &bv );
2039 ber_bvarray_add( &authz_rewrites, &bv );
2041 if ( c->op == LDAP_MOD_ADD ) {
2051 Debug( LDAP_DEBUG_ANY,
2052 "%s: unknown CFG_TYPE %d.\n",
2053 c->log, c->type, 0 );
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 );
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 );
2087 config_search_base(ConfigArgs *c) {
2088 if(c->op == SLAP_CONFIG_EMIT) {
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);
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 );
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",
2111 if(default_search_nbase.bv_len) {
2112 free(default_search_base.bv_val);
2113 free(default_search_nbase.bv_val);
2116 default_search_base = c->value_dn;
2117 default_search_nbase = c->value_ndn;
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.
2126 config_passwd_hash(ConfigArgs *c) {
2128 if (c->op == SLAP_CONFIG_EMIT) {
2130 /* Don't generate it in the global entry */
2131 if ( c->table == Cft_Global )
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);
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 )
2142 if ( c->valx < 0 ) {
2143 ldap_charray_free( default_passwd_hash );
2144 default_passwd_hash = NULL;
2147 ch_free( default_passwd_hash[i] );
2148 for (; default_passwd_hash[i]; i++ )
2149 default_passwd_hash[i] = default_passwd_hash[i+1];
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]);
2159 ldap_charray_add(&default_passwd_hash, c->argv[i]);
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 );
2172 config_schema_dn(ConfigArgs *c) {
2173 if ( c->op == SLAP_CONFIG_EMIT ) {
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);
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 );
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;
2196 config_sizelimit(ConfigArgs *c) {
2198 struct slap_limits_set *lim = &c->be->be_def_limit;
2199 if (c->op == SLAP_CONFIG_EMIT) {
2204 limits_unparse_one( lim, SLAP_LIMIT_SIZE, &bv, sizeof( buf ) );
2205 if ( !BER_BVISEMPTY( &bv ))
2206 value_add_one( &c->rvalue_vals, &bv );
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;
2216 lim->lms_s_pr_hide = 0;
2217 lim->lms_s_pr_total = 0;
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);
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]);
2230 if(!strcasecmp(c->argv[i], "unlimited")) {
2231 lim->lms_s_soft = -1;
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]);
2240 lim->lms_s_hard = 0;
2247 config_timelimit(ConfigArgs *c) {
2249 struct slap_limits_set *lim = &c->be->be_def_limit;
2250 if (c->op == SLAP_CONFIG_EMIT) {
2255 limits_unparse_one( lim, SLAP_LIMIT_TIME, &bv, sizeof( buf ) );
2256 if ( !BER_BVISEMPTY( &bv ))
2257 value_add_one( &c->rvalue_vals, &bv );
2261 } else if ( c->op == LDAP_MOD_DELETE ) {
2262 /* Reset to defaults */
2263 lim->lms_t_soft = SLAPD_DEFAULT_TIMELIMIT;
2264 lim->lms_t_hard = 0;
2267 for(i = 1; i < c->argc; i++) {
2268 if(!strncasecmp(c->argv[i], "time", 4)) {
2269 rc = limits_parse_one(c->argv[i], lim);
2271 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> unable to parse value", c->argv[0] );
2272 Debug(LDAP_DEBUG_ANY, "%s: %s \"%s\"\n",
2273 c->log, c->cr_msg, c->argv[i]);
2277 if(!strcasecmp(c->argv[i], "unlimited")) {
2278 lim->lms_t_soft = -1;
2280 if ( lutil_atoix( &lim->lms_t_soft, c->argv[i], 0 ) != 0 ) {
2281 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> unable to parse limit", c->argv[0]);
2282 Debug(LDAP_DEBUG_ANY, "%s: %s \"%s\"\n",
2283 c->log, c->cr_msg, c->argv[i]);
2287 lim->lms_t_hard = 0;
2294 config_overlay(ConfigArgs *c) {
2295 if (c->op == SLAP_CONFIG_EMIT) {
2297 } else if ( c->op == LDAP_MOD_DELETE ) {
2300 if(c->argv[1][0] == '-' && overlay_config(c->be, &c->argv[1][1],
2301 c->valx, &c->bi, &c->reply)) {
2303 Debug( LDAP_DEBUG_ANY,
2304 "%s: (optional) %s overlay \"%s\" configuration failed.\n",
2305 c->log, c->be == frontendDB ? "global " : "", &c->argv[1][1]);
2307 } else if(overlay_config(c->be, c->argv[1], c->valx, &c->bi, &c->reply)) {
2314 config_subordinate(ConfigArgs *c)
2320 case SLAP_CONFIG_EMIT:
2321 if ( SLAP_GLUE_SUBORDINATE( c->be )) {
2324 bv.bv_val = SLAP_GLUE_ADVERTISE( c->be ) ? "advertise" : "TRUE";
2325 bv.bv_len = SLAP_GLUE_ADVERTISE( c->be ) ? STRLENOF("advertise") :
2328 value_add_one( &c->rvalue_vals, &bv );
2332 case LDAP_MOD_DELETE:
2333 if ( !c->line || strcasecmp( c->line, "advertise" )) {
2334 glue_sub_del( c->be );
2336 SLAP_DBFLAGS( c->be ) &= ~SLAP_DBFLAG_GLUE_ADVERTISE;
2341 case SLAP_CONFIG_ADD:
2342 if ( c->be->be_nsuffix == NULL ) {
2344 snprintf( c->cr_msg, sizeof( c->cr_msg),
2345 "subordinate configuration needs a suffix" );
2346 Debug( LDAP_DEBUG_ANY,
2348 c->log, c->cr_msg, 0 );
2353 if ( c->argc == 2 ) {
2354 if ( strcasecmp( c->argv[1], "advertise" ) == 0 ) {
2357 } else if ( strcasecmp( c->argv[1], "TRUE" ) != 0 ) {
2359 snprintf( c->cr_msg, sizeof( c->cr_msg),
2360 "subordinate must be \"TRUE\" or \"advertise\"" );
2361 Debug( LDAP_DEBUG_ANY,
2362 "%s: suffix \"%s\": %s.\n",
2363 c->log, c->be->be_suffix[0].bv_val, c->cr_msg );
2369 rc = glue_sub_add( c->be, advertise, CONFIG_ONLINE_ADD( c ));
2377 * [listener=<listener>] [{read|write}=]<size>
2380 #ifdef LDAP_TCP_BUFFER
2381 static BerVarray tcp_buffer;
2384 #define SLAP_TCP_RMEM (0x1U)
2385 #define SLAP_TCP_WMEM (0x2U)
2388 tcp_buffer_parse( struct berval *val, int argc, char **argv,
2389 int *size, int *rw, Listener **l )
2391 int i, rc = LDAP_SUCCESS;
2392 LDAPURLDesc *lud = NULL;
2395 if ( val != NULL && argv == NULL ) {
2396 char *s = val->bv_val;
2398 argv = ldap_str2charray( s, " \t" );
2399 if ( argv == NULL ) {
2405 if ( strncasecmp( argv[ i ], "listener=", STRLENOF( "listener=" ) )
2408 char *url = argv[ i ] + STRLENOF( "listener=" );
2410 if ( ldap_url_parse( url, &lud ) ) {
2411 rc = LDAP_INVALID_SYNTAX;
2415 *l = config_check_my_url( url, lud );
2417 rc = LDAP_NO_SUCH_ATTRIBUTE;
2425 if ( strncasecmp( ptr, "read=", STRLENOF( "read=" ) ) == 0 ) {
2426 *rw |= SLAP_TCP_RMEM;
2427 ptr += STRLENOF( "read=" );
2429 } else if ( strncasecmp( ptr, "write=", STRLENOF( "write=" ) ) == 0 ) {
2430 *rw |= SLAP_TCP_WMEM;
2431 ptr += STRLENOF( "write=" );
2434 *rw |= ( SLAP_TCP_RMEM | SLAP_TCP_WMEM );
2437 /* accept any base */
2438 if ( lutil_atoix( size, ptr, 0 ) ) {
2439 rc = LDAP_INVALID_SYNTAX;
2444 if ( val != NULL && argv != NULL ) {
2445 ldap_charray_free( argv );
2448 if ( lud != NULL ) {
2449 ldap_free_urldesc( lud );
2456 tcp_buffer_delete_one( struct berval *val )
2459 int size = -1, rw = 0;
2462 rc = tcp_buffer_parse( val, 0, NULL, &size, &rw, &l );
2469 Listener **ll = slapd_get_listeners();
2471 for ( i = 0; ll[ i ] != NULL; i++ ) {
2472 if ( ll[ i ] == l ) break;
2475 if ( ll[ i ] == NULL ) {
2476 return LDAP_NO_SUCH_ATTRIBUTE;
2479 if ( rw & SLAP_TCP_RMEM ) l->sl_tcp_rmem = -1;
2480 if ( rw & SLAP_TCP_WMEM ) l->sl_tcp_wmem = -1;
2482 for ( i++ ; ll[ i ] != NULL && bvmatch( &l->sl_url, &ll[ i ]->sl_url ); i++ ) {
2483 if ( rw & SLAP_TCP_RMEM ) ll[ i ]->sl_tcp_rmem = -1;
2484 if ( rw & SLAP_TCP_WMEM ) ll[ i ]->sl_tcp_wmem = -1;
2488 /* NOTE: this affects listeners without a specific setting,
2489 * does not reset all listeners. If a listener without
2490 * specific settings was assigned a buffer because of
2491 * a global setting, it will not be reset. In any case,
2492 * buffer changes will only take place at restart. */
2493 if ( rw & SLAP_TCP_RMEM ) slapd_tcp_rmem = -1;
2494 if ( rw & SLAP_TCP_WMEM ) slapd_tcp_wmem = -1;
2501 tcp_buffer_delete( BerVarray vals )
2505 for ( i = 0; !BER_BVISNULL( &vals[ i ] ); i++ ) {
2506 tcp_buffer_delete_one( &vals[ i ] );
2513 tcp_buffer_unparse( int size, int rw, Listener *l, struct berval *val )
2515 char buf[sizeof("2147483648")], *ptr;
2517 /* unparse for later use */
2518 val->bv_len = snprintf( buf, sizeof( buf ), "%d", size );
2520 val->bv_len += STRLENOF( "listener=" " " ) + l->sl_url.bv_len;
2523 if ( rw != ( SLAP_TCP_RMEM | SLAP_TCP_WMEM ) ) {
2524 if ( rw & SLAP_TCP_RMEM ) {
2525 val->bv_len += STRLENOF( "read=" );
2526 } else if ( rw & SLAP_TCP_WMEM ) {
2527 val->bv_len += STRLENOF( "write=" );
2531 val->bv_val = SLAP_MALLOC( val->bv_len + 1 );
2536 ptr = lutil_strcopy( ptr, "listener=" );
2537 ptr = lutil_strncopy( ptr, l->sl_url.bv_val, l->sl_url.bv_len );
2541 if ( rw != ( SLAP_TCP_RMEM | SLAP_TCP_WMEM ) ) {
2542 if ( rw & SLAP_TCP_RMEM ) {
2543 ptr = lutil_strcopy( ptr, "read=" );
2544 } else if ( rw & SLAP_TCP_WMEM ) {
2545 ptr = lutil_strcopy( ptr, "write=" );
2549 ptr = lutil_strcopy( ptr, buf );
2552 assert( val->bv_val + val->bv_len == ptr );
2554 return LDAP_SUCCESS;
2558 tcp_buffer_add_one( int argc, char **argv )
2561 int size = -1, rw = 0;
2567 rc = tcp_buffer_parse( NULL, argc, argv, &size, &rw, &l );
2572 /* unparse for later use */
2573 rc = tcp_buffer_unparse( size, rw, l, &val );
2574 if ( rc != LDAP_SUCCESS ) {
2578 /* use parsed values */
2581 Listener **ll = slapd_get_listeners();
2583 for ( i = 0; ll[ i ] != NULL; i++ ) {
2584 if ( ll[ i ] == l ) break;
2587 if ( ll[ i ] == NULL ) {
2588 return LDAP_NO_SUCH_ATTRIBUTE;
2591 /* buffer only applies to TCP listeners;
2592 * we do not do any check here, and delegate them
2593 * to setsockopt(2) */
2594 if ( rw & SLAP_TCP_RMEM ) l->sl_tcp_rmem = size;
2595 if ( rw & SLAP_TCP_WMEM ) l->sl_tcp_wmem = size;
2597 for ( i++ ; ll[ i ] != NULL && bvmatch( &l->sl_url, &ll[ i ]->sl_url ); i++ ) {
2598 if ( rw & SLAP_TCP_RMEM ) ll[ i ]->sl_tcp_rmem = size;
2599 if ( rw & SLAP_TCP_WMEM ) ll[ i ]->sl_tcp_wmem = size;
2603 /* NOTE: this affects listeners without a specific setting,
2604 * does not set all listeners */
2605 if ( rw & SLAP_TCP_RMEM ) slapd_tcp_rmem = size;
2606 if ( rw & SLAP_TCP_WMEM ) slapd_tcp_wmem = size;
2609 tcp_buffer = SLAP_REALLOC( tcp_buffer, sizeof( struct berval ) * ( tcp_buffer_num + 2 ) );
2611 tcp_buffer[ tcp_buffer_num ] = val;
2614 BER_BVZERO( &tcp_buffer[ tcp_buffer_num ] );
2620 config_tcp_buffer( ConfigArgs *c )
2622 if ( c->op == SLAP_CONFIG_EMIT ) {
2623 if ( tcp_buffer == NULL || BER_BVISNULL( &tcp_buffer[ 0 ] ) ) {
2626 value_add( &c->rvalue_vals, tcp_buffer );
2627 value_add( &c->rvalue_nvals, tcp_buffer );
2629 } else if ( c->op == LDAP_MOD_DELETE ) {
2631 tcp_buffer_delete( tcp_buffer );
2632 ber_bvarray_free( tcp_buffer );
2638 int size = -1, rw = 0;
2641 struct berval val = BER_BVNULL;
2645 if ( tcp_buffer_num == 0 ) {
2650 rc = tcp_buffer_parse( NULL, c->argc - 1, &c->argv[ 1 ], &size, &rw, &l );
2655 /* unparse for later use */
2656 rc = tcp_buffer_unparse( size, rw, l, &val );
2657 if ( rc != LDAP_SUCCESS ) {
2661 for ( i = 0; !BER_BVISNULL( &tcp_buffer[ i ] ); i++ ) {
2662 if ( bvmatch( &tcp_buffer[ i ], &val ) ) {
2667 if ( BER_BVISNULL( &tcp_buffer[ i ] ) ) {
2673 tcp_buffer_delete_one( &tcp_buffer[ i ] );
2674 ber_memfree( tcp_buffer[ i ].bv_val );
2675 for ( ; i < tcp_buffer_num; i++ ) {
2676 tcp_buffer[ i ] = tcp_buffer[ i + 1 ];
2681 if ( !BER_BVISNULL( &val ) ) {
2682 SLAP_FREE( val.bv_val );
2690 rc = tcp_buffer_add_one( c->argc - 1, &c->argv[ 1 ] );
2692 snprintf( c->cr_msg, sizeof( c->cr_msg ),
2693 "<%s> unable to add value #%d",
2694 c->argv[0], tcp_buffer_num );
2695 Debug( LDAP_DEBUG_ANY, "%s: %s\n",
2696 c->log, c->cr_msg, 0 );
2703 #endif /* LDAP_TCP_BUFFER */
2706 config_suffix(ConfigArgs *c)
2709 struct berval pdn, ndn;
2710 char *notallowed = NULL;
2712 if ( c->be == frontendDB ) {
2713 notallowed = "frontend";
2715 } else if ( SLAP_MONITOR(c->be) ) {
2716 notallowed = "monitor";
2718 } else if ( SLAP_CONFIG(c->be) ) {
2719 notallowed = "config";
2722 if ( notallowed != NULL ) {
2723 char buf[ SLAP_TEXT_BUFLEN ] = { '\0' };
2727 case LDAP_MOD_DELETE:
2728 case LDAP_MOD_REPLACE:
2729 case LDAP_MOD_INCREMENT:
2730 case SLAP_CONFIG_ADD:
2731 if ( !BER_BVISNULL( &c->value_dn ) ) {
2732 snprintf( buf, sizeof( buf ), "<%s> ",
2733 c->value_dn.bv_val );
2736 Debug(LDAP_DEBUG_ANY,
2737 "%s: suffix %snot allowed in %s database.\n",
2738 c->log, buf, notallowed );
2741 case SLAP_CONFIG_EMIT:
2742 /* don't complain when emitting... */
2746 /* FIXME: don't know what values may be valid;
2747 * please remove assertion, or add legal values
2748 * to either block */
2756 if (c->op == SLAP_CONFIG_EMIT) {
2757 if ( c->be->be_suffix == NULL
2758 || BER_BVISNULL( &c->be->be_suffix[0] ) )
2762 value_add( &c->rvalue_vals, c->be->be_suffix );
2763 value_add( &c->rvalue_nvals, c->be->be_nsuffix );
2766 } else if ( c->op == LDAP_MOD_DELETE ) {
2767 if ( c->valx < 0 ) {
2768 ber_bvarray_free( c->be->be_suffix );
2769 ber_bvarray_free( c->be->be_nsuffix );
2770 c->be->be_suffix = NULL;
2771 c->be->be_nsuffix = NULL;
2774 ch_free( c->be->be_suffix[i].bv_val );
2775 ch_free( c->be->be_nsuffix[i].bv_val );
2777 c->be->be_suffix[i] = c->be->be_suffix[i+1];
2778 c->be->be_nsuffix[i] = c->be->be_nsuffix[i+1];
2780 } while ( !BER_BVISNULL( &c->be->be_suffix[i] ) );
2785 #ifdef SLAPD_MONITOR_DN
2786 if(!strcasecmp(c->argv[1], SLAPD_MONITOR_DN)) {
2787 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> DN is reserved for monitoring slapd",
2789 Debug(LDAP_DEBUG_ANY, "%s: %s (%s)\n",
2790 c->log, c->cr_msg, SLAPD_MONITOR_DN);
2795 if (SLAP_DB_ONE_SUFFIX( c->be ) && c->be->be_suffix ) {
2796 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> Only one suffix is allowed on this %s backend",
2797 c->argv[0], c->be->bd_info->bi_type );
2798 Debug(LDAP_DEBUG_ANY, "%s: %s\n",
2799 c->log, c->cr_msg, 0);
2806 if (SLAP_DBHIDDEN( c->be ))
2809 tbe = select_backend(&ndn, 0);
2811 Debug( LDAP_DEBUG_ANY, "%s: suffix already served by this backend!.\n",
2817 BackendDB *b2 = tbe;
2819 /* Does tbe precede be? */
2820 while (( b2 = LDAP_STAILQ_NEXT(b2, be_next )) && b2 && b2 != c->be );
2823 char *type = tbe->bd_info->bi_type;
2825 if ( overlay_is_over( tbe ) ) {
2826 slap_overinfo *oi = (slap_overinfo *)tbe->bd_info->bi_private;
2827 type = oi->oi_orig->bi_type;
2830 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> namingContext \"%s\" "
2831 "already served by a preceding %s database",
2832 c->argv[0], pdn.bv_val, type );
2833 Debug(LDAP_DEBUG_ANY, "%s: %s serving namingContext \"%s\"\n",
2834 c->log, c->cr_msg, tbe->be_suffix[0].bv_val);
2840 if(pdn.bv_len == 0 && default_search_nbase.bv_len) {
2841 Debug(LDAP_DEBUG_ANY, "%s: suffix DN empty and default search "
2842 "base provided \"%s\" (assuming okay)\n",
2843 c->log, default_search_base.bv_val, 0);
2845 ber_bvarray_add(&c->be->be_suffix, &pdn);
2846 ber_bvarray_add(&c->be->be_nsuffix, &ndn);
2851 config_rootdn(ConfigArgs *c) {
2852 if (c->op == SLAP_CONFIG_EMIT) {
2853 if ( !BER_BVISNULL( &c->be->be_rootdn )) {
2854 value_add_one(&c->rvalue_vals, &c->be->be_rootdn);
2855 value_add_one(&c->rvalue_nvals, &c->be->be_rootndn);
2860 } else if ( c->op == LDAP_MOD_DELETE ) {
2861 ch_free( c->be->be_rootdn.bv_val );
2862 ch_free( c->be->be_rootndn.bv_val );
2863 BER_BVZERO( &c->be->be_rootdn );
2864 BER_BVZERO( &c->be->be_rootndn );
2867 if ( !BER_BVISNULL( &c->be->be_rootdn )) {
2868 ch_free( c->be->be_rootdn.bv_val );
2869 ch_free( c->be->be_rootndn.bv_val );
2871 c->be->be_rootdn = c->value_dn;
2872 c->be->be_rootndn = c->value_ndn;
2877 config_rootpw(ConfigArgs *c) {
2880 if (c->op == SLAP_CONFIG_EMIT) {
2881 if (!BER_BVISEMPTY(&c->be->be_rootpw)) {
2882 /* don't copy, because "rootpw" is marked
2884 c->value_bv = c->be->be_rootpw;
2888 } else if ( c->op == LDAP_MOD_DELETE ) {
2889 ch_free( c->be->be_rootpw.bv_val );
2890 BER_BVZERO( &c->be->be_rootpw );
2894 tbe = select_backend(&c->be->be_rootndn, 0);
2896 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> can only be set when rootdn is under suffix",
2898 Debug(LDAP_DEBUG_ANY, "%s: %s\n",
2899 c->log, c->cr_msg, 0);
2902 if ( !BER_BVISNULL( &c->be->be_rootpw ))
2903 ch_free( c->be->be_rootpw.bv_val );
2904 c->be->be_rootpw = c->value_bv;
2909 config_restrict(ConfigArgs *c) {
2910 slap_mask_t restrictops = 0;
2912 slap_verbmasks restrictable_ops[] = {
2913 { BER_BVC("bind"), SLAP_RESTRICT_OP_BIND },
2914 { BER_BVC("add"), SLAP_RESTRICT_OP_ADD },
2915 { BER_BVC("modify"), SLAP_RESTRICT_OP_MODIFY },
2916 { BER_BVC("rename"), SLAP_RESTRICT_OP_RENAME },
2917 { BER_BVC("modrdn"), 0 },
2918 { BER_BVC("delete"), SLAP_RESTRICT_OP_DELETE },
2919 { BER_BVC("search"), SLAP_RESTRICT_OP_SEARCH },
2920 { BER_BVC("compare"), SLAP_RESTRICT_OP_COMPARE },
2921 { BER_BVC("read"), SLAP_RESTRICT_OP_READS },
2922 { BER_BVC("write"), SLAP_RESTRICT_OP_WRITES },
2923 { BER_BVC("extended"), SLAP_RESTRICT_OP_EXTENDED },
2924 { BER_BVC("extended=" LDAP_EXOP_START_TLS ), SLAP_RESTRICT_EXOP_START_TLS },
2925 { BER_BVC("extended=" LDAP_EXOP_MODIFY_PASSWD ), SLAP_RESTRICT_EXOP_MODIFY_PASSWD },
2926 { BER_BVC("extended=" LDAP_EXOP_X_WHO_AM_I ), SLAP_RESTRICT_EXOP_WHOAMI },
2927 { BER_BVC("extended=" LDAP_EXOP_X_CANCEL ), SLAP_RESTRICT_EXOP_CANCEL },
2928 { BER_BVC("all"), SLAP_RESTRICT_OP_ALL },
2932 if (c->op == SLAP_CONFIG_EMIT) {
2933 return mask_to_verbs( restrictable_ops, c->be->be_restrictops,
2935 } else if ( c->op == LDAP_MOD_DELETE ) {
2937 c->be->be_restrictops = 0;
2939 restrictops = verb_to_mask( c->line, restrictable_ops );
2940 c->be->be_restrictops ^= restrictops;
2944 i = verbs_to_mask( c->argc, c->argv, restrictable_ops, &restrictops );
2946 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> unknown operation", c->argv[0] );
2947 Debug(LDAP_DEBUG_ANY, "%s: %s %s\n",
2948 c->log, c->cr_msg, c->argv[i]);
2951 if ( restrictops & SLAP_RESTRICT_OP_EXTENDED )
2952 restrictops &= ~SLAP_RESTRICT_EXOP_MASK;
2953 c->be->be_restrictops |= restrictops;
2958 config_allows(ConfigArgs *c) {
2959 slap_mask_t allows = 0;
2961 slap_verbmasks allowable_ops[] = {
2962 { BER_BVC("bind_v2"), SLAP_ALLOW_BIND_V2 },
2963 { BER_BVC("bind_anon_cred"), SLAP_ALLOW_BIND_ANON_CRED },
2964 { BER_BVC("bind_anon_dn"), SLAP_ALLOW_BIND_ANON_DN },
2965 { BER_BVC("update_anon"), SLAP_ALLOW_UPDATE_ANON },
2966 { BER_BVC("proxy_authz_anon"), SLAP_ALLOW_PROXY_AUTHZ_ANON },
2969 if (c->op == SLAP_CONFIG_EMIT) {
2970 return mask_to_verbs( allowable_ops, global_allows, &c->rvalue_vals );
2971 } else if ( c->op == LDAP_MOD_DELETE ) {
2975 allows = verb_to_mask( c->line, allowable_ops );
2976 global_allows ^= allows;
2980 i = verbs_to_mask(c->argc, c->argv, allowable_ops, &allows);
2982 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> unknown feature", c->argv[0] );
2983 Debug(LDAP_DEBUG_ANY, "%s: %s %s\n",
2984 c->log, c->cr_msg, c->argv[i]);
2987 global_allows |= allows;
2992 config_disallows(ConfigArgs *c) {
2993 slap_mask_t disallows = 0;
2995 slap_verbmasks disallowable_ops[] = {
2996 { BER_BVC("bind_anon"), SLAP_DISALLOW_BIND_ANON },
2997 { BER_BVC("bind_simple"), SLAP_DISALLOW_BIND_SIMPLE },
2998 { BER_BVC("tls_2_anon"), SLAP_DISALLOW_TLS_2_ANON },
2999 { BER_BVC("tls_authc"), SLAP_DISALLOW_TLS_AUTHC },
3000 { BER_BVC("proxy_authz_non_critical"), SLAP_DISALLOW_PROXY_AUTHZ_N_CRIT },
3001 { BER_BVC("dontusecopy_non_critical"), SLAP_DISALLOW_DONTUSECOPY_N_CRIT },
3004 if (c->op == SLAP_CONFIG_EMIT) {
3005 return mask_to_verbs( disallowable_ops, global_disallows, &c->rvalue_vals );
3006 } else if ( c->op == LDAP_MOD_DELETE ) {
3008 global_disallows = 0;
3010 disallows = verb_to_mask( c->line, disallowable_ops );
3011 global_disallows ^= disallows;
3015 i = verbs_to_mask(c->argc, c->argv, disallowable_ops, &disallows);
3017 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> unknown feature", c->argv[0] );
3018 Debug(LDAP_DEBUG_ANY, "%s: %s %s\n",
3019 c->log, c->cr_msg, c->argv[i]);
3022 global_disallows |= disallows;
3027 config_requires(ConfigArgs *c) {
3028 slap_mask_t requires = frontendDB->be_requires;
3029 int i, argc = c->argc;
3030 char **argv = c->argv;
3032 slap_verbmasks requires_ops[] = {
3033 { BER_BVC("bind"), SLAP_REQUIRE_BIND },
3034 { BER_BVC("LDAPv3"), SLAP_REQUIRE_LDAP_V3 },
3035 { BER_BVC("authc"), SLAP_REQUIRE_AUTHC },
3036 { BER_BVC("sasl"), SLAP_REQUIRE_SASL },
3037 { BER_BVC("strong"), SLAP_REQUIRE_STRONG },
3040 if (c->op == SLAP_CONFIG_EMIT) {
3041 return mask_to_verbs( requires_ops, c->be->be_requires, &c->rvalue_vals );
3042 } else if ( c->op == LDAP_MOD_DELETE ) {
3044 c->be->be_requires = 0;
3046 requires = verb_to_mask( c->line, requires_ops );
3047 c->be->be_requires ^= requires;
3051 /* "none" can only be first, to wipe out default/global values */
3052 if ( strcasecmp( c->argv[ 1 ], "none" ) == 0 ) {
3057 i = verbs_to_mask(argc, argv, requires_ops, &requires);
3059 if (strcasecmp( c->argv[ i ], "none" ) == 0 ) {
3060 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> \"none\" (#%d) must be listed first", c->argv[0], i - 1 );
3061 Debug(LDAP_DEBUG_ANY, "%s: %s\n",
3062 c->log, c->cr_msg, 0);
3064 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> unknown feature #%d", c->argv[0], i - 1 );
3065 Debug(LDAP_DEBUG_ANY, "%s: %s \"%s\"\n",
3066 c->log, c->cr_msg, c->argv[i]);
3070 c->be->be_requires = requires;
3074 static slap_verbmasks *loglevel_ops;
3077 loglevel_init( void )
3079 slap_verbmasks lo[] = {
3080 { BER_BVC("Any"), (slap_mask_t) LDAP_DEBUG_ANY },
3081 { BER_BVC("Trace"), LDAP_DEBUG_TRACE },
3082 { BER_BVC("Packets"), LDAP_DEBUG_PACKETS },
3083 { BER_BVC("Args"), LDAP_DEBUG_ARGS },
3084 { BER_BVC("Conns"), LDAP_DEBUG_CONNS },
3085 { BER_BVC("BER"), LDAP_DEBUG_BER },
3086 { BER_BVC("Filter"), LDAP_DEBUG_FILTER },
3087 { BER_BVC("Config"), LDAP_DEBUG_CONFIG },
3088 { BER_BVC("ACL"), LDAP_DEBUG_ACL },
3089 { BER_BVC("Stats"), LDAP_DEBUG_STATS },
3090 { BER_BVC("Stats2"), LDAP_DEBUG_STATS2 },
3091 { BER_BVC("Shell"), LDAP_DEBUG_SHELL },
3092 { BER_BVC("Parse"), LDAP_DEBUG_PARSE },
3093 #if 0 /* no longer used (nor supported) */
3094 { BER_BVC("Cache"), LDAP_DEBUG_CACHE },
3095 { BER_BVC("Index"), LDAP_DEBUG_INDEX },
3097 { BER_BVC("Sync"), LDAP_DEBUG_SYNC },
3098 { BER_BVC("None"), LDAP_DEBUG_NONE },
3102 return slap_verbmasks_init( &loglevel_ops, lo );
3106 loglevel_destroy( void )
3108 if ( loglevel_ops ) {
3109 (void)slap_verbmasks_destroy( loglevel_ops );
3111 loglevel_ops = NULL;
3114 static slap_mask_t loglevel_ignore[] = { -1, 0 };
3117 slap_loglevel_register( slap_mask_t m, struct berval *s )
3121 if ( loglevel_ops == NULL ) {
3125 rc = slap_verbmasks_append( &loglevel_ops, m, s, loglevel_ignore );
3128 Debug( LDAP_DEBUG_ANY, "slap_loglevel_register(%lu, \"%s\") failed\n",
3136 slap_loglevel_get( struct berval *s, int *l )
3141 if ( loglevel_ops == NULL ) {
3145 for ( m = 0, i = 1; !BER_BVISNULL( &loglevel_ops[ i ].word ); i++ ) {
3146 m |= loglevel_ops[ i ].mask;
3149 for ( i = 1; m & i; i <<= 1 )
3156 rc = slap_verbmasks_append( &loglevel_ops, i, s, loglevel_ignore );
3159 Debug( LDAP_DEBUG_ANY, "slap_loglevel_get(%lu, \"%s\") failed\n",
3170 str2loglevel( const char *s, int *l )
3174 if ( loglevel_ops == NULL ) {
3178 i = verb_to_mask( s, loglevel_ops );
3180 if ( BER_BVISNULL( &loglevel_ops[ i ].word ) ) {
3184 *l = loglevel_ops[ i ].mask;
3190 loglevel2str( int l )
3192 struct berval bv = BER_BVNULL;
3194 loglevel2bv( l, &bv );
3200 loglevel2bv( int l, struct berval *bv )
3202 if ( loglevel_ops == NULL ) {
3208 return enum_to_verb( loglevel_ops, l, bv ) == -1;
3212 loglevel2bvarray( int l, BerVarray *bva )
3214 if ( loglevel_ops == NULL ) {
3218 return mask_to_verbs( loglevel_ops, l, bva );
3222 loglevel_print( FILE *out )
3226 if ( loglevel_ops == NULL ) {
3230 fprintf( out, "Installed log subsystems:\n\n" );
3231 for ( i = 0; !BER_BVISNULL( &loglevel_ops[ i ].word ); i++ ) {
3232 unsigned mask = loglevel_ops[ i ].mask & 0xffffffffUL;
3234 (mask == ((slap_mask_t) -1 & 0xffffffffUL)
3235 ? "\t%-30s (-1, 0xffffffff)\n" : "\t%-30s (%u, 0x%x)\n"),
3236 loglevel_ops[ i ].word.bv_val, mask, mask );
3239 fprintf( out, "\nNOTE: custom log subsystems may be later installed "
3240 "by specific code\n\n" );
3245 static int config_syslog;
3248 config_loglevel(ConfigArgs *c) {
3251 if ( loglevel_ops == NULL ) {
3255 if (c->op == SLAP_CONFIG_EMIT) {
3256 /* Get default or commandline slapd setting */
3257 if ( ldap_syslog && !config_syslog )
3258 config_syslog = ldap_syslog;
3259 return loglevel2bvarray( config_syslog, &c->rvalue_vals );
3261 } else if ( c->op == LDAP_MOD_DELETE ) {
3265 int level = verb_to_mask( c->line, loglevel_ops );
3266 config_syslog ^= level;
3268 if ( slapMode & SLAP_SERVER_MODE ) {
3269 ldap_syslog = config_syslog;
3274 for( i=1; i < c->argc; i++ ) {
3277 if ( isdigit((unsigned char)c->argv[i][0]) || c->argv[i][0] == '-' ) {
3278 if( lutil_atoix( &level, c->argv[i], 0 ) != 0 ) {
3279 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> unable to parse level", c->argv[0] );
3280 Debug( LDAP_DEBUG_ANY, "%s: %s \"%s\"\n",
3281 c->log, c->cr_msg, c->argv[i]);
3285 if ( str2loglevel( c->argv[i], &level ) ) {
3286 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> unknown level", c->argv[0] );
3287 Debug( LDAP_DEBUG_ANY, "%s: %s \"%s\"\n",
3288 c->log, c->cr_msg, c->argv[i]);
3292 /* Explicitly setting a zero clears all the levels */
3294 config_syslog |= level;
3298 if ( slapMode & SLAP_SERVER_MODE ) {
3299 ldap_syslog = config_syslog;
3305 config_referral(ConfigArgs *c) {
3307 if (c->op == SLAP_CONFIG_EMIT) {
3308 if ( default_referral ) {
3309 value_add( &c->rvalue_vals, default_referral );
3314 } else if ( c->op == LDAP_MOD_DELETE ) {
3315 if ( c->valx < 0 ) {
3316 ber_bvarray_free( default_referral );
3317 default_referral = NULL;
3320 ch_free( default_referral[i].bv_val );
3321 for (; default_referral[i].bv_val; i++ )
3322 default_referral[i] = default_referral[i+1];
3326 if(validate_global_referral(c->argv[1])) {
3327 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> invalid URL", c->argv[0] );
3328 Debug(LDAP_DEBUG_ANY, "%s: %s (%s)\n",
3329 c->log, c->cr_msg, c->argv[1]);
3333 ber_str2bv(c->argv[1], 0, 0, &val);
3334 if(value_add_one(&default_referral, &val)) return(LDAP_OTHER);
3342 { BER_BVC("ssf="), offsetof(slap_ssf_set_t, sss_ssf) },
3343 { BER_BVC("transport="), offsetof(slap_ssf_set_t, sss_transport) },
3344 { BER_BVC("tls="), offsetof(slap_ssf_set_t, sss_tls) },
3345 { BER_BVC("sasl="), offsetof(slap_ssf_set_t, sss_sasl) },
3346 { BER_BVC("update_ssf="), offsetof(slap_ssf_set_t, sss_update_ssf) },
3347 { BER_BVC("update_transport="), offsetof(slap_ssf_set_t, sss_update_transport) },
3348 { BER_BVC("update_tls="), offsetof(slap_ssf_set_t, sss_update_tls) },
3349 { BER_BVC("update_sasl="), offsetof(slap_ssf_set_t, sss_update_sasl) },
3350 { BER_BVC("simple_bind="), offsetof(slap_ssf_set_t, sss_simple_bind) },
3355 config_security(ConfigArgs *c) {
3356 slap_ssf_set_t *set = &c->be->be_ssf_set;
3359 if (c->op == SLAP_CONFIG_EMIT) {
3365 for (i=0; !BER_BVISNULL( &sec_keys[i].key ); i++) {
3366 tgt = (slap_ssf_t *)((char *)set + sec_keys[i].off);
3369 bv.bv_len = snprintf( numbuf, sizeof( numbuf ), "%u", *tgt );
3370 if ( bv.bv_len >= sizeof( numbuf ) ) {
3371 ber_bvarray_free_x( c->rvalue_vals, NULL );
3372 c->rvalue_vals = NULL;
3376 bv.bv_len += sec_keys[i].key.bv_len;
3377 bv.bv_val = ch_malloc( bv.bv_len + 1);
3378 next = lutil_strcopy( bv.bv_val, sec_keys[i].key.bv_val );
3379 strcpy( next, numbuf );
3380 ber_bvarray_add( &c->rvalue_vals, &bv );
3385 for(i = 1; i < c->argc; i++) {
3386 slap_ssf_t *tgt = NULL;
3388 for ( j=0; !BER_BVISNULL( &sec_keys[j].key ); j++ ) {
3389 if(!strncasecmp(c->argv[i], sec_keys[j].key.bv_val,
3390 sec_keys[j].key.bv_len)) {
3391 src = c->argv[i] + sec_keys[j].key.bv_len;
3392 tgt = (slap_ssf_t *)((char *)set + sec_keys[j].off);
3397 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> unknown factor", c->argv[0] );
3398 Debug(LDAP_DEBUG_ANY, "%s: %s %s\n",
3399 c->log, c->cr_msg, c->argv[i]);
3403 if ( lutil_atou( tgt, src ) != 0 ) {
3404 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> unable to parse factor", c->argv[0] );
3405 Debug(LDAP_DEBUG_ANY, "%s: %s \"%s\"\n",
3406 c->log, c->cr_msg, c->argv[i]);
3414 anlist_unparse( AttributeName *an, char *ptr, ber_len_t buflen ) {
3418 for (; !BER_BVISNULL( &an->an_name ); an++) {
3419 /* if buflen == 0, assume the buffer size has been
3420 * already checked otherwise */
3421 if ( buflen > 0 && buflen - ( ptr - start ) < comma + an->an_name.bv_len ) return NULL;
3422 if ( comma ) *ptr++ = ',';
3423 ptr = lutil_strcopy( ptr, an->an_name.bv_val );
3430 config_updatedn(ConfigArgs *c) {
3431 if (c->op == SLAP_CONFIG_EMIT) {
3432 if (!BER_BVISEMPTY(&c->be->be_update_ndn)) {
3433 value_add_one(&c->rvalue_vals, &c->be->be_update_ndn);
3434 value_add_one(&c->rvalue_nvals, &c->be->be_update_ndn);
3438 } else if ( c->op == LDAP_MOD_DELETE ) {
3439 ch_free( c->be->be_update_ndn.bv_val );
3440 BER_BVZERO( &c->be->be_update_ndn );
3441 SLAP_DBFLAGS(c->be) ^= (SLAP_DBFLAG_SHADOW | SLAP_DBFLAG_SLURP_SHADOW);
3444 if(SLAP_SHADOW(c->be)) {
3445 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> database already shadowed", c->argv[0] );
3446 Debug(LDAP_DEBUG_ANY, "%s: %s\n",
3447 c->log, c->cr_msg, 0);
3451 ber_memfree_x( c->value_dn.bv_val, NULL );
3452 if ( !BER_BVISNULL( &c->be->be_update_ndn ) ) {
3453 ber_memfree_x( c->be->be_update_ndn.bv_val, NULL );
3455 c->be->be_update_ndn = c->value_ndn;
3456 BER_BVZERO( &c->value_dn );
3457 BER_BVZERO( &c->value_ndn );
3459 return config_slurp_shadow( c );
3463 config_shadow( ConfigArgs *c, slap_mask_t flag )
3465 char *notallowed = NULL;
3467 if ( c->be == frontendDB ) {
3468 notallowed = "frontend";
3470 } else if ( SLAP_MONITOR(c->be) ) {
3471 notallowed = "monitor";
3474 if ( notallowed != NULL ) {
3475 Debug( LDAP_DEBUG_ANY, "%s: %s database cannot be shadow.\n", c->log, notallowed, 0 );
3479 if ( SLAP_SHADOW(c->be) ) {
3480 /* if already shadow, only check consistency */
3481 if ( ( SLAP_DBFLAGS(c->be) & flag ) != flag ) {
3482 Debug( LDAP_DEBUG_ANY, "%s: inconsistent shadow flag 0x%lx.\n",
3488 SLAP_DBFLAGS(c->be) |= (SLAP_DBFLAG_SHADOW | SLAP_DBFLAG_SINGLE_SHADOW | flag);
3495 config_updateref(ConfigArgs *c) {
3497 if (c->op == SLAP_CONFIG_EMIT) {
3498 if ( c->be->be_update_refs ) {
3499 value_add( &c->rvalue_vals, c->be->be_update_refs );
3504 } else if ( c->op == LDAP_MOD_DELETE ) {
3505 if ( c->valx < 0 ) {
3506 ber_bvarray_free( c->be->be_update_refs );
3507 c->be->be_update_refs = NULL;
3510 ch_free( c->be->be_update_refs[i].bv_val );
3511 for (; c->be->be_update_refs[i].bv_val; i++)
3512 c->be->be_update_refs[i] = c->be->be_update_refs[i+1];
3516 if(!SLAP_SHADOW(c->be) && !c->be->be_syncinfo) {
3517 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> must appear after syncrepl or updatedn",
3519 Debug(LDAP_DEBUG_ANY, "%s: %s\n",
3520 c->log, c->cr_msg, 0);
3524 if(validate_global_referral(c->argv[1])) {
3525 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> invalid URL", c->argv[0] );
3526 Debug(LDAP_DEBUG_ANY, "%s: %s (%s)\n",
3527 c->log, c->cr_msg, c->argv[1]);
3530 ber_str2bv(c->argv[1], 0, 0, &val);
3531 if(value_add_one(&c->be->be_update_refs, &val)) return(LDAP_OTHER);
3536 config_obsolete(ConfigArgs *c) {
3537 if (c->op == SLAP_CONFIG_EMIT)
3540 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> keyword is obsolete (ignored)",
3542 Debug(LDAP_DEBUG_ANY, "%s: %s\n", c->log, c->cr_msg, 0);
3547 config_include(ConfigArgs *c) {
3548 int savelineno = c->lineno;
3551 ConfigFile *cfsave = cfn;
3552 ConfigFile *cf2 = NULL;
3554 /* Leftover from RE23. No dynamic config for include files */
3555 if ( c->op == SLAP_CONFIG_EMIT || c->op == LDAP_MOD_DELETE )
3558 cf = ch_calloc( 1, sizeof(ConfigFile));
3559 if ( cfn->c_kids ) {
3560 for (cf2=cfn->c_kids; cf2 && cf2->c_sibs; cf2=cf2->c_sibs) ;
3566 ber_str2bv( c->argv[1], 0, 1, &cf->c_file );
3567 rc = read_config_file(c->argv[1], c->depth + 1, c, config_back_cf_table);
3568 c->lineno = savelineno - 1;
3571 if ( cf2 ) cf2->c_sibs = NULL;
3572 else cfn->c_kids = NULL;
3573 ch_free( cf->c_file.bv_val );
3583 config_tls_cleanup(ConfigArgs *c) {
3586 if ( slap_tls_ld ) {
3589 ldap_pvt_tls_ctx_free( slap_tls_ctx );
3591 /* Force new ctx to be created */
3592 rc = ldap_pvt_tls_set_option( slap_tls_ld, LDAP_OPT_X_TLS_NEWCTX, &opt );
3594 /* The ctx's refcount is bumped up here */
3595 ldap_pvt_tls_get_option( slap_tls_ld, LDAP_OPT_X_TLS_CTX, &slap_tls_ctx );
3596 /* This is a no-op if it's already loaded */
3597 load_extop( &slap_EXOP_START_TLS, 0, starttls_extop );
3604 config_tls_option(ConfigArgs *c) {
3606 LDAP *ld = slap_tls_ld;
3608 case CFG_TLS_RAND: flag = LDAP_OPT_X_TLS_RANDOM_FILE; ld = NULL; break;
3609 case CFG_TLS_CIPHER: flag = LDAP_OPT_X_TLS_CIPHER_SUITE; break;
3610 case CFG_TLS_CERT_FILE: flag = LDAP_OPT_X_TLS_CERTFILE; break;
3611 case CFG_TLS_CERT_KEY: flag = LDAP_OPT_X_TLS_KEYFILE; break;
3612 case CFG_TLS_CA_PATH: flag = LDAP_OPT_X_TLS_CACERTDIR; break;
3613 case CFG_TLS_CA_FILE: flag = LDAP_OPT_X_TLS_CACERTFILE; break;
3614 case CFG_TLS_DH_FILE: flag = LDAP_OPT_X_TLS_DHFILE; break;
3616 case CFG_TLS_CRL_FILE: flag = LDAP_OPT_X_TLS_CRLFILE; break;
3618 default: Debug(LDAP_DEBUG_ANY, "%s: "
3619 "unknown tls_option <0x%x>\n",
3620 c->log, c->type, 0);
3623 if (c->op == SLAP_CONFIG_EMIT) {
3624 return ldap_pvt_tls_get_option( ld, flag, &c->value_string );
3625 } else if ( c->op == LDAP_MOD_DELETE ) {
3626 c->cleanup = config_tls_cleanup;
3627 return ldap_pvt_tls_set_option( ld, flag, NULL );
3629 ch_free(c->value_string);
3630 c->cleanup = config_tls_cleanup;
3631 return(ldap_pvt_tls_set_option(ld, flag, c->argv[1]));
3634 /* FIXME: this ought to be provided by libldap */
3636 config_tls_config(ConfigArgs *c) {
3639 case CFG_TLS_CRLCHECK: flag = LDAP_OPT_X_TLS_CRLCHECK; break;
3640 case CFG_TLS_VERIFY: flag = LDAP_OPT_X_TLS_REQUIRE_CERT; break;
3641 case CFG_TLS_PROTOCOL_MIN: flag = LDAP_OPT_X_TLS_PROTOCOL_MIN; break;
3643 Debug(LDAP_DEBUG_ANY, "%s: "
3644 "unknown tls_option <0x%x>\n",
3645 c->log, c->type, 0);
3648 if (c->op == SLAP_CONFIG_EMIT) {
3649 return slap_tls_get_config( slap_tls_ld, flag, &c->value_string );
3650 } else if ( c->op == LDAP_MOD_DELETE ) {
3652 c->cleanup = config_tls_cleanup;
3653 return ldap_pvt_tls_set_option( slap_tls_ld, flag, &i );
3655 ch_free( c->value_string );
3656 c->cleanup = config_tls_cleanup;
3657 if ( isdigit( (unsigned char)c->argv[1][0] ) ) {
3658 if ( lutil_atoi( &i, c->argv[1] ) != 0 ) {
3659 Debug(LDAP_DEBUG_ANY, "%s: "
3660 "unable to parse %s \"%s\"\n",
3661 c->log, c->argv[0], c->argv[1] );
3664 return(ldap_pvt_tls_set_option(slap_tls_ld, flag, &i));
3666 return(ldap_int_tls_config(slap_tls_ld, flag, c->argv[1]));
3671 static CfEntryInfo *
3672 config_find_base( CfEntryInfo *root, struct berval *dn, CfEntryInfo **last )
3682 if ( dn_match( &root->ce_entry->e_nname, dn ))
3685 c = dn->bv_val+dn->bv_len;
3686 for (;*c != ',';c--);
3690 for (--c;c>dn->bv_val && *c != ',';c--);
3694 cdn.bv_len = dn->bv_len - (cdn.bv_val - dn->bv_val);
3696 root = root->ce_kids;
3698 for (;root;root=root->ce_sibs) {
3699 if ( dn_match( &root->ce_entry->e_nname, &cdn )) {
3700 if ( cdn.bv_val == dn->bv_val ) {
3710 typedef struct setup_cookie {
3720 config_ldif_resp( Operation *op, SlapReply *rs )
3722 if ( rs->sr_type == REP_SEARCH ) {
3723 setup_cookie *sc = op->o_callback->sc_private;
3726 sc->cfb->cb_got_ldif = 1;
3727 /* Does the frontend exist? */
3728 if ( !sc->got_frontend ) {
3729 if ( !strncmp( rs->sr_entry->e_nname.bv_val,
3730 "olcDatabase", STRLENOF( "olcDatabase" )))
3732 if ( strncmp( rs->sr_entry->e_nname.bv_val +
3733 STRLENOF( "olcDatabase" ), "={-1}frontend",
3734 STRLENOF( "={-1}frontend" )))
3738 sc->ca->be = frontendDB;
3739 sc->ca->bi = frontendDB->bd_info;
3740 frontendDB->be_cf_ocs = &CFOC_FRONTEND;
3741 rdn.bv_val = sc->ca->log;
3742 rdn.bv_len = snprintf(rdn.bv_val, sizeof( sc->ca->log ),
3743 "%s=" SLAP_X_ORDERED_FMT "%s",
3744 cfAd_database->ad_cname.bv_val, -1,
3745 sc->ca->bi->bi_type);
3747 sc->frontend = config_build_entry( op, rs,
3748 sc->cfb->cb_root, sc->ca, &rdn, &CFOC_DATABASE,
3749 sc->ca->be->be_cf_ocs );
3759 dnParent( &rs->sr_entry->e_nname, &pdn );
3761 /* Does the configDB exist? */
3762 if ( sc->got_frontend && !sc->got_config &&
3763 !strncmp( rs->sr_entry->e_nname.bv_val,
3764 "olcDatabase", STRLENOF( "olcDatabase" )) &&
3765 dn_match( &config_rdn, &pdn ) )
3767 if ( strncmp( rs->sr_entry->e_nname.bv_val +
3768 STRLENOF( "olcDatabase" ), "={0}config",
3769 STRLENOF( "={0}config" )))
3773 sc->ca->be = LDAP_STAILQ_FIRST( &backendDB );
3774 sc->ca->bi = sc->ca->be->bd_info;
3775 rdn.bv_val = sc->ca->log;
3776 rdn.bv_len = snprintf(rdn.bv_val, sizeof( sc->ca->log ),
3777 "%s=" SLAP_X_ORDERED_FMT "%s",
3778 cfAd_database->ad_cname.bv_val, 0,
3779 sc->ca->bi->bi_type);
3781 sc->config = config_build_entry( op, rs, sc->cfb->cb_root,
3782 sc->ca, &rdn, &CFOC_DATABASE, sc->ca->be->be_cf_ocs );
3789 rs->sr_err = config_add_internal( sc->cfb, rs->sr_entry, sc->ca, NULL, NULL, NULL );
3790 if ( rs->sr_err != LDAP_SUCCESS ) {
3791 Debug( LDAP_DEBUG_ANY, "config error processing %s: %s\n",
3792 rs->sr_entry->e_name.bv_val, sc->ca->cr_msg, 0 );
3798 /* Configure and read the underlying back-ldif store */
3800 config_setup_ldif( BackendDB *be, const char *dir, int readit ) {
3801 CfBackInfo *cfb = be->be_private;
3807 slap_callback cb = { NULL, config_ldif_resp, NULL, NULL };
3808 Connection conn = {0};
3809 OperationBuffer opbuf;
3811 SlapReply rs = {REP_RESULT};
3812 Filter filter = { LDAP_FILTER_PRESENT };
3813 struct berval filterstr = BER_BVC("(objectclass=*)");
3816 /* Is the config directory available? */
3817 if ( stat( dir, &st ) < 0 ) {
3818 /* No, so don't bother using the backing store.
3819 * All changes will be in-memory only.
3824 cfb->cb_db.bd_info = backend_info( "ldif" );
3825 if ( !cfb->cb_db.bd_info )
3826 return 0; /* FIXME: eventually this will be a fatal error */
3828 if ( backend_db_init( "ldif", &cfb->cb_db, -1, NULL ) == NULL )
3831 cfb->cb_db.be_suffix = be->be_suffix;
3832 cfb->cb_db.be_nsuffix = be->be_nsuffix;
3834 /* The suffix is always "cn=config". The underlying DB's rootdn
3835 * is always the same as the suffix.
3837 cfb->cb_db.be_rootdn = be->be_suffix[0];
3838 cfb->cb_db.be_rootndn = be->be_nsuffix[0];
3840 ber_str2bv( dir, 0, 1, &cfdir );
3845 argv[0] = "directory";
3846 argv[1] = (char *)dir;
3851 c.table = Cft_Database;
3853 ct = config_find_keyword( c.be->be_cf_ocs->co_table, &c );
3857 if ( config_add_vals( ct, &c ))
3860 if ( backend_startup_one( &cfb->cb_db, &c.reply ))
3864 void *thrctx = ldap_pvt_thread_pool_context();
3867 connection_fake_init( &conn, &opbuf, thrctx );
3870 filter.f_desc = slap_schema.si_ad_objectClass;
3872 op->o_tag = LDAP_REQ_SEARCH;
3874 op->ors_filter = &filter;
3875 op->ors_filterstr = filterstr;
3876 op->ors_scope = LDAP_SCOPE_SUBTREE;
3878 op->o_dn = c.be->be_rootdn;
3879 op->o_ndn = c.be->be_rootndn;
3881 op->o_req_dn = be->be_suffix[0];
3882 op->o_req_ndn = be->be_nsuffix[0];
3884 op->ors_tlimit = SLAP_NO_LIMIT;
3885 op->ors_slimit = SLAP_NO_LIMIT;
3887 op->ors_attrs = slap_anlist_all_attributes;
3888 op->ors_attrsonly = 0;
3890 op->o_callback = &cb;
3893 cb.sc_private = ≻
3894 sc.got_frontend = 0;
3899 op->o_bd = &cfb->cb_db;
3901 /* Allow unknown attrs in DNs */
3902 prev_DN_strict = slap_DN_strict;
3905 rc = op->o_bd->be_search( op, &rs );
3907 /* Restore normal DN validation */
3908 slap_DN_strict = prev_DN_strict;
3910 op->o_tag = LDAP_REQ_ADD;
3911 if ( rc == LDAP_SUCCESS && sc.frontend ) {
3912 op->ora_e = sc.frontend;
3913 rc = op->o_bd->be_add( op, &rs );
3915 if ( rc == LDAP_SUCCESS && sc.config ) {
3916 op->ora_e = sc.config;
3917 rc = op->o_bd->be_add( op, &rs );
3919 ldap_pvt_thread_pool_context_reset( thrctx );
3922 /* ITS#4194 - only use if it's present, or we're converting. */
3923 if ( !readit || rc == LDAP_SUCCESS )
3924 cfb->cb_use_ldif = 1;
3930 CfOc_cmp( const void *c1, const void *c2 ) {
3931 const ConfigOCs *co1 = c1;
3932 const ConfigOCs *co2 = c2;
3934 return ber_bvcmp( co1->co_name, co2->co_name );
3938 config_register_schema(ConfigTable *ct, ConfigOCs *ocs) {
3941 i = init_config_attrs( ct );
3944 /* set up the objectclasses */
3945 i = init_config_ocs( ocs );
3948 for (i=0; ocs[i].co_def; i++) {
3949 if ( ocs[i].co_oc ) {
3950 ocs[i].co_name = &ocs[i].co_oc->soc_cname;
3951 if ( !ocs[i].co_table )
3952 ocs[i].co_table = ct;
3953 avl_insert( &CfOcTree, &ocs[i], CfOc_cmp, avl_dup_error );
3960 read_config(const char *fname, const char *dir) {
3963 const char *cfdir, *cfname;
3966 /* Setup the config backend */
3967 be = backend_db_init( "config", NULL, 0, NULL );
3971 cfb = be->be_private;
3972 be->be_dfltaccess = ACL_NONE;
3974 /* If no .conf, or a dir was specified, setup the dir */
3975 if ( !fname || dir ) {
3977 /* If explicitly given, check for existence */
3980 if ( stat( dir, &st ) < 0 ) {
3981 Debug( LDAP_DEBUG_ANY,
3982 "invalid config directory %s, error %d\n",
3988 cfdir = SLAPD_DEFAULT_CONFIGDIR;
3990 /* if fname is defaulted, try reading .d */
3991 rc = config_setup_ldif( be, cfdir, !fname );
3994 /* It may be OK if the base object doesn't exist yet. */
3995 if ( rc != LDAP_NO_SUCH_OBJECT )
3997 /* ITS#4194: But if dir was specified and no fname,
3998 * then we were supposed to read the dir. Unless we're
3999 * trying to slapadd the dir...
4001 if ( dir && !fname ) {
4002 if ( slapMode & (SLAP_SERVER_MODE|SLAP_TOOL_READMAIN|SLAP_TOOL_READONLY))
4004 /* Assume it's slapadd with a config dir, let it continue */
4006 cfb->cb_got_ldif = 1;
4007 cfb->cb_use_ldif = 1;
4012 /* If we read the config from back-ldif, nothing to do here */
4013 if ( cfb->cb_got_ldif ) {
4022 cfname = SLAPD_DEFAULT_CONFIGFILE;
4024 rc = read_config_file(cfname, 0, NULL, config_back_cf_table);
4027 ber_str2bv( cfname, 0, 1, &cfb->cb_config->c_file );
4030 if ( rc == 0 && BER_BVISNULL( &frontendDB->be_schemadn ) ) {
4031 ber_str2bv( SLAPD_SCHEMA_DN, STRLENOF( SLAPD_SCHEMA_DN ), 1,
4032 &frontendDB->be_schemadn );
4033 rc = dnNormalize( 0, NULL, NULL, &frontendDB->be_schemadn, &frontendDB->be_schemandn, NULL );
4034 if ( rc != LDAP_SUCCESS ) {
4035 Debug(LDAP_DEBUG_ANY, "read_config: "
4036 "unable to normalize default schema DN \"%s\"\n",
4037 frontendDB->be_schemadn.bv_val, 0, 0 );
4038 /* must not happen */
4046 config_back_bind( Operation *op, SlapReply *rs )
4048 if ( be_isroot_pw( op ) ) {
4049 ber_dupbv( &op->orb_edn, be_root_dn( op->o_bd ));
4050 /* frontend sends result */
4051 return LDAP_SUCCESS;
4054 rs->sr_err = LDAP_INVALID_CREDENTIALS;
4055 send_ldap_result( op, rs );
4061 config_send( Operation *op, SlapReply *rs, CfEntryInfo *ce, int depth )
4065 if ( test_filter( op, ce->ce_entry, op->ors_filter ) == LDAP_COMPARE_TRUE )
4067 rs->sr_attrs = op->ors_attrs;
4068 rs->sr_entry = ce->ce_entry;
4070 rc = send_search_entry( op, rs );
4071 if ( rc != LDAP_SUCCESS ) {
4075 if ( op->ors_scope == LDAP_SCOPE_SUBTREE ) {
4076 if ( ce->ce_kids ) {
4077 rc = config_send( op, rs, ce->ce_kids, 1 );
4078 if ( rc ) return rc;
4081 for (ce=ce->ce_sibs; ce; ce=ce->ce_sibs) {
4082 rc = config_send( op, rs, ce, 0 );
4090 static ConfigTable *
4091 config_find_table( ConfigOCs **colst, int nocs, AttributeDescription *ad,
4096 for (j=0; j<nocs; j++) {
4097 for (i=0; colst[j]->co_table[i].name; i++)
4098 if ( colst[j]->co_table[i].ad == ad ) {
4099 ca->table = colst[j]->co_type;
4100 return &colst[j]->co_table[i];
4106 /* Sort the attributes of the entry according to the order defined
4107 * in the objectclass, with required attributes occurring before
4108 * allowed attributes. For any attributes with sequencing dependencies
4109 * (e.g., rootDN must be defined after suffix) the objectclass must
4110 * list the attributes in the desired sequence.
4113 sort_attrs( Entry *e, ConfigOCs **colst, int nocs )
4115 Attribute *a, *head = NULL, *tail = NULL, **prev;
4118 for (i=0; i<nocs; i++) {
4119 if ( colst[i]->co_oc->soc_required ) {
4120 AttributeType **at = colst[i]->co_oc->soc_required;
4121 for (j=0; at[j]; j++) {
4122 for (a=e->e_attrs, prev=&e->e_attrs; a;
4123 prev = &(*prev)->a_next, a=a->a_next) {
4124 if ( a->a_desc == at[j]->sat_ad ) {
4138 if ( colst[i]->co_oc->soc_allowed ) {
4139 AttributeType **at = colst[i]->co_oc->soc_allowed;
4140 for (j=0; at[j]; j++) {
4141 for (a=e->e_attrs, prev=&e->e_attrs; a;
4142 prev = &(*prev)->a_next, a=a->a_next) {
4143 if ( a->a_desc == at[j]->sat_ad ) {
4159 tail->a_next = e->e_attrs;
4165 check_vals( ConfigTable *ct, ConfigArgs *ca, void *ptr, int isAttr )
4167 Attribute *a = NULL;
4168 AttributeDescription *ad;
4178 Modifications *ml = ptr;
4180 vals = ml->sml_values;
4183 if ( a && ( ad->ad_type->sat_flags & SLAP_AT_ORDERED_VAL )) {
4184 rc = ordered_value_sort( a, 1 );
4186 snprintf(ca->cr_msg, sizeof( ca->cr_msg ), "ordered_value_sort failed on attr %s\n",
4187 ad->ad_cname.bv_val );
4191 for ( i=0; vals[i].bv_val; i++ ) {
4192 ca->line = vals[i].bv_val;
4193 if (( ad->ad_type->sat_flags & SLAP_AT_ORDERED_VAL ) &&
4194 ca->line[0] == '{' ) {
4195 char *idx = strchr( ca->line, '}' );
4196 if ( idx ) ca->line = idx+1;
4198 rc = config_parse_vals( ct, ca, i );
4207 config_rename_attr( SlapReply *rs, Entry *e, struct berval *rdn,
4210 struct berval rtype, rval;
4212 AttributeDescription *ad = NULL;
4214 dnRdn( &e->e_name, rdn );
4215 rval.bv_val = strchr(rdn->bv_val, '=' ) + 1;
4216 rval.bv_len = rdn->bv_len - (rval.bv_val - rdn->bv_val);
4217 rtype.bv_val = rdn->bv_val;
4218 rtype.bv_len = rval.bv_val - rtype.bv_val - 1;
4221 slap_bv2ad( &rtype, &ad, &rs->sr_text );
4222 a = attr_find( e->e_attrs, ad );
4223 if (!a ) return LDAP_NAMING_VIOLATION;
4230 config_rename_kids( CfEntryInfo *ce )
4233 struct berval rdn, nrdn;
4235 for (ce2 = ce->ce_kids; ce2; ce2 = ce2->ce_sibs) {
4236 struct berval newdn, newndn;
4237 dnRdn ( &ce2->ce_entry->e_name, &rdn );
4238 dnRdn ( &ce2->ce_entry->e_nname, &nrdn );
4239 build_new_dn( &newdn, &ce->ce_entry->e_name, &rdn, NULL );
4240 build_new_dn( &newndn, &ce->ce_entry->e_nname, &nrdn, NULL );
4241 free( ce2->ce_entry->e_name.bv_val );
4242 free( ce2->ce_entry->e_nname.bv_val );
4243 ce2->ce_entry->e_name = newdn;
4244 ce2->ce_entry->e_nname = newndn;
4245 config_rename_kids( ce2 );
4250 config_rename_one( Operation *op, SlapReply *rs, Entry *e,
4251 CfEntryInfo *parent, Attribute *a, struct berval *newrdn,
4252 struct berval *nnewrdn, int use_ldif )
4256 struct berval odn, ondn;
4260 build_new_dn( &e->e_name, &parent->ce_entry->e_name, newrdn, NULL );
4261 build_new_dn( &e->e_nname, &parent->ce_entry->e_nname, nnewrdn, NULL );
4264 free( a->a_vals[0].bv_val );
4265 ptr1 = strchr( newrdn->bv_val, '=' ) + 1;
4266 a->a_vals[0].bv_len = newrdn->bv_len - (ptr1 - newrdn->bv_val);
4267 a->a_vals[0].bv_val = ch_malloc( a->a_vals[0].bv_len + 1 );
4268 strcpy( a->a_vals[0].bv_val, ptr1 );
4270 if ( a->a_nvals != a->a_vals ) {
4271 free( a->a_nvals[0].bv_val );
4272 ptr1 = strchr( nnewrdn->bv_val, '=' ) + 1;
4273 a->a_nvals[0].bv_len = nnewrdn->bv_len - (ptr1 - nnewrdn->bv_val);
4274 a->a_nvals[0].bv_val = ch_malloc( a->a_nvals[0].bv_len + 1 );
4275 strcpy( a->a_nvals[0].bv_val, ptr1 );
4278 CfBackInfo *cfb = (CfBackInfo *)op->o_bd->be_private;
4279 BackendDB *be = op->o_bd;
4280 slap_callback sc = { NULL, slap_null_cb, NULL, NULL }, *scp;
4281 struct berval dn, ndn, xdn, xndn;
4283 op->o_bd = &cfb->cb_db;
4285 /* Save current rootdn; use the underlying DB's rootdn */
4289 xndn = op->o_req_ndn;
4290 op->o_dn = op->o_bd->be_rootdn;
4291 op->o_ndn = op->o_bd->be_rootndn;
4293 op->o_req_ndn = ondn;
4295 scp = op->o_callback;
4296 op->o_callback = ≻
4297 op->orr_newrdn = *newrdn;
4298 op->orr_nnewrdn = *nnewrdn;
4299 op->orr_newSup = NULL;
4300 op->orr_nnewSup = NULL;
4301 op->orr_deleteoldrdn = 1;
4302 op->orr_modlist = NULL;
4303 slap_modrdn2mods( op, rs );
4304 slap_mods_opattrs( op, &op->orr_modlist, 1 );
4305 rc = op->o_bd->be_modrdn( op, rs );
4306 slap_mods_free( op->orr_modlist, 1 );
4309 op->o_callback = scp;
4313 op->o_req_ndn = xndn;
4316 free( ondn.bv_val );
4318 config_rename_kids( e->e_private );
4323 config_renumber_one( Operation *op, SlapReply *rs, CfEntryInfo *parent,
4324 Entry *e, int idx, int tailindex, int use_ldif )
4326 struct berval ival, newrdn, nnewrdn;
4329 char ibuf[32], *ptr1, *ptr2 = NULL;
4332 rc = config_rename_attr( rs, e, &rdn, &a );
4333 if ( rc ) return rc;
4336 ival.bv_len = snprintf( ibuf, sizeof( ibuf ), SLAP_X_ORDERED_FMT, idx );
4337 if ( ival.bv_len >= sizeof( ibuf ) ) {
4338 return LDAP_NAMING_VIOLATION;
4341 newrdn.bv_len = rdn.bv_len + ival.bv_len;
4342 newrdn.bv_val = ch_malloc( newrdn.bv_len+1 );
4345 ptr1 = lutil_strncopy( newrdn.bv_val, rdn.bv_val, rdn.bv_len );
4346 ptr1 = lutil_strcopy( ptr1, ival.bv_val );
4349 ptr2 = ber_bvchr( &rdn, '}' );
4353 ptr2 = rdn.bv_val + a->a_desc->ad_cname.bv_len + 1;
4355 xlen = rdn.bv_len - (ptr2 - rdn.bv_val);
4356 ptr1 = lutil_strncopy( newrdn.bv_val, a->a_desc->ad_cname.bv_val,
4357 a->a_desc->ad_cname.bv_len );
4359 ptr1 = lutil_strcopy( ptr1, ival.bv_val );
4360 ptr1 = lutil_strncopy( ptr1, ptr2, xlen );
4364 /* Do the equivalent of ModRDN */
4365 /* Replace DN / NDN */
4366 newrdn.bv_len = ptr1 - newrdn.bv_val;
4367 rdnNormalize( 0, NULL, NULL, &newrdn, &nnewrdn, NULL );
4368 rc = config_rename_one( op, rs, e, parent, a, &newrdn, &nnewrdn, use_ldif );
4370 free( nnewrdn.bv_val );
4371 free( newrdn.bv_val );
4376 check_name_index( CfEntryInfo *parent, ConfigType ce_type, Entry *e,
4377 SlapReply *rs, int *renum, int *ibase )
4380 int index = -1, gotindex = 0, nsibs, rc = 0;
4381 int renumber = 0, tailindex = 0, isfrontend = 0, isconfig = 0;
4382 char *ptr1, *ptr2 = NULL;
4385 if ( renum ) *renum = 0;
4387 /* These entries don't get indexed/renumbered */
4388 if ( ce_type == Cft_Global ) return 0;
4389 if ( ce_type == Cft_Schema && parent->ce_type == Cft_Global ) return 0;
4391 if ( ce_type == Cft_Module )
4394 /* See if the rdn has an index already */
4395 dnRdn( &e->e_name, &rdn );
4396 if ( ce_type == Cft_Database ) {
4397 if ( !strncmp( rdn.bv_val + rdn.bv_len - STRLENOF("frontend"),
4398 "frontend", STRLENOF("frontend") ))
4400 else if ( !strncmp( rdn.bv_val + rdn.bv_len - STRLENOF("config"),
4401 "config", STRLENOF("config") ))
4404 ptr1 = ber_bvchr( &e->e_name, '{' );
4405 if ( ptr1 && ptr1 < &e->e_name.bv_val[ rdn.bv_len ] ) {
4407 ptr2 = strchr( ptr1, '}' );
4408 if ( !ptr2 || ptr2 > &e->e_name.bv_val[ rdn.bv_len ] )
4409 return LDAP_NAMING_VIOLATION;
4410 if ( ptr2-ptr1 == 1)
4411 return LDAP_NAMING_VIOLATION;
4413 index = strtol( ptr1 + 1, &next, 10 );
4414 if ( next == ptr1 + 1 || next[ 0 ] != '}' ) {
4415 return LDAP_NAMING_VIOLATION;
4418 /* Special case, we allow -1 for the frontendDB */
4419 if ( index != -1 || !isfrontend )
4420 return LDAP_NAMING_VIOLATION;
4422 if ( isconfig && index != 0 ){
4423 return LDAP_NAMING_VIOLATION;
4427 /* count related kids */
4428 for (nsibs=0, ce=parent->ce_kids; ce; ce=ce->ce_sibs) {
4429 if ( ce->ce_type == ce_type ) nsibs++;
4432 /* account for -1 frontend */
4433 if ( ce_type == Cft_Database )
4436 if ( index != nsibs ) {
4438 if ( index < nsibs ) {
4439 if ( tailindex ) return LDAP_NAMING_VIOLATION;
4440 /* Siblings need to be renumbered */
4441 if ( index != -1 || !isfrontend )
4445 /* config DB is always "0" */
4446 if ( isconfig && index == -1 ) {
4449 if (( !isfrontend && index == -1 ) || ( index > nsibs ) ){
4453 /* just make index = nsibs */
4455 rc = config_renumber_one( NULL, rs, parent, e, index, tailindex, 0 );
4458 if ( ibase ) *ibase = index;
4459 if ( renum ) *renum = renumber;
4464 count_oc( ObjectClass *oc, ConfigOCs ***copp, int *nocs )
4469 co.co_name = &oc->soc_cname;
4470 cop = avl_find( CfOcTree, &co, CfOc_cmp );
4474 /* check for duplicates */
4475 for ( i = 0; i < *nocs; i++ ) {
4476 if ( *copp && (*copp)[i] == cop ) {
4482 ConfigOCs **tmp = ch_realloc( *copp, (*nocs + 1)*sizeof( ConfigOCs * ) );
4483 if ( tmp == NULL ) {
4487 (*copp)[*nocs] = cop;
4492 for ( sups = oc->soc_sups; sups && *sups; sups++ ) {
4493 if ( count_oc( *sups, copp, nocs ) ) {
4502 count_ocs( Attribute *oc_at, int *nocs )
4505 ConfigOCs **colst = NULL;
4509 for ( i = 0; !BER_BVISNULL( &oc_at->a_nvals[i] ); i++ )
4513 ObjectClass *oc = oc_bvfind( &oc_at->a_nvals[i] );
4515 assert( oc != NULL );
4516 if ( count_oc( oc, &colst, nocs ) ) {
4526 cfAddInclude( CfEntryInfo *p, Entry *e, ConfigArgs *ca )
4528 /* Leftover from RE23. Never parse this entry */
4529 return LDAP_COMPARE_TRUE;
4533 cfAddSchema( CfEntryInfo *p, Entry *e, ConfigArgs *ca )
4537 /* This entry is hardcoded, don't re-parse it */
4538 if ( p->ce_type == Cft_Global ) {
4539 cfn = p->ce_private;
4540 ca->ca_private = cfn;
4541 return LDAP_COMPARE_TRUE;
4543 if ( p->ce_type != Cft_Schema )
4544 return LDAP_CONSTRAINT_VIOLATION;
4546 cfn = ch_calloc( 1, sizeof(ConfigFile) );
4547 ca->ca_private = cfn;
4548 cfo = p->ce_private;
4549 cfn->c_sibs = cfo->c_kids;
4551 return LDAP_SUCCESS;
4555 cfAddDatabase( CfEntryInfo *p, Entry *e, struct config_args_s *ca )
4557 if ( p->ce_type != Cft_Global ) {
4558 return LDAP_CONSTRAINT_VIOLATION;
4560 /* config must be {0}, nothing else allowed */
4561 if ( !strncmp( e->e_nname.bv_val, "olcDatabase={0}", STRLENOF("olcDatabase={0}")) &&
4562 strncmp( e->e_nname.bv_val + STRLENOF("olcDatabase={0}"), "config,", STRLENOF("config,") )) {
4563 return LDAP_CONSTRAINT_VIOLATION;
4565 ca->be = frontendDB; /* just to get past check_vals */
4566 return LDAP_SUCCESS;
4570 cfAddBackend( CfEntryInfo *p, Entry *e, struct config_args_s *ca )
4572 if ( p->ce_type != Cft_Global ) {
4573 return LDAP_CONSTRAINT_VIOLATION;
4575 return LDAP_SUCCESS;
4579 cfAddModule( CfEntryInfo *p, Entry *e, struct config_args_s *ca )
4581 if ( p->ce_type != Cft_Global ) {
4582 return LDAP_CONSTRAINT_VIOLATION;
4584 return LDAP_SUCCESS;
4588 cfAddOverlay( CfEntryInfo *p, Entry *e, struct config_args_s *ca )
4590 if ( p->ce_type != Cft_Database ) {
4591 return LDAP_CONSTRAINT_VIOLATION;
4594 return LDAP_SUCCESS;
4598 schema_destroy_one( ConfigArgs *ca, ConfigOCs **colst, int nocs,
4603 AttributeDescription *ad;
4609 if ( cfn->c_cr_head ) {
4610 struct berval bv = BER_BVC("olcDitContentRules");
4612 slap_bv2ad( &bv, &ad, &text );
4613 ct = config_find_table( colst, nocs, ad, ca );
4614 config_del_vals( ct, ca );
4616 if ( cfn->c_oc_head ) {
4617 struct berval bv = BER_BVC("olcObjectClasses");
4619 slap_bv2ad( &bv, &ad, &text );
4620 ct = config_find_table( colst, nocs, ad, ca );
4621 config_del_vals( ct, ca );
4623 if ( cfn->c_at_head ) {
4624 struct berval bv = BER_BVC("olcAttributeTypes");
4626 slap_bv2ad( &bv, &ad, &text );
4627 ct = config_find_table( colst, nocs, ad, ca );
4628 config_del_vals( ct, ca );
4630 if ( cfn->c_syn_head ) {
4631 struct berval bv = BER_BVC("olcLdapSyntaxes");
4633 slap_bv2ad( &bv, &ad, &text );
4634 ct = config_find_table( colst, nocs, ad, ca );
4635 config_del_vals( ct, ca );
4637 if ( cfn->c_om_head ) {
4638 struct berval bv = BER_BVC("olcObjectIdentifier");
4640 slap_bv2ad( &bv, &ad, &text );
4641 ct = config_find_table( colst, nocs, ad, ca );
4642 config_del_vals( ct, ca );
4644 cfo = p->ce_private;
4645 cfo->c_kids = cfn->c_sibs;
4650 config_add_oc( ConfigOCs **cop, CfEntryInfo *last, Entry *e, ConfigArgs *ca )
4652 int rc = LDAP_CONSTRAINT_VIOLATION;
4655 if ( (*cop)->co_ldadd ) {
4656 rc = (*cop)->co_ldadd( last, e, ca );
4657 if ( rc != LDAP_CONSTRAINT_VIOLATION ) {
4662 for ( ocp = (*cop)->co_oc->soc_sups; ocp && *ocp; ocp++ ) {
4663 ConfigOCs co = { 0 };
4665 co.co_name = &(*ocp)->soc_cname;
4666 *cop = avl_find( CfOcTree, &co, CfOc_cmp );
4667 if ( *cop == NULL ) {
4671 rc = config_add_oc( cop, last, e, ca );
4672 if ( rc != LDAP_CONSTRAINT_VIOLATION ) {
4680 /* Parse an LDAP entry into config directives */
4682 config_add_internal( CfBackInfo *cfb, Entry *e, ConfigArgs *ca, SlapReply *rs,
4683 int *renum, Operation *op )
4685 CfEntryInfo *ce, *last = NULL;
4686 ConfigOCs co, *coptr, **colst;
4687 Attribute *a, *oc_at, *soc_at;
4688 int i, ibase = -1, nocs, rc = 0;
4691 char *ptr, *log_prefix = op ? op->o_log_prefix : "";
4693 memset( ca, 0, sizeof(ConfigArgs));
4695 /* Make sure parent exists and entry does not. But allow
4696 * Databases and Overlays to be inserted. Don't do any
4697 * auto-renumbering if manageDSAit control is present.
4699 ce = config_find_base( cfb->cb_root, &e->e_nname, &last );
4701 if ( ( op && op->o_managedsait ) ||
4702 ( ce->ce_type != Cft_Database && ce->ce_type != Cft_Overlay &&
4703 ce->ce_type != Cft_Module ) )
4705 Debug( LDAP_DEBUG_TRACE, "%s: config_add_internal: "
4706 "DN=\"%s\" already exists\n",
4707 log_prefix, e->e_name.bv_val, 0 );
4708 /* global schema ignores all writes */
4709 if ( ce->ce_type == Cft_Schema && ce->ce_parent->ce_type == Cft_Global )
4710 return LDAP_COMPARE_TRUE;
4711 return LDAP_ALREADY_EXISTS;
4715 dnParent( &e->e_nname, &pdn );
4717 /* If last is NULL, the new entry is the root/suffix entry,
4718 * otherwise last should be the parent.
4720 if ( last && !dn_match( &last->ce_entry->e_nname, &pdn ) ) {
4722 rs->sr_matched = last->ce_entry->e_name.bv_val;
4724 Debug( LDAP_DEBUG_TRACE, "%s: config_add_internal: "
4725 "DN=\"%s\" not child of DN=\"%s\"\n",
4726 log_prefix, e->e_name.bv_val,
4727 last->ce_entry->e_name.bv_val );
4728 return LDAP_NO_SUCH_OBJECT;
4732 /* No parent, must be root. This will never happen... */
4733 if ( !last && !be_isroot( op ) && !be_shadow_update( op ) ) {
4734 return LDAP_NO_SUCH_OBJECT;
4737 if ( last && !access_allowed( op, last->ce_entry,
4738 slap_schema.si_ad_children, NULL, ACL_WADD, NULL ) )
4740 Debug( LDAP_DEBUG_TRACE, "%s: config_add_internal: "
4741 "DN=\"%s\" no write access to \"children\" of parent\n",
4742 log_prefix, e->e_name.bv_val, 0 );
4743 return LDAP_INSUFFICIENT_ACCESS;
4747 oc_at = attr_find( e->e_attrs, slap_schema.si_ad_objectClass );
4749 Debug( LDAP_DEBUG_TRACE, "%s: config_add_internal: "
4750 "DN=\"%s\" no objectClass\n",
4751 log_prefix, e->e_name.bv_val, 0 );
4752 return LDAP_OBJECT_CLASS_VIOLATION;
4755 soc_at = attr_find( e->e_attrs, slap_schema.si_ad_structuralObjectClass );
4757 ObjectClass *soc = NULL;
4758 char textbuf[ SLAP_TEXT_BUFLEN ];
4759 const char *text = textbuf;
4761 /* FIXME: check result */
4762 rc = structural_class( oc_at->a_nvals, &soc, NULL,
4763 &text, textbuf, sizeof(textbuf), NULL );
4764 if ( rc != LDAP_SUCCESS ) {
4765 Debug( LDAP_DEBUG_TRACE, "%s: config_add_internal: "
4766 "DN=\"%s\" no structural objectClass (%s)\n",
4767 log_prefix, e->e_name.bv_val, text );
4770 attr_merge_one( e, slap_schema.si_ad_structuralObjectClass, &soc->soc_cname, NULL );
4771 soc_at = attr_find( e->e_attrs, slap_schema.si_ad_structuralObjectClass );
4772 if ( soc_at == NULL ) {
4773 Debug( LDAP_DEBUG_TRACE, "%s: config_add_internal: "
4774 "DN=\"%s\" no structural objectClass; "
4775 "unable to merge computed class %s\n",
4776 log_prefix, e->e_name.bv_val,
4777 soc->soc_cname.bv_val );
4778 return LDAP_OBJECT_CLASS_VIOLATION;
4781 Debug( LDAP_DEBUG_TRACE, "%s: config_add_internal: "
4782 "DN=\"%s\" no structural objectClass; "
4783 "computed objectClass %s merged\n",
4784 log_prefix, e->e_name.bv_val,
4785 soc->soc_cname.bv_val );
4788 /* Fake the coordinates based on whether we're part of an
4789 * LDAP Add or if reading the config dir
4792 ca->fname = "slapd";
4795 ca->fname = cfdir.bv_val;
4800 co.co_name = &soc_at->a_nvals[0];
4801 coptr = avl_find( CfOcTree, &co, CfOc_cmp );
4802 if ( coptr == NULL ) {
4803 Debug( LDAP_DEBUG_TRACE, "%s: config_add_internal: "
4804 "DN=\"%s\" no structural objectClass in configuration table\n",
4805 log_prefix, e->e_name.bv_val, 0 );
4806 return LDAP_OBJECT_CLASS_VIOLATION;
4809 /* Only the root can be Cft_Global, everything else must
4810 * have a parent. Only limited nesting arrangements are allowed.
4812 rc = LDAP_CONSTRAINT_VIOLATION;
4813 if ( coptr->co_type == Cft_Global && !last ) {
4814 cfn = cfb->cb_config;
4815 ca->ca_private = cfn;
4816 ca->be = frontendDB; /* just to get past check_vals */
4820 colst = count_ocs( oc_at, &nocs );
4822 /* Check whether the Add is allowed by its parent, and do
4823 * any necessary arg setup
4826 rc = config_add_oc( &coptr, last, e, ca );
4827 if ( rc == LDAP_CONSTRAINT_VIOLATION ) {
4828 for ( i = 0; i<nocs; i++ ) {
4829 /* Already checked these */
4830 if ( colst[i]->co_oc->soc_kind == LDAP_SCHEMA_STRUCTURAL )
4832 if ( colst[i]->co_ldadd &&
4833 ( rc = colst[i]->co_ldadd( last, e, ca ))
4834 != LDAP_CONSTRAINT_VIOLATION ) {
4840 if ( rc == LDAP_CONSTRAINT_VIOLATION ) {
4841 Debug( LDAP_DEBUG_TRACE, "%s: config_add_internal: "
4842 "DN=\"%s\" no structural objectClass add function\n",
4843 log_prefix, e->e_name.bv_val, 0 );
4844 return LDAP_OBJECT_CLASS_VIOLATION;
4848 /* Add the entry but don't parse it, we already have its contents */
4849 if ( rc == LDAP_COMPARE_TRUE ) {
4854 if ( rc != LDAP_SUCCESS )
4857 /* Parse all the values and check for simple syntax errors before
4858 * performing any set actions.
4860 * If doing an LDAPadd, check for indexed names and any necessary
4861 * renaming/renumbering. Entries that don't need indexed names are
4862 * ignored. Entries that need an indexed name and arrive without one
4863 * are assigned to the end. Entries that arrive with an index may
4864 * cause the following entries to be renumbered/bumped down.
4866 * Note that "pseudo-indexed" entries (cn=Include{xx}, cn=Module{xx})
4867 * don't allow Adding an entry with an index that's already in use.
4868 * This is flagged as an error (LDAP_ALREADY_EXISTS) up above.
4870 * These entries can have auto-assigned indexes (appended to the end)
4871 * but only the other types support auto-renumbering of siblings.
4874 rc = check_name_index( last, coptr->co_type, e, rs, renum,
4879 if ( renum && *renum && coptr->co_type != Cft_Database &&
4880 coptr->co_type != Cft_Overlay )
4882 snprintf( ca->cr_msg, sizeof( ca->cr_msg ),
4883 "operation requires sibling renumbering" );
4884 rc = LDAP_UNWILLING_TO_PERFORM;
4889 init_config_argv( ca );
4891 /* Make sure we process attrs in the required order */
4892 sort_attrs( e, colst, nocs );
4894 for ( a = e->e_attrs; a; a = a->a_next ) {
4895 if ( a == oc_at ) continue;
4896 ct = config_find_table( colst, nocs, a->a_desc, ca );
4897 if ( !ct ) continue; /* user data? */
4898 rc = check_vals( ct, ca, a, 1 );
4899 if ( rc ) goto done_noop;
4902 /* Basic syntax checks are OK. Do the actual settings. */
4903 for ( a=e->e_attrs; a; a=a->a_next ) {
4904 if ( a == oc_at ) continue;
4905 ct = config_find_table( colst, nocs, a->a_desc, ca );
4906 if ( !ct ) continue; /* user data? */
4907 for (i=0; a->a_vals[i].bv_val; i++) {
4910 ca->line = a->a_vals[i].bv_val;
4911 if ( a->a_desc->ad_type->sat_flags & SLAP_AT_ORDERED ) {
4912 ptr = strchr( ca->line, '}' );
4914 iptr = strchr( ca->line, '{' );
4918 if ( a->a_desc->ad_type->sat_flags & SLAP_AT_ORDERED_SIB ) {
4920 ca->valx = strtol( iptr+1, NULL, 0 );
4925 rc = config_parse_add( ct, ca, i );
4933 /* Newly added databases and overlays need to be started up */
4934 if ( CONFIG_ONLINE_ADD( ca )) {
4935 if ( colst[0]->co_type == Cft_Database ) {
4936 rc = backend_startup_one( ca->be, &ca->reply );
4938 } else if ( colst[0]->co_type == Cft_Overlay ) {
4939 if ( ca->bi->bi_db_open ) {
4940 BackendInfo *bi_orig = ca->be->bd_info;
4941 ca->be->bd_info = ca->bi;
4942 rc = ca->bi->bi_db_open( ca->be, &ca->reply );
4943 ca->be->bd_info = bi_orig;
4945 } else if ( ca->cleanup ) {
4946 rc = ca->cleanup( ca );
4949 if (ca->cr_msg[0] == '\0')
4950 snprintf( ca->cr_msg, sizeof( ca->cr_msg ), "<%s> failed startup", ca->argv[0] );
4952 Debug(LDAP_DEBUG_ANY, "%s: %s (%s)!\n",
4953 ca->log, ca->cr_msg, ca->argv[1] );
4960 ce = ch_calloc( 1, sizeof(CfEntryInfo) );
4961 ce->ce_parent = last;
4962 ce->ce_entry = entry_dup( e );
4963 ce->ce_entry->e_private = ce;
4964 ce->ce_type = colst[0]->co_type;
4967 ce->ce_private = ca->ca_private;
4968 ca->ca_entry = ce->ce_entry;
4971 } else if ( last->ce_kids ) {
4972 CfEntryInfo *c2, **cprev;
4974 /* Advance to first of this type */
4975 cprev = &last->ce_kids;
4976 for ( c2 = *cprev; c2 && c2->ce_type < ce->ce_type; ) {
4977 cprev = &c2->ce_sibs;
4980 /* Account for the (-1) frontendDB entry */
4981 if ( ce->ce_type == Cft_Database ) {
4982 if ( ca->be == frontendDB )
4984 else if ( ibase != -1 )
4989 for (c2 = *cprev; c2 && c2->ce_type == ce->ce_type;) {
4990 cprev = &c2->ce_sibs;
4996 for ( i=0; i<ibase; i++ ) {
4998 cprev = &c2->ce_sibs;
5001 ce->ce_sibs = *cprev;
5009 if ( (colst[0]->co_type == Cft_Database) && ca->be ) {
5010 if ( ca->be != frontendDB )
5011 backend_destroy_one( ca->be, 1 );
5012 } else if ( (colst[0]->co_type == Cft_Overlay) && ca->bi ) {
5013 overlay_destroy_one( ca->be, (slap_overinst *)ca->bi );
5014 } else if ( colst[0]->co_type == Cft_Schema ) {
5015 schema_destroy_one( ca, colst, nocs, last );
5020 ch_free( ca->argv );
5021 if ( colst ) ch_free( colst );
5025 #define BIGTMP 10000
5027 config_rename_add( Operation *op, SlapReply *rs, CfEntryInfo *ce,
5028 int base, int rebase, int max, int use_ldif )
5030 CfEntryInfo *ce2, *ce3, *cetmp = NULL, *cerem = NULL;
5031 ConfigType etype = ce->ce_type;
5032 int count = 0, rc = 0;
5034 /* Reverse ce list */
5035 for (ce2 = ce->ce_sibs;ce2;ce2 = ce3) {
5036 if (ce2->ce_type != etype) {
5041 ce2->ce_sibs = cetmp;
5044 if ( max && count >= max ) {
5050 /* Move original to a temp name until increments are done */
5052 ce->ce_entry->e_private = NULL;
5053 rc = config_renumber_one( op, rs, ce->ce_parent, ce->ce_entry,
5054 base+BIGTMP, 0, use_ldif );
5055 ce->ce_entry->e_private = ce;
5057 /* start incrementing */
5058 for (ce2=cetmp; ce2; ce2=ce3) {
5060 ce2->ce_sibs = cerem;
5063 rc = config_renumber_one( op, rs, ce2->ce_parent, ce2->ce_entry,
5064 count+base, 0, use_ldif );
5068 rc = config_renumber_one( op, rs, ce->ce_parent, ce->ce_entry,
5069 base, 0, use_ldif );
5074 config_rename_del( Operation *op, SlapReply *rs, CfEntryInfo *ce,
5075 CfEntryInfo *ce2, int old, int use_ldif )
5079 /* Renumber original to a temp value */
5080 ce->ce_entry->e_private = NULL;
5081 config_renumber_one( op, rs, ce->ce_parent, ce->ce_entry,
5082 old+BIGTMP, 0, use_ldif );
5083 ce->ce_entry->e_private = ce;
5085 /* start decrementing */
5086 for (; ce2 != ce; ce2=ce2->ce_sibs) {
5087 config_renumber_one( op, rs, ce2->ce_parent, ce2->ce_entry,
5088 count+old, 0, use_ldif );
5091 return config_renumber_one( op, rs, ce->ce_parent, ce->ce_entry,
5092 count+old, 0, use_ldif );
5095 /* Parse an LDAP entry into config directives, then store in underlying
5099 config_back_add( Operation *op, SlapReply *rs )
5105 if ( !access_allowed( op, op->ora_e, slap_schema.si_ad_entry,
5106 NULL, ACL_WADD, NULL )) {
5107 rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
5112 * Check for attribute ACL
5114 if ( !acl_check_modlist( op, op->ora_e, op->orm_modlist )) {
5115 rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
5116 rs->sr_text = "no write access to attribute";
5120 cfb = (CfBackInfo *)op->o_bd->be_private;
5122 /* add opattrs for syncprov */
5124 char textbuf[SLAP_TEXT_BUFLEN];
5125 size_t textlen = sizeof textbuf;
5126 rs->sr_err = entry_schema_check(op, op->ora_e, NULL, 0, 1, NULL,
5127 &rs->sr_text, textbuf, sizeof( textbuf ) );
5128 if ( rs->sr_err != LDAP_SUCCESS )
5130 rs->sr_err = slap_add_opattrs( op, &rs->sr_text, textbuf, textlen, 1 );
5131 if ( rs->sr_err != LDAP_SUCCESS ) {
5132 Debug( LDAP_DEBUG_TRACE,
5133 LDAP_XSTRING(config_back_add) ": entry failed op attrs add: "
5134 "%s (%d)\n", rs->sr_text, rs->sr_err, 0 );
5139 if ( op->o_abandon ) {
5140 rs->sr_err = SLAPD_ABANDON;
5143 ldap_pvt_thread_pool_pause( &connection_pool );
5146 * 1) check for existence of entry
5147 * 2) check for sibling renumbering
5148 * 3) perform internal add
5149 * 4) perform any necessary renumbering
5150 * 5) store entry in underlying database
5152 rs->sr_err = config_add_internal( cfb, op->ora_e, &ca, rs, &renumber, op );
5153 if ( rs->sr_err != LDAP_SUCCESS ) {
5154 rs->sr_text = ca.cr_msg;
5159 CfEntryInfo *ce = ca.ca_entry->e_private;
5160 req_add_s addr = op->oq_add;
5161 op->o_tag = LDAP_REQ_MODRDN;
5162 rs->sr_err = config_rename_add( op, rs, ce, ca.valx, 0, 0, cfb->cb_use_ldif );
5163 op->o_tag = LDAP_REQ_ADD;
5165 if ( rs->sr_err != LDAP_SUCCESS ) {
5170 if ( cfb->cb_use_ldif ) {
5171 BackendDB *be = op->o_bd;
5172 slap_callback sc = { NULL, slap_null_cb, NULL, NULL }, *scp;
5173 struct berval dn, ndn;
5175 op->o_bd = &cfb->cb_db;
5177 /* Save current rootdn; use the underlying DB's rootdn */
5180 op->o_dn = op->o_bd->be_rootdn;
5181 op->o_ndn = op->o_bd->be_rootndn;
5183 scp = op->o_callback;
5184 op->o_callback = ≻
5185 op->o_bd->be_add( op, rs );
5187 op->o_callback = scp;
5193 ldap_pvt_thread_pool_resume( &connection_pool );
5196 { int repl = op->o_dont_replicate;
5197 if ( rs->sr_err == LDAP_COMPARE_TRUE ) {
5198 rs->sr_err = LDAP_SUCCESS;
5199 op->o_dont_replicate = 1;
5201 send_ldap_result( op, rs );
5202 op->o_dont_replicate = repl;
5204 slap_graduate_commit_csn( op );
5208 typedef struct delrec {
5209 struct delrec *next;
5215 config_modify_add( ConfigTable *ct, ConfigArgs *ca, AttributeDescription *ad,
5221 if (ad->ad_type->sat_flags & SLAP_AT_ORDERED &&
5222 ca->line[0] == '{' )
5224 char *ptr = strchr( ca->line + 1, '}' );
5228 ca->valx = strtol( ca->line + 1, &next, 0 );
5229 if ( next == ca->line + 1 || next[ 0 ] != '}' ) {
5235 rc = config_parse_add( ct, ca, i );
5243 config_modify_internal( CfEntryInfo *ce, Operation *op, SlapReply *rs,
5246 int rc = LDAP_UNWILLING_TO_PERFORM;
5248 Entry *e = ce->ce_entry;
5249 Attribute *save_attrs = e->e_attrs, *oc_at, *s, *a;
5254 delrec *dels = NULL, *deltail = NULL;
5256 oc_at = attr_find( e->e_attrs, slap_schema.si_ad_objectClass );
5257 if ( !oc_at ) return LDAP_OBJECT_CLASS_VIOLATION;
5259 colst = count_ocs( oc_at, &nocs );
5261 /* make sure add/del flags are clear; should always be true */
5262 for ( s = save_attrs; s; s = s->a_next ) {
5263 s->a_flags &= ~(SLAP_ATTR_IXADD|SLAP_ATTR_IXDEL);
5266 e->e_attrs = attrs_dup( e->e_attrs );
5268 init_config_argv( ca );
5271 ca->ca_private = ce->ce_private;
5273 ca->fname = "slapd";
5275 strcpy( ca->log, "back-config" );
5277 for (ml = op->orm_modlist; ml; ml=ml->sml_next) {
5278 ct = config_find_table( colst, nocs, ml->sml_desc, ca );
5279 switch (ml->sml_op) {
5280 case LDAP_MOD_DELETE:
5281 case LDAP_MOD_REPLACE: {
5282 BerVarray vals = NULL, nvals = NULL;
5284 if ( ct && ( ct->arg_type & ARG_NO_DELETE )) {
5286 snprintf(ca->cr_msg, sizeof(ca->cr_msg), "cannot delete %s",
5287 ml->sml_desc->ad_cname.bv_val );
5290 if ( ml->sml_op == LDAP_MOD_REPLACE ) {
5291 vals = ml->sml_values;
5292 nvals = ml->sml_nvalues;
5293 ml->sml_values = NULL;
5294 ml->sml_nvalues = NULL;
5296 /* If we're deleting by values, remember the indexes of the
5297 * values we deleted.
5299 if ( ct && ml->sml_values ) {
5301 i = ml->sml_numvals;
5302 d = ch_malloc( sizeof(delrec) + (i - 1)* sizeof(int));
5313 rc = modify_delete_vindex(e, &ml->sml_mod,
5314 get_permissiveModify(op),
5315 &rs->sr_text, ca->cr_msg, sizeof(ca->cr_msg), idx );
5316 if ( ml->sml_op == LDAP_MOD_REPLACE ) {
5317 ml->sml_values = vals;
5318 ml->sml_nvalues = nvals;
5323 /* FALLTHRU: LDAP_MOD_REPLACE && vals */
5326 case SLAP_MOD_SOFTADD: {
5327 int mop = ml->sml_op;
5329 ml->sml_op = LDAP_MOD_ADD;
5331 if ( ct->arg_type & ARG_NO_INSERT ) {
5332 Attribute *a = attr_find( e->e_attrs, ml->sml_desc );
5334 navals = a->a_numvals;
5337 for ( i=0; !BER_BVISNULL( &ml->sml_values[i] ); i++ ) {
5338 if ( ml->sml_values[i].bv_val[0] == '{' &&
5341 char *next, *val = ml->sml_values[i].bv_val + 1;
5344 j = strtol( val, &next, 0 );
5345 if ( next == val || next[ 0 ] != '}' || j < navals ) {
5347 snprintf(ca->cr_msg, sizeof(ca->cr_msg), "cannot insert %s",
5348 ml->sml_desc->ad_cname.bv_val );
5352 rc = check_vals( ct, ca, ml, 0 );
5353 if ( rc ) goto out_noop;
5356 rc = modify_add_values(e, &ml->sml_mod,
5357 get_permissiveModify(op),
5358 &rs->sr_text, ca->cr_msg, sizeof(ca->cr_msg) );
5360 /* If value already exists, show success here
5361 * and ignore this operation down below.
5363 if ( mop == SLAP_MOD_SOFTADD ) {
5364 if ( rc == LDAP_TYPE_OR_VALUE_EXISTS )
5374 case LDAP_MOD_INCREMENT: /* FIXME */
5379 if(rc != LDAP_SUCCESS) break;
5382 if ( rc == LDAP_SUCCESS) {
5383 /* check that the entry still obeys the schema */
5384 rc = entry_schema_check(op, e, NULL, 0, 0, NULL,
5385 &rs->sr_text, ca->cr_msg, sizeof(ca->cr_msg) );
5387 if ( rc ) goto out_noop;
5389 /* Basic syntax checks are OK. Do the actual settings. */
5390 for ( ml = op->orm_modlist; ml; ml = ml->sml_next ) {
5391 ct = config_find_table( colst, nocs, ml->sml_desc, ca );
5392 if ( !ct ) continue;
5394 s = attr_find( save_attrs, ml->sml_desc );
5395 a = attr_find( e->e_attrs, ml->sml_desc );
5397 switch (ml->sml_op) {
5398 case LDAP_MOD_DELETE:
5399 case LDAP_MOD_REPLACE: {
5400 BerVarray vals = NULL, nvals = NULL;
5403 if ( ml->sml_op == LDAP_MOD_REPLACE ) {
5404 vals = ml->sml_values;
5405 nvals = ml->sml_nvalues;
5406 ml->sml_values = NULL;
5407 ml->sml_nvalues = NULL;
5410 if ( ml->sml_values )
5413 /* If we didn't delete the whole attribute */
5414 if ( ml->sml_values && a ) {
5415 struct berval *mvals;
5418 if ( ml->sml_nvalues )
5419 mvals = ml->sml_nvalues;
5421 mvals = ml->sml_values;
5423 /* use the indexes we saved up above */
5424 for (i=0; i < d->nidx; i++) {
5425 struct berval bv = *mvals++;
5426 if ( a->a_desc->ad_type->sat_flags & SLAP_AT_ORDERED &&
5427 bv.bv_val[0] == '{' ) {
5428 ptr = strchr( bv.bv_val, '}' ) + 1;
5429 bv.bv_len -= ptr - bv.bv_val;
5432 ca->line = bv.bv_val;
5433 ca->valx = d->idx[i];
5434 config_parse_vals(ct, ca, d->idx[i] );
5435 rc = config_del_vals( ct, ca );
5436 if ( rc != LDAP_SUCCESS ) break;
5438 s->a_flags |= SLAP_ATTR_IXDEL;
5439 for (j=i+1; j < d->nidx; j++)
5440 if ( d->idx[j] >d->idx[i] )
5447 rc = config_del_vals( ct, ca );
5448 if ( rc ) rc = LDAP_OTHER;
5450 s->a_flags |= SLAP_ATTR_IXDEL;
5452 if ( ml->sml_values ) {
5457 if ( ml->sml_op == LDAP_MOD_REPLACE ) {
5458 ml->sml_values = vals;
5459 ml->sml_nvalues = nvals;
5461 if ( !vals || rc != LDAP_SUCCESS )
5464 /* FALLTHRU: LDAP_MOD_REPLACE && vals */
5467 for (i=0; ml->sml_values[i].bv_val; i++) {
5468 ca->line = ml->sml_values[i].bv_val;
5470 rc = config_modify_add( ct, ca, ml->sml_desc, i );
5473 a->a_flags |= SLAP_ATTR_IXADD;
5480 /* Undo for a failed operation */
5481 if ( rc != LDAP_SUCCESS ) {
5482 ConfigReply msg = ca->reply;
5483 for ( s = save_attrs; s; s = s->a_next ) {
5484 if ( s->a_flags & SLAP_ATTR_IXDEL ) {
5485 s->a_flags &= ~(SLAP_ATTR_IXDEL|SLAP_ATTR_IXADD);
5486 ct = config_find_table( colst, nocs, s->a_desc, ca );
5487 a = attr_find( e->e_attrs, s->a_desc );
5489 /* clear the flag so the add check below will skip it */
5490 a->a_flags &= ~(SLAP_ATTR_IXDEL|SLAP_ATTR_IXADD);
5494 config_del_vals( ct, ca );
5496 for ( i=0; !BER_BVISNULL( &s->a_vals[i] ); i++ ) {
5497 ca->line = s->a_vals[i].bv_val;
5499 config_modify_add( ct, ca, s->a_desc, i );
5503 for ( a = e->e_attrs; a; a = a->a_next ) {
5504 if ( a->a_flags & SLAP_ATTR_IXADD ) {
5505 ct = config_find_table( colst, nocs, a->a_desc, ca );
5509 config_del_vals( ct, ca );
5510 s = attr_find( save_attrs, a->a_desc );
5512 s->a_flags &= ~(SLAP_ATTR_IXDEL|SLAP_ATTR_IXADD);
5513 for ( i=0; !BER_BVISNULL( &s->a_vals[i] ); i++ ) {
5514 ca->line = s->a_vals[i].bv_val;
5516 config_modify_add( ct, ca, s->a_desc, i );
5527 if ( rc == LDAP_SUCCESS ) {
5528 attrs_free( save_attrs );
5530 attrs_free( e->e_attrs );
5531 e->e_attrs = save_attrs;
5533 ch_free( ca->argv );
5534 if ( colst ) ch_free( colst );
5536 deltail = dels->next;
5545 config_back_modify( Operation *op, SlapReply *rs )
5548 CfEntryInfo *ce, *last;
5550 ConfigArgs ca = {0};
5553 AttributeDescription *rad = NULL;
5556 cfb = (CfBackInfo *)op->o_bd->be_private;
5558 ce = config_find_base( cfb->cb_root, &op->o_req_ndn, &last );
5561 rs->sr_matched = last->ce_entry->e_name.bv_val;
5562 rs->sr_err = LDAP_NO_SUCH_OBJECT;
5566 if ( !acl_check_modlist( op, ce->ce_entry, op->orm_modlist )) {
5567 rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
5571 /* Get type of RDN */
5572 rdn = ce->ce_entry->e_nname;
5573 ptr = strchr( rdn.bv_val, '=' );
5574 rdn.bv_len = ptr - rdn.bv_val;
5575 slap_bv2ad( &rdn, &rad, &rs->sr_text );
5577 /* Some basic validation... */
5578 for ( ml = op->orm_modlist; ml; ml = ml->sml_next ) {
5579 /* Don't allow Modify of RDN; must use ModRdn for that. */
5580 if ( ml->sml_desc == rad ) {
5581 rs->sr_err = LDAP_NOT_ALLOWED_ON_RDN;
5582 rs->sr_text = "Use modrdn to change the entry name";
5585 /* Internal update of contextCSN? */
5586 if ( ml->sml_desc == slap_schema.si_ad_contextCSN && op->o_conn->c_conn_idx == -1 ) {
5592 slap_mods_opattrs( op, &op->orm_modlist, 1 );
5595 if ( op->o_abandon ) {
5596 rs->sr_err = SLAPD_ABANDON;
5599 ldap_pvt_thread_pool_pause( &connection_pool );
5603 * 1) perform the Modify on the cached Entry.
5604 * 2) verify that the Entry still satisfies the schema.
5605 * 3) perform the individual config operations.
5606 * 4) store Modified entry in underlying LDIF backend.
5608 rs->sr_err = config_modify_internal( ce, op, rs, &ca );
5610 rs->sr_text = ca.cr_msg;
5611 } else if ( cfb->cb_use_ldif ) {
5612 BackendDB *be = op->o_bd;
5613 slap_callback sc = { NULL, slap_null_cb, NULL, NULL }, *scp;
5614 struct berval dn, ndn;
5616 op->o_bd = &cfb->cb_db;
5620 op->o_dn = op->o_bd->be_rootdn;
5621 op->o_ndn = op->o_bd->be_rootndn;
5623 scp = op->o_callback;
5624 op->o_callback = ≻
5625 op->o_bd->be_modify( op, rs );
5627 op->o_callback = scp;
5633 ldap_pvt_thread_pool_resume( &connection_pool );
5635 send_ldap_result( op, rs );
5636 slap_graduate_commit_csn( op );
5641 config_back_modrdn( Operation *op, SlapReply *rs )
5644 CfEntryInfo *ce, *last;
5648 cfb = (CfBackInfo *)op->o_bd->be_private;
5650 ce = config_find_base( cfb->cb_root, &op->o_req_ndn, &last );
5653 rs->sr_matched = last->ce_entry->e_name.bv_val;
5654 rs->sr_err = LDAP_NO_SUCH_OBJECT;
5657 if ( !access_allowed( op, ce->ce_entry, slap_schema.si_ad_entry,
5658 NULL, ACL_WRITE, NULL )) {
5659 rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
5663 if ( ce->ce_parent )
5664 parent = ce->ce_parent->ce_entry;
5666 parent = (Entry *)&slap_entry_root;
5667 if ( !access_allowed( op, parent, slap_schema.si_ad_children,
5668 NULL, ACL_WRITE, NULL )) {
5669 rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
5674 /* We don't allow moving objects to new parents.
5675 * Generally we only allow reordering a set of ordered entries.
5677 if ( op->orr_newSup ) {
5678 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
5682 /* If newRDN == oldRDN, quietly succeed */
5683 dnRdn( &op->o_req_ndn, &rdn );
5684 if ( dn_match( &rdn, &op->orr_nnewrdn )) {
5685 rs->sr_err = LDAP_SUCCESS;
5689 /* Current behavior, subject to change as needed:
5691 * For backends and overlays, we only allow renumbering.
5692 * For schema, we allow renaming with the same number.
5693 * Otherwise, the op is not allowed.
5696 if ( ce->ce_type == Cft_Schema ) {
5700 /* Can't alter the main cn=schema entry */
5701 if ( ce->ce_parent->ce_type == Cft_Global ) {
5702 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
5703 rs->sr_text = "renaming not allowed for this entry";
5707 /* We could support this later if desired */
5708 ptr1 = ber_bvchr( &rdn, '}' );
5709 ptr2 = ber_bvchr( &op->orr_newrdn, '}' );
5710 len = ptr1 - rdn.bv_val;
5711 if ( len != ptr2 - op->orr_newrdn.bv_val ||
5712 strncmp( rdn.bv_val, op->orr_newrdn.bv_val, len )) {
5713 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
5714 rs->sr_text = "schema reordering not supported";
5717 } else if ( ce->ce_type == Cft_Database ||
5718 ce->ce_type == Cft_Overlay ) {
5719 char *ptr1, *ptr2, *iptr1, *iptr2;
5722 iptr2 = ber_bvchr( &op->orr_newrdn, '=' ) + 1;
5723 if ( *iptr2 != '{' ) {
5724 rs->sr_err = LDAP_NAMING_VIOLATION;
5725 rs->sr_text = "new ordering index is required";
5729 iptr1 = ber_bvchr( &rdn, '{' ) + 1;
5730 ptr1 = ber_bvchr( &rdn, '}' );
5731 ptr2 = ber_bvchr( &op->orr_newrdn, '}' );
5733 rs->sr_err = LDAP_NAMING_VIOLATION;
5734 rs->sr_text = "new ordering index is required";
5738 len1 = ptr1 - rdn.bv_val;
5739 len2 = ptr2 - op->orr_newrdn.bv_val;
5741 if ( rdn.bv_len - len1 != op->orr_newrdn.bv_len - len2 ||
5742 strncmp( ptr1, ptr2, rdn.bv_len - len1 )) {
5743 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
5744 rs->sr_text = "changing database/overlay type not allowed";
5747 ixold = strtol( iptr1, NULL, 0 );
5748 ixnew = strtol( iptr2, &ptr1, 0 );
5749 if ( ptr1 != ptr2 || ixold < 0 || ixnew < 0 ) {
5750 rs->sr_err = LDAP_NAMING_VIOLATION;
5753 /* config DB is always 0, cannot be changed */
5754 if ( ce->ce_type == Cft_Database && ( ixold == 0 || ixnew == 0 )) {
5755 rs->sr_err = LDAP_CONSTRAINT_VIOLATION;
5759 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
5760 rs->sr_text = "renaming not supported for this entry";
5764 if ( op->o_abandon ) {
5765 rs->sr_err = SLAPD_ABANDON;
5768 ldap_pvt_thread_pool_pause( &connection_pool );
5770 if ( ce->ce_type == Cft_Schema ) {
5771 req_modrdn_s modr = op->oq_modrdn;
5774 rs->sr_err = config_rename_attr( rs, ce->ce_entry, &rdn, &a );
5775 if ( rs->sr_err == LDAP_SUCCESS ) {
5776 rs->sr_err = config_rename_one( op, rs, ce->ce_entry,
5777 ce->ce_parent, a, &op->orr_newrdn, &op->orr_nnewrdn,
5780 op->oq_modrdn = modr;
5782 CfEntryInfo *ce2, *cebase, **cprev, **cbprev, *ceold;
5783 req_modrdn_s modr = op->oq_modrdn;
5786 /* Advance to first of this type */
5787 cprev = &ce->ce_parent->ce_kids;
5788 for ( ce2 = *cprev; ce2 && ce2->ce_type != ce->ce_type; ) {
5789 cprev = &ce2->ce_sibs;
5792 /* Skip the -1 entry */
5793 if ( ce->ce_type == Cft_Database ) {
5794 cprev = &ce2->ce_sibs;
5800 /* Remove from old slot */
5801 for ( ce2 = *cprev; ce2 && ce2 != ce; ce2 = ce2->ce_sibs )
5802 cprev = &ce2->ce_sibs;
5803 *cprev = ce->ce_sibs;
5804 ceold = ce->ce_sibs;
5806 /* Insert into new slot */
5808 for ( i=0; i<ixnew; i++ ) {
5812 cprev = &ce2->ce_sibs;
5814 ce->ce_sibs = *cprev;
5819 /* NOTE: These should be encoded in the OC tables, not inline here */
5820 if ( ce->ce_type == Cft_Database )
5821 backend_db_move( ce->ce_be, ixnew );
5822 else if ( ce->ce_type == Cft_Overlay )
5823 overlay_move( ce->ce_be, (slap_overinst *)ce->ce_bi, ixnew );
5825 if ( ixold < ixnew ) {
5826 rs->sr_err = config_rename_del( op, rs, ce, ceold, ixold,
5829 rs->sr_err = config_rename_add( op, rs, ce, ixnew, 1,
5830 ixold - ixnew, cfb->cb_use_ldif );
5832 op->oq_modrdn = modr;
5835 ldap_pvt_thread_pool_resume( &connection_pool );
5837 send_ldap_result( op, rs );
5842 config_back_delete( Operation *op, SlapReply *rs )
5844 #ifdef SLAP_CONFIG_DELETE
5846 CfEntryInfo *ce, *last, *ce2;
5848 cfb = (CfBackInfo *)op->o_bd->be_private;
5850 ce = config_find_base( cfb->cb_root, &op->o_req_ndn, &last );
5853 rs->sr_matched = last->ce_entry->e_name.bv_val;
5854 rs->sr_err = LDAP_NO_SUCH_OBJECT;
5855 } else if ( ce->ce_kids ) {
5856 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
5857 } else if ( op->o_abandon ) {
5858 rs->sr_err = SLAPD_ABANDON;
5859 } else if ( ce->ce_type == Cft_Overlay ){
5863 ldap_pvt_thread_pool_pause( &connection_pool );
5865 overlay_remove( ce->ce_be, (slap_overinst *)ce->ce_bi );
5867 /* remove CfEntryInfo from the siblings list */
5868 if ( ce->ce_parent->ce_kids == ce ) {
5869 ce->ce_parent->ce_kids = ce->ce_sibs;
5871 for ( ce2 = ce->ce_parent->ce_kids ; ce2; ce2 = ce2->ce_sibs ) {
5872 if ( ce2->ce_sibs == ce ) {
5873 ce2->ce_sibs = ce->ce_sibs;
5879 /* remove from underlying database */
5880 if ( cfb->cb_use_ldif ) {
5881 BackendDB *be = op->o_bd;
5882 slap_callback sc = { NULL, slap_null_cb, NULL, NULL }, *scp;
5883 struct berval dn, ndn, req_dn, req_ndn;
5885 op->o_bd = &cfb->cb_db;
5889 req_dn = op->o_req_dn;
5890 req_ndn = op->o_req_ndn;
5892 op->o_dn = op->o_bd->be_rootdn;
5893 op->o_ndn = op->o_bd->be_rootndn;
5894 op->o_req_dn = ce->ce_entry->e_name;
5895 op->o_req_ndn = ce->ce_entry->e_nname;
5897 scp = op->o_callback;
5898 op->o_callback = ≻
5899 op->o_bd->be_delete( op, rs );
5901 op->o_callback = scp;
5904 op->o_req_dn = req_dn;
5905 op->o_req_ndn = req_ndn;
5908 /* renumber siblings */
5909 iptr = ber_bvchr( &op->o_req_ndn, '{' ) + 1;
5910 ixold = strtol( iptr, NULL, 0 );
5911 for (ce2 = ce->ce_sibs, count=0; ce2; ce2=ce2->ce_sibs) {
5912 config_renumber_one( op, rs, ce2->ce_parent, ce2->ce_entry,
5913 count+ixold, 0, cfb->cb_use_ldif );
5917 ce->ce_entry->e_private=NULL;
5918 entry_free(ce->ce_entry);
5920 ldap_pvt_thread_pool_resume( &connection_pool );
5922 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
5925 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
5926 #endif /* SLAP_CONFIG_DELETE */
5927 send_ldap_result( op, rs );
5932 config_back_search( Operation *op, SlapReply *rs )
5935 CfEntryInfo *ce, *last;
5938 cfb = (CfBackInfo *)op->o_bd->be_private;
5940 ce = config_find_base( cfb->cb_root, &op->o_req_ndn, &last );
5943 rs->sr_matched = last->ce_entry->e_name.bv_val;
5944 rs->sr_err = LDAP_NO_SUCH_OBJECT;
5947 if ( !access_allowed_mask( op, ce->ce_entry, slap_schema.si_ad_entry, NULL,
5948 ACL_SEARCH, NULL, &mask ))
5950 if ( !ACL_GRANT( mask, ACL_DISCLOSE )) {
5951 rs->sr_err = LDAP_NO_SUCH_OBJECT;
5953 rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
5957 switch ( op->ors_scope ) {
5958 case LDAP_SCOPE_BASE:
5959 case LDAP_SCOPE_SUBTREE:
5960 rs->sr_err = config_send( op, rs, ce, 0 );
5963 case LDAP_SCOPE_ONELEVEL:
5964 for (ce = ce->ce_kids; ce; ce=ce->ce_sibs) {
5965 rs->sr_err = config_send( op, rs, ce, 1 );
5974 send_ldap_result( op, rs );
5978 /* no-op, we never free entries */
5979 int config_entry_release(
5984 if ( !e->e_private ) {
5987 return LDAP_SUCCESS;
5990 /* return LDAP_SUCCESS IFF we can retrieve the specified entry.
5992 int config_back_entry_get(
5996 AttributeDescription *at,
6001 CfEntryInfo *ce, *last;
6002 int rc = LDAP_NO_SUCH_OBJECT;
6004 cfb = (CfBackInfo *)op->o_bd->be_private;
6006 ce = config_find_base( cfb->cb_root, ndn, &last );
6008 *ent = ce->ce_entry;
6011 if ( oc && !is_entry_objectclass_or_sub( *ent, oc ) ) {
6012 rc = LDAP_NO_SUCH_ATTRIBUTE;
6022 config_build_attrs( Entry *e, AttributeType **at, AttributeDescription *ad,
6023 ConfigTable *ct, ConfigArgs *c )
6027 for (; at && *at; at++) {
6028 /* Skip the naming attr */
6029 if ((*at)->sat_ad == ad || (*at)->sat_ad == slap_schema.si_ad_cn )
6031 for (i=0;ct[i].name;i++) {
6032 if (ct[i].ad == (*at)->sat_ad) {
6033 rc = config_get_vals(&ct[i], c);
6034 /* NOTE: tolerate that config_get_vals()
6035 * returns success with no values */
6036 if (rc == LDAP_SUCCESS && c->rvalue_vals != NULL ) {
6037 if ( c->rvalue_nvals )
6038 rc = attr_merge(e, ct[i].ad, c->rvalue_vals,
6041 slap_syntax_validate_func *validate =
6042 ct[i].ad->ad_type->sat_syntax->ssyn_validate;
6045 for ( j=0; c->rvalue_vals[j].bv_val; j++ ) {
6046 rc = ordered_value_validate( ct[i].ad,
6047 &c->rvalue_vals[j], LDAP_MOD_ADD );
6049 Debug( LDAP_DEBUG_ANY,
6050 "config_build_attrs: error %d on %s value #%d\n",
6051 rc, ct[i].ad->ad_cname.bv_val, j );
6057 rc = attr_merge_normalize(e, ct[i].ad,
6058 c->rvalue_vals, NULL);
6060 ber_bvarray_free( c->rvalue_nvals );
6061 ber_bvarray_free( c->rvalue_vals );
6063 Debug( LDAP_DEBUG_ANY,
6064 "config_build_attrs: error %d on %s\n",
6065 rc, ct[i].ad->ad_cname.bv_val, 0 );
6077 config_build_entry( Operation *op, SlapReply *rs, CfEntryInfo *parent,
6078 ConfigArgs *c, struct berval *rdn, ConfigOCs *main, ConfigOCs *extra )
6080 Entry *e = entry_alloc();
6081 CfEntryInfo *ce = ch_calloc( 1, sizeof(CfEntryInfo) );
6083 struct berval ad_name;
6084 AttributeDescription *ad = NULL;
6087 const char *text = "";
6091 CfEntryInfo *ceprev = NULL;
6093 Debug( LDAP_DEBUG_TRACE, "config_build_entry: \"%s\"\n", rdn->bv_val, 0, 0);
6096 ce->ce_type = main->co_type;
6097 ce->ce_parent = parent;
6099 pdn = parent->ce_entry->e_nname;
6100 if ( parent->ce_kids && parent->ce_kids->ce_type <= ce->ce_type )
6101 for ( ceprev = parent->ce_kids; ceprev->ce_sibs &&
6102 ceprev->ce_type <= ce->ce_type;
6103 ceprev = ceprev->ce_sibs );
6108 ce->ce_private = c->ca_private;
6112 build_new_dn( &e->e_name, &pdn, rdn, NULL );
6113 ber_dupbv( &e->e_nname, &e->e_name );
6115 attr_merge_normalize_one(e, slap_schema.si_ad_objectClass,
6116 main->co_name, NULL );
6118 attr_merge_normalize_one(e, slap_schema.si_ad_objectClass,
6119 extra->co_name, NULL );
6120 ptr = strchr(rdn->bv_val, '=');
6121 ad_name.bv_val = rdn->bv_val;
6122 ad_name.bv_len = ptr - rdn->bv_val;
6123 rc = slap_bv2ad( &ad_name, &ad, &text );
6128 val.bv_len = rdn->bv_len - (val.bv_val - rdn->bv_val);
6129 attr_merge_normalize_one(e, ad, &val, NULL );
6132 c->table = main->co_type;
6133 if ( oc->soc_required ) {
6134 rc = config_build_attrs( e, oc->soc_required, ad, main->co_table, c );
6135 if ( rc ) goto fail;
6138 if ( oc->soc_allowed ) {
6139 rc = config_build_attrs( e, oc->soc_allowed, ad, main->co_table, c );
6140 if ( rc ) goto fail;
6145 c->table = extra->co_type;
6146 if ( oc->soc_required ) {
6147 rc = config_build_attrs( e, oc->soc_required, ad, extra->co_table, c );
6148 if ( rc ) goto fail;
6151 if ( oc->soc_allowed ) {
6152 rc = config_build_attrs( e, oc->soc_allowed, ad, extra->co_table, c );
6153 if ( rc ) goto fail;
6157 oc_at = attr_find( e->e_attrs, slap_schema.si_ad_objectClass );
6158 rc = structural_class(oc_at->a_vals, &oc, NULL, &text, c->cr_msg,
6159 sizeof(c->cr_msg), op ? op->o_tmpmemctx : NULL );
6160 if ( rc != LDAP_SUCCESS ) {
6162 Debug( LDAP_DEBUG_ANY,
6163 "config_build_entry: build \"%s\" failed: \"%s\"\n",
6164 rdn->bv_val, text, 0);
6167 attr_merge_normalize_one(e, slap_schema.si_ad_structuralObjectClass, &oc->soc_cname, NULL );
6170 op->ora_modlist = NULL;
6171 slap_add_opattrs( op, NULL, NULL, 0, 0 );
6172 if ( !op->o_noop ) {
6173 op->o_bd->be_add( op, rs );
6174 if ( ( rs->sr_err != LDAP_SUCCESS )
6175 && (rs->sr_err != LDAP_ALREADY_EXISTS) ) {
6181 ce->ce_sibs = ceprev->ce_sibs;
6182 ceprev->ce_sibs = ce;
6183 } else if ( parent ) {
6184 ce->ce_sibs = parent->ce_kids;
6185 parent->ce_kids = ce;
6192 config_build_schema_inc( ConfigArgs *c, CfEntryInfo *ceparent,
6193 Operation *op, SlapReply *rs )
6196 ConfigFile *cf = c->ca_private;
6198 struct berval bv, rdn;
6200 for (; cf; cf=cf->c_sibs, c->depth++) {
6201 if ( !cf->c_at_head && !cf->c_cr_head && !cf->c_oc_head &&
6202 !cf->c_om_head && !cf->c_syn_head ) continue;
6203 c->value_dn.bv_val = c->log;
6204 LUTIL_SLASHPATH( cf->c_file.bv_val );
6205 bv.bv_val = strrchr(cf->c_file.bv_val, LDAP_DIRSEP[0]);
6210 bv.bv_len = cf->c_file.bv_len - (bv.bv_val - cf->c_file.bv_val);
6212 ptr = strchr( bv.bv_val, '.' );
6214 bv.bv_len = ptr - bv.bv_val;
6215 c->value_dn.bv_len = snprintf(c->value_dn.bv_val, sizeof( c->log ), "cn=" SLAP_X_ORDERED_FMT, c->depth);
6216 if ( c->value_dn.bv_len >= sizeof( c->log ) ) {
6217 /* FIXME: how can indicate error? */
6220 strncpy( c->value_dn.bv_val + c->value_dn.bv_len, bv.bv_val,
6222 c->value_dn.bv_len += bv.bv_len;
6223 c->value_dn.bv_val[c->value_dn.bv_len] ='\0';
6227 e = config_build_entry( op, rs, ceparent, c, &rdn,
6228 &CFOC_SCHEMA, NULL );
6231 } else if ( e && cf->c_kids ) {
6232 c->ca_private = cf->c_kids;
6233 config_build_schema_inc( c, e->e_private, op, rs );
6239 #ifdef SLAPD_MODULES
6242 config_build_modules( ConfigArgs *c, CfEntryInfo *ceparent,
6243 Operation *op, SlapReply *rs )
6248 for (i=0, mp=&modpaths; mp; mp=mp->mp_next, i++) {
6249 if ( BER_BVISNULL( &mp->mp_path ) && !mp->mp_loads )
6251 c->value_dn.bv_val = c->log;
6252 c->value_dn.bv_len = snprintf(c->value_dn.bv_val, sizeof( c->log ), "cn=module" SLAP_X_ORDERED_FMT, i);
6253 if ( c->value_dn.bv_len >= sizeof( c->log ) ) {
6254 /* FIXME: how can indicate error? */
6258 if ( ! config_build_entry( op, rs, ceparent, c, &c->value_dn, &CFOC_MODULE, NULL )) {
6267 config_check_schema(Operation *op, CfBackInfo *cfb)
6269 struct berval schema_dn = BER_BVC(SCHEMA_RDN "," CONFIG_RDN);
6271 CfEntryInfo *ce, *last;
6274 /* If there's no root entry, we must be in the midst of converting */
6275 if ( !cfb->cb_root )
6278 /* Make sure the main schema entry exists */
6279 ce = config_find_base( cfb->cb_root, &schema_dn, &last );
6286 /* Make sure it's up to date */
6287 if ( cf_om_tail != om_sys_tail ) {
6288 a = attr_find( e->e_attrs, cfAd_om );
6290 if ( a->a_nvals != a->a_vals )
6291 ber_bvarray_free( a->a_nvals );
6292 ber_bvarray_free( a->a_vals );
6297 oidm_unparse( &bv, NULL, NULL, 1 );
6298 attr_merge_normalize( e, cfAd_om, bv, NULL );
6299 ber_bvarray_free( bv );
6300 cf_om_tail = om_sys_tail;
6302 if ( cf_at_tail != at_sys_tail ) {
6303 a = attr_find( e->e_attrs, cfAd_attr );
6305 if ( a->a_nvals != a->a_vals )
6306 ber_bvarray_free( a->a_nvals );
6307 ber_bvarray_free( a->a_vals );
6312 at_unparse( &bv, NULL, NULL, 1 );
6313 attr_merge_normalize( e, cfAd_attr, bv, NULL );
6314 ber_bvarray_free( bv );
6315 cf_at_tail = at_sys_tail;
6317 if ( cf_oc_tail != oc_sys_tail ) {
6318 a = attr_find( e->e_attrs, cfAd_oc );
6320 if ( a->a_nvals != a->a_vals )
6321 ber_bvarray_free( a->a_nvals );
6322 ber_bvarray_free( a->a_vals );
6327 oc_unparse( &bv, NULL, NULL, 1 );
6328 attr_merge_normalize( e, cfAd_oc, bv, NULL );
6329 ber_bvarray_free( bv );
6330 cf_oc_tail = oc_sys_tail;
6332 if ( cf_syn_tail != syn_sys_tail ) {
6333 a = attr_find( e->e_attrs, cfAd_syntax );
6335 if ( a->a_nvals != a->a_vals )
6336 ber_bvarray_free( a->a_nvals );
6337 ber_bvarray_free( a->a_vals );
6342 syn_unparse( &bv, NULL, NULL, 1 );
6343 attr_merge_normalize( e, cfAd_syntax, bv, NULL );
6344 ber_bvarray_free( bv );
6345 cf_syn_tail = syn_sys_tail;
6348 SlapReply rs = {REP_RESULT};
6349 c.ca_private = NULL;
6350 e = config_build_entry( op, &rs, cfb->cb_root, &c, &schema_rdn,
6351 &CFOC_SCHEMA, NULL );
6356 ce->ce_private = cfb->cb_config;
6357 cf_at_tail = at_sys_tail;
6358 cf_oc_tail = oc_sys_tail;
6359 cf_om_tail = om_sys_tail;
6360 cf_syn_tail = syn_sys_tail;
6365 static const char *defacl[] = {
6366 NULL, "to", "*", "by", "*", "none", NULL
6370 config_back_db_open( BackendDB *be, ConfigReply *cr )
6372 CfBackInfo *cfb = be->be_private;
6375 CfEntryInfo *ce, *ceparent;
6379 Connection conn = {0};
6380 OperationBuffer opbuf;
6382 slap_callback cb = { NULL, slap_null_cb, NULL, NULL };
6383 SlapReply rs = {REP_RESULT};
6384 void *thrctx = NULL;
6386 Debug( LDAP_DEBUG_TRACE, "config_back_db_open\n", 0, 0, 0);
6388 /* If we have no explicitly configured ACLs, don't just use
6389 * the global ACLs. Explicitly deny access to everything.
6391 if ( !be->be_acl ) {
6392 parse_acl(be, "config_back_db_open", 0, 6, (char **)defacl, 0 );
6395 thrctx = ldap_pvt_thread_pool_context();
6396 connection_fake_init( &conn, &opbuf, thrctx );
6399 op->o_tag = LDAP_REQ_ADD;
6400 op->o_callback = &cb;
6401 op->o_bd = &cfb->cb_db;
6402 op->o_dn = op->o_bd->be_rootdn;
6403 op->o_ndn = op->o_bd->be_rootndn;
6405 if ( !cfb->cb_use_ldif ) {
6409 /* If we read the config from back-ldif, do some quick sanity checks */
6410 if ( cfb->cb_got_ldif ) {
6411 return config_check_schema( op, cfb );
6414 /* create root of tree */
6416 c.ca_private = cfb->cb_config;
6418 e = config_build_entry( op, &rs, NULL, &c, &rdn, &CFOC_GLOBAL, NULL );
6428 #ifdef SLAPD_MODULES
6429 /* Create Module nodes... */
6430 if ( modpaths.mp_loads ) {
6431 if ( config_build_modules( &c, ceparent, op, &rs ) ){
6437 /* Create schema nodes... cn=schema will contain the hardcoded core
6438 * schema, read-only. Child objects will contain runtime loaded schema
6442 c.ca_private = NULL;
6443 e = config_build_entry( op, &rs, ceparent, &c, &rdn, &CFOC_SCHEMA, NULL );
6448 ce->ce_private = cfb->cb_config;
6449 cf_at_tail = at_sys_tail;
6450 cf_oc_tail = oc_sys_tail;
6451 cf_om_tail = om_sys_tail;
6452 cf_syn_tail = syn_sys_tail;
6454 /* Create schema nodes for included schema... */
6455 if ( cfb->cb_config->c_kids ) {
6457 c.ca_private = cfb->cb_config->c_kids;
6458 if (config_build_schema_inc( &c, ce, op, &rs )) {
6463 /* Create backend nodes. Skip if they don't provide a cf_table.
6464 * There usually aren't any of these.
6468 LDAP_STAILQ_FOREACH( bi, &backendInfo, bi_next) {
6469 if (!bi->bi_cf_ocs) {
6470 /* If it only supports the old config mech, complain. */
6471 if ( bi->bi_config ) {
6472 Debug( LDAP_DEBUG_ANY,
6473 "WARNING: No dynamic config support for backend %s.\n",
6474 bi->bi_type, 0, 0 );
6479 if (!bi->bi_private) continue;
6482 rdn.bv_len = snprintf(rdn.bv_val, sizeof( c.log ),
6483 "%s=%s", cfAd_backend->ad_cname.bv_val, bi->bi_type);
6484 if ( rdn.bv_len >= sizeof( c.log ) ) {
6485 /* FIXME: holler ... */ ;
6488 e = config_build_entry( op, &rs, ceparent, &c, &rdn, &CFOC_BACKEND,
6495 /* Create database nodes... */
6496 frontendDB->be_cf_ocs = &CFOC_FRONTEND;
6497 LDAP_STAILQ_NEXT(frontendDB, be_next) = LDAP_STAILQ_FIRST(&backendDB);
6498 for ( i = -1, be = frontendDB ; be;
6499 i++, be = LDAP_STAILQ_NEXT( be, be_next )) {
6500 slap_overinfo *oi = NULL;
6502 if ( overlay_is_over( be )) {
6503 oi = be->bd_info->bi_private;
6509 /* If this backend supports the old config mechanism, but not
6510 * the new mech, complain.
6512 if ( !be->be_cf_ocs && bi->bi_db_config ) {
6513 Debug( LDAP_DEBUG_ANY,
6514 "WARNING: No dynamic config support for database %s.\n",
6515 bi->bi_type, 0, 0 );
6519 rdn.bv_len = snprintf(rdn.bv_val, sizeof( c.log ),
6520 "%s=" SLAP_X_ORDERED_FMT "%s", cfAd_database->ad_cname.bv_val,
6522 if ( rdn.bv_len >= sizeof( c.log ) ) {
6523 /* FIXME: holler ... */ ;
6527 e = config_build_entry( op, &rs, ceparent, &c, &rdn, &CFOC_DATABASE,
6533 if ( be->be_cf_ocs && be->be_cf_ocs->co_cfadd )
6534 be->be_cf_ocs->co_cfadd( op, &rs, e, &c );
6535 /* Iterate through overlays */
6540 voidList *vl, *v0 = NULL;
6542 /* overlays are in LIFO order, must reverse stack */
6543 for (on=oi->oi_list; on; on=on->on_next) {
6544 vl = ch_malloc( sizeof( voidList ));
6549 for (j=0; vl; j++,vl=v0) {
6553 if ( on->on_bi.bi_db_config && !on->on_bi.bi_cf_ocs ) {
6554 Debug( LDAP_DEBUG_ANY,
6555 "WARNING: No dynamic config support for overlay %s.\n",
6556 on->on_bi.bi_type, 0, 0 );
6560 rdn.bv_len = snprintf(rdn.bv_val, sizeof( c.log ),
6561 "%s=" SLAP_X_ORDERED_FMT "%s",
6562 cfAd_overlay->ad_cname.bv_val, j, on->on_bi.bi_type );
6563 if ( rdn.bv_len >= sizeof( c.log ) ) {
6564 /* FIXME: holler ... */ ;
6568 oe = config_build_entry( op, &rs, ce, &c, &rdn,
6569 &CFOC_OVERLAY, c.bi->bi_cf_ocs );
6573 if ( c.bi->bi_cf_ocs && c.bi->bi_cf_ocs->co_cfadd )
6574 c.bi->bi_cf_ocs->co_cfadd( op, &rs, oe, &c );
6579 ldap_pvt_thread_pool_context_reset( thrctx );
6581 if ( unsupp && cfb->cb_use_ldif ) {
6582 Debug( LDAP_DEBUG_ANY, "\nWARNING: The converted cn=config "
6583 "directory is incomplete and may not work.\n\n", 0, 0, 0 );
6590 cfb_free_cffile( ConfigFile *cf )
6594 for (; cf; cf=next) {
6597 cfb_free_cffile( cf->c_kids );
6598 ch_free( cf->c_file.bv_val );
6599 ber_bvarray_free( cf->c_dseFiles );
6605 cfb_free_entries( CfEntryInfo *ce )
6609 for (; ce; ce=next) {
6612 cfb_free_entries( ce->ce_kids );
6613 ce->ce_entry->e_private = NULL;
6614 entry_free( ce->ce_entry );
6620 config_back_db_close( BackendDB *be, ConfigReply *cr )
6622 CfBackInfo *cfb = be->be_private;
6624 cfb_free_entries( cfb->cb_root );
6625 cfb->cb_root = NULL;
6627 if ( cfb->cb_db.bd_info ) {
6628 backend_shutdown( &cfb->cb_db );
6635 config_back_db_destroy( BackendDB *be, ConfigReply *cr )
6637 CfBackInfo *cfb = be->be_private;
6639 cfb_free_cffile( cfb->cb_config );
6641 ch_free( cfdir.bv_val );
6643 avl_free( CfOcTree, NULL );
6645 if ( cfb->cb_db.bd_info ) {
6646 cfb->cb_db.be_suffix = NULL;
6647 cfb->cb_db.be_nsuffix = NULL;
6648 BER_BVZERO( &cfb->cb_db.be_rootdn );
6649 BER_BVZERO( &cfb->cb_db.be_rootndn );
6651 backend_destroy_one( &cfb->cb_db, 0 );
6660 config_back_db_init( BackendDB *be, ConfigReply* cr )
6666 cfb->cb_config = ch_calloc( 1, sizeof(ConfigFile));
6667 cfn = cfb->cb_config;
6668 be->be_private = cfb;
6670 ber_dupbv( &be->be_rootdn, &config_rdn );
6671 ber_dupbv( &be->be_rootndn, &be->be_rootdn );
6672 ber_dupbv( &dn, &be->be_rootdn );
6673 ber_bvarray_add( &be->be_suffix, &dn );
6674 ber_dupbv( &dn, &be->be_rootdn );
6675 ber_bvarray_add( &be->be_nsuffix, &dn );
6677 /* Hide from namingContexts */
6678 SLAP_BFLAGS(be) |= SLAP_BFLAG_CONFIG;
6680 /* Check ACLs on content of Adds by default */
6681 SLAP_DBFLAGS(be) |= SLAP_DBFLAG_ACL_ADD;
6687 config_back_destroy( BackendInfo *bi )
6689 ldif_must_b64_encode_release();
6694 config_tool_entry_open( BackendDB *be, int mode )
6696 CfBackInfo *cfb = be->be_private;
6697 BackendInfo *bi = cfb->cb_db.bd_info;
6699 if ( bi && bi->bi_tool_entry_open )
6700 return bi->bi_tool_entry_open( &cfb->cb_db, mode );
6707 config_tool_entry_close( BackendDB *be )
6709 CfBackInfo *cfb = be->be_private;
6710 BackendInfo *bi = cfb->cb_db.bd_info;
6712 if ( bi && bi->bi_tool_entry_close )
6713 return bi->bi_tool_entry_close( &cfb->cb_db );
6719 config_tool_entry_first( BackendDB *be )
6721 CfBackInfo *cfb = be->be_private;
6722 BackendInfo *bi = cfb->cb_db.bd_info;
6724 if ( bi && bi->bi_tool_entry_first )
6725 return bi->bi_tool_entry_first( &cfb->cb_db );
6731 config_tool_entry_next( BackendDB *be )
6733 CfBackInfo *cfb = be->be_private;
6734 BackendInfo *bi = cfb->cb_db.bd_info;
6736 if ( bi && bi->bi_tool_entry_next )
6737 return bi->bi_tool_entry_next( &cfb->cb_db );
6743 config_tool_entry_get( BackendDB *be, ID id )
6745 CfBackInfo *cfb = be->be_private;
6746 BackendInfo *bi = cfb->cb_db.bd_info;
6748 if ( bi && bi->bi_tool_entry_get )
6749 return bi->bi_tool_entry_get( &cfb->cb_db, id );
6754 static int entry_put_got_frontend=0;
6755 static int entry_put_got_config=0;
6757 config_tool_entry_put( BackendDB *be, Entry *e, struct berval *text )
6759 CfBackInfo *cfb = be->be_private;
6760 BackendInfo *bi = cfb->cb_db.bd_info;
6762 struct berval rdn, vals[ 2 ];
6764 OperationBuffer opbuf;
6766 Connection conn = {0};
6767 Operation *op = NULL;
6771 /* Create entry for frontend database if it does not exist already */
6772 if ( !entry_put_got_frontend ) {
6773 if ( !strncmp( e->e_nname.bv_val, "olcDatabase",
6774 STRLENOF( "olcDatabase" ))) {
6775 if ( strncmp( e->e_nname.bv_val +
6776 STRLENOF( "olcDatabase" ), "={-1}frontend",
6777 STRLENOF( "={-1}frontend" )) &&
6778 strncmp( e->e_nname.bv_val +
6779 STRLENOF( "olcDatabase" ), "=frontend",
6780 STRLENOF( "=frontend" ))) {
6782 vals[1].bv_val = NULL;
6783 memset( &ca, 0, sizeof(ConfigArgs));
6785 ca.bi = frontendDB->bd_info;
6786 ca.be->be_cf_ocs = &CFOC_FRONTEND;
6787 rdn.bv_val = ca.log;
6788 rdn.bv_len = snprintf(rdn.bv_val, sizeof( ca.log ),
6789 "%s=" SLAP_X_ORDERED_FMT "%s",
6790 cfAd_database->ad_cname.bv_val, -1,
6792 ce = config_build_entry( NULL, NULL, cfb->cb_root, &ca, &rdn,
6793 &CFOC_DATABASE, ca.be->be_cf_ocs );
6794 thrctx = ldap_pvt_thread_pool_context();
6795 connection_fake_init2( &conn, &opbuf, thrctx,0 );
6797 op->o_bd = &cfb->cb_db;
6798 op->o_tag = LDAP_REQ_ADD;
6800 op->o_dn = be->be_rootdn;
6801 op->o_ndn = be->be_rootndn;
6802 rc = slap_add_opattrs(op, NULL, NULL, 0, 0);
6803 if ( rc != LDAP_SUCCESS ) {
6804 text->bv_val = "autocreation of \"olcDatabase={-1}frontend\" failed";
6805 text->bv_len = STRLENOF("autocreation of \"olcDatabase={-1}frontend\" failed");
6809 if ( ce && bi && bi->bi_tool_entry_put &&
6810 bi->bi_tool_entry_put( &cfb->cb_db, ce, text ) != NOID ) {
6811 entry_put_got_frontend++;
6813 text->bv_val = "autocreation of \"olcDatabase={-1}frontend\" failed";
6814 text->bv_len = STRLENOF("autocreation of \"olcDatabase={-1}frontend\" failed");
6818 entry_put_got_frontend++;
6823 /* Create entry for config database if it does not exist already */
6824 if ( !entry_put_got_config && !isFrontend ) {
6825 if ( !strncmp( e->e_nname.bv_val, "olcDatabase",
6826 STRLENOF( "olcDatabase" ))) {
6827 if ( strncmp( e->e_nname.bv_val +
6828 STRLENOF( "olcDatabase" ), "={0}config",
6829 STRLENOF( "={0}config" )) &&
6830 strncmp( e->e_nname.bv_val +
6831 STRLENOF( "olcDatabase" ), "=config",
6832 STRLENOF( "=config" )) ) {
6834 vals[1].bv_val = NULL;
6835 memset( &ca, 0, sizeof(ConfigArgs));
6836 ca.be = LDAP_STAILQ_FIRST( &backendDB );
6837 ca.bi = ca.be->bd_info;
6838 rdn.bv_val = ca.log;
6839 rdn.bv_len = snprintf(rdn.bv_val, sizeof( ca.log ),
6840 "%s=" SLAP_X_ORDERED_FMT "%s",
6841 cfAd_database->ad_cname.bv_val, 0,
6843 ce = config_build_entry( NULL, NULL, cfb->cb_root, &ca, &rdn, &CFOC_DATABASE,
6846 thrctx = ldap_pvt_thread_pool_context();
6847 connection_fake_init2( &conn, &opbuf, thrctx,0 );
6849 op->o_bd = &cfb->cb_db;
6850 op->o_tag = LDAP_REQ_ADD;
6851 op->o_dn = be->be_rootdn;
6852 op->o_ndn = be->be_rootndn;
6855 rc = slap_add_opattrs(op, NULL, NULL, 0, 0);
6856 if ( rc != LDAP_SUCCESS ) {
6857 text->bv_val = "autocreation of \"olcDatabase={0}config\" failed";
6858 text->bv_len = STRLENOF("autocreation of \"olcDatabase={0}config\" failed");
6861 if (ce && bi && bi->bi_tool_entry_put &&
6862 bi->bi_tool_entry_put( &cfb->cb_db, ce, text ) != NOID ) {
6863 entry_put_got_config++;
6865 text->bv_val = "autocreation of \"olcDatabase={0}config\" failed";
6866 text->bv_len = STRLENOF("autocreation of \"olcDatabase={0}config\" failed");
6870 entry_put_got_config++;
6874 if ( bi && bi->bi_tool_entry_put &&
6875 config_add_internal( cfb, e, &ca, NULL, NULL, NULL ) == 0 )
6876 return bi->bi_tool_entry_put( &cfb->cb_db, e, text );
6883 AttributeDescription **desc;
6885 { "attribute", &cfAd_attr },
6886 { "backend", &cfAd_backend },
6887 { "database", &cfAd_database },
6888 { "include", &cfAd_include },
6889 { "ldapsyntax", &cfAd_syntax },
6890 { "objectclass", &cfAd_oc },
6891 { "objectidentifier", &cfAd_om },
6892 { "overlay", &cfAd_overlay },
6897 * add / delete: all types that may be added or deleted must use an
6898 * X-ORDERED attributeType for their RDN. Adding and deleting entries
6899 * should automatically renumber the index of any siblings as needed,
6900 * so that no gaps in the numbering sequence exist after the add/delete
6902 * What can be added:
6904 * backend objects for backend-specific config directives
6908 * delete: probably no support this time around.
6910 * modrdn: generally not done. Will be invoked automatically by add/
6911 * delete to update numbering sequence. Perform as an explicit operation
6912 * so that the renumbering effect may be replicated. Subtree rename must
6913 * be supported, since renumbering a database will affect all its child
6916 * modify: must be fully supported.
6920 config_back_initialize( BackendInfo *bi )
6922 ConfigTable *ct = config_back_cf_table;
6926 AttributeDescription *ad = NULL;
6928 static char *controls[] = {
6929 LDAP_CONTROL_MANAGEDSAIT,
6933 /* Make sure we don't exceed the bits reserved for userland */
6934 config_check_userland( CFG_LAST );
6936 bi->bi_controls = controls;
6941 bi->bi_destroy = config_back_destroy;
6943 bi->bi_db_init = config_back_db_init;
6944 bi->bi_db_config = 0;
6945 bi->bi_db_open = config_back_db_open;
6946 bi->bi_db_close = config_back_db_close;
6947 bi->bi_db_destroy = config_back_db_destroy;
6949 bi->bi_op_bind = config_back_bind;
6950 bi->bi_op_unbind = 0;
6951 bi->bi_op_search = config_back_search;
6952 bi->bi_op_compare = 0;
6953 bi->bi_op_modify = config_back_modify;
6954 bi->bi_op_modrdn = config_back_modrdn;
6955 bi->bi_op_add = config_back_add;
6956 bi->bi_op_delete = config_back_delete;
6957 bi->bi_op_abandon = 0;
6959 bi->bi_extended = 0;
6961 bi->bi_chk_referrals = 0;
6963 bi->bi_access_allowed = slap_access_allowed;
6965 bi->bi_connection_init = 0;
6966 bi->bi_connection_destroy = 0;
6968 bi->bi_entry_release_rw = config_entry_release;
6969 bi->bi_entry_get_rw = config_back_entry_get;
6971 bi->bi_tool_entry_open = config_tool_entry_open;
6972 bi->bi_tool_entry_close = config_tool_entry_close;
6973 bi->bi_tool_entry_first = config_tool_entry_first;
6974 bi->bi_tool_entry_next = config_tool_entry_next;
6975 bi->bi_tool_entry_get = config_tool_entry_get;
6976 bi->bi_tool_entry_put = config_tool_entry_put;
6979 argv[ 0 ] = "slapd";
6985 for (i=0; OidMacros[i].name; i++ ) {
6986 argv[1] = OidMacros[i].name;
6987 argv[2] = OidMacros[i].oid;
6988 parse_oidm( &ca, 0, NULL );
6991 bi->bi_cf_ocs = cf_ocs;
6993 i = config_register_schema( ct, cf_ocs );
6996 i = slap_str2ad( "olcDatabase", &olcDatabaseDummy[0].ad, &text );
6999 /* setup olcRootPW to be base64-encoded when written in LDIF form;
7000 * basically, we don't care if it fails */
7001 i = slap_str2ad( "olcRootPW", &ad, &text );
7003 Debug( LDAP_DEBUG_ANY, "config_back_initialize: "
7004 "warning, unable to get \"olcRootPW\" "
7005 "attribute description: %d: %s\n",
7008 (void)ldif_must_b64_encode_register( ad->ad_cname.bv_val,
7009 ad->ad_type->sat_oid );
7012 /* set up the notable AttributeDescriptions */
7014 for (;ct->name;ct++) {
7015 if (strcmp(ct->name, ads[i].name)) continue;
7016 *ads[i].desc = ct->ad;
7018 if (!ads[i].name) break;