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
|
// Copyright (C) 2011-2012 Internet Systems Consortium, Inc. ("ISC")
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
// copyright notice and this permission notice appear in all copies.
//
// THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
// REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
// AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
// INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
// LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
// OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
// PERFORMANCE OF THIS SOFTWARE.
#include <dhcp/libdhcp++.h>
#include <dhcp/option.h>
#include <exceptions/exceptions.h>
#include <util/io_utilities.h>
#include <iomanip>
#include <sstream>
#include <arpa/inet.h>
#include <stdint.h>
#include <string.h>
using namespace std;
using namespace isc::util;
namespace isc {
namespace dhcp {
OptionPtr
Option::factory(Option::Universe u,
uint16_t type,
const OptionBuffer& buf) {
return(LibDHCP::optionFactory(u, type, buf));
}
Option::Option(Universe u, uint16_t type)
:universe_(u), type_(type) {
// END option (type 255 is forbidden as well)
if ((u == V4) && ((type == 0) || (type > 254))) {
isc_throw(BadValue, "Can't create V4 option of type "
<< type << ", V4 options are in range 1..254");
}
}
Option::Option(Universe u, uint16_t type, const OptionBuffer& data)
:universe_(u), type_(type), data_(data) {
check();
}
Option::Option(Universe u, uint16_t type, OptionBufferConstIter first,
OptionBufferConstIter last)
:universe_(u), type_(type), data_(OptionBuffer(first,last)) {
check();
}
void
Option::check() {
if ( (universe_ != V4) && (universe_ != V6) ) {
isc_throw(BadValue, "Invalid universe type specified. "
<< "Only V4 and V6 are allowed.");
}
if (universe_ == V4) {
if (type_ > 255) {
isc_throw(OutOfRange, "DHCPv4 Option type " << type_ << " is too big. "
<< "For DHCPv4 allowed type range is 0..255");
} else if (data_.size() > 255) {
isc_throw(OutOfRange, "DHCPv4 Option " << type_ << " is too big.");
/// TODO Larger options can be stored as separate instances
/// of DHCPv4 options. Clients MUST concatenate them.
/// Fortunately, there are no such large options used today.
}
}
// no need to check anything for DHCPv6. It allows full range (0-64k) of
// both types and data size.
}
void Option::pack(isc::util::OutputBuffer& buf) {
// Write a header.
packHeader(buf);
// Write data.
if (!data_.empty()) {
buf.writeData(&data_[0], data_.size());
}
// Write sub-options.
packOptions(buf);
}
void
Option::packHeader(isc::util::OutputBuffer& buf) {
if (universe_ == V4) {
if (len() > 255) {
isc_throw(OutOfRange, "DHCPv4 Option " << type_ << " is too big. "
<< "At most 255 bytes are supported.");
/// TODO Larger options can be stored as separate instances
/// of DHCPv4 options. Clients MUST concatenate them.
/// Fortunately, there are no such large options used today.
}
buf.writeUint8(type_);
buf.writeUint8(len() - getHeaderLen());
} else {
buf.writeUint16(type_);
buf.writeUint16(len() - getHeaderLen());
}
}
void
Option::packOptions(isc::util::OutputBuffer& buf) {
LibDHCP::packOptions(buf, options_);
}
void Option::unpack(OptionBufferConstIter begin,
OptionBufferConstIter end) {
data_ = OptionBuffer(begin, end);
}
void
Option::unpackOptions(const OptionBuffer& buf) {
switch (universe_) {
case V4:
LibDHCP::unpackOptions4(buf, options_);
return;
case V6:
LibDHCP::unpackOptions6(buf, options_);
return;
default:
isc_throw(isc::BadValue, "Invalid universe type " << universe_);
}
}
uint16_t Option::len() {
// Returns length of the complete option (data length + DHCPv4/DHCPv6
// option header)
// length of the whole option is header and data stored in this option...
int length = getHeaderLen() + data_.size();
// ... and sum of lengths of all suboptions
for (Option::OptionCollection::iterator it = options_.begin();
it != options_.end();
++it) {
length += (*it).second->len();
}
// note that this is not equal to lenght field. This value denotes
// number of bytes required to store this option. length option should
// contain (len()-getHeaderLen()) value.
return (length);
}
bool
Option::valid() {
if (universe_ != V4 &&
universe_ != V6) {
return (false);
}
return (true);
}
OptionPtr Option::getOption(uint16_t opt_type) {
isc::dhcp::Option::OptionCollection::const_iterator x =
options_.find(opt_type);
if ( x != options_.end() ) {
return (*x).second;
}
return OptionPtr(); // NULL
}
bool Option::delOption(uint16_t opt_type) {
isc::dhcp::Option::OptionCollection::iterator x = options_.find(opt_type);
if ( x != options_.end() ) {
options_.erase(x);
return true; // delete successful
}
return (false); // option not found, can't delete
}
std::string Option::toText(int indent /* =0 */ ) {
std::stringstream tmp;
for (int i = 0; i < indent; i++)
tmp << " ";
tmp << "type=" << type_ << ", len=" << len()-getHeaderLen() << ": ";
for (unsigned int i = 0; i < data_.size(); i++) {
if (i) {
tmp << ":";
}
tmp << setfill('0') << setw(2) << hex
<< static_cast<unsigned short>(data_[i]);
}
// print suboptions
for (OptionCollection::const_iterator opt = options_.begin();
opt != options_.end();
++opt) {
tmp << (*opt).second->toText(indent+2);
}
return tmp.str();
}
uint16_t
Option::getHeaderLen() {
switch (universe_) {
case V4:
return OPTION4_HDR_LEN; // header length for v4
case V6:
return OPTION6_HDR_LEN; // header length for v6
}
return 0; // should not happen
}
void Option::addOption(OptionPtr opt) {
if (universe_ == V4) {
// check for uniqueness (DHCPv4 options must be unique)
if (getOption(opt->getType())) {
isc_throw(BadValue, "Option " << opt->getType()
<< " already present in this message.");
}
}
options_.insert(make_pair(opt->getType(), opt));
}
uint8_t Option::getUint8() {
if (data_.size() < sizeof(uint8_t) ) {
isc_throw(OutOfRange, "Attempt to read uint8 from option " << type_
<< " that has size " << data_.size());
}
return (data_[0]);
}
uint16_t Option::getUint16() {
if (data_.size() < sizeof(uint16_t) ) {
isc_throw(OutOfRange, "Attempt to read uint16 from option " << type_
<< " that has size " << data_.size());
}
return ( readUint16(&data_[0]) );
}
uint32_t Option::getUint32() {
if (data_.size() < sizeof(uint32_t) ) {
isc_throw(OutOfRange, "Attempt to read uint32 from option " << type_
<< " that has size " << data_.size());
}
return ( readUint32(&data_[0]) );
}
void Option::setUint8(uint8_t value) {
data_.resize(1);
data_[0] = value;
}
void Option::setUint16(uint16_t value) {
data_.resize(2);
writeUint16(value, &data_[0]);
}
void Option::setUint32(uint32_t value) {
data_.resize(4);
writeUint32(value, &data_[0]);
}
void Option::setData(const OptionBufferConstIter first,
const OptionBufferConstIter last) {
// We will copy entire option buffer, so we have to resize data_.
data_.resize(std::distance(first, last));
std::copy(first, last, data_.begin());
}
bool Option::equal(const OptionPtr& other) const {
return ( (getType() == other->getType()) &&
(getData() == other->getData()) );
}
Option::~Option() {
}
} // end of isc::dhcp namespace
} // end of isc namespace
|