summaryrefslogtreecommitdiffhomepage
path: root/dhcpv6/option_iaprefix_test.go
blob: de1960ce6bdbb09ed98524bb0d38cf65bddb06de (plain)
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
package dhcpv6

import (
	"errors"
	"fmt"
	"net"
	"reflect"
	"testing"
	"time"

	"github.com/google/go-cmp/cmp"
	"github.com/stretchr/testify/require"
	"github.com/u-root/uio/uio"
)

func TestIAPrefixParseAndGetter(t *testing.T) {
	for i, tt := range []struct {
		buf  []byte
		err  error
		want []*OptIAPrefix
	}{
		{
			buf: []byte{
				0, 26, // IAPrefix option code
				0, 25, // length
				0, 0, 0, 1, // PreferredLifetime
				0, 0, 0, 2, // ValidLifetime
				16,                                                                        // prefix length
				0x24, 1, 0xdb, 0, 0x30, 0x10, 0xc0, 0x8f, 0xfa, 0xce, 0, 0, 0, 0x44, 0, 0, // v6-prefix
			},
			want: []*OptIAPrefix{
				&OptIAPrefix{
					PreferredLifetime: 1 * time.Second,
					ValidLifetime:     2 * time.Second,
					Prefix: &net.IPNet{
						IP:   net.IP{0x24, 1, 0xdb, 0, 0x30, 0x10, 0xc0, 0x8f, 0xfa, 0xce, 0, 0, 0, 0x44, 0, 0},
						Mask: net.CIDRMask(16, 128),
					},
					Options: PrefixOptions{Options: Options{}},
				},
			},
		},
		{
			buf: []byte{
				0, 26, // IAPrefix option code
				0, 25, // length
				0, 0, 0, 1, // PreferredLifetime
				0, 0, 0, 2, // ValidLifetime
				0,                                              // prefix length
				0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // v6-prefix
			},
			want: []*OptIAPrefix{
				&OptIAPrefix{
					PreferredLifetime: 1 * time.Second,
					ValidLifetime:     2 * time.Second,
					Prefix:            nil,
					Options:           PrefixOptions{Options: Options{}},
				},
			},
		},
		{
			buf: []byte{
				0, 26, // IAPrefix option code
				0, 25, // length
				0, 0, 0, 1, // PreferredLifetime
				0, 0, 0, 2, // ValidLifetime
				16,                                                                        // prefix length
				0x24, 1, 0xdb, 0, 0x30, 0x10, 0xc0, 0x8f, 0xfa, 0xce, 0, 0, 0, 0x44, 0, 0, // v6-prefix

				0, 26, // IAPrefix option code
				0, 25, // length
				0, 0, 0, 15, // PreferredLifetime
				0, 0, 0, 14, // ValidLifetime
				32,                                                                        // prefix length
				0x24, 1, 0xdb, 0, 0x30, 0x10, 0xc0, 0x8f, 0xfa, 0xce, 0, 0, 0, 0x44, 0, 0, // v6-prefix
			},
			want: []*OptIAPrefix{
				&OptIAPrefix{
					PreferredLifetime: 1 * time.Second,
					ValidLifetime:     2 * time.Second,
					Prefix: &net.IPNet{
						IP:   net.IP{0x24, 1, 0xdb, 0, 0x30, 0x10, 0xc0, 0x8f, 0xfa, 0xce, 0, 0, 0, 0x44, 0, 0},
						Mask: net.CIDRMask(16, 128),
					},
					Options: PrefixOptions{Options: Options{}},
				},
				&OptIAPrefix{
					PreferredLifetime: 15 * time.Second,
					ValidLifetime:     14 * time.Second,
					Prefix: &net.IPNet{
						IP:   net.IP{0x24, 1, 0xdb, 0, 0x30, 0x10, 0xc0, 0x8f, 0xfa, 0xce, 0, 0, 0, 0x44, 0, 0},
						Mask: net.CIDRMask(32, 128),
					},
					Options: PrefixOptions{Options: Options{}},
				},
			},
		},
		{
			buf:  []byte{0, 3, 0, 1, 0},
			want: nil,
			err:  uio.ErrUnreadBytes,
		},
		{
			buf: []byte{
				0, 26, // IAPrefix option code
				0, 8, // length
				1, 0, 0, 0, // T1
				0, 0, 0, 1, // T2
				// truncated from here
			},
			want: nil,
			err:  uio.ErrBufferTooShort,
		},
		{
			buf: []byte{
				0, 26, // IANA option code
				0, 26, // length
				0, 0, 0, 1, // T1
				0, 0, 0, 2, // T2
				8,
				0x24, 1, 0xdb, 0, 0x30, 0x10, 0xc0, 0x8f, 0xfa, 0xce, 0, 0, 0, 0x44, 0, 0, // IPv6
				0, // malformed options
			},
			want: nil,
			err:  uio.ErrUnreadBytes,
		},
	} {
		t.Run(fmt.Sprintf("%d", i), func(t *testing.T) {
			var mo PDOptions
			if err := mo.FromBytes(tt.buf); !errors.Is(err, tt.err) {
				t.Errorf("FromBytes = %v, want %v", err, tt.err)
			}
			if got := mo.Prefixes(); !reflect.DeepEqual(got, tt.want) {
				t.Errorf("Prefixes = %#v, want %#v", got, tt.want)
			}

			if len(tt.want) >= 1 {
				var b PDOptions
				for _, iana := range tt.want {
					b.Add(iana)
				}
				got := b.ToBytes()
				if diff := cmp.Diff(tt.buf, got); diff != "" {
					t.Errorf("ToBytes mismatch (-want, +got): %s", diff)
				}
			}
		})
	}
}

func TestOptIAPrefixString(t *testing.T) {
	buf := []byte{
		0x00, 0x00, 0x00, 60, // preferredLifetime
		0x00, 0x00, 0x00, 50, // validLifetime
		36,                                                         // prefixLength
		0x20, 0x01, 0x0d, 0xb8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // ipv6Prefix
	}
	var opt OptIAPrefix
	err := opt.FromBytes(buf)
	require.NoError(t, err)

	str := opt.String()
	require.Contains(
		t, str,
		"Prefix=2001:db8::/36",
		"String() should return the ipv6addr",
	)
	require.Contains(
		t, str,
		"PreferredLifetime=1m",
		"String() should return the preferredlifetime",
	)
	require.Contains(
		t, str,
		"ValidLifetime=50s",
		"String() should return the validlifetime",
	)
}