forked from tailscale/wf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
compose.go
574 lines (522 loc) · 13.5 KB
/
compose.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
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
// Copyright (c) 2021 The Inet.Af AUTHORS. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package wf
import (
"encoding/binary"
"errors"
"fmt"
"net"
"net/netip"
"reflect"
"unsafe"
"go4.org/netipx"
"golang.org/x/sys/windows"
)
// toSession0 converts opts into an arena-allocated fwpmSession0.
func toSession0(a *arena, opts *Options) *fwpmSession0 {
ret := (*fwpmSession0)(a.Alloc(unsafe.Sizeof(fwpmSession0{})))
*ret = fwpmSession0{
DisplayData: fwpmDisplayData0{
Name: toUint16(a, opts.Name),
Description: toUint16(a, opts.Description),
},
TxnWaitTimeoutMillis: uint32(opts.TransactionStartTimeout.Milliseconds()),
}
if opts.Dynamic {
ret.Flags = fwpmSession0FlagDynamic
}
return ret
}
// toSublayerEnumTemplate0 returns an arena-allocated
// fwpmSublayerEnumTemplate0 that filters on the given provider, or
// all if provider is nil.
func toSublayerEnumTemplate0(a *arena, provider ProviderID) *fwpmSublayerEnumTemplate0 {
ret := (*fwpmSublayerEnumTemplate0)(a.Alloc(unsafe.Sizeof(fwpmSublayerEnumTemplate0{})))
ret.ProviderKey = toGUID(a, windows.GUID(provider))
return ret
}
// toSublayer0 converts sl into an arena-allocated fwpmSublayer0.
func toSublayer0(a *arena, sl *Sublayer) *fwpmSublayer0 {
ret := (*fwpmSublayer0)(a.Alloc(unsafe.Sizeof(fwpmSublayer0{})))
*ret = fwpmSublayer0{
SublayerKey: sl.ID,
DisplayData: fwpmDisplayData0{
Name: toUint16(a, sl.Name),
Description: toUint16(a, sl.Description),
},
ProviderKey: toGUID(a, windows.GUID(sl.Provider)),
ProviderData: fwpByteBlob{
Size: uint32(len(sl.ProviderData)),
Data: toBytes(a, sl.ProviderData),
},
Weight: sl.Weight,
}
if sl.Persistent {
ret.Flags = fwpmSublayerFlagsPersistent
}
return ret
}
// toProvider0 converts p into an arena-allocated fwpmProvider0.
func toProvider0(a *arena, p *Provider) *fwpmProvider0 {
ret := (*fwpmProvider0)(a.Alloc(unsafe.Sizeof(fwpmProvider0{})))
*ret = fwpmProvider0{
ProviderKey: p.ID,
DisplayData: fwpmDisplayData0{
Name: toUint16(a, p.Name),
Description: toUint16(a, p.Description),
},
ProviderData: fwpByteBlob{
Size: uint32(len(p.Data)),
Data: toBytes(a, p.Data),
},
ServiceName: toUint16(a, p.ServiceName),
}
if p.Persistent {
ret.Flags = fwpmProviderFlagsPersistent
}
return ret
}
// toFilter0 converts r into an arena-allocated fwpmFilter0, using lt
// as necessary to correctly cast values.
func toFilter0(a *arena, r *Rule, lt layerTypes) (*fwpmFilter0, error) {
conds, err := toCondition0(a, r.Conditions, lt[r.Layer])
if err != nil {
return nil, err
}
typ, val, err := toValue0(a, r.Weight, typeUint64)
if err != nil {
return nil, err
}
ret := (*fwpmFilter0)(a.Alloc(unsafe.Sizeof(fwpmFilter0{})))
*ret = fwpmFilter0{
FilterKey: r.ID,
DisplayData: fwpmDisplayData0{
Name: toUint16(a, r.Name),
Description: toUint16(a, r.Description),
},
ProviderKey: toGUID(a, windows.GUID(r.Provider)),
ProviderData: fwpByteBlob{
Size: uint32(len(r.ProviderData)), // todo: overflow?
Data: toBytes(a, r.ProviderData),
},
LayerKey: r.Layer,
SublayerKey: r.Sublayer,
Weight: fwpValue0{
Type: typ,
Value: val,
},
NumFilterConditions: uint32(len(r.Conditions)), // TODO: overflow?
FilterConditions: conds,
Action: fwpmAction0{
Type: r.Action,
GUID: r.Callout,
},
}
if r.HardAction {
ret.Flags |= fwpmFilterFlagsClearActionRight
}
if r.PermitIfMissing {
ret.Flags |= fwpmFilterFlagsPermitIfCalloutUnregistered
}
if r.Persistent {
ret.Flags |= fwpmFilterFlagsPersistent
}
if r.BootTime {
ret.Flags |= fwpmFilterFlagsBootTime
}
return ret, nil
}
// toCondition0 converts ms into an arena-allocated
// fwpmFilterCondition0 array, using lt as necessary to correctly cast
// values.
func toCondition0(a *arena, ms []*Match, ft fieldTypes) (array *fwpmFilterCondition0, err error) {
if len(ms) == 0 {
return nil, nil
}
array = (*fwpmFilterCondition0)(a.Alloc(uintptr(len(ms)) * unsafe.Sizeof(fwpmFilterCondition0{})))
var conds []fwpmFilterCondition0
sh := (*reflect.SliceHeader)(unsafe.Pointer(&conds))
sh.Cap = len(ms)
sh.Len = len(ms)
sh.Data = uintptr(unsafe.Pointer(array))
for i, m := range ms {
c := &conds[i]
typ, val, err := toValue0(a, m.Value, ft[m.Field])
if err != nil {
return nil, fmt.Errorf("invalid match %v: %w", m, err)
}
*c = fwpmFilterCondition0{
FieldKey: m.Field,
MatchType: m.Op,
Value: fwpConditionValue0{
Type: typ,
Value: val,
},
}
}
return array, nil
}
// toValue0 converts v into the component parts of an fwpValue0 or
// fwpConditionValue0.
func toValue0(a *arena, v interface{}, ftype reflect.Type) (typ dataType, val uintptr, err error) {
mapErr := func() (dataType, uintptr, error) {
return 0, 0, fmt.Errorf("cannot map Go type %T to field type %s", v, ftype)
}
switch ftype {
case typeUint8:
switch u := v.(type) {
case uint8:
typ = dataTypeUint8
*(*uint8)(unsafe.Pointer(&val)) = u
case IPProto:
typ = dataTypeUint8
*(*uint8)(unsafe.Pointer(&val)) = uint8(u)
case Range:
r0, err := toRange0(a, u, ftype)
if err != nil {
return 0, 0, err
}
typ = dataTypeRange
val = uintptr(unsafe.Pointer(r0))
default:
return mapErr()
}
case typeUint16:
switch u := v.(type) {
case uint16:
typ = dataTypeUint16
*(*uint16)(unsafe.Pointer(&val)) = u
case Range:
r0, err := toRange0(a, u, ftype)
if err != nil {
return 0, 0, err
}
typ = dataTypeRange
val = uintptr(unsafe.Pointer(r0))
default:
return mapErr()
}
case typeUint32:
switch u := v.(type) {
case uint32:
typ = dataTypeUint32
*(*uint32)(unsafe.Pointer(&val)) = u
case ConditionFlag:
typ = dataTypeUint32
*(*uint32)(unsafe.Pointer(&val)) = uint32(u)
case Range:
r0, err := toRange0(a, u, ftype)
if err != nil {
return 0, 0, err
}
typ = dataTypeRange
val = uintptr(unsafe.Pointer(r0))
default:
return mapErr()
}
case typeUint64:
switch u := v.(type) {
case uint64:
typ = dataTypeUint64
p := a.Alloc(unsafe.Sizeof(u))
*(*uint64)(p) = u
val = uintptr(p)
case Range:
r0, err := toRange0(a, u, ftype)
if err != nil {
return 0, 0, err
}
typ = dataTypeRange
val = uintptr(unsafe.Pointer(r0))
default:
return mapErr()
}
case typeBytes:
switch bb := v.(type) {
case []byte:
typ = dataTypeByteBlob
p := a.Alloc(unsafe.Sizeof(fwpByteBlob{}))
*(*fwpByteBlob)(p) = fwpByteBlob{
Size: uint32(len(bb)),
Data: toBytes(a, bb),
}
val = uintptr(p)
case Range:
r0, err := toRange0(a, bb, ftype)
if err != nil {
return 0, 0, err
}
typ = dataTypeRange
val = uintptr(unsafe.Pointer(r0))
default:
return mapErr()
}
case typeString:
switch s := v.(type) {
case string:
bb, l := toBytesFromString(a, s)
p := a.Alloc(unsafe.Sizeof(fwpByteBlob{}))
*(*fwpByteBlob)(p) = fwpByteBlob{
Size: uint32(l),
Data: bb,
}
typ = dataTypeByteBlob
val = uintptr(p)
case Range:
r0, err := toRange0(a, s, ftype)
if err != nil {
return 0, 0, err
}
typ = dataTypeRange
val = uintptr(unsafe.Pointer(r0))
default:
return mapErr()
}
case typeSID:
typ = dataTypeSID
s, ok := v.(*windows.SID)
if !ok {
return mapErr()
}
sidLen := windows.GetLengthSid(s)
p := a.Alloc(uintptr(sidLen))
if err := windows.CopySid(sidLen, (*windows.SID)(p), s); err != nil {
return 0, 0, err
}
val = uintptr(p)
case typeArray16:
switch bs := v.(type) {
case [16]byte:
typ = dataTypeByteArray16
val = uintptr(unsafe.Pointer(toBytes(a, bs[:])))
case Range:
r0, err := toRange0(a, bs, ftype)
if err != nil {
return 0, 0, err
}
typ = dataTypeRange
val = uintptr(unsafe.Pointer(r0))
default:
return mapErr()
}
case typeMAC:
typ = dataTypeArray6
mac, ok := v.(net.HardwareAddr)
if !ok {
return mapErr()
}
if len(mac) != 6 {
return mapErr() // TODO: better error
}
val = uintptr(unsafe.Pointer(toBytes(a, mac[:])))
case typeIP:
switch m := v.(type) {
case netip.Addr:
if m.Is4() {
typ = dataTypeUint32
*(*uint32)(unsafe.Pointer(&val)) = u32FromIPv4(m)
} else {
typ = dataTypeByteArray16
b16 := m.As16()
val = uintptr(unsafe.Pointer(toBytes(a, b16[:])))
}
case netip.Prefix:
if m.Addr().Is4() {
typ = dataTypeV4AddrMask
val = uintptr(unsafe.Pointer(toFwpV4AddrAndMask(a, m)))
} else {
typ = dataTypeV6AddrMask
val = uintptr(unsafe.Pointer(toFwpV6AddrAndMask(a, m)))
}
case netipx.IPRange:
if !m.IsValid() {
return 0, 0, fmt.Errorf("invalid IPRange %v", m)
}
r, err := toRange0(a, Range{m.From(), m.To()}, ftype)
if err != nil {
return 0, 0, err
}
typ = dataTypeRange
val = uintptr(unsafe.Pointer(r))
default:
return mapErr()
}
case typeSecurityDescriptor:
sd, ok := v.(*windows.SECURITY_DESCRIPTOR)
if !ok {
return mapErr()
}
csd, err := toSecurityDescriptor(a, sd)
if err != nil {
return 0, 0, err
}
// This should be a FWP_BYTE_BLOB pointing to a
// SECURITY_DESCRIPTOR struct according to the Win32
// Documentation.
// https://docs.microsoft.com/en-us/windows/win32/api/fwptypes/ns-fwptypes-fwp_condition_value0
p := a.Alloc(unsafe.Sizeof(fwpByteBlob{}))
*(*fwpByteBlob)(p) = fwpByteBlob{
Size: uint32(sd.Length()),
Data: (*uint8)(unsafe.Pointer(csd)),
}
typ = dataTypeSecurityDescriptor
val = uintptr(p)
case typeRange:
r, ok := v.(Range)
if !ok {
return mapErr()
}
r0, err := toRange0(a, r, ftype)
if err != nil {
return 0, 0, err
}
typ = dataTypeRange
val = uintptr(unsafe.Pointer(r0))
default:
return mapErr()
}
// TODO: dataTypeTokenInformation
// TODO: dataTypeTokenAccessInformation
return typ, val, nil
}
// toRange0 converts r into an arena-allocated fwpRange0.
func toRange0(a *arena, r Range, ftype reflect.Type) (ret *fwpRange0, err error) {
if _, ok := r.From.(Range); ok {
return nil, errors.New("can't have a Range of Ranges")
}
if _, ok := r.To.(Range); ok {
return nil, errors.New("can't have a Range of Ranges")
}
ftyp, fval, err := toValue0(a, r.From, ftype)
if err != nil {
return nil, err
}
ttyp, tval, err := toValue0(a, r.To, ftype)
if err != nil {
return nil, err
}
if ftyp != ttyp {
return nil, fmt.Errorf("range type mismatch: %T vs. %T", r.From, r.To)
}
ret = (*fwpRange0)(a.Alloc(unsafe.Sizeof(fwpRange0{})))
*ret = fwpRange0{
From: fwpValue0{
Type: ftyp,
Value: fval,
},
To: fwpValue0{
Type: ttyp,
Value: tval,
},
}
return ret, nil
}
// toUint16 converts s into an arena-allocated, null-terminated UTF-16
// array pointer.
func toUint16(a *arena, s string) *uint16 {
if len(s) == 0 {
return nil
}
n := windows.StringToUTF16(s)
ret := a.Alloc(2 * uintptr(len(n)))
var sl []uint16
sh := (*reflect.SliceHeader)(unsafe.Pointer(&sl))
sh.Cap = len(s)
sh.Len = len(s)
sh.Data = uintptr(ret)
copy(sl, n)
return (*uint16)(ret)
}
// toBytes converts bs into an arena-allocated byte array pointer.
func toBytes(a *arena, bs []byte) *byte {
if len(bs) == 0 {
return nil
}
ret := a.Alloc(uintptr(len(bs)))
var sl []byte
sh := (*reflect.SliceHeader)(unsafe.Pointer(&sl))
sh.Cap = len(bs)
sh.Len = len(bs)
sh.Data = uintptr(ret)
copy(sl, bs)
return (*byte)(ret)
}
// toBytes converts s into an arena-allocated byte array pointer,
// containing a utf-16 encoded, null-terminated string.
func toBytesFromString(a *arena, s string) (*byte, int) {
bs := windows.StringToUTF16(s)
l := 2 * len(bs)
ret := a.Alloc(uintptr(l))
var retSlice []uint16
sh := (*reflect.SliceHeader)(unsafe.Pointer(&retSlice))
sh.Cap = len(bs)
sh.Len = len(bs)
sh.Data = uintptr(ret)
copy(retSlice, bs)
return (*byte)(ret), l
}
// toGUID returns an arena-allocated copy of guid.
func toGUID(a *arena, guid windows.GUID) *windows.GUID {
if guid == (windows.GUID{}) {
return nil
}
ret := (*windows.GUID)(a.Alloc(unsafe.Sizeof(guid)))
*ret = guid
return ret
}
// toFwpV4AddrAndMask converts pfx into an arena-allocated
// fwpV4AddrAndMask.
func toFwpV4AddrAndMask(a *arena, pfx netip.Prefix) *fwpV4AddrAndMask {
ret := (*fwpV4AddrAndMask)(a.Alloc(unsafe.Sizeof(fwpV4AddrAndMask{})))
ret.Addr = u32FromIPv4(pfx.Masked().Addr())
ret.Mask = (^uint32(0)) << (32 - pfx.Bits())
return ret
}
// toFwpV6AddrAndMask converts pfx into an arena-allocated
// fwpV6AddrAndMask.
func toFwpV6AddrAndMask(a *arena, pfx netip.Prefix) *fwpV6AddrAndMask {
ret := (*fwpV6AddrAndMask)(a.Alloc(unsafe.Sizeof(fwpV6AddrAndMask{})))
ret.Addr = pfx.Addr().As16()
ret.PrefixLength = uint8(pfx.Bits())
return ret
}
func isSelfRelativeSD(s *windows.SECURITY_DESCRIPTOR) (bool, error) {
control, _, err := s.Control()
if err != nil {
return false, err
}
return control&windows.SE_SELF_RELATIVE != 0, nil
}
// toSecurityDescriptor returns an arena-allocated copy of s.
func toSecurityDescriptor(a *arena, s *windows.SECURITY_DESCRIPTOR) (*windows.SECURITY_DESCRIPTOR, error) {
selfRelative, err := isSelfRelativeSD(s)
if err != nil {
return nil, err
}
if !selfRelative {
s, err = s.ToSelfRelative()
if err != nil {
return nil, err
}
}
sl := s.Length()
var from []byte
sf := (*reflect.SliceHeader)(unsafe.Pointer(&from))
sf.Cap = int(sl)
sf.Len = int(sl)
sf.Data = uintptr(unsafe.Pointer(s))
p := a.Alloc(uintptr(s.Length()))
var to []byte
st := (*reflect.SliceHeader)(unsafe.Pointer(&to))
st.Cap = int(sl)
st.Len = int(sl)
st.Data = uintptr(p)
copy(to, from)
return (*windows.SECURITY_DESCRIPTOR)(p), nil
}
// u32FromIPv4 returns ip as a big-endian uint32.
func u32FromIPv4(ip netip.Addr) uint32 {
b4 := ip.As4()
return binary.BigEndian.Uint32(b4[:])
}