summaryrefslogtreecommitdiffstats
path: root/include/uapi/linux/bpf.h
diff options
context:
space:
mode:
authorJesper Dangaard Brouer2018-01-03 11:26:14 +0100
committerAlexei Starovoitov2018-01-06 00:21:22 +0100
commit02dd3291b2f095bbc88e1d2628fd5bf2e92de69b (patch)
tree510ccf29fe93e944ecf20ab403c1c3089f843c0f /include/uapi/linux/bpf.h
parentxdp: generic XDP handling of xdp_rxq_info (diff)
downloadkernel-qcow2-linux-02dd3291b2f095bbc88e1d2628fd5bf2e92de69b.tar.gz
kernel-qcow2-linux-02dd3291b2f095bbc88e1d2628fd5bf2e92de69b.tar.xz
kernel-qcow2-linux-02dd3291b2f095bbc88e1d2628fd5bf2e92de69b.zip
bpf: finally expose xdp_rxq_info to XDP bpf-programs
Now all XDP driver have been updated to setup xdp_rxq_info and assign this to xdp_buff->rxq. Thus, it is now safe to enable access to some of the xdp_rxq_info struct members. This patch extend xdp_md and expose UAPI to userspace for ingress_ifindex and rx_queue_index. Access happens via bpf instruction rewrite, that load data directly from struct xdp_rxq_info. * ingress_ifindex map to xdp_rxq_info->dev->ifindex * rx_queue_index map to xdp_rxq_info->queue_index Signed-off-by: Jesper Dangaard Brouer <brouer@redhat.com> Acked-by: Alexei Starovoitov <ast@kernel.org> Acked-by: John Fastabend <john.fastabend@gmail.com> Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Diffstat (limited to 'include/uapi/linux/bpf.h')
-rw-r--r--include/uapi/linux/bpf.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/uapi/linux/bpf.h b/include/uapi/linux/bpf.h
index f2f8b36e2ad4..405317f9c064 100644
--- a/include/uapi/linux/bpf.h
+++ b/include/uapi/linux/bpf.h
@@ -899,6 +899,9 @@ struct xdp_md {
__u32 data;
__u32 data_end;
__u32 data_meta;
+ /* Below access go though struct xdp_rxq_info */
+ __u32 ingress_ifindex; /* rxq->dev->ifindex */
+ __u32 rx_queue_index; /* rxq->queue_index */
};
enum sk_action {