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
|
package dhcpv4
import (
"bytes"
"errors"
"fmt"
)
type OptionCode byte
var MagicCookie = []byte{99, 130, 83, 99}
// TODO: implement Option as an interface similar to dhcpv6.
type Option struct {
Code OptionCode
Data []byte
}
func ParseOption(dataStart []byte) (*Option, error) {
// Parse a sequence of bytes as a single DHCPv4 option.
// Returns the option code, its data, and an error if any.
if len(dataStart) == 0 {
return nil, errors.New("Invalid zero-length DHCPv4 option")
}
opt := OptionCode(dataStart[0])
switch opt {
case OptionPad, OptionEnd:
return &Option{Code: opt, Data: []byte{}}, nil
default:
length := int(dataStart[1])
if len(dataStart) < length+2 {
return nil, errors.New(
fmt.Sprintf("Invalid data length. Declared %v, actual %v",
length, len(dataStart),
))
}
data := dataStart[2 : 2+length]
return &Option{Code: opt, Data: data}, nil
}
}
// OptionsFromBytes parses a sequence of bytes until the end and builds a list
// of options from it. The sequence must contain the Magic Cookie. Returns an
// error if any invalid option or length is found.
func OptionsFromBytes(data []byte) ([]Option, error) {
if len(data) < len(MagicCookie) {
return nil, errors.New("Invalid options: shorter than 4 bytes")
}
if !bytes.Equal(data[:len(MagicCookie)], MagicCookie) {
return nil, fmt.Errorf("Invalid Magic Cookie: %v", data[:len(MagicCookie)])
}
opts, err := OptionsFromBytesWithoutMagicCookie(data[len(MagicCookie):])
if err != nil {
return nil, err
}
return opts, nil
}
// OptionsFromBytesWithoutMagicCookie parses a sequence of bytes until the end
// and builds a list of options from it. The sequence should not contain the
// DHCP magic cookie. Returns an error if any invalid option or length is found.
func OptionsFromBytesWithoutMagicCookie(data []byte) ([]Option, error) {
options := make([]Option, 0, 10)
idx := 0
for {
if idx == len(data) {
break
}
if idx > len(data) {
// this should never happen
return nil, errors.New("Error: Reading past the end of options")
}
opt, err := ParseOption(data[idx:])
idx++
if err != nil {
return nil, err
}
options = append(options, *opt)
// Options with zero length have no length byte, so here we handle the
// ones with nonzero length
if len(opt.Data) > 0 {
idx++
}
idx += len(opt.Data)
}
return options, nil
}
// OptionsToBytes converts a list of options to a wire-format representation
// with the DHCP magic cookie prepended.
func OptionsToBytes(options []Option) []byte {
return append(MagicCookie, OptionsToBytesWithoutMagicCookie(options)...)
}
// OptionsToBytesWithoutMagicCookie converts a list of options to a wire-format
// representation.
func OptionsToBytesWithoutMagicCookie(options []Option) []byte {
ret := []byte{}
for _, opt := range options {
ret = append(ret, opt.ToBytes()...)
}
return ret
}
func (o *Option) String() string {
code, ok := OptionCodeToString[o.Code]
if !ok {
code = "Unknown"
}
return fmt.Sprintf("%v -> %v", code, o.Data)
}
func (o *Option) ToBytes() []byte {
// Convert a single option to its wire-format representation
ret := []byte{byte(o.Code)}
if o.Code != OptionPad && o.Code != OptionEnd {
ret = append(ret, byte(len(o.Data)))
}
return append(ret, o.Data...)
}
|