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
|
package dhcpv6
import (
"errors"
"fmt"
"net"
"strings"
"github.com/insomniacslk/dhcp/iana"
"github.com/u-root/u-root/pkg/uio"
)
type DHCPv6 interface {
Type() MessageType
ToBytes() []byte
Options() []Option
String() string
Summary() string
Length() int
IsRelay() bool
GetOption(code OptionCode) []Option
GetOneOption(code OptionCode) Option
SetOptions(options []Option)
AddOption(Option)
UpdateOption(Option)
}
// Modifier defines the signature for functions that can modify DHCPv6
// structures. This is used to simplify packet manipulation
type Modifier func(d DHCPv6) DHCPv6
func FromBytes(data []byte) (DHCPv6, error) {
buf := uio.NewBigEndianBuffer(data)
messageType := MessageType(buf.Read8())
if messageType == MessageTypeRelayForward || messageType == MessageTypeRelayReply {
d := DHCPv6Relay{
messageType: messageType,
hopCount: buf.Read8(),
}
d.linkAddr = net.IP(buf.CopyN(net.IPv6len))
d.peerAddr = net.IP(buf.CopyN(net.IPv6len))
// TODO fail if no OptRelayMessage is present
if err := d.options.FromBytes(buf.Data()); err != nil {
return nil, err
}
return &d, nil
} else {
d := DHCPv6Message{
messageType: messageType,
}
buf.ReadBytes(d.transactionID[:])
if err := d.options.FromBytes(buf.Data()); err != nil {
return nil, err
}
return &d, nil
}
}
// NewMessage creates a new DHCPv6 message with default options
func NewMessage(modifiers ...Modifier) (DHCPv6, error) {
tid, err := GenerateTransactionID()
if err != nil {
return nil, err
}
msg := DHCPv6Message{
messageType: MessageTypeSolicit,
transactionID: tid,
}
// apply modifiers
d := DHCPv6(&msg)
for _, mod := range modifiers {
d = mod(d)
}
return d, nil
}
// DecapsulateRelay extracts the content of a relay message. It does not recurse
// if there are nested relay messages. Returns the original packet if is not not
// a relay message
func DecapsulateRelay(l DHCPv6) (DHCPv6, error) {
if !l.IsRelay() {
return l, nil
}
opt := l.GetOneOption(OptionRelayMsg)
if opt == nil {
return nil, fmt.Errorf("No OptRelayMsg found")
}
relayOpt := opt.(*OptRelayMsg)
if relayOpt.RelayMessage() == nil {
return nil, fmt.Errorf("Relay message cannot be nil")
}
return relayOpt.RelayMessage(), nil
}
// DecapsulateRelayIndex extracts the content of a relay message. It takes an
// integer as index (e.g. if 0 return the outermost relay, 1 returns the
// second, etc, and -1 returns the last). Returns the original packet if
// it is not not a relay message.
func DecapsulateRelayIndex(l DHCPv6, index int) (DHCPv6, error) {
if !l.IsRelay() {
return l, nil
}
if index < -1 {
return nil, fmt.Errorf("Invalid index: %d", index)
} else if index == -1 {
for {
d, err := DecapsulateRelay(l)
if err != nil {
return nil, err
}
if !d.IsRelay() {
return l, nil
}
l = d
}
}
for i := 0; i <= index; i++ {
d, err := DecapsulateRelay(l)
if err != nil {
return nil, err
}
l = d
}
return l, nil
}
// EncapsulateRelay creates a DHCPv6Relay message containing the passed DHCPv6
// message as payload. The passed message type must be either RELAY_FORW or
// RELAY_REPL
func EncapsulateRelay(d DHCPv6, mType MessageType, linkAddr, peerAddr net.IP) (DHCPv6, error) {
if mType != MessageTypeRelayForward && mType != MessageTypeRelayReply {
return nil, fmt.Errorf("Message type must be either RELAY_FORW or RELAY_REPL")
}
outer := DHCPv6Relay{
messageType: mType,
linkAddr: linkAddr,
peerAddr: peerAddr,
}
if d.IsRelay() {
relay := d.(*DHCPv6Relay)
outer.hopCount = relay.hopCount + 1
} else {
outer.hopCount = 0
}
orm := OptRelayMsg{relayMessage: d}
outer.AddOption(&orm)
return &outer, nil
}
// IsUsingUEFI function takes a DHCPv6 message and returns true if
// the machine trying to netboot is using UEFI of false if it is not.
func IsUsingUEFI(msg DHCPv6) bool {
// RFC 4578 says:
// As of the writing of this document, the following pre-boot
// architecture types have been requested.
// Type Architecture Name
// ---- -----------------
// 0 Intel x86PC
// 1 NEC/PC98
// 2 EFI Itanium
// 3 DEC Alpha
// 4 Arc x86
// 5 Intel Lean Client
// 6 EFI IA32
// 7 EFI BC
// 8 EFI Xscale
// 9 EFI x86-64
if opt := msg.GetOneOption(OptionClientArchType); opt != nil {
optat := opt.(*OptClientArchType)
for _, at := range optat.ArchTypes {
// TODO investigate if other types are appropriate
if at == iana.EFI_BC || at == iana.EFI_X86_64 {
return true
}
}
}
if opt := msg.GetOneOption(OptionUserClass); opt != nil {
optuc := opt.(*OptUserClass)
for _, uc := range optuc.UserClasses {
if strings.Contains(string(uc), "EFI") {
return true
}
}
}
return false
}
// GetTransactionID returns a transactionID of a message or its inner message
// in case of relay
func GetTransactionID(packet DHCPv6) (TransactionID, error) {
if message, ok := packet.(*DHCPv6Message); ok {
return message.TransactionID(), nil
}
if relay, ok := packet.(*DHCPv6Relay); ok {
message, err := relay.GetInnerMessage()
if err != nil {
return TransactionID{0, 0, 0}, err
}
return GetTransactionID(message)
}
return TransactionID{0, 0, 0}, errors.New("Invalid DHCPv6 packet")
}
|