diff options
author | David Vernet <void@manifault.com> | 2022-11-20 08:10:01 +0300 |
---|---|---|
committer | Alexei Starovoitov <ast@kernel.org> | 2022-11-20 20:16:21 +0300 |
commit | ef66c5475d7fb864c2418d3bdd19dee46324624b (patch) | |
tree | f3884e6beb0d3702bdd01bc19ed81f7de42b4cb3 /include/linux/bpf_verifier.h | |
parent | ee748cd95e3adf4acdb05194b2ea68e4073e09b6 (diff) | |
download | linux-ef66c5475d7fb864c2418d3bdd19dee46324624b.tar.xz |
bpf: Allow multiple modifiers in reg_type_str() prefix
reg_type_str() in the verifier currently only allows a single register
type modifier to be present in the 'prefix' string which is eventually
stored in the env type_str_buf. This currently works fine because there
are no overlapping type modifiers, but once PTR_TRUSTED is added, that
will no longer be the case. This patch updates reg_type_str() to support
having multiple modifiers in the prefix string, and updates the size of
type_str_buf to be 128 bytes.
Signed-off-by: David Vernet <void@manifault.com>
Link: https://lore.kernel.org/r/20221120051004.3605026-2-void@manifault.com
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Diffstat (limited to 'include/linux/bpf_verifier.h')
-rw-r--r-- | include/linux/bpf_verifier.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/bpf_verifier.h b/include/linux/bpf_verifier.h index 23f30c685f28..608dde740fef 100644 --- a/include/linux/bpf_verifier.h +++ b/include/linux/bpf_verifier.h @@ -19,7 +19,7 @@ */ #define BPF_MAX_VAR_SIZ (1 << 29) /* size of type_str_buf in bpf_verifier. */ -#define TYPE_STR_BUF_LEN 64 +#define TYPE_STR_BUF_LEN 128 /* Liveness marks, used for registers and spilled-regs (in stack slots). * Read marks propagate upwards until they find a write mark; they record that |