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
|
package dhcpv4
import (
"bytes"
"fmt"
"math"
"testing"
"github.com/stretchr/testify/require"
"github.com/u-root/u-root/pkg/uio"
)
func TestParseOption(t *testing.T) {
for _, tt := range []struct {
code OptionCode
value []byte
want string
}{
{
code: OptionNameServer,
value: []byte{192, 168, 1, 254},
want: "\xc0\xa8\x01\xfe ([192 168 1 254])",
},
{
code: OptionSubnetMask,
value: []byte{255, 255, 255, 0},
want: "ffffff00",
},
{
code: OptionRouter,
value: []byte{192, 168, 1, 1, 192, 168, 2, 1},
want: "192.168.1.1, 192.168.2.1",
},
{
code: OptionDomainNameServer,
value: []byte{192, 168, 1, 1, 192, 168, 2, 1},
want: "192.168.1.1, 192.168.2.1",
},
{
code: OptionNTPServers,
value: []byte{192, 168, 1, 1, 192, 168, 2, 1},
want: "192.168.1.1, 192.168.2.1",
},
{
code: OptionServerIdentifier,
value: []byte{192, 168, 1, 1, 192, 168, 2, 1},
want: "192.168.1.1, 192.168.2.1",
},
{
code: OptionHostName,
value: []byte("test"),
want: "test",
},
{
code: OptionDomainName,
value: []byte("test"),
want: "test",
},
{
code: OptionRootPath,
value: []byte("test"),
want: "test",
},
{
code: OptionClassIdentifier,
value: []byte("test"),
want: "test",
},
{
code: OptionTFTPServerName,
value: []byte("test"),
want: "test",
},
{
code: OptionBootfileName,
value: []byte("test"),
want: "test",
},
{
code: OptionBroadcastAddress,
value: []byte{192, 168, 1, 1},
want: "192.168.1.1",
},
{
code: OptionRequestedIPAddress,
value: []byte{192, 168, 1, 1},
want: "192.168.1.1",
},
{
code: OptionIPAddressLeaseTime,
value: []byte{0, 0, 0, 12},
want: "12s",
},
{
code: OptionDHCPMessageType,
value: []byte{1},
want: "DISCOVER",
},
{
code: OptionParameterRequestList,
value: []byte{3, 4, 5},
want: "Router, Time Server, Name Server",
},
{
code: OptionMaximumDHCPMessageSize,
value: []byte{1, 2},
want: "258",
},
{
code: OptionUserClassInformation,
value: []byte{4, 't', 'e', 's', 't', 3, 'f', 'o', 'o'},
want: "test, foo",
},
{
code: OptionRelayAgentInformation,
value: []byte{1, 12, 99, 105, 114, 99, 117, 105, 116, 45, 105, 100, 45, 49},
want: "\n Agent Circuit ID Sub-option: circuit-id-1 ([99 105 114 99 117 105 116 45 105 100 45 49])\n",
},
{
code: OptionClientSystemArchitectureType,
value: []byte{0, 0},
want: "Intel x86PC",
},
} {
s := parseOption(tt.code, tt.value)
if got := s.String(); got != tt.want {
t.Errorf("parseOption(%s, %v) = %s, want %s", tt.code, tt.value, got, tt.want)
}
}
}
func TestOptionToBytes(t *testing.T) {
o := Option{
Code: OptionDHCPMessageType,
Value: &OptionGeneric{[]byte{byte(MessageTypeDiscover)}},
}
serialized := o.Value.ToBytes()
expected := []byte{1}
require.Equal(t, expected, serialized)
}
func TestOptionString(t *testing.T) {
o := Option{
Code: OptionDHCPMessageType,
Value: MessageTypeDiscover,
}
require.Equal(t, "DHCP Message Type: DISCOVER", o.String())
}
func TestOptionStringUnknown(t *testing.T) {
o := Option{
Code: GenericOptionCode(102), // Returend option code.
Value: &OptionGeneric{[]byte{byte(MessageTypeDiscover)}},
}
require.Equal(t, "unknown (102): \x01 ([1])", o.String())
}
func TestOptionsMarshal(t *testing.T) {
for i, tt := range []struct {
opts Options
want []byte
}{
{
opts: nil,
want: nil,
},
{
opts: Options{
5: []byte{1, 2, 3, 4},
},
want: []byte{
5 /* key */, 4 /* length */, 1, 2, 3, 4,
},
},
{
// Test sorted key order.
opts: Options{
5: []byte{1, 2, 3},
100: []byte{101, 102, 103},
255: []byte{},
},
want: []byte{
5, 3, 1, 2, 3,
100, 3, 101, 102, 103,
},
},
{
// Test RFC 3396.
opts: Options{
5: bytes.Repeat([]byte{10}, math.MaxUint8+1),
},
want: append(append(
[]byte{5, math.MaxUint8}, bytes.Repeat([]byte{10}, math.MaxUint8)...),
5, 1, 10,
),
},
{
// Test 0-length options
opts: Options{
80: []byte{},
},
want: []byte{80, 0},
},
{
// Test special options, handled by the message marshalling code
// and ignored by the options marshalling code
opts: Options{
0: []byte{}, // Padding
255: []byte{}, // End of options
},
want: nil, // not written out
},
} {
t.Run(fmt.Sprintf("Test %02d", i), func(t *testing.T) {
require.Equal(t, tt.want, uio.ToBigEndian(tt.opts))
})
}
}
func TestOptionsUnmarshal(t *testing.T) {
for i, tt := range []struct {
input []byte
want Options
wantError bool
}{
{
// Buffer missing data.
input: []byte{
3 /* key */, 3 /* length */, 1,
},
wantError: true,
},
{
input: []byte{
// This may look too long, but 0 is padding.
// The issue here is the missing OptionEnd.
3, 3, 0, 0, 0, 0, 0, 0, 0,
},
wantError: true,
},
{
// Only OptionPad and OptionEnd can stand on their own
// without a length field. So this is too short.
input: []byte{
3,
},
wantError: true,
},
{
// Option present after the End is a nono.
input: []byte{byte(OptionEnd), 3},
wantError: true,
},
{
input: []byte{byte(OptionEnd)},
want: Options{},
},
{
input: []byte{
3, 2, 5, 6,
byte(OptionEnd),
},
want: Options{
3: []byte{5, 6},
},
},
{
// Test RFC 3396.
input: append(
append([]byte{3, math.MaxUint8}, bytes.Repeat([]byte{10}, math.MaxUint8)...),
3, 5, 10, 10, 10, 10, 10,
byte(OptionEnd),
),
want: Options{
3: bytes.Repeat([]byte{10}, math.MaxUint8+5),
},
},
{
input: []byte{
10, 2, 255, 254,
11, 3, 5, 5, 5,
byte(OptionEnd),
},
want: Options{
10: []byte{255, 254},
11: []byte{5, 5, 5},
},
},
{
input: append(
append([]byte{10, 2, 255, 254}, bytes.Repeat([]byte{byte(OptionPad)}, 255)...),
byte(OptionEnd),
),
want: Options{
10: []byte{255, 254},
},
},
} {
t.Run(fmt.Sprintf("Test %02d", i), func(t *testing.T) {
opt := make(Options)
err := opt.fromBytesCheckEnd(tt.input, true)
if tt.wantError {
require.Error(t, err)
} else {
require.NoError(t, err)
require.Equal(t, opt, tt.want)
}
})
}
}
|