diff options
author | Michael Ellerman <[email protected]> | 2018-10-19 15:21:08 +1100 |
---|---|---|
committer | Steven Rostedt (VMware) <[email protected]> | 2018-12-22 08:21:03 -0500 |
commit | 0464ed24380905d640030d368cd84a4e4d1e15e2 (patch) | |
tree | cf1dcd4ba1eb9a1b46ddf742cec17370229ae616 /tools/perf/scripts/python/export-to-postgresql.py | |
parent | a448276ce515c91cde4675be497364b91c764d95 (diff) |
seq_buf: Make seq_buf_puts() null-terminate the buffer
Currently seq_buf_puts() will happily create a non null-terminated
string for you in the buffer. This is particularly dangerous if the
buffer is on the stack.
For example:
char buf[8];
char secret = "secret";
struct seq_buf s;
seq_buf_init(&s, buf, sizeof(buf));
seq_buf_puts(&s, "foo");
printk("Message is %s\n", buf);
Can result in:
Message is fooªªªªªsecret
We could require all users to memset() their buffer to zero before
use. But that seems likely to be forgotten and lead to bugs.
Instead we can change seq_buf_puts() to always leave the buffer in a
null-terminated state.
The only downside is that this makes the buffer 1 character smaller
for seq_buf_puts(), but that seems like a good trade off.
Link: http://lkml.kernel.org/r/[email protected]
Acked-by: Kees Cook <[email protected]>
Signed-off-by: Michael Ellerman <[email protected]>
Signed-off-by: Steven Rostedt (VMware) <[email protected]>
Diffstat (limited to 'tools/perf/scripts/python/export-to-postgresql.py')
0 files changed, 0 insertions, 0 deletions