All of lore.kernel.org
 help / color / mirror / Atom feed
From: Christoph Hellwig <hch@infradead.org>
To: Jann Horn <jannh@google.com>
Cc: Catalin Marinas <catalin.marinas@arm.com>,
	linuxppc-dev@lists.ozlabs.org, linux-kernel@vger.kernel.org,
	Christoph Hellwig <hch@infradead.org>,
	linux-mm@kvack.org, Khalid Aziz <khalid.aziz@oracle.com>,
	Dave Kleikamp <shaggy@linux.vnet.ibm.com>,
	Paul Mackerras <paulus@samba.org>,
	sparclinux@vger.kernel.org,
	Anthony Yznaga <anthony.yznaga@oracle.com>,
	Andrew Morton <akpm@linux-foundation.org>,
	Will Deacon <will@kernel.org>,
	"David S. Miller" <davem@davemloft.net>,
	linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH 1/2] mm/mprotect: Call arch_validate_prot under mmap_lock and with length
Date: Wed, 7 Oct 2020 13:35:44 +0100	[thread overview]
Message-ID: <20201007123544.GA11433@infradead.org> (raw)
In-Reply-To: <20201007073932.865218-1-jannh@google.com>

On Wed, Oct 07, 2020 at 09:39:31AM +0200, Jann Horn wrote:
> diff --git a/arch/powerpc/kernel/syscalls.c b/arch/powerpc/kernel/syscalls.c
> index 078608ec2e92..b1fabb97d138 100644
> --- a/arch/powerpc/kernel/syscalls.c
> +++ b/arch/powerpc/kernel/syscalls.c
> @@ -43,7 +43,7 @@ static inline long do_mmap2(unsigned long addr, size_t len,
>  {
>  	long ret = -EINVAL;
>  
> -	if (!arch_validate_prot(prot, addr))
> +	if (!arch_validate_prot(prot, addr, len))

This call isn't under mmap lock.  I also find it rather weird as the
generic code only calls arch_validate_prot from mprotect, only powerpc
also calls it from mmap.

This seems to go back to commit ef3d3246a0d0
("powerpc/mm: Add Strong Access Ordering support")

WARNING: multiple messages have this Message-ID (diff)
From: Christoph Hellwig <hch@infradead.org>
To: Jann Horn <jannh@google.com>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>,
	Catalin Marinas <catalin.marinas@arm.com>,
	linuxppc-dev@lists.ozlabs.org, linux-kernel@vger.kernel.org,
	Christoph Hellwig <hch@infradead.org>,
	linux-mm@kvack.org, Khalid Aziz <khalid.aziz@oracle.com>,
	Dave Kleikamp <shaggy@linux.vnet.ibm.com>,
	Paul Mackerras <paulus@samba.org>,
	Michael Ellerman <mpe@ellerman.id.au>,
	sparclinux@vger.kernel.org,
	Anthony Yznaga <anthony.yznaga@oracle.com>,
	Andrew Morton <akpm@linux-foundation.org>,
	Will Deacon <will@kernel.org>,
	"David S. Miller" <davem@davemloft.net>,
	linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH 1/2] mm/mprotect: Call arch_validate_prot under mmap_lock and with length
Date: Wed, 07 Oct 2020 12:35:44 +0000	[thread overview]
Message-ID: <20201007123544.GA11433@infradead.org> (raw)
In-Reply-To: <20201007073932.865218-1-jannh@google.com>

On Wed, Oct 07, 2020 at 09:39:31AM +0200, Jann Horn wrote:
> diff --git a/arch/powerpc/kernel/syscalls.c b/arch/powerpc/kernel/syscalls.c
> index 078608ec2e92..b1fabb97d138 100644
> --- a/arch/powerpc/kernel/syscalls.c
> +++ b/arch/powerpc/kernel/syscalls.c
> @@ -43,7 +43,7 @@ static inline long do_mmap2(unsigned long addr, size_t len,
>  {
>  	long ret = -EINVAL;
>  
> -	if (!arch_validate_prot(prot, addr))
> +	if (!arch_validate_prot(prot, addr, len))

This call isn't under mmap lock.  I also find it rather weird as the
generic code only calls arch_validate_prot from mprotect, only powerpc
also calls it from mmap.

This seems to go back to commit ef3d3246a0d0
("powerpc/mm: Add Strong Access Ordering support")

WARNING: multiple messages have this Message-ID (diff)
From: Christoph Hellwig <hch@infradead.org>
To: Jann Horn <jannh@google.com>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>,
	Catalin Marinas <catalin.marinas@arm.com>,
	linuxppc-dev@lists.ozlabs.org, linux-kernel@vger.kernel.org,
	Christoph Hellwig <hch@infradead.org>,
	linux-mm@kvack.org, Khalid Aziz <khalid.aziz@oracle.com>,
	Dave Kleikamp <shaggy@linux.vnet.ibm.com>,
	Paul Mackerras <paulus@samba.org>,
	Michael Ellerman <mpe@ellerman.id.au>,
	sparclinux@vger.kernel.org,
	Anthony Yznaga <anthony.yznaga@oracle.com>,
	Andrew Morton <akpm@linux-foundation.org>,
	Will Deacon <will@kernel.org>,
	"David S. Miller" <davem@davemloft.net>,
	linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH 1/2] mm/mprotect: Call arch_validate_prot under mmap_lock and with length
Date: Wed, 7 Oct 2020 13:35:44 +0100	[thread overview]
Message-ID: <20201007123544.GA11433@infradead.org> (raw)
In-Reply-To: <20201007073932.865218-1-jannh@google.com>

On Wed, Oct 07, 2020 at 09:39:31AM +0200, Jann Horn wrote:
> diff --git a/arch/powerpc/kernel/syscalls.c b/arch/powerpc/kernel/syscalls.c
> index 078608ec2e92..b1fabb97d138 100644
> --- a/arch/powerpc/kernel/syscalls.c
> +++ b/arch/powerpc/kernel/syscalls.c
> @@ -43,7 +43,7 @@ static inline long do_mmap2(unsigned long addr, size_t len,
>  {
>  	long ret = -EINVAL;
>  
> -	if (!arch_validate_prot(prot, addr))
> +	if (!arch_validate_prot(prot, addr, len))

This call isn't under mmap lock.  I also find it rather weird as the
generic code only calls arch_validate_prot from mprotect, only powerpc
also calls it from mmap.

This seems to go back to commit ef3d3246a0d0
("powerpc/mm: Add Strong Access Ordering support")

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

WARNING: multiple messages have this Message-ID (diff)
From: Christoph Hellwig <hch@infradead.org>
To: Jann Horn <jannh@google.com>
Cc: "David S. Miller" <davem@davemloft.net>,
	sparclinux@vger.kernel.org,
	Andrew Morton <akpm@linux-foundation.org>,
	linux-mm@kvack.org, linux-kernel@vger.kernel.org,
	Khalid Aziz <khalid.aziz@oracle.com>,
	Christoph Hellwig <hch@infradead.org>,
	Anthony Yznaga <anthony.yznaga@oracle.com>,
	Catalin Marinas <catalin.marinas@arm.com>,
	Will Deacon <will@kernel.org>,
	linux-arm-kernel@lists.infradead.org,
	Michael Ellerman <mpe@ellerman.id.au>,
	Benjamin Herrenschmidt <benh@kernel.crashing.org>,
	Paul Mackerras <paulus@samba.org>,
	linuxppc-dev@lists.ozlabs.org,
	Dave Kleikamp <shaggy@linux.vnet.ibm.com>
Subject: Re: [PATCH 1/2] mm/mprotect: Call arch_validate_prot under mmap_lock and with length
Date: Wed, 7 Oct 2020 13:35:44 +0100	[thread overview]
Message-ID: <20201007123544.GA11433@infradead.org> (raw)
In-Reply-To: <20201007073932.865218-1-jannh@google.com>

On Wed, Oct 07, 2020 at 09:39:31AM +0200, Jann Horn wrote:
> diff --git a/arch/powerpc/kernel/syscalls.c b/arch/powerpc/kernel/syscalls.c
> index 078608ec2e92..b1fabb97d138 100644
> --- a/arch/powerpc/kernel/syscalls.c
> +++ b/arch/powerpc/kernel/syscalls.c
> @@ -43,7 +43,7 @@ static inline long do_mmap2(unsigned long addr, size_t len,
>  {
>  	long ret = -EINVAL;
>  
> -	if (!arch_validate_prot(prot, addr))
> +	if (!arch_validate_prot(prot, addr, len))

This call isn't under mmap lock.  I also find it rather weird as the
generic code only calls arch_validate_prot from mprotect, only powerpc
also calls it from mmap.

This seems to go back to commit ef3d3246a0d0
("powerpc/mm: Add Strong Access Ordering support")


  parent reply	other threads:[~2020-10-07 12:38 UTC|newest]

Thread overview: 81+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-10-07  7:39 [PATCH 1/2] mm/mprotect: Call arch_validate_prot under mmap_lock and with length Jann Horn
2020-10-07  7:39 ` Jann Horn
2020-10-07  7:39 ` Jann Horn
2020-10-07  7:39 ` Jann Horn
2020-10-07  7:39 ` [PATCH 2/2] sparc: Check VMA range in sparc_validate_prot() Jann Horn
2020-10-07  7:39   ` Jann Horn
2020-10-07  7:39   ` Jann Horn
2020-10-07  7:39   ` Jann Horn
2020-10-07 12:36   ` Christoph Hellwig
2020-10-07 12:36     ` Christoph Hellwig
2020-10-07 12:36     ` Christoph Hellwig
2020-10-07 12:36     ` Christoph Hellwig
2020-10-07 20:15   ` Khalid Aziz
2020-10-07 20:15     ` Khalid Aziz
2020-10-07 20:15     ` Khalid Aziz
2020-10-07 20:15     ` Khalid Aziz
2020-10-07 12:35 ` Christoph Hellwig [this message]
2020-10-07 12:35   ` [PATCH 1/2] mm/mprotect: Call arch_validate_prot under mmap_lock and with length Christoph Hellwig
2020-10-07 12:35   ` Christoph Hellwig
2020-10-07 12:35   ` Christoph Hellwig
2020-10-07 14:42   ` Jann Horn
2020-10-07 14:42     ` Jann Horn
2020-10-07 14:42     ` Jann Horn
2020-10-07 14:42     ` Jann Horn
2020-10-08  6:21     ` Christoph Hellwig
2020-10-08  6:21       ` Christoph Hellwig
2020-10-08  6:21       ` Christoph Hellwig
2020-10-08  6:21       ` Christoph Hellwig
2020-10-08 10:34     ` Michael Ellerman
2020-10-08 10:34       ` Michael Ellerman
2020-10-08 10:34       ` Michael Ellerman
2020-10-08 10:34       ` Michael Ellerman
2020-10-08 11:03       ` Catalin Marinas
2020-10-08 11:03         ` Catalin Marinas
2020-10-08 11:03         ` Catalin Marinas
2020-10-08 11:03         ` Catalin Marinas
2020-10-07 20:14 ` Khalid Aziz
2020-10-07 20:14   ` Khalid Aziz
2020-10-07 20:14   ` Khalid Aziz
2020-10-07 20:14   ` Khalid Aziz
2020-10-10 11:09   ` Catalin Marinas
2020-10-10 11:09     ` Catalin Marinas
2020-10-10 11:09     ` Catalin Marinas
2020-10-10 11:09     ` Catalin Marinas
2020-10-12 17:03     ` Khalid Aziz
2020-10-12 17:03       ` Khalid Aziz
2020-10-12 17:03       ` Khalid Aziz
2020-10-12 17:03       ` Khalid Aziz
2020-10-12 17:22       ` Catalin Marinas
2020-10-12 17:22         ` Catalin Marinas
2020-10-12 17:22         ` Catalin Marinas
2020-10-12 17:22         ` Catalin Marinas
2020-10-12 19:14         ` Khalid Aziz
2020-10-12 19:14           ` Khalid Aziz
2020-10-12 19:14           ` Khalid Aziz
2020-10-12 19:14           ` Khalid Aziz
2020-10-13  9:16           ` Catalin Marinas
2020-10-13  9:16             ` Catalin Marinas
2020-10-13  9:16             ` Catalin Marinas
2020-10-13  9:16             ` Catalin Marinas
2020-10-14 21:21             ` Khalid Aziz
2020-10-14 21:21               ` Khalid Aziz
2020-10-14 21:21               ` Khalid Aziz
2020-10-14 21:21               ` Khalid Aziz
2020-10-14 22:29               ` Jann Horn
2020-10-14 22:29                 ` Jann Horn
2020-10-14 22:29                 ` Jann Horn
2020-10-14 22:29                 ` Jann Horn
2020-10-15  9:05               ` Catalin Marinas
2020-10-15  9:05                 ` Catalin Marinas
2020-10-15  9:05                 ` Catalin Marinas
2020-10-15  9:05                 ` Catalin Marinas
2020-10-15 14:53                 ` Khalid Aziz
2020-10-15 14:53                   ` Khalid Aziz
2020-10-15 14:53                   ` Khalid Aziz
2020-10-15 14:53                   ` Khalid Aziz
2020-10-08 10:12 ` Catalin Marinas
2020-10-08 10:12   ` Catalin Marinas
2020-10-08 10:12   ` Catalin Marinas
2020-10-08 10:12   ` Catalin Marinas
  -- strict thread matches above, loose matches on Subject: below --
2020-10-07 10:08 kernel test robot

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=20201007123544.GA11433@infradead.org \
    --to=hch@infradead.org \
    --cc=akpm@linux-foundation.org \
    --cc=anthony.yznaga@oracle.com \
    --cc=catalin.marinas@arm.com \
    --cc=davem@davemloft.net \
    --cc=jannh@google.com \
    --cc=khalid.aziz@oracle.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=linuxppc-dev@lists.ozlabs.org \
    --cc=paulus@samba.org \
    --cc=shaggy@linux.vnet.ibm.com \
    --cc=sparclinux@vger.kernel.org \
    --cc=will@kernel.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.