Kea 2.7.6
simple_parser6.cc
Go to the documentation of this file.
1// Copyright (C) 2016-2024 Internet Systems Consortium, Inc. ("ISC")
2//
3// This Source Code Form is subject to the terms of the Mozilla Public
4// License, v. 2.0. If a copy of the MPL was not distributed with this
5// file, You can obtain one at http://mozilla.org/MPL/2.0/.
6
7#include <config.h>
8
9#include <cc/data.h>
11
12using namespace isc::data;
13
14namespace isc {
15namespace dhcp {
30
37 { "data-directory", Element::string },
38 { "preferred-lifetime", Element::integer },
39 { "min-preferred-lifetime", Element::integer },
40 { "max-preferred-lifetime", Element::integer },
41 { "valid-lifetime", Element::integer },
42 { "min-valid-lifetime", Element::integer },
43 { "max-valid-lifetime", Element::integer },
44 { "renew-timer", Element::integer },
45 { "rebind-timer", Element::integer },
46 { "decline-probation-period", Element::integer },
47 { "subnet6", Element::list },
48 { "shared-networks", Element::list },
49 { "interfaces-config", Element::map },
50 { "lease-database", Element::map },
51 { "hosts-database", Element::map },
52 { "hosts-databases", Element::list },
53 { "mac-sources", Element::list },
54 { "relay-supplied-options", Element::list },
55 { "host-reservation-identifiers", Element::list },
56 { "client-classes", Element::list },
57 { "option-def", Element::list },
58 { "option-data", Element::list },
59 { "hooks-libraries", Element::list },
60 { "expired-leases-processing", Element::map },
61 { "server-id", Element::map },
62 { "dhcp4o6-port", Element::integer },
63 { "control-sockets", Element::list },
64 { "dhcp-queue-control", Element::map },
65 { "dhcp-ddns", Element::map },
66 { "user-context", Element::map },
67 { "comment", Element::string },
68 { "sanity-checks", Element::map },
69 { "reservations", Element::list },
70 { "config-control", Element::map },
71 { "server-tag", Element::string },
72 { "reservations-global", Element::boolean },
73 { "reservations-in-subnet", Element::boolean },
74 { "reservations-out-of-pool", Element::boolean },
75 { "calculate-tee-times", Element::boolean },
76 { "t1-percent", Element::real },
77 { "t2-percent", Element::real },
78 { "loggers", Element::list },
79 { "hostname-char-set", Element::string },
80 { "hostname-char-replacement", Element::string },
81 { "ddns-send-updates", Element::boolean },
82 { "ddns-override-no-update", Element::boolean },
83 { "ddns-override-client-update", Element::boolean },
84 { "ddns-replace-client-name", Element::string },
85 { "ddns-generated-prefix", Element::string },
86 { "ddns-qualifying-suffix", Element::string },
87 { "store-extended-info", Element::boolean },
88 { "statistic-default-sample-count", Element::integer },
89 { "statistic-default-sample-age", Element::integer },
90 { "multi-threading", Element::map },
91 { "cache-threshold", Element::real },
92 { "cache-max-age", Element::integer },
93 { "early-global-reservations-lookup", Element::boolean },
94 { "ip-reservations-unique", Element::boolean },
95 { "reservations-lookup-first", Element::boolean },
96 { "ddns-update-on-renew", Element::boolean },
97 { "compatibility", Element::map },
98 { "parked-packet-limit", Element::integer },
99 { "allocator", Element::string },
100 { "pd-allocator", Element::string },
101 { "ddns-ttl-percent", Element::real },
102 { "ddns-conflict-resolution-mode", Element::string },
103 { "ddns-ttl", Element::integer },
104 { "ddns-ttl-min", Element::integer },
105 { "ddns-ttl-max", Element::integer },
106};
107
114 // preferred-lifetime is unspecified and defaults to 0.625 of valid-lifetime.
115 { "valid-lifetime", Element::integer, "7200" },
116 { "decline-probation-period", Element::integer, "86400" }, // 24h
117 { "dhcp4o6-port", Element::integer, "0" },
118 { "server-tag", Element::string, "" },
119 { "reservations-global", Element::boolean, "false" },
120 { "reservations-in-subnet", Element::boolean, "true" },
121 { "reservations-out-of-pool", Element::boolean, "false" },
122 { "calculate-tee-times", Element::boolean, "true" },
123 { "t1-percent", Element::real, ".50" },
124 { "t2-percent", Element::real, ".80" },
125 { "ddns-send-updates", Element::boolean, "true" },
126 { "ddns-override-no-update", Element::boolean, "false" },
127 { "ddns-override-client-update", Element::boolean, "false" },
128 { "ddns-replace-client-name", Element::string, "never" },
129 { "ddns-generated-prefix", Element::string, "myhost" },
130 { "ddns-qualifying-suffix", Element::string, "" },
131 { "hostname-char-set", Element::string, "[^A-Za-z0-9.-]" },
132 { "hostname-char-replacement", Element::string, "" },
133 { "store-extended-info", Element::boolean, "false" },
134 { "statistic-default-sample-count", Element::integer, "20" },
135 { "statistic-default-sample-age", Element::integer, "0" },
136 { "early-global-reservations-lookup", Element::boolean, "false" },
137 { "ip-reservations-unique", Element::boolean, "true" },
138 { "reservations-lookup-first", Element::boolean, "false" },
139 { "ddns-update-on-renew", Element::boolean, "false" },
140 { "parked-packet-limit", Element::integer, "256" },
141 { "allocator", Element::string, "iterative" },
142 { "pd-allocator", Element::string, "iterative" },
143 { "ddns-conflict-resolution-mode", Element::string, "check-with-dhcid" },
144};
145
152 { "name", Element::string },
153 { "code", Element::integer },
154 { "type", Element::string },
155 { "record-types", Element::string },
156 { "space", Element::string },
157 { "encapsulate", Element::string },
158 { "array", Element::boolean, },
159 { "user-context", Element::map },
160 { "comment", Element::string },
161 { "metadata", Element::map }
162};
163
169 { "record-types", Element::string, ""},
170 { "space", Element::string, "dhcp6"}, // DHCP6_OPTION_SPACE
171 { "array", Element::boolean, "false"},
172 { "encapsulate", Element::string, "" }
173};
174
181 { "name", Element::string },
182 { "data", Element::string },
183 { "code", Element::integer },
184 { "space", Element::string },
185 { "csv-format", Element::boolean },
186 { "always-send", Element::boolean },
187 { "never-send", Element::boolean },
188 { "user-context", Element::map },
189 { "comment", Element::string },
190 { "client-classes", Element::list },
191 { "metadata", Element::map }
192};
193
200 { "space", Element::string, "dhcp6"}, // DHCP6_OPTION_SPACE
201 { "csv-format", Element::boolean, "true"},
202 { "always-send", Element::boolean, "false"},
203 { "never-send", Element::boolean, "false"}
204};
205
212 { "preferred-lifetime", Element::integer },
213 { "min-preferred-lifetime", Element::integer },
214 { "max-preferred-lifetime", Element::integer },
215 { "valid-lifetime", Element::integer },
216 { "min-valid-lifetime", Element::integer },
217 { "max-valid-lifetime", Element::integer },
218 { "renew-timer", Element::integer },
219 { "rebind-timer", Element::integer },
220 { "option-data", Element::list },
221 { "pools", Element::list },
222 { "pd-pools", Element::list },
223 { "subnet", Element::string },
224 { "interface", Element::string },
225 { "interface-id", Element::string },
226 { "id", Element::integer },
227 { "rapid-commit", Element::boolean },
228 { "client-class", Element::string },
229 { "client-classes", Element::list },
230 { "require-client-classes", Element::list },
231 { "evaluate-additional-classes", Element::list },
232 { "reservations", Element::list },
233 { "reservations-global", Element::boolean },
234 { "reservations-in-subnet", Element::boolean },
235 { "reservations-out-of-pool", Element::boolean },
236 { "relay", Element::map },
237 { "user-context", Element::map },
238 { "comment", Element::string },
239 { "calculate-tee-times", Element::boolean },
240 { "t1-percent", Element::real },
241 { "t2-percent", Element::real },
242 { "ddns-send-updates", Element::boolean },
243 { "ddns-override-no-update", Element::boolean },
244 { "ddns-override-client-update", Element::boolean },
245 { "ddns-replace-client-name", Element::string },
246 { "ddns-generated-prefix", Element::string },
247 { "ddns-qualifying-suffix", Element::string },
248 { "hostname-char-set", Element::string },
249 { "hostname-char-replacement", Element::string },
250 { "store-extended-info", Element::boolean },
251 { "metadata", Element::map },
252 { "cache-threshold", Element::real },
253 { "cache-max-age", Element::integer },
254 { "ddns-update-on-renew", Element::boolean },
255 { "allocator", Element::string },
256 { "pd-allocator", Element::string },
257 { "ddns-ttl-percent", Element::real },
258 { "ddns-conflict-resolution-mode", Element::string },
259 { "ddns-ttl", Element::integer },
260 { "ddns-ttl-min", Element::integer },
261 { "ddns-ttl-max", Element::integer },
262};
263
271 { "interface", Element::string, "" },
272 { "rapid-commit", Element::boolean, "false" }, // rapid-commit disabled by default
273 { "interface-id", Element::string, "" }
274};
275
282};
283
286 { "interface", Element::string, "" },
287 { "interface-id", Element::string, "" },
288 { "rapid-commit", Element::boolean, "false" } // rapid-commit disabled by default
289};
290
301 "preferred-lifetime",
302 "min-preferred-lifetime",
303 "max-preferred-lifetime",
304 "rebind-timer",
305 "relay",
306 "renew-timer",
307 "valid-lifetime",
308 "min-valid-lifetime",
309 "max-valid-lifetime",
310 "calculate-tee-times",
311 "t1-percent",
312 "t2-percent",
313 "store-extended-info",
314 "cache-threshold",
315 "cache-max-age",
316 "allocator",
317 "pd-allocator"
318};
319
326 { "pool", Element::string },
327 { "pool-id", Element::integer },
328 { "option-data", Element::list },
329 { "client-class", Element::string },
330 { "client-classes", Element::list },
331 { "require-client-classes", Element::list },
332 { "evaluate-additional-classes", Element::list },
333 { "user-context", Element::map },
334 { "comment", Element::string },
335 { "metadata", Element::map }
336};
337
344 { "prefix", Element::string },
345 { "prefix-len", Element::integer },
346 { "delegated-len", Element::integer },
347 { "pool-id", Element::integer },
348 { "option-data", Element::list },
349 { "client-class", Element::string },
350 { "client-classes", Element::list },
351 { "require-client-classes", Element::list },
352 { "evaluate-additional-classes", Element::list },
353 { "excluded-prefix", Element::string },
354 { "excluded-prefix-len", Element::integer },
355 { "user-context", Element::map },
356 { "comment", Element::string },
357 { "metadata", Element::map }
358};
359
366 { "name", Element::string },
367 { "subnet6", Element::list },
368 { "interface", Element::string },
369 { "interface-id", Element::string },
370 { "renew-timer", Element::integer },
371 { "rebind-timer", Element::integer },
372 { "option-data", Element::list },
373 { "relay", Element::map },
374 { "reservations-global", Element::boolean },
375 { "reservations-in-subnet", Element::boolean },
376 { "reservations-out-of-pool", Element::boolean },
377 { "client-class", Element::string },
378 { "client-classes", Element::list },
379 { "require-client-classes", Element::list },
380 { "evaluate-additional-classes", Element::list },
381 { "preferred-lifetime", Element::integer },
382 { "min-preferred-lifetime", Element::integer },
383 { "max-preferred-lifetime", Element::integer },
384 { "rapid-commit", Element::boolean },
385 { "valid-lifetime", Element::integer },
386 { "min-valid-lifetime", Element::integer },
387 { "max-valid-lifetime", Element::integer },
388 { "user-context", Element::map },
389 { "comment", Element::string },
390 { "calculate-tee-times", Element::boolean },
391 { "t1-percent", Element::real },
392 { "t2-percent", Element::real },
393 { "ddns-send-updates", Element::boolean },
394 { "ddns-override-no-update", Element::boolean },
395 { "ddns-override-client-update", Element::boolean },
396 { "ddns-replace-client-name", Element::string },
397 { "ddns-generated-prefix", Element::string },
398 { "ddns-qualifying-suffix", Element::string },
399 { "hostname-char-set", Element::string },
400 { "hostname-char-replacement", Element::string },
401 { "store-extended-info", Element::boolean },
402 { "metadata", Element::map },
403 { "cache-threshold", Element::real },
404 { "cache-max-age", Element::integer },
405 { "ddns-update-on-renew", Element::boolean },
406 { "allocator", Element::string },
407 { "pd-allocator", Element::string },
408 { "ddns-ttl-percent", Element::real },
409 { "ddns-conflict-resolution-mode", Element::string },
410 { "ddns-ttl", Element::integer },
411 { "ddns-ttl-min", Element::integer },
412 { "ddns-ttl-max", Element::integer },
413};
414
417 { "re-detect", Element::boolean, "true" }
418};
419
422 { "enable-queue", Element::boolean, "false"},
423 { "queue-type", Element::string, "kea-ring6"},
424 { "capacity", Element::integer, "64"}
425};
426
429 { "enable-multi-threading", Element::boolean, "true" },
430 { "thread-pool-size", Element::integer, "0" },
431 { "packet-queue-size", Element::integer, "64" }
432};
433
436 { "lease-checks", Element::string, "warn" }
437};
438
440
444
446 size_t cnt = 0;
447
448 // Set global defaults first.
449 cnt = setDefaults(global, GLOBAL6_DEFAULTS);
450
451 // Now set the defaults for each specified option definition
452 ConstElementPtr option_defs = global->get("option-def");
453 if (option_defs) {
454 for (auto const& option_def : option_defs->listValue()) {
456 }
457 }
458
459 // Set the defaults for option data
460 ConstElementPtr options = global->get("option-data");
461 if (options) {
462 for (auto const& single_option : options->listValue()) {
463 cnt += SimpleParser::setDefaults(single_option, OPTION6_DEFAULTS);
464 }
465 }
466
467 // Now set the defaults for defined subnets
468 ConstElementPtr subnets = global->get("subnet6");
469 if (subnets) {
470 cnt += setListDefaults(subnets, SUBNET6_DEFAULTS);
471 }
472
473 // Set the defaults for interfaces config
474 ConstElementPtr ifaces_cfg = global->get("interfaces-config");
475 if (ifaces_cfg) {
476 ElementPtr mutable_cfg = boost::const_pointer_cast<Element>(ifaces_cfg);
477 cnt += setDefaults(mutable_cfg, IFACE6_DEFAULTS);
478 }
479
480 // Set defaults for shared networks
481 ConstElementPtr shared = global->get("shared-networks");
482 if (shared) {
483 for (auto const& net : shared->listValue()) {
484
486
487 ConstElementPtr subs = net->get("subnet6");
488 if (subs) {
490 }
491 }
492 }
493
494 // Set the defaults for dhcp-queue-control. If the element isn't there
495 // we'll add it.
496 ConstElementPtr queue_control = global->get("dhcp-queue-control");
497 ElementPtr mutable_cfg;
498 if (queue_control) {
499 mutable_cfg = boost::const_pointer_cast<Element>(queue_control);
500 } else {
501 mutable_cfg = Element::createMap();
502 global->set("dhcp-queue-control", mutable_cfg);
503 }
504
505 cnt += setDefaults(mutable_cfg, DHCP_QUEUE_CONTROL6_DEFAULTS);
506
507 // Set the defaults for multi-threading. If the element isn't there
508 // we'll add it.
509 ConstElementPtr multi_threading = global->get("multi-threading");
510 if (multi_threading) {
511 mutable_cfg = boost::const_pointer_cast<Element>(multi_threading);
512 } else {
513 mutable_cfg = Element::createMap();
514 global->set("multi-threading", mutable_cfg);
515 }
516
517 cnt += setDefaults(mutable_cfg, DHCP_MULTI_THREADING6_DEFAULTS);
518
519 // Set the defaults for sanity-checks. If the element isn't
520 // there we'll add it.
521 ConstElementPtr sanity_checks = global->get("sanity-checks");
522 if (sanity_checks) {
523 mutable_cfg = boost::const_pointer_cast<Element>(sanity_checks);
524 } else {
525 mutable_cfg = Element::createMap();
526 global->set("sanity-checks", mutable_cfg);
527 }
528
529 cnt += setDefaults(mutable_cfg, SANITY_CHECKS6_DEFAULTS);
530
531 return (cnt);
532}
533
535 size_t cnt = 0;
536
537 // Now derive global parameters into subnets.
538 ConstElementPtr subnets = global->get("subnet6");
539 if (subnets) {
540 for (auto const& single_subnet : subnets->listValue()) {
541 cnt += SimpleParser::deriveParams(global, single_subnet,
543 }
544 }
545
546 // Deriving parameters for shared networks is a bit more involved.
547 // First, the shared-network level derives from global, and then
548 // subnets within derive from it.
549 ConstElementPtr shared = global->get("shared-networks");
550 if (shared) {
551 for (auto const& net : shared->listValue()) {
552 // First try to inherit the parameters from shared network,
553 // if defined there.
554 // Then try to inherit them from global.
555 cnt += SimpleParser::deriveParams(global, net,
557
558 // Now we need to go thrugh all the subnets in this net.
559 subnets = net->get("subnet6");
560 if (subnets) {
561 for (auto const& single_subnet : subnets->listValue()) {
562 cnt += SimpleParser::deriveParams(net, single_subnet,
564 }
565 }
566 }
567 }
568
569 return (cnt);
570}
571
572} // namespace dhcp
573} // namespace isc
static ElementPtr createMap(const Position &pos=ZERO_POSITION())
Creates an empty MapElement type ElementPtr.
Definition data.cc:304
static size_t setListDefaults(isc::data::ConstElementPtr list, const SimpleDefaults &default_values)
Sets the default values for all entries in a list.
static size_t deriveParams(isc::data::ConstElementPtr parent, isc::data::ElementPtr child, const ParamsList &params)
Derives (inherits) parameters from parent scope to a child.
static size_t setDefaults(isc::data::ElementPtr scope, const SimpleDefaults &default_values)
Sets the default values.
static const isc::data::SimpleDefaults SHARED_SUBNET6_DEFAULTS
This table defines default values for each IPv6 subnet that is part of a shared network.
static const isc::data::SimpleDefaults SUBNET6_DEFAULTS
This table defines default values for each IPv6 subnet.
static const isc::data::SimpleDefaults DHCP_QUEUE_CONTROL6_DEFAULTS
This table defines default values for dhcp-queue-control in DHCPv6.
static const isc::data::SimpleKeywords POOL6_PARAMETERS
This table defines all pool parameters.
static const isc::data::SimpleKeywords SHARED_NETWORK6_PARAMETERS
This table defines all shared network parameters for DHCPv6.
static const isc::data::SimpleDefaults GLOBAL6_DEFAULTS
This table defines default global values for DHCPv6.
static const isc::data::SimpleKeywords SUBNET6_PARAMETERS
This table defines all subnet parameters for DHCPv6.
static const isc::data::SimpleDefaults IFACE6_DEFAULTS
This table defines default values for interfaces for DHCPv6.
static const isc::data::SimpleDefaults OPTION6_DEF_DEFAULTS
This table defines default values for option definitions in DHCPv6.
static const isc::data::SimpleKeywords GLOBAL6_PARAMETERS
This table defines all global parameters in DHCPv6.
static const isc::data::SimpleDefaults OPTION6_DEFAULTS
This table defines default values for options in DHCPv6.
static const isc::data::SimpleDefaults SHARED_NETWORK6_DEFAULTS
This table defines default values for each IPv6 shared network.
static const isc::data::SimpleKeywords OPTION6_PARAMETERS
This table defines all option parameters.
static size_t deriveParameters(isc::data::ElementPtr global)
Derives (inherits) all parameters from global to more specific scopes.
static size_t setAllDefaults(isc::data::ElementPtr global)
Sets all defaults for DHCPv6 configuration.
static const isc::data::SimpleKeywords OPTION6_DEF_PARAMETERS
This table defines all option definition parameters.
static const isc::data::SimpleDefaults DHCP_MULTI_THREADING6_DEFAULTS
This table defines default values for multi-threading in DHCPv6.
static const isc::data::ParamsList INHERIT_TO_SUBNET6
List of parameters that can be inherited from the global to subnet6 scope.
static const isc::data::SimpleDefaults SANITY_CHECKS6_DEFAULTS
This defines default values for sanity checking for DHCPv6.
static const isc::data::SimpleKeywords PD_POOL6_PARAMETERS
This table defines all prefix delegation pool parameters.
std::vector< std::string > ParamsList
This defines a list of all parameters that are derived (or inherited) between contexts.
boost::shared_ptr< const Element > ConstElementPtr
Definition data.h:29
std::vector< SimpleDefault > SimpleDefaults
This specifies all default values in a given scope (e.g. a subnet).
boost::shared_ptr< Element > ElementPtr
Definition data.h:28
std::map< std::string, isc::data::Element::types > SimpleKeywords
This specifies all accepted keywords with their types.
Defines the logger used by the top-level component of kea-lfc.