summaryrefslogtreecommitdiff
authorMichael Ellerman <mpe@ellerman.id.au>2018-10-19 04:21:08 (GMT)
committer Greg Kroah-Hartman <gregkh@linuxfoundation.org>2019-02-12 18:44:57 (GMT)
commitcb56da64ce84d5efadeda294938421f9ee98dcc9 (patch)
tree729bf09be2fe61bce406ded5563c1cc40f9c8762
parentecbf70b1586786ad84eead30246ecc2ef87de417 (diff)
downloadcommon-cb56da64ce84d5efadeda294938421f9ee98dcc9.zip
common-cb56da64ce84d5efadeda294938421f9ee98dcc9.tar.gz
common-cb56da64ce84d5efadeda294938421f9ee98dcc9.tar.bz2
seq_buf: Make seq_buf_puts() null-terminate the buffer
[ Upstream commit 0464ed24380905d640030d368cd84a4e4d1e15e2 ] 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/20181019042109.8064-1-mpe@ellerman.id.au Acked-by: Kees Cook <keescook@chromium.org> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat
-rw-r--r--lib/seq_buf.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/seq_buf.c b/lib/seq_buf.c
index cb18469..5954f9f 100644
--- a/lib/seq_buf.c
+++ b/lib/seq_buf.c
@@ -143,9 +143,13 @@ int seq_buf_puts(struct seq_buf *s, const char *str)
WARN_ON(s->size == 0);
+ /* Add 1 to len for the trailing null byte which must be there */
+ len += 1;
+
if (seq_buf_can_fit(s, len)) {
memcpy(s->buffer + s->len, str, len);
- s->len += len;
+ /* Don't count the trailing null byte against the capacity */
+ s->len += len - 1;
return 0;
}
seq_buf_set_overflow(s);