Re: [PATCH v21 bpf-next 18/23] libbpf: Add SEC name for xdp_mb programs
From: Andrii Nakryiko <hidden>
Date: 2022-01-14 19:37:01
Also in:
bpf
On Fri, Jan 14, 2022 at 10:55 AM Zvi Effron [off-list ref] wrote:
On Fri, Jan 14, 2022 at 8:50 AM Jesper Dangaard Brouer [off-list ref] wrote:quoted
On 14/01/2022 03.09, Alexei Starovoitov wrote:quoted
On Thu, Jan 13, 2022 at 3:58 PM Lorenzo Bianconi [off-list ref] wrote:quoted
quoted
Btw "xdp_cpumap" should be cleaned up. xdp_cpumap is an attach type. It's not prog type. Probably it should be "xdp/cpumap" to align with "cgroup/bind[46]" ?so for xdp "mb" or xdp "frags" it will be xdp/cpumap.mb (xdp/devmap.mb) or xdp/cpumap.frags (xdp/devmap.frags), right?xdp.frags/cpumap xdp.frags/devmap The current de-facto standard for SEC("") in libbpf: prog_type.prog_flags/attach_placeUps, did we make a mistake with SEC("xdp_devmap/") and can we correct without breaking existing programs?We can (at the very least) add the correct sections, even if we leave the current incorrect ones as well. Ideally we'd mark the incorrect ones deprecated and either remove them before libbpf 1.0 or as part of 2.0?
Correct, those would need to be new aliases. We can also deprecate old ones, if we have consensus on that. We can teach libbpf to emit warnings (through logs, of course) for such uses of to-be-removed sections aliases. We still have probably a few months before the final 1.0 release, should hopefully be plenty of time to people to adapt.
--Zviquoted
quoted
"attach_place" is either function_name for fentry/, tp/, lsm/, etc. or attach_type/hook/target for cgroup/bind4, cgroup_skb/egress. lsm.s/socket_bind -> prog_type = LSM, flags = SLEEPABLE lsm/socket_bind -> prog_type = LSM, non sleepable.