diff options
author | Jakub Kicinski <jakub.kicinski@netronome.com> | 2018-03-15 23:26:15 -0700 |
---|---|---|
committer | Daniel Borkmann <daniel@iogearbox.net> | 2018-03-16 09:23:15 +0100 |
commit | d5fc73dceb060688f01c2ee225a2b42cf47352ba (patch) | |
tree | d54bb0c51cdf983d77d76181daa0e50434cd8e09 /tools/bpf | |
parent | 90126e3a40843de369a496db160ab22bdd6f4c48 (diff) | |
download | linux-stable-d5fc73dceb060688f01c2ee225a2b42cf47352ba.tar.gz linux-stable-d5fc73dceb060688f01c2ee225a2b42cf47352ba.tar.bz2 linux-stable-d5fc73dceb060688f01c2ee225a2b42cf47352ba.zip |
tools: bpftool: fix potential format truncation
GCC 7 complains:
xlated_dumper.c: In function ‘print_call’:
xlated_dumper.c:179:10: warning: ‘%s’ directive output may be truncated writing up to 255 bytes into a region of size between 249 and 253 [-Wformat-truncation=]
"%+d#%s", insn->off, sym->name);
Add a bit more space to the buffer so it can handle the entire
string and integer without truncation.
Signed-off-by: Jakub Kicinski <jakub.kicinski@netronome.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Diffstat (limited to 'tools/bpf')
-rw-r--r-- | tools/bpf/bpftool/xlated_dumper.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/bpf/bpftool/xlated_dumper.h b/tools/bpf/bpftool/xlated_dumper.h index 51c935d38ae2..b34affa7ef2d 100644 --- a/tools/bpf/bpftool/xlated_dumper.h +++ b/tools/bpf/bpftool/xlated_dumper.h @@ -49,7 +49,7 @@ struct dump_data { unsigned long address_call_base; struct kernel_sym *sym_mapping; __u32 sym_count; - char scratch_buff[SYM_MAX_NAME]; + char scratch_buff[SYM_MAX_NAME + 8]; }; void kernel_syms_load(struct dump_data *dd); |