linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* Re: [PATCH v10] mm, hugetlbfs: Allow for "high" userspace addresses
       [not found] ` <20220415150929.a62cbad83c22d6304560f626@linux-foundation.org>
@ 2022-04-16  6:26   ` Christophe Leroy
  2022-04-19 17:41     ` Catalin Marinas
  0 siblings, 1 reply; 2+ messages in thread
From: Christophe Leroy @ 2022-04-16  6:26 UTC (permalink / raw)
  To: Andrew Morton, Catalin Marinas
  Cc: linux-kernel@vger.kernel.org, linux-mm@kvack.org, Steve Capper,
	Will Deacon, stable@vger.kernel.org, Linux ARM

Hi Catalin,

Le 16/04/2022 à 00:09, Andrew Morton a écrit :
> On Fri, 15 Apr 2022 16:45:13 +0200 Christophe Leroy <christophe.leroy@csgroup.eu> wrote:
> 
>> This is a fix for commit f6795053dac8 ("mm: mmap: Allow for "high"
>> userspace addresses") for hugetlb.
>>
>> This patch adds support for "high" userspace addresses that are
>> optionally supported on the system and have to be requested via a hint
>> mechanism ("high" addr parameter to mmap).
>>
>> Architectures such as powerpc and x86 achieve this by making changes to
>> their architectural versions of hugetlb_get_unmapped_area() function.
>> However, arm64 uses the generic version of that function.
>>
>> So take into account arch_get_mmap_base() and arch_get_mmap_end() in
>> hugetlb_get_unmapped_area(). To allow that, move those two macros
>> out of mm/mmap.c into include/linux/sched/mm.h
>>
>> If these macros are not defined in architectural code then they default
>> to (TASK_SIZE) and (base) so should not introduce any behavioural
>> changes to architectures that do not define them.
>>
>> For the time being, only ARM64 is affected by this change.
>>
>> >From Catalin (ARM64):
>>    We should have fixed hugetlb_get_unmapped_area() as well when we
>> added support for 52-bit VA. The reason for commit f6795053dac8 was to
>> prevent normal mmap() from returning addresses above 48-bit by default
>> as some user-space had hard assumptions about this.
>>
>> It's a slight ABI change if you do this for hugetlb_get_unmapped_area()
>> but I doubt anyone would notice. It's more likely that the current
>> behaviour would cause issues, so I'd rather have them consistent.
> 
> I'm struggling to understand the need for a -stable backport from the
> above text.
> 
> Could we please get a simple statement of the end-user visible effects
> of the shortcoming?  Target audience is -stable tree maintainers, and
> people who we've never heard of who will be wondering whether they should
> add this to their organization's older kernel.

Catalin, can you help answering this question ? It was your 
recommendation to tag this patch for stable in 
https://patchwork.ozlabs.org/project/linuxppc-dev/patch/db238c1ca2d46e33c57328f8d450f2563e92f8c2.1639736449.git.christophe.leroy@csgroup.eu/

> 
>>   fs/hugetlbfs/inode.c     | 9 +++++----
>>   include/linux/sched/mm.h | 8 ++++++++
>>   mm/mmap.c                | 8 --------
>>   3 files changed, 13 insertions(+), 12 deletions(-)
> 
> I'm a bit surprised that this has reached version 10!  Was it really
> that tricky?
> 

Well, that's the series it was part of that has reached v10. This patch 
was introduced in the series in v6

v6: 
https://patchwork.ozlabs.org/project/linuxppc-dev/patch/db238c1ca2d46e33c57328f8d450f2563e92f8c2.1639736449.git.christophe.leroy@csgroup.eu/
v7: 
https://patchwork.ozlabs.org/project/linuxppc-dev/patch/6c95091eab9f58cee58da3762a4dc4c56ab700e7.1642752946.git.christophe.leroy@csgroup.eu/
v8: 
https://patchwork.ozlabs.org/project/linuxppc-dev/patch/c234ceaf81ff37447fec5c9813d4ba5fc472a355.1646847562.git.christophe.leroy@csgroup.eu/
v9: 
https://patchwork.ozlabs.org/project/linuxppc-dev/patch/3bb944642140841c065f1cd6eae73f084fc026d2.1649401201.git.christophe.leroy@csgroup.eu/

Thanks
Christophe
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH v10] mm, hugetlbfs: Allow for "high" userspace addresses
  2022-04-16  6:26   ` [PATCH v10] mm, hugetlbfs: Allow for "high" userspace addresses Christophe Leroy
