diff options
| author | Daniel Borkmann <daniel@iogearbox.net> | 2016-06-28 06:18:28 -0400 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2016-06-30 05:54:40 -0400 |
| commit | d2485c4242a826fdf493fd3a27b8b792965b9b9e (patch) | |
| tree | d02f10ddd1ad1f4e5d280ab8e285f7ab450312fc /include/uapi/linux | |
| parent | 6578171a7ff0c31dc73258f93da7407510abf085 (diff) | |
bpf: add bpf_skb_change_type helper
This work adds a helper for changing skb->pkt_type in a controlled way.
We only allow a subset of possible values and can extend that in future
should other use cases come up. Doing this as a helper has the advantage
that errors can be handeled gracefully and thus helper kept extensible.
It's a write counterpart to pkt_type member we can already read from
struct __sk_buff context. Major use case is to change incoming skbs to
PACKET_HOST in a programmatic way instead of having to recirculate via
redirect(..., BPF_F_INGRESS), for example.
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Acked-by: Alexei Starovoitov <ast@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/uapi/linux')
| -rw-r--r-- | include/uapi/linux/bpf.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/uapi/linux/bpf.h b/include/uapi/linux/bpf.h index 66cd738a937a..be6ac1291680 100644 --- a/include/uapi/linux/bpf.h +++ b/include/uapi/linux/bpf.h | |||
| @@ -327,6 +327,15 @@ enum bpf_func_id { | |||
| 327 | */ | 327 | */ |
| 328 | BPF_FUNC_skb_change_proto, | 328 | BPF_FUNC_skb_change_proto, |
| 329 | 329 | ||
| 330 | /** | ||
| 331 | * bpf_skb_change_type(skb, type) | ||
| 332 | * Change packet type of skb. | ||
| 333 | * @skb: pointer to skb | ||
| 334 | * @type: new skb->pkt_type type | ||
| 335 | * Return: 0 on success or negative error | ||
| 336 | */ | ||
| 337 | BPF_FUNC_skb_change_type, | ||
| 338 | |||
| 330 | __BPF_FUNC_MAX_ID, | 339 | __BPF_FUNC_MAX_ID, |
| 331 | }; | 340 | }; |
| 332 | 341 | ||
