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
|
/* $Id: DhcpMessage.cpp $ */
/** @file
* DHCP Message and its de/serialization.
*/
/*
* Copyright (C) 2017-2019 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*/
#include "DhcpMessage.h"
#include "DhcpOptions.h"
#include <iprt/string.h>
#include <iprt/stream.h>
DhcpMessage::DhcpMessage()
: m_xid(0), m_flags(0),
m_ciaddr(), m_yiaddr(), m_siaddr(), m_giaddr(),
m_sname(), m_file(),
m_optMessageType()
{
}
/* static */
DhcpClientMessage *DhcpClientMessage::parse(bool broadcasted, const void *buf, size_t buflen)
{
if (buflen < RT_OFFSETOF(RTNETBOOTP, bp_vend.Dhcp.dhcp_opts))
{
RTPrintf("%s: %zu bytes datagram is too short\n", __FUNCTION__, buflen);
return NULL;
}
PCRTNETBOOTP bp = (PCRTNETBOOTP)buf;
if (bp->bp_op != RTNETBOOTP_OP_REQUEST)
{
RTPrintf("%s: bad opcode: %d\n", __FUNCTION__, bp->bp_op);
return NULL;
}
if (bp->bp_htype != RTNET_ARP_ETHER)
{
RTPrintf("%s: unsupported htype %d\n", __FUNCTION__, bp->bp_htype);
return NULL;
}
if (bp->bp_hlen != sizeof(RTMAC))
{
RTPrintf("%s: unexpected hlen %d\n", __FUNCTION__, bp->bp_hlen);
return NULL;
}
if ( (bp->bp_chaddr.Mac.au8[0] & 0x01) != 0
&& (bp->bp_flags & RTNET_DHCP_FLAG_BROADCAST) == 0)
{
RTPrintf("%s: multicast chaddr %RTmac without broadcast flag\n",
__FUNCTION__, &bp->bp_chaddr.Mac);
}
/* we don't want to deal with forwarding */
if (bp->bp_giaddr.u != 0)
{
RTPrintf("%s: giaddr %RTnaipv4\n", __FUNCTION__, bp->bp_giaddr.u);
return NULL;
}
if (bp->bp_hops != 0)
{
RTPrintf("%s: non-zero hops %d\n", __FUNCTION__, bp->bp_hops);
return NULL;
}
std::unique_ptr<DhcpClientMessage> msg(new DhcpClientMessage());
msg->m_broadcasted = broadcasted;
msg->m_xid = bp->bp_xid;
msg->m_flags = bp->bp_flags;
msg->m_mac = bp->bp_chaddr.Mac;
msg->m_ciaddr = bp->bp_ciaddr;
msg->m_yiaddr = bp->bp_yiaddr;
msg->m_siaddr = bp->bp_siaddr;
msg->m_giaddr = bp->bp_giaddr;
if (bp->bp_vend.Dhcp.dhcp_cookie != RT_H2N_U32_C(RTNET_DHCP_COOKIE))
{
RTPrintf("bad cookie\n");
return NULL;
}
int overload;
overload = msg->parseOptions(&bp->bp_vend.Dhcp.dhcp_opts,
buflen - RT_OFFSETOF(RTNETBOOTP, bp_vend.Dhcp.dhcp_opts));
if (overload < 0)
return NULL;
/* "The 'file' field MUST be interpreted next ..." */
if (overload & DHCP_OPTION_OVERLOAD_FILE) {
int status = msg->parseOptions(bp->bp_file, sizeof(bp->bp_file));
if (status != 0)
return NULL;
}
else if (bp->bp_file[0] != '\0')
{
/* must be zero terminated, ignore if not */
const char *pszFile = (const char *)bp->bp_file;
size_t len = RTStrNLen(pszFile, sizeof(bp->bp_file));
if (len < sizeof(bp->bp_file))
msg->m_file.assign(pszFile, len);
}
/* "... followed by the 'sname' field." */
if (overload & DHCP_OPTION_OVERLOAD_SNAME) {
int status = msg->parseOptions(bp->bp_sname, sizeof(bp->bp_sname));
if (status != 0) /* NB: this includes "nested" Option Overload */
return NULL;
}
else if (bp->bp_sname[0] != '\0')
{
/* must be zero terminated, ignore if not */
const char *pszSName = (const char *)bp->bp_sname;
size_t len = RTStrNLen(pszSName, sizeof(bp->bp_sname));
if (len < sizeof(bp->bp_sname))
msg->m_sname.assign(pszSName, len);
}
msg->m_optMessageType = OptMessageType(*msg);
if (!msg->m_optMessageType.present())
return NULL;
msg->m_id = ClientId(msg->m_mac, OptClientId(*msg));
return msg.release();
}
int DhcpClientMessage::parseOptions(const void *buf, size_t buflen)
{
uint8_t opt, optlen;
const uint8_t *data;
int overload;
overload = 0;
data = static_cast<const uint8_t *>(buf);
while (buflen > 0) {
opt = *data++;
--buflen;
if (opt == RTNET_DHCP_OPT_PAD) {
continue;
}
if (opt == RTNET_DHCP_OPT_END) {
break;
}
if (buflen == 0) {
RTPrintf("option %d has no length field\n", opt);
return -1;
}
optlen = *data++;
--buflen;
if (optlen > buflen) {
RTPrintf("option %d truncated (length %d, but only %lu bytes left)\n",
opt, optlen, (unsigned long)buflen);
return -1;
}
#if 0
rawopts_t::const_iterator it(m_optmap.find(opt));
if (it != m_optmap.cend())
return -1;
#endif
if (opt == RTNET_DHCP_OPT_OPTION_OVERLOAD) {
if (optlen != 1) {
RTPrintf("Overload Option (option %d) has invalid length %d\n",
opt, optlen);
return -1;
}
overload = *data;
if ((overload & ~DHCP_OPTION_OVERLOAD_MASK) != 0) {
RTPrintf("Overload Option (option %d) has invalid value 0x%x\n",
opt, overload);
return -1;
}
}
else
{
m_rawopts.insert(std::make_pair(opt, octets_t(data, data + optlen)));
}
data += optlen;
buflen -= optlen;
}
return overload;
}
void DhcpClientMessage::dump() const
{
switch (m_optMessageType.value())
{
case RTNET_DHCP_MT_DISCOVER:
LogDHCP(("DISCOVER"));
break;
case RTNET_DHCP_MT_REQUEST:
LogDHCP(("REQUEST"));
break;
case RTNET_DHCP_MT_INFORM:
LogDHCP(("INFORM"));
break;
case RTNET_DHCP_MT_DECLINE:
LogDHCP(("DECLINE"));
break;
case RTNET_DHCP_MT_RELEASE:
LogDHCP(("RELEASE"));
break;
default:
LogDHCP(("<Unknown Mesage Type %d>", m_optMessageType.value()));
break;
}
if (OptRapidCommit(*this).present())
LogDHCP((" (rapid commit)"));
const OptServerId sid(*this);
if (sid.present())
LogDHCP((" for server %RTnaipv4", sid.value().u));
LogDHCP((" xid 0x%08x", m_xid));
LogDHCP((" chaddr %RTmac\n", &m_mac));
const OptClientId cid(*this);
if (cid.present()) {
if (cid.value().size() > 0)
LogDHCP((" client id: %.*Rhxs\n", cid.value().size(), &cid.value().front()));
else
LogDHCP((" client id: <empty>\n"));
}
LogDHCP((" ciaddr %RTnaipv4", m_ciaddr.u));
if (m_yiaddr.u != 0)
LogDHCP((" yiaddr %RTnaipv4", m_yiaddr.u));
if (m_siaddr.u != 0)
LogDHCP((" siaddr %RTnaipv4", m_siaddr.u));
if (m_giaddr.u != 0)
LogDHCP((" giaddr %RTnaipv4", m_giaddr.u));
LogDHCP(("%s\n", broadcast() ? "broadcast" : ""));
const OptRequestedAddress reqAddr(*this);
if (reqAddr.present())
LogDHCP((" requested address %RTnaipv4", reqAddr.value().u));
const OptLeaseTime reqLeaseTime(*this);
if (reqLeaseTime.present())
LogDHCP((" requested lease time %d", reqAddr.value()));
if (reqAddr.present() || reqLeaseTime.present())
LogDHCP(("\n"));
const OptParameterRequest params(*this);
if (params.present())
{
LogDHCP((" params {"));
typedef OptParameterRequest::value_t::const_iterator it_t;
for (it_t it = params.value().begin(); it != params.value().end(); ++it)
LogDHCP((" %d", *it));
LogDHCP((" }\n"));
}
bool fHeader = true;
for (rawopts_t::const_iterator it = m_rawopts.begin();
it != m_rawopts.end(); ++it)
{
const uint8_t optcode = (*it).first;
switch (optcode) {
case OptMessageType::optcode: /* FALLTHROUGH */
case OptClientId::optcode: /* FALLTHROUGH */
case OptRequestedAddress::optcode: /* FALLTHROUGH */
case OptLeaseTime::optcode: /* FALLTHROUGH */
case OptParameterRequest::optcode: /* FALLTHROUGH */
case OptRapidCommit::optcode:
break;
default:
if (fHeader)
{
LogDHCP((" other options:"));
fHeader = false;
}
LogDHCP((" %d", optcode));
break;
}
}
if (!fHeader)
LogDHCP(("\n"));
}
DhcpServerMessage::DhcpServerMessage(const DhcpClientMessage &req,
uint8_t messageTypeParam, RTNETADDRIPV4 serverAddr)
: DhcpMessage(),
m_optServerId(serverAddr)
{
m_dst.u = 0xffffffff; /* broadcast */
m_optMessageType = OptMessageType(messageTypeParam);
/* copy values from the request (cf. RFC2131 Table 3) */
m_xid = req.xid();
m_flags = req.flags();
m_giaddr = req.giaddr();
m_mac = req.mac();
if (req.messageType() == RTNET_DHCP_MT_REQUEST)
m_ciaddr = req.ciaddr();
}
void DhcpServerMessage::maybeUnicast(const DhcpClientMessage &req)
{
if (!req.broadcast() && req.ciaddr().u != 0)
setDst(req.ciaddr());
}
void DhcpServerMessage::addOption(DhcpOption *opt)
{
m_optmap << opt;
}
void DhcpServerMessage::addOptions(const optmap_t &optmap)
{
for (optmap_t::const_iterator it ( optmap.begin() );
it != optmap.end(); ++it)
{
m_optmap << it->second;
}
}
int DhcpServerMessage::encode(octets_t &data)
{
/*
* Header, including DHCP cookie.
*/
RTNETBOOTP bp;
RT_ZERO(bp);
bp.bp_op = RTNETBOOTP_OP_REPLY;
bp.bp_htype = RTNET_ARP_ETHER;
bp.bp_hlen = sizeof(RTMAC);
bp.bp_xid = m_xid;
bp.bp_ciaddr = m_ciaddr;
bp.bp_yiaddr = m_yiaddr;
bp.bp_siaddr = m_siaddr;
bp.bp_giaddr = m_giaddr;
bp.bp_chaddr.Mac = m_mac;
bp.bp_vend.Dhcp.dhcp_cookie = RT_H2N_U32_C(RTNET_DHCP_COOKIE);
data.insert(data.end(), (uint8_t *)&bp, (uint8_t *)&bp.bp_vend.Dhcp.dhcp_opts);
/*
* Options
*/
data << m_optServerId
<< m_optMessageType;
for (optmap_t::const_iterator it ( m_optmap.begin() );
it != m_optmap.end(); ++it)
{
RTPrintf("encoding option %d\n", it->first);
DhcpOption &opt = *it->second;
data << opt;
}
data << OptEnd();
if (data.size() < 548) /* XXX */
data.resize(548);
return VINF_SUCCESS;
}
|