-
Notifications
You must be signed in to change notification settings - Fork 146
/
Copy pathd2_cfg_mgr.cc
422 lines (358 loc) · 14.5 KB
/
d2_cfg_mgr.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
// Copyright (C) 2014-2018 Internet Systems Consortium, Inc. ("ISC")
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
#include <config.h>
#include <d2/d2_log.h>
#include <d2/d2_cfg_mgr.h>
#include <d2/d2_simple_parser.h>
#include <util/encode/hex.h>
#include <boost/foreach.hpp>
using namespace isc::asiolink;
using namespace isc::data;
using namespace isc::process;
namespace isc {
namespace d2 {
namespace {
typedef std::vector<uint8_t> ByteAddress;
} // end of unnamed namespace
// *********************** D2CfgContext *************************
D2CfgContext::D2CfgContext()
: d2_params_(new D2Params()),
forward_mgr_(new DdnsDomainListMgr("forward-ddns")),
reverse_mgr_(new DdnsDomainListMgr("reverse-ddns")),
keys_(new TSIGKeyInfoMap()) {
}
D2CfgContext::D2CfgContext(const D2CfgContext& rhs) : DCfgContextBase(rhs) {
d2_params_ = rhs.d2_params_;
if (rhs.forward_mgr_) {
forward_mgr_.reset(new DdnsDomainListMgr(rhs.forward_mgr_->getName()));
forward_mgr_->setDomains(rhs.forward_mgr_->getDomains());
}
if (rhs.reverse_mgr_) {
reverse_mgr_.reset(new DdnsDomainListMgr(rhs.reverse_mgr_->getName()));
reverse_mgr_->setDomains(rhs.reverse_mgr_->getDomains());
}
keys_ = rhs.keys_;
}
D2CfgContext::~D2CfgContext() {
}
ElementPtr
D2CfgContext::toElement() const {
ElementPtr d2 = Element::createMap();
// Set user-context
contextToElement(d2);
// Set ip-address
const IOAddress& ip_address = d2_params_->getIpAddress();
d2->set("ip-address", Element::create(ip_address.toText()));
// Set port
size_t port = d2_params_->getPort();
d2->set("port", Element::create(static_cast<int64_t>(port)));
// Set dns-server-timeout
size_t dns_server_timeout = d2_params_->getDnsServerTimeout();
d2->set("dns-server-timeout",
Element::create(static_cast<int64_t>(dns_server_timeout)));
// Set ncr-protocol
const dhcp_ddns::NameChangeProtocol& ncr_protocol =
d2_params_->getNcrProtocol();
d2->set("ncr-protocol",
Element::create(dhcp_ddns::ncrProtocolToString(ncr_protocol)));
// Set ncr-format
const dhcp_ddns::NameChangeFormat& ncr_format = d2_params_->getNcrFormat();
d2->set("ncr-format",
Element::create(dhcp_ddns::ncrFormatToString(ncr_format)));
// Set forward-ddns
ElementPtr forward_ddns = Element::createMap();
forward_ddns->set("ddns-domains", forward_mgr_->toElement());
d2->set("forward-ddns", forward_ddns);
// Set reverse-ddns
ElementPtr reverse_ddns = Element::createMap();
reverse_ddns->set("ddns-domains", reverse_mgr_->toElement());
d2->set("reverse-ddns", reverse_ddns);
// Set tsig-keys
ElementPtr tsig_keys = Element::createList();
for (TSIGKeyInfoMap::const_iterator key = keys_->begin();
key != keys_->end(); ++key) {
tsig_keys->add(key->second->toElement());
}
d2->set("tsig-keys", tsig_keys);
// Set DhcpDdns
ElementPtr result = Element::createMap();
result->set("DhcpDdns", d2);
return (result);
}
// *********************** D2CfgMgr *************************
const char* D2CfgMgr::IPV4_REV_ZONE_SUFFIX = "in-addr.arpa.";
const char* D2CfgMgr::IPV6_REV_ZONE_SUFFIX = "ip6.arpa.";
D2CfgMgr::D2CfgMgr() : DCfgMgrBase(DCfgContextBasePtr(new D2CfgContext())) {
// TSIG keys need to parse before the Domains, so we can catch Domains
// that specify undefined keys. Create the necessary parsing order now.
addToParseOrder("tsig-keys");
addToParseOrder("forward-ddns");
addToParseOrder("reverse-ddns");
}
D2CfgMgr::~D2CfgMgr() {
}
DCfgContextBasePtr
D2CfgMgr::createNewContext() {
return (DCfgContextBasePtr(new D2CfgContext()));
}
bool
D2CfgMgr::forwardUpdatesEnabled() {
// Forward updates are not enabled if no forward servers are defined.
return (getD2CfgContext()->getForwardMgr()->size() > 0);
}
bool
D2CfgMgr::reverseUpdatesEnabled() {
// Reverse updates are not enabled if no reverse servers are defined.
return (getD2CfgContext()->getReverseMgr()->size() > 0);
}
bool
D2CfgMgr::matchForward(const std::string& fqdn, DdnsDomainPtr& domain) {
if (fqdn.empty()) {
// This is a programmatic error and should not happen.
isc_throw(D2CfgError, "matchForward passed an empty fqdn");
}
// Fetch the forward manager from the D2 context.
DdnsDomainListMgrPtr mgr = getD2CfgContext()->getForwardMgr();
// Call the manager's match method and return the result.
return (mgr->matchDomain(fqdn, domain));
}
bool
D2CfgMgr::matchReverse(const std::string& ip_address, DdnsDomainPtr& domain) {
// Note, reverseIpAddress will throw if the ip_address is invalid.
std::string reverse_address = reverseIpAddress(ip_address);
// Fetch the reverse manager from the D2 context.
DdnsDomainListMgrPtr mgr = getD2CfgContext()->getReverseMgr();
return (mgr->matchDomain(reverse_address, domain));
}
std::string
D2CfgMgr::reverseIpAddress(const std::string& address) {
try {
// Convert string address into an IOAddress and invoke the
// appropriate reverse method.
isc::asiolink::IOAddress ioaddr(address);
if (ioaddr.isV4()) {
return (reverseV4Address(ioaddr));
}
return (reverseV6Address(ioaddr));
} catch (const isc::Exception& ex) {
isc_throw(D2CfgError, "D2CfgMgr cannot reverse address: "
<< address << " : " << ex.what());
}
}
std::string
D2CfgMgr::reverseV4Address(const isc::asiolink::IOAddress& ioaddr) {
if (!ioaddr.isV4()) {
isc_throw(D2CfgError, "D2CfgMgr address is not IPv4 address :"
<< ioaddr);
}
// Get the address in byte vector form.
const ByteAddress bytes = ioaddr.toBytes();
// Walk backwards through vector outputting each octet and a dot.
std::ostringstream stream;
// We have to set the following variable to get
// const_reverse_iterator type of rend(), otherwise Solaris GCC
// complains on operator!= by trying to use the non-const variant.
const ByteAddress::const_reverse_iterator end = bytes.rend();
for (ByteAddress::const_reverse_iterator rit = bytes.rbegin();
rit != end;
++rit)
{
stream << static_cast<unsigned int>(*rit) << ".";
}
// Tack on the suffix and we're done.
stream << IPV4_REV_ZONE_SUFFIX;
return(stream.str());
}
std::string
D2CfgMgr::reverseV6Address(const isc::asiolink::IOAddress& ioaddr) {
if (!ioaddr.isV6()) {
isc_throw(D2CfgError, "D2Cfg address is not IPv6 address: " << ioaddr);
}
// Turn the address into a string of digits.
const ByteAddress bytes = ioaddr.toBytes();
const std::string digits = isc::util::encode::encodeHex(bytes);
// Walk backwards through string outputting each digits and a dot.
std::ostringstream stream;
// We have to set the following variable to get
// const_reverse_iterator type of rend(), otherwise Solaris GCC
// complains on operator!= by trying to use the non-const variant.
const std::string::const_reverse_iterator end = digits.rend();
for (std::string::const_reverse_iterator rit = digits.rbegin();
rit != end;
++rit)
{
stream << static_cast<char>(*rit) << ".";
}
// Tack on the suffix and we're done.
stream << IPV6_REV_ZONE_SUFFIX;
return(stream.str());
}
const D2ParamsPtr&
D2CfgMgr::getD2Params() {
return (getD2CfgContext()->getD2Params());
}
std::string
D2CfgMgr::getConfigSummary(const uint32_t) {
return (getD2Params()->getConfigSummary());
}
namespace {
template <typename int_type> int_type
getInt(const std::string& name, ConstElementPtr value) {
int64_t val_int = value->intValue();
if ((val_int < std::numeric_limits<int_type>::min()) ||
(val_int > std::numeric_limits<int_type>::max())) {
isc_throw(D2CfgError, "out of range value (" << val_int
<< ") specified for parameter '" << name
<< "' (" << value->getPosition() << ")");
}
return (static_cast<int_type>(val_int));
}
isc::asiolink::IOAddress
getIOAddress(const std::string& name, ConstElementPtr value) {
std::string str = value->stringValue();
try {
return (isc::asiolink::IOAddress(str));
} catch (const std::exception& ex) {
isc_throw(D2CfgError, "invalid address (" << str
<< ") specified for parameter '" << name
<< "' (" << value->getPosition() << ")");
}
}
dhcp_ddns::NameChangeProtocol
getProtocol(const std::string& name, ConstElementPtr value) {
std::string str = value->stringValue();
try {
return (dhcp_ddns::stringToNcrProtocol(str));
} catch (const std::exception& ex) {
isc_throw(D2CfgError,
"invalid NameChangeRequest protocol (" << str
<< ") specified for parameter '" << name
<< "' (" << value->getPosition() << ")");
}
}
dhcp_ddns::NameChangeFormat
getFormat(const std::string& name, ConstElementPtr value) {
std::string str = value->stringValue();
try {
return (dhcp_ddns::stringToNcrFormat(str));
} catch (const std::exception& ex) {
isc_throw(D2CfgError,
"invalid NameChangeRequest format (" << str
<< ") specified for parameter '" << name
<< "' (" << value->getPosition() << ")");
}
}
} // anon
void
D2CfgMgr::parseElement(const std::string& element_id,
ConstElementPtr element) {
try {
// Get D2 specific context.
D2CfgContextPtr context = getD2CfgContext();
if ((element_id == "ip-address") ||
(element_id == "ncr-protocol") ||
(element_id == "ncr-format") ||
(element_id == "port") ||
(element_id == "dns-server-timeout")) {
// global scalar params require nothing extra be done
} else if (element_id == "user-context") {
if (element->getType() == Element::map) {
context->setContext(element);
}
} else if (element_id == "tsig-keys") {
TSIGKeyInfoListParser parser;
context->setKeys(parser.parse(element));
} else if (element_id == "forward-ddns") {
DdnsDomainListMgrParser parser;
DdnsDomainListMgrPtr mgr = parser.parse(element, element_id,
context->getKeys());
context->setForwardMgr(mgr);
} else if (element_id == "reverse-ddns") {
DdnsDomainListMgrParser parser;
DdnsDomainListMgrPtr mgr = parser.parse(element, element_id,
context->getKeys());
context->setReverseMgr(mgr);
} else {
// Shouldn't occur if the JSON parser is doing its job.
isc_throw(D2CfgError, "Unsupported element: "
<< element_id << element->getPosition());
}
} catch (const D2CfgError& ex) {
// Should already have a specific error and position info
throw ex;
} catch (const std::exception& ex) {
isc_throw(D2CfgError, "element: " << element_id << " : " << ex.what()
<< element->getPosition());
}
};
void
D2CfgMgr::setCfgDefaults(ElementPtr mutable_config) {
D2SimpleParser::setAllDefaults(mutable_config);
}
void
D2CfgMgr::buildParams(ConstElementPtr params_config) {
// Base class build creates parses and invokes build on each parser.
// This populate the context scalar stores with all of the parameters.
DCfgMgrBase::buildParams(params_config);
// Fetch the parameters in the config, performing any logical
// validation required.
asiolink::IOAddress ip_address(0U);
uint32_t port = 0;
uint32_t dns_server_timeout = 0;
dhcp_ddns::NameChangeProtocol ncr_protocol = dhcp_ddns::NCR_UDP;
dhcp_ddns::NameChangeFormat ncr_format = dhcp_ddns::FMT_JSON;
// Assumes that params_config has had defaults added
BOOST_FOREACH(isc::dhcp::ConfigPair param, params_config->mapValue()) {
std::string entry(param.first);
ConstElementPtr value(param.second);
try {
if (entry == "ip-address") {
ip_address = getIOAddress(entry, value);
if ((ip_address.toText() == "0.0.0.0") ||
(ip_address.toText() == "::")) {
isc_throw(D2CfgError, "IP address cannot be \""
<< ip_address << "\""
<< " (" << value->getPosition() << ")");
}
} else if (entry == "port") {
port = getInt<uint32_t>(entry, value);
} else if (entry == "dns-server-timeout") {
dns_server_timeout = getInt<uint32_t>(entry, value);
} else if (entry == "ncr-protocol") {
ncr_protocol = getProtocol(entry, value);
if (ncr_protocol != dhcp_ddns::NCR_UDP) {
isc_throw(D2CfgError, "ncr-protocol : "
<< dhcp_ddns::ncrProtocolToString(ncr_protocol)
<< " is not yet supported "
<< " (" << value->getPosition() << ")");
}
} else if (entry == "ncr-format") {
ncr_format = getFormat(entry, value);
if (ncr_format != dhcp_ddns::FMT_JSON) {
isc_throw(D2CfgError, "NCR Format:"
<< dhcp_ddns::ncrFormatToString(ncr_format)
<< " is not yet supported"
<< " (" << value->getPosition() << ")");
}
} else {
isc_throw(D2CfgError,
"unsupported parameter '" << entry
<< " (" << value->getPosition() << ")");
}
} catch (const isc::data::TypeError&) {
isc_throw(D2CfgError,
"invalid value type specified for parameter '" << entry
<< " (" << value->getPosition() << ")");
}
}
// Attempt to create the new client config. This ought to fly as
// we already validated everything.
D2ParamsPtr params(new D2Params(ip_address, port, dns_server_timeout,
ncr_protocol, ncr_format));
getD2CfgContext()->getD2Params() = params;
}
}; // end of isc::dhcp namespace
}; // end of isc namespace