summaryrefslogtreecommitdiffstats
path: root/include/uapi/linux/bpf.h
diff options
context:
space:
mode:
authorJohn Fastabend2017-08-16 07:31:58 +0200
committerDavid S. Miller2017-08-16 20:27:53 +0200
commitb005fd189cec9407b700599e1e80e0552446ee79 (patch)
treee0b7da0870e0d683955f4d999aafdb71ac63afdb /include/uapi/linux/bpf.h
parentnet: fixes for skb_send_sock (diff)
downloadkernel-qcow2-linux-b005fd189cec9407b700599e1e80e0552446ee79.tar.gz
kernel-qcow2-linux-b005fd189cec9407b700599e1e80e0552446ee79.tar.xz
kernel-qcow2-linux-b005fd189cec9407b700599e1e80e0552446ee79.zip
bpf: introduce new program type for skbs on sockets
A class of programs, run from strparser and soon from a new map type called sock map, are used with skb as the context but on established sockets. By creating a specific program type for these we can use bpf helpers that expect full sockets and get the verifier to ensure these helpers are not used out of context. The new type is BPF_PROG_TYPE_SK_SKB. This patch introduces the infrastructure and type. Signed-off-by: John Fastabend <john.fastabend@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/uapi/linux/bpf.h')
-rw-r--r--include/uapi/linux/bpf.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/uapi/linux/bpf.h b/include/uapi/linux/bpf.h
index 91da8371a2d0..2e796e384aeb 100644
--- a/include/uapi/linux/bpf.h
+++ b/include/uapi/linux/bpf.h
@@ -127,6 +127,7 @@ enum bpf_prog_type {
BPF_PROG_TYPE_LWT_OUT,
BPF_PROG_TYPE_LWT_XMIT,
BPF_PROG_TYPE_SOCK_OPS,
+ BPF_PROG_TYPE_SK_SKB,
};
enum bpf_attach_type {