mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-10-31 18:09:19 +00:00
swapfile: fix memory corruption via malformed swapfile
commit dd111be69114cc867f8e826284559bfbc1c40e37 upstream. When root activates a swap partition whose header has the wrong endianness, nr_badpages elements of badpages are swabbed before nr_badpages has been checked, leading to a buffer overrun of up to 8GB. This normally is not a security issue because it can only be exploited by root (more specifically, a process with CAP_SYS_ADMIN or the ability to modify a swap file/partition), and such a process can already e.g. modify swapped-out memory of any other userspace process on the system. Link: http://lkml.kernel.org/r/1477949533-2509-1-git-send-email-jann@thejh.net Signed-off-by: Jann Horn <jann@thejh.net> Acked-by: Kees Cook <keescook@chromium.org> Acked-by: Jerome Marchand <jmarchan@redhat.com> Acked-by: Johannes Weiner <hannes@cmpxchg.org> Cc: "Kirill A. Shutemov" <kirill.shutemov@linux.intel.com> Cc: Vlastimil Babka <vbabka@suse.cz> Cc: Hugh Dickins <hughd@google.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: Willy Tarreau <w@1wt.eu>
This commit is contained in:
parent
32bfd3d812
commit
4f43178d45
1 changed files with 2 additions and 0 deletions
|
@ -1988,6 +1988,8 @@ static unsigned long read_swap_header(struct swap_info_struct *p,
|
||||||
swab32s(&swap_header->info.version);
|
swab32s(&swap_header->info.version);
|
||||||
swab32s(&swap_header->info.last_page);
|
swab32s(&swap_header->info.last_page);
|
||||||
swab32s(&swap_header->info.nr_badpages);
|
swab32s(&swap_header->info.nr_badpages);
|
||||||
|
if (swap_header->info.nr_badpages > MAX_SWAP_BADPAGES)
|
||||||
|
return 0;
|
||||||
for (i = 0; i < swap_header->info.nr_badpages; i++)
|
for (i = 0; i < swap_header->info.nr_badpages; i++)
|
||||||
swab32s(&swap_header->info.badpages[i]);
|
swab32s(&swap_header->info.badpages[i]);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue