From: Andrew Morton <akpm@linux-foundation.org>
To: Charan Teja Kalla <quic_charante@quicinc.com>
Cc: <pasha.tatashin@soleen.com>, <sjpark@amazon.de>,
<sieberf@amazon.com>, <shakeelb@google.com>,
<dhowells@redhat.com>, <willy@infradead.org>, <mhocko@suse.com>,
<vbabka@suse.cz>, <david@redhat.com>, <minchan@kernel.org>,
<linux-kernel@vger.kernel.org>, <linux-mm@kvack.org>
Subject: Re: [PATCH] mm: fix use-after free of page_ext after race with memory-offline
Date: Thu, 14 Jul 2022 18:04:18 -0700 [thread overview]
Message-ID: <20220714180418.6d546650b3e5ae745f09814d@linux-foundation.org> (raw)
In-Reply-To: <1657810063-28938-1-git-send-email-quic_charante@quicinc.com>
On Thu, 14 Jul 2022 20:17:43 +0530 Charan Teja Kalla <quic_charante@quicinc.com> wrote:
> The below is one path where race between page_ext and offline of the
> respective memory blocks will cause use-after-free on the access of
> page_ext structure.
>
> ...
>
> --- a/include/linux/page_ext.h
> +++ b/include/linux/page_ext.h
> @@ -64,6 +64,25 @@ static inline struct page_ext *page_ext_next(struct page_ext *curr)
> return next;
> }
>
> +static inline struct page_ext *get_page_ext(struct page *page)
> +{
> + struct page_ext *page_ext;
> +
> + rcu_read_lock();
If page_ext.h is to call rcu functions then it will need to include
appropriate header files.
> + page_ext = lookup_page_ext(page);
> + if (!page_ext) {
> + rcu_read_unlock();
> + return NULL;
> + }
> +
> + return page_ext;
> +}
> +
> +static inline void put_page_ext(void)
> +{
> + rcu_read_unlock();
> +}
Better names would be page_ext_get() and page_ext_put(). The rest of
the page_ext API appears to have got this right, so let's not mess that
up.
Also, these aren't really get and put functions - page_ext doesn't have
a refcount. But I can't immediately think of a name that better
communicates what we're doing here so I guess get and put will do.
And are we able to add some comments here explaining why these
functions exist and what they do?
> #else /* !CONFIG_PAGE_EXTENSION */
> struct page_ext;
Are you sure we didn't need CONFIG_PAGE_EXTENSION=n stubs for these two
functions?
next prev parent reply other threads:[~2022-07-15 1:04 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-07-14 14:47 Charan Teja Kalla
2022-07-15 1:04 ` Andrew Morton [this message]
2022-07-15 12:32 ` Charan Teja Kalla
2022-07-18 6:11 ` Pavan Kondeti
2022-07-18 13:15 ` Charan Teja Kalla
2022-07-18 11:50 ` Michal Hocko
2022-07-18 13:58 ` Charan Teja Kalla
2022-07-18 14:54 ` Michal Hocko
2022-07-19 15:12 ` Charan Teja Kalla
2022-07-19 15:43 ` Michal Hocko
2022-07-19 15:54 ` David Hildenbrand
2022-07-20 15:08 ` Charan Teja Kalla
2022-07-20 15:22 ` Michal Hocko
2022-07-20 8:21 ` Pavan Kondeti
2022-07-20 9:10 ` Michal Hocko
2022-07-20 10:43 ` Charan Teja Kalla
2022-07-20 11:13 ` Michal Hocko
2022-07-19 15:19 ` David Hildenbrand
2022-07-19 15:37 ` Michal Hocko
2022-07-19 15:50 ` David Hildenbrand
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=20220714180418.6d546650b3e5ae745f09814d@linux-foundation.org \
--to=akpm@linux-foundation.org \
--cc=david@redhat.com \
--cc=dhowells@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=mhocko@suse.com \
--cc=minchan@kernel.org \
--cc=pasha.tatashin@soleen.com \
--cc=quic_charante@quicinc.com \
--cc=shakeelb@google.com \
--cc=sieberf@amazon.com \
--cc=sjpark@amazon.de \
--cc=vbabka@suse.cz \
--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