Skip to content

Commit d2485c4

Browse files
borkmanndavem330
authored andcommitted
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 <[email protected]> Acked-by: Alexei Starovoitov <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent 6578171 commit d2485c4

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

Diff for: include/uapi/linux/bpf.h

+9
Original file line numberDiff line numberDiff line change
@@ -327,6 +327,15 @@ enum bpf_func_id {
327327
*/
328328
BPF_FUNC_skb_change_proto,
329329

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+
330339
__BPF_FUNC_MAX_ID,
331340
};
332341

Diff for: net/core/filter.c

+24
Original file line numberDiff line numberDiff line change
@@ -1979,6 +1979,28 @@ static const struct bpf_func_proto bpf_skb_change_proto_proto = {
19791979
.arg3_type = ARG_ANYTHING,
19801980
};
19811981

1982+
static u64 bpf_skb_change_type(u64 r1, u64 r2, u64 r3, u64 r4, u64 r5)
1983+
{
1984+
struct sk_buff *skb = (struct sk_buff *) (long) r1;
1985+
u32 pkt_type = r2;
1986+
1987+
/* We only allow a restricted subset to be changed for now. */
1988+
if (unlikely(skb->pkt_type > PACKET_OTHERHOST ||
1989+
pkt_type > PACKET_OTHERHOST))
1990+
return -EINVAL;
1991+
1992+
skb->pkt_type = pkt_type;
1993+
return 0;
1994+
}
1995+
1996+
static const struct bpf_func_proto bpf_skb_change_type_proto = {
1997+
.func = bpf_skb_change_type,
1998+
.gpl_only = false,
1999+
.ret_type = RET_INTEGER,
2000+
.arg1_type = ARG_PTR_TO_CTX,
2001+
.arg2_type = ARG_ANYTHING,
2002+
};
2003+
19822004
bool bpf_helper_changes_skb_data(void *func)
19832005
{
19842006
if (func == bpf_skb_vlan_push)
@@ -2278,6 +2300,8 @@ tc_cls_act_func_proto(enum bpf_func_id func_id)
22782300
return &bpf_skb_vlan_pop_proto;
22792301
case BPF_FUNC_skb_change_proto:
22802302
return &bpf_skb_change_proto_proto;
2303+
case BPF_FUNC_skb_change_type:
2304+
return &bpf_skb_change_type_proto;
22812305
case BPF_FUNC_skb_get_tunnel_key:
22822306
return &bpf_skb_get_tunnel_key_proto;
22832307
case BPF_FUNC_skb_set_tunnel_key:

0 commit comments

Comments
 (0)