Skip to content

Commit 5b16f89

Browse files
Xu KuohaiKernel Patches Daemon
authored andcommitted
bpf: Remove is_valid_bpf_tramp_flags()
BPF_TRAM_F_XXX flags are not used by user code and are almost constant at compile time, so run time validation is a bit overkill. Remove is_valid_bpf_tramp_flags() and add some usage comments. Signed-off-by: Xu Kuohai <[email protected]> Acked-by: Song Liu <[email protected]>
1 parent 53f4af2 commit 5b16f89

File tree

3 files changed

+6
-20
lines changed

3 files changed

+6
-20
lines changed

arch/x86/net/bpf_jit_comp.c

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1927,23 +1927,6 @@ static int invoke_bpf_mod_ret(const struct btf_func_model *m, u8 **pprog,
19271927
return 0;
19281928
}
19291929

1930-
static bool is_valid_bpf_tramp_flags(unsigned int flags)
1931-
{
1932-
if ((flags & BPF_TRAMP_F_RESTORE_REGS) &&
1933-
(flags & BPF_TRAMP_F_SKIP_FRAME))
1934-
return false;
1935-
1936-
/*
1937-
* BPF_TRAMP_F_RET_FENTRY_RET is only used by bpf_struct_ops,
1938-
* and it must be used alone.
1939-
*/
1940-
if ((flags & BPF_TRAMP_F_RET_FENTRY_RET) &&
1941-
(flags & ~BPF_TRAMP_F_RET_FENTRY_RET))
1942-
return false;
1943-
1944-
return true;
1945-
}
1946-
19471930
/* Example:
19481931
* __be16 eth_type_trans(struct sk_buff *skb, struct net_device *dev);
19491932
* its 'struct btf_func_model' will be nr_args=2
@@ -2022,9 +2005,6 @@ int arch_prepare_bpf_trampoline(struct bpf_tramp_image *im, void *image, void *i
20222005
if (nr_args > 6)
20232006
return -ENOTSUPP;
20242007

2025-
if (!is_valid_bpf_tramp_flags(flags))
2026-
return -EINVAL;
2027-
20282008
/* Generated trampoline stack layout:
20292009
*
20302010
* RBP + 8 [ return address ]

kernel/bpf/bpf_struct_ops.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -341,6 +341,9 @@ int bpf_struct_ops_prepare_trampoline(struct bpf_tramp_links *tlinks,
341341

342342
tlinks[BPF_TRAMP_FENTRY].links[0] = link;
343343
tlinks[BPF_TRAMP_FENTRY].nr_links = 1;
344+
/* BPF_TRAMP_F_RET_FENTRY_RET is only used by bpf_struct_ops,
345+
* and it must be used alone.
346+
*/
344347
flags = model->ret_size > 0 ? BPF_TRAMP_F_RET_FENTRY_RET : 0;
345348
return arch_prepare_bpf_trampoline(NULL, image, image_end,
346349
model, flags, tlinks, NULL);

kernel/bpf/trampoline.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -358,6 +358,9 @@ static int bpf_trampoline_update(struct bpf_trampoline *tr)
358358

359359
if (tlinks[BPF_TRAMP_FEXIT].nr_links ||
360360
tlinks[BPF_TRAMP_MODIFY_RETURN].nr_links)
361+
/* NOTE: BPF_TRAMP_F_RESTORE_REGS and BPF_TRAMP_F_SKIP_FRAME
362+
* should not be set together.
363+
*/
361364
flags = BPF_TRAMP_F_CALL_ORIG | BPF_TRAMP_F_SKIP_FRAME;
362365

363366
if (ip_arg)

0 commit comments

Comments
 (0)