linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH V2] proc-vmcore: wrong data type casting fix
@ 2016-03-11  8:42 Dave Young
  2016-03-11 20:27 ` Andrew Morton
  2016-03-14  3:25 ` HATAYAMA Daisuke
  0 siblings, 2 replies; 12+ messages in thread
From: Dave Young @ 2016-03-11  8:42 UTC (permalink / raw)
  To: Andrew Morton, linux-kernel, d.hatayama, bhe, vgoyal, kexec
  Cc: dyoung, nasa4836, mhuang

On i686 PAE enabled machine the contiguous physical area could be large
and it can cause trimming down variables in below calculation in
read_vmcore() and mmap_vmcore():

	tsz = min_t(size_t, m->offset + m->size - *fpos, buflen);

Then the real size passed down is not correct any more.
Suppose m->offset + m->size - *fpos being truncated to 0, buflen >0 then
we will get tsz = 0. It is of course not an expected result.

During our tests there are two problems caused by it:
1) read_vmcore will refuse to continue so makedumpfile fails.
2) mmap_vmcore will trigger BUG_ON() in remap_pfn_range().

Use unsigned long long in min_t instead so that the variables are not
truncated.

Signed-off-by: Baoquan He <bhe@redhat.com>
Signed-off-by: Dave Young <dyoung@redhat.com>
---
v1->v2: spelling fix in patch log
 fs/proc/vmcore.c |    7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

--- linux-x86.orig/fs/proc/vmcore.c
+++ linux-x86/fs/proc/vmcore.c
@@ -231,7 +231,9 @@ static ssize_t __read_vmcore(char *buffe
 
 	list_for_each_entry(m, &vmcore_list, list) {
 		if (*fpos < m->offset + m->size) {
-			tsz = min_t(size_t, m->offset + m->size - *fpos, buflen);
+			tsz = (size_t)min_t(unsigned long long,
+					    m->offset + m->size - *fpos,
+					    buflen);
 			start = m->paddr + *fpos - m->offset;
 			tmp = read_from_oldmem(buffer, tsz, &start, userbuf);
 			if (tmp < 0)
@@ -461,7 +463,8 @@ static int mmap_vmcore(struct file *file
 		if (start < m->offset + m->size) {
 			u64 paddr = 0;
 
-			tsz = min_t(size_t, m->offset + m->size - start, size);
+			tsz = (size_t)min_t(unsigned long long,
+					    m->offset + m->size - start, size);
 			paddr = m->paddr + start - m->offset;
 			if (vmcore_remap_oldmem_pfn(vma, vma->vm_start + len,
 						    paddr >> PAGE_SHIFT, tsz,

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2016-03-14  4:36 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-03-11  8:42 [PATCH V2] proc-vmcore: wrong data type casting fix Dave Young
2016-03-11 20:27 ` Andrew Morton
2016-03-12  4:49   ` Dave Young
2016-03-12 12:43     ` Xunlei Pang
2016-03-12 13:59       ` Baoquan He
2016-03-13  6:11         ` Xunlei Pang
2016-03-14  2:41   ` Baoquan He
2016-03-14  3:25 ` HATAYAMA Daisuke
2016-03-14  3:31   ` Dave Young
2016-03-14  3:47   ` Baoquan He
2016-03-14  3:50     ` Baoquan He
2016-03-14  4:36       ` HATAYAMA Daisuke

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).