linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: linux@arm.linux.org.uk (Russell King - ARM Linux)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v6 7/8] ARM: mm: allow non-text sections to be non-executable
Date: Fri, 26 Sep 2014 12:42:39 +0100	[thread overview]
Message-ID: <20140926114239.GM5182@n2100.arm.linux.org.uk> (raw)
In-Reply-To: <1411067949-10913-8-git-send-email-keescook@chromium.org>

On Thu, Sep 18, 2014 at 12:19:08PM -0700, Kees Cook wrote:
> @@ -1373,13 +1373,24 @@ static void __init map_lowmem(void)
>  		if (start >= end)
>  			break;
>  
> -		if (end < kernel_x_start || start >= kernel_x_end) {
> +		if (end < kernel_x_start) {
>  			map.pfn = __phys_to_pfn(start);
>  			map.virtual = __phys_to_virt(start);
>  			map.length = end - start;
>  			map.type = MT_MEMORY_RWX;
>  
>  			create_mapping(&map);
> +		} else if (start >= kernel_x_end) {
> +			map.pfn = __phys_to_pfn(start);
> +			map.virtual = __phys_to_virt(start);
> +			map.length = end - start;
> +#ifdef CONFIG_ARM_KERNMEM_PERMS
> +			map.type = MT_MEMORY_RW;
> +#else
> +			map.type = MT_MEMORY_RWX;
> +#endif
> +
> +			create_mapping(&map);


I'm looking at this, and wondering two things.  Firstly, why isn't it
MT_MEMORY_RW in the first place.  Secondly, why do you need to make
this depend on CONFIG_ARM_KERNMEM_PERMS at all?

I think the first is an oversight by me (and is a case which never came
up in my testing, because most of my platforms don't have segmented
memory layouts.)

The second I think is not necessary - the memory region being considered
is not part of the kernel at all, and so should not be executable in any
shape or form.

-- 
FTTC broadband for 0.8mile line: currently at 9.5Mbps down 400kbps up
according to speedtest.net.

  reply	other threads:[~2014-09-26 11:42 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-09-18 19:19 [PATCH v6 0/8] arm: support CONFIG_RODATA Kees Cook
2014-09-18 19:19 ` [PATCH v6 1/8] arm: use generic fixmap.h Kees Cook
2014-09-18 19:19 ` [PATCH v6 2/8] ARM: expand fixmap region to 3MB Kees Cook
2014-09-18 19:19 ` [PATCH v6 3/8] arm: fixmap: implement __set_fixmap() Kees Cook
2014-09-18 19:19 ` [PATCH v6 4/8] arm: use fixmap for text patching when text is RO Kees Cook
2014-09-18 19:19 ` [PATCH v6 5/8] ARM: kexec: Make .text R/W in machine_kexec Kees Cook
2014-09-18 19:19 ` [PATCH v6 6/8] arm: kgdb: Handle read-only text / modules Kees Cook
2014-09-18 19:19 ` [PATCH v6 7/8] ARM: mm: allow non-text sections to be non-executable Kees Cook
2014-09-26 11:42   ` Russell King - ARM Linux [this message]
2014-09-26 16:43     ` Kees Cook
2014-09-26 16:59       ` Russell King - ARM Linux
2014-09-26 17:07         ` Kees Cook
2014-09-18 19:19 ` [PATCH v6 8/8] ARM: mm: allow text and rodata sections to be read-only Kees Cook
2014-09-26  5:58 ` [PATCH v6 0/8] arm: support CONFIG_RODATA Kees Cook
2014-09-26 11:21   ` Will Deacon

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=20140926114239.GM5182@n2100.arm.linux.org.uk \
    --to=linux@arm.linux.org.uk \
    --cc=linux-arm-kernel@lists.infradead.org \
    /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).