@ 2022-04-19 17:41     ` Catalin Marinas
  0 siblings, 0 replies; 2+ messages in thread
From: Catalin Marinas @ 2022-04-19 17:41 UTC (permalink / raw)
  To: Christophe Leroy
  Cc: Andrew Morton, linux-kernel@vger.kernel.org, linux-mm@kvack.org,
	Steve Capper, Will Deacon, stable@vger.kernel.org, Linux ARM

On Sat, Apr 16, 2022 at 06:26:42AM +0000, Christophe Leroy wrote:
> Le 16/04/2022 à 00:09, Andrew Morton a écrit :
> > On Fri, 15 Apr 2022 16:45:13 +0200 Christophe Leroy <christophe.leroy@csgroup.eu> wrote:
> > 
> >> This is a fix for commit f6795053dac8 ("mm: mmap: Allow for "high"
> >> userspace addresses") for hugetlb.
> >>
> >> This patch adds support for "high" userspace addresses that are
> >> optionally supported on the system and have to be requested via a hint
> >> mechanism ("high" addr parameter to mmap).
> >>
> >> Architectures such as powerpc and x86 achieve this by making changes to
> >> their architectural versions of hugetlb_get_unmapped_area() function.
> >> However, arm64 uses the generic version of that function.
> >>
> >> So take into account arch_get_mmap_base() and arch_get_mmap_end() in
> >> hugetlb_get_unmapped_area(). To allow that, move those two macros
> >> out of mm/mmap.c into include/linux/sched/mm.h
> >>
> >> If these macros are not defined in architectural code then they default
> >> to (TASK_SIZE) and (base) so should not introduce any behavioural
> >> changes to architectures that do not define them.
> >>
> >> For the time being, only ARM64 is affected by this change.
> >>
> >> >From Catalin (ARM64):
> >>    We should have fixed hugetlb_get_unmapped_area() as well when we
> >> added support for 52-bit VA. The reason for commit f6795053dac8 was to
> >> prevent normal mmap() from returning addresses above 48-bit by default
> >> as some user-space had hard assumptions about this.
> >>
> >> It's a slight ABI change if you do this for hugetlb_get_unmapped_area()
> >> but I doubt anyone would notice. It's more likely that the current
> >> behaviour would cause issues, so I'd rather have them consistent.
> > 
> > I'm struggling to understand the need for a -stable backport from the
> > above text.
> > 
> > Could we please get a simple statement of the end-user visible effects
> > of the shortcoming?  Target audience is -stable tree maintainers, and
> > people who we've never heard of who will be wondering whether they should
> > add this to their organization's older kernel.
> 
> Catalin, can you help answering this question ? It was your 
> recommendation to tag this patch for stable in 
> https://patchwork.ozlabs.org/project/linuxppc-dev/patch/db238c1ca2d46e33c57328f8d450f2563e92f8c2.1639736449.git.christophe.leroy@csgroup.eu/

My reasoning was that we should have made hugetlb_get_unmapped_area()
consistent with arch_get_unmapped_area() since commit f6795053dac8 ("mm:
mmap: Allow for "high" userspace addresses").

Basically when arm64 gained support for 52-bit addresses we did not want
user-space calling mmap() to suddenly get such high addresses, otherwise
we could have inadvertently broken some programs (similar behaviour to
x86 here). Hence we added commit f6795053dac8. But we missed hugetlbfs
which could still get such high mmap() addresses. So in theory that's a
potential regression that should have bee addressed at the same time
as commit f6795053dac8 (and before arm64 enabled 52-bit addresses).

-- 
Catalin

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-04-19 17:46 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <ab847b6edb197bffdfe189e70fb4ac76bfe79e0d.1650033747.git.christophe.leroy@csgroup.eu>
     [not found] ` <20220415150929.a62cbad83c22d6304560f626@linux-foundation.org>
2022-04-16  6:26   ` [PATCH v10] mm, hugetlbfs: Allow for "high" userspace addresses Christophe Leroy
2022-04-19 17:41     ` Catalin Marinas

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).