Commit cd4ad4b9 authored by David Howells's avatar David Howells Committed by Greg Kroah-Hartman

NOMMU: Don't pass NULL pointers to fput() in do_mmap_pgoff()

commit 89a86402 upstream.

Don't pass NULL pointers to fput() in the error handling paths of the NOMMU
do_mmap_pgoff() as it can't handle it.

The following can be used as a test program:

	int main() { static long long a[1024 * 1024 * 20] = { 0 }; return a;}

Without the patch, the code oopses in atomic_long_dec_and_test() as called by
fput() after the kernel complains that it can't allocate that big a chunk of
memory.  With the patch, the kernel just complains about the allocation size
and then the program segfaults during execve() as execve() can't complete the
allocation of all the new ELF program segments.
Reported-by: default avatarRobin Getz <rgetz@blackfin.uclinux.org>
Signed-off-by: default avatarDavid Howells <dhowells@redhat.com>
Acked-by: default avatarRobin Getz <rgetz@blackfin.uclinux.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 7af6e31f
......@@ -1384,9 +1384,11 @@ share:
error_just_free:
up_write(&nommu_region_sem);
error:
fput(region->vm_file);
if (region->vm_file)
fput(region->vm_file);
kmem_cache_free(vm_region_jar, region);
fput(vma->vm_file);
if (vma->vm_file)
fput(vma->vm_file);
if (vma->vm_flags & VM_EXECUTABLE)
removed_exe_file_vma(vma->vm_mm);
kmem_cache_free(vm_area_cachep, vma);
......
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