forked from layeh/radius
-
Notifications
You must be signed in to change notification settings - Fork 2
/
packet_test.go
344 lines (303 loc) · 9.22 KB
/
packet_test.go
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
package radius_test
import (
"bytes"
"encoding/hex"
"net"
"strings"
"testing"
"layeh.com/radius"
"layeh.com/radius/rfc2865"
"layeh.com/radius/rfc2869"
)
func Test_RFC2865_7_1(t *testing.T) {
// Source: https://tools.ietf.org/html/rfc2865#section-7.1
secret := []byte("xyzzy5461")
// Request
request := []byte{
0x01, 0x00, 0x00, 0x38, 0x0f, 0x40, 0x3f, 0x94, 0x73, 0x97, 0x80, 0x57, 0xbd, 0x83, 0xd5, 0xcb,
0x98, 0xf4, 0x22, 0x7a, 0x01, 0x06, 0x6e, 0x65, 0x6d, 0x6f, 0x02, 0x12, 0x0d, 0xbe, 0x70, 0x8d,
0x93, 0xd4, 0x13, 0xce, 0x31, 0x96, 0xe4, 0x3f, 0x78, 0x2a, 0x0a, 0xee, 0x04, 0x06, 0xc0, 0xa8,
0x01, 0x10, 0x05, 0x06, 0x00, 0x00, 0x00, 0x03,
}
p, err := radius.Parse(request, secret)
if err != nil {
t.Fatal(err)
}
if p.Code != radius.CodeAccessRequest {
t.Fatal("expecting Code = PacketCodeAccessRequest")
}
if p.Identifier != 0 {
t.Fatal("expecting Identifier = 0")
}
if rfc2865.UserName_GetString(p) != "nemo" {
t.Fatal("expecting User-Name = nemo")
}
if rfc2865.UserPassword_GetString(p) != "arctangent" {
t.Fatal("expecting User-Password = arctangent")
}
if !rfc2865.NASIPAddress_Get(p).Equal(net.ParseIP("192.168.1.16")) {
t.Fatal("expecting NAS-IP-Address = 192.168.1.16")
}
if rfc2865.NASPort_Get(p) != 3 {
t.Fatal("expecting NAS-Port = 3")
}
{
wire, err := p.Encode()
if err != nil {
t.Fatal(err)
}
if !RADIUSPacketsEqual(wire, request) {
t.Fatal("expecting q.Encode() and request to be equal")
}
}
// Response
response := []byte{
0x02, 0x00, 0x00, 0x26, 0x86, 0xfe, 0x22, 0x0e, 0x76, 0x24, 0xba, 0x2a, 0x10, 0x05, 0xf6, 0xbf,
0x9b, 0x55, 0xe0, 0xb2, 0x06, 0x06, 0x00, 0x00, 0x00, 0x01, 0x0f, 0x06, 0x00, 0x00, 0x00, 0x00,
0x0e, 0x06, 0xc0, 0xa8, 0x01, 0x03,
}
q := radius.Packet{
Code: radius.CodeAccessAccept,
Identifier: p.Identifier,
Authenticator: p.Authenticator,
Secret: secret,
Attributes: make(radius.Attributes),
}
rfc2865.ServiceType_Set(&q, rfc2865.ServiceType(1))
rfc2865.LoginService_Set(&q, rfc2865.LoginService(0))
if err := rfc2865.LoginIPHost_Set(&q, net.ParseIP("192.168.1.3")); err != nil {
t.Fatal(err)
}
{
wire, err := q.Encode()
if err != nil {
t.Fatal(err)
}
if !RADIUSPacketsEqual(wire, response) {
t.Fatalf("expecting q.Encode() and response to be equal\n%v\n%v", wire, response)
}
}
if !radius.IsAuthenticResponse(response, request, secret) {
t.Fatal("expecting response to be valid")
}
}
func Test_RFC2865_7_2(t *testing.T) {
// Source: https://tools.ietf.org/html/rfc2865#section-7.2
secret := []byte("xyzzy5461")
// Request
request := []byte{
0x01, 0x01, 0x00, 0x47, 0x2a, 0xee, 0x86, 0xf0, 0x8d, 0x0d, 0x55, 0x96, 0x9c, 0xa5, 0x97, 0x8e,
0x0d, 0x33, 0x67, 0xa2, 0x01, 0x08, 0x66, 0x6c, 0x6f, 0x70, 0x73, 0x79, 0x03, 0x13, 0x16, 0xe9,
0x75, 0x57, 0xc3, 0x16, 0x18, 0x58, 0x95, 0xf2, 0x93, 0xff, 0x63, 0x44, 0x07, 0x72, 0x75, 0x04,
0x06, 0xc0, 0xa8, 0x01, 0x10, 0x05, 0x06, 0x00, 0x00, 0x00, 0x14, 0x06, 0x06, 0x00, 0x00, 0x00,
0x02, 0x07, 0x06, 0x00, 0x00, 0x00, 0x01,
}
p, err := radius.Parse(request, secret)
if err != nil {
t.Fatal(err)
}
if p.Code != radius.CodeAccessRequest {
t.Fatal("expecting code access request")
}
if p.Identifier != 1 {
t.Fatal("expecting Identifier = 1")
}
if rfc2865.UserName_GetString(p) != "flopsy" {
t.Fatal("expecting User-Name = flopsy")
}
if !rfc2865.NASIPAddress_Get(p).Equal(net.ParseIP("192.168.1.16")) {
t.Fatal("expecting NAS-IP-Address = 192.168.1.16")
}
if rfc2865.NASPort_Get(p) != 20 {
t.Fatal("expecting NAS-Port = 20")
}
if rfc2865.ServiceType_Get(p) != rfc2865.ServiceType_Value_FramedUser {
t.Fatal("expecting Service-Type = Attr_ServiceType_FramedUser")
}
if rfc2865.FramedProtocol_Get(p) != rfc2865.FramedProtocol_Value_PPP {
t.Fatal("expecting Framed-Protocol = Attr_FramedProtocol_PPP")
}
// Response
response := []byte{
0x02, 0x01, 0x00, 0x38, 0x15, 0xef, 0xbc, 0x7d, 0xab, 0x26, 0xcf, 0xa3, 0xdc, 0x34, 0xd9, 0xc0,
0x3c, 0x86, 0x01, 0xa4, 0x06, 0x06, 0x00, 0x00, 0x00, 0x02, 0x07, 0x06, 0x00, 0x00, 0x00, 0x01,
0x08, 0x06, 0xff, 0xff, 0xff, 0xfe, 0x0a, 0x06, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x06, 0x00, 0x00,
// ^ incorrectly a 2 in the document
0x00, 0x01, 0x0c, 0x06, 0x00, 0x00, 0x05, 0xdc,
}
p, err = radius.Parse(response, secret)
if err != nil {
t.Fatal(err)
}
if p.Code != radius.CodeAccessAccept {
t.Fatal("exception code access accept")
}
if p.Identifier != 1 {
t.Fatal("expecting Identifier = 1")
}
if rfc2865.ServiceType_Get(p) != rfc2865.ServiceType_Value_FramedUser {
t.Fatal("expecting Service-Type = Framed User")
}
if rfc2865.FramedProtocol_Get(p) != rfc2865.FramedProtocol_Value_PPP {
t.Fatal("expecting Framed-Protocol = PPP")
}
if !net.ParseIP("255.255.255.254").Equal(rfc2865.FramedIPAddress_Get(p)) {
t.Fatal("expecting Framed-IP-Address = 255.255.255.254")
}
if rfc2865.FramedRouting_Get(p) != rfc2865.FramedRouting_Value_None {
t.Fatal("expecting Framed-Routing = None")
}
if rfc2865.FramedCompression_Get(p) != rfc2865.FramedCompression_Value_VanJacobsonTCPIP {
t.Fatal("expecting Framed-Compression = VJ TCP/IP Header Compression")
}
if rfc2865.FramedMTU_Get(p) != 1500 {
t.Fatal("expecting Framed-MTU = 1500")
}
}
func Test_RFC5997_6_1(t *testing.T) {
secret := []byte(`xyzzy5461`)
request := []byte{
0x0c, 0xda, 0x00, 0x26, 0x8a, 0x54, 0xf4, 0x68, 0x6f, 0xb3, 0x94, 0xc5, 0x28, 0x66, 0xe3, 0x02,
0x18, 0x5d, 0x06, 0x23, 0x50, 0x12, 0x5a, 0x66, 0x5e, 0x2e, 0x1e, 0x84, 0x11, 0xf3, 0xe2, 0x43,
0x82, 0x20, 0x97, 0xc8, 0x4f, 0xa3,
}
p, err := radius.Parse(request, secret)
if err != nil {
t.Error(err)
}
if p.Code != radius.CodeStatusServer {
t.Fatalf("expecting Code = Status-Server")
}
if p.Identifier != 218 {
t.Fatalf("expecting ID = 218")
}
if hex.EncodeToString(rfc2869.MessageAuthenticator_Get(p)) != "5a665e2e1e8411f3e243822097c84fa3" {
t.Fatalf("expecting Message-Authenticator = 5a665e2e1e8411f3e243822097c84fa3")
}
if encoded, err := p.Encode(); err != nil || !bytes.Equal(request, encoded) {
t.Fatal("got error or mismatched encodeded")
}
resp := p.Response(radius.CodeAccessAccept)
if resp.Code != radius.CodeAccessAccept {
t.Fatalf("expecting Code = Access-Accept")
}
if resp.Identifier != 218 {
t.Fatalf("expecting ID = 218")
}
response, err := resp.Encode()
if err != nil {
t.Fatal(err)
}
if !radius.IsAuthenticResponse(response, request, secret) {
t.Fatalf("non-authentic response")
}
}
func TestPasswords(t *testing.T) {
passwords := []string{
"",
"qwerty",
"helloworld1231231231231233489hegufudhsgdsfygdf8g",
}
for _, password := range passwords {
secret := []byte("xyzzy5461")
r := radius.New(radius.CodeAccessRequest, secret)
if r == nil {
t.Fatal("could not create new RADIUS packet")
}
if err := rfc2865.UserPassword_AddString(r, password); err != nil {
t.Fatal(err)
}
b, err := r.Encode()
if err != nil {
t.Fatal(err)
}
q, err := radius.Parse(b, secret)
if err != nil {
t.Fatal(err)
}
if s := rfc2865.UserPassword_GetString(q); s != password {
t.Fatalf("incorrect User-Password (expecting %q, got %q)", password, s)
}
}
}
func TestParse_invalid(t *testing.T) {
tests := []struct {
Wire string
Error string
}{
{"\x01", "packet not at least 20 bytes long"},
{
"\x01\xff\x00\x00\x01\x01\x01\x01\x01\x01" +
"\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01",
"invalid packet length",
},
{
"\x01\xff\xff\xff\x01\x01\x01\x01\x01\x01" +
"\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01",
"invalid packet length",
},
{
"\x00\xff\x00\x14\x01\x01\x01\x01\x01\x01" +
"\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01" +
"\x00",
"invalid packet length",
},
{
"\x01\x01\x00\x16\x01\x01\x01\x01\x01\x01" +
"\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01" +
"\x01\x00",
"invalid attribute length",
},
}
secret := []byte("12345")
for _, test := range tests {
packet, err := radius.Parse([]byte(test.Wire), secret)
if packet != nil {
t.Errorf("(%#x): expected empty packet, got %v", test.Wire, packet)
} else if err == nil {
t.Errorf("(%#x): expected error, got none", test.Wire)
} else if !strings.Contains(err.Error(), test.Error) {
t.Errorf("(%#x): expected error %q, got %q", test.Wire, test.Error, err.Error())
}
}
}
func TestPacket_longAttribute(t *testing.T) {
p := radius.New(radius.CodeAccessRequest, []byte(`12345`))
p.Add(1, bytes.Repeat([]byte(`a`), 1000))
if _, err := p.Encode(); err == nil {
t.Fatalf("expecting error, got none")
}
}
// RADIUSPacketsEqual returns if two RADIUS packets are equal, ignoring the
// order of attributes of different types.
func RADIUSPacketsEqual(a, b []byte) bool {
if len(a) != len(b) {
return false
}
if !bytes.Equal(a[:4], b[:4]) {
return false
}
// hash is going to be different, as the attribute order could change
aa, err := radius.ParseAttributes(a[20:])
if err != nil {
panic(err)
}
ab, err := radius.ParseAttributes(b[20:])
if err != nil {
panic(err)
}
if len(aa) != len(ab) {
return false
}
for typeA, attrsA := range aa {
if len(attrsA) != len(ab[typeA]) {
return false
}
for i, attrA := range attrsA {
if !bytes.Equal([]byte(attrA), []byte(ab[typeA][i])) {
return false
}
}
}
return true
}