* Re: [patch][resend] MAP_HUGETLB munmap fails with size not 2MB aligned
[not found] ` <alpine.DEB.2.10.1503261221470.5119@davide-lnx3>
@ 2015-03-27 9:45 ` Vlastimil Babka
[not found] ` <alpine.DEB.2.10.1503261250430.9410@chino.kir.corp.google.com>
1 sibling, 0 replies; 2+ messages in thread
From: Vlastimil Babka @ 2015-03-27 9:45 UTC (permalink / raw)
To: Davide Libenzi, David Rientjes
Cc: Hugh Dickins, Andrew Morton, KOSAKI Motohiro, Andrea Arcangeli,
Joern Engel, Jianguo Wu, Eric B Munson,
linux-mm-Bw31MaZKKs3YtjvyW6yDsg, Linux Kernel Mailing List,
linux-man-u79uwXL29TY76Z2rM5mHXA, Linux API, Michael Kerrisk
On 03/26/2015 08:39 PM, Davide Libenzi wrote:
> On Thu, 26 Mar 2015, David Rientjes wrote:
>
>> Yes, this munmap() behavior of lengths <= hugepage_size - PAGE_SIZE for a
>> hugetlb vma is long standing and there may be applications that break as a
>> result of changing the behavior: a database that reserves all allocated
>> hugetlb memory with mmap() so that it always has exclusive access to those
>> hugepages, whether they are faulted or not, and maintains its own hugepage
>> pool (which is common), may test the return value of munmap() and depend
>> on it returning -EINVAL to determine if it is freeing memory that was
>> either dynamically allocated or mapped from the hugetlb reserved pool.
>
> You went a long way to create such a case.
> But, in your case, that application will erroneously considering hugepage
> mmaped memory, as dynamically allocated, since it will always get EINVAL,
> unless it passes an aligned size. Aligned size, which a fix like the one
> posted in the patch will still leave as success.
> OTOH, an application, which might be more common than the one you posted,
> which calls munmap() to release a pointer which it validly got from a
> previous mmap(), will leak huge pages as all the issued munmaps will fail.
>
>
>> If we were to go back in time and decide this when the munmap() behavior
>> for hugetlb vmas was originally introduced, that would be valid. The
>> problem is that it could lead to userspace breakage and that's a
>> non-starter.
>>
>> What we can do is improve the documentation and man-page to clearly
>> specify the long-standing behavior so that nobody encounters unexpected
>> results in the future.
>
> This way you will leave the mmap API with broken semantics.
> In any case, I am done arguing.
> I will leave to Andrew to sort it out, and to Michael Kerrisk to update
> the mmap man pages with the new funny behaviour.
+ CC's
You know that people don't always magically CC themselves, or read all of
lkml/linux-mm? :)
>
>
> - Davide
>
>
> --
> To unsubscribe, send a message with 'unsubscribe linux-mm' in
> the body to majordomo-Bw31MaZKKs0EbZ0PF+XxCw@public.gmane.org For more info on Linux MM,
> see: http://www.linux-mm.org/ .
> Don't email: <a href=mailto:"dont-Bw31MaZKKs3YtjvyW6yDsg@public.gmane.org"> email-Bw31MaZKKs3YtjvyW6yDsg@public.gmane.org </a>
>
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [patch][resend] MAP_HUGETLB munmap fails with size not 2MB aligned
[not found] ` <alpine.DEB.2.10.1503261250430.9410-X6Q0R45D7oAcqpCFd4KODRPsWskHk0ljAL8bYrjMMd8@public.gmane.org>
@ 2015-03-27 9:47 ` Vlastimil Babka
0 siblings, 0 replies; 2+ messages in thread
From: Vlastimil Babka @ 2015-03-27 9:47 UTC (permalink / raw)
To: David Rientjes, Davide Libenzi
Cc: Hugh Dickins, Andrew Morton, KOSAKI Motohiro, Andrea Arcangeli,
Joern Engel, Jianguo Wu, Eric B Munson,
linux-mm-Bw31MaZKKs3YtjvyW6yDsg, Linux Kernel Mailing List,
Linux API, linux-man-u79uwXL29TY76Z2rM5mHXA, Michael Kerrisk
Might be too late in this thread, but in case you are going to continue and/or
repost:
[CC += linux-api-u79uwXL29TY76Z2rM5mHXA@public.gmane.org]
(also linux-man and Michael to match my other reply)
Since this is a kernel-user-space API change, please CC linux-api@. The
kernel source file Documentation/SubmitChecklist notes that all Linux kernel
patches that change userspace interfaces should be CCed to
linux-api-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, so that the various parties who are interested in API
changes are informed. For further information, see
https://www.kernel.org/doc/man-pages/linux-api-ml.html
On 03/26/2015 09:03 PM, David Rientjes wrote:
> On Thu, 26 Mar 2015, Davide Libenzi wrote:
>
>> > Yes, this munmap() behavior of lengths <= hugepage_size - PAGE_SIZE for a
>> > hugetlb vma is long standing and there may be applications that break as a
>> > result of changing the behavior: a database that reserves all allocated
>> > hugetlb memory with mmap() so that it always has exclusive access to those
>> > hugepages, whether they are faulted or not, and maintains its own hugepage
>> > pool (which is common), may test the return value of munmap() and depend
>> > on it returning -EINVAL to determine if it is freeing memory that was
>> > either dynamically allocated or mapped from the hugetlb reserved pool.
>>
>> You went a long way to create such a case.
>> But, in your case, that application will erroneously considering hugepage
>> mmaped memory, as dynamically allocated, since it will always get EINVAL,
>> unless it passes an aligned size. Aligned size, which a fix like the one
>> posted in the patch will still leave as success.
>
> There was a patch proposed last week to add reserved pools to the
> hugetlbfs mount option specifically for the case where a large database
> wants sole reserved access to the hugepage pool. This is why hugetlbfs
> pages become reserved on mmap(). In that case, the database never wants
> to do munmap() and instead maintains its own hugepage pool.
>
> That makes the usual database case, mmap() all necessary hugetlb pages to
> reserve them, even easier since they have historically had to maintain
> this pool amongst various processes.
>
> Is there a process out there that tests for munmap(ptr) == EINVAL and, if
> true, returns ptr to its hugepage pool? I can't say for certain that none
> exist, that's why the potential for breakage exists.
>
>> OTOH, an application, which might be more common than the one you posted,
>> which calls munmap() to release a pointer which it validly got from a
>> previous mmap(), will leak huge pages as all the issued munmaps will fail.
>>
>
> That application would have to be ignoring an EINVAL return value.
>
>> > If we were to go back in time and decide this when the munmap() behavior
>> > for hugetlb vmas was originally introduced, that would be valid. The
>> > problem is that it could lead to userspace breakage and that's a
>> > non-starter.
>> >
>> > What we can do is improve the documentation and man-page to clearly
>> > specify the long-standing behavior so that nobody encounters unexpected
>> > results in the future.
>>
>> This way you will leave the mmap API with broken semantics.
>> In any case, I am done arguing.
>> I will leave to Andrew to sort it out, and to Michael Kerrisk to update
>> the mmap man pages with the new funny behaviour.
>>
>
> The behavior is certainly not new, it has always been the case for
> munmap() on hugetlb vmas.
>
> In a strict POSIX interpretation, it refers only to pages in the sense of
> what is returned by sysconf(_SC_PAGESIZE). Such vmas are not backed by
> any pages of size sysconf(_SC_PAGESIZE), so this behavior is undefined.
> It would be best to modify the man page to explicitly state this for
> MAP_HUGETLB.
>
> --
> To unsubscribe, send a message with 'unsubscribe linux-mm' in
> the body to majordomo-Bw31MaZKKs0EbZ0PF+XxCw@public.gmane.org For more info on Linux MM,
> see: http://www.linux-mm.org/ .
> Don't email: <a href=mailto:"dont-Bw31MaZKKs3YtjvyW6yDsg@public.gmane.org"> email-Bw31MaZKKs3YtjvyW6yDsg@public.gmane.org </a>
>
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-03-27 9:47 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <alpine.DEB.2.10.1410221518160.31326@davide-lnx3>
[not found] ` <alpine.LSU.2.11.1503251708530.5592@eggly.anvils>
[not found] ` <alpine.DEB.2.10.1503251754320.26501@davide-lnx3>
[not found] ` <alpine.DEB.2.10.1503251938170.16714@chino.kir.corp.google.com>
[not found] ` <alpine.DEB.2.10.1503260431290.2755@mbplnx>
[not found] ` <alpine.DEB.2.10.1503261201440.8238@chino.kir.corp.google.com>
[not found] ` <alpine.DEB.2.10.1503261221470.5119@davide-lnx3>
2015-03-27 9:45 ` [patch][resend] MAP_HUGETLB munmap fails with size not 2MB aligned Vlastimil Babka
[not found] ` <alpine.DEB.2.10.1503261250430.9410@chino.kir.corp.google.com>
[not found] ` <alpine.DEB.2.10.1503261250430.9410-X6Q0R45D7oAcqpCFd4KODRPsWskHk0ljAL8bYrjMMd8@public.gmane.org>
2015-03-27 9:47 ` Vlastimil Babka
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).