From: Randy Dunlap <rdunlap@infradead.org>
To: Tom Abraham <tabraham@suse.com>, linux-kernel@vger.kernel.org
Cc: Linux MM <linux-mm@kvack.org>, Andrew Morton <akpm@linux-foundation.org>
Subject: Re: [PATCH] swap: divide-by-zero when zero length swap file on ssd
Date: Fri, 6 Apr 2018 09:52:50 -0700 [thread overview]
Message-ID: <fdca1f72-8e51-7727-d1a0-4ccd60e80bd0@infradead.org> (raw)
In-Reply-To: <5AC747C1020000A7001FA82C@prv-mh.provo.novell.com>
[adding linux-mm and akpm]
On 04/06/2018 07:11 AM, Tom Abraham wrote:
>
> Calling swapon() on a zero length swap file on SSD can lead to a
> divide-by-zero.
>
> Although creating such files isn't possible with mkswap and they woud be
> considered invalid, it would be better for the swapon code to be more robust
> and handle this condition gracefully (return -EINVAL). Especially since the fix
> is small and straight-forward.
>
> To help with wear leveling on SSD, the swapon syscall calculates a random
> position in the swap file using modulo p->highest_bit, which is set to
> maxpages - 1 in read_swap_header.
>
> If the swap file is zero length, read_swap_header sets maxpages=1 and
> last_page=0, resulting in p->highest_bit=0 and we divide-by-zero when we modulo
> p->highest_bit in swapon syscall.
>
> This can be prevented by having read_swap_header return zero if last_page is
> zero.
>
> diff --git a/mm/swapfile.c b/mm/swapfile.c
> index c7a33717d079..d6b7bd9f365d 100644
> --- a/mm/swapfile.c
> +++ b/mm/swapfile.c
> @@ -2961,6 +2961,10 @@ static unsigned long read_swap_header(struct swap_info_struct *p,
> maxpages = swp_offset(pte_to_swp_entry(
> swp_entry_to_pte(swp_entry(0, ~0UL)))) + 1;
> last_page = swap_header->info.last_page;
> + if(!last_page) {
> + pr_warn("Empty swap-file\n");
> + return 0;
> + }
> if (last_page > maxpages) {
> pr_warn("Truncating oversized swap area, only using %luk out of %luk\n",
> maxpages << (PAGE_SHIFT - 10),
>
--
~Randy
next parent reply other threads:[~2018-04-06 16:52 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <5AC747C1020000A7001FA82C@prv-mh.provo.novell.com>
2018-04-06 16:52 ` Randy Dunlap [this message]
2018-04-06 19:45 ` [PATCH] swap: divide-by-zero when zero length swap file on ssd Andrew Morton
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=fdca1f72-8e51-7727-d1a0-4ccd60e80bd0@infradead.org \
--to=rdunlap@infradead.org \
--cc=akpm@linux-foundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=tabraham@suse.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).