All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mm: shmem: avoid overflowing in shmem_fallocate
@ 2014-12-04  0:24 ` Sasha Levin
  0 siblings, 0 replies; 6+ messages in thread
From: Sasha Levin @ 2014-12-04  0:24 UTC (permalink / raw)
  To: linux-kernel; +Cc: Sasha Levin, Hugh Dickins, linux-mm

"offset + len" has the potential of overflowing. Validate this user input
first to avoid undefined behaviour.

Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
---
 mm/shmem.c |    3 +++
 1 file changed, 3 insertions(+)

diff --git a/mm/shmem.c b/mm/shmem.c
index 185836b..5a0e344 100644
--- a/mm/shmem.c
+++ b/mm/shmem.c
@@ -2098,6 +2098,9 @@ static long shmem_fallocate(struct file *file, int mode, loff_t offset,
 	}
 
 	/* We need to check rlimit even when FALLOC_FL_KEEP_SIZE */
+	error = -EOVERFLOW;
+	if ((u64)len + offset < (u64)len)
+		goto out;
 	error = inode_newsize_ok(inode, offset + len);
 	if (error)
 		goto out;
-- 
1.7.10.4

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

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

end of thread, other threads:[~2014-12-04  2:33 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-04  0:24 [PATCH] mm: shmem: avoid overflowing in shmem_fallocate Sasha Levin
2014-12-04  0:24 ` Sasha Levin
2014-12-04  1:51 ` Naoya Horiguchi
2014-12-04  1:51   ` Naoya Horiguchi
2014-12-04  2:33   ` Sasha Levin
2014-12-04  2:33     ` Sasha Levin

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.