mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
vmcoreinfo: warn if we exceed vmcoreinfo data size
Though vmcoreinfo is intended to be small, at just one page, useful information is still added to it, so we risk running out of space. Currently there is no runtime check to see whether the vmcoreinfo buffer has been exhausted. Add a warning for this case. Currently, my static checking tool[1] indicates that a good upper bound for vmcoreinfo size is currently 3415 bytes, but the best time to add warnings is before the risk becomes too high. [1] https://github.com/brenns10/kernel_stuff/blob/master/vmcoreinfosize/vmcoreinfosize.py Link: https://lkml.kernel.org/r/20221027205008.312534-1-stephen.s.brennan@oracle.com Signed-off-by: Stephen Brennan <stephen.s.brennan@oracle.com> Acked-by: Baoquan He <bhe@redhat.com> Cc: Dave Young <dyoung@redhat.com> Cc: Vivek Goyal <vgoyal@redhat.com> Cc: Kees Cook <keescook@chromium.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
This commit is contained in:
parent
3965292ad0
commit
08fc35f31b
@ -383,6 +383,9 @@ void vmcoreinfo_append_str(const char *fmt, ...)
|
|||||||
memcpy(&vmcoreinfo_data[vmcoreinfo_size], buf, r);
|
memcpy(&vmcoreinfo_data[vmcoreinfo_size], buf, r);
|
||||||
|
|
||||||
vmcoreinfo_size += r;
|
vmcoreinfo_size += r;
|
||||||
|
|
||||||
|
WARN_ONCE(vmcoreinfo_size == VMCOREINFO_BYTES,
|
||||||
|
"vmcoreinfo data exceeds allocated size, truncating");
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
Reference in New Issue
Block a user