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
|
// Copyright (C) 2015 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 <dhcp/duid_factory.h>
#include <dhcpsrv/cfg_duid.h>
#include <util/encode/hex.h>
#include <util/strutil.h>
#include <iostream>
using namespace isc;
using namespace isc::util::encode;
using namespace isc::util::str;
namespace isc {
namespace dhcp {
CfgDUID::CfgDUID()
: type_(DUID::DUID_LLT), identifier_(), htype_(0), time_(0),
enterprise_id_(0), persist_(true) {
}
void
CfgDUID::setIdentifier(const std::string& identifier_as_hex) {
// Remove whitespaces.
const std::string identifier = trim(identifier_as_hex);
// Temporary result of parsing.
std::vector<uint8_t> binary;
if (!identifier.empty()) {
try {
// Decode identifier specified as a string of hexadecimal digits.
decodeHex(identifier, binary);
// All went ok, so let's replace identifier with a new value.
identifier_.swap(binary);
} catch (const std::exception& ex) {
isc_throw(BadValue, "identifier specified in the DUID"
" configuration '" << identifier
<< "' is not a valid string of hexadecimal digits");
}
} else {
// If specified identifier is empty, clear our internal identifier.
identifier_.clear();
}
}
DuidPtr
CfgDUID::create(const std::string& duid_file_path) const {
// Use DUID factory to create a DUID instance.
DUIDFactory factory(persist() ? duid_file_path : "");
switch (getType()) {
case DUID::DUID_LLT:
factory.createLLT(getHType(), getTime(), getIdentifier());
break;
case DUID::DUID_EN:
factory.createEN(getEnterpriseId(), getIdentifier());
break;
case DUID::DUID_LL:
factory.createLL(getHType(), getIdentifier());
break;
default:
// This should actually never happen.
isc_throw(Unexpected, "invalid DUID type used " << getType()
<< " to create a new DUID");
}
// Return generated DUID.
return (factory.get());
}
}
}
|