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
|
// Copyright (C) 2015-2016 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/dhcp6.h>
#include <dhcp/option.h>
#include <dhcp/option_definition.h>
#include <dhcp/libdhcp++.h>
#include <dhcp/option_space.h>
#include <eval/eval_context.h>
#include <eval/parser.h>
#include <exceptions/exceptions.h>
#include <boost/lexical_cast.hpp>
#include <fstream>
#include <limits>
EvalContext::EvalContext(const Option::Universe& option_universe)
: trace_scanning_(false), trace_parsing_(false),
option_universe_(option_universe)
{
}
EvalContext::~EvalContext()
{
}
bool
EvalContext::parseString(const std::string& str, ParserType type)
{
file_ = "<string>";
string_ = str;
scanStringBegin(type);
isc::eval::EvalParser parser(*this);
parser.set_debug_level(trace_parsing_);
int res = parser.parse();
scanStringEnd();
return (res == 0);
}
void
EvalContext::error(const isc::eval::location& loc, const std::string& what)
{
isc_throw(EvalParseError, loc << ": " << what);
}
void
EvalContext::error (const std::string& what)
{
isc_throw(EvalParseError, what);
}
uint16_t
EvalContext::convertOptionCode(const std::string& option_code,
const isc::eval::location& loc)
{
int n = 0;
try {
n = boost::lexical_cast<int>(option_code);
} catch (const boost::bad_lexical_cast &) {
// This can't happen...
error(loc, "Option code has invalid value in " + option_code);
}
if (option_universe_ == Option::V6) {
if (n < 0 || n > 65535) {
error(loc, "Option code has invalid value in "
+ option_code + ". Allowed range: 0..65535");
}
} else {
if (n < 0 || n > 255) {
error(loc, "Option code has invalid value in "
+ option_code + ". Allowed range: 0..255");
}
}
return (static_cast<uint16_t>(n));
}
uint16_t
EvalContext::convertOptionName(const std::string& option_name,
const isc::eval::location& loc)
{
const std::string global_space = (option_universe_ == Option::V4) ?
DHCP4_OPTION_SPACE : DHCP6_OPTION_SPACE;
OptionDefinitionPtr option_def = LibDHCP::getOptionDef(global_space,
option_name);
if (!option_def) {
option_def = LibDHCP::getRuntimeOptionDef(global_space, option_name);
}
if (!option_def) {
error(loc, "option '" + option_name + "' is not defined");
}
return (option_def->getCode());
}
uint8_t
EvalContext::convertNestLevelNumber(const std::string& nest_level,
const isc::eval::location& loc)
{
uint8_t n = convertUint8(nest_level, loc);
if (option_universe_ == Option::V6) {
if (n >= HOP_COUNT_LIMIT) {
error(loc, "Nest level has invalid value in "
+ nest_level + ". Allowed range: 0..31");
}
} else {
error(loc, "Nest level invalid for DHCPv4 packets");
}
return (n);
}
uint8_t
EvalContext::convertUint8(const std::string& number,
const isc::eval::location& loc)
{
int n = 0;
try {
n = boost::lexical_cast<int>(number);
} catch (const boost::bad_lexical_cast &) {
error(loc, "Invalid integer value in " + number);
}
if (n < 0 || n >= std::numeric_limits<uint8_t>::max()) {
error(loc, "Invalid value in "
+ number + ". Allowed range: 0..255");
}
return (static_cast<uint8_t>(n));
}
uint32_t
EvalContext::convertUint32(const std::string& number,
const isc::eval::location& loc)
{
uint64_t n = 0;
try {
n = boost::lexical_cast<uint64_t>(number);
} catch (const boost::bad_lexical_cast &) {
error(loc, "Invalid value in " + number);
}
if (n > std::numeric_limits<uint32_t>::max()) {
error(loc, "Invalid value in "
+ number + ". Allowed range: 0..4294967295");
}
return (static_cast<uint32_t>(n));
}
std::string
EvalContext::fromUint32(const uint32_t integer) {
std::string tmp(4, 0);
tmp[0] = (integer >> 24) & 0xff;
tmp[1] = (integer >> 16) & 0xff;
tmp[2] = (integer >> 8) & 0xff;
tmp[3] = integer & 0xff;
return (tmp);
}
void
EvalContext::fatal (const std::string& what)
{
isc_throw(Unexpected, what);
}
|