@@ -356,30 +356,54 @@ func bulkCreateUserMaps(users []data.UserModel) []error {
356
356
var (
357
357
keys [][20 ]byte
358
358
values []uint32
359
+ errors []error
359
360
360
361
maps = map [string ]* ebpf.Map {}
361
362
)
362
363
363
364
for _ , user := range users {
364
- keys = append ( keys , sha1 .Sum ([]byte (user .Username ) ))
365
+ userid := sha1 .Sum ([]byte (user .Username ))
365
366
366
367
locked := uint32 (0 )
367
368
if user .Locked {
368
369
locked = 1
369
370
}
370
371
371
- err := xdpObjects .AccountLocked .Put (keys [ len ( keys ) - 1 ] , locked )
372
+ err := xdpObjects .AccountLocked .Put (userid , locked )
372
373
if err != nil {
373
374
return []error {err }
374
375
}
375
376
376
- policiesInnerTable , err := ebpf .NewMap (routesMapSpec )
377
- if err != nil {
378
- return []error {fmt .Errorf ("%s creating new map: %s" , xdpObjects .PoliciesTable .String (), err )}
377
+ var (
378
+ innerMapID ebpf.MapID
379
+ policiesInnerTable * ebpf.Map
380
+ )
381
+ err = xdpObjects .PoliciesTable .Lookup (userid , & innerMapID )
382
+ // Fast path, if the user already has a map then just repopulate the map. Since we have "stop" rules at the end of definitions it doesnt matter if other rules were defined
383
+ // This speeds up things like refresh acls, but not wag start up
384
+ if err == nil {
385
+ policiesInnerTable , err = ebpf .NewMapFromID (innerMapID )
386
+ if err != nil {
387
+ policiesInnerTable = nil
388
+ } else {
389
+
390
+ err := xdpAddRoute (policiesInnerTable , config .GetEffectiveAcl (user .Username ))
391
+ if err != nil {
392
+ errors = append (errors , err )
393
+ }
394
+ }
379
395
}
380
396
381
- values = append (values , uint32 (policiesInnerTable .FD ()))
382
- maps [user .Username ] = policiesInnerTable
397
+ if policiesInnerTable == nil {
398
+ policiesInnerTable , err = ebpf .NewMap (routesMapSpec )
399
+ if err != nil {
400
+ return []error {fmt .Errorf ("%s creating new map: %s" , xdpObjects .PoliciesTable .String (), err )}
401
+ }
402
+
403
+ values = append (values , uint32 (policiesInnerTable .FD ()))
404
+ keys = append (keys , userid )
405
+ maps [user .Username ] = policiesInnerTable
406
+ }
383
407
}
384
408
385
409
n , err := xdpObjects .PoliciesTable .BatchUpdate (keys , values , & ebpf.BatchOptions {
@@ -393,8 +417,6 @@ func bulkCreateUserMaps(users []data.UserModel) []error {
393
417
if n != len (keys ) {
394
418
return []error {fmt .Errorf ("batch update could not write all keys to map: expected %d got %d" , len (keys ), n )}
395
419
}
396
-
397
- var errors []error
398
420
for username , m := range maps {
399
421
err := xdpAddRoute (m , config .GetEffectiveAcl (username ))
400
422
if err != nil {
0 commit comments