From: Chen Gang Date: Tue, 5 Nov 2013 05:57:36 +0000 (+1100) Subject: kernel/kexec.c: use vscnprintf() instead of vsnprintf() in vmcoreinfo_append_str() X-Git-Tag: next-20131105~2^2~31 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=b0b927330fa033c241e1065b732dfed891ef568a;p=karo-tx-linux.git kernel/kexec.c: use vscnprintf() instead of vsnprintf() in vmcoreinfo_append_str() vsnprintf() may let 'r' larger than sizeof(buf), in this case, if 'r' is also less than "vmcoreinfo_max_size - vmcoreinfo_size" (left size of destination buffer), next memcpy() will read the unexpected addresses. Signed-off-by: Chen Gang Signed-off-by: Andrew Morton --- diff --git a/kernel/kexec.c b/kernel/kexec.c index 2a74f307c5ec..0abcd688fe2c 100644 --- a/kernel/kexec.c +++ b/kernel/kexec.c @@ -1533,7 +1533,7 @@ void vmcoreinfo_append_str(const char *fmt, ...) size_t r; va_start(args, fmt); - r = vsnprintf(buf, sizeof(buf), fmt, args); + r = vscnprintf(buf, sizeof(buf), fmt, args); va_end(args); r = min(r, vmcoreinfo_max_size - vmcoreinfo_size);