Commit e0d4246a authored by Julius Werner's avatar Julius Werner Committed by Ben Hutchings

drivers: char: mem: Fix wraparound check to allow mappings up to the end

commit 32829da5 upstream.

A recent fix to /dev/mem prevents mappings from wrapping around the end
of physical address space. However, the check was written in a way that
also prevents a mapping reaching just up to the end of physical address
space, which may be a valid use case (especially on 32-bit systems).
This patch fixes it by checking the last mapped address (instead of the
first address behind that) for overflow.

Fixes: b299cde2 ("drivers: char: mem: Check for address space wraparound with mmap()")
Reported-by: default avatarNico Huber <nico.h@gmx.de>
Signed-off-by: default avatarJulius Werner <jwerner@chromium.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: default avatarBen Hutchings <ben@decadent.org.uk>
parent 35378d86
...@@ -325,7 +325,7 @@ static int mmap_mem(struct file *file, struct vm_area_struct *vma) ...@@ -325,7 +325,7 @@ static int mmap_mem(struct file *file, struct vm_area_struct *vma)
phys_addr_t offset = (phys_addr_t)vma->vm_pgoff << PAGE_SHIFT; phys_addr_t offset = (phys_addr_t)vma->vm_pgoff << PAGE_SHIFT;
/* It's illegal to wrap around the end of the physical address space. */ /* It's illegal to wrap around the end of the physical address space. */
if (offset + (phys_addr_t)size < offset) if (offset + (phys_addr_t)size - 1 < offset)
return -EINVAL; return -EINVAL;
if (!valid_mmap_phys_addr_range(vma->vm_pgoff, size)) if (!valid_mmap_phys_addr_range(vma->vm_pgoff, size))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment