1 /* bconfig.c - the config backend */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
5 * Copyright 2005-2008 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>
32 #include "slapi/slapi.h"
40 #define CONFIG_RDN "cn=config"
41 #define SCHEMA_RDN "cn=schema"
43 static struct berval config_rdn = BER_BVC(CONFIG_RDN);
44 static struct berval schema_rdn = BER_BVC(SCHEMA_RDN);
46 extern int slap_DN_strict; /* dn.c */
49 typedef struct modpath_s {
50 struct modpath_s *mp_next;
51 struct berval mp_path;
55 static ModPaths modpaths, *modlast = &modpaths, *modcur = &modpaths;
58 typedef struct ConfigFile {
59 struct ConfigFile *c_sibs;
60 struct ConfigFile *c_kids;
62 AttributeType *c_at_head, *c_at_tail;
63 ContentRule *c_cr_head, *c_cr_tail;
64 ObjectClass *c_oc_head, *c_oc_tail;
65 OidMacro *c_om_head, *c_om_tail;
70 ConfigFile *cb_config;
72 BackendDB cb_db; /* underlying database */
77 static CfBackInfo cfBackInfo;
79 static char *passwd_salt;
81 static char *logfileName;
82 #ifdef SLAP_AUTH_REWRITE
83 static BerVarray authz_rewrites;
86 static struct berval cfdir;
89 static AttributeDescription *cfAd_backend, *cfAd_database, *cfAd_overlay,
90 *cfAd_include, *cfAd_attr, *cfAd_oc, *cfAd_om;
92 static ConfigFile *cfn;
94 static Avlnode *CfOcTree;
96 /* System schema state */
97 extern AttributeType *at_sys_tail; /* at.c */
98 extern ObjectClass *oc_sys_tail; /* oc.c */
99 extern OidMacro *om_sys_tail; /* oidm.c */
100 static AttributeType *cf_at_tail;
101 static ObjectClass *cf_oc_tail;
102 static OidMacro *cf_om_tail;
104 static int config_add_internal( CfBackInfo *cfb, Entry *e, ConfigArgs *ca,
105 SlapReply *rs, int *renumber, Operation *op );
107 static int config_check_schema( Operation *op, CfBackInfo *cfb );
109 static ConfigDriver config_fname;
110 static ConfigDriver config_cfdir;
111 static ConfigDriver config_generic;
112 static ConfigDriver config_search_base;
113 static ConfigDriver config_passwd_hash;
114 static ConfigDriver config_schema_dn;
115 static ConfigDriver config_sizelimit;
116 static ConfigDriver config_timelimit;
117 static ConfigDriver config_overlay;
118 static ConfigDriver config_subordinate;
119 static ConfigDriver config_suffix;
120 static ConfigDriver config_rootdn;
121 static ConfigDriver config_rootpw;
122 static ConfigDriver config_restrict;
123 static ConfigDriver config_allows;
124 static ConfigDriver config_disallows;
125 static ConfigDriver config_requires;
126 static ConfigDriver config_security;
127 static ConfigDriver config_referral;
128 static ConfigDriver config_loglevel;
129 static ConfigDriver config_updatedn;
130 static ConfigDriver config_updateref;
131 static ConfigDriver config_include;
132 static ConfigDriver config_obsolete;
134 static ConfigDriver config_tls_option;
135 static ConfigDriver config_tls_config;
137 extern ConfigDriver syncrepl_config;
191 static OidRec OidMacros[] = {
192 /* OpenLDAProot:666.11.1 */
193 { "OLcfg", "1.3.6.1.4.1.4203.666.11.1" },
194 { "OLcfgAt", "OLcfg:3" },
195 { "OLcfgGlAt", "OLcfgAt:0" },
196 { "OLcfgBkAt", "OLcfgAt:1" },
197 { "OLcfgDbAt", "OLcfgAt:2" },
198 { "OLcfgOvAt", "OLcfgAt:3" },
199 { "OLcfgCtAt", "OLcfgAt:4" }, /* contrib modules */
200 { "OLcfgOc", "OLcfg:4" },
201 { "OLcfgGlOc", "OLcfgOc:0" },
202 { "OLcfgBkOc", "OLcfgOc:1" },
203 { "OLcfgDbOc", "OLcfgOc:2" },
204 { "OLcfgOvOc", "OLcfgOc:3" },
205 { "OLcfgCtOc", "OLcfgOc:4" }, /* contrib modules */
207 /* Syntaxes. We should just start using the standard names and
208 * document that they are predefined and available for users
209 * to reference in their own schema. Defining schema without
210 * OID macros is for masochists...
212 { "OMsyn", "1.3.6.1.4.1.1466.115.121.1" },
213 { "OMsBoolean", "OMsyn:7" },
214 { "OMsDN", "OMsyn:12" },
215 { "OMsDirectoryString", "OMsyn:15" },
216 { "OMsIA5String", "OMsyn:26" },
217 { "OMsInteger", "OMsyn:27" },
218 { "OMsOID", "OMsyn:38" },
219 { "OMsOctetString", "OMsyn:40" },
224 * Backend/Database registry
226 * OLcfg{Bk|Db}{Oc|At}:0 -> common
227 * OLcfg{Bk|Db}{Oc|At}:1 -> back-bdb(/back-hdb)
228 * OLcfg{Bk|Db}{Oc|At}:2 -> back-ldif
229 * OLcfg{Bk|Db}{Oc|At}:3 -> back-ldap
230 * OLcfg{Bk|Db}{Oc|At}:4 -> back-monitor
231 * OLcfg{Bk|Db}{Oc|At}:5 -> back-relay
232 * OLcfg{Bk|Db}{Oc|At}:6 -> back-sql
233 * OLcfg{Bk|Db}{Oc|At}:7 -> back-sock
239 * OLcfgOv{Oc|At}:1 -> syncprov
240 * OLcfgOv{Oc|At}:2 -> pcache
241 * OLcfgOv{Oc|At}:3 -> chain
242 * OLcfgOv{Oc|At}:4 -> accesslog
243 * OLcfgOv{Oc|At}:5 -> valsort
244 * OLcfgOv{Oc|At}:7 -> distproc
245 * OLcfgOv{Oc|At}:8 -> dynlist
246 * OLcfgOv{Oc|At}:9 -> dds
247 * OLcfgOv{Oc|At}:10 -> unique
248 * OLcfgOv{Oc|At}:11 -> refint
249 * OLcfgOv{Oc|At}:12 -> ppolicy
250 * OLcfgOv{Oc|At}:13 -> constraint
251 * OLcfgOv{Oc|At}:14 -> translucent
252 * OLcfgOv{Oc|At}:15 -> auditlog
253 * OLcfgOv{Oc|At}:16 -> rwm
254 * OLcfgOv{Oc|At}:17 -> dyngroup
255 * OLcfgOv{Oc|At}:18 -> memberof
256 * OLcfgOv{Oc|At}:19 -> collect
259 /* alphabetical ordering */
261 static ConfigTable config_back_cf_table[] = {
262 /* This attr is read-only */
263 { "", "", 0, 0, 0, ARG_MAGIC,
264 &config_fname, "( OLcfgGlAt:78 NAME 'olcConfigFile' "
265 "DESC 'File for slapd configuration directives' "
266 "EQUALITY caseIgnoreMatch "
267 "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
268 { "", "", 0, 0, 0, ARG_MAGIC,
269 &config_cfdir, "( OLcfgGlAt:79 NAME 'olcConfigDir' "
270 "DESC 'Directory for slapd configuration backend' "
271 "EQUALITY caseIgnoreMatch "
272 "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
273 { "access", NULL, 0, 0, 0, ARG_MAY_DB|ARG_MAGIC|CFG_ACL,
274 &config_generic, "( OLcfgGlAt:1 NAME 'olcAccess' "
275 "DESC 'Access Control List' "
276 "EQUALITY caseIgnoreMatch "
277 "SYNTAX OMsDirectoryString X-ORDERED 'VALUES' )", NULL, NULL },
278 { "allows", "features", 2, 0, 5, ARG_PRE_DB|ARG_MAGIC,
279 &config_allows, "( OLcfgGlAt:2 NAME 'olcAllows' "
280 "DESC 'Allowed set of deprecated features' "
281 "EQUALITY caseIgnoreMatch "
282 "SYNTAX OMsDirectoryString )", NULL, NULL },
283 { "argsfile", "file", 2, 2, 0, ARG_STRING,
284 &slapd_args_file, "( OLcfgGlAt:3 NAME 'olcArgsFile' "
285 "DESC 'File for slapd command line options' "
286 "EQUALITY caseIgnoreMatch "
287 "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
288 { "attributeoptions", NULL, 0, 0, 0, ARG_MAGIC|CFG_ATOPT,
289 &config_generic, "( OLcfgGlAt:5 NAME 'olcAttributeOptions' "
290 "EQUALITY caseIgnoreMatch "
291 "SYNTAX OMsDirectoryString )", NULL, NULL },
292 { "attribute", "attribute", 2, 0, STRLENOF( "attribute" ),
293 ARG_PAREN|ARG_MAGIC|CFG_ATTR,
294 &config_generic, "( OLcfgGlAt:4 NAME 'olcAttributeTypes' "
295 "DESC 'OpenLDAP attributeTypes' "
296 "EQUALITY caseIgnoreMatch "
297 "SYNTAX OMsDirectoryString X-ORDERED 'VALUES' )",
299 { "authid-rewrite", NULL, 2, 0, STRLENOF( "authid-rewrite" ),
300 #ifdef SLAP_AUTH_REWRITE
301 ARG_MAGIC|CFG_REWRITE|ARG_NO_INSERT, &config_generic,
305 "( OLcfgGlAt:6 NAME 'olcAuthIDRewrite' "
306 "EQUALITY caseIgnoreMatch "
307 "SYNTAX OMsDirectoryString X-ORDERED 'VALUES' )", NULL, NULL },
308 { "authz-policy", "policy", 2, 2, 0, ARG_STRING|ARG_MAGIC|CFG_AZPOLICY,
309 &config_generic, "( OLcfgGlAt:7 NAME 'olcAuthzPolicy' "
310 "EQUALITY caseIgnoreMatch "
311 "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
312 { "authz-regexp", NULL, 3, 3, 0, ARG_MAGIC|CFG_AZREGEXP|ARG_NO_INSERT,
313 &config_generic, "( OLcfgGlAt:8 NAME 'olcAuthzRegexp' "
314 "EQUALITY caseIgnoreMatch "
315 "SYNTAX OMsDirectoryString X-ORDERED 'VALUES' )", NULL, NULL },
316 { "backend", "type", 2, 2, 0, ARG_PRE_DB|ARG_MAGIC|CFG_BACKEND,
317 &config_generic, "( OLcfgGlAt:9 NAME 'olcBackend' "
318 "DESC 'A type of backend' "
319 "EQUALITY caseIgnoreMatch "
320 "SYNTAX OMsDirectoryString SINGLE-VALUE X-ORDERED 'SIBLINGS' )",
322 { "concurrency", "level", 2, 2, 0, ARG_INT|ARG_MAGIC|CFG_CONCUR,
323 &config_generic, "( OLcfgGlAt:10 NAME 'olcConcurrency' "
324 "SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
325 { "conn_max_pending", "max", 2, 2, 0, ARG_INT,
326 &slap_conn_max_pending, "( OLcfgGlAt:11 NAME 'olcConnMaxPending' "
327 "SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
328 { "conn_max_pending_auth", "max", 2, 2, 0, ARG_INT,
329 &slap_conn_max_pending_auth, "( OLcfgGlAt:12 NAME 'olcConnMaxPendingAuth' "
330 "SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
331 { "database", "type", 2, 2, 0, ARG_MAGIC|CFG_DATABASE,
332 &config_generic, "( OLcfgGlAt:13 NAME 'olcDatabase' "
333 "DESC 'The backend type for a database instance' "
334 "SUP olcBackend SINGLE-VALUE X-ORDERED 'SIBLINGS' )", NULL, NULL },
335 { "defaultSearchBase", "dn", 2, 2, 0, ARG_PRE_BI|ARG_PRE_DB|ARG_DN|ARG_QUOTE|ARG_MAGIC,
336 &config_search_base, "( OLcfgGlAt:14 NAME 'olcDefaultSearchBase' "
337 "SYNTAX OMsDN SINGLE-VALUE )", NULL, NULL },
338 { "disallows", "features", 2, 0, 8, ARG_PRE_DB|ARG_MAGIC,
339 &config_disallows, "( OLcfgGlAt:15 NAME 'olcDisallows' "
340 "EQUALITY caseIgnoreMatch "
341 "SYNTAX OMsDirectoryString )", NULL, NULL },
342 { "ditcontentrule", NULL, 0, 0, 0, ARG_MAGIC|CFG_DIT|ARG_NO_DELETE|ARG_NO_INSERT,
343 &config_generic, "( OLcfgGlAt:16 NAME 'olcDitContentRules' "
344 "DESC 'OpenLDAP DIT content rules' "
345 "EQUALITY caseIgnoreMatch "
346 "SYNTAX OMsDirectoryString X-ORDERED 'VALUES' )",
348 { "gentlehup", "on|off", 2, 2, 0,
350 ARG_ON_OFF, &global_gentlehup,
354 "( OLcfgGlAt:17 NAME 'olcGentleHUP' "
355 "SYNTAX OMsBoolean SINGLE-VALUE )", NULL, NULL },
356 { "hidden", "on|off", 2, 2, 0, ARG_DB|ARG_ON_OFF|ARG_MAGIC|CFG_HIDDEN,
357 &config_generic, "( OLcfgDbAt:0.17 NAME 'olcHidden' "
358 "SYNTAX OMsBoolean SINGLE-VALUE )", NULL, NULL },
359 { "idletimeout", "timeout", 2, 2, 0, ARG_INT,
360 &global_idletimeout, "( OLcfgGlAt:18 NAME 'olcIdleTimeout' "
361 "SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
362 { "include", "file", 2, 2, 0, ARG_MAGIC,
363 &config_include, "( OLcfgGlAt:19 NAME 'olcInclude' "
364 "SUP labeledURI )", NULL, NULL },
365 { "index_substr_if_minlen", "min", 2, 2, 0, ARG_INT|ARG_NONZERO|ARG_MAGIC|CFG_SSTR_IF_MIN,
366 &config_generic, "( OLcfgGlAt:20 NAME 'olcIndexSubstrIfMinLen' "
367 "SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
368 { "index_substr_if_maxlen", "max", 2, 2, 0, ARG_INT|ARG_NONZERO|ARG_MAGIC|CFG_SSTR_IF_MAX,
369 &config_generic, "( OLcfgGlAt:21 NAME 'olcIndexSubstrIfMaxLen' "
370 "SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
371 { "index_substr_any_len", "len", 2, 2, 0, ARG_INT|ARG_NONZERO,
372 &index_substr_any_len, "( OLcfgGlAt:22 NAME 'olcIndexSubstrAnyLen' "
373 "SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
374 { "index_substr_any_step", "step", 2, 2, 0, ARG_INT|ARG_NONZERO,
375 &index_substr_any_step, "( OLcfgGlAt:23 NAME 'olcIndexSubstrAnyStep' "
376 "SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
377 { "index_intlen", "len", 2, 2, 0, ARG_INT|ARG_MAGIC|CFG_IX_INTLEN,
378 &config_generic, "( OLcfgGlAt:84 NAME 'olcIndexIntLen' "
379 "SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
380 { "lastmod", "on|off", 2, 2, 0, ARG_DB|ARG_ON_OFF|ARG_MAGIC|CFG_LASTMOD,
381 &config_generic, "( OLcfgDbAt:0.4 NAME 'olcLastMod' "
382 "SYNTAX OMsBoolean SINGLE-VALUE )", NULL, NULL },
383 { "limits", "limits", 2, 0, 0, ARG_DB|ARG_MAGIC|CFG_LIMITS,
384 &config_generic, "( OLcfgDbAt:0.5 NAME 'olcLimits' "
385 "EQUALITY caseIgnoreMatch "
386 "SYNTAX OMsDirectoryString X-ORDERED 'VALUES' )", NULL, NULL },
387 { "localSSF", "ssf", 2, 2, 0, ARG_INT,
388 &local_ssf, "( OLcfgGlAt:26 NAME 'olcLocalSSF' "
389 "SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
390 { "logfile", "file", 2, 2, 0, ARG_STRING|ARG_MAGIC|CFG_LOGFILE,
391 &config_generic, "( OLcfgGlAt:27 NAME 'olcLogFile' "
392 "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
393 { "loglevel", "level", 2, 0, 0, ARG_MAGIC,
394 &config_loglevel, "( OLcfgGlAt:28 NAME 'olcLogLevel' "
395 "EQUALITY caseIgnoreMatch "
396 "SYNTAX OMsDirectoryString )", NULL, NULL },
397 { "maxDerefDepth", "depth", 2, 2, 0, ARG_DB|ARG_INT|ARG_MAGIC|CFG_DEPTH,
398 &config_generic, "( OLcfgDbAt:0.6 NAME 'olcMaxDerefDepth' "
399 "SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
400 { "mirrormode", "on|off", 2, 2, 0, ARG_DB|ARG_ON_OFF|ARG_MAGIC|CFG_MIRRORMODE,
401 &config_generic, "( OLcfgDbAt:0.16 NAME 'olcMirrorMode' "
402 "SYNTAX OMsBoolean SINGLE-VALUE )", NULL, NULL },
403 { "moduleload", "file", 2, 0, 0,
405 ARG_MAGIC|CFG_MODLOAD|ARG_NO_DELETE, &config_generic,
409 "( OLcfgGlAt:30 NAME 'olcModuleLoad' "
410 "EQUALITY caseIgnoreMatch "
411 "SYNTAX OMsDirectoryString X-ORDERED 'VALUES' )", NULL, NULL },
412 { "modulepath", "path", 2, 2, 0,
414 ARG_MAGIC|CFG_MODPATH|ARG_NO_DELETE|ARG_NO_INSERT, &config_generic,
418 "( OLcfgGlAt:31 NAME 'olcModulePath' "
419 "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
420 { "monitoring", "TRUE|FALSE", 2, 2, 0,
421 ARG_MAGIC|CFG_MONITORING|ARG_DB|ARG_ON_OFF, &config_generic,
422 "( OLcfgDbAt:0.18 NAME 'olcMonitoring' "
423 "SYNTAX OMsBoolean SINGLE-VALUE )", NULL, NULL },
424 { "objectclass", "objectclass", 2, 0, 0, ARG_PAREN|ARG_MAGIC|CFG_OC,
425 &config_generic, "( OLcfgGlAt:32 NAME 'olcObjectClasses' "
426 "DESC 'OpenLDAP object classes' "
427 "EQUALITY caseIgnoreMatch "
428 "SYNTAX OMsDirectoryString X-ORDERED 'VALUES' )",
430 { "objectidentifier", "name> <oid", 3, 3, 0, ARG_MAGIC|CFG_OID,
431 &config_generic, "( OLcfgGlAt:33 NAME 'olcObjectIdentifier' "
432 "EQUALITY caseIgnoreMatch "
433 "SYNTAX OMsDirectoryString X-ORDERED 'VALUES' )", NULL, NULL },
434 { "overlay", "overlay", 2, 2, 0, ARG_MAGIC,
435 &config_overlay, "( OLcfgGlAt:34 NAME 'olcOverlay' "
436 "SUP olcDatabase SINGLE-VALUE X-ORDERED 'SIBLINGS' )", NULL, NULL },
437 { "password-crypt-salt-format", "salt", 2, 2, 0, ARG_STRING|ARG_MAGIC|CFG_SALT,
438 &config_generic, "( OLcfgGlAt:35 NAME 'olcPasswordCryptSaltFormat' "
439 "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
440 { "password-hash", "hash", 2, 2, 0, ARG_MAGIC,
441 &config_passwd_hash, "( OLcfgGlAt:36 NAME 'olcPasswordHash' "
442 "EQUALITY caseIgnoreMatch "
443 "SYNTAX OMsDirectoryString )", NULL, NULL },
444 { "pidfile", "file", 2, 2, 0, ARG_STRING,
445 &slapd_pid_file, "( OLcfgGlAt:37 NAME 'olcPidFile' "
446 "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
447 { "plugin", NULL, 0, 0, 0,
449 ARG_MAGIC|CFG_PLUGIN, &config_generic,
453 "( OLcfgGlAt:38 NAME 'olcPlugin' "
454 "EQUALITY caseIgnoreMatch "
455 "SYNTAX OMsDirectoryString )", NULL, NULL },
456 { "pluginlog", "filename", 2, 2, 0,
458 ARG_STRING, &slapi_log_file,
462 "( OLcfgGlAt:39 NAME 'olcPluginLogFile' "
463 "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
464 { "readonly", "on|off", 2, 2, 0, ARG_MAY_DB|ARG_ON_OFF|ARG_MAGIC|CFG_RO,
465 &config_generic, "( OLcfgGlAt:40 NAME 'olcReadOnly' "
466 "SYNTAX OMsBoolean SINGLE-VALUE )", NULL, NULL },
467 { "referral", "url", 2, 2, 0, ARG_MAGIC,
468 &config_referral, "( OLcfgGlAt:41 NAME 'olcReferral' "
469 "SUP labeledURI SINGLE-VALUE )", NULL, NULL },
470 { "replica", "host or uri", 2, 0, 0, ARG_DB|ARG_MAGIC,
471 &config_obsolete, "( OLcfgDbAt:0.7 NAME 'olcReplica' "
472 "EQUALITY caseIgnoreMatch "
473 "SUP labeledURI X-ORDERED 'VALUES' )", NULL, NULL },
474 { "replica-argsfile", NULL, 0, 0, 0, ARG_MAY_DB|ARG_MAGIC,
475 &config_obsolete, "( OLcfgGlAt:43 NAME 'olcReplicaArgsFile' "
476 "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
477 { "replica-pidfile", NULL, 0, 0, 0, ARG_MAY_DB|ARG_MAGIC,
478 &config_obsolete, "( OLcfgGlAt:44 NAME 'olcReplicaPidFile' "
479 "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
480 { "replicationInterval", NULL, 0, 0, 0, ARG_MAY_DB|ARG_MAGIC,
481 &config_obsolete, "( OLcfgGlAt:45 NAME 'olcReplicationInterval' "
482 "SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
483 { "replogfile", "filename", 2, 2, 0, ARG_MAY_DB|ARG_MAGIC,
484 &config_obsolete, "( OLcfgGlAt:46 NAME 'olcReplogFile' "
485 "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
486 { "require", "features", 2, 0, 7, ARG_MAY_DB|ARG_MAGIC,
487 &config_requires, "( OLcfgGlAt:47 NAME 'olcRequires' "
488 "EQUALITY caseIgnoreMatch "
489 "SYNTAX OMsDirectoryString )", NULL, NULL },
490 { "restrict", "op_list", 2, 0, 0, ARG_MAY_DB|ARG_MAGIC,
491 &config_restrict, "( OLcfgGlAt:48 NAME 'olcRestrict' "
492 "EQUALITY caseIgnoreMatch "
493 "SYNTAX OMsDirectoryString )", NULL, NULL },
494 { "reverse-lookup", "on|off", 2, 2, 0,
495 #ifdef SLAPD_RLOOKUPS
496 ARG_ON_OFF, &use_reverse_lookup,
500 "( OLcfgGlAt:49 NAME 'olcReverseLookup' "
501 "SYNTAX OMsBoolean SINGLE-VALUE )", NULL, NULL },
502 { "rootdn", "dn", 2, 2, 0, ARG_DB|ARG_DN|ARG_QUOTE|ARG_MAGIC,
503 &config_rootdn, "( OLcfgDbAt:0.8 NAME 'olcRootDN' "
504 "SYNTAX OMsDN SINGLE-VALUE )", NULL, NULL },
505 { "rootDSE", "file", 2, 2, 0, ARG_MAGIC|CFG_ROOTDSE,
506 &config_generic, "( OLcfgGlAt:51 NAME 'olcRootDSE' "
507 "EQUALITY caseIgnoreMatch "
508 "SYNTAX OMsDirectoryString )", NULL, NULL },
509 { "rootpw", "password", 2, 2, 0, ARG_BERVAL|ARG_DB|ARG_MAGIC,
510 &config_rootpw, "( OLcfgDbAt:0.9 NAME 'olcRootPW' "
511 "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
512 { "sasl-authz-policy", NULL, 2, 2, 0, ARG_MAGIC|CFG_AZPOLICY,
513 &config_generic, NULL, NULL, NULL },
514 { "sasl-host", "host", 2, 2, 0,
515 #ifdef HAVE_CYRUS_SASL
516 ARG_STRING|ARG_UNIQUE, &sasl_host,
520 "( OLcfgGlAt:53 NAME 'olcSaslHost' "
521 "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
522 { "sasl-realm", "realm", 2, 2, 0,
523 #ifdef HAVE_CYRUS_SASL
524 ARG_STRING|ARG_UNIQUE, &global_realm,
528 "( OLcfgGlAt:54 NAME 'olcSaslRealm' "
529 "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
530 { "sasl-regexp", NULL, 3, 3, 0, ARG_MAGIC|CFG_AZREGEXP,
531 &config_generic, NULL, NULL, NULL },
532 { "sasl-secprops", "properties", 2, 2, 0,
533 #ifdef HAVE_CYRUS_SASL
534 ARG_MAGIC|CFG_SASLSECP, &config_generic,
538 "( OLcfgGlAt:56 NAME 'olcSaslSecProps' "
539 "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
540 { "saslRegexp", NULL, 3, 3, 0, ARG_MAGIC|CFG_AZREGEXP,
541 &config_generic, NULL, NULL, NULL },
542 { "schemadn", "dn", 2, 2, 0, ARG_MAY_DB|ARG_DN|ARG_QUOTE|ARG_MAGIC,
543 &config_schema_dn, "( OLcfgGlAt:58 NAME 'olcSchemaDN' "
544 "SYNTAX OMsDN SINGLE-VALUE )", NULL, NULL },
545 { "security", "factors", 2, 0, 0, ARG_MAY_DB|ARG_MAGIC,
546 &config_security, "( OLcfgGlAt:59 NAME 'olcSecurity' "
547 "EQUALITY caseIgnoreMatch "
548 "SYNTAX OMsDirectoryString )", NULL, NULL },
549 { "serverID", "number> <[URI]", 2, 3, 0, ARG_MAGIC|CFG_SERVERID,
550 &config_generic, "( OLcfgGlAt:81 NAME 'olcServerID' "
551 "EQUALITY caseIgnoreMatch "
552 "SYNTAX OMsDirectoryString )", NULL, NULL },
553 { "sizelimit", "limit", 2, 0, 0, ARG_MAY_DB|ARG_MAGIC,
554 &config_sizelimit, "( OLcfgGlAt:60 NAME 'olcSizeLimit' "
555 "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
556 { "sockbuf_max_incoming", "max", 2, 2, 0, ARG_BER_LEN_T,
557 &sockbuf_max_incoming, "( OLcfgGlAt:61 NAME 'olcSockbufMaxIncoming' "
558 "SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
559 { "sockbuf_max_incoming_auth", "max", 2, 2, 0, ARG_BER_LEN_T,
560 &sockbuf_max_incoming_auth, "( OLcfgGlAt:62 NAME 'olcSockbufMaxIncomingAuth' "
561 "SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
562 { "sortvals", "attr", 2, 0, 0, ARG_MAGIC|CFG_SORTVALS,
563 &config_generic, "( OLcfgGlAt:83 NAME 'olcSortVals' "
564 "DESC 'Attributes whose values will always be sorted' "
565 "EQUALITY caseIgnoreMatch "
566 "SYNTAX OMsDirectoryString )", NULL, NULL },
567 { "subordinate", "[advertise]", 1, 2, 0, ARG_DB|ARG_MAGIC,
568 &config_subordinate, "( OLcfgDbAt:0.15 NAME 'olcSubordinate' "
569 "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
570 { "suffix", "suffix", 2, 2, 0, ARG_DB|ARG_DN|ARG_QUOTE|ARG_MAGIC,
571 &config_suffix, "( OLcfgDbAt:0.10 NAME 'olcSuffix' "
572 "EQUALITY distinguishedNameMatch "
573 "SYNTAX OMsDN )", NULL, NULL },
574 { "syncrepl", NULL, 0, 0, 0, ARG_DB|ARG_MAGIC,
575 &syncrepl_config, "( OLcfgDbAt:0.11 NAME 'olcSyncrepl' "
576 "EQUALITY caseIgnoreMatch "
577 "SYNTAX OMsDirectoryString X-ORDERED 'VALUES' )", NULL, NULL },
578 { "threads", "count", 2, 2, 0,
582 ARG_INT|ARG_MAGIC|CFG_THREADS, &config_generic,
584 "( OLcfgGlAt:66 NAME 'olcThreads' "
585 "SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
586 { "timelimit", "limit", 2, 0, 0, ARG_MAY_DB|ARG_MAGIC,
587 &config_timelimit, "( OLcfgGlAt:67 NAME 'olcTimeLimit' "
588 "SYNTAX OMsDirectoryString )", NULL, NULL },
589 { "TLSCACertificateFile", NULL, 0, 0, 0,
591 CFG_TLS_CA_FILE|ARG_STRING|ARG_MAGIC, &config_tls_option,
595 "( OLcfgGlAt:68 NAME 'olcTLSCACertificateFile' "
596 "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
597 { "TLSCACertificatePath", NULL, 0, 0, 0,
599 CFG_TLS_CA_PATH|ARG_STRING|ARG_MAGIC, &config_tls_option,
603 "( OLcfgGlAt:69 NAME 'olcTLSCACertificatePath' "
604 "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
605 { "TLSCertificateFile", NULL, 0, 0, 0,
607 CFG_TLS_CERT_FILE|ARG_STRING|ARG_MAGIC, &config_tls_option,
611 "( OLcfgGlAt:70 NAME 'olcTLSCertificateFile' "
612 "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
613 { "TLSCertificateKeyFile", NULL, 0, 0, 0,
615 CFG_TLS_CERT_KEY|ARG_STRING|ARG_MAGIC, &config_tls_option,
619 "( OLcfgGlAt:71 NAME 'olcTLSCertificateKeyFile' "
620 "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
621 { "TLSCipherSuite", NULL, 0, 0, 0,
623 CFG_TLS_CIPHER|ARG_STRING|ARG_MAGIC, &config_tls_option,
627 "( OLcfgGlAt:72 NAME 'olcTLSCipherSuite' "
628 "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
629 { "TLSCRLCheck", NULL, 0, 0, 0,
630 #if defined(HAVE_TLS) && defined(HAVE_OPENSSL_CRL)
631 CFG_TLS_CRLCHECK|ARG_STRING|ARG_MAGIC, &config_tls_config,
635 "( OLcfgGlAt:73 NAME 'olcTLSCRLCheck' "
636 "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
637 { "TLSCRLFile", NULL, 0, 0, 0,
638 #if defined(HAVE_GNUTLS)
639 CFG_TLS_CRL_FILE|ARG_STRING|ARG_MAGIC, &config_tls_option,
643 "( OLcfgGlAt:82 NAME 'olcTLSCRLFile' "
644 "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
645 { "TLSRandFile", NULL, 0, 0, 0,
647 CFG_TLS_RAND|ARG_STRING|ARG_MAGIC, &config_tls_option,
651 "( OLcfgGlAt:74 NAME 'olcTLSRandFile' "
652 "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
653 { "TLSVerifyClient", NULL, 0, 0, 0,
655 CFG_TLS_VERIFY|ARG_STRING|ARG_MAGIC, &config_tls_config,
659 "( OLcfgGlAt:75 NAME 'olcTLSVerifyClient' "
660 "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
661 { "TLSDHParamFile", NULL, 0, 0, 0,
663 CFG_TLS_DH_FILE|ARG_STRING|ARG_MAGIC, &config_tls_option,
667 "( OLcfgGlAt:77 NAME 'olcTLSDHParamFile' "
668 "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
669 { "tool-threads", "count", 2, 2, 0, ARG_INT|ARG_MAGIC|CFG_TTHREADS,
670 &config_generic, "( OLcfgGlAt:80 NAME 'olcToolThreads' "
671 "SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
672 { "ucdata-path", "path", 2, 2, 0, ARG_IGNORED,
673 NULL, NULL, NULL, NULL },
674 { "updatedn", "dn", 2, 2, 0, ARG_DB|ARG_DN|ARG_QUOTE|ARG_MAGIC,
675 &config_updatedn, "( OLcfgDbAt:0.12 NAME 'olcUpdateDN' "
676 "SYNTAX OMsDN SINGLE-VALUE )", NULL, NULL },
677 { "updateref", "url", 2, 2, 0, ARG_DB|ARG_MAGIC,
678 &config_updateref, "( OLcfgDbAt:0.13 NAME 'olcUpdateRef' "
679 "EQUALITY caseIgnoreMatch "
680 "SUP labeledURI )", NULL, NULL },
681 { NULL, NULL, 0, 0, 0, ARG_IGNORED,
682 NULL, NULL, NULL, NULL }
685 /* Routines to check if a child can be added to this type */
686 static ConfigLDAPadd cfAddSchema, cfAddInclude, cfAddDatabase,
687 cfAddBackend, cfAddModule, cfAddOverlay;
689 /* NOTE: be careful when defining array members
690 * that can be conditionally compiled */
691 #define CFOC_GLOBAL cf_ocs[1]
692 #define CFOC_SCHEMA cf_ocs[2]
693 #define CFOC_BACKEND cf_ocs[3]
694 #define CFOC_DATABASE cf_ocs[4]
695 #define CFOC_OVERLAY cf_ocs[5]
696 #define CFOC_INCLUDE cf_ocs[6]
697 #define CFOC_FRONTEND cf_ocs[7]
699 #define CFOC_MODULE cf_ocs[8]
700 #endif /* SLAPD_MODULES */
702 static ConfigOCs cf_ocs[] = {
705 "DESC 'OpenLDAP configuration object' "
706 "ABSTRACT SUP top )", Cft_Abstract, NULL },
709 "DESC 'OpenLDAP Global configuration options' "
710 "SUP olcConfig STRUCTURAL "
711 "MAY ( cn $ olcConfigFile $ olcConfigDir $ olcAllows $ olcArgsFile $ "
712 "olcAttributeOptions $ olcAuthIDRewrite $ "
713 "olcAuthzPolicy $ olcAuthzRegexp $ olcConcurrency $ "
714 "olcConnMaxPending $ olcConnMaxPendingAuth $ "
715 "olcDisallows $ olcGentleHUP $ olcIdleTimeout $ "
716 "olcIndexSubstrIfMaxLen $ olcIndexSubstrIfMinLen $ "
717 "olcIndexSubstrAnyLen $ olcIndexSubstrAnyStep $ olcIndexIntLen $ "
718 "olcLocalSSF $ olcLogLevel $ "
719 "olcPasswordCryptSaltFormat $ olcPasswordHash $ olcPidFile $ "
720 "olcPluginLogFile $ olcReadOnly $ olcReferral $ "
721 "olcReplogFile $ olcRequires $ olcRestrict $ olcReverseLookup $ "
723 "olcSaslHost $ olcSaslRealm $ olcSaslSecProps $ "
724 "olcSecurity $ olcServerID $ olcSizeLimit $ "
725 "olcSockbufMaxIncoming $ olcSockbufMaxIncomingAuth $ "
726 "olcThreads $ olcTimeLimit $ olcTLSCACertificateFile $ "
727 "olcTLSCACertificatePath $ olcTLSCertificateFile $ "
728 "olcTLSCertificateKeyFile $ olcTLSCipherSuite $ olcTLSCRLCheck $ "
729 "olcTLSRandFile $ olcTLSVerifyClient $ olcTLSDHParamFile $ "
730 "olcTLSCRLFile $ olcToolThreads $ "
731 "olcObjectIdentifier $ olcAttributeTypes $ olcObjectClasses $ "
732 "olcDitContentRules ) )", Cft_Global },
734 "NAME 'olcSchemaConfig' "
735 "DESC 'OpenLDAP schema object' "
736 "SUP olcConfig STRUCTURAL "
737 "MAY ( cn $ olcObjectIdentifier $ olcAttributeTypes $ "
738 "olcObjectClasses $ olcDitContentRules ) )",
739 Cft_Schema, NULL, cfAddSchema },
741 "NAME 'olcBackendConfig' "
742 "DESC 'OpenLDAP Backend-specific options' "
743 "SUP olcConfig STRUCTURAL "
744 "MUST olcBackend )", Cft_Backend, NULL, cfAddBackend },
746 "NAME 'olcDatabaseConfig' "
747 "DESC 'OpenLDAP Database-specific options' "
748 "SUP olcConfig STRUCTURAL "
750 "MAY ( olcHidden $ olcSuffix $ olcSubordinate $ olcAccess $ "
751 "olcLastMod $ olcLimits $ "
752 "olcMaxDerefDepth $ olcPlugin $ olcReadOnly $ olcReplica $ "
753 "olcReplicaArgsFile $ olcReplicaPidFile $ olcReplicationInterval $ "
754 "olcReplogFile $ olcRequires $ olcRestrict $ olcRootDN $ olcRootPW $ "
755 "olcSchemaDN $ olcSecurity $ olcSizeLimit $ olcSyncrepl $ "
756 "olcTimeLimit $ olcUpdateDN $ olcUpdateRef $ olcMirrorMode $ "
758 Cft_Database, NULL, cfAddDatabase },
760 "NAME 'olcOverlayConfig' "
761 "DESC 'OpenLDAP Overlay-specific options' "
762 "SUP olcConfig STRUCTURAL "
763 "MUST olcOverlay )", Cft_Overlay, NULL, cfAddOverlay },
765 "NAME 'olcIncludeFile' "
766 "DESC 'OpenLDAP configuration include file' "
767 "SUP olcConfig STRUCTURAL "
769 "MAY ( cn $ olcRootDSE ) )",
770 /* Used to be Cft_Include, that def has been removed */
771 Cft_Abstract, NULL, cfAddInclude },
772 /* This should be STRUCTURAL like all the other database classes, but
773 * that would mean inheriting all of the olcDatabaseConfig attributes,
774 * which causes them to be merged twice in config_build_entry.
777 "NAME 'olcFrontendConfig' "
778 "DESC 'OpenLDAP frontend configuration' "
780 "MAY ( olcDefaultSearchBase $ olcPasswordHash $ olcSortVals ) )",
781 Cft_Database, NULL, NULL },
784 "NAME 'olcModuleList' "
785 "DESC 'OpenLDAP dynamic module info' "
786 "SUP olcConfig STRUCTURAL "
787 "MAY ( cn $ olcModulePath $ olcModuleLoad ) )",
788 Cft_Module, NULL, cfAddModule },
793 typedef struct ServerID {
794 struct ServerID *si_next;
795 struct berval si_url;
799 static ServerID *sid_list;
801 typedef struct voidList {
802 struct voidList *vl_next;
806 typedef struct ADlist {
807 struct ADlist *al_next;
808 AttributeDescription *al_desc;
811 static ADlist *sortVals;
814 config_generic(ConfigArgs *c) {
817 if ( c->op == SLAP_CONFIG_EMIT ) {
821 c->value_int = ldap_pvt_thread_get_concurrency();
824 c->value_int = connection_pool_max;
827 c->value_int = slap_tool_thread_max;
831 c->value_string = ch_strdup( passwd_salt );
836 if ( c->be->be_limits ) {
840 for ( i=0; c->be->be_limits[i]; i++ ) {
841 bv.bv_len = snprintf( buf, sizeof( buf ), SLAP_X_ORDERED_FMT, i );
842 if ( bv.bv_len >= sizeof( buf ) ) {
843 ber_bvarray_free_x( c->rvalue_vals, NULL );
844 c->rvalue_vals = NULL;
848 bv.bv_val = buf + bv.bv_len;
849 limits_unparse( c->be->be_limits[i], &bv,
850 sizeof( buf ) - ( bv.bv_val - buf ) );
851 bv.bv_len += bv.bv_val - buf;
853 value_add_one( &c->rvalue_vals, &bv );
856 if ( !c->rvalue_vals ) rc = 1;
859 c->value_int = (c->be->be_restrictops & SLAP_RESTRICT_OP_WRITES) ==
860 SLAP_RESTRICT_OP_WRITES;
863 c->value_string = ch_strdup( slap_sasl_getpolicy());
866 slap_sasl_regexp_unparse( &c->rvalue_vals );
867 if ( !c->rvalue_vals ) rc = 1;
869 #ifdef HAVE_CYRUS_SASL
871 struct berval bv = BER_BVNULL;
872 slap_sasl_secprops_unparse( &bv );
873 if ( !BER_BVISNULL( &bv )) {
874 ber_bvarray_add( &c->rvalue_vals, &bv );
882 c->value_int = c->be->be_max_deref_depth;
885 if ( SLAP_DBHIDDEN( c->be )) {
892 ConfigFile *cf = c->ca_private;
894 oidm_unparse( &c->rvalue_vals, NULL, NULL, 1 );
895 else if ( cf->c_om_head )
896 oidm_unparse( &c->rvalue_vals, cf->c_om_head,
898 if ( !c->rvalue_vals )
903 ad_unparse_options( &c->rvalue_vals );
906 ConfigFile *cf = c->ca_private;
908 oc_unparse( &c->rvalue_vals, NULL, NULL, 1 );
909 else if ( cf->c_oc_head )
910 oc_unparse( &c->rvalue_vals, cf->c_oc_head,
912 if ( !c->rvalue_vals )
917 ConfigFile *cf = c->ca_private;
919 at_unparse( &c->rvalue_vals, NULL, NULL, 1 );
920 else if ( cf->c_at_head )
921 at_unparse( &c->rvalue_vals, cf->c_at_head,
923 if ( !c->rvalue_vals )
928 ConfigFile *cf = c->ca_private;
930 cr_unparse( &c->rvalue_vals, NULL, NULL, 1 );
931 else if ( cf->c_cr_head )
932 cr_unparse( &c->rvalue_vals, cf->c_cr_head,
934 if ( !c->rvalue_vals )
941 char *src, *dst, ibuf[11];
942 struct berval bv, abv;
943 for (i=0, a=c->be->be_acl; a; i++,a=a->acl_next) {
944 abv.bv_len = snprintf( ibuf, sizeof( ibuf ), SLAP_X_ORDERED_FMT, i );
945 if ( abv.bv_len >= sizeof( ibuf ) ) {
946 ber_bvarray_free_x( c->rvalue_vals, NULL );
947 c->rvalue_vals = NULL;
951 acl_unparse( a, &bv );
952 abv.bv_val = ch_malloc( abv.bv_len + bv.bv_len + 1 );
953 AC_MEMCPY( abv.bv_val, ibuf, abv.bv_len );
954 /* Turn TAB / EOL into plain space */
955 for (src=bv.bv_val,dst=abv.bv_val+abv.bv_len; *src; src++) {
956 if (isspace((unsigned char)*src)) *dst++ = ' ';
960 if (dst[-1] == ' ') {
964 abv.bv_len = dst - abv.bv_val;
965 ber_bvarray_add( &c->rvalue_vals, &abv );
971 ConfigFile *cf = c->ca_private;
972 if ( cf->c_dseFiles ) {
973 value_add( &c->rvalue_vals, cf->c_dseFiles );
984 for ( si = sid_list; si; si=si->si_next ) {
985 assert( si->si_num >= 0 && si->si_num <= SLAP_SYNC_SID_MAX );
986 if ( !BER_BVISEMPTY( &si->si_url )) {
987 bv.bv_len = si->si_url.bv_len + 6;
988 bv.bv_val = ch_malloc( bv.bv_len );
989 sprintf( bv.bv_val, "%d %s", si->si_num,
991 ber_bvarray_add( &c->rvalue_vals, &bv );
995 bv.bv_len = sprintf( buf, "%d", si->si_num );
996 value_add_one( &c->rvalue_vals, &bv );
1005 c->value_string = ch_strdup( logfileName );
1010 c->value_int = (SLAP_NOLASTMOD(c->be) == 0);
1012 case CFG_MIRRORMODE:
1013 if ( SLAP_SHADOW(c->be))
1014 c->value_int = (SLAP_SINGLE_SHADOW(c->be) == 0);
1018 case CFG_MONITORING:
1019 c->value_int = (SLAP_DBMONITORING(c->be) != 0);
1021 case CFG_SSTR_IF_MAX:
1022 c->value_int = index_substr_if_maxlen;
1024 case CFG_SSTR_IF_MIN:
1025 c->value_int = index_substr_if_minlen;
1028 c->value_int = index_intlen;
1030 case CFG_SORTVALS: {
1033 for ( sv = sortVals; sv; sv = sv->al_next ) {
1034 value_add_one( &c->rvalue_vals, &sv->al_desc->ad_cname );
1038 #ifdef SLAPD_MODULES
1040 ModPaths *mp = c->ca_private;
1043 for (i=0; !BER_BVISNULL(&mp->mp_loads[i]); i++) {
1046 bv.bv_len = snprintf( bv.bv_val, sizeof( c->log ),
1047 SLAP_X_ORDERED_FMT "%s", i,
1048 mp->mp_loads[i].bv_val );
1049 if ( bv.bv_len >= sizeof( c->log ) ) {
1050 ber_bvarray_free_x( c->rvalue_vals, NULL );
1051 c->rvalue_vals = NULL;
1054 value_add_one( &c->rvalue_vals, &bv );
1058 rc = c->rvalue_vals ? 0 : 1;
1062 ModPaths *mp = c->ca_private;
1063 if ( !BER_BVISNULL( &mp->mp_path ))
1064 value_add_one( &c->rvalue_vals, &mp->mp_path );
1066 rc = c->rvalue_vals ? 0 : 1;
1072 slapi_int_plugin_unparse( c->be, &c->rvalue_vals );
1073 if ( !c->rvalue_vals ) rc = 1;
1076 #ifdef SLAP_AUTH_REWRITE
1078 if ( authz_rewrites ) {
1079 struct berval bv, idx;
1084 for ( i=0; !BER_BVISNULL( &authz_rewrites[i] ); i++ ) {
1085 idx.bv_len = snprintf( idx.bv_val, sizeof( ibuf ), SLAP_X_ORDERED_FMT, i );
1086 if ( idx.bv_len >= sizeof( ibuf ) ) {
1087 ber_bvarray_free_x( c->rvalue_vals, NULL );
1088 c->rvalue_vals = NULL;
1091 bv.bv_len = idx.bv_len + authz_rewrites[i].bv_len;
1092 bv.bv_val = ch_malloc( bv.bv_len + 1 );
1093 AC_MEMCPY( bv.bv_val, idx.bv_val, idx.bv_len );
1094 AC_MEMCPY( &bv.bv_val[ idx.bv_len ],
1095 authz_rewrites[i].bv_val,
1096 authz_rewrites[i].bv_len + 1 );
1097 ber_bvarray_add( &c->rvalue_vals, &bv );
1100 if ( !c->rvalue_vals ) rc = 1;
1107 } else if ( c->op == LDAP_MOD_DELETE ) {
1110 /* single-valued attrs, no-ops */
1118 case CFG_MIRRORMODE:
1119 case CFG_MONITORING:
1121 case CFG_SSTR_IF_MAX:
1122 case CFG_SSTR_IF_MIN:
1125 /* no-ops, requires slapd restart */
1130 snprintf(c->log, sizeof( c->log ), "change requires slapd restart");
1134 ch_free( passwd_salt );
1139 ch_free( logfileName );
1147 case CFG_SERVERID: {
1148 ServerID *si, **sip;
1150 for ( i=0, si = sid_list, sip = &sid_list;
1151 si; si = *sip, i++ ) {
1152 if ( c->valx == -1 || i == c->valx ) {
1164 c->be->be_flags &= ~SLAP_DBFLAG_HIDDEN;
1168 index_intlen = SLAP_INDEX_INTLEN_DEFAULT;
1169 index_intlen_strlen = SLAP_INDEX_INTLEN_STRLEN(
1170 SLAP_INDEX_INTLEN_DEFAULT );
1174 if ( c->valx < 0 ) {
1176 if ( c->be == frontendDB )
1179 end = frontendDB->be_acl;
1180 acl_destroy( c->be->be_acl, end );
1181 c->be->be_acl = end;
1184 AccessControl **prev, *a;
1186 for (i=0, prev = &c->be->be_acl; i < c->valx;
1189 prev = &a->acl_next;
1192 *prev = a->acl_next;
1199 /* Can be NULL when undoing a failed add */
1200 if ( c->ca_entry ) {
1201 ce = c->ca_entry->e_private;
1202 /* can't modify the hardcoded schema */
1203 if ( ce->ce_parent->ce_type == Cft_Global )
1207 cfn = c->ca_private;
1208 if ( c->valx < 0 ) {
1211 for( oc = cfn->c_oc_head; oc; oc_next( &oc )) {
1213 if ( oc == cfn->c_oc_tail )
1216 cfn->c_oc_head = cfn->c_oc_tail = NULL;
1218 ObjectClass *oc, *prev = NULL;
1220 for ( i=0, oc=cfn->c_oc_head; i<c->valx; i++) {
1225 if ( cfn->c_oc_tail == oc ) {
1226 cfn->c_oc_tail = prev;
1228 if ( cfn->c_oc_head == oc ) {
1230 cfn->c_oc_head = oc;
1237 /* Can be NULL when undoing a failed add */
1238 if ( c->ca_entry ) {
1239 ce = c->ca_entry->e_private;
1240 /* can't modify the hardcoded schema */
1241 if ( ce->ce_parent->ce_type == Cft_Global )
1245 cfn = c->ca_private;
1246 if ( c->valx < 0 ) {
1249 for( at = cfn->c_at_head; at; at_next( &at )) {
1251 if ( at == cfn->c_at_tail )
1254 cfn->c_at_head = cfn->c_at_tail = NULL;
1256 AttributeType *at, *prev = NULL;
1258 for ( i=0, at=cfn->c_at_head; i<c->valx; i++) {
1263 if ( cfn->c_at_tail == at ) {
1264 cfn->c_at_tail = prev;
1266 if ( cfn->c_at_head == at ) {
1268 cfn->c_at_head = at;
1273 if ( c->valx < 0 ) {
1275 for ( sv = sortVals; sv; sv = sortVals ) {
1276 sortVals = sv->al_next;
1277 sv->al_desc->ad_type->sat_flags &= ~SLAP_AT_SORTED_VAL;
1284 for ( prev = &sortVals, sv = sortVals; i < c->valx; i++ ) {
1285 prev = &sv->al_next;
1288 sv->al_desc->ad_type->sat_flags &= ~SLAP_AT_SORTED_VAL;
1289 *prev = sv->al_next;
1295 /* FIXME: there is no limits_free function */
1297 /* FIXME: there is no ad_option_free function */
1299 /* FIXME: there is no way to remove attributes added by
1313 if(!(c->bi = backend_info(c->argv[1]))) {
1314 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> failed init", c->argv[0] );
1315 Debug(LDAP_DEBUG_ANY, "%s: %s (%s)!\n",
1316 c->log, c->cr_msg, c->argv[1] );
1323 /* NOTE: config is always the first backend!
1325 if ( !strcasecmp( c->argv[1], "config" )) {
1326 c->be = LDAP_STAILQ_FIRST(&backendDB);
1327 } else if ( !strcasecmp( c->argv[1], "frontend" )) {
1330 c->be = backend_db_init(c->argv[1], NULL, c->valx, &c->reply);
1332 if ( c->cr_msg[0] == 0 )
1333 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> failed init", c->argv[0] );
1334 Debug(LDAP_DEBUG_ANY, "%s: %s (%s)\n", c->log, c->cr_msg, c->argv[1] );
1341 ldap_pvt_thread_set_concurrency(c->value_int);
1345 if ( c->value_int < 2 ) {
1346 snprintf( c->cr_msg, sizeof( c->cr_msg ),
1347 "threads=%d smaller than minimum value 2",
1349 Debug(LDAP_DEBUG_ANY, "%s: %s.\n",
1350 c->log, c->cr_msg, 0 );
1353 } else if ( c->value_int > 2 * SLAP_MAX_WORKER_THREADS ) {
1354 snprintf( c->cr_msg, sizeof( c->cr_msg ),
1355 "warning, threads=%d larger than twice the default (2*%d=%d); YMMV",
1356 c->value_int, SLAP_MAX_WORKER_THREADS, 2 * SLAP_MAX_WORKER_THREADS );
1357 Debug(LDAP_DEBUG_ANY, "%s: %s.\n",
1358 c->log, c->cr_msg, 0 );
1360 if ( slapMode & SLAP_SERVER_MODE )
1361 ldap_pvt_thread_pool_maxthreads(&connection_pool, c->value_int);
1362 connection_pool_max = c->value_int; /* save for reference */
1366 if ( slapMode & SLAP_TOOL_MODE )
1367 ldap_pvt_thread_pool_maxthreads(&connection_pool, c->value_int);
1368 slap_tool_thread_max = c->value_int; /* save for reference */
1372 if ( passwd_salt ) ch_free( passwd_salt );
1373 passwd_salt = c->value_string;
1374 lutil_salt_format(passwd_salt);
1378 if(limits_parse(c->be, c->fname, c->lineno, c->argc, c->argv))
1384 c->be->be_restrictops |= SLAP_RESTRICT_OP_WRITES;
1386 c->be->be_restrictops &= ~SLAP_RESTRICT_OP_WRITES;
1390 ch_free(c->value_string);
1391 if (slap_sasl_setpolicy( c->argv[1] )) {
1392 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> unable to parse value", c->argv[0] );
1393 Debug(LDAP_DEBUG_ANY, "%s: %s \"%s\"\n",
1394 c->log, c->cr_msg, c->argv[1] );
1400 if (slap_sasl_regexp_config( c->argv[1], c->argv[2] ))
1404 #ifdef HAVE_CYRUS_SASL
1407 char *txt = slap_sasl_secprops( c->argv[1] );
1409 snprintf( c->cr_msg, sizeof(c->cr_msg), "<%s> %s",
1411 Debug(LDAP_DEBUG_ANY, "%s: %s\n", c->log, c->cr_msg, 0 );
1419 c->be->be_max_deref_depth = c->value_int;
1425 if ( c->op == LDAP_MOD_ADD && c->ca_private && cfn != c->ca_private )
1426 cfn = c->ca_private;
1427 if(parse_oidm(c, 1, &om))
1429 if (!cfn->c_om_head) cfn->c_om_head = om;
1430 cfn->c_om_tail = om;
1435 ObjectClass *oc, *prev;
1437 if ( c->op == LDAP_MOD_ADD && c->ca_private && cfn != c->ca_private )
1438 cfn = c->ca_private;
1439 if ( c->valx < 0 ) {
1440 prev = cfn->c_oc_tail;
1443 /* If adding anything after the first, prev is easy */
1446 for (i=0, oc = cfn->c_oc_head; i<c->valx; i++) {
1451 /* If adding the first, and head exists, find its prev */
1452 if (cfn->c_oc_head) {
1453 for ( oc_start( &oc ); oc != cfn->c_oc_head; ) {
1458 /* else prev is NULL, append to end of global list */
1460 if(parse_oc(c, &oc, prev)) return(1);
1461 if (!cfn->c_oc_head) cfn->c_oc_head = oc;
1462 if (cfn->c_oc_tail == prev) cfn->c_oc_tail = oc;
1467 AttributeType *at, *prev;
1469 if ( c->op == LDAP_MOD_ADD && c->ca_private && cfn != c->ca_private )
1470 cfn = c->ca_private;
1471 if ( c->valx < 0 ) {
1472 prev = cfn->c_at_tail;
1475 /* If adding anything after the first, prev is easy */
1478 for (i=0, at = cfn->c_at_head; i<c->valx; i++) {
1483 /* If adding the first, and head exists, find its prev */
1484 if (cfn->c_at_head) {
1485 for ( at_start( &at ); at != cfn->c_at_head; ) {
1490 /* else prev is NULL, append to end of global list */
1492 if(parse_at(c, &at, prev)) return(1);
1493 if (!cfn->c_at_head) cfn->c_at_head = at;
1494 if (cfn->c_at_tail == prev) cfn->c_at_tail = at;
1501 if ( c->op == LDAP_MOD_ADD && c->ca_private && cfn != c->ca_private )
1502 cfn = c->ca_private;
1503 if(parse_cr(c, &cr)) return(1);
1504 if (!cfn->c_cr_head) cfn->c_cr_head = cr;
1505 cfn->c_cr_tail = cr;
1510 ad_define_option(NULL, NULL, 0);
1511 for(i = 1; i < c->argc; i++)
1512 if(ad_define_option(c->argv[i], c->fname, c->lineno))
1517 if ( c->value_int < SLAP_INDEX_INTLEN_DEFAULT )
1518 c->value_int = SLAP_INDEX_INTLEN_DEFAULT;
1519 else if ( c->value_int > 255 )
1521 index_intlen = c->value_int;
1522 index_intlen_strlen = SLAP_INDEX_INTLEN_STRLEN(
1526 case CFG_SORTVALS: {
1527 ADlist *svnew = NULL, *svtail, *sv;
1529 for ( i = 1; i < c->argc; i++ ) {
1530 AttributeDescription *ad = NULL;
1534 rc = slap_str2ad( c->argv[i], &ad, &text );
1536 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> unknown attribute type #%d",
1539 Debug(LDAP_DEBUG_ANY, "%s: %s %s\n",
1540 c->log, c->cr_msg, c->argv[i] );
1541 for ( sv = svnew; sv; sv = svnew ) {
1542 svnew = sv->al_next;
1547 if (( ad->ad_type->sat_flags & SLAP_AT_ORDERED ) ||
1548 ad->ad_type->sat_single_value ) {
1549 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> inappropriate attribute type #%d",
1551 goto sortval_reject;
1553 sv = ch_malloc( sizeof( ADlist ));
1558 svtail->al_next = sv;
1563 for ( sv = svnew; sv; sv = sv->al_next )
1564 sv->al_desc->ad_type->sat_flags |= SLAP_AT_SORTED_VAL;
1565 for ( sv = sortVals; sv && sv->al_next; sv = sv->al_next );
1567 sv->al_next = svnew;
1574 /* Don't append to the global ACL if we're on a specific DB */
1576 if ( c->be != frontendDB && frontendDB->be_acl && c->valx == -1 ) {
1579 for ( a=c->be->be_acl; a && a != frontendDB->be_acl;
1583 if ( parse_acl(c->be, c->fname, c->lineno, c->argc, c->argv, i ) ) {
1589 if(root_dse_read_file(c->argv[1])) {
1590 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> could not read file", c->argv[0] );
1591 Debug(LDAP_DEBUG_ANY, "%s: %s %s\n",
1592 c->log, c->cr_msg, c->argv[1] );
1597 ber_str2bv( c->argv[1], 0, 1, &bv );
1598 if ( c->op == LDAP_MOD_ADD && c->ca_private && cfn != c->ca_private )
1599 cfn = c->ca_private;
1600 ber_bvarray_add( &cfn->c_dseFiles, &bv );
1606 ServerID *si, **sip;
1609 if ( lutil_atoi( &num, c->argv[1] ) ||
1610 num < 0 || num > SLAP_SYNC_SID_MAX )
1612 snprintf( c->cr_msg, sizeof( c->cr_msg ),
1613 "<%s> illegal server ID", c->argv[0] );
1614 Debug(LDAP_DEBUG_ANY, "%s: %s %s\n",
1615 c->log, c->cr_msg, c->argv[1] );
1618 /* only one value allowed if no URL is given */
1619 if ( c->argc > 2 ) {
1622 if ( sid_list && BER_BVISEMPTY( &sid_list->si_url )) {
1623 snprintf( c->cr_msg, sizeof( c->cr_msg ),
1624 "<%s> only one server ID allowed now", c->argv[0] );
1625 Debug(LDAP_DEBUG_ANY, "%s: %s %s\n",
1626 c->log, c->cr_msg, c->argv[1] );
1630 if ( ldap_url_parse( c->argv[2], &lud )) {
1631 snprintf( c->cr_msg, sizeof( c->cr_msg ),
1632 "<%s> invalid URL", c->argv[0] );
1633 Debug(LDAP_DEBUG_ANY, "%s: %s %s\n",
1634 c->log, c->cr_msg, c->argv[2] );
1637 len = strlen( c->argv[2] );
1638 si = ch_malloc( sizeof(ServerID) + len + 1 );
1639 si->si_url.bv_val = (char *)(si+1);
1640 si->si_url.bv_len = len;
1641 strcpy( si->si_url.bv_val, c->argv[2] );
1644 snprintf( c->cr_msg, sizeof( c->cr_msg ),
1645 "<%s> unqualified server ID not allowed now", c->argv[0] );
1646 Debug(LDAP_DEBUG_ANY, "%s: %s %s\n",
1647 c->log, c->cr_msg, c->argv[1] );
1650 si = ch_malloc( sizeof(ServerID) );
1651 BER_BVZERO( &si->si_url );
1652 slap_serverID = num;
1653 Debug( LDAP_DEBUG_CONFIG,
1655 c->log, slap_serverID, 0 );
1659 for ( sip = &sid_list; *sip; sip = &(*sip)->si_next );
1662 if (( slapMode & SLAP_SERVER_MODE ) && c->argc > 2 ) {
1663 /* If hostname is empty, or is localhost, or matches
1664 * our hostname, this serverID refers to this host.
1665 * Compare it against listeners and ports.
1667 if ( !lud->lud_host || !lud->lud_host[0] ||
1668 !strncasecmp("localhost", lud->lud_host,
1669 STRLENOF("localhost")) ||
1670 !strcasecmp( global_host, lud->lud_host )) {
1671 Listener **l = slapd_get_listeners();
1674 for ( i=0; l[i]; i++ ) {
1677 ldap_url_parse( l[i]->sl_url.bv_val, &lu2 );
1679 if ( strcasecmp( lud->lud_scheme,
1682 if ( lud->lud_port != lu2->lud_port )
1684 /* Listener on ANY address */
1685 if ( !lu2->lud_host || !lu2->lud_host[0] ) {
1689 /* URL on ANY address */
1690 if ( !lud->lud_host || !lud->lud_host[0] ) {
1694 /* Listener has specific host, must
1697 if ( !strcasecmp( lud->lud_host,
1703 ldap_free_urldesc( lu2 );
1705 slap_serverID = si->si_num;
1706 Debug( LDAP_DEBUG_CONFIG,
1707 "%s: SID=%d (listener=%s)\n",
1708 c->log, slap_serverID,
1709 l[i]->sl_url.bv_val );
1716 ldap_free_urldesc( lud );
1720 if ( logfileName ) ch_free( logfileName );
1721 logfileName = c->value_string;
1722 logfile = fopen(logfileName, "w");
1723 if(logfile) lutil_debug_file(logfile);
1727 if(SLAP_NOLASTMODCMD(c->be)) {
1728 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> not available for %s database",
1729 c->argv[0], c->be->bd_info->bi_type );
1730 Debug(LDAP_DEBUG_ANY, "%s: %s\n",
1731 c->log, c->cr_msg, 0 );
1735 SLAP_DBFLAGS(c->be) &= ~SLAP_DBFLAG_NOLASTMOD;
1737 SLAP_DBFLAGS(c->be) |= SLAP_DBFLAG_NOLASTMOD;
1740 case CFG_MIRRORMODE:
1741 if(!SLAP_SHADOW(c->be)) {
1742 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> database is not a shadow",
1744 Debug(LDAP_DEBUG_ANY, "%s: %s\n",
1745 c->log, c->cr_msg, 0 );
1749 SLAP_DBFLAGS(c->be) &= ~SLAP_DBFLAG_SINGLE_SHADOW;
1751 SLAP_DBFLAGS(c->be) |= SLAP_DBFLAG_SINGLE_SHADOW;
1754 case CFG_MONITORING:
1756 SLAP_DBFLAGS(c->be) |= SLAP_DBFLAG_MONITORING;
1758 SLAP_DBFLAGS(c->be) &= ~SLAP_DBFLAG_MONITORING;
1763 SLAP_DBFLAGS(c->be) |= SLAP_DBFLAG_HIDDEN;
1765 SLAP_DBFLAGS(c->be) &= ~SLAP_DBFLAG_HIDDEN;
1768 case CFG_SSTR_IF_MAX:
1769 if (c->value_int < index_substr_if_minlen) {
1770 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> invalid value", c->argv[0] );
1771 Debug(LDAP_DEBUG_ANY, "%s: %s (%d)\n",
1772 c->log, c->cr_msg, c->value_int );
1775 index_substr_if_maxlen = c->value_int;
1778 case CFG_SSTR_IF_MIN:
1779 if (c->value_int > index_substr_if_maxlen) {
1780 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> invalid value", c->argv[0] );
1781 Debug(LDAP_DEBUG_ANY, "%s: %s (%d)\n",
1782 c->log, c->cr_msg, c->value_int );
1785 index_substr_if_minlen = c->value_int;
1788 #ifdef SLAPD_MODULES
1790 /* If we're just adding a module on an existing modpath,
1791 * make sure we've selected the current path.
1793 if ( c->op == LDAP_MOD_ADD && c->ca_private && modcur != c->ca_private ) {
1794 modcur = c->ca_private;
1795 /* This should never fail */
1796 if ( module_path( modcur->mp_path.bv_val )) {
1797 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> module path no longer valid",
1799 Debug(LDAP_DEBUG_ANY, "%s: %s (%s)\n",
1800 c->log, c->cr_msg, modcur->mp_path.bv_val );
1804 if(module_load(c->argv[1], c->argc - 2, (c->argc > 2) ? c->argv + 2 : NULL))
1806 /* Record this load on the current path */
1810 if ( c->op == SLAP_CONFIG_ADD ) {
1811 ptr = c->line + STRLENOF("moduleload");
1812 while (!isspace((unsigned char) *ptr)) ptr++;
1813 while (isspace((unsigned char) *ptr)) ptr++;
1817 ber_str2bv(ptr, 0, 1, &bv);
1818 ber_bvarray_add( &modcur->mp_loads, &bv );
1820 /* Check for any new hardcoded schema */
1821 if ( c->op == LDAP_MOD_ADD && CONFIG_ONLINE_ADD( c )) {
1822 config_check_schema( NULL, &cfBackInfo );
1827 if(module_path(c->argv[1])) return(1);
1828 /* Record which path was used with each module */
1832 if (!modpaths.mp_loads) {
1835 mp = ch_malloc( sizeof( ModPaths ));
1836 modlast->mp_next = mp;
1838 ber_str2bv(c->argv[1], 0, 1, &mp->mp_path);
1840 mp->mp_loads = NULL;
1851 if(slapi_int_read_config(c->be, c->fname, c->lineno, c->argc, c->argv) != LDAP_SUCCESS)
1853 slapi_plugins_used++;
1857 #ifdef SLAP_AUTH_REWRITE
1862 if(slap_sasl_rewrite_config(c->fname, c->lineno, c->argc, c->argv))
1865 if ( c->argc > 1 ) {
1868 /* quote all args but the first */
1869 line = ldap_charray2str( c->argv, "\" \"" );
1870 ber_str2bv( line, 0, 0, &bv );
1871 s = ber_bvchr( &bv, '"' );
1872 assert( s != NULL );
1873 /* move the trailing quote of argv[0] to the end */
1874 AC_MEMCPY( s, s + 1, bv.bv_len - ( s - bv.bv_val ) );
1875 bv.bv_val[ bv.bv_len - 1 ] = '"';
1878 ber_str2bv( c->argv[ 0 ], 0, 1, &bv );
1881 ber_bvarray_add( &authz_rewrites, &bv );
1888 Debug( LDAP_DEBUG_ANY,
1889 "%s: unknown CFG_TYPE %d.\n",
1890 c->log, c->type, 0 );
1899 config_fname(ConfigArgs *c) {
1900 if(c->op == SLAP_CONFIG_EMIT) {
1901 if (c->ca_private) {
1902 ConfigFile *cf = c->ca_private;
1903 value_add_one( &c->rvalue_vals, &cf->c_file );
1912 config_cfdir(ConfigArgs *c) {
1913 if(c->op == SLAP_CONFIG_EMIT) {
1914 if ( !BER_BVISEMPTY( &cfdir )) {
1915 value_add_one( &c->rvalue_vals, &cfdir );
1924 config_search_base(ConfigArgs *c) {
1925 if(c->op == SLAP_CONFIG_EMIT) {
1927 if (!BER_BVISEMPTY(&default_search_base)) {
1928 value_add_one(&c->rvalue_vals, &default_search_base);
1929 value_add_one(&c->rvalue_nvals, &default_search_nbase);
1933 } else if( c->op == LDAP_MOD_DELETE ) {
1934 ch_free( default_search_base.bv_val );
1935 ch_free( default_search_nbase.bv_val );
1936 BER_BVZERO( &default_search_base );
1937 BER_BVZERO( &default_search_nbase );
1941 if(c->bi || c->be != frontendDB) {
1942 Debug(LDAP_DEBUG_ANY, "%s: defaultSearchBase line must appear "
1943 "prior to any backend or database definition\n",
1948 if(default_search_nbase.bv_len) {
1949 free(default_search_base.bv_val);
1950 free(default_search_nbase.bv_val);
1953 default_search_base = c->value_dn;
1954 default_search_nbase = c->value_ndn;
1958 /* For RE23 compatibility we allow this in the global entry
1959 * but we now defer it to the frontend entry to allow modules
1960 * to load new hash types.
1963 config_passwd_hash(ConfigArgs *c) {
1965 if (c->op == SLAP_CONFIG_EMIT) {
1967 /* Don't generate it in the global entry */
1968 if ( c->table == Cft_Global )
1970 for (i=0; default_passwd_hash && default_passwd_hash[i]; i++) {
1971 ber_str2bv(default_passwd_hash[i], 0, 0, &bv);
1972 value_add_one(&c->rvalue_vals, &bv);
1975 } else if ( c->op == LDAP_MOD_DELETE ) {
1976 /* Deleting from global is a no-op, only the frontendDB entry matters */
1977 if ( c->table == Cft_Global )
1979 if ( c->valx < 0 ) {
1980 ldap_charray_free( default_passwd_hash );
1981 default_passwd_hash = NULL;
1984 ch_free( default_passwd_hash[i] );
1985 for (; default_passwd_hash[i]; i++ )
1986 default_passwd_hash[i] = default_passwd_hash[i+1];
1990 for(i = 1; i < c->argc; i++) {
1991 if(!lutil_passwd_scheme(c->argv[i])) {
1992 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> scheme not available", c->argv[0] );
1993 Debug(LDAP_DEBUG_ANY, "%s: %s (%s)\n",
1994 c->log, c->cr_msg, c->argv[i]);
1996 ldap_charray_add(&default_passwd_hash, c->argv[i]);
1999 if(!default_passwd_hash) {
2000 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> no valid hashes found", c->argv[0] );
2001 Debug(LDAP_DEBUG_ANY, "%s: %s\n",
2002 c->log, c->cr_msg, 0 );
2009 config_schema_dn(ConfigArgs *c) {
2010 if ( c->op == SLAP_CONFIG_EMIT ) {
2012 if ( !BER_BVISEMPTY( &c->be->be_schemadn )) {
2013 value_add_one(&c->rvalue_vals, &c->be->be_schemadn);
2014 value_add_one(&c->rvalue_nvals, &c->be->be_schemandn);
2018 } else if ( c->op == LDAP_MOD_DELETE ) {
2019 ch_free( c->be->be_schemadn.bv_val );
2020 ch_free( c->be->be_schemandn.bv_val );
2021 BER_BVZERO( &c->be->be_schemadn );
2022 BER_BVZERO( &c->be->be_schemandn );
2025 ch_free( c->be->be_schemadn.bv_val );
2026 ch_free( c->be->be_schemandn.bv_val );
2027 c->be->be_schemadn = c->value_dn;
2028 c->be->be_schemandn = c->value_ndn;
2033 config_sizelimit(ConfigArgs *c) {
2035 struct slap_limits_set *lim = &c->be->be_def_limit;
2036 if (c->op == SLAP_CONFIG_EMIT) {
2041 limits_unparse_one( lim, SLAP_LIMIT_SIZE, &bv, sizeof( buf ) );
2042 if ( !BER_BVISEMPTY( &bv ))
2043 value_add_one( &c->rvalue_vals, &bv );
2047 } else if ( c->op == LDAP_MOD_DELETE ) {
2048 /* Reset to defaults */
2049 lim->lms_s_soft = SLAPD_DEFAULT_SIZELIMIT;
2050 lim->lms_s_hard = 0;
2051 lim->lms_s_unchecked = -1;
2053 lim->lms_s_pr_hide = 0;
2054 lim->lms_s_pr_total = 0;
2057 for(i = 1; i < c->argc; i++) {
2058 if(!strncasecmp(c->argv[i], "size", 4)) {
2059 rc = limits_parse_one(c->argv[i], lim);
2061 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> unable to parse value", c->argv[0] );
2062 Debug(LDAP_DEBUG_ANY, "%s: %s \"%s\"\n",
2063 c->log, c->cr_msg, c->argv[i]);
2067 if(!strcasecmp(c->argv[i], "unlimited")) {
2068 lim->lms_s_soft = -1;
2070 if ( lutil_atoix( &lim->lms_s_soft, c->argv[i], 0 ) != 0 ) {
2071 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> unable to parse limit", c->argv[0]);
2072 Debug(LDAP_DEBUG_ANY, "%s: %s \"%s\"\n",
2073 c->log, c->cr_msg, c->argv[i]);
2077 lim->lms_s_hard = 0;
2084 config_timelimit(ConfigArgs *c) {
2086 struct slap_limits_set *lim = &c->be->be_def_limit;
2087 if (c->op == SLAP_CONFIG_EMIT) {
2092 limits_unparse_one( lim, SLAP_LIMIT_TIME, &bv, sizeof( buf ) );
2093 if ( !BER_BVISEMPTY( &bv ))
2094 value_add_one( &c->rvalue_vals, &bv );
2098 } else if ( c->op == LDAP_MOD_DELETE ) {
2099 /* Reset to defaults */
2100 lim->lms_t_soft = SLAPD_DEFAULT_TIMELIMIT;
2101 lim->lms_t_hard = 0;
2104 for(i = 1; i < c->argc; i++) {
2105 if(!strncasecmp(c->argv[i], "time", 4)) {
2106 rc = limits_parse_one(c->argv[i], lim);
2108 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> unable to parse value", c->argv[0] );
2109 Debug(LDAP_DEBUG_ANY, "%s: %s \"%s\"\n",
2110 c->log, c->cr_msg, c->argv[i]);
2114 if(!strcasecmp(c->argv[i], "unlimited")) {
2115 lim->lms_t_soft = -1;
2117 if ( lutil_atoix( &lim->lms_t_soft, c->argv[i], 0 ) != 0 ) {
2118 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> unable to parse limit", c->argv[0]);
2119 Debug(LDAP_DEBUG_ANY, "%s: %s \"%s\"\n",
2120 c->log, c->cr_msg, c->argv[i]);
2124 lim->lms_t_hard = 0;
2131 config_overlay(ConfigArgs *c) {
2132 if (c->op == SLAP_CONFIG_EMIT) {
2134 } else if ( c->op == LDAP_MOD_DELETE ) {
2137 if(c->argv[1][0] == '-' && overlay_config(c->be, &c->argv[1][1],
2140 Debug( LDAP_DEBUG_ANY,
2141 "%s: (optional) %s overlay \"%s\" configuration failed.\n",
2142 c->log, c->be == frontendDB ? "global " : "", &c->argv[1][1]);
2144 } else if(overlay_config(c->be, c->argv[1], c->valx, &c->bi)) {
2151 config_subordinate(ConfigArgs *c)
2157 case SLAP_CONFIG_EMIT:
2158 if ( SLAP_GLUE_SUBORDINATE( c->be )) {
2161 bv.bv_val = SLAP_GLUE_ADVERTISE( c->be ) ? "advertise" : "TRUE";
2162 bv.bv_len = SLAP_GLUE_ADVERTISE( c->be ) ? STRLENOF("advertise") :
2165 value_add_one( &c->rvalue_vals, &bv );
2169 case LDAP_MOD_DELETE:
2170 if ( !c->line || strcasecmp( c->line, "advertise" )) {
2171 glue_sub_del( c->be );
2173 SLAP_DBFLAGS( c->be ) &= ~SLAP_DBFLAG_GLUE_ADVERTISE;
2178 case SLAP_CONFIG_ADD:
2179 advertise = ( c->argc == 2 && !strcasecmp( c->argv[1], "advertise" ));
2180 rc = glue_sub_add( c->be, advertise, CONFIG_ONLINE_ADD( c ));
2187 config_suffix(ConfigArgs *c)
2190 struct berval pdn, ndn;
2191 char *notallowed = NULL;
2193 if ( c->be == frontendDB ) {
2194 notallowed = "frontend";
2196 } else if ( SLAP_MONITOR(c->be) ) {
2197 notallowed = "monitor";
2199 } else if ( SLAP_CONFIG(c->be) ) {
2200 notallowed = "config";
2203 if ( notallowed != NULL ) {
2204 char buf[ SLAP_TEXT_BUFLEN ] = { '\0' };
2208 case LDAP_MOD_DELETE:
2209 case LDAP_MOD_REPLACE:
2210 case LDAP_MOD_INCREMENT:
2211 case SLAP_CONFIG_ADD:
2212 if ( !BER_BVISNULL( &c->value_dn ) ) {
2213 snprintf( buf, sizeof( buf ), "<%s> ",
2214 c->value_dn.bv_val );
2217 Debug(LDAP_DEBUG_ANY,
2218 "%s: suffix %snot allowed in %s database.\n",
2219 c->log, buf, notallowed );
2222 case SLAP_CONFIG_EMIT:
2223 /* don't complain when emitting... */
2227 /* FIXME: don't know what values may be valid;
2228 * please remove assertion, or add legal values
2229 * to either block */
2237 if (c->op == SLAP_CONFIG_EMIT) {
2238 if ( c->be->be_suffix == NULL
2239 || BER_BVISNULL( &c->be->be_suffix[0] ) )
2243 value_add( &c->rvalue_vals, c->be->be_suffix );
2244 value_add( &c->rvalue_nvals, c->be->be_nsuffix );
2247 } else if ( c->op == LDAP_MOD_DELETE ) {
2248 if ( c->valx < 0 ) {
2249 ber_bvarray_free( c->be->be_suffix );
2250 ber_bvarray_free( c->be->be_nsuffix );
2251 c->be->be_suffix = NULL;
2252 c->be->be_nsuffix = NULL;
2255 ch_free( c->be->be_suffix[i].bv_val );
2256 ch_free( c->be->be_nsuffix[i].bv_val );
2258 c->be->be_suffix[i] = c->be->be_suffix[i+1];
2259 c->be->be_nsuffix[i] = c->be->be_nsuffix[i+1];
2261 } while ( !BER_BVISNULL( &c->be->be_suffix[i] ) );
2266 #ifdef SLAPD_MONITOR_DN
2267 if(!strcasecmp(c->argv[1], SLAPD_MONITOR_DN)) {
2268 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> DN is reserved for monitoring slapd",
2270 Debug(LDAP_DEBUG_ANY, "%s: %s (%s)\n",
2271 c->log, c->cr_msg, SLAPD_MONITOR_DN);
2276 if (SLAP_DB_ONE_SUFFIX( c->be ) && c->be->be_suffix ) {
2277 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> Only one suffix is allowed on this %s backend",
2278 c->argv[0], c->be->bd_info->bi_type );
2279 Debug(LDAP_DEBUG_ANY, "%s: %s\n",
2280 c->log, c->cr_msg, 0);
2287 if (SLAP_DBHIDDEN( c->be ))
2290 tbe = select_backend(&ndn, 0);
2292 Debug( LDAP_DEBUG_ANY, "%s: suffix already served by this backend!.\n",
2298 BackendDB *b2 = tbe;
2300 /* Does tbe precede be? */
2301 while (( b2 = LDAP_STAILQ_NEXT(b2, be_next )) && b2 && b2 != c->be );
2304 char *type = tbe->bd_info->bi_type;
2306 if ( overlay_is_over( tbe ) ) {
2307 slap_overinfo *oi = (slap_overinfo *)tbe->bd_info->bi_private;
2308 type = oi->oi_orig->bi_type;
2311 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> namingContext \"%s\" "
2312 "already served by a preceding %s database",
2313 c->argv[0], pdn.bv_val, type );
2314 Debug(LDAP_DEBUG_ANY, "%s: %s serving namingContext \"%s\"\n",
2315 c->log, c->cr_msg, tbe->be_suffix[0].bv_val);
2321 if(pdn.bv_len == 0 && default_search_nbase.bv_len) {
2322 Debug(LDAP_DEBUG_ANY, "%s: suffix DN empty and default search "
2323 "base provided \"%s\" (assuming okay)\n",
2324 c->log, default_search_base.bv_val, 0);
2326 ber_bvarray_add(&c->be->be_suffix, &pdn);
2327 ber_bvarray_add(&c->be->be_nsuffix, &ndn);
2332 config_rootdn(ConfigArgs *c) {
2333 if (c->op == SLAP_CONFIG_EMIT) {
2334 if ( !BER_BVISNULL( &c->be->be_rootdn )) {
2335 value_add_one(&c->rvalue_vals, &c->be->be_rootdn);
2336 value_add_one(&c->rvalue_nvals, &c->be->be_rootndn);
2341 } else if ( c->op == LDAP_MOD_DELETE ) {
2342 ch_free( c->be->be_rootdn.bv_val );
2343 ch_free( c->be->be_rootndn.bv_val );
2344 BER_BVZERO( &c->be->be_rootdn );
2345 BER_BVZERO( &c->be->be_rootndn );
2348 if ( !BER_BVISNULL( &c->be->be_rootdn )) {
2349 ch_free( c->be->be_rootdn.bv_val );
2350 ch_free( c->be->be_rootndn.bv_val );
2352 c->be->be_rootdn = c->value_dn;
2353 c->be->be_rootndn = c->value_ndn;
2358 config_rootpw(ConfigArgs *c) {
2361 if (c->op == SLAP_CONFIG_EMIT) {
2362 if (!BER_BVISEMPTY(&c->be->be_rootpw)) {
2363 /* don't copy, because "rootpw" is marked
2365 c->value_bv = c->be->be_rootpw;
2369 } else if ( c->op == LDAP_MOD_DELETE ) {
2370 ch_free( c->be->be_rootpw.bv_val );
2371 BER_BVZERO( &c->be->be_rootpw );
2375 tbe = select_backend(&c->be->be_rootndn, 0);
2377 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> can only be set when rootdn is under suffix",
2379 Debug(LDAP_DEBUG_ANY, "%s: %s\n",
2380 c->log, c->cr_msg, 0);
2383 if ( !BER_BVISNULL( &c->be->be_rootpw ))
2384 ch_free( c->be->be_rootpw.bv_val );
2385 c->be->be_rootpw = c->value_bv;
2390 config_restrict(ConfigArgs *c) {
2391 slap_mask_t restrictops = 0;
2393 slap_verbmasks restrictable_ops[] = {
2394 { BER_BVC("bind"), SLAP_RESTRICT_OP_BIND },
2395 { BER_BVC("add"), SLAP_RESTRICT_OP_ADD },
2396 { BER_BVC("modify"), SLAP_RESTRICT_OP_MODIFY },
2397 { BER_BVC("rename"), SLAP_RESTRICT_OP_RENAME },
2398 { BER_BVC("modrdn"), 0 },
2399 { BER_BVC("delete"), SLAP_RESTRICT_OP_DELETE },
2400 { BER_BVC("search"), SLAP_RESTRICT_OP_SEARCH },
2401 { BER_BVC("compare"), SLAP_RESTRICT_OP_COMPARE },
2402 { BER_BVC("read"), SLAP_RESTRICT_OP_READS },
2403 { BER_BVC("write"), SLAP_RESTRICT_OP_WRITES },
2404 { BER_BVC("extended"), SLAP_RESTRICT_OP_EXTENDED },
2405 { BER_BVC("extended=" LDAP_EXOP_START_TLS ), SLAP_RESTRICT_EXOP_START_TLS },
2406 { BER_BVC("extended=" LDAP_EXOP_MODIFY_PASSWD ), SLAP_RESTRICT_EXOP_MODIFY_PASSWD },
2407 { BER_BVC("extended=" LDAP_EXOP_X_WHO_AM_I ), SLAP_RESTRICT_EXOP_WHOAMI },
2408 { BER_BVC("extended=" LDAP_EXOP_X_CANCEL ), SLAP_RESTRICT_EXOP_CANCEL },
2409 { BER_BVC("all"), SLAP_RESTRICT_OP_ALL },
2413 if (c->op == SLAP_CONFIG_EMIT) {
2414 return mask_to_verbs( restrictable_ops, c->be->be_restrictops,
2416 } else if ( c->op == LDAP_MOD_DELETE ) {
2418 c->be->be_restrictops = 0;
2420 restrictops = verb_to_mask( c->line, restrictable_ops );
2421 c->be->be_restrictops ^= restrictops;
2425 i = verbs_to_mask( c->argc, c->argv, restrictable_ops, &restrictops );
2427 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> unknown operation", c->argv[0] );
2428 Debug(LDAP_DEBUG_ANY, "%s: %s %s\n",
2429 c->log, c->cr_msg, c->argv[i]);
2432 if ( restrictops & SLAP_RESTRICT_OP_EXTENDED )
2433 restrictops &= ~SLAP_RESTRICT_EXOP_MASK;
2434 c->be->be_restrictops |= restrictops;
2439 config_allows(ConfigArgs *c) {
2440 slap_mask_t allows = 0;
2442 slap_verbmasks allowable_ops[] = {
2443 { BER_BVC("bind_v2"), SLAP_ALLOW_BIND_V2 },
2444 { BER_BVC("bind_anon_cred"), SLAP_ALLOW_BIND_ANON_CRED },
2445 { BER_BVC("bind_anon_dn"), SLAP_ALLOW_BIND_ANON_DN },
2446 { BER_BVC("update_anon"), SLAP_ALLOW_UPDATE_ANON },
2447 { BER_BVC("proxy_authz_anon"), SLAP_ALLOW_PROXY_AUTHZ_ANON },
2450 if (c->op == SLAP_CONFIG_EMIT) {
2451 return mask_to_verbs( allowable_ops, global_allows, &c->rvalue_vals );
2452 } else if ( c->op == LDAP_MOD_DELETE ) {
2456 allows = verb_to_mask( c->line, allowable_ops );
2457 global_allows ^= allows;
2461 i = verbs_to_mask(c->argc, c->argv, allowable_ops, &allows);
2463 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> unknown feature", c->argv[0] );
2464 Debug(LDAP_DEBUG_ANY, "%s: %s %s\n",
2465 c->log, c->cr_msg, c->argv[i]);
2468 global_allows |= allows;
2473 config_disallows(ConfigArgs *c) {
2474 slap_mask_t disallows = 0;
2476 slap_verbmasks disallowable_ops[] = {
2477 { BER_BVC("bind_anon"), SLAP_DISALLOW_BIND_ANON },
2478 { BER_BVC("bind_simple"), SLAP_DISALLOW_BIND_SIMPLE },
2479 { BER_BVC("tls_2_anon"), SLAP_DISALLOW_TLS_2_ANON },
2480 { BER_BVC("tls_authc"), SLAP_DISALLOW_TLS_AUTHC },
2483 if (c->op == SLAP_CONFIG_EMIT) {
2484 return mask_to_verbs( disallowable_ops, global_disallows, &c->rvalue_vals );
2485 } else if ( c->op == LDAP_MOD_DELETE ) {
2487 global_disallows = 0;
2489 disallows = verb_to_mask( c->line, disallowable_ops );
2490 global_disallows ^= disallows;
2494 i = verbs_to_mask(c->argc, c->argv, disallowable_ops, &disallows);
2496 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> unknown feature", c->argv[0] );
2497 Debug(LDAP_DEBUG_ANY, "%s: %s %s\n",
2498 c->log, c->cr_msg, c->argv[i]);
2501 global_disallows |= disallows;
2506 config_requires(ConfigArgs *c) {
2507 slap_mask_t requires = frontendDB->be_requires;
2508 int i, argc = c->argc;
2509 char **argv = c->argv;
2511 slap_verbmasks requires_ops[] = {
2512 { BER_BVC("bind"), SLAP_REQUIRE_BIND },
2513 { BER_BVC("LDAPv3"), SLAP_REQUIRE_LDAP_V3 },
2514 { BER_BVC("authc"), SLAP_REQUIRE_AUTHC },
2515 { BER_BVC("sasl"), SLAP_REQUIRE_SASL },
2516 { BER_BVC("strong"), SLAP_REQUIRE_STRONG },
2519 if (c->op == SLAP_CONFIG_EMIT) {
2520 return mask_to_verbs( requires_ops, c->be->be_requires, &c->rvalue_vals );
2521 } else if ( c->op == LDAP_MOD_DELETE ) {
2523 c->be->be_requires = 0;
2525 requires = verb_to_mask( c->line, requires_ops );
2526 c->be->be_requires ^= requires;
2530 /* "none" can only be first, to wipe out default/global values */
2531 if ( strcasecmp( c->argv[ 1 ], "none" ) == 0 ) {
2536 i = verbs_to_mask(argc, argv, requires_ops, &requires);
2538 if (strcasecmp( c->argv[ i ], "none" ) == 0 ) {
2539 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> \"none\" (#%d) must be listed first", c->argv[0], i - 1 );
2540 Debug(LDAP_DEBUG_ANY, "%s: %s\n",
2541 c->log, c->cr_msg, 0);
2543 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> unknown feature #%d", c->argv[0], i - 1 );
2544 Debug(LDAP_DEBUG_ANY, "%s: %s \"%s\"\n",
2545 c->log, c->cr_msg, c->argv[i]);
2549 c->be->be_requires = requires;
2553 static slap_verbmasks *loglevel_ops;
2556 loglevel_init( void )
2558 slap_verbmasks lo[] = {
2559 { BER_BVC("Any"), -1 },
2560 { BER_BVC("Trace"), LDAP_DEBUG_TRACE },
2561 { BER_BVC("Packets"), LDAP_DEBUG_PACKETS },
2562 { BER_BVC("Args"), LDAP_DEBUG_ARGS },
2563 { BER_BVC("Conns"), LDAP_DEBUG_CONNS },
2564 { BER_BVC("BER"), LDAP_DEBUG_BER },
2565 { BER_BVC("Filter"), LDAP_DEBUG_FILTER },
2566 { BER_BVC("Config"), LDAP_DEBUG_CONFIG },
2567 { BER_BVC("ACL"), LDAP_DEBUG_ACL },
2568 { BER_BVC("Stats"), LDAP_DEBUG_STATS },
2569 { BER_BVC("Stats2"), LDAP_DEBUG_STATS2 },
2570 { BER_BVC("Shell"), LDAP_DEBUG_SHELL },
2571 { BER_BVC("Parse"), LDAP_DEBUG_PARSE },
2572 #if 0 /* no longer used (nor supported) */
2573 { BER_BVC("Cache"), LDAP_DEBUG_CACHE },
2574 { BER_BVC("Index"), LDAP_DEBUG_INDEX },
2576 { BER_BVC("Sync"), LDAP_DEBUG_SYNC },
2577 { BER_BVC("None"), LDAP_DEBUG_NONE },
2581 return slap_verbmasks_init( &loglevel_ops, lo );
2585 loglevel_destroy( void )
2587 if ( loglevel_ops ) {
2588 (void)slap_verbmasks_destroy( loglevel_ops );
2590 loglevel_ops = NULL;
2593 static slap_mask_t loglevel_ignore[] = { -1, 0 };
2596 slap_loglevel_register( slap_mask_t m, struct berval *s )
2600 if ( loglevel_ops == NULL ) {
2604 rc = slap_verbmasks_append( &loglevel_ops, m, s, loglevel_ignore );
2607 Debug( LDAP_DEBUG_ANY, "slap_loglevel_register(%lu, \"%s\") failed\n",
2615 slap_loglevel_get( struct berval *s, int *l )
2620 if ( loglevel_ops == NULL ) {
2624 for ( m = 0, i = 1; !BER_BVISNULL( &loglevel_ops[ i ].word ); i++ ) {
2625 m |= loglevel_ops[ i ].mask;
2628 for ( i = 1; m & i; i <<= 1 )
2635 rc = slap_verbmasks_append( &loglevel_ops, i, s, loglevel_ignore );
2638 Debug( LDAP_DEBUG_ANY, "slap_loglevel_get(%lu, \"%s\") failed\n",
2649 str2loglevel( const char *s, int *l )
2653 if ( loglevel_ops == NULL ) {
2657 i = verb_to_mask( s, loglevel_ops );
2659 if ( BER_BVISNULL( &loglevel_ops[ i ].word ) ) {
2663 *l = loglevel_ops[ i ].mask;
2669 loglevel2str( int l )
2671 struct berval bv = BER_BVNULL;
2673 loglevel2bv( l, &bv );
2679 loglevel2bv( int l, struct berval *bv )
2681 if ( loglevel_ops == NULL ) {
2687 return enum_to_verb( loglevel_ops, l, bv ) == -1;
2691 loglevel2bvarray( int l, BerVarray *bva )
2693 if ( loglevel_ops == NULL ) {
2697 return mask_to_verbs( loglevel_ops, l, bva );
2701 loglevel_print( FILE *out )
2705 if ( loglevel_ops == NULL ) {
2709 fprintf( out, "Installed log subsystems:\n\n" );
2710 for ( i = 0; !BER_BVISNULL( &loglevel_ops[ i ].word ); i++ ) {
2711 fprintf( out, "\t%-30s (%lu)\n",
2712 loglevel_ops[ i ].word.bv_val,
2713 loglevel_ops[ i ].mask );
2716 fprintf( out, "\nNOTE: custom log subsystems may be later installed "
2717 "by specific code\n\n" );
2722 static int config_syslog;
2725 config_loglevel(ConfigArgs *c) {
2728 if ( loglevel_ops == NULL ) {
2732 if (c->op == SLAP_CONFIG_EMIT) {
2733 /* Get default or commandline slapd setting */
2734 if ( ldap_syslog && !config_syslog )
2735 config_syslog = ldap_syslog;
2736 return loglevel2bvarray( config_syslog, &c->rvalue_vals );
2738 } else if ( c->op == LDAP_MOD_DELETE ) {
2742 int level = verb_to_mask( c->line, loglevel_ops );
2743 config_syslog ^= level;
2745 if ( slapMode & SLAP_SERVER_MODE ) {
2746 ldap_syslog = config_syslog;
2751 for( i=1; i < c->argc; i++ ) {
2754 if ( isdigit((unsigned char)c->argv[i][0]) || c->argv[i][0] == '-' ) {
2755 if( lutil_atoi( &level, c->argv[i] ) != 0 ) {
2756 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> unable to parse level", c->argv[0] );
2757 Debug( LDAP_DEBUG_ANY, "%s: %s \"%s\"\n",
2758 c->log, c->cr_msg, c->argv[i]);
2762 if ( str2loglevel( c->argv[i], &level ) ) {
2763 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> unknown level", c->argv[0] );
2764 Debug( LDAP_DEBUG_ANY, "%s: %s \"%s\"\n",
2765 c->log, c->cr_msg, c->argv[i]);
2769 /* Explicitly setting a zero clears all the levels */
2771 config_syslog |= level;
2775 if ( slapMode & SLAP_SERVER_MODE ) {
2776 ldap_syslog = config_syslog;
2782 config_referral(ConfigArgs *c) {
2784 if (c->op == SLAP_CONFIG_EMIT) {
2785 if ( default_referral ) {
2786 value_add( &c->rvalue_vals, default_referral );
2791 } else if ( c->op == LDAP_MOD_DELETE ) {
2792 if ( c->valx < 0 ) {
2793 ber_bvarray_free( default_referral );
2794 default_referral = NULL;
2797 ch_free( default_referral[i].bv_val );
2798 for (; default_referral[i].bv_val; i++ )
2799 default_referral[i] = default_referral[i+1];
2803 if(validate_global_referral(c->argv[1])) {
2804 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> invalid URL", c->argv[0] );
2805 Debug(LDAP_DEBUG_ANY, "%s: %s (%s)\n",
2806 c->log, c->cr_msg, c->argv[1]);
2810 ber_str2bv(c->argv[1], 0, 0, &val);
2811 if(value_add_one(&default_referral, &val)) return(LDAP_OTHER);
2819 { BER_BVC("ssf="), offsetof(slap_ssf_set_t, sss_ssf) },
2820 { BER_BVC("transport="), offsetof(slap_ssf_set_t, sss_transport) },
2821 { BER_BVC("tls="), offsetof(slap_ssf_set_t, sss_tls) },
2822 { BER_BVC("sasl="), offsetof(slap_ssf_set_t, sss_sasl) },
2823 { BER_BVC("update_ssf="), offsetof(slap_ssf_set_t, sss_update_ssf) },
2824 { BER_BVC("update_transport="), offsetof(slap_ssf_set_t, sss_update_transport) },
2825 { BER_BVC("update_tls="), offsetof(slap_ssf_set_t, sss_update_tls) },
2826 { BER_BVC("update_sasl="), offsetof(slap_ssf_set_t, sss_update_sasl) },
2827 { BER_BVC("simple_bind="), offsetof(slap_ssf_set_t, sss_simple_bind) },
2832 config_security(ConfigArgs *c) {
2833 slap_ssf_set_t *set = &c->be->be_ssf_set;
2836 if (c->op == SLAP_CONFIG_EMIT) {
2842 for (i=0; !BER_BVISNULL( &sec_keys[i].key ); i++) {
2843 tgt = (slap_ssf_t *)((char *)set + sec_keys[i].off);
2846 bv.bv_len = snprintf( numbuf, sizeof( numbuf ), "%u", *tgt );
2847 if ( bv.bv_len >= sizeof( numbuf ) ) {
2848 ber_bvarray_free_x( c->rvalue_vals, NULL );
2849 c->rvalue_vals = NULL;
2853 bv.bv_len += sec_keys[i].key.bv_len;
2854 bv.bv_val = ch_malloc( bv.bv_len + 1);
2855 next = lutil_strcopy( bv.bv_val, sec_keys[i].key.bv_val );
2856 strcpy( next, numbuf );
2857 ber_bvarray_add( &c->rvalue_vals, &bv );
2862 for(i = 1; i < c->argc; i++) {
2863 slap_ssf_t *tgt = NULL;
2865 for ( j=0; !BER_BVISNULL( &sec_keys[j].key ); j++ ) {
2866 if(!strncasecmp(c->argv[i], sec_keys[j].key.bv_val,
2867 sec_keys[j].key.bv_len)) {
2868 src = c->argv[i] + sec_keys[j].key.bv_len;
2869 tgt = (slap_ssf_t *)((char *)set + sec_keys[j].off);
2874 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> unknown factor", c->argv[0] );
2875 Debug(LDAP_DEBUG_ANY, "%s: %s %s\n",
2876 c->log, c->cr_msg, c->argv[i]);
2880 if ( lutil_atou( tgt, src ) != 0 ) {
2881 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> unable to parse factor", c->argv[0] );
2882 Debug(LDAP_DEBUG_ANY, "%s: %s \"%s\"\n",
2883 c->log, c->cr_msg, c->argv[i]);
2891 anlist_unparse( AttributeName *an, char *ptr, ber_len_t buflen ) {
2895 for (; !BER_BVISNULL( &an->an_name ); an++) {
2896 /* if buflen == 0, assume the buffer size has been
2897 * already checked otherwise */
2898 if ( buflen > 0 && buflen - ( ptr - start ) < comma + an->an_name.bv_len ) return NULL;
2899 if ( comma ) *ptr++ = ',';
2900 ptr = lutil_strcopy( ptr, an->an_name.bv_val );
2907 config_updatedn(ConfigArgs *c) {
2908 if (c->op == SLAP_CONFIG_EMIT) {
2909 if (!BER_BVISEMPTY(&c->be->be_update_ndn)) {
2910 value_add_one(&c->rvalue_vals, &c->be->be_update_ndn);
2911 value_add_one(&c->rvalue_nvals, &c->be->be_update_ndn);
2915 } else if ( c->op == LDAP_MOD_DELETE ) {
2916 ch_free( c->be->be_update_ndn.bv_val );
2917 BER_BVZERO( &c->be->be_update_ndn );
2918 SLAP_DBFLAGS(c->be) ^= (SLAP_DBFLAG_SHADOW | SLAP_DBFLAG_SLURP_SHADOW);
2921 if(SLAP_SHADOW(c->be)) {
2922 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> database already shadowed", c->argv[0] );
2923 Debug(LDAP_DEBUG_ANY, "%s: %s\n",
2924 c->log, c->cr_msg, 0);
2928 ber_memfree_x( c->value_dn.bv_val, NULL );
2929 if ( !BER_BVISNULL( &c->be->be_update_ndn ) ) {
2930 ber_memfree_x( c->be->be_update_ndn.bv_val, NULL );
2932 c->be->be_update_ndn = c->value_ndn;
2933 BER_BVZERO( &c->value_dn );
2934 BER_BVZERO( &c->value_ndn );
2936 return config_slurp_shadow( c );
2940 config_shadow( ConfigArgs *c, int flag )
2942 char *notallowed = NULL;
2944 if ( c->be == frontendDB ) {
2945 notallowed = "frontend";
2947 } else if ( SLAP_MONITOR(c->be) ) {
2948 notallowed = "monitor";
2951 if ( notallowed != NULL ) {
2952 Debug( LDAP_DEBUG_ANY, "%s: %s database cannot be shadow.\n", c->log, notallowed, 0 );
2956 SLAP_DBFLAGS(c->be) |= (SLAP_DBFLAG_SHADOW | SLAP_DBFLAG_SINGLE_SHADOW | flag);
2962 config_updateref(ConfigArgs *c) {
2964 if (c->op == SLAP_CONFIG_EMIT) {
2965 if ( c->be->be_update_refs ) {
2966 value_add( &c->rvalue_vals, c->be->be_update_refs );
2971 } else if ( c->op == LDAP_MOD_DELETE ) {
2972 if ( c->valx < 0 ) {
2973 ber_bvarray_free( c->be->be_update_refs );
2974 c->be->be_update_refs = NULL;
2977 ch_free( c->be->be_update_refs[i].bv_val );
2978 for (; c->be->be_update_refs[i].bv_val; i++)
2979 c->be->be_update_refs[i] = c->be->be_update_refs[i+1];
2983 if(!SLAP_SHADOW(c->be) && !c->be->be_syncinfo) {
2984 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> must appear after syncrepl or updatedn",
2986 Debug(LDAP_DEBUG_ANY, "%s: %s\n",
2987 c->log, c->cr_msg, 0);
2991 if(validate_global_referral(c->argv[1])) {
2992 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> invalid URL", c->argv[0] );
2993 Debug(LDAP_DEBUG_ANY, "%s: %s (%s)\n",
2994 c->log, c->cr_msg, c->argv[1]);
2997 ber_str2bv(c->argv[1], 0, 0, &val);
2998 if(value_add_one(&c->be->be_update_refs, &val)) return(LDAP_OTHER);
3003 config_obsolete(ConfigArgs *c) {
3004 if (c->op == SLAP_CONFIG_EMIT)
3007 snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> keyword is obsolete (ignored)",
3009 Debug(LDAP_DEBUG_ANY, "%s: %s\n", c->log, c->cr_msg, 0);
3014 config_include(ConfigArgs *c) {
3015 int savelineno = c->lineno;
3018 ConfigFile *cfsave = cfn;
3019 ConfigFile *cf2 = NULL;
3021 /* Leftover from RE23. No dynamic config for include files */
3022 if ( c->op == SLAP_CONFIG_EMIT || c->op == LDAP_MOD_DELETE )
3025 cf = ch_calloc( 1, sizeof(ConfigFile));
3026 if ( cfn->c_kids ) {
3027 for (cf2=cfn->c_kids; cf2 && cf2->c_sibs; cf2=cf2->c_sibs) ;
3033 ber_str2bv( c->argv[1], 0, 1, &cf->c_file );
3034 rc = read_config_file(c->argv[1], c->depth + 1, c, config_back_cf_table);
3035 c->lineno = savelineno - 1;
3038 if ( cf2 ) cf2->c_sibs = NULL;
3039 else cfn->c_kids = NULL;
3040 ch_free( cf->c_file.bv_val );
3050 config_tls_option(ConfigArgs *c) {
3052 LDAP *ld = slap_tls_ld;
3054 case CFG_TLS_RAND: flag = LDAP_OPT_X_TLS_RANDOM_FILE; ld = NULL; break;
3055 case CFG_TLS_CIPHER: flag = LDAP_OPT_X_TLS_CIPHER_SUITE; break;
3056 case CFG_TLS_CERT_FILE: flag = LDAP_OPT_X_TLS_CERTFILE; break;
3057 case CFG_TLS_CERT_KEY: flag = LDAP_OPT_X_TLS_KEYFILE; break;
3058 case CFG_TLS_CA_PATH: flag = LDAP_OPT_X_TLS_CACERTDIR; break;
3059 case CFG_TLS_CA_FILE: flag = LDAP_OPT_X_TLS_CACERTFILE; break;
3060 case CFG_TLS_DH_FILE: flag = LDAP_OPT_X_TLS_DHFILE; break;
3062 case CFG_TLS_CRL_FILE: flag = LDAP_OPT_X_TLS_CRLFILE; break;
3064 default: Debug(LDAP_DEBUG_ANY, "%s: "
3065 "unknown tls_option <0x%x>\n",
3066 c->log, c->type, 0);
3069 if (c->op == SLAP_CONFIG_EMIT) {
3070 return ldap_pvt_tls_get_option( ld, flag, &c->value_string );
3071 } else if ( c->op == LDAP_MOD_DELETE ) {
3072 return ldap_pvt_tls_set_option( ld, flag, NULL );
3074 ch_free(c->value_string);
3075 return(ldap_pvt_tls_set_option(ld, flag, c->argv[1]));
3078 /* FIXME: this ought to be provided by libldap */
3080 config_tls_config(ConfigArgs *c) {
3083 case CFG_TLS_CRLCHECK: flag = LDAP_OPT_X_TLS_CRLCHECK; break;
3084 case CFG_TLS_VERIFY: flag = LDAP_OPT_X_TLS_REQUIRE_CERT; break;
3086 Debug(LDAP_DEBUG_ANY, "%s: "
3087 "unknown tls_option <0x%x>\n",
3088 c->log, c->type, 0);
3091 if (c->op == SLAP_CONFIG_EMIT) {
3092 return slap_tls_get_config( slap_tls_ld, flag, &c->value_string );
3093 } else if ( c->op == LDAP_MOD_DELETE ) {
3095 return ldap_pvt_tls_set_option( slap_tls_ld, flag, &i );
3097 ch_free( c->value_string );
3098 if ( isdigit( (unsigned char)c->argv[1][0] ) ) {
3099 if ( lutil_atoi( &i, c->argv[1] ) != 0 ) {
3100 Debug(LDAP_DEBUG_ANY, "%s: "
3101 "unable to parse %s \"%s\"\n",
3102 c->log, c->argv[0], c->argv[1] );
3105 return(ldap_pvt_tls_set_option(slap_tls_ld, flag, &i));
3107 return(ldap_int_tls_config(slap_tls_ld, flag, c->argv[1]));
3112 static CfEntryInfo *
3113 config_find_base( CfEntryInfo *root, struct berval *dn, CfEntryInfo **last )
3123 if ( dn_match( &root->ce_entry->e_nname, dn ))
3126 c = dn->bv_val+dn->bv_len;
3127 for (;*c != ',';c--);
3131 for (--c;c>dn->bv_val && *c != ',';c--);
3135 cdn.bv_len = dn->bv_len - (cdn.bv_val - dn->bv_val);
3137 root = root->ce_kids;
3139 for (;root;root=root->ce_sibs) {
3140 if ( dn_match( &root->ce_entry->e_nname, &cdn )) {
3141 if ( cdn.bv_val == dn->bv_val ) {
3151 typedef struct setup_cookie {
3161 config_ldif_resp( Operation *op, SlapReply *rs )
3163 if ( rs->sr_type == REP_SEARCH ) {
3164 setup_cookie *sc = op->o_callback->sc_private;
3166 sc->cfb->cb_got_ldif = 1;
3167 /* Does the frontend exist? */
3168 if ( !sc->got_frontend ) {
3169 if ( !strncmp( rs->sr_entry->e_nname.bv_val,
3170 "olcDatabase", STRLENOF( "olcDatabase" ))) {
3171 if ( strncmp( rs->sr_entry->e_nname.bv_val +
3172 STRLENOF( "olcDatabase" ), "={-1}frontend",
3173 STRLENOF( "={-1}frontend" ))) {
3176 sc->ca->be = frontendDB;
3177 sc->ca->bi = frontendDB->bd_info;
3178 frontendDB->be_cf_ocs = &CFOC_FRONTEND;
3179 rdn.bv_val = sc->ca->log;
3180 rdn.bv_len = snprintf(rdn.bv_val, sizeof( sc->ca->log ),
3181 "%s=" SLAP_X_ORDERED_FMT "%s",
3182 cfAd_database->ad_cname.bv_val, -1,
3183 sc->ca->bi->bi_type);
3185 sc->frontend = config_build_entry( op, rs,
3186 sc->cfb->cb_root, sc->ca, &rdn, &CFOC_DATABASE,
3187 sc->ca->be->be_cf_ocs );
3196 /* Does the configDB exist? */
3197 if ( sc->got_frontend && !sc->got_config &&
3198 !strncmp( rs->sr_entry->e_nname.bv_val,
3199 "olcDatabase", STRLENOF( "olcDatabase" ))) {
3200 if ( strncmp( rs->sr_entry->e_nname.bv_val +
3201 STRLENOF( "olcDatabase" ), "={0}config",
3202 STRLENOF( "={0}config" ))) {
3205 sc->ca->be = LDAP_STAILQ_FIRST( &backendDB );
3206 sc->ca->bi = sc->ca->be->bd_info;
3207 rdn.bv_val = sc->ca->log;
3208 rdn.bv_len = snprintf(rdn.bv_val, sizeof( sc->ca->log ),
3209 "%s=" SLAP_X_ORDERED_FMT "%s",
3210 cfAd_database->ad_cname.bv_val, 0,
3211 sc->ca->bi->bi_type);
3213 sc->config = config_build_entry( op, rs, sc->cfb->cb_root,
3214 sc->ca, &rdn, &CFOC_DATABASE, sc->ca->be->be_cf_ocs );
3221 rs->sr_err = config_add_internal( sc->cfb, rs->sr_entry, sc->ca, NULL, NULL, NULL );
3222 if ( rs->sr_err != LDAP_SUCCESS ) {
3223 Debug( LDAP_DEBUG_ANY, "config error processing %s: %s\n",
3224 rs->sr_entry->e_name.bv_val, sc->ca->cr_msg, 0 );
3230 /* Configure and read the underlying back-ldif store */
3232 config_setup_ldif( BackendDB *be, const char *dir, int readit ) {
3233 CfBackInfo *cfb = be->be_private;
3239 slap_callback cb = { NULL, config_ldif_resp, NULL, NULL };
3240 Connection conn = {0};
3241 OperationBuffer opbuf;
3243 SlapReply rs = {REP_RESULT};
3244 Filter filter = { LDAP_FILTER_PRESENT };
3245 struct berval filterstr = BER_BVC("(objectclass=*)");
3248 /* Is the config directory available? */
3249 if ( stat( dir, &st ) < 0 ) {
3250 /* No, so don't bother using the backing store.
3251 * All changes will be in-memory only.
3256 cfb->cb_db.bd_info = backend_info( "ldif" );
3257 if ( !cfb->cb_db.bd_info )
3258 return 0; /* FIXME: eventually this will be a fatal error */
3260 if ( backend_db_init( "ldif", &cfb->cb_db, -1, NULL ) == NULL )
3263 cfb->cb_db.be_suffix = be->be_suffix;
3264 cfb->cb_db.be_nsuffix = be->be_nsuffix;
3266 /* The suffix is always "cn=config". The underlying DB's rootdn
3267 * is always the same as the suffix.
3269 cfb->cb_db.be_rootdn = be->be_suffix[0];
3270 cfb->cb_db.be_rootndn = be->be_nsuffix[0];
3272 ber_str2bv( dir, 0, 1, &cfdir );
3277 argv[0] = "directory";
3278 argv[1] = (char *)dir;
3283 c.table = Cft_Database;
3285 ct = config_find_keyword( c.be->be_cf_ocs->co_table, &c );
3289 if ( config_add_vals( ct, &c ))
3292 if ( backend_startup_one( &cfb->cb_db, &c.reply ))
3296 void *thrctx = ldap_pvt_thread_pool_context();
3299 connection_fake_init( &conn, &opbuf, thrctx );
3302 filter.f_desc = slap_schema.si_ad_objectClass;
3304 op->o_tag = LDAP_REQ_SEARCH;
3306 op->ors_filter = &filter;
3307 op->ors_filterstr = filterstr;
3308 op->ors_scope = LDAP_SCOPE_SUBTREE;
3310 op->o_dn = c.be->be_rootdn;
3311 op->o_ndn = c.be->be_rootndn;
3313 op->o_req_dn = be->be_suffix[0];
3314 op->o_req_ndn = be->be_nsuffix[0];
3316 op->ors_tlimit = SLAP_NO_LIMIT;
3317 op->ors_slimit = SLAP_NO_LIMIT;
3319 op->ors_attrs = slap_anlist_all_attributes;
3320 op->ors_attrsonly = 0;
3322 op->o_callback = &cb;
3325 cb.sc_private = ≻
3326 sc.got_frontend = 0;
3331 op->o_bd = &cfb->cb_db;
3333 /* Allow unknown attrs in DNs */
3334 prev_DN_strict = slap_DN_strict;
3337 rc = op->o_bd->be_search( op, &rs );
3339 /* Restore normal DN validation */
3340 slap_DN_strict = prev_DN_strict;
3342 op->o_tag = LDAP_REQ_ADD;
3343 if ( rc == LDAP_SUCCESS && sc.frontend ) {
3344 op->ora_e = sc.frontend;
3345 rc = op->o_bd->be_add( op, &rs );
3347 if ( rc == LDAP_SUCCESS && sc.config ) {
3348 op->ora_e = sc.config;
3349 rc = op->o_bd->be_add( op, &rs );
3351 ldap_pvt_thread_pool_context_reset( thrctx );
3354 /* ITS#4194 - only use if it's present, or we're converting. */
3355 if ( !readit || rc == LDAP_SUCCESS )
3356 cfb->cb_use_ldif = 1;
3362 CfOc_cmp( const void *c1, const void *c2 ) {
3363 const ConfigOCs *co1 = c1;
3364 const ConfigOCs *co2 = c2;
3366 return ber_bvcmp( co1->co_name, co2->co_name );
3370 config_register_schema(ConfigTable *ct, ConfigOCs *ocs) {
3373 i = init_config_attrs( ct );
3376 /* set up the objectclasses */
3377 i = init_config_ocs( ocs );
3380 for (i=0; ocs[i].co_def; i++) {
3381 if ( ocs[i].co_oc ) {
3382 ocs[i].co_name = &ocs[i].co_oc->soc_cname;
3383 if ( !ocs[i].co_table )
3384 ocs[i].co_table = ct;
3385 avl_insert( &CfOcTree, &ocs[i], CfOc_cmp, avl_dup_error );
3392 read_config(const char *fname, const char *dir) {
3395 const char *cfdir, *cfname;
3398 /* Setup the config backend */
3399 be = backend_db_init( "config", NULL, 0, NULL );
3403 cfb = be->be_private;
3404 be->be_dfltaccess = ACL_NONE;
3406 /* If no .conf, or a dir was specified, setup the dir */
3407 if ( !fname || dir ) {
3409 /* If explicitly given, check for existence */
3412 if ( stat( dir, &st ) < 0 ) {
3413 Debug( LDAP_DEBUG_ANY,
3414 "invalid config directory %s, error %d\n",
3420 cfdir = SLAPD_DEFAULT_CONFIGDIR;
3422 /* if fname is defaulted, try reading .d */
3423 rc = config_setup_ldif( be, cfdir, !fname );
3426 /* It may be OK if the base object doesn't exist yet. */
3427 if ( rc != LDAP_NO_SUCH_OBJECT )
3429 /* ITS#4194: But if dir was specified and no fname,
3430 * then we were supposed to read the dir. Unless we're
3431 * trying to slapadd the dir...
3433 if ( dir && !fname ) {
3434 if ( slapMode & (SLAP_SERVER_MODE|SLAP_TOOL_READMAIN|SLAP_TOOL_READONLY))
3436 /* Assume it's slapadd with a config dir, let it continue */
3438 cfb->cb_got_ldif = 1;
3439 cfb->cb_use_ldif = 1;
3444 /* If we read the config from back-ldif, nothing to do here */
3445 if ( cfb->cb_got_ldif ) {
3454 cfname = SLAPD_DEFAULT_CONFIGFILE;
3456 rc = read_config_file(cfname, 0, NULL, config_back_cf_table);
3459 ber_str2bv( cfname, 0, 1, &cfb->cb_config->c_file );
3462 if ( rc == 0 && BER_BVISNULL( &frontendDB->be_schemadn ) ) {
3463 ber_str2bv( SLAPD_SCHEMA_DN, STRLENOF( SLAPD_SCHEMA_DN ), 1,
3464 &frontendDB->be_schemadn );
3465 rc = dnNormalize( 0, NULL, NULL, &frontendDB->be_schemadn, &frontendDB->be_schemandn, NULL );
3466 if ( rc != LDAP_SUCCESS ) {
3467 Debug(LDAP_DEBUG_ANY, "read_config: "
3468 "unable to normalize default schema DN \"%s\"\n",
3469 frontendDB->be_schemadn.bv_val, 0, 0 );
3470 /* must not happen */
3478 config_back_bind( Operation *op, SlapReply *rs )
3480 if ( be_isroot_pw( op ) ) {
3481 ber_dupbv( &op->orb_edn, be_root_dn( op->o_bd ));
3482 /* frontend sends result */
3483 return LDAP_SUCCESS;
3486 rs->sr_err = LDAP_INVALID_CREDENTIALS;
3487 send_ldap_result( op, rs );
3493 config_send( Operation *op, SlapReply *rs, CfEntryInfo *ce, int depth )
3497 if ( test_filter( op, ce->ce_entry, op->ors_filter ) == LDAP_COMPARE_TRUE )
3499 rs->sr_attrs = op->ors_attrs;
3500 rs->sr_entry = ce->ce_entry;
3502 rc = send_search_entry( op, rs );
3504 if ( op->ors_scope == LDAP_SCOPE_SUBTREE ) {
3505 if ( ce->ce_kids ) {
3506 rc = config_send( op, rs, ce->ce_kids, 1 );
3507 if ( rc ) return rc;
3510 for (ce=ce->ce_sibs; ce; ce=ce->ce_sibs) {
3511 rc = config_send( op, rs, ce, 0 );
3519 static ConfigTable *
3520 config_find_table( ConfigOCs **colst, int nocs, AttributeDescription *ad,
3525 for (j=0; j<nocs; j++) {
3526 for (i=0; colst[j]->co_table[i].name; i++)
3527 if ( colst[j]->co_table[i].ad == ad ) {
3528 ca->table = colst[j]->co_type;
3529 return &colst[j]->co_table[i];
3535 /* Sort the attributes of the entry according to the order defined
3536 * in the objectclass, with required attributes occurring before
3537 * allowed attributes. For any attributes with sequencing dependencies
3538 * (e.g., rootDN must be defined after suffix) the objectclass must
3539 * list the attributes in the desired sequence.
3542 sort_attrs( Entry *e, ConfigOCs **colst, int nocs )
3544 Attribute *a, *head = NULL, *tail = NULL, **prev;
3547 for (i=0; i<nocs; i++) {
3548 if ( colst[i]->co_oc->soc_required ) {
3549 AttributeType **at = colst[i]->co_oc->soc_required;
3550 for (j=0; at[j]; j++) {
3551 for (a=e->e_attrs, prev=&e->e_attrs; a;
3552 prev = &(*prev)->a_next, a=a->a_next) {
3553 if ( a->a_desc == at[j]->sat_ad ) {
3567 if ( colst[i]->co_oc->soc_allowed ) {
3568 AttributeType **at = colst[i]->co_oc->soc_allowed;
3569 for (j=0; at[j]; j++) {
3570 for (a=e->e_attrs, prev=&e->e_attrs; a;
3571 prev = &(*prev)->a_next, a=a->a_next) {
3572 if ( a->a_desc == at[j]->sat_ad ) {
3588 tail->a_next = e->e_attrs;
3594 check_vals( ConfigTable *ct, ConfigArgs *ca, void *ptr, int isAttr )
3596 Attribute *a = NULL;
3597 AttributeDescription *ad;
3607 Modifications *ml = ptr;
3609 vals = ml->sml_values;
3612 if ( a && ( ad->ad_type->sat_flags & SLAP_AT_ORDERED_VAL )) {
3613 rc = ordered_value_sort( a, 1 );
3615 snprintf(ca->cr_msg, sizeof( ca->cr_msg ), "ordered_value_sort failed on attr %s\n",
3616 ad->ad_cname.bv_val );
3620 for ( i=0; vals[i].bv_val; i++ ) {
3621 ca->line = vals[i].bv_val;
3622 if (( ad->ad_type->sat_flags & SLAP_AT_ORDERED_VAL ) &&
3623 ca->line[0] == '{' ) {
3624 char *idx = strchr( ca->line, '}' );
3625 if ( idx ) ca->line = idx+1;
3627 rc = config_parse_vals( ct, ca, i );
3636 config_rename_attr( SlapReply *rs, Entry *e, struct berval *rdn,
3639 struct berval rtype, rval;
3641 AttributeDescription *ad = NULL;
3643 dnRdn( &e->e_name, rdn );
3644 rval.bv_val = strchr(rdn->bv_val, '=' ) + 1;
3645 rval.bv_len = rdn->bv_len - (rval.bv_val - rdn->bv_val);
3646 rtype.bv_val = rdn->bv_val;
3647 rtype.bv_len = rval.bv_val - rtype.bv_val - 1;
3650 slap_bv2ad( &rtype, &ad, &rs->sr_text );
3651 a = attr_find( e->e_attrs, ad );
3652 if (!a ) return LDAP_NAMING_VIOLATION;
3659 config_rename_kids( CfEntryInfo *ce )
3662 struct berval rdn, nrdn;
3664 for (ce2 = ce->ce_kids; ce2; ce2 = ce2->ce_sibs) {
3665 dnRdn ( &ce2->ce_entry->e_name, &rdn );
3666 dnRdn ( &ce2->ce_entry->e_nname, &nrdn );
3667 free( ce2->ce_entry->e_name.bv_val );
3668 free( ce2->ce_entry->e_nname.bv_val );
3669 build_new_dn( &ce2->ce_entry->e_name, &ce->ce_entry->e_name,
3671 build_new_dn( &ce2->ce_entry->e_nname, &ce->ce_entry->e_nname,
3673 config_rename_kids( ce2 );
3678 config_rename_one( Operation *op, SlapReply *rs, Entry *e,
3679 CfEntryInfo *parent, Attribute *a, struct berval *newrdn,
3680 struct berval *nnewrdn, int use_ldif )
3684 struct berval odn, ondn;
3688 build_new_dn( &e->e_name, &parent->ce_entry->e_name, newrdn, NULL );
3689 build_new_dn( &e->e_nname, &parent->ce_entry->e_nname, nnewrdn, NULL );
3692 free( a->a_vals[0].bv_val );
3693 ptr1 = strchr( newrdn->bv_val, '=' ) + 1;
3694 a->a_vals[0].bv_len = newrdn->bv_len - (ptr1 - newrdn->bv_val);
3695 a->a_vals[0].bv_val = ch_malloc( a->a_vals[0].bv_len + 1 );
3696 strcpy( a->a_vals[0].bv_val, ptr1 );
3698 if ( a->a_nvals != a->a_vals ) {
3699 free( a->a_nvals[0].bv_val );
3700 ptr1 = strchr( nnewrdn->bv_val, '=' ) + 1;
3701 a->a_nvals[0].bv_len = nnewrdn->bv_len - (ptr1 - nnewrdn->bv_val);
3702 a->a_nvals[0].bv_val = ch_malloc( a->a_nvals[0].bv_len + 1 );
3703 strcpy( a->a_nvals[0].bv_val, ptr1 );
3706 CfBackInfo *cfb = (CfBackInfo *)op->o_bd->be_private;
3707 BackendDB *be = op->o_bd;
3708 slap_callback sc = { NULL, slap_null_cb, NULL, NULL }, *scp;
3709 struct berval dn, ndn, xdn, xndn;
3711 op->o_bd = &cfb->cb_db;
3713 /* Save current rootdn; use the underlying DB's rootdn */
3717 xndn = op->o_req_ndn;
3718 op->o_dn = op->o_bd->be_rootdn;
3719 op->o_ndn = op->o_bd->be_rootndn;
3721 op->o_req_ndn = ondn;
3723 scp = op->o_callback;
3724 op->o_callback = ≻
3725 op->orr_newrdn = *newrdn;
3726 op->orr_nnewrdn = *nnewrdn;
3727 op->orr_newSup = NULL;
3728 op->orr_nnewSup = NULL;
3729 op->orr_deleteoldrdn = 1;
3730 op->orr_modlist = NULL;
3731 slap_modrdn2mods( op, rs );
3732 slap_mods_opattrs( op, &op->orr_modlist, 1 );
3733 rc = op->o_bd->be_modrdn( op, rs );
3734 slap_mods_free( op->orr_modlist, 1 );
3737 op->o_callback = scp;
3741 op->o_req_ndn = xndn;
3744 free( ondn.bv_val );
3746 config_rename_kids( e->e_private );
3751 config_renumber_one( Operation *op, SlapReply *rs, CfEntryInfo *parent,
3752 Entry *e, int idx, int tailindex, int use_ldif )
3754 struct berval ival, newrdn, nnewrdn;
3757 char ibuf[32], *ptr1, *ptr2 = NULL;
3760 rc = config_rename_attr( rs, e, &rdn, &a );
3761 if ( rc ) return rc;
3764 ival.bv_len = snprintf( ibuf, sizeof( ibuf ), SLAP_X_ORDERED_FMT, idx );
3765 if ( ival.bv_len >= sizeof( ibuf ) ) {
3766 return LDAP_NAMING_VIOLATION;
3769 newrdn.bv_len = rdn.bv_len + ival.bv_len;
3770 newrdn.bv_val = ch_malloc( newrdn.bv_len+1 );
3773 ptr1 = lutil_strncopy( newrdn.bv_val, rdn.bv_val, rdn.bv_len );
3774 ptr1 = lutil_strcopy( ptr1, ival.bv_val );
3777 ptr2 = ber_bvchr( &rdn, '}' );
3781 ptr2 = rdn.bv_val + a->a_desc->ad_cname.bv_len + 1;
3783 xlen = rdn.bv_len - (ptr2 - rdn.bv_val);
3784 ptr1 = lutil_strncopy( newrdn.bv_val, a->a_desc->ad_cname.bv_val,
3785 a->a_desc->ad_cname.bv_len );
3787 ptr1 = lutil_strcopy( ptr1, ival.bv_val );
3788 ptr1 = lutil_strncopy( ptr1, ptr2, xlen );
3792 /* Do the equivalent of ModRDN */
3793 /* Replace DN / NDN */
3794 newrdn.bv_len = ptr1 - newrdn.bv_val;
3795 rdnNormalize( 0, NULL, NULL, &newrdn, &nnewrdn, NULL );
3796 rc = config_rename_one( op, rs, e, parent, a, &newrdn, &nnewrdn, use_ldif );
3798 free( nnewrdn.bv_val );
3799 free( newrdn.bv_val );
3804 check_name_index( CfEntryInfo *parent, ConfigType ce_type, Entry *e,
3805 SlapReply *rs, int *renum, int *ibase )
3808 int index = -1, gotindex = 0, nsibs, rc = 0;
3809 int renumber = 0, tailindex = 0, isfrontend = 0, isconfig = 0;
3810 char *ptr1, *ptr2 = NULL;
3813 if ( renum ) *renum = 0;
3815 /* These entries don't get indexed/renumbered */
3816 if ( ce_type == Cft_Global ) return 0;
3817 if ( ce_type == Cft_Schema && parent->ce_type == Cft_Global ) return 0;
3819 if ( ce_type == Cft_Module )
3822 /* See if the rdn has an index already */
3823 dnRdn( &e->e_name, &rdn );
3824 if ( ce_type == Cft_Database ) {
3825 if ( !strncmp( rdn.bv_val + rdn.bv_len - STRLENOF("frontend"),
3826 "frontend", STRLENOF("frontend") ))
3828 else if ( !strncmp( rdn.bv_val + rdn.bv_len - STRLENOF("config"),
3829 "config", STRLENOF("config") ))
3832 ptr1 = ber_bvchr( &e->e_name, '{' );
3833 if ( ptr1 && ptr1 - e->e_name.bv_val < rdn.bv_len ) {
3835 ptr2 = strchr( ptr1, '}' );
3836 if (!ptr2 || ptr2 - e->e_name.bv_val > rdn.bv_len)
3837 return LDAP_NAMING_VIOLATION;
3838 if ( ptr2-ptr1 == 1)
3839 return LDAP_NAMING_VIOLATION;
3841 index = strtol( ptr1 + 1, &next, 10 );
3842 if ( next == ptr1 + 1 || next[ 0 ] != '}' ) {
3843 return LDAP_NAMING_VIOLATION;
3846 /* Special case, we allow -1 for the frontendDB */
3847 if ( index != -1 || !isfrontend )
3848 return LDAP_NAMING_VIOLATION;
3850 if ( isconfig && index != 0 ){
3851 return LDAP_NAMING_VIOLATION;
3855 /* count related kids */
3856 for (nsibs=0, ce=parent->ce_kids; ce; ce=ce->ce_sibs) {
3857 if ( ce->ce_type == ce_type ) nsibs++;
3860 /* account for -1 frontend */
3861 if ( ce_type == Cft_Database )
3864 if ( index != nsibs ) {
3866 if ( index < nsibs ) {
3867 if ( tailindex ) return LDAP_NAMING_VIOLATION;
3868 /* Siblings need to be renumbered */
3869 if ( index != -1 || !isfrontend )
3873 /* config DB is always "0" */
3874 if ( isconfig && index == -1 ) {
3877 if ( !isfrontend && index == -1 ) {
3881 /* just make index = nsibs */
3883 rc = config_renumber_one( NULL, rs, parent, e, index, tailindex, 0 );
3886 if ( ibase ) *ibase = index;
3887 if ( renum ) *renum = renumber;
3892 count_oc( ObjectClass *oc, ConfigOCs ***copp, int *nocs )
3897 co.co_name = &oc->soc_cname;
3898 cop = avl_find( CfOcTree, &co, CfOc_cmp );
3902 /* check for duplicates */
3903 for ( i = 0; i < *nocs; i++ ) {
3904 if ( *copp && (*copp)[i] == cop ) {
3910 ConfigOCs **tmp = ch_realloc( *copp, (*nocs + 1)*sizeof( ConfigOCs * ) );
3911 if ( tmp == NULL ) {
3915 (*copp)[*nocs] = cop;
3920 for ( sups = oc->soc_sups; sups && *sups; sups++ ) {
3921 if ( count_oc( *sups, copp, nocs ) ) {
3930 count_ocs( Attribute *oc_at, int *nocs )
3933 ConfigOCs **colst = NULL;
3937 for ( i = 0; !BER_BVISNULL( &oc_at->a_nvals[i] ); i++ )
3941 ObjectClass *oc = oc_bvfind( &oc_at->a_nvals[i] );
3943 assert( oc != NULL );
3944 if ( count_oc( oc, &colst, nocs ) ) {
3954 cfAddInclude( CfEntryInfo *p, Entry *e, ConfigArgs *ca )
3956 /* Leftover from RE23. Never parse this entry */
3957 return LDAP_COMPARE_TRUE;
3961 cfAddSchema( CfEntryInfo *p, Entry *e, ConfigArgs *ca )
3965 /* This entry is hardcoded, don't re-parse it */
3966 if ( p->ce_type == Cft_Global ) {
3967 cfn = p->ce_private;
3968 ca->ca_private = cfn;
3969 return LDAP_COMPARE_TRUE;
3971 if ( p->ce_type != Cft_Schema )
3972 return LDAP_CONSTRAINT_VIOLATION;
3974 cfn = ch_calloc( 1, sizeof(ConfigFile) );
3975 ca->ca_private = cfn;
3976 cfo = p->ce_private;
3977 cfn->c_sibs = cfo->c_kids;
3979 return LDAP_SUCCESS;
3983 cfAddDatabase( CfEntryInfo *p, Entry *e, struct config_args_s *ca )
3985 if ( p->ce_type != Cft_Global ) {
3986 return LDAP_CONSTRAINT_VIOLATION;
3988 ca->be = frontendDB; /* just to get past check_vals */
3989 return LDAP_SUCCESS;
3993 cfAddBackend( CfEntryInfo *p, Entry *e, struct config_args_s *ca )
3995 if ( p->ce_type != Cft_Global ) {
3996 return LDAP_CONSTRAINT_VIOLATION;
3998 return LDAP_SUCCESS;
4002 cfAddModule( CfEntryInfo *p, Entry *e, struct config_args_s *ca )
4004 if ( p->ce_type != Cft_Global ) {
4005 return LDAP_CONSTRAINT_VIOLATION;
4007 return LDAP_SUCCESS;
4011 cfAddOverlay( CfEntryInfo *p, Entry *e, struct config_args_s *ca )
4013 if ( p->ce_type != Cft_Database ) {
4014 return LDAP_CONSTRAINT_VIOLATION;
4017 return LDAP_SUCCESS;
4021 schema_destroy_one( ConfigArgs *ca, ConfigOCs **colst, int nocs,
4026 AttributeDescription *ad;
4031 if ( cfn->c_cr_head ) {
4032 struct berval bv = BER_BVC("olcDitContentRules");
4034 slap_bv2ad( &bv, &ad, &text );
4035 ct = config_find_table( colst, nocs, ad, ca );
4036 config_del_vals( ct, ca );
4038 if ( cfn->c_oc_head ) {
4039 struct berval bv = BER_BVC("olcObjectClasses");
4041 slap_bv2ad( &bv, &ad, &text );
4042 ct = config_find_table( colst, nocs, ad, ca );
4043 config_del_vals( ct, ca );
4045 if ( cfn->c_at_head ) {
4046 struct berval bv = BER_BVC("olcAttributeTypes");
4048 slap_bv2ad( &bv, &ad, &text );
4049 ct = config_find_table( colst, nocs, ad, ca );
4050 config_del_vals( ct, ca );
4052 if ( cfn->c_om_head ) {
4053 struct berval bv = BER_BVC("olcObjectIdentifier");
4055 slap_bv2ad( &bv, &ad, &text );
4056 ct = config_find_table( colst, nocs, ad, ca );
4057 config_del_vals( ct, ca );
4059 cfo = p->ce_private;
4060 cfo->c_kids = cfn->c_sibs;
4065 config_add_oc( ConfigOCs **cop, CfEntryInfo *last, Entry *e, ConfigArgs *ca )
4067 int rc = LDAP_CONSTRAINT_VIOLATION;
4070 if ( (*cop)->co_ldadd ) {
4071 rc = (*cop)->co_ldadd( last, e, ca );
4072 if ( rc != LDAP_CONSTRAINT_VIOLATION ) {
4077 for ( ocp = (*cop)->co_oc->soc_sups; ocp && *ocp; ocp++ ) {
4078 ConfigOCs co = { 0 };
4080 co.co_name = &(*ocp)->soc_cname;
4081 *cop = avl_find( CfOcTree, &co, CfOc_cmp );
4082 if ( *cop == NULL ) {
4086 rc = config_add_oc( cop, last, e, ca );
4087 if ( rc != LDAP_CONSTRAINT_VIOLATION ) {
4095 /* Parse an LDAP entry into config directives */
4097 config_add_internal( CfBackInfo *cfb, Entry *e, ConfigArgs *ca, SlapReply *rs,
4098 int *renum, Operation *op )
4100 CfEntryInfo *ce, *last = NULL;
4101 ConfigOCs co, *coptr, **colst;
4102 Attribute *a, *oc_at, *soc_at;
4103 int i, ibase = -1, nocs, rc = 0;
4106 char *ptr, *log_prefix = op ? op->o_log_prefix : "";
4108 memset( ca, 0, sizeof(ConfigArgs));
4110 /* Make sure parent exists and entry does not. But allow
4111 * Databases and Overlays to be inserted. Don't do any
4112 * auto-renumbering if manageDSAit control is present.
4114 ce = config_find_base( cfb->cb_root, &e->e_nname, &last );
4116 if ( ( op && op->o_managedsait ) ||
4117 ( ce->ce_type != Cft_Database && ce->ce_type != Cft_Overlay &&
4118 ce->ce_type != Cft_Module ) )
4120 Debug( LDAP_DEBUG_TRACE, "%s: config_add_internal: "
4121 "DN=\"%s\" already exists\n",
4122 log_prefix, e->e_name.bv_val, 0 );
4123 return LDAP_ALREADY_EXISTS;
4127 dnParent( &e->e_nname, &pdn );
4129 /* If last is NULL, the new entry is the root/suffix entry,
4130 * otherwise last should be the parent.
4132 if ( last && !dn_match( &last->ce_entry->e_nname, &pdn ) ) {
4134 rs->sr_matched = last->ce_entry->e_name.bv_val;
4136 Debug( LDAP_DEBUG_TRACE, "%s: config_add_internal: "
4137 "DN=\"%s\" not child of DN=\"%s\"\n",
4138 log_prefix, e->e_name.bv_val,
4139 last->ce_entry->e_name.bv_val );
4140 return LDAP_NO_SUCH_OBJECT;
4144 /* No parent, must be root. This will never happen... */
4145 if ( !last && !be_isroot( op ) && !be_shadow_update( op ) ) {
4146 return LDAP_NO_SUCH_OBJECT;
4149 if ( last && !access_allowed( op, last->ce_entry,
4150 slap_schema.si_ad_children, NULL, ACL_WADD, NULL ) )
4152 Debug( LDAP_DEBUG_TRACE, "%s: config_add_internal: "
4153 "DN=\"%s\" no write access to \"children\" of parent\n",
4154 log_prefix, e->e_name.bv_val, 0 );
4155 return LDAP_INSUFFICIENT_ACCESS;
4159 oc_at = attr_find( e->e_attrs, slap_schema.si_ad_objectClass );
4161 Debug( LDAP_DEBUG_TRACE, "%s: config_add_internal: "
4162 "DN=\"%s\" no objectClass\n",
4163 log_prefix, e->e_name.bv_val, 0 );
4164 return LDAP_OBJECT_CLASS_VIOLATION;
4167 soc_at = attr_find( e->e_attrs, slap_schema.si_ad_structuralObjectClass );
4169 ObjectClass *soc = NULL;
4170 char textbuf[ SLAP_TEXT_BUFLEN ];
4171 const char *text = textbuf;
4173 /* FIXME: check result */
4174 rc = structural_class( oc_at->a_nvals, &soc, NULL,
4175 &text, textbuf, sizeof(textbuf), NULL );
4176 if ( rc != LDAP_SUCCESS ) {
4177 Debug( LDAP_DEBUG_TRACE, "%s: config_add_internal: "
4178 "DN=\"%s\" no structural objectClass (%s)\n",
4179 log_prefix, e->e_name.bv_val, text );
4182 attr_merge_one( e, slap_schema.si_ad_structuralObjectClass, &soc->soc_cname, NULL );
4183 soc_at = attr_find( e->e_attrs, slap_schema.si_ad_structuralObjectClass );
4184 if ( soc_at == NULL ) {
4185 Debug( LDAP_DEBUG_TRACE, "%s: config_add_internal: "
4186 "DN=\"%s\" no structural objectClass; "
4187 "unable to merge computed class %s\n",
4188 log_prefix, e->e_name.bv_val,
4189 soc->soc_cname.bv_val );
4190 return LDAP_OBJECT_CLASS_VIOLATION;
4193 Debug( LDAP_DEBUG_TRACE, "%s: config_add_internal: "
4194 "DN=\"%s\" no structural objectClass; "
4195 "computed objectClass %s merged\n",
4196 log_prefix, e->e_name.bv_val,
4197 soc->soc_cname.bv_val );
4200 /* Fake the coordinates based on whether we're part of an
4201 * LDAP Add or if reading the config dir
4204 ca->fname = "slapd";
4207 ca->fname = cfdir.bv_val;
4212 co.co_name = &soc_at->a_nvals[0];
4213 coptr = avl_find( CfOcTree, &co, CfOc_cmp );
4214 if ( coptr == NULL ) {
4215 Debug( LDAP_DEBUG_TRACE, "%s: config_add_internal: "
4216 "DN=\"%s\" no structural objectClass in configuration table\n",
4217 log_prefix, e->e_name.bv_val, 0 );
4218 return LDAP_OBJECT_CLASS_VIOLATION;
4221 /* Only the root can be Cft_Global, everything else must
4222 * have a parent. Only limited nesting arrangements are allowed.
4224 rc = LDAP_CONSTRAINT_VIOLATION;
4225 if ( coptr->co_type == Cft_Global && !last ) {
4226 cfn = cfb->cb_config;
4227 ca->ca_private = cfn;
4228 ca->be = frontendDB; /* just to get past check_vals */
4232 colst = count_ocs( oc_at, &nocs );
4234 /* Check whether the Add is allowed by its parent, and do
4235 * any necessary arg setup
4238 rc = config_add_oc( &coptr, last, e, ca );
4239 if ( rc == LDAP_CONSTRAINT_VIOLATION ) {
4240 for ( i = 0; i<nocs; i++ ) {
4241 /* Already checked these */
4242 if ( colst[i]->co_oc->soc_kind == LDAP_SCHEMA_STRUCTURAL )
4244 if ( colst[i]->co_ldadd &&
4245 ( rc = colst[i]->co_ldadd( last, e, ca ))
4246 != LDAP_CONSTRAINT_VIOLATION ) {
4252 if ( rc == LDAP_CONSTRAINT_VIOLATION ) {
4253 Debug( LDAP_DEBUG_TRACE, "%s: config_add_internal: "
4254 "DN=\"%s\" no structural objectClass add function\n",
4255 log_prefix, e->e_name.bv_val, 0 );
4256 return LDAP_OBJECT_CLASS_VIOLATION;
4260 /* Add the entry but don't parse it, we already have its contents */
4261 if ( rc == LDAP_COMPARE_TRUE ) {
4266 if ( rc != LDAP_SUCCESS )
4269 /* Parse all the values and check for simple syntax errors before
4270 * performing any set actions.
4272 * If doing an LDAPadd, check for indexed names and any necessary
4273 * renaming/renumbering. Entries that don't need indexed names are
4274 * ignored. Entries that need an indexed name and arrive without one
4275 * are assigned to the end. Entries that arrive with an index may
4276 * cause the following entries to be renumbered/bumped down.
4278 * Note that "pseudo-indexed" entries (cn=Include{xx}, cn=Module{xx})
4279 * don't allow Adding an entry with an index that's already in use.
4280 * This is flagged as an error (LDAP_ALREADY_EXISTS) up above.
4282 * These entries can have auto-assigned indexes (appended to the end)
4283 * but only the other types support auto-renumbering of siblings.
4286 rc = check_name_index( last, coptr->co_type, e, rs, renum,
4291 if ( renum && *renum && coptr->co_type != Cft_Database &&
4292 coptr->co_type != Cft_Overlay )
4294 snprintf( ca->cr_msg, sizeof( ca->cr_msg ),
4295 "operation requires sibling renumbering" );
4296 rc = LDAP_UNWILLING_TO_PERFORM;
4301 init_config_argv( ca );
4303 /* Make sure we process attrs in the required order */
4304 sort_attrs( e, colst, nocs );
4306 for ( a = e->e_attrs; a; a = a->a_next ) {
4307 if ( a == oc_at ) continue;
4308 ct = config_find_table( colst, nocs, a->a_desc, ca );
4309 if ( !ct ) continue; /* user data? */
4310 rc = check_vals( ct, ca, a, 1 );
4311 if ( rc ) goto done_noop;
4314 /* Basic syntax checks are OK. Do the actual settings. */
4315 for ( a=e->e_attrs; a; a=a->a_next ) {
4316 if ( a == oc_at ) continue;
4317 ct = config_find_table( colst, nocs, a->a_desc, ca );
4318 if ( !ct ) continue; /* user data? */
4319 for (i=0; a->a_vals[i].bv_val; i++) {
4321 ca->line = a->a_vals[i].bv_val;
4322 if ( a->a_desc->ad_type->sat_flags & SLAP_AT_ORDERED ) {
4323 ptr = strchr( ca->line, '}' );
4325 iptr = strchr( ca->line, '{' );
4329 if ( a->a_desc->ad_type->sat_flags & SLAP_AT_ORDERED_SIB ) {
4331 ca->valx = strtol( iptr+1, NULL, 0 );
4338 rc = config_parse_add( ct, ca, i );
4346 /* Newly added databases and overlays need to be started up */
4347 if ( CONFIG_ONLINE_ADD( ca )) {
4348 if ( colst[0]->co_type == Cft_Database ) {
4349 rc = backend_startup_one( ca->be, &ca->reply );
4351 } else if ( colst[0]->co_type == Cft_Overlay ) {
4352 if ( ca->bi->bi_db_open ) {
4353 BackendInfo *bi_orig = ca->be->bd_info;
4354 ca->be->bd_info = ca->bi;
4355 rc = ca->bi->bi_db_open( ca->be, &ca->reply );
4356 ca->be->bd_info = bi_orig;
4358 } else if ( ca->cleanup ) {
4359 rc = ca->cleanup( ca );
4362 if (ca->cr_msg[0] == '\0')
4363 snprintf( ca->cr_msg, sizeof( ca->cr_msg ), "<%s> failed startup", ca->argv[0] );
4365 Debug(LDAP_DEBUG_ANY, "%s: %s (%s)!\n",
4366 ca->log, ca->cr_msg, ca->argv[1] );
4373 ce = ch_calloc( 1, sizeof(CfEntryInfo) );
4374 ce->ce_parent = last;
4375 ce->ce_entry = entry_dup( e );
4376 ce->ce_entry->e_private = ce;
4377 ce->ce_type = colst[0]->co_type;
4380 ce->ce_private = ca->ca_private;
4381 ca->ca_entry = ce->ce_entry;
4384 } else if ( last->ce_kids ) {
4385 CfEntryInfo *c2, **cprev;
4387 /* Advance to first of this type */
4388 cprev = &last->ce_kids;
4389 for ( c2 = *cprev; c2 && c2->ce_type < ce->ce_type; ) {
4390 cprev = &c2->ce_sibs;
4393 /* Account for the (-1) frontendDB entry */
4394 if ( ce->ce_type == Cft_Database ) {
4395 if ( ca->be == frontendDB )
4397 else if ( ibase != -1 )
4402 for (c2 = *cprev; c2 && c2->ce_type == ce->ce_type;) {
4403 cprev = &c2->ce_sibs;
4409 for ( i=0; i<ibase; i++ ) {
4411 cprev = &c2->ce_sibs;
4414 ce->ce_sibs = *cprev;
4422 if ( (colst[0]->co_type == Cft_Database) && ca->be ) {
4423 if ( ca->be != frontendDB )
4424 backend_destroy_one( ca->be, 1 );
4425 } else if ( (colst[0]->co_type == Cft_Overlay) && ca->bi ) {
4426 overlay_destroy_one( ca->be, (slap_overinst *)ca->bi );
4427 } else if ( colst[0]->co_type == Cft_Schema ) {
4428 schema_destroy_one( ca, colst, nocs, last );
4433 ch_free( ca->argv );
4434 if ( colst ) ch_free( colst );
4438 #define BIGTMP 10000
4440 config_rename_add( Operation *op, SlapReply *rs, CfEntryInfo *ce,
4441 int base, int rebase, int max, int use_ldif )
4443 CfEntryInfo *ce2, *ce3, *cetmp = NULL, *cerem = NULL;
4444 ConfigType etype = ce->ce_type;
4445 int count = 0, rc = 0;
4447 /* Reverse ce list */
4448 for (ce2 = ce->ce_sibs;ce2;ce2 = ce3) {
4449 if (ce2->ce_type != etype) {
4454 ce2->ce_sibs = cetmp;
4457 if ( max && count >= max ) {
4463 /* Move original to a temp name until increments are done */
4465 ce->ce_entry->e_private = NULL;
4466 rc = config_renumber_one( op, rs, ce->ce_parent, ce->ce_entry,
4467 base+BIGTMP, 0, use_ldif );
4468 ce->ce_entry->e_private = ce;
4470 /* start incrementing */
4471 for (ce2=cetmp; ce2; ce2=ce3) {
4473 ce2->ce_sibs = cerem;
4476 rc = config_renumber_one( op, rs, ce2->ce_parent, ce2->ce_entry,
4477 count+base, 0, use_ldif );
4481 rc = config_renumber_one( op, rs, ce->ce_parent, ce->ce_entry,
4482 base, 0, use_ldif );
4487 config_rename_del( Operation *op, SlapReply *rs, CfEntryInfo *ce,
4488 CfEntryInfo *ce2, int old, int use_ldif )
4492 /* Renumber original to a temp value */
4493 ce->ce_entry->e_private = NULL;
4494 config_renumber_one( op, rs, ce->ce_parent, ce->ce_entry,
4495 old+BIGTMP, 0, use_ldif );
4496 ce->ce_entry->e_private = ce;
4498 /* start decrementing */
4499 for (; ce2 != ce; ce2=ce2->ce_sibs) {
4500 config_renumber_one( op, rs, ce2->ce_parent, ce2->ce_entry,
4501 count+old, 0, use_ldif );
4504 return config_renumber_one( op, rs, ce->ce_parent, ce->ce_entry,
4505 count+old, 0, use_ldif );
4508 /* Parse an LDAP entry into config directives, then store in underlying
4512 config_back_add( Operation *op, SlapReply *rs )
4518 if ( !access_allowed( op, op->ora_e, slap_schema.si_ad_entry,
4519 NULL, ACL_WADD, NULL )) {
4520 rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
4524 cfb = (CfBackInfo *)op->o_bd->be_private;
4526 /* add opattrs for syncprov */
4528 char textbuf[SLAP_TEXT_BUFLEN];
4529 size_t textlen = sizeof textbuf;
4530 rs->sr_err = entry_schema_check(op, op->ora_e, NULL, 0, 1,
4531 &rs->sr_text, textbuf, sizeof( textbuf ) );
4532 if ( rs->sr_err != LDAP_SUCCESS )
4534 rs->sr_err = slap_add_opattrs( op, &rs->sr_text, textbuf, textlen, 1 );
4535 if ( rs->sr_err != LDAP_SUCCESS ) {
4536 Debug( LDAP_DEBUG_TRACE,
4537 LDAP_XSTRING(config_back_add) ": entry failed op attrs add: "
4538 "%s (%d)\n", rs->sr_text, rs->sr_err, 0 );
4543 ldap_pvt_thread_pool_pause( &connection_pool );
4546 * 1) check for existence of entry
4547 * 2) check for sibling renumbering
4548 * 3) perform internal add
4549 * 4) perform any necessary renumbering
4550 * 5) store entry in underlying database
4552 rs->sr_err = config_add_internal( cfb, op->ora_e, &ca, rs, &renumber, op );
4553 if ( rs->sr_err != LDAP_SUCCESS ) {
4554 rs->sr_text = ca.cr_msg;
4559 CfEntryInfo *ce = ca.ca_entry->e_private;
4560 req_add_s addr = op->oq_add;
4561 op->o_tag = LDAP_REQ_MODRDN;
4562 rs->sr_err = config_rename_add( op, rs, ce, ca.valx, 0, 0, cfb->cb_use_ldif );
4563 op->o_tag = LDAP_REQ_ADD;
4565 if ( rs->sr_err != LDAP_SUCCESS ) {
4570 if ( cfb->cb_use_ldif ) {
4571 BackendDB *be = op->o_bd;
4572 slap_callback sc = { NULL, slap_null_cb, NULL, NULL }, *scp;
4573 struct berval dn, ndn;
4575 op->o_bd = &cfb->cb_db;
4577 /* Save current rootdn; use the underlying DB's rootdn */
4580 op->o_dn = op->o_bd->be_rootdn;
4581 op->o_ndn = op->o_bd->be_rootndn;
4583 scp = op->o_callback;
4584 op->o_callback = ≻
4585 op->o_bd->be_add( op, rs );
4587 op->o_callback = scp;
4593 ldap_pvt_thread_pool_resume( &connection_pool );
4596 send_ldap_result( op, rs );
4597 slap_graduate_commit_csn( op );
4601 typedef struct delrec {
4602 struct delrec *next;
4608 config_modify_add( ConfigTable *ct, ConfigArgs *ca, AttributeDescription *ad,
4613 if (ad->ad_type->sat_flags & SLAP_AT_ORDERED &&
4614 ca->line[0] == '{' )
4616 char *ptr = strchr( ca->line + 1, '}' );
4620 ca->valx = strtol( ca->line + 1, &next, 0 );
4621 if ( next == ca->line + 1 || next[ 0 ] != '}' ) {
4627 rc = config_parse_add( ct, ca, i );
4635 config_modify_internal( CfEntryInfo *ce, Operation *op, SlapReply *rs,
4638 int rc = LDAP_UNWILLING_TO_PERFORM;
4640 Entry *e = ce->ce_entry;
4641 Attribute *save_attrs = e->e_attrs, *oc_at, *s, *a;
4646 delrec *dels = NULL, *deltail = NULL;
4648 oc_at = attr_find( e->e_attrs, slap_schema.si_ad_objectClass );
4649 if ( !oc_at ) return LDAP_OBJECT_CLASS_VIOLATION;
4651 colst = count_ocs( oc_at, &nocs );
4653 /* make sure add/del flags are clear; should always be true */
4654 for ( s = save_attrs; s; s = s->a_next ) {
4655 s->a_flags &= ~(SLAP_ATTR_IXADD|SLAP_ATTR_IXDEL);
4658 e->e_attrs = attrs_dup( e->e_attrs );
4660 init_config_argv( ca );
4663 ca->ca_private = ce->ce_private;
4665 ca->fname = "slapd";
4667 strcpy( ca->log, "back-config" );
4669 for (ml = op->orm_modlist; ml; ml=ml->sml_next) {
4670 ct = config_find_table( colst, nocs, ml->sml_desc, ca );
4671 switch (ml->sml_op) {
4672 case LDAP_MOD_DELETE:
4673 case LDAP_MOD_REPLACE: {
4674 BerVarray vals = NULL, nvals = NULL;
4676 if ( ct && ( ct->arg_type & ARG_NO_DELETE )) {
4678 snprintf(ca->cr_msg, sizeof(ca->cr_msg), "cannot delete %s",
4679 ml->sml_desc->ad_cname.bv_val );
4682 if ( ml->sml_op == LDAP_MOD_REPLACE ) {
4683 vals = ml->sml_values;
4684 nvals = ml->sml_nvalues;
4685 ml->sml_values = NULL;
4686 ml->sml_nvalues = NULL;
4688 /* If we're deleting by values, remember the indexes of the
4689 * values we deleted.
4691 if ( ct && ml->sml_values ) {
4693 i = ml->sml_numvals;
4694 d = ch_malloc( sizeof(delrec) + (i - 1)* sizeof(int));
4705 rc = modify_delete_vindex(e, &ml->sml_mod,
4706 get_permissiveModify(op),
4707 &rs->sr_text, ca->cr_msg, sizeof(ca->cr_msg), idx );
4708 if ( ml->sml_op == LDAP_MOD_REPLACE ) {
4709 ml->sml_values = vals;
4710 ml->sml_nvalues = nvals;
4715 /* FALLTHRU: LDAP_MOD_REPLACE && vals */
4718 case SLAP_MOD_SOFTADD: {
4719 int mop = ml->sml_op;
4721 ml->sml_op = LDAP_MOD_ADD;
4723 if ( ct->arg_type & ARG_NO_INSERT ) {
4724 Attribute *a = attr_find( e->e_attrs, ml->sml_desc );
4726 navals = a->a_numvals;
4729 for ( i=0; !BER_BVISNULL( &ml->sml_values[i] ); i++ ) {
4730 if ( ml->sml_values[i].bv_val[0] == '{' &&
4733 char *next, *val = ml->sml_values[i].bv_val + 1;
4736 j = strtol( val, &next, 0 );
4737 if ( next == val || next[ 0 ] != '}' || j < navals ) {
4739 snprintf(ca->cr_msg, sizeof(ca->cr_msg), "cannot insert %s",
4740 ml->sml_desc->ad_cname.bv_val );
4744 rc = check_vals( ct, ca, ml, 0 );
4745 if ( rc ) goto out_noop;
4748 rc = modify_add_values(e, &ml->sml_mod,
4749 get_permissiveModify(op),
4750 &rs->sr_text, ca->cr_msg, sizeof(ca->cr_msg) );
4752 /* If value already exists, show success here
4753 * and ignore this operation down below.
4755 if ( mop == SLAP_MOD_SOFTADD ) {
4756 if ( rc == LDAP_TYPE_OR_VALUE_EXISTS )
4766 case LDAP_MOD_INCREMENT: /* FIXME */
4771 if(rc != LDAP_SUCCESS) break;
4774 if ( rc == LDAP_SUCCESS) {
4775 /* check that the entry still obeys the schema */
4776 rc = entry_schema_check(op, e, NULL, 0, 0,
4777 &rs->sr_text, ca->cr_msg, sizeof(ca->cr_msg) );
4779 if ( rc ) goto out_noop;
4781 /* Basic syntax checks are OK. Do the actual settings. */
4782 for ( ml = op->orm_modlist; ml; ml = ml->sml_next ) {
4783 ct = config_find_table( colst, nocs, ml->sml_desc, ca );
4784 if ( !ct ) continue;
4786 s = attr_find( save_attrs, ml->sml_desc );
4787 a = attr_find( e->e_attrs, ml->sml_desc );
4789 switch (ml->sml_op) {
4790 case LDAP_MOD_DELETE:
4791 case LDAP_MOD_REPLACE: {
4792 BerVarray vals = NULL, nvals = NULL;
4795 if ( ml->sml_op == LDAP_MOD_REPLACE ) {
4796 vals = ml->sml_values;
4797 nvals = ml->sml_nvalues;
4798 ml->sml_values = NULL;
4799 ml->sml_nvalues = NULL;
4802 if ( ml->sml_values )
4805 /* If we didn't delete the whole attribute */
4806 if ( ml->sml_values && a ) {
4807 struct berval *mvals;
4810 if ( ml->sml_nvalues )
4811 mvals = ml->sml_nvalues;
4813 mvals = ml->sml_values;
4815 /* use the indexes we saved up above */
4816 for (i=0; i < d->nidx; i++) {
4817 struct berval bv = *mvals++;
4818 if ( a->a_desc->ad_type->sat_flags & SLAP_AT_ORDERED &&
4819 bv.bv_val[0] == '{' ) {
4820 ptr = strchr( bv.bv_val, '}' ) + 1;
4821 bv.bv_len -= ptr - bv.bv_val;
4824 ca->line = bv.bv_val;
4825 ca->valx = d->idx[i];
4826 rc = config_del_vals( ct, ca );
4827 if ( rc != LDAP_SUCCESS ) break;
4829 s->a_flags |= SLAP_ATTR_IXDEL;
4830 for (j=i+1; j < d->nidx; j++)
4831 if ( d->idx[j] >d->idx[i] )
4837 rc = config_del_vals( ct, ca );
4838 if ( rc ) rc = LDAP_OTHER;
4840 s->a_flags |= SLAP_ATTR_IXDEL;
4842 if ( ml->sml_values ) {
4847 if ( ml->sml_op == LDAP_MOD_REPLACE ) {
4848 ml->sml_values = vals;
4849 ml->sml_nvalues = nvals;
4851 if ( !vals || rc != LDAP_SUCCESS )
4854 /* FALLTHRU: LDAP_MOD_REPLACE && vals */
4857 for (i=0; ml->sml_values[i].bv_val; i++) {
4858 ca->line = ml->sml_values[i].bv_val;
4860 rc = config_modify_add( ct, ca, ml->sml_desc, i );
4863 a->a_flags |= SLAP_ATTR_IXADD;
4870 /* Undo for a failed operation */
4871 if ( rc != LDAP_SUCCESS ) {
4872 ConfigReply msg = ca->reply;
4873 for ( s = save_attrs; s; s = s->a_next ) {
4874 if ( s->a_flags & SLAP_ATTR_IXDEL ) {
4875 s->a_flags &= ~(SLAP_ATTR_IXDEL|SLAP_ATTR_IXADD);
4876 ct = config_find_table( colst, nocs, s->a_desc, ca );
4877 a = attr_find( e->e_attrs, s->a_desc );
4879 /* clear the flag so the add check below will skip it */
4880 a->a_flags &= ~(SLAP_ATTR_IXDEL|SLAP_ATTR_IXADD);
4883 config_del_vals( ct, ca );
4885 for ( i=0; !BER_BVISNULL( &s->a_vals[i] ); i++ ) {
4886 ca->line = s->a_vals[i].bv_val;
4888 config_modify_add( ct, ca, s->a_desc, i );
4892 for ( a = e->e_attrs; a; a = a->a_next ) {
4893 if ( a->a_flags & SLAP_ATTR_IXADD ) {
4894 ct = config_find_table( colst, nocs, a->a_desc, ca );
4897 config_del_vals( ct, ca );
4898 s = attr_find( save_attrs, a->a_desc );
4900 s->a_flags &= ~(SLAP_ATTR_IXDEL|SLAP_ATTR_IXADD);
4901 for ( i=0; !BER_BVISNULL( &s->a_vals[i] ); i++ ) {
4902 ca->line = s->a_vals[i].bv_val;
4904 config_modify_add( ct, ca, s->a_desc, i );
4915 if ( rc == LDAP_SUCCESS ) {
4916 attrs_free( save_attrs );
4918 attrs_free( e->e_attrs );
4919 e->e_attrs = save_attrs;
4921 ch_free( ca->argv );
4922 if ( colst ) ch_free( colst );
4924 deltail = dels->next;
4933 config_back_modify( Operation *op, SlapReply *rs )
4936 CfEntryInfo *ce, *last;
4938 ConfigArgs ca = {0};
4941 AttributeDescription *rad = NULL;
4944 cfb = (CfBackInfo *)op->o_bd->be_private;
4946 ce = config_find_base( cfb->cb_root, &op->o_req_ndn, &last );
4949 rs->sr_matched = last->ce_entry->e_name.bv_val;
4950 rs->sr_err = LDAP_NO_SUCH_OBJECT;
4954 if ( !acl_check_modlist( op, ce->ce_entry, op->orm_modlist )) {
4955 rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
4959 /* Get type of RDN */
4960 rdn = ce->ce_entry->e_nname;
4961 ptr = strchr( rdn.bv_val, '=' );
4962 rdn.bv_len = ptr - rdn.bv_val;
4963 slap_bv2ad( &rdn, &rad, &rs->sr_text );
4965 /* Some basic validation... */
4966 for ( ml = op->orm_modlist; ml; ml = ml->sml_next ) {
4967 /* Don't allow Modify of RDN; must use ModRdn for that. */
4968 if ( ml->sml_desc == rad ) {
4969 rs->sr_err = LDAP_NOT_ALLOWED_ON_RDN;
4970 rs->sr_text = "Use modrdn to change the entry name";
4973 /* Internal update of contextCSN? */
4974 if ( ml->sml_desc == slap_schema.si_ad_contextCSN && op->o_conn->c_conn_idx == -1 ) {
4980 slap_mods_opattrs( op, &op->orm_modlist, 1 );
4983 ldap_pvt_thread_pool_pause( &connection_pool );
4986 * 1) perform the Modify on the cached Entry.
4987 * 2) verify that the Entry still satisfies the schema.
4988 * 3) perform the individual config operations.
4989 * 4) store Modified entry in underlying LDIF backend.
4991 rs->sr_err = config_modify_internal( ce, op, rs, &ca );
4993 rs->sr_text = ca.cr_msg;
4994 } else if ( cfb->cb_use_ldif ) {
4995 BackendDB *be = op->o_bd;
4996 slap_callback sc = { NULL, slap_null_cb, NULL, NULL }, *scp;
4997 struct berval dn, ndn;
4999 op->o_bd = &cfb->cb_db;
5003 op->o_dn = op->o_bd->be_rootdn;
5004 op->o_ndn = op->o_bd->be_rootndn;
5006 scp = op->o_callback;
5007 op->o_callback = ≻
5008 op->o_bd->be_modify( op, rs );
5010 op->o_callback = scp;
5016 ldap_pvt_thread_pool_resume( &connection_pool );
5018 send_ldap_result( op, rs );
5019 slap_graduate_commit_csn( op );
5024 config_back_modrdn( Operation *op, SlapReply *rs )
5027 CfEntryInfo *ce, *last;
5031 cfb = (CfBackInfo *)op->o_bd->be_private;
5033 ce = config_find_base( cfb->cb_root, &op->o_req_ndn, &last );
5036 rs->sr_matched = last->ce_entry->e_name.bv_val;
5037 rs->sr_err = LDAP_NO_SUCH_OBJECT;
5040 if ( !access_allowed( op, ce->ce_entry, slap_schema.si_ad_entry,
5041 NULL, ACL_WRITE, NULL )) {
5042 rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
5046 if ( ce->ce_parent )
5047 parent = ce->ce_parent->ce_entry;
5049 parent = (Entry *)&slap_entry_root;
5050 if ( !access_allowed( op, parent, slap_schema.si_ad_children,
5051 NULL, ACL_WRITE, NULL )) {
5052 rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
5057 /* We don't allow moving objects to new parents.
5058 * Generally we only allow reordering a set of ordered entries.
5060 if ( op->orr_newSup ) {
5061 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
5065 /* If newRDN == oldRDN, quietly succeed */
5066 dnRdn( &op->o_req_ndn, &rdn );
5067 if ( dn_match( &rdn, &op->orr_nnewrdn )) {
5068 rs->sr_err = LDAP_SUCCESS;
5072 /* Current behavior, subject to change as needed:
5074 * For backends and overlays, we only allow renumbering.
5075 * For schema, we allow renaming with the same number.
5076 * Otherwise, the op is not allowed.
5079 if ( ce->ce_type == Cft_Schema ) {
5083 /* Can't alter the main cn=schema entry */
5084 if ( ce->ce_parent->ce_type == Cft_Global ) {
5085 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
5086 rs->sr_text = "renaming not allowed for this entry";
5090 /* We could support this later if desired */
5091 ptr1 = ber_bvchr( &rdn, '}' );
5092 ptr2 = ber_bvchr( &op->orr_newrdn, '}' );
5093 len = ptr1 - rdn.bv_val;
5094 if ( len != ptr2 - op->orr_newrdn.bv_val ||
5095 strncmp( rdn.bv_val, op->orr_newrdn.bv_val, len )) {
5096 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
5097 rs->sr_text = "schema reordering not supported";
5100 } else if ( ce->ce_type == Cft_Database ||
5101 ce->ce_type == Cft_Overlay ) {
5102 char *ptr1, *ptr2, *iptr1, *iptr2;
5105 iptr2 = ber_bvchr( &op->orr_newrdn, '=' ) + 1;
5106 if ( *iptr2 != '{' ) {
5107 rs->sr_err = LDAP_NAMING_VIOLATION;
5108 rs->sr_text = "new ordering index is required";
5112 iptr1 = ber_bvchr( &rdn, '{' ) + 1;
5113 ptr1 = ber_bvchr( &rdn, '}' );
5114 ptr2 = ber_bvchr( &op->orr_newrdn, '}' );
5116 rs->sr_err = LDAP_NAMING_VIOLATION;
5117 rs->sr_text = "new ordering index is required";
5121 len1 = ptr1 - rdn.bv_val;
5122 len2 = ptr2 - op->orr_newrdn.bv_val;
5124 if ( rdn.bv_len - len1 != op->orr_newrdn.bv_len - len2 ||
5125 strncmp( ptr1, ptr2, rdn.bv_len - len1 )) {
5126 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
5127 rs->sr_text = "changing database/overlay type not allowed";
5130 ixold = strtol( iptr1, NULL, 0 );
5131 ixnew = strtol( iptr2, &ptr1, 0 );
5132 if ( ptr1 != ptr2 || ixold < 0 || ixnew < 0 ) {
5133 rs->sr_err = LDAP_NAMING_VIOLATION;
5136 /* config DB is always 0, cannot be changed */
5137 if ( ce->ce_type == Cft_Database && ( ixold == 0 || ixnew == 0 )) {
5138 rs->sr_err = LDAP_CONSTRAINT_VIOLATION;
5142 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
5143 rs->sr_text = "renaming not supported for this entry";
5147 ldap_pvt_thread_pool_pause( &connection_pool );
5149 if ( ce->ce_type == Cft_Schema ) {
5150 req_modrdn_s modr = op->oq_modrdn;
5153 rs->sr_err = config_rename_attr( rs, ce->ce_entry, &rdn, &a );
5154 if ( rs->sr_err == LDAP_SUCCESS ) {
5155 rs->sr_err = config_rename_one( op, rs, ce->ce_entry,
5156 ce->ce_parent, a, &op->orr_newrdn, &op->orr_nnewrdn,
5159 op->oq_modrdn = modr;
5161 CfEntryInfo *ce2, *cebase, **cprev, **cbprev, *ceold;
5162 req_modrdn_s modr = op->oq_modrdn;
5165 /* Advance to first of this type */
5166 cprev = &ce->ce_parent->ce_kids;
5167 for ( ce2 = *cprev; ce2 && ce2->ce_type != ce->ce_type; ) {
5168 cprev = &ce2->ce_sibs;
5171 /* Skip the -1 entry */
5172 if ( ce->ce_type == Cft_Database ) {
5173 cprev = &ce2->ce_sibs;
5179 /* Remove from old slot */
5180 for ( ce2 = *cprev; ce2 && ce2 != ce; ce2 = ce2->ce_sibs )
5181 cprev = &ce2->ce_sibs;
5182 *cprev = ce->ce_sibs;
5183 ceold = ce->ce_sibs;
5185 /* Insert into new slot */
5187 for ( i=0; i<ixnew; i++ ) {
5191 cprev = &ce2->ce_sibs;
5193 ce->ce_sibs = *cprev;
5198 /* NOTE: These should be encoded in the OC tables, not inline here */
5199 if ( ce->ce_type == Cft_Database )
5200 backend_db_move( ce->ce_be, ixnew );
5201 else if ( ce->ce_type == Cft_Overlay )
5202 overlay_move( ce->ce_be, (slap_overinst *)ce->ce_bi, ixnew );
5204 if ( ixold < ixnew ) {
5205 rs->sr_err = config_rename_del( op, rs, ce, ceold, ixold,
5208 rs->sr_err = config_rename_add( op, rs, ce, ixnew, 1,
5209 ixold - ixnew, cfb->cb_use_ldif );
5211 op->oq_modrdn = modr;
5214 ldap_pvt_thread_pool_resume( &connection_pool );
5216 send_ldap_result( op, rs );
5221 config_back_delete( Operation *op, SlapReply *rs )
5223 send_ldap_error( op, rs, LDAP_UNWILLING_TO_PERFORM, NULL );
5228 config_back_search( Operation *op, SlapReply *rs )
5231 CfEntryInfo *ce, *last;
5234 cfb = (CfBackInfo *)op->o_bd->be_private;
5236 ce = config_find_base( cfb->cb_root, &op->o_req_ndn, &last );
5239 rs->sr_matched = last->ce_entry->e_name.bv_val;
5240 rs->sr_err = LDAP_NO_SUCH_OBJECT;
5243 if ( !access_allowed_mask( op, ce->ce_entry, slap_schema.si_ad_entry, NULL,
5244 ACL_SEARCH, NULL, &mask ))
5246 if ( !ACL_GRANT( mask, ACL_DISCLOSE )) {
5247 rs->sr_err = LDAP_NO_SUCH_OBJECT;
5249 rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
5253 switch ( op->ors_scope ) {
5254 case LDAP_SCOPE_BASE:
5255 case LDAP_SCOPE_SUBTREE:
5256 config_send( op, rs, ce, 0 );
5259 case LDAP_SCOPE_ONELEVEL:
5260 for (ce = ce->ce_kids; ce; ce=ce->ce_sibs) {
5261 config_send( op, rs, ce, 1 );
5266 rs->sr_err = LDAP_SUCCESS;
5268 send_ldap_result( op, rs );
5272 /* no-op, we never free entries */
5273 int config_entry_release(
5278 if ( !e->e_private ) {
5281 return LDAP_SUCCESS;
5284 /* return LDAP_SUCCESS IFF we can retrieve the specified entry.
5286 int config_back_entry_get(
5290 AttributeDescription *at,
5295 CfEntryInfo *ce, *last;
5297 cfb = (CfBackInfo *)op->o_bd->be_private;
5299 ce = config_find_base( cfb->cb_root, ndn, &last );
5301 *ent = ce->ce_entry;
5302 if ( *ent && oc && !is_entry_objectclass_or_sub( *ent, oc ) ) {
5307 return ( *ent == NULL ? 1 : 0 );
5311 config_build_attrs( Entry *e, AttributeType **at, AttributeDescription *ad,
5312 ConfigTable *ct, ConfigArgs *c )
5316 for (; at && *at; at++) {
5317 /* Skip the naming attr */
5318 if ((*at)->sat_ad == ad || (*at)->sat_ad == slap_schema.si_ad_cn )
5320 for (i=0;ct[i].name;i++) {
5321 if (ct[i].ad == (*at)->sat_ad) {
5322 rc = config_get_vals(&ct[i], c);
5323 /* NOTE: tolerate that config_get_vals()
5324 * returns success with no values */
5325 if (rc == LDAP_SUCCESS && c->rvalue_vals != NULL ) {
5326 if ( c->rvalue_nvals )
5327 attr_merge(e, ct[i].ad, c->rvalue_vals,
5330 attr_merge_normalize(e, ct[i].ad,
5331 c->rvalue_vals, NULL);
5332 ber_bvarray_free( c->rvalue_nvals );
5333 ber_bvarray_free( c->rvalue_vals );
5342 config_build_entry( Operation *op, SlapReply *rs, CfEntryInfo *parent,
5343 ConfigArgs *c, struct berval *rdn, ConfigOCs *main, ConfigOCs *extra )
5345 Entry *e = entry_alloc();
5346 CfEntryInfo *ce = ch_calloc( 1, sizeof(CfEntryInfo) );
5348 struct berval ad_name;
5349 AttributeDescription *ad = NULL;
5356 CfEntryInfo *ceprev = NULL;
5358 Debug( LDAP_DEBUG_TRACE, "config_build_entry: \"%s\"\n", rdn->bv_val, 0, 0);
5361 ce->ce_type = main->co_type;
5362 ce->ce_parent = parent;
5364 pdn = parent->ce_entry->e_nname;
5365 if ( parent->ce_kids )
5366 for ( ceprev = parent->ce_kids; ceprev->ce_sibs &&
5367 ceprev->ce_type <= ce->ce_type;
5368 ceprev = ceprev->ce_sibs );
5373 ce->ce_private = c->ca_private;
5377 build_new_dn( &e->e_name, &pdn, rdn, NULL );
5378 ber_dupbv( &e->e_nname, &e->e_name );
5380 attr_merge_normalize_one(e, slap_schema.si_ad_objectClass,
5381 main->co_name, NULL );
5383 attr_merge_normalize_one(e, slap_schema.si_ad_objectClass,
5384 extra->co_name, NULL );
5385 ptr = strchr(rdn->bv_val, '=');
5386 ad_name.bv_val = rdn->bv_val;
5387 ad_name.bv_len = ptr - rdn->bv_val;
5388 rc = slap_bv2ad( &ad_name, &ad, &text );
5393 val.bv_len = rdn->bv_len - (val.bv_val - rdn->bv_val);
5394 attr_merge_normalize_one(e, ad, &val, NULL );
5397 c->table = main->co_type;
5398 if ( oc->soc_required )
5399 config_build_attrs( e, oc->soc_required, ad, main->co_table, c );
5401 if ( oc->soc_allowed )
5402 config_build_attrs( e, oc->soc_allowed, ad, main->co_table, c );
5406 c->table = extra->co_type;
5407 if ( oc->soc_required )
5408 config_build_attrs( e, oc->soc_required, ad, extra->co_table, c );
5410 if ( oc->soc_allowed )
5411 config_build_attrs( e, oc->soc_allowed, ad, extra->co_table, c );
5414 oc_at = attr_find( e->e_attrs, slap_schema.si_ad_objectClass );
5415 rc = structural_class(oc_at->a_vals, &oc, NULL, &text, c->cr_msg,
5416 sizeof(c->cr_msg), op ? op->o_tmpmemctx : NULL );
5417 attr_merge_normalize_one(e, slap_schema.si_ad_structuralObjectClass, &oc->soc_cname, NULL );
5420 op->ora_modlist = NULL;
5421 slap_add_opattrs( op, NULL, NULL, 0, 0 );
5422 if ( !op->o_noop ) {
5423 op->o_bd->be_add( op, rs );
5424 if ( ( rs->sr_err != LDAP_SUCCESS )
5425 && (rs->sr_err != LDAP_ALREADY_EXISTS) ) {
5431 ce->ce_sibs = ceprev->ce_sibs;
5432 ceprev->ce_sibs = ce;
5433 } else if ( parent ) {
5434 ce->ce_sibs = parent->ce_kids;
5435 parent->ce_kids = ce;
5442 config_build_schema_inc( ConfigArgs *c, CfEntryInfo *ceparent,
5443 Operation *op, SlapReply *rs )
5446 ConfigFile *cf = c->ca_private;
5450 for (; cf; cf=cf->c_sibs, c->depth++) {
5451 if ( !cf->c_at_head && !cf->c_cr_head && !cf->c_oc_head &&
5452 !cf->c_om_head ) continue;
5453 c->value_dn.bv_val = c->log;
5454 LUTIL_SLASHPATH( cf->c_file.bv_val );
5455 bv.bv_val = strrchr(cf->c_file.bv_val, LDAP_DIRSEP[0]);
5460 bv.bv_len = cf->c_file.bv_len - (bv.bv_val - cf->c_file.bv_val);
5462 ptr = strchr( bv.bv_val, '.' );
5464 bv.bv_len = ptr - bv.bv_val;
5465 c->value_dn.bv_len = snprintf(c->value_dn.bv_val, sizeof( c->log ), "cn=" SLAP_X_ORDERED_FMT, c->depth);
5466 if ( c->value_dn.bv_len >= sizeof( c->log ) ) {
5467 /* FIXME: how can indicate error? */
5470 strncpy( c->value_dn.bv_val + c->value_dn.bv_len, bv.bv_val,
5472 c->value_dn.bv_len += bv.bv_len;
5473 c->value_dn.bv_val[c->value_dn.bv_len] ='\0';
5476 e = config_build_entry( op, rs, ceparent, c, &c->value_dn,
5477 &CFOC_SCHEMA, NULL );
5480 } else if ( e && cf->c_kids ) {
5481 c->ca_private = cf->c_kids;
5482 config_build_schema_inc( c, e->e_private, op, rs );
5488 #ifdef SLAPD_MODULES
5491 config_build_modules( ConfigArgs *c, CfEntryInfo *ceparent,
5492 Operation *op, SlapReply *rs )
5497 for (i=0, mp=&modpaths; mp; mp=mp->mp_next, i++) {
5498 if ( BER_BVISNULL( &mp->mp_path ) && !mp->mp_loads )
5500 c->value_dn.bv_val = c->log;
5501 c->value_dn.bv_len = snprintf(c->value_dn.bv_val, sizeof( c->log ), "cn=module" SLAP_X_ORDERED_FMT, i);
5502 if ( c->value_dn.bv_len >= sizeof( c->log ) ) {
5503 /* FIXME: how can indicate error? */
5507 if ( ! config_build_entry( op, rs, ceparent, c, &c->value_dn, &CFOC_MODULE, NULL )) {
5516 config_check_schema(Operation *op, CfBackInfo *cfb)
5518 struct berval schema_dn = BER_BVC(SCHEMA_RDN "," CONFIG_RDN);
5520 CfEntryInfo *ce, *last;
5523 /* If there's no root entry, we must be in the midst of converting */
5524 if ( !cfb->cb_root )
5527 /* Make sure the main schema entry exists */
5528 ce = config_find_base( cfb->cb_root, &schema_dn, &last );
5535 /* Make sure it's up to date */
5536 if ( cf_om_tail != om_sys_tail ) {
5537 a = attr_find( e->e_attrs, cfAd_om );
5539 if ( a->a_nvals != a->a_vals )
5540 ber_bvarray_free( a->a_nvals );
5541 ber_bvarray_free( a->a_vals );
5546 oidm_unparse( &bv, NULL, NULL, 1 );
5547 attr_merge_normalize( e, cfAd_om, bv, NULL );
5548 ber_bvarray_free( bv );
5549 cf_om_tail = om_sys_tail;
5551 if ( cf_at_tail != at_sys_tail ) {
5552 a = attr_find( e->e_attrs, cfAd_attr );
5554 if ( a->a_nvals != a->a_vals )
5555 ber_bvarray_free( a->a_nvals );
5556 ber_bvarray_free( a->a_vals );
5561 at_unparse( &bv, NULL, NULL, 1 );
5562 attr_merge_normalize( e, cfAd_attr, bv, NULL );
5563 ber_bvarray_free( bv );
5564 cf_at_tail = at_sys_tail;
5566 if ( cf_oc_tail != oc_sys_tail ) {
5567 a = attr_find( e->e_attrs, cfAd_oc );
5569 if ( a->a_nvals != a->a_vals )
5570 ber_bvarray_free( a->a_nvals );
5571 ber_bvarray_free( a->a_vals );
5576 oc_unparse( &bv, NULL, NULL, 1 );
5577 attr_merge_normalize( e, cfAd_oc, bv, NULL );
5578 ber_bvarray_free( bv );
5579 cf_oc_tail = oc_sys_tail;
5582 SlapReply rs = {REP_RESULT};
5583 c.ca_private = NULL;
5584 e = config_build_entry( op, &rs, cfb->cb_root, &c, &schema_rdn,
5585 &CFOC_SCHEMA, NULL );
5590 ce->ce_private = cfb->cb_config;
5591 cf_at_tail = at_sys_tail;
5592 cf_oc_tail = oc_sys_tail;
5593 cf_om_tail = om_sys_tail;
5598 static const char *defacl[] = {
5599 NULL, "to", "*", "by", "*", "none", NULL
5603 config_back_db_open( BackendDB *be, ConfigReply *cr )
5605 CfBackInfo *cfb = be->be_private;
5608 CfEntryInfo *ce, *ceparent;
5612 Connection conn = {0};
5613 OperationBuffer opbuf;
5615 slap_callback cb = { NULL, slap_null_cb, NULL, NULL };
5616 SlapReply rs = {REP_RESULT};
5617 void *thrctx = NULL;
5619 Debug( LDAP_DEBUG_TRACE, "config_back_db_open\n", 0, 0, 0);
5621 /* If we have no explicitly configured ACLs, don't just use
5622 * the global ACLs. Explicitly deny access to everything.
5624 if ( frontendDB->be_acl && be->be_acl == frontendDB->be_acl ) {
5625 parse_acl(be, "config_back_db_open", 0, 6, (char **)defacl, 0 );
5628 thrctx = ldap_pvt_thread_pool_context();
5629 connection_fake_init( &conn, &opbuf, thrctx );
5632 op->o_tag = LDAP_REQ_ADD;
5633 op->o_callback = &cb;
5634 op->o_bd = &cfb->cb_db;
5635 op->o_dn = op->o_bd->be_rootdn;
5636 op->o_ndn = op->o_bd->be_rootndn;
5638 if ( !cfb->cb_use_ldif ) {
5642 /* If we read the config from back-ldif, do some quick sanity checks */
5643 if ( cfb->cb_got_ldif ) {
5644 return config_check_schema( op, cfb );
5647 /* create root of tree */
5649 c.ca_private = cfb->cb_config;
5651 e = config_build_entry( op, &rs, NULL, &c, &rdn, &CFOC_GLOBAL, NULL );
5661 #ifdef SLAPD_MODULES
5662 /* Create Module nodes... */
5663 if ( modpaths.mp_loads ) {
5664 if ( config_build_modules( &c, ceparent, op, &rs ) ){
5670 /* Create schema nodes... cn=schema will contain the hardcoded core
5671 * schema, read-only. Child objects will contain runtime loaded schema
5675 c.ca_private = NULL;
5676 e = config_build_entry( op, &rs, ceparent, &c, &rdn, &CFOC_SCHEMA, NULL );
5681 ce->ce_private = cfb->cb_config;
5682 cf_at_tail = at_sys_tail;
5683 cf_oc_tail = oc_sys_tail;
5684 cf_om_tail = om_sys_tail;
5686 /* Create schema nodes for included schema... */
5687 if ( cfb->cb_config->c_kids ) {
5689 c.ca_private = cfb->cb_config->c_kids;
5690 if (config_build_schema_inc( &c, ce, op, &rs )) {
5695 /* Create backend nodes. Skip if they don't provide a cf_table.
5696 * There usually aren't any of these.
5700 LDAP_STAILQ_FOREACH( bi, &backendInfo, bi_next) {
5701 if (!bi->bi_cf_ocs) {
5702 /* If it only supports the old config mech, complain. */
5703 if ( bi->bi_config ) {
5704 Debug( LDAP_DEBUG_ANY,
5705 "WARNING: No dynamic config support for backend %s.\n",
5706 bi->bi_type, 0, 0 );
5711 if (!bi->bi_private) continue;
5714 rdn.bv_len = snprintf(rdn.bv_val, sizeof( c.log ),
5715 "%s=%s", cfAd_backend->ad_cname.bv_val, bi->bi_type);
5716 if ( rdn.bv_len >= sizeof( c.log ) ) {
5717 /* FIXME: holler ... */ ;
5720 e = config_build_entry( op, &rs, ceparent, &c, &rdn, &CFOC_BACKEND,
5727 /* Create database nodes... */
5728 frontendDB->be_cf_ocs = &CFOC_FRONTEND;
5729 LDAP_STAILQ_NEXT(frontendDB, be_next) = LDAP_STAILQ_FIRST(&backendDB);
5730 for ( i = -1, be = frontendDB ; be;
5731 i++, be = LDAP_STAILQ_NEXT( be, be_next )) {
5732 slap_overinfo *oi = NULL;
5734 if ( overlay_is_over( be )) {
5735 oi = be->bd_info->bi_private;
5741 /* If this backend supports the old config mechanism, but not
5742 * the new mech, complain.
5744 if ( !be->be_cf_ocs && bi->bi_db_config ) {
5745 Debug( LDAP_DEBUG_ANY,
5746 "WARNING: No dynamic config support for database %s.\n",
5747 bi->bi_type, 0, 0 );
5751 rdn.bv_len = snprintf(rdn.bv_val, sizeof( c.log ),
5752 "%s=" SLAP_X_ORDERED_FMT "%s", cfAd_database->ad_cname.bv_val,
5754 if ( rdn.bv_len >= sizeof( c.log ) ) {
5755 /* FIXME: holler ... */ ;
5759 e = config_build_entry( op, &rs, ceparent, &c, &rdn, &CFOC_DATABASE,
5765 if ( be->be_cf_ocs && be->be_cf_ocs->co_cfadd )
5766 be->be_cf_ocs->co_cfadd( op, &rs, e, &c );
5767 /* Iterate through overlays */
5772 voidList *vl, *v0 = NULL;
5774 /* overlays are in LIFO order, must reverse stack */
5775 for (on=oi->oi_list; on; on=on->on_next) {
5776 vl = ch_malloc( sizeof( voidList ));
5781 for (j=0; vl; j++,vl=v0) {
5785 if ( on->on_bi.bi_db_config && !on->on_bi.bi_cf_ocs ) {
5786 Debug( LDAP_DEBUG_ANY,
5787 "WARNING: No dynamic config support for overlay %s.\n",
5788 on->on_bi.bi_type, 0, 0 );
5792 rdn.bv_len = snprintf(rdn.bv_val, sizeof( c.log ),
5793 "%s=" SLAP_X_ORDERED_FMT "%s",
5794 cfAd_overlay->ad_cname.bv_val, j, on->on_bi.bi_type );
5795 if ( rdn.bv_len >= sizeof( c.log ) ) {
5796 /* FIXME: holler ... */ ;
5800 oe = config_build_entry( op, &rs, ce, &c, &rdn,
5801 &CFOC_OVERLAY, c.bi->bi_cf_ocs );
5805 if ( c.bi->bi_cf_ocs && c.bi->bi_cf_ocs->co_cfadd )
5806 c.bi->bi_cf_ocs->co_cfadd( op, &rs, oe, &c );
5811 ldap_pvt_thread_pool_context_reset( thrctx );
5813 if ( unsupp && cfb->cb_use_ldif ) {
5814 Debug( LDAP_DEBUG_ANY, "\nWARNING: The converted cn=config "
5815 "directory is incomplete and may not work.\n\n", 0, 0, 0 );
5822 cfb_free_cffile( ConfigFile *cf )
5826 for (; cf; cf=next) {
5829 cfb_free_cffile( cf->c_kids );
5830 ch_free( cf->c_file.bv_val );
5831 ber_bvarray_free( cf->c_dseFiles );
5837 cfb_free_entries( CfEntryInfo *ce )
5841 for (; ce; ce=next) {
5844 cfb_free_entries( ce->ce_kids );
5845 ce->ce_entry->e_private = NULL;
5846 entry_free( ce->ce_entry );
5852 config_back_db_close( BackendDB *be, ConfigReply *cr )
5854 CfBackInfo *cfb = be->be_private;
5856 cfb_free_entries( cfb->cb_root );
5857 cfb->cb_root = NULL;
5859 if ( cfb->cb_db.bd_info ) {
5860 backend_shutdown( &cfb->cb_db );
5867 config_back_db_destroy( BackendDB *be, ConfigReply *cr )
5869 CfBackInfo *cfb = be->be_private;
5871 cfb_free_cffile( cfb->cb_config );
5873 ch_free( cfdir.bv_val );
5875 avl_free( CfOcTree, NULL );
5877 if ( cfb->cb_db.bd_info ) {
5878 cfb->cb_db.be_suffix = NULL;
5879 cfb->cb_db.be_nsuffix = NULL;
5880 BER_BVZERO( &cfb->cb_db.be_rootdn );
5881 BER_BVZERO( &cfb->cb_db.be_rootndn );
5883 backend_destroy_one( &cfb->cb_db, 0 );
5892 config_back_db_init( BackendDB *be, ConfigReply* cr )
5898 cfb->cb_config = ch_calloc( 1, sizeof(ConfigFile));
5899 cfn = cfb->cb_config;
5900 be->be_private = cfb;
5902 ber_dupbv( &be->be_rootdn, &config_rdn );
5903 ber_dupbv( &be->be_rootndn, &be->be_rootdn );
5904 ber_dupbv( &dn, &be->be_rootdn );
5905 ber_bvarray_add( &be->be_suffix, &dn );
5906 ber_dupbv( &dn, &be->be_rootdn );
5907 ber_bvarray_add( &be->be_nsuffix, &dn );
5909 /* Hide from namingContexts */
5910 SLAP_BFLAGS(be) |= SLAP_BFLAG_CONFIG;
5916 config_back_destroy( BackendInfo *bi )
5918 ldif_must_b64_encode_release();
5923 config_tool_entry_open( BackendDB *be, int mode )
5925 CfBackInfo *cfb = be->be_private;
5926 BackendInfo *bi = cfb->cb_db.bd_info;
5928 if ( bi && bi->bi_tool_entry_open )
5929 return bi->bi_tool_entry_open( &cfb->cb_db, mode );
5936 config_tool_entry_close( BackendDB *be )
5938 CfBackInfo *cfb = be->be_private;
5939 BackendInfo *bi = cfb->cb_db.bd_info;
5941 if ( bi && bi->bi_tool_entry_close )
5942 return bi->bi_tool_entry_close( &cfb->cb_db );
5948 config_tool_entry_first( BackendDB *be )
5950 CfBackInfo *cfb = be->be_private;
5951 BackendInfo *bi = cfb->cb_db.bd_info;
5953 if ( bi && bi->bi_tool_entry_first )
5954 return bi->bi_tool_entry_first( &cfb->cb_db );
5960 config_tool_entry_next( BackendDB *be )
5962 CfBackInfo *cfb = be->be_private;
5963 BackendInfo *bi = cfb->cb_db.bd_info;
5965 if ( bi && bi->bi_tool_entry_next )
5966 return bi->bi_tool_entry_next( &cfb->cb_db );
5972 config_tool_entry_get( BackendDB *be, ID id )
5974 CfBackInfo *cfb = be->be_private;
5975 BackendInfo *bi = cfb->cb_db.bd_info;
5977 if ( bi && bi->bi_tool_entry_get )
5978 return bi->bi_tool_entry_get( &cfb->cb_db, id );
5983 static int entry_put_got_frontend=0;
5984 static int entry_put_got_config=0;
5986 config_tool_entry_put( BackendDB *be, Entry *e, struct berval *text )
5988 CfBackInfo *cfb = be->be_private;
5989 BackendInfo *bi = cfb->cb_db.bd_info;
5991 struct berval rdn, vals[ 2 ];
5993 OperationBuffer opbuf;
5995 Connection conn = {0};
5996 Operation *op = NULL;
6000 /* Create entry for frontend database if it does not exist already */
6001 if ( !entry_put_got_frontend ) {
6002 if ( !strncmp( e->e_nname.bv_val, "olcDatabase",
6003 STRLENOF( "olcDatabase" ))) {
6004 if ( strncmp( e->e_nname.bv_val +
6005 STRLENOF( "olcDatabase" ), "={-1}frontend",
6006 STRLENOF( "={-1}frontend" )) &&
6007 strncmp( e->e_nname.bv_val +
6008 STRLENOF( "olcDatabase" ), "=frontend",
6009 STRLENOF( "=frontend" ))) {
6011 vals[1].bv_val = NULL;
6012 memset( &ca, 0, sizeof(ConfigArgs));
6014 ca.bi = frontendDB->bd_info;
6015 ca.be->be_cf_ocs = &CFOC_FRONTEND;
6016 rdn.bv_val = ca.log;
6017 rdn.bv_len = snprintf(rdn.bv_val, sizeof( ca.log ),
6018 "%s=" SLAP_X_ORDERED_FMT "%s",
6019 cfAd_database->ad_cname.bv_val, -1,
6021 ce = config_build_entry( NULL, NULL, cfb->cb_root, &ca, &rdn,
6022 &CFOC_DATABASE, ca.be->be_cf_ocs );
6023 thrctx = ldap_pvt_thread_pool_context();
6024 connection_fake_init2( &conn, &opbuf, thrctx,0 );
6026 op->o_bd = &cfb->cb_db;
6027 op->o_tag = LDAP_REQ_ADD;
6029 op->o_dn = be->be_rootdn;
6030 op->o_ndn = be->be_rootndn;
6031 rc = slap_add_opattrs(op, NULL, NULL, 0, 0);
6032 if ( rc != LDAP_SUCCESS ) {
6033 text->bv_val = "autocreation of \"olcDatabase={-1}frontend\" failed";
6034 text->bv_len = STRLENOF("autocreation of \"olcDatabase={-1}frontend\" failed");
6038 if ( ce && bi && bi->bi_tool_entry_put &&
6039 bi->bi_tool_entry_put( &cfb->cb_db, ce, text ) != NOID ) {
6040 entry_put_got_frontend++;
6042 text->bv_val = "autocreation of \"olcDatabase={-1}frontend\" failed";
6043 text->bv_len = STRLENOF("autocreation of \"olcDatabase={-1}frontend\" failed");
6047 entry_put_got_frontend++;
6052 /* Create entry for config database if it does not exist already */
6053 if ( !entry_put_got_config && !isFrontend ) {
6054 if ( !strncmp( e->e_nname.bv_val, "olcDatabase",
6055 STRLENOF( "olcDatabase" ))) {
6056 if ( strncmp( e->e_nname.bv_val +
6057 STRLENOF( "olcDatabase" ), "={0}config",
6058 STRLENOF( "={0}config" )) &&
6059 strncmp( e->e_nname.bv_val +
6060 STRLENOF( "olcDatabase" ), "=config",
6061 STRLENOF( "=config" )) ) {
6063 vals[1].bv_val = NULL;
6064 memset( &ca, 0, sizeof(ConfigArgs));
6065 ca.be = LDAP_STAILQ_FIRST( &backendDB );
6066 ca.bi = ca.be->bd_info;
6067 rdn.bv_val = ca.log;
6068 rdn.bv_len = snprintf(rdn.bv_val, sizeof( ca.log ),
6069 "%s=" SLAP_X_ORDERED_FMT "%s",
6070 cfAd_database->ad_cname.bv_val, 0,
6072 ce = config_build_entry( NULL, NULL, cfb->cb_root, &ca, &rdn, &CFOC_DATABASE,
6075 thrctx = ldap_pvt_thread_pool_context();
6076 connection_fake_init2( &conn, &opbuf, thrctx,0 );
6078 op->o_bd = &cfb->cb_db;
6079 op->o_tag = LDAP_REQ_ADD;
6080 op->o_dn = be->be_rootdn;
6081 op->o_ndn = be->be_rootndn;
6084 rc = slap_add_opattrs(op, NULL, NULL, 0, 0);
6085 if ( rc != LDAP_SUCCESS ) {
6086 text->bv_val = "autocreation of \"olcDatabase={0}config\" failed";
6087 text->bv_len = STRLENOF("autocreation of \"olcDatabase={0}config\" failed");
6090 if (ce && bi && bi->bi_tool_entry_put &&
6091 bi->bi_tool_entry_put( &cfb->cb_db, ce, text ) != NOID ) {
6092 entry_put_got_config++;
6094 text->bv_val = "autocreation of \"olcDatabase={0}config\" failed";
6095 text->bv_len = STRLENOF("autocreation of \"olcDatabase={0}config\" failed");
6099 entry_put_got_config++;
6103 if ( bi && bi->bi_tool_entry_put &&
6104 config_add_internal( cfb, e, &ca, NULL, NULL, NULL ) == 0 )
6105 return bi->bi_tool_entry_put( &cfb->cb_db, e, text );
6112 AttributeDescription **desc;
6114 { "attribute", &cfAd_attr },
6115 { "backend", &cfAd_backend },
6116 { "database", &cfAd_database },
6117 { "include", &cfAd_include },
6118 { "objectclass", &cfAd_oc },
6119 { "objectidentifier", &cfAd_om },
6120 { "overlay", &cfAd_overlay },
6125 * add / delete: all types that may be added or deleted must use an
6126 * X-ORDERED attributeType for their RDN. Adding and deleting entries
6127 * should automatically renumber the index of any siblings as needed,
6128 * so that no gaps in the numbering sequence exist after the add/delete
6130 * What can be added:
6132 * backend objects for backend-specific config directives
6136 * delete: probably no support this time around.
6138 * modrdn: generally not done. Will be invoked automatically by add/
6139 * delete to update numbering sequence. Perform as an explicit operation
6140 * so that the renumbering effect may be replicated. Subtree rename must
6141 * be supported, since renumbering a database will affect all its child
6144 * modify: must be fully supported.
6148 config_back_initialize( BackendInfo *bi )
6150 ConfigTable *ct = config_back_cf_table;
6154 AttributeDescription *ad = NULL;
6156 static char *controls[] = {
6157 LDAP_CONTROL_MANAGEDSAIT,
6161 /* Make sure we don't exceed the bits reserved for userland */
6162 config_check_userland( CFG_LAST );
6164 bi->bi_controls = controls;
6169 bi->bi_destroy = config_back_destroy;
6171 bi->bi_db_init = config_back_db_init;
6172 bi->bi_db_config = 0;
6173 bi->bi_db_open = config_back_db_open;
6174 bi->bi_db_close = config_back_db_close;
6175 bi->bi_db_destroy = config_back_db_destroy;
6177 bi->bi_op_bind = config_back_bind;
6178 bi->bi_op_unbind = 0;
6179 bi->bi_op_search = config_back_search;
6180 bi->bi_op_compare = 0;
6181 bi->bi_op_modify = config_back_modify;
6182 bi->bi_op_modrdn = config_back_modrdn;
6183 bi->bi_op_add = config_back_add;
6184 bi->bi_op_delete = config_back_delete;
6185 bi->bi_op_abandon = 0;
6187 bi->bi_extended = 0;
6189 bi->bi_chk_referrals = 0;
6191 bi->bi_access_allowed = slap_access_allowed;
6193 bi->bi_connection_init = 0;
6194 bi->bi_connection_destroy = 0;
6196 bi->bi_entry_release_rw = config_entry_release;
6197 bi->bi_entry_get_rw = config_back_entry_get;
6199 bi->bi_tool_entry_open = config_tool_entry_open;
6200 bi->bi_tool_entry_close = config_tool_entry_close;
6201 bi->bi_tool_entry_first = config_tool_entry_first;
6202 bi->bi_tool_entry_next = config_tool_entry_next;
6203 bi->bi_tool_entry_get = config_tool_entry_get;
6204 bi->bi_tool_entry_put = config_tool_entry_put;
6207 argv[ 0 ] = "slapd";
6213 for (i=0; OidMacros[i].name; i++ ) {
6214 argv[1] = OidMacros[i].name;
6215 argv[2] = OidMacros[i].oid;
6216 parse_oidm( &ca, 0, NULL );
6219 bi->bi_cf_ocs = cf_ocs;
6221 i = config_register_schema( ct, cf_ocs );
6224 /* setup olcRootPW to be base64-encoded when written in LDIF form;
6225 * basically, we don't care if it fails */
6226 i = slap_str2ad( "olcRootPW", &ad, &text );
6228 Debug( LDAP_DEBUG_ANY, "config_back_initialize: "
6229 "warning, unable to get \"olcRootPW\" "
6230 "attribute description: %d: %s\n",
6233 (void)ldif_must_b64_encode_register( ad->ad_cname.bv_val,
6234 ad->ad_type->sat_oid );
6237 /* set up the notable AttributeDescriptions */
6239 for (;ct->name;ct++) {
6240 if (strcmp(ct->name, ads[i].name)) continue;
6241 *ads[i].desc = ct->ad;
6243 if (!ads[i].name) break;