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
|
// +build darwin
package bsdp
// Implements Apple's netboot protocol BSDP (Boot Service Discovery Protocol).
// Canonical implementation is defined here:
// http://opensource.apple.com/source/bootp/bootp-198.1/Documentation/BSDP.doc
import (
"encoding/binary"
"errors"
"fmt"
"log"
"net"
"syscall"
"github.com/insomniacslk/dhcp/dhcpv4"
)
// MaxDHCPMessageSize is the size set in DHCP option 57 (DHCP Maximum Message Size).
// BSDP includes its own sub-option (12) to indicate to NetBoot servers that the
// client can support larger message sizes, and modern NetBoot servers will
// prefer this BSDP-specific option over the DHCP standard option.
const MaxDHCPMessageSize = 1500
// BootImageID describes a boot image ID - whether it's an install image and
// what kind of boot image (e.g. OS 9, macOS, hardware diagnostics)
type BootImageID struct {
IsInstall bool
ImageType BootImageType
Index uint16
}
// ToBytes serializes a BootImageID to network-order bytes.
func (b BootImageID) ToBytes() []byte {
bytes := make([]byte, 4)
if b.IsInstall {
bytes[0] |= 0x80
}
bytes[0] |= byte(b.ImageType)
binary.BigEndian.PutUint16(bytes[2:], b.Index)
return bytes
}
// BootImageIDFromBytes deserializes a collection of 4 bytes to a BootImageID.
func BootImageIDFromBytes(bytes []byte) (*BootImageID, error) {
if len(bytes) < 4 {
return nil, fmt.Errorf("not enough bytes to serialize BootImageID")
}
return &BootImageID{
IsInstall: bytes[0]&0x80 != 0,
ImageType: BootImageType(bytes[0] & 0x7f),
Index: binary.BigEndian.Uint16(bytes[2:]),
}, nil
}
// BootImage describes a boot image - contains the boot image ID and the name.
type BootImage struct {
ID BootImageID
Name string
}
// ToBytes converts a BootImage to a slice of bytes.
func (b *BootImage) ToBytes() []byte {
bytes := b.ID.ToBytes()
bytes = append(bytes, byte(len(b.Name)))
bytes = append(bytes, []byte(b.Name)...)
return bytes
}
// BootImageFromBytes returns a deserialized BootImage struct from bytes.
func BootImageFromBytes(bytes []byte) (*BootImage, error) {
// Should at least contain 4 bytes of BootImageID + byte for length of
// boot image name.
if len(bytes) < 5 {
return nil, fmt.Errorf("not enough bytes to serialize BootImage")
}
imageID, err := BootImageIDFromBytes(bytes[:4])
if err != nil {
return nil, err
}
nameLength := int(bytes[4])
if 5+nameLength > len(bytes) {
return nil, fmt.Errorf("not enough bytes for BootImage")
}
name := string(bytes[5 : 5+nameLength])
return &BootImage{ID: *imageID, Name: name}, nil
}
// makeVendorClassIdentifier calls the sysctl syscall on macOS to get the
// platform model.
func makeVendorClassIdentifier() (string, error) {
// Fetch hardware model for class ID.
hwModel, err := syscall.Sysctl("hw.model")
if err != nil {
return "", err
}
return fmt.Sprintf("AAPLBSDPC/i386/%s", hwModel), nil
}
// ParseBootImagesFromOption parses data from the BSDPOptionBootImageList
// option and returns a list of BootImages.
func ParseBootImagesFromOption(data []byte) ([]BootImage, error) {
// Should at least have the # bytes of boot images.
if len(data) < 4 {
return nil, fmt.Errorf("invalid length boot image list")
}
var (
readByteCount = 0
start = data
bootImages []BootImage
)
for {
bootImage, err := BootImageFromBytes(start)
if err != nil {
return nil, err
}
bootImages = append(bootImages, *bootImage)
// Read BootImageID + name length + name
readByteCount += 4 + 1 + len(bootImage.Name)
if readByteCount+1 >= len(data) {
break
}
start = start[readByteCount:]
}
return bootImages, nil
}
// ParseVendorOptionsFromOptions extracts the sub-options list of the vendor-
// specific options from the larger DHCP options list.
// TODO: Implement options.GetOneOption for dhcpv4.
func ParseVendorOptionsFromOptions(options []dhcpv4.Option) []dhcpv4.Option {
var (
vendorOpts []dhcpv4.Option
err error
)
for _, opt := range options {
if opt.Code() == dhcpv4.OptionVendorSpecificInformation {
vendorOpts, err = dhcpv4.OptionsFromBytesWithoutMagicCookie(opt.(*dhcpv4.OptionGeneric).Data)
if err != nil {
log.Println("Warning: could not parse vendor options in DHCP options")
return []dhcpv4.Option{}
}
break
}
}
return vendorOpts
}
// ParseBootImageListFromAck parses the list of boot images presented in the
// ACK[LIST] packet and returns them as a list of BootImages.
func ParseBootImageListFromAck(ack dhcpv4.DHCPv4) ([]BootImage, error) {
var bootImages []BootImage
for _, opt := range ParseVendorOptionsFromOptions(ack.Options()) {
if opt.Code() == OptionBootImageList {
images, err := ParseBootImagesFromOption(opt.(*dhcpv4.OptionGeneric).Data)
if err != nil {
return nil, err
}
bootImages = append(bootImages, images...)
}
}
return bootImages, nil
}
func needsReplyPort(replyPort uint16) bool {
return replyPort != 0 && replyPort != dhcpv4.ClientPort
}
func serializeReplyPort(replyPort uint16) []byte {
bytes := make([]byte, 2)
binary.BigEndian.PutUint16(bytes, replyPort)
return bytes
}
// NewInformListForInterface creates a new INFORM packet for interface ifname
// with configuration options specified by config.
func NewInformListForInterface(iface string, replyPort uint16) (*dhcpv4.DHCPv4, error) {
d, err := dhcpv4.NewInformForInterface(iface /* needsBroadcast = */, false)
if err != nil {
return nil, err
}
// Validate replyPort first
if needsReplyPort(replyPort) && replyPort >= 1024 {
return nil, errors.New("replyPort must be a privileged port")
}
// These are vendor-specific options used to pass along BSDP information.
vendorOpts := []dhcpv4.Option{
dhcpv4.OptionGeneric{
OptionCode: OptionMessageType,
Data: []byte{byte(MessageTypeList)},
},
dhcpv4.OptionGeneric{
OptionCode: OptionVersion,
Data: Version1_1,
},
}
if needsReplyPort(replyPort) {
vendorOpts = append(vendorOpts,
dhcpv4.OptionGeneric{
OptionCode: OptionReplyPort,
Data: serializeReplyPort(replyPort),
},
)
}
var vendorOptsBytes []byte
for _, opt := range vendorOpts {
vendorOptsBytes = append(vendorOptsBytes, opt.ToBytes()...)
}
d.AddOption(&dhcpv4.OptionGeneric{
OptionCode: dhcpv4.OptionVendorSpecificInformation,
Data: vendorOptsBytes,
})
d.AddOption(&dhcpv4.OptParameterRequestList{
RequestedOpts: []dhcpv4.OptionCode{
dhcpv4.OptionVendorSpecificInformation,
dhcpv4.OptionClassIdentifier,
},
})
d.AddOption(&dhcpv4.OptMaximumDHCPMessageSize{Size: MaxDHCPMessageSize})
vendorClassID, err := makeVendorClassIdentifier()
if err != nil {
return nil, err
}
d.AddOption(&dhcpv4.OptClassIdentifier{Identifier: vendorClassID})
d.AddOption(&dhcpv4.OptionGeneric{OptionCode: dhcpv4.OptionEnd})
return d, nil
}
// InformSelectForAck constructs an INFORM[SELECT] packet given an ACK to the
// previously-sent INFORM[LIST] with Config config.
func InformSelectForAck(ack dhcpv4.DHCPv4, replyPort uint16, selectedImage BootImage) (*dhcpv4.DHCPv4, error) {
d, err := dhcpv4.New()
if err != nil {
return nil, err
}
if needsReplyPort(replyPort) && replyPort >= 1024 {
return nil, errors.New("replyPort must be a privilegded port")
}
d.SetOpcode(dhcpv4.OpcodeBootRequest)
d.SetHwType(ack.HwType())
d.SetHwAddrLen(ack.HwAddrLen())
clientHwAddr := ack.ClientHwAddr()
d.SetClientHwAddr(clientHwAddr[:])
d.SetTransactionID(ack.TransactionID())
if ack.IsBroadcast() {
d.SetBroadcast()
} else {
d.SetUnicast()
}
// Data for OptionSelectedBootImageID
vendorOpts := []dhcpv4.Option{
dhcpv4.OptionGeneric{
OptionCode: OptionMessageType,
Data: []byte{byte(MessageTypeSelect)},
},
dhcpv4.OptionGeneric{
OptionCode: OptionVersion,
Data: Version1_1,
},
dhcpv4.OptionGeneric{
OptionCode: OptionSelectedBootImageID,
Data: selectedImage.ID.ToBytes(),
},
}
// Find server IP address
var serverIP net.IP
// TODO replace this loop with `ack.GetOneOption(OptionBootImageList)`
for _, opt := range ack.Options() {
if opt.Code() == dhcpv4.OptionServerIdentifier {
serverIP = net.IP(opt.(*dhcpv4.OptionGeneric).Data)
}
}
if serverIP.To4() == nil {
return nil, fmt.Errorf("could not parse server identifier from ACK")
}
vendorOpts = append(vendorOpts, &dhcpv4.OptServerIdentifier{ServerID: serverIP})
// Validate replyPort if requested.
if needsReplyPort(replyPort) {
vendorOpts = append(vendorOpts, dhcpv4.OptionGeneric{
OptionCode: OptionReplyPort,
Data: serializeReplyPort(replyPort),
})
}
vendorClassID, err := makeVendorClassIdentifier()
if err != nil {
return nil, err
}
d.AddOption(&dhcpv4.OptClassIdentifier{Identifier: vendorClassID})
d.AddOption(&dhcpv4.OptParameterRequestList{
RequestedOpts: []dhcpv4.OptionCode{
dhcpv4.OptionSubnetMask,
dhcpv4.OptionRouter,
dhcpv4.OptionBootfileName,
dhcpv4.OptionVendorSpecificInformation,
dhcpv4.OptionClassIdentifier,
},
})
d.AddOption(&dhcpv4.OptMessageType{MessageType: dhcpv4.MessageTypeInform})
var vendorOptsBytes []byte
for _, opt := range vendorOpts {
vendorOptsBytes = append(vendorOptsBytes, opt.ToBytes()...)
}
d.AddOption(&dhcpv4.OptionGeneric{
OptionCode: dhcpv4.OptionVendorSpecificInformation,
Data: vendorOptsBytes,
})
d.AddOption(&dhcpv4.OptionGeneric{OptionCode: dhcpv4.OptionEnd})
return d, nil
}
|