Skip to content

Commit 1972d98

Browse files
Xu KuohaiKernel Patches Daemon
Xu Kuohai
authored and
Kernel Patches Daemon
committed
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 bfacd2a commit 1972d98

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
@@ -1922,23 +1922,6 @@ static int invoke_bpf_mod_ret(const struct btf_func_model *m, u8 **pprog,
19221922
return 0;
19231923
}
19241924

1925-
static bool is_valid_bpf_tramp_flags(unsigned int flags)
1926-
{
1927-
if ((flags & BPF_TRAMP_F_RESTORE_REGS) &&
1928-
(flags & BPF_TRAMP_F_SKIP_FRAME))
1929-
return false;
1930-
1931-
/*
1932-
* BPF_TRAMP_F_RET_FENTRY_RET is only used by bpf_struct_ops,
1933-
* and it must be used alone.
1934-
*/
1935-
if ((flags & BPF_TRAMP_F_RET_FENTRY_RET) &&
1936-
(flags & ~BPF_TRAMP_F_RET_FENTRY_RET))
1937-
return false;
1938-
1939-
return true;
1940-
}
1941-
19421925
/* Example:
19431926
* __be16 eth_type_trans(struct sk_buff *skb, struct net_device *dev);
19441927
* its 'struct btf_func_model' will be nr_args=2
@@ -2017,9 +2000,6 @@ int arch_prepare_bpf_trampoline(struct bpf_tramp_image *im, void *image, void *i
20172000
if (nr_args > 6)
20182001
return -ENOTSUPP;
20192002

2020-
if (!is_valid_bpf_tramp_flags(flags))
2021-
return -EINVAL;
2022-
20232003
/* Generated trampoline stack layout:
20242004
*
20252005
* 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)