From: Joe Mario <jmario@redhat.com>
To: Matthew Wilcox <willy@infradead.org>, Waiman Long <longman@redhat.com>
Cc: Andrew Morton <akpm@linux-foundation.org>,
linux-mm@kvack.org, linux-kernel@vger.kernel.org,
Barry Marson <bmarson@redhat.com>,
Rafael Aquini <aquini@redhat.com>
Subject: Re: [PATCH] mm/mmap: Map MAP_STACK to VM_STACK
Date: Wed, 19 Apr 2023 12:00:26 -0400 [thread overview]
Message-ID: <10e453df-6911-e40d-8758-66caf9c59dbe@redhat.com> (raw)
In-Reply-To: <ZEAEDqVhS0qz6Wx1@casper.infradead.org>
On 4/19/23 11:09 AM, Matthew Wilcox wrote:
> On Wed, Apr 19, 2023 at 11:07:04AM -0400, Waiman Long wrote:
>> On 4/18/23 23:46, Matthew Wilcox wrote:
>>> On Tue, Apr 18, 2023 at 09:16:37PM -0400, Waiman Long wrote:
>>>> 1) App runs creating lots of threads.
>>>> 2) It mmap's 256K pages of anonymous memory.
>>>> 3) It writes executable code to that memory.
>>>> 4) It calls mprotect() with PROT_EXEC on that memory so
>>>> it can subsequently execute the code.
>>>>
>>>> The above mprotect() will fail if the mmap'd region's VMA gets merged with
>>>> the VMA for one of the thread stacks. That's because the default RHEL
>>>> SELinux policy is to not allow executable stacks.
>>> By the way, this is a daft policy. The policy you really want is
>>> EXEC|WRITE is not allowed. A non-writable stack is useless, so it's
>>> actually a superset of your current policy. Forbidding _simultaneous_
>>> write and executable is just good programming. This way, you don't need
>>> to care about the underlying VMA's current permissions, you just need
>>> to do:
>>>
>>> if ((prot & (PROT_EXEC|PROT_WRITE)) == (PROT_EXEC|PROT_WRITE))
>>> return -EACCESS;
>>
>> I am not totally sure if the application changes the VMA to read-only first.
>> Even if it does that, it highlights another possible issue when an anonymous
>> VMA is merged with a stack VMA. Either the mprotect() to write-protect the
>> VMA will fail or the application will segfault if it writes stuff to the
>> stack. This particular issue is not related to SELinux. It provides another
>> good idea why we should avoid merging stack VMA to anonymous VMA.
>
> mprotect will split the VMA into two VMAs, one that is
> PROT_READ|PROT_WRITE and one the is PROT_READ|PROT_EXEC.
>
But in this case, the latter still has PROT_WRITE.
This was reported by a large data analytics customer. They started getting infrequent random crashes in code they haven't touched in 10 years.
One of the threads in their program mmaps a large region using PROT_READ|PROT_WRITE, and that region just happens to be merged with the thread's stack.
Then they copy a small snipit of code to a location somewhere within that mapped region. For the one page that contains that code, they mprotect it to PROT_READ|PROT_WRITE|PROT_EXEC. I recall they're still reading and writing data elsewhere on that page.
Joe
next prev parent reply other threads:[~2023-04-19 16:00 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-04-18 21:02 Waiman Long
2023-04-18 21:18 ` Andrew Morton
2023-04-19 1:16 ` Waiman Long
2023-04-19 1:36 ` Hugh Dickins
2023-04-19 1:45 ` Waiman Long
2023-04-19 3:24 ` Matthew Wilcox
2023-04-19 14:38 ` Paul Moore
2023-04-19 3:46 ` Matthew Wilcox
2023-04-19 15:07 ` Waiman Long
2023-04-19 15:09 ` Matthew Wilcox
2023-04-19 16:00 ` Joe Mario [this message]
2023-04-19 23:21 ` Jane Chu
2023-04-20 0:00 ` Jane Chu
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=10e453df-6911-e40d-8758-66caf9c59dbe@redhat.com \
--to=jmario@redhat.com \
--cc=akpm@linux-foundation.org \
--cc=aquini@redhat.com \
--cc=bmarson@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=longman@redhat.com \
--cc=willy@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