From: "David Hildenbrand (Arm)" <david@kernel.org>
To: Rik van Riel <riel@surriel.com>
Cc: Andrew Morton <akpm@linux-foundation.org>,
Lorenzo Stoakes <ljs@kernel.org>,
"Liam R. Howlett" <liam@infradead.org>,
Vlastimil Babka <vbabka@kernel.org>,
Mike Rapoport <rppt@kernel.org>,
Suren Baghdasaryan <surenb@google.com>,
Michal Hocko <mhocko@suse.com>,
linux-mm@kvack.org, linux-kernel@vger.kernel.org
Subject: Re: [RFC PATCH v3] mm/cma: don't release CMA pages still in use
Date: Thu, 20 Aug 2026 20:16:13 +0200 [thread overview]
Message-ID: <d4d83ba5-d9b2-436f-b85f-d0b05008bcf2@kernel.org> (raw)
In-Reply-To: <20260811132045.5f114772@fangorn>
On 8/11/26 19:20, Rik van Riel wrote:
> When a driver calls dma_free_contiguous() before quiescing DMA, the
> page still has a reference from the device. put_page_testzero() there
> returns false, WARN fires, but the code proceeds to
> free_contig_frozen_range() putting a live page onto buddy and clearing
> the bitmap. A subsequent allocation can hand the same PFN to a new
> owner while the original holder still references it.
>
> A concurrent put_page() that drops the last reference between the
> testzero loop and free_contig_frozen_range() can double-queue the page
> via page->lru, corrupting buddy lists.
>
> Avoid the corruption by not freeing a CMA region if any of the
> pages inside are still in use.
>
> Make it explicit in the warning that the driver allowed a leak.
>
> Fixes: 9bda131c6093 ("mm: cma: add cma_alloc_frozen{_compound}()")
> Link: https://lore.kernel.org/linux-mm/20260809210608.06b5ccb9@fangorn/ [v1]
> Link: https://lore.kernel.org/linux-mm/20260810122737.030f8452@fangorn/ [v2]
> Cc: stable@vger.kernel.org
As discussed, I don't like stable here. Fixes is debatable (code was more robust
before 9bda131c6093).
Code that actually triggers this is the problematic code, this here is rather
making the code more robust for buggy drivers.
> Signed-off-by: Rik van Riel <riel@surriel.com>
> ---
> v3:
> - simplify things by simply leaking the CMA range, drivers should not
> call cma_release() while the space is still in use (David Hildenbrand)
>
> mm/cma.c | 9 ++++++---
> 1 file changed, 6 insertions(+), 3 deletions(-)
>
> diff --git a/mm/cma.c b/mm/cma.c
> index a13ce4999b39..c1425f25c39b 100644
> --- a/mm/cma.c
> +++ b/mm/cma.c
> @@ -1018,7 +1018,7 @@ bool cma_release(struct cma *cma, const struct page *pages,
> unsigned long count)
> {
> struct cma_memrange *cmr;
> - unsigned long ret = 0;
> + unsigned long leaked = 0;
> unsigned long i, pfn;
>
> cmr = find_cma_memrange(cma, pages, count);
> @@ -1027,9 +1027,12 @@ bool cma_release(struct cma *cma, const struct page *pages,
>
> pfn = page_to_pfn(pages);
> for (i = 0; i < count; i++, pfn++)
> - ret += !put_page_testzero(pfn_to_page(pfn));
> + leaked += !put_page_testzero(pfn_to_page(pfn));
>
> - WARN(ret, "%lu pages are still in use!\n", ret);
> + if (leaked) {
> + WARN(1, "%lu pages are still in use, not freeing CMA region!\n", leaked);
> + return true;
> + }
>
> __cma_release_frozen(cma, cmr, pages, count);
>
Okay, that will leave the frozen and the CMA bits remains set.
It's a bit inconsistent, because pages the buggy driver will release later will
end up in the buddy, whereby pages we just freed will not end up in the buddy.
We could consider the following instead:
leaked += !page_ref_freeze(pfn_to_page(pfn), 1);
(I hope I got that conditional right)
Then we will just consistently leak all pages (keeping them allocated with a
refcount of 1).
Oh, and it nicely matches the "__cma_release_frozen" terminology later ;)
(on a related note, the code in general looks a bit shaky regarding speculative
references, but we saw no reports so far ... it will all get clearer once more
code is converted to use frozen pages so we won't even run into this)
--
Cheers,
David
prev parent reply other threads:[~2026-08-20 18:16 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-11 17:20 Rik van Riel
2026-08-20 18:16 ` David Hildenbrand (Arm) [this message]
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=d4d83ba5-d9b2-436f-b85f-d0b05008bcf2@kernel.org \
--to=david@kernel.org \
--cc=akpm@linux-foundation.org \
--cc=liam@infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=ljs@kernel.org \
--cc=mhocko@suse.com \
--cc=riel@surriel.com \
--cc=rppt@kernel.org \
--cc=surenb@google.com \
--cc=vbabka@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®