From: Andrew Morton <akpm@linux-foundation.org>
To: Grazvydas Ignotas <notasas@gmail.com>
Cc: linux-mm@kvack.org, Rik van Riel <riel@redhat.com>
Subject: Re: [PATCH] mm: actually remap enough memory
Date: Mon, 9 Feb 2015 13:23:51 -0800 [thread overview]
Message-ID: <20150209132351.f8b95644a1304543e5118820@linux-foundation.org> (raw)
In-Reply-To: <1423364112-15487-1-git-send-email-notasas@gmail.com>
On Sun, 8 Feb 2015 04:55:12 +0200 Grazvydas Ignotas <notasas@gmail.com> wrote:
> For whatever reason, generic_access_phys() only remaps one page, but
> actually allows to access arbitrary size. It's quite easy to trigger
> large reads, like printing out large structure with gdb, which leads to
> a crash. Fix it by remapping correct size.
>
> ...
>
> --- a/mm/memory.c
> +++ b/mm/memory.c
> @@ -3829,7 +3829,7 @@ int generic_access_phys(struct vm_area_struct *vma, unsigned long addr,
> if (follow_phys(vma, addr, write, &prot, &phys_addr))
> return -EINVAL;
>
> - maddr = ioremap_prot(phys_addr, PAGE_SIZE, prot);
> + maddr = ioremap_prot(phys_addr, PAGE_ALIGN(len + offset), prot);
> if (write)
> memcpy_toio(maddr + offset, buf, len);
> else
hm, shouldn't this be PAGE_ALIGN(len)?
Do we need the PAGE_ALIGN at all? It's probably safer/saner to have it
there, but x86 (at least) should be OK with arbitrary alignment on both
addr and len?
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
next prev parent reply other threads:[~2015-02-09 21:23 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-02-08 2:55 Grazvydas Ignotas
2015-02-09 21:23 ` Andrew Morton [this message]
2015-02-10 12:37 ` Grazvydas Ignotas
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=20150209132351.f8b95644a1304543e5118820@linux-foundation.org \
--to=akpm@linux-foundation.org \
--cc=linux-mm@kvack.org \
--cc=notasas@gmail.com \
--cc=riel@redhat.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