Skip to content

Commit 7b93551

Browse files
committed
Add fastpath for refreshing acls
1 parent 888c587 commit 7b93551

File tree

1 file changed

+31
-9
lines changed

1 file changed

+31
-9
lines changed

internal/router/bpf.go

+31-9
Original file line numberDiff line numberDiff line change
@@ -356,30 +356,54 @@ func bulkCreateUserMaps(users []data.UserModel) []error {
356356
var (
357357
keys [][20]byte
358358
values []uint32
359+
errors []error
359360

360361
maps = map[string]*ebpf.Map{}
361362
)
362363

363364
for _, user := range users {
364-
keys = append(keys, sha1.Sum([]byte(user.Username)))
365+
userid := sha1.Sum([]byte(user.Username))
365366

366367
locked := uint32(0)
367368
if user.Locked {
368369
locked = 1
369370
}
370371

371-
err := xdpObjects.AccountLocked.Put(keys[len(keys)-1], locked)
372+
err := xdpObjects.AccountLocked.Put(userid, locked)
372373
if err != nil {
373374
return []error{err}
374375
}
375376

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+
}
379395
}
380396

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+
}
383407
}
384408

385409
n, err := xdpObjects.PoliciesTable.BatchUpdate(keys, values, &ebpf.BatchOptions{
@@ -393,8 +417,6 @@ func bulkCreateUserMaps(users []data.UserModel) []error {
393417
if n != len(keys) {
394418
return []error{fmt.Errorf("batch update could not write all keys to map: expected %d got %d", len(keys), n)}
395419
}
396-
397-
var errors []error
398420
for username, m := range maps {
399421
err := xdpAddRoute(m, config.GetEffectiveAcl(username))
400422
if err != nil {

0 commit comments

Comments
 (0)