]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/commit
ramfs: fix nommu mmap with gaps in the page cache
authorMatthew Wilcox (Oracle) <willy@infradead.org>
Fri, 16 Oct 2020 03:13:04 +0000 (20:13 -0700)
committerStefan Bader <stefan.bader@canonical.com>
Mon, 9 Nov 2020 13:49:00 +0000 (14:49 +0100)
commit41ae57460df6c5bfc41db21d7ee769601c54d89c
tree5fd367c6add9d1a4cd9c328df4e325ead03e4921
parent24f2c2dccb99291186d2704c8d5f9200c3a5c79e
ramfs: fix nommu mmap with gaps in the page cache

BugLink: https://bugs.launchpad.net/bugs/1902115
[ Upstream commit 50b7d85680086126d7bd91dae81d57d4cb1ab6b7 ]

ramfs needs to check that pages are both physically contiguous and
contiguous in the file.  If the page cache happens to have, eg, page A for
index 0 of the file, no page for index 1, and page A+1 for index 2, then
an mmap of the first two pages of the file will succeed when it should
fail.

Fixes: 642fb4d1f1dd ("[PATCH] NOMMU: Provide shared-writable mmap support on ramfs")
Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Cc: David Howells <dhowells@redhat.com>
Link: https://lkml.kernel.org/r/20200914122239.GO6583@casper.infradead.org
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Signed-off-by: Kamal Mostafa <kamal@canonical.com>
Signed-off-by: Ian May <ian.may@canonical.com>
fs/ramfs/file-nommu.c