]> git.ipfire.org Git - thirdparty/kernel/linux.git/commit
bpf: Add syscall common attributes support for prog_load
authorLeon Hwang <leon.hwang@linux.dev>
Tue, 12 May 2026 15:31:53 +0000 (23:31 +0800)
committerAlexei Starovoitov <ast@kernel.org>
Tue, 12 May 2026 19:44:41 +0000 (12:44 -0700)
commitac89d33fdd8183df39fe92ffa525be7af6feb9d1
treebd63612e41a1eb7458385bb8dcd0dd8f88399e38
parent503c039ffeca7530ce9d6446a07b4bb776180b45
bpf: Add syscall common attributes support for prog_load

BPF_PROG_LOAD can now take log parameters from both union bpf_attr and
struct bpf_common_attr. The merge rules are:

- if both sides provide a complete log tuple (buf/size/level) and they
  match, use it;
- if only one side provides log parameters, use that one;
- if both sides provide complete tuples but they differ, return -EINVAL.

Signed-off-by: Leon Hwang <leon.hwang@linux.dev>
Link: https://lore.kernel.org/r/20260512153157.28382-5-leon.hwang@linux.dev
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
include/linux/bpf_verifier.h
kernel/bpf/log.c
kernel/bpf/syscall.c