-
Notifications
You must be signed in to change notification settings - Fork 697
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add bpf2go support and wrappers for ebpf.Variable generation #1543
base: main
Are you sure you want to change the base?
Conversation
bbe1aba
to
799fef7
Compare
799fef7
to
d978138
Compare
fa76e79
to
71e3029
Compare
71e3029
to
5137cbe
Compare
2cf61df
to
9cf6f9f
Compare
This PR has been rebased on https://github.com/ti-mo/ebpf/tree/tb/ebpf-variables. |
9cf6f9f
to
0f69c00
Compare
…ndler Signed-off-by: Timo Beckers <timo@isovalent.com>
Signed-off-by: Timo Beckers <timo@isovalent.com>
…iables Signed-off-by: Timo Beckers <timo@isovalent.com>
Signed-off-by: Timo Beckers <timo@isovalent.com>
Signed-off-by: Timo Beckers <timo@isovalent.com>
0f69c00
to
cf717a0
Compare
Signed-off-by: Simone Magnani <simone.magnani@isovalent.com>
8486b44
to
f6a94c5
Compare
This commit introduces support and wrappers around ebpf.Variable. An ebpf.Variable does not define per-se wrappers method to automatically infer the underlying data type and handle typed data in Go. In fact, it relies on parameters passed to the `Variable.Get` and `Variable.Set` APIs. This commit allows `bpf2go` to emit `VariableSpec` and `Variable` in the generated code. In addition, a new set of wrapper methods are created to provide support for typed method around variables. To do so, this commit enables emitting `Dataspec`, which so far was not emitted. However, it modifies the current implementation so that for each variable in `Dataspec` the needed support is provided. Supposing to have an ebpf program that defines the following two global variables: ```c __u64 pkt_count = 0; const __u32 ro_variable = 1; char var_msg[] = "Hello World!"; ``` The steps performed during the Go code generation are as follows: 1. An alias with the variable name is generated in the Go file: ```go type PktCountType = uint64 type RoVariable = uint32 type VarMsgType = [16]int8 ``` 2. A new type definition (non-alias, need new methods) for the variables is performed: ```go type PktCount ebpf.Variable type RoVariable ebpf.Variable type VarMsg ebpf.Variable ``` 3. The `.Get` methods for all types are generated: ```go func (v *PktCount) Get() (PktCountType, error) { var ret PktCountType return ret, (*ebpf.Variable)(v).Get(&ret) } func (v *RoVariable) Get() (RoVariableType, error) { var ret RoVariableType return ret, (*ebpf.Variable)(v).Get(&ret) } func (v *VarMsg) Get() (VarMsgType, error) { var ret VarMsgType return ret, (*ebpf.Variable)(v).Get(&ret) } ``` 4. The `.Set` methods for the non read-only variables are generated: ```go func (v *PktCount) Set(val PktCountType) error { return (*ebpf.Variable)(v).Set(val) } func (v *VarMsg) set(val VarMsgType) error { return (*ebpf.Variable)(v).Set(ret) } ``` 4. In case the type alias is supported by the atomic package, and then also supported by `ebpf.Variable` (int32, uint32, int64, uint64), then an additional `AtomicRef` method is created for the non read-only variables to get an reference to the underlying data. ```go func (v *PktCount) AtomicRef() (*ebpf.Uint64, error) { ret, _ := (*ebpf.Variable)(v).AtomicUint64() return ret } ``` From the user perspective, ignoring the error catching, the following operations can be performed: ```go ... objs := bpfObjects{} err := loadBpfObjects(&objs, nil) ... // ref kept and can be used multiple times aPktCount := objs.PktCount.AtomicRef() err := aPktCount.Load() aPktCount.Store(rand.Uint64()) ... vRoVariable, _ := objs.RoVariable.Get() ... varMsg, _ := objs.VarMsg.Get() varMsg[0] = 'B' err := objs.VarMsg.Set(varMsg) ``` Signed-off-by: Simone Magnani <simone.magnani@isovalent.com>
f6a94c5
to
fb547c3
Compare
It probably makes sense to land basic
I see huge value in a type-safe Is it possible to devise an approach that works with |
Do you suggest to change this PR to provide basic VariableSpecs support in bpf2go or should I open a new one? Concerning the type-safe API, I can keep exploring solutions. I tried with generics with no luck, but maybe there's still a way...AFAIU CollectionSpec would also need to be a generic holding maps and variables each of different generic types. |
It is probably worthwhile to keep this one around as a RFC and to showcase the end goal. One way to handle it is to structure commits such that basic support is introduced first, followed by type-safe APIs. Once @ti-mo changes are merged, I'd suggest doing a separate PR to introduce basic variable support in
A clever use of It looks like // in ebpf package
type TypedVariable[T any] Variable
func (v *TypedVariable[T]) Set(val T) error { return (*Variable)(v).Set(val) }
...
What I had in mind was |
Perfect, I'll keep this one open just as reference and will track #1572. Once merged, I'll push basic support for
A wrapper would certainly be a good choice, so we can statically define and test methods rather than generating them at runtime. An approach could be as follows, and then in type ROVariable[T any] struct {
Variable
}
type RWStruct[T any] struct {
ROVariable[T]
}
type AtomicVariable[T int32 | int64 | uint64 | uint32] struct {
RWVariable[T]
}
func (a *ROVariable[T]) Get() T {
...
}
func (a *RWVariable[T]) Set(val T) {
...
}
func (a *AtomicVariable[T]) AtomicReference() atomic.T { //somehow
...
} Would you consider such a wrapper also for |
@smagnani96 I've pushed up a few changes to #1572 today. Note that all 'atomic' methods are gone. It wasn't a great design to begin with and @mejedi suggested mmapping over the Go heap so we can hand out arbitrary pointers instead. The pointer stuff is not part of the initial proposal, this work is currently in a separate branch here: https://github.com/ti-mo/ebpf/commits/tb/atomic-memory. tl;dr: // VariablePointer returns a pointer to a value of type T that has its
// underlying memory mapped to the memory representing the Variable. Accessing a
// constant Variable is not supported.
//
// T must be a fixed-size type according to [binary.Size]. Types containing Go
// pointers are not valid.
//
// When accessing structs, embedding [structs.HostLayout] may help ensure the
// layout of the Go struct matches the one in the BPF C program.
func VariablePointer[T any](v *Variable) (*T, error) This works for atomics, structs, scalars, etc. Currently no types containing pointers are accepted. Note that currently, the plan is to not populate The alternative is to emit Variables, but disable Set, Get and VariablePointer (make them return errors), which is also far from ideal. If we go down this route, we'd need to introduce a compatibility layer that implements Get() using a map lookup, but then we need to carry a |
Globals landed in 5.2. Call me biased, but my preference would be to inconvenience (a presumably small number of) users requiring at least 5.2 that can't bump the minimum version to 5.5. As of today, |
@mejedi That sounds reasonable, thanks for sharing your perspective. The downside is this is kind of a breaking change; rebuilding the same code base with a newer version of b2g and ebpf-go will no longer work as-is on some systems. |
@smagnani96
(Not sure how we should name these generics, The overlap is just the type ROVariableT[T any] Variable
type VariableT[T any] Variable In return, Note: Couple further questions to consider:
var objects struct { foo *VariableT[uint64, atomic.Uint64] `ebpf:"foo"` }
objects.foo.Addr().Load() v.s. var objects struct { foo *VariableT[uint64] `ebpf:"foo"` }
atomic.LoadUint64(objects.foo.Addr()) First option guarantees that value is accessed atomically. It also involves less typing. Second option is more consistent. type compound { bar uint64 }
var objects struct { foo *VariableT[compound] `ebpf:"foo"` }
atomic.LoadUint64(objects.foo.Addr().bar)
Should be easier since we have just one flavour of |
I've updated #1572 to emit a Variable to the Collection for every VariableSpec in the CollectionSpec. Get(), Set() and VariablePointer() will return ErrNotSupported on kernels without BPF_F_MMAPABLE. This ensures LoadAndAssign will continue to work as usual after upgrades, but users opting in to interactions with |
@smagnani96 FYI #1572 has been merged, and #1607 was opened to keep track of the off-heap Go pointers, though keep in mind this might take a while to be resolved upstream. Then it's at least another 6 months of Go releases until ebpf-go can start depending on the behaviour. I suggest we shelve the atomics use case in bpf2go for now, or we special-case |
This commit introduces support and wrappers around ebpf.Variable.
An ebpf.Variable does not define per-se wrappers method to automatically
infer the underlying data type and handle typed data in Go. In fact, it
relies on parameters passed to the
Variable.Get
andVariable.Set
APIs.This commit allows
bpf2go
to emitVariableSpec
andVariable
in thegenerated code. In addition, a new set of wrapper methods are created
to provide support for typed method around variables. To do so, this
commit enables emitting
Dataspec
, which so far was not emitted. However,it modifies the current implementation so that for each variable in
Dataspec
the needed support is provided.
Supposing to have an ebpf program that defines the following two global variables:
The steps performed during the Go code generation are as follows:
.Get
methods for all types are generated:.Set
methods for the non read-only variables are generated:also supported by
ebpf.Variable
(int32, uint32, int64, uint64), thenan additional
AtomicRef
method is created for the non read-onlyvariables to get an reference to the underlying data.
From the user perspective, ignoring the error catching, the following
operations can be performed:
Suggestions/Comments are very welcome. For general discussion, I've opened the issue (:arrow_down:).
This PR relies and is rebased on https://github.com/ti-mo/ebpf/tree/tb/ebpf-variables, not yet merged but planned. Additionally, I'd need the support introduced in my 1st commit 59808a1.
The only new commit that should be referred in this PR is the latest f6a94c5.
My old Variable API proposal prior to https://github.com/ti-mo/ebpf/tree/tb/ebpf-variables are kept here.
Fixes: #1542