bpf: Add bpf_sock_addr_set_sun_path() to allow writing unix sockaddr from bpf
authorDaan De Meyer <daan.j.demeyer@gmail.com>
Wed, 11 Oct 2023 18:51:05 +0000 (20:51 +0200)
committerMartin KaFai Lau <martin.lau@kernel.org>
Wed, 11 Oct 2023 23:29:25 +0000 (16:29 -0700)
commit53e380d21441909b12b6e0782b77187ae4b971c4
tree50f50782b17955c8331b7c0bfe7a363a20037b0b
parentfefba7d1ae198dcbf8b3b432de46a4e29f8dbd8c
bpf: Add bpf_sock_addr_set_sun_path() to allow writing unix sockaddr from bpf

As prep for adding unix socket support to the cgroup sockaddr hooks,
let's add a kfunc bpf_sock_addr_set_sun_path() that allows modifying a unix
sockaddr from bpf. While this is already possible for AF_INET and AF_INET6,
we'll need this kfunc when we add unix socket support since modifying the
address for those requires modifying both the address and the sockaddr
length.

Signed-off-by: Daan De Meyer <daan.j.demeyer@gmail.com>
Link: https://lore.kernel.org/r/20231011185113.140426-4-daan.j.demeyer@gmail.com
Signed-off-by: Martin KaFai Lau <martin.lau@kernel.org>
kernel/bpf/btf.c
net/core/filter.c