Re: [PATCH] mm/mprotect: allow unfaulted VMAs to be unaccounted on mprotect()

From: David Hildenbrand
Date: Tue Jun 27 2023 - 05:15:07 EST


On 27.06.23 10:49, Lorenzo Stoakes wrote:
On Tue, Jun 27, 2023 at 08:59:33AM +0200, David Hildenbrand wrote:
Hi all,

On 27.06.23 08:28, Vlastimil Babka wrote:
On 6/26/23 22:46, Lorenzo Stoakes wrote:
When mprotect() is used to make unwritable VMAs writable, they have the
VM_ACCOUNT flag applied and memory accounted accordingly.

If the VMA has had no pages faulted in and is then made unwritable once
again, it will remain accounted for, despite not being capable of extending
memory usage.

Consider:-

ptr = mmap(NULL, page_size * 3, PROT_READ, MAP_ANON | MAP_PRIVATE, -1, 0);
mprotect(ptr + page_size, page_size, PROT_READ | PROT_WRITE);
mprotect(ptr + page_size, page_size, PROT_READ);

In the original Mike's example there were actual pages populated, in that
case we still won't merge the vma's, right? Guess that can't be helped.


I am clearly missing the motivation for this patch: above is a artificial
reproducer that I cannot really imagine being relevant in practice.

I cc'd you on this patch exactly because I knew you'd scrutinise it
greatly :)


Yeah, and that needs time and you have to motivate me :)

Well the motivator for the initial investigation was rppt playing with
R[WO]X (this came from an #mm irc conversation), however in his case he
will be mapping pages between the two.

And that's the scenario I think we care about in practice (actually accessing memory).


(apologies to rppt, I forgot to add the Reported-By...)


So is there any sane workload that does random mprotect() without even
touching memory once? Sure, fuzzing, ... artificial reproducers ... but is
there any real-life problem we're solving here?

IOW, why did you (Lorenzo) invest time optimizing for this andcrafting this
patch and why should reviewer invest time to understand if it's correct? :)


So why I (that Stoakes guy) invested time here was, well I had chased down
the issue for rppt out of curiosity, and 'proved' the point by making
essentially this patch.

I dug into it further and (as the patch message aludes to) have convinced
myself that this is safe, so essentially why NOT submit it :)

In real-use scenarios, yes fuzzers are a thing, but what comes to mind more
immediately is a process that maps a big chunk of virtual memory PROT_NONE
and uses that as part of an internal allocator.

If the process then allocates memory from this chunk (mprotect() ->
PROT_READ | PROT_WRITE), which then gets freed without being used
(mprotect() -> PROT_NONE) we hit the issue. For OVERCOMMIT_NEVER this could
become quite an issue more so than the VMA fragmentation.

Using mprotect() when allocating/freeing memory in an allocator is already horribly harmful for performance (well, and the #VMAs), so I don't think that scenario is relevant in practice.

What some allocators (iirc even glibc) do is reserve a bigger area with PROT_NONE and grow the accessible part slowly on demand, discarding freed memory using MADV_DONTNEED. So you essentially end up with two VMAs -- one completely accessible, one completely inaccessible.

They don't use mprotect() because:
(a) It's bad for performance
(b) It might increase the #VMAs

There is efence, but I remember it simply does mmap()+munmap() and runs into VMA limits easily just by relying on a lot of mappings.



In addition, I think a user simply doing the artificial test above would
find the split remaining quite confusing, and somebody debugging some code
like this would equally wonder why it happened, so there is benefit in
clarity too (they of course observing the VMA fragmentation from the
perspective of /proc/$pid/[s]maps).

My answer would have been "memory gets commited the first time we allow write access, and that wasn't the case for all memory in that range".


Now, take your example above and touch the memory.


ptr = mmap(NULL, page_size * 3, PROT_READ, MAP_ANON | MAP_PRIVATE, -1, 0);
mprotect(ptr + page_size, page_size, PROT_READ | PROT_WRITE);
*(ptr + page_size) = 1;
mprotect(ptr + page_size, page_size, PROT_READ);


And we'll not merge the VMAs.

Which, at least to me, makes existing handling more consistent.

And users could rightfully wonder "why isn't it getting merged". And the answer would be the same: "memory gets commited the first time we allow write access, and that wasn't the case for all memory in that range".


I believe given we hold a very strong lock (write on mm->mmap_lock) and
that vma->anon_vma being NULL really does seem to imply no pages have been
allocated that this is therefore a safe thing to do and worthwhile.

Do we have to care about the VMA locks now that pagefaults can be served without the mmap_lock in write mode?

[...]

So in practice programs will likely do the PROT_WRITE in order to actually
populate the area, so this won't trigger as I commented above. But it can
still help in some cases and is cheap to do, so:

IMHO we should much rather look into getting hugetlb ranges merged. Mt
recollection is that we'll never end up merging hugetlb VMAs once split.

I'm not sure how that's relevant to fragmented non-hugetlb VMAs though?

It's a VMA merging issue that can be hit in practice, so I raised it.


No strong opinion from my side, just my 2 cents reading the patch description and wondering "why do we even invest time thinking about this case" -- and eventually make handling less consistent IMHO (see above).

--
Cheers,

David / dhildenb