mirror of
https://github.com/LineageOS/android_kernel_fxtec_sm6115.git
synced 2026-08-18 12:31:09 +00:00
UPSTREAM: bpf: Expose bpf_sk_storage_* to iterator programs
Iterators are currently used to expose kernel information to userspace over fast procfs-like files but iterators could also be used to manipulate local storage. For example, the task_file iterator could be used to initialize a socket local storage with associations between processes and sockets or to selectively delete local storage values. Change-Id: I7d831a6f93592075e905afb3561842d2d20f07a9 Signed-off-by: Florent Revest <revest@google.com> Signed-off-by: Daniel Borkmann <daniel@iogearbox.net> Acked-by: Martin KaFai Lau <kafai@fb.com> Acked-by: KP Singh <kpsingh@google.com> Link: https://lore.kernel.org/bpf/20201204113609.1850150-3-revest@google.com
This commit is contained in:
committed by
Thomas Turner
parent
e36fc5d468
commit
add0ff0979
@ -395,6 +395,7 @@ static bool bpf_sk_storage_tracing_allowed(const struct bpf_prog *prog)
|
||||
* use the bpf_sk_storage_(get|delete) helper.
|
||||
*/
|
||||
switch (prog->expected_attach_type) {
|
||||
case BPF_TRACE_ITER:
|
||||
case BPF_TRACE_RAW_TP:
|
||||
/* bpf_sk_storage has no trace point */
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user