lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <ef317615-3e26-4641-8141-4d3913ced47f@redhat.com>
Date: Tue, 29 Apr 2025 16:52:17 +0200
From: David Hildenbrand <david@...hat.com>
To: Petr Vaněk <arkamar@...as.cz>
Cc: linux-kernel@...r.kernel.org, Andrew Morton <akpm@...ux-foundation.org>,
 Ryan Roberts <ryan.roberts@....com>, linux-mm@...ck.org,
 stable@...r.kernel.org
Subject: Re: [PATCH 1/1] mm: Fix folio_pte_batch() overcount with zero PTEs

On 29.04.25 16:45, Petr Vaněk wrote:
> On Tue, Apr 29, 2025 at 04:29:30PM +0200, David Hildenbrand wrote:
>> On 29.04.25 16:22, Petr Vaněk wrote:
>>> folio_pte_batch() could overcount the number of contiguous PTEs when
>>> pte_advance_pfn() returns a zero-valued PTE and the following PTE in
>>> memory also happens to be zero. The loop doesn't break in such a case
>>> because pte_same() returns true, and the batch size is advanced by one
>>> more than it should be.
>>>
>>> To fix this, bail out early if a non-present PTE is encountered,
>>> preventing the invalid comparison.
>>>
>>> This issue started to appear after commit 10ebac4f95e7 ("mm/memory:
>>> optimize unmap/zap with PTE-mapped THP") and was discovered via git
>>> bisect.
>>>
>>> Fixes: 10ebac4f95e7 ("mm/memory: optimize unmap/zap with PTE-mapped THP")
>>> Cc: stable@...r.kernel.org
>>> Signed-off-by: Petr Vaněk <arkamar@...as.cz>
>>> ---
>>>    mm/internal.h | 2 ++
>>>    1 file changed, 2 insertions(+)
>>>
>>> diff --git a/mm/internal.h b/mm/internal.h
>>> index e9695baa5922..c181fe2bac9d 100644
>>> --- a/mm/internal.h
>>> +++ b/mm/internal.h
>>> @@ -279,6 +279,8 @@ static inline int folio_pte_batch(struct folio *folio, unsigned long addr,
>>>    			dirty = !!pte_dirty(pte);
>>>    		pte = __pte_batch_clear_ignored(pte, flags);
>>>    
>>> +		if (!pte_present(pte))
>>> +			break;
>>>    		if (!pte_same(pte, expected_pte))
>>>    			break;
>>
>> How could pte_same() suddenly match on a present and non-present PTE.
> 
> In the problematic case pte.pte == 0 and expected_pte.pte == 0 as well.
> pte_same() returns a.pte == b.pte -> 0 == 0. Both are non-present PTEs.

Observe that folio_pte_batch() was called *with a present pte*.

do_zap_pte_range()
	if (pte_present(ptent))
		zap_present_ptes()
			folio_pte_batch()

How can we end up with an expected_pte that is !present, if it is based 
on the provided pte that *is present* and we only used pte_advance_pfn() 
to advance the pfn?

-- 
Cheers,

David / dhildenb


Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