-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathemulator_linux_map_hash.go
664 lines (542 loc) · 18.2 KB
/
emulator_linux_map_hash.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
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
package mimic
import (
"bytes"
"container/list"
"crypto/sha256"
"fmt"
"sync"
"syscall"
"github.com/cilium/ebpf"
)
var (
_ LinuxMap = (*LinuxHashMap)(nil)
_ LinuxMapUpdater = (*LinuxHashMap)(nil)
)
// LinuxHashMap is the emulated version of ebpf.Hash / BPF_MAP_TYPE_HASH.
// Hash maps have arbitrary keys and values.
type LinuxHashMap struct {
Spec *ebpf.MapSpec
emulator *LinuxEmulator
// Go can't use slices as map values, so what we do is we sha256 hash the slice which always results in a
// uniform sized array which we can use as key. Since we now don't index by the actual key, we also need to
// store the actual key value so we can return k/v pairs
mu sync.RWMutex
KeyToIndex map[[sha256.Size]byte]int
// A buffered channel of "free" indexes within the keys and values array.
freelist chan int
// We store the original keys, so we can loop over them, the index of a key in `keys` is equal to the index of
// its value in `values`.
keys *PlainMemory
keysAddr uint32
values *PlainMemory
valuesAddr uint32
}
// Init initializes the map, part of the LinuxMap implementation
func (m *LinuxHashMap) Init(emulator *LinuxEmulator) error {
if m.keys != nil || m.values != nil {
return fmt.Errorf("map is still loaded, please cleanup before re-loading")
}
// TODO handle no-pre-allocate flag
m.keys = &PlainMemory{
Backing: make([]byte, m.Spec.MaxEntries*m.Spec.KeySize),
ByteOrder: GetNativeEndianness(),
}
m.values = &PlainMemory{
Backing: make([]byte, m.Spec.MaxEntries*m.Spec.ValueSize),
ByteOrder: GetNativeEndianness(),
}
m.KeyToIndex = make(map[[sha256.Size]byte]int)
m.freelist = make(chan int, m.Spec.MaxEntries+1)
for i := 0; i < int(m.Spec.MaxEntries); i++ {
m.freelist <- i
}
m.emulator = emulator
// TODO set initial KV
// The the map itself to the memory controller
_, err := m.emulator.vm.MemoryController.AddEntry(m, 8, m.Spec.Name)
if err != nil {
return fmt.Errorf("add map to memory controller: %w", err)
}
// The the keys memory to the memory controller
keysEntry, err := m.emulator.vm.MemoryController.AddEntry(
m.keys,
uint32(len(m.keys.Backing)),
fmt.Sprintf("%s-keys", m.Spec.Name),
)
if err != nil {
return fmt.Errorf("add map keys to memory controller: %w", err)
}
m.keysAddr = keysEntry.Addr
// The the values memory to the memory controller
valuesEntry, err := m.emulator.vm.MemoryController.AddEntry(
m.values,
uint32(len(m.values.Backing)),
fmt.Sprintf("%s-values", m.Spec.Name),
)
if err != nil {
return fmt.Errorf("add map values to memory controller: %w", err)
}
m.valuesAddr = valuesEntry.Addr
return nil
}
// GetSpec returns the specification of the map, part of the LinuxMap implementation
func (m *LinuxHashMap) GetSpec() ebpf.MapSpec {
return *m.Spec
}
// Indices returns the amount of per-cpu indexes.
func (m *LinuxHashMap) Indices() int {
return 1
}
// Keys returns a byte slice which contains all keys in the map, keys are packed, the user is expected to calculate
// the proper window into the slice based on the size of m.Spec.KeySize.
func (m *LinuxHashMap) Keys(cpuid int) []byte {
m.mu.RLock()
defer m.mu.RUnlock()
ks := int(m.Spec.KeySize)
keys := make([]byte, len(m.KeyToIndex)*ks)
i := 0
// Get every index which contains a key
for _, idx := range m.KeyToIndex {
// Read the value of the key at idx into keys at i
err := m.keys.Read(uint32(idx*ks), keys[i*ks:(i+1)*ks])
i++
if err != nil {
// Can't really do anything, this is to keep linters from getting angry
continue
}
}
return keys
}
// Lookup returns the virtual memory offset to the map value or 0 if no value can be found for the given key.
func (m *LinuxHashMap) Lookup(key []byte, cpuid int) (uint32, error) {
if len(key) != int(m.Spec.KeySize) {
return 0, fmt.Errorf("size of given key doesn't match key size in map spec")
}
keyHash := sha256.Sum256(key)
// TODO add support for BPF_F_LOCK to avoid race-conditions in BPF land
// Lock map to avoid race-conditions in go-land
m.mu.RLock()
idx, found := m.KeyToIndex[keyHash]
m.mu.RUnlock()
if !found {
// Return NULL if value doesn't exist
return 0, nil
}
valueOffset := uint32(idx) * m.Spec.ValueSize
return m.valuesAddr + valueOffset, nil
}
// Update updates an existing value in the map, or add a new value if it didn't exist before.
func (m *LinuxHashMap) Update(key []byte, value []byte, flags uint32, cpuid int) error {
if len(key) != int(m.Spec.KeySize) {
return fmt.Errorf("size of given key doesn't match key size in map spec")
}
if len(value) != int(m.Spec.ValueSize) {
return fmt.Errorf("size of given value doesn't match value size in map spec")
}
// TODO add support for BPF_F_LOCK to avoid race-conditions in BPF land
keyHash := sha256.Sum256(key)
// Lock map to avoid race-conditions in go-land
m.mu.RLock()
idx, found := m.KeyToIndex[keyHash]
m.mu.RUnlock()
if !found {
// If the keys doesn't exist in the map yet, get a free spot from the free list
select {
case idx = <-m.freelist:
default:
// The map is full if we are out of free indices
return syscall.E2BIG
}
// Lock map to avoid race-conditions in go-land
m.mu.Lock()
m.KeyToIndex[keyHash] = idx
m.mu.Unlock()
}
keyOff := uint32(idx) * m.Spec.KeySize
valueOff := uint32(idx) * m.Spec.ValueSize
err := m.keys.Write(keyOff, key)
if err != nil {
return fmt.Errorf("error while writing to keys memory")
}
err = m.values.Write(valueOff, value)
if err != nil {
return fmt.Errorf("error while writing to keys memory")
}
return nil
}
// UpdateObject is similar to Update, accept it take a arbitrary go interface{} as value. The virtual address of the
// object will be stored in the map. The map must have a value size of 4 bytes and the object must already be registered
// with the VMs memory controller.
func (m *LinuxHashMap) UpdateObject(key []byte, value LinuxMap, flags uint32) error {
if m.Spec.ValueSize != 4 {
return fmt.Errorf("this map doesn't contain addresses(has a value size != 4 bytes)")
}
entry, found := m.emulator.vm.MemoryController.GetEntryByObject(value)
if !found {
return fmt.Errorf("the given value is not registered with the memory controller")
}
val := make([]byte, 4)
GetNativeEndianness().PutUint32(val, entry.Addr)
return m.Update(key, val, flags, 0)
}
// Delete deletes a values from the map
func (m *LinuxHashMap) Delete(key []byte) error {
if len(key) != int(m.Spec.KeySize) {
return fmt.Errorf("size of given key doesn't match key size in map spec")
}
keyHash := sha256.Sum256(key)
// Lock map to avoid race-conditions in go-land
m.mu.RLock()
idx, found := m.KeyToIndex[keyHash]
m.mu.RUnlock()
if !found {
// nothing to do
return nil
}
// Delete key from map
m.mu.Lock()
delete(m.KeyToIndex, keyHash)
m.mu.Unlock()
// Note: Zero-ing out the key and value doesn't seem necessary, what does the actual kernel do?
// Return idx of k/v pair to the freelist
select {
case m.freelist <- idx:
default:
panic("freelist is full")
}
return nil
}
var (
_ LinuxMap = (*LinuxLRUHashMap)(nil)
_ LinuxMapUpdater = (*LinuxLRUHashMap)(nil)
)
// LinuxLRUHashMap is the emulated version of ebpf.LRUHash / BPF_MAP_TYPE_LRU_HASH.
// This map type is a normal hash map which also records which map values are the Least Recently Used. If the map is
// full and a new value is added, this map type will discard the Least Recently Used value from the map to make room
// for the new value instread of returning a "out of memory" error.
type LinuxLRUHashMap struct {
Spec *ebpf.MapSpec
// wrap an normal hashmap
hashMap *LinuxHashMap
mu sync.Mutex
usageList *list.List
}
// Init initializes the map, part of the LinuxMap implementation
func (m *LinuxLRUHashMap) Init(emulator *LinuxEmulator) error {
m.hashMap = &LinuxHashMap{
Spec: m.Spec,
}
err := m.hashMap.Init(emulator)
if err != nil {
return err
}
// The the map itself to the memory controller
_, err = emulator.vm.MemoryController.AddEntry(m, 8, m.Spec.Name)
if err != nil {
return fmt.Errorf("add map to memory controller: %w", err)
}
m.usageList = list.New()
return nil
}
// GetSpec returns the specification of the map, part of the LinuxMap implementation
func (m *LinuxLRUHashMap) GetSpec() ebpf.MapSpec {
return *m.hashMap.Spec
}
// Indices returns the amount of per-cpu indexes.
func (m *LinuxLRUHashMap) Indices() int {
return 1
}
// Keys returns a byte slice which contains all keys in the map, keys are packed, the user is expected to calculate
// the proper window into the slice based on the size of m.Spec.KeySize.
func (m *LinuxLRUHashMap) Keys(cpuid int) []byte {
return m.hashMap.Keys(cpuid)
}
// Lookup returns the virtual memory offset to the map value or 0 if no value can be found for the given key.
func (m *LinuxLRUHashMap) Lookup(key []byte, cpuid int) (uint32, error) {
valPtr, err := m.hashMap.Lookup(key, cpuid)
if valPtr == 0 || err != nil {
return valPtr, err
}
// Lookup success, update LRU
m.mu.Lock()
defer m.mu.Unlock()
// Find the key in the list, and move it to the front
for e := m.usageList.Front(); e != nil; e = e.Next() {
if lk, ok := e.Value.([]byte); ok && bytes.Equal(lk, key) {
m.usageList.MoveToFront(e)
break
}
}
return valPtr, nil
}
// Update updates an existing value in the map, or add a new value if it didn't exist before.
func (m *LinuxLRUHashMap) Update(key []byte, value []byte, flags uint32, cpuid int) error {
err := m.hashMap.Update(key, value, flags, cpuid)
if err != nil {
// If an unknown error, don't do anything
if err != syscall.E2BIG {
return err
}
// If the hash map is full, we have to evict the last/least recently used value
back := m.usageList.Back()
if back == nil || back.Value == nil {
return fmt.Errorf("map is full by LRU is empty")
}
keyVal, ok := back.Value.([]byte)
if !ok {
return fmt.Errorf("type other than byte slice in LRU")
}
err = m.Delete(keyVal)
if err != nil {
return fmt.Errorf("evict error: %w", err)
}
err = m.hashMap.Update(keyVal, value, flags, cpuid)
if err != nil {
return fmt.Errorf("second update error: %w", err)
}
}
// Update success, update LRU
m.mu.Lock()
defer m.mu.Unlock()
found := false
// Find the key in the list, and move it to the front
for e := m.usageList.Front(); e != nil; e = e.Next() {
if lk, ok := e.Value.([]byte); ok && bytes.Equal(lk, key) {
m.usageList.MoveToFront(e)
found = true
break
}
}
// If the key doesn't exist in the LRU yet, add it at the top.
if !found {
m.usageList.PushFront(key)
}
return nil
}
// Delete deletes a key from the map.
func (m *LinuxLRUHashMap) Delete(key []byte) error {
err := m.hashMap.Delete(key)
if err != nil {
return err
}
// Delete success, update LRU
m.mu.Lock()
defer m.mu.Unlock()
// Find the key in the list, and remove it
for e := m.usageList.Front(); e != nil; e = e.Next() {
if lk, ok := e.Value.([]byte); ok && bytes.Equal(lk, key) {
m.usageList.Remove(e)
break
}
}
return nil
}
var (
_ LinuxMap = (*LinuxPerCPUHashMap)(nil)
_ LinuxMapUpdater = (*LinuxPerCPUHashMap)(nil)
)
// LinuxPerCPUHashMap is the emulated version of ebpf.PerCPUHash / BPF_MAP_TYPE_PERCPU_HASH.
// Hash maps have arbitrary keys and values.
type LinuxPerCPUHashMap struct {
Spec *ebpf.MapSpec
emulator *LinuxEmulator
// Go can't use slices as map values, so what we do is we sha256 hash the slice which always results in a
// uniform sized array which we can use as key. Since we now don't index by the actual key, we also need to
// store the actual key value so we can return k/v pairs
mu sync.RWMutex
KeyToIndex map[[sha256.Size]byte]int
// A buffered channel of "free" indexes within the keys and values array.
freelist chan int
// We store the original keys, so we can loop over them, the index of a key in `keys` is equal to the index of
// its value in `values`.
keys *PlainMemory
keysAddr uint32
values []*PlainMemory
valuesAddrs []uint32
}
// Init initializes the map, part of the LinuxMap implementation
func (m *LinuxPerCPUHashMap) Init(emulator *LinuxEmulator) error {
if m.keys != nil || m.values != nil {
return fmt.Errorf("map is still loaded, please cleanup before re-loading")
}
m.emulator = emulator
// TODO handle no-pre-allocate flag
m.keys = &PlainMemory{
Backing: make([]byte, m.Spec.MaxEntries*m.Spec.KeySize),
ByteOrder: GetNativeEndianness(),
}
m.values = make([]*PlainMemory, m.emulator.vm.settings.VirtualCPUs)
m.valuesAddrs = make([]uint32, emulator.vm.settings.VirtualCPUs)
for i := 0; i < len(m.values); i++ {
m.values[i] = &PlainMemory{
Backing: make([]byte, m.Spec.MaxEntries*m.Spec.ValueSize),
ByteOrder: GetNativeEndianness(),
}
// The the values memory to the memory controller
valuesEntry, err := m.emulator.vm.MemoryController.AddEntry(
m.values[i],
uint32(len(m.values[i].Backing)),
fmt.Sprintf("%s-values", m.Spec.Name),
)
if err != nil {
return fmt.Errorf("add map values to memory controller: %w", err)
}
m.valuesAddrs[i] = valuesEntry.Addr
}
m.KeyToIndex = make(map[[sha256.Size]byte]int)
m.freelist = make(chan int, m.Spec.MaxEntries+1)
for i := 0; i < int(m.Spec.MaxEntries); i++ {
m.freelist <- i
}
m.emulator = emulator
// TODO set initial KV
// The the map itself to the memory controller
_, err := m.emulator.vm.MemoryController.AddEntry(m, 8, m.Spec.Name)
if err != nil {
return fmt.Errorf("add map to memory controller: %w", err)
}
// The the keys memory to the memory controller
keysEntry, err := m.emulator.vm.MemoryController.AddEntry(
m.keys,
uint32(len(m.keys.Backing)),
fmt.Sprintf("%s-keys", m.Spec.Name),
)
if err != nil {
return fmt.Errorf("add map keys to memory controller: %w", err)
}
m.keysAddr = keysEntry.Addr
return nil
}
// GetSpec returns the specification of the map, part of the LinuxMap implementation
func (m *LinuxPerCPUHashMap) GetSpec() ebpf.MapSpec {
return *m.Spec
}
// Indices returns the amount of per-cpu indexes.
func (m *LinuxPerCPUHashMap) Indices() int {
return len(m.values)
}
// Keys returns a byte slice which contains all keys in the map, keys are packed, the user is expected to calculate
// the proper window into the slice based on the size of m.Spec.KeySize.
func (m *LinuxPerCPUHashMap) Keys(cpuid int) []byte {
m.mu.RLock()
defer m.mu.RUnlock()
ks := int(m.Spec.KeySize)
keys := make([]byte, len(m.KeyToIndex)*ks)
i := 0
// Get every index which contains a key
for _, idx := range m.KeyToIndex {
// Read the value of the key at idx into keys at i
err := m.keys.Read(uint32(idx*ks), keys[i*ks:(i+1)*ks])
i++
if err != nil {
// Can't really do anything, this is to keep linters from getting angry
continue
}
}
return keys
}
// Lookup returns the virtual memory offset to the map value or 0 if no value can be found for the given key.
func (m *LinuxPerCPUHashMap) Lookup(key []byte, cpuid int) (uint32, error) {
if len(key) != int(m.Spec.KeySize) {
return 0, fmt.Errorf("size of given key doesn't match key size in map spec")
}
if cpuid < 0 || cpuid >= len(m.valuesAddrs) {
return 0, fmt.Errorf("invalid CPU ID")
}
keyHash := sha256.Sum256(key)
// TODO add support for BPF_F_LOCK to avoid race-conditions in BPF land
// Lock map to avoid race-conditions in go-land
m.mu.RLock()
idx, found := m.KeyToIndex[keyHash]
m.mu.RUnlock()
if !found {
// Return NULL if value doesn't exist
return 0, nil
}
valueOffset := uint32(idx) * m.Spec.ValueSize
return m.valuesAddrs[cpuid] + valueOffset, nil
}
// Update updates an existing value in the map, or add a new value if it didn't exist before.
func (m *LinuxPerCPUHashMap) Update(key []byte, value []byte, flags uint32, cpuid int) error {
if len(key) != int(m.Spec.KeySize) {
return fmt.Errorf("size of given key doesn't match key size in map spec")
}
if len(value) != int(m.Spec.ValueSize) {
return fmt.Errorf("size of given value doesn't match value size in map spec")
}
if cpuid < 0 || cpuid >= len(m.valuesAddrs) {
return fmt.Errorf("invalid CPU ID")
}
// TODO add support for BPF_F_LOCK to avoid race-conditions in BPF land
keyHash := sha256.Sum256(key)
// Lock map to avoid race-conditions in go-land
m.mu.RLock()
idx, found := m.KeyToIndex[keyHash]
m.mu.RUnlock()
if !found {
// If the keys doesn't exist in the map yet, get a free spot from the free list
select {
case idx = <-m.freelist:
default:
// The map is full if we are out of free indices
return syscall.E2BIG
}
// Lock map to avoid race-conditions in go-land
m.mu.Lock()
m.KeyToIndex[keyHash] = idx
m.mu.Unlock()
}
keyOff := uint32(idx) * m.Spec.KeySize
valueOff := uint32(idx) * m.Spec.ValueSize
err := m.keys.Write(keyOff, key)
if err != nil {
return fmt.Errorf("error while writing to keys memory")
}
err = m.values[cpuid].Write(valueOff, value)
if err != nil {
return fmt.Errorf("error while writing to keys memory")
}
return nil
}
// UpdateObject is similar to Update, accept it take a arbitrary go interface{} as value. The virtual address of the
// object will be stored in the map. The map must have a value size of 4 bytes and the object must already be registered
// with the VMs memory controller.
func (m *LinuxPerCPUHashMap) UpdateObject(key []byte, value LinuxMap, flags uint32) error {
if m.Spec.ValueSize != 4 {
return fmt.Errorf("this map doesn't contain addresses(has a value size != 4 bytes)")
}
entry, found := m.emulator.vm.MemoryController.GetEntryByObject(value)
if !found {
return fmt.Errorf("the given value is not registered with the memory controller")
}
val := make([]byte, 4)
GetNativeEndianness().PutUint32(val, entry.Addr)
return m.Update(key, val, flags, 0)
}
// Delete deletes a values from the map
func (m *LinuxPerCPUHashMap) Delete(key []byte) error {
if len(key) != int(m.Spec.KeySize) {
return fmt.Errorf("size of given key doesn't match key size in map spec")
}
keyHash := sha256.Sum256(key)
// Lock map to avoid race-conditions in go-land
m.mu.RLock()
idx, found := m.KeyToIndex[keyHash]
m.mu.RUnlock()
if !found {
// nothing to do
return nil
}
// Delete key from map
m.mu.Lock()
delete(m.KeyToIndex, keyHash)
m.mu.Unlock()
// Note: Zero-ing out the key and value doesn't seem necessary, what does the actual kernel do?
// Return idx of k/v pair to the freelist
select {
case m.freelist <- idx:
default:
panic("freelist is full")
}
return nil
}