|
@@ -2234,7 +2234,28 @@ static const struct bpf_func_proto bpf_skb_change_head_proto = {
|
|
|
.arg3_type = ARG_ANYTHING,
|
|
|
};
|
|
|
|
|
|
-bool bpf_helper_changes_skb_data(void *func)
|
|
|
+BPF_CALL_2(bpf_xdp_adjust_head, struct xdp_buff *, xdp, int, offset)
|
|
|
+{
|
|
|
+ void *data = xdp->data + offset;
|
|
|
+
|
|
|
+ if (unlikely(data < xdp->data_hard_start ||
|
|
|
+ data > xdp->data_end - ETH_HLEN))
|
|
|
+ return -EINVAL;
|
|
|
+
|
|
|
+ xdp->data = data;
|
|
|
+
|
|
|
+ return 0;
|
|
|
+}
|
|
|
+
|
|
|
+static const struct bpf_func_proto bpf_xdp_adjust_head_proto = {
|
|
|
+ .func = bpf_xdp_adjust_head,
|
|
|
+ .gpl_only = false,
|
|
|
+ .ret_type = RET_INTEGER,
|
|
|
+ .arg1_type = ARG_PTR_TO_CTX,
|
|
|
+ .arg2_type = ARG_ANYTHING,
|
|
|
+};
|
|
|
+
|
|
|
+bool bpf_helper_changes_pkt_data(void *func)
|
|
|
{
|
|
|
if (func == bpf_skb_vlan_push ||
|
|
|
func == bpf_skb_vlan_pop ||
|
|
@@ -2244,7 +2265,8 @@ bool bpf_helper_changes_skb_data(void *func)
|
|
|
func == bpf_skb_change_tail ||
|
|
|
func == bpf_skb_pull_data ||
|
|
|
func == bpf_l3_csum_replace ||
|
|
|
- func == bpf_l4_csum_replace)
|
|
|
+ func == bpf_l4_csum_replace ||
|
|
|
+ func == bpf_xdp_adjust_head)
|
|
|
return true;
|
|
|
|
|
|
return false;
|
|
@@ -2670,6 +2692,8 @@ xdp_func_proto(enum bpf_func_id func_id)
|
|
|
return &bpf_xdp_event_output_proto;
|
|
|
case BPF_FUNC_get_smp_processor_id:
|
|
|
return &bpf_get_smp_processor_id_proto;
|
|
|
+ case BPF_FUNC_xdp_adjust_head:
|
|
|
+ return &bpf_xdp_adjust_head_proto;
|
|
|
default:
|
|
|
return sk_filter_func_proto(func_id);
|
|
|
}
|