On riscv, mmap currently returns an address from the largest address space that can fit entirely inside of the hint address. This makes it such that the hint address is almost never returned. This patch raises the mappable area up to and including the hint address. This allows mmap to often return the hint address, which allows a performance improvement over searching for a valid address as well as making the behavior more similar to other architectures.
Note that a previous patch introduced stronger semantics compared to other architectures for riscv mmap. On riscv, mmap will not use bits in the upper bits of the virtual address depending on the hint address. On other architectures, a random address is returned in the address space requested. On all architectures the hint address will be returned if it is available. This allows riscv applications to configure how many bits in the virtual address should be left empty. This has the two benefits of being able to request address spaces that are smaller than the default and doesn't require the application to know the page table layout of riscv.
Signed-off-by: Charlie Jenkins charlie@rivosinc.com --- Changes in v3: - Add back forgotten semi-colon - Fix test cases - Add support for rv32 - Change cover letter name so it's not the same as patch 1 - Link to v2: https://lore.kernel.org/r/20240130-use_mmap_hint_address-v2-0-f34ebfd33053@r...
Changes in v2: - Add back forgotten "mmap_end = STACK_TOP_MAX" - Link to v1: https://lore.kernel.org/r/20240129-use_mmap_hint_address-v1-0-4c74da813ba1@r...
--- Charlie Jenkins (3): riscv: mm: Use hint address in mmap if available selftests: riscv: Generalize mm selftests docs: riscv: Define behavior of mmap
Documentation/arch/riscv/vm-layout.rst | 16 ++-- arch/riscv/include/asm/processor.h | 27 +++--- tools/testing/selftests/riscv/mm/mmap_bottomup.c | 23 +---- tools/testing/selftests/riscv/mm/mmap_default.c | 23 +---- tools/testing/selftests/riscv/mm/mmap_test.h | 107 ++++++++++++++--------- 5 files changed, 83 insertions(+), 113 deletions(-) --- base-commit: 556e2d17cae620d549c5474b1ece053430cd50bc change-id: 20240119-use_mmap_hint_address-f9f4b1b6f5f1
On riscv it is guaranteed that the address returned by mmap is less than the hint address. Allow mmap to return an address all the way up to addr, if provided, rather than just up to the lower address space.
This provides a performance benefit as well, allowing mmap to exit after checking that the address is in range rather than searching for a valid address.
It is possible to provide an address that uses at most the same number of bits, however it is significantly more computationally expensive to provide that number rather than setting the max to be the hint address. There is the instruction clz/clzw in Zbb that returns the highest set bit which could be used to performantly implement this, but it would still be slower than the current implementation. At worst case, half of the address would not be able to be allocated when a hint address is provided.
Signed-off-by: Charlie Jenkins charlie@rivosinc.com --- arch/riscv/include/asm/processor.h | 27 +++++++++++---------------- 1 file changed, 11 insertions(+), 16 deletions(-)
diff --git a/arch/riscv/include/asm/processor.h b/arch/riscv/include/asm/processor.h index f19f861cda54..8ece7a8f0e18 100644 --- a/arch/riscv/include/asm/processor.h +++ b/arch/riscv/include/asm/processor.h @@ -14,22 +14,16 @@
#include <asm/ptrace.h>
-#ifdef CONFIG_64BIT -#define DEFAULT_MAP_WINDOW (UL(1) << (MMAP_VA_BITS - 1)) -#define STACK_TOP_MAX TASK_SIZE_64 - #define arch_get_mmap_end(addr, len, flags) \ ({ \ unsigned long mmap_end; \ typeof(addr) _addr = (addr); \ - if ((_addr) == 0 || (IS_ENABLED(CONFIG_COMPAT) && is_compat_task())) \ + if ((_addr) == 0 || \ + (IS_ENABLED(CONFIG_COMPAT) && is_compat_task()) || \ + ((_addr + len) > BIT(VA_BITS - 1))) \ mmap_end = STACK_TOP_MAX; \ - else if ((_addr) >= VA_USER_SV57) \ - mmap_end = STACK_TOP_MAX; \ - else if ((((_addr) >= VA_USER_SV48)) && (VA_BITS >= VA_BITS_SV48)) \ - mmap_end = VA_USER_SV48; \ else \ - mmap_end = VA_USER_SV39; \ + mmap_end = (_addr + len); \ mmap_end; \ })
@@ -39,17 +33,18 @@ typeof(addr) _addr = (addr); \ typeof(base) _base = (base); \ unsigned long rnd_gap = DEFAULT_MAP_WINDOW - (_base); \ - if ((_addr) == 0 || (IS_ENABLED(CONFIG_COMPAT) && is_compat_task())) \ + if ((_addr) == 0 || \ + (IS_ENABLED(CONFIG_COMPAT) && is_compat_task()) || \ + ((_addr + len) > BIT(VA_BITS - 1))) \ mmap_base = (_base); \ - else if (((_addr) >= VA_USER_SV57) && (VA_BITS >= VA_BITS_SV57)) \ - mmap_base = VA_USER_SV57 - rnd_gap; \ - else if ((((_addr) >= VA_USER_SV48)) && (VA_BITS >= VA_BITS_SV48)) \ - mmap_base = VA_USER_SV48 - rnd_gap; \ else \ - mmap_base = VA_USER_SV39 - rnd_gap; \ + mmap_base = (_addr + len) - rnd_gap; \ mmap_base; \ })
+#ifdef CONFIG_64BIT +#define DEFAULT_MAP_WINDOW (UL(1) << (MMAP_VA_BITS - 1)) +#define STACK_TOP_MAX TASK_SIZE_64 #else #define DEFAULT_MAP_WINDOW TASK_SIZE #define STACK_TOP_MAX TASK_SIZE
On Tue, 2024-01-30 at 17:07 -0800, Charlie Jenkins wrote:
On riscv it is guaranteed that the address returned by mmap is less than the hint address. Allow mmap to return an address all the way up to addr, if provided, rather than just up to the lower address space.
This provides a performance benefit as well, allowing mmap to exit after checking that the address is in range rather than searching for a valid address.
It is possible to provide an address that uses at most the same number of bits, however it is significantly more computationally expensive to provide that number rather than setting the max to be the hint address. There is the instruction clz/clzw in Zbb that returns the highest set bit which could be used to performantly implement this, but it would still be slower than the current implementation. At worst case, half of the address would not be able to be allocated when a hint address is provided.
Signed-off-by: Charlie Jenkins charlie@rivosinc.com
arch/riscv/include/asm/processor.h | 27 +++++++++++---------------- 1 file changed, 11 insertions(+), 16 deletions(-)
diff --git a/arch/riscv/include/asm/processor.h b/arch/riscv/include/asm/processor.h index f19f861cda54..8ece7a8f0e18 100644 --- a/arch/riscv/include/asm/processor.h +++ b/arch/riscv/include/asm/processor.h @@ -14,22 +14,16 @@ #include <asm/ptrace.h> -#ifdef CONFIG_64BIT -#define DEFAULT_MAP_WINDOW (UL(1) << (MMAP_VA_BITS - 1)) -#define STACK_TOP_MAX TASK_SIZE_64
#define arch_get_mmap_end(addr, len, flags) \ ({ \ unsigned long mmap_end; \ typeof(addr) _addr = (addr); \
- if ((_addr) == 0 || (IS_ENABLED(CONFIG_COMPAT) &&
is_compat_task())) \
- if ((_addr) == 0 || \
- (IS_ENABLED(CONFIG_COMPAT) && is_compat_task()) || \
- ((_addr + len) > BIT(VA_BITS -
1))) \ mmap_end = STACK_TOP_MAX; \
- else if ((_addr) >= VA_USER_SV57) \
mmap_end = STACK_TOP_MAX; \
- else if ((((_addr) >= VA_USER_SV48)) && (VA_BITS >=
VA_BITS_SV48)) \
mmap_end = VA_USER_SV48; \
else \
mmap_end = VA_USER_SV39; \
mmap_end = (_addr + len); \
mmap_end; \ }) @@ -39,17 +33,18 @@ typeof(addr) _addr = (addr); \ typeof(base) _base = (base); \ unsigned long rnd_gap = DEFAULT_MAP_WINDOW - (_base); \
- if ((_addr) == 0 || (IS_ENABLED(CONFIG_COMPAT) &&
is_compat_task())) \
- if ((_addr) == 0 || \
- (IS_ENABLED(CONFIG_COMPAT) && is_compat_task()) || \
- ((_addr + len) > BIT(VA_BITS -
1))) \ mmap_base = (_base); \
- else if (((_addr) >= VA_USER_SV57) && (VA_BITS >=
VA_BITS_SV57)) \
mmap_base = VA_USER_SV57 - rnd_gap; \
- else if ((((_addr) >= VA_USER_SV48)) && (VA_BITS >=
VA_BITS_SV48)) \
mmap_base = VA_USER_SV48 - rnd_gap; \
else \
mmap_base = VA_USER_SV39 - rnd_gap; \
mmap_base = (_addr + len) - rnd_gap; \
mmap_base; \ }) +#ifdef CONFIG_64BIT +#define DEFAULT_MAP_WINDOW (UL(1) << (MMAP_VA_BITS - 1)) +#define STACK_TOP_MAX TASK_SIZE_64 #else #define DEFAULT_MAP_WINDOW TASK_SIZE #define STACK_TOP_MAX TASK_SIZE
I have carefully tested your patch on qemu with sv57. A bug that needs to be solved is that mmap with the same hint address without MAP_FIXED set will fail the second time.
Userspace code to reproduce the bug:
#include <sys/mman.h> #include <stdio.h> #include <stdint.h>
void test(char *addr) { char *res = mmap(addr, 4096, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, -1, 0); printf("hint %p got %p.\n", addr, res); }
int main (void) { test(1<<30); test(1<<30); test(1<<30); return 0; }
output:
hint 0x40000000 got 0x40000000. hint 0x40000000 got 0xffffffffffffffff. hint 0x40000000 got 0xffffffffffffffff.
output on x86:
hint 0x40000000 got 0x40000000. hint 0x40000000 got 0x7f9171363000. hint 0x40000000 got 0x7f9171362000.
It may need to implement a special arch_get_unmapped_area and arch_get_unmapped_area_topdown function.
On Wed, 2024-01-31 at 22:41 +0800, Yangyu Chen wrote:
On Tue, 2024-01-30 at 17:07 -0800, Charlie Jenkins wrote:
On riscv it is guaranteed that the address returned by mmap is less than the hint address. Allow mmap to return an address all the way up to addr, if provided, rather than just up to the lower address space.
This provides a performance benefit as well, allowing mmap to exit after checking that the address is in range rather than searching for a valid address.
It is possible to provide an address that uses at most the same number of bits, however it is significantly more computationally expensive to provide that number rather than setting the max to be the hint address. There is the instruction clz/clzw in Zbb that returns the highest set bit which could be used to performantly implement this, but it would still be slower than the current implementation. At worst case, half of the address would not be able to be allocated when a hint address is provided.
Signed-off-by: Charlie Jenkins charlie@rivosinc.com
arch/riscv/include/asm/processor.h | 27 +++++++++++---------------
1 file changed, 11 insertions(+), 16 deletions(-)
diff --git a/arch/riscv/include/asm/processor.h b/arch/riscv/include/asm/processor.h index f19f861cda54..8ece7a8f0e18 100644 --- a/arch/riscv/include/asm/processor.h +++ b/arch/riscv/include/asm/processor.h @@ -14,22 +14,16 @@ #include <asm/ptrace.h> -#ifdef CONFIG_64BIT -#define DEFAULT_MAP_WINDOW (UL(1) << (MMAP_VA_BITS - 1)) -#define STACK_TOP_MAX TASK_SIZE_64
#define arch_get_mmap_end(addr, len, flags) \ ({ \ unsigned long mmap_end; \ typeof(addr) _addr = (addr); \
- if ((_addr) == 0 || (IS_ENABLED(CONFIG_COMPAT) &&
is_compat_task())) \
- if ((_addr) == 0 || \
- (IS_ENABLED(CONFIG_COMPAT) && is_compat_task()) || \
- ((_addr + len) > BIT(VA_BITS -
1))) \ mmap_end = STACK_TOP_MAX; \
- else if ((_addr) >= VA_USER_SV57) \
mmap_end = STACK_TOP_MAX; \
- else if ((((_addr) >= VA_USER_SV48)) && (VA_BITS >=
VA_BITS_SV48)) \
mmap_end = VA_USER_SV48; \
else \
mmap_end = VA_USER_SV39; \
mmap_end = (_addr + len); \
mmap_end; \ }) @@ -39,17 +33,18 @@ typeof(addr) _addr = (addr); \ typeof(base) _base = (base); \ unsigned long rnd_gap = DEFAULT_MAP_WINDOW - (_base); \
- if ((_addr) == 0 || (IS_ENABLED(CONFIG_COMPAT) &&
is_compat_task())) \
- if ((_addr) == 0 || \
- (IS_ENABLED(CONFIG_COMPAT) && is_compat_task()) || \
- ((_addr + len) > BIT(VA_BITS -
1))) \ mmap_base = (_base); \
- else if (((_addr) >= VA_USER_SV57) && (VA_BITS >=
VA_BITS_SV57)) \
mmap_base = VA_USER_SV57 - rnd_gap; \
- else if ((((_addr) >= VA_USER_SV48)) && (VA_BITS >=
VA_BITS_SV48)) \
mmap_base = VA_USER_SV48 - rnd_gap; \
else \
mmap_base = VA_USER_SV39 - rnd_gap; \
mmap_base = (_addr + len) - rnd_gap; \
mmap_base; \ }) +#ifdef CONFIG_64BIT +#define DEFAULT_MAP_WINDOW (UL(1) << (MMAP_VA_BITS - 1)) +#define STACK_TOP_MAX TASK_SIZE_64 #else #define DEFAULT_MAP_WINDOW TASK_SIZE #define STACK_TOP_MAX TASK_SIZE
I have carefully tested your patch on qemu with sv57. A bug that needs to be solved is that mmap with the same hint address without MAP_FIXED set will fail the second time.
Userspace code to reproduce the bug:
#include <sys/mman.h> #include <stdio.h> #include <stdint.h>
void test(char *addr) { char *res = mmap(addr, 4096, PROT_READ | PROT_WRITE, MAP_ANONYMOUS
MAP_PRIVATE, -1, 0);
printf("hint %p got %p.\n", addr, res); }
int main (void) { test(1<<30); test(1<<30); test(1<<30); return 0; }
output:
hint 0x40000000 got 0x40000000. hint 0x40000000 got 0xffffffffffffffff. hint 0x40000000 got 0xffffffffffffffff.
output on x86:
hint 0x40000000 got 0x40000000. hint 0x40000000 got 0x7f9171363000. hint 0x40000000 got 0x7f9171362000.
It may need to implement a special arch_get_unmapped_area and arch_get_unmapped_area_topdown function.
This is because hint address < rnd_gap. I have tried to let mmap_base = min((_addr + len), (base) + TASK_SIZE - DEFAULT_MAP_WINDOW). However it does not work for bottom-up while ulimit -s is unlimited. You said this behavior is expected from patch v2 review. However it brings a new regression even on sv39 systems.
I still don't know the reason why use addr+len as the upper-bound. I think solution like x86/arm64/powerpc provide two address space switch based on whether hint address above the default map window is enough.
On Wed, Jan 31, 2024 at 11:59:43PM +0800, Yangyu Chen wrote:
On Wed, 2024-01-31 at 22:41 +0800, Yangyu Chen wrote:
On Tue, 2024-01-30 at 17:07 -0800, Charlie Jenkins wrote:
On riscv it is guaranteed that the address returned by mmap is less than the hint address. Allow mmap to return an address all the way up to addr, if provided, rather than just up to the lower address space.
This provides a performance benefit as well, allowing mmap to exit after checking that the address is in range rather than searching for a valid address.
It is possible to provide an address that uses at most the same number of bits, however it is significantly more computationally expensive to provide that number rather than setting the max to be the hint address. There is the instruction clz/clzw in Zbb that returns the highest set bit which could be used to performantly implement this, but it would still be slower than the current implementation. At worst case, half of the address would not be able to be allocated when a hint address is provided.
Signed-off-by: Charlie Jenkins charlie@rivosinc.com
arch/riscv/include/asm/processor.h | 27 +++++++++++---------------
1 file changed, 11 insertions(+), 16 deletions(-)
diff --git a/arch/riscv/include/asm/processor.h b/arch/riscv/include/asm/processor.h index f19f861cda54..8ece7a8f0e18 100644 --- a/arch/riscv/include/asm/processor.h +++ b/arch/riscv/include/asm/processor.h @@ -14,22 +14,16 @@ #include <asm/ptrace.h> -#ifdef CONFIG_64BIT -#define DEFAULT_MAP_WINDOW (UL(1) << (MMAP_VA_BITS - 1)) -#define STACK_TOP_MAX TASK_SIZE_64
#define arch_get_mmap_end(addr, len, flags) \ ({ \ unsigned long mmap_end; \ typeof(addr) _addr = (addr); \
- if ((_addr) == 0 || (IS_ENABLED(CONFIG_COMPAT) &&
is_compat_task())) \
- if ((_addr) == 0 || \
- (IS_ENABLED(CONFIG_COMPAT) && is_compat_task()) || \
- ((_addr + len) > BIT(VA_BITS -
1))) \ mmap_end = STACK_TOP_MAX; \
- else if ((_addr) >= VA_USER_SV57) \
mmap_end = STACK_TOP_MAX; \
- else if ((((_addr) >= VA_USER_SV48)) && (VA_BITS >=
VA_BITS_SV48)) \
mmap_end = VA_USER_SV48; \
else \
mmap_end = VA_USER_SV39; \
mmap_end = (_addr + len); \
mmap_end; \ }) @@ -39,17 +33,18 @@ typeof(addr) _addr = (addr); \ typeof(base) _base = (base); \ unsigned long rnd_gap = DEFAULT_MAP_WINDOW - (_base); \
- if ((_addr) == 0 || (IS_ENABLED(CONFIG_COMPAT) &&
is_compat_task())) \
- if ((_addr) == 0 || \
- (IS_ENABLED(CONFIG_COMPAT) && is_compat_task()) || \
- ((_addr + len) > BIT(VA_BITS -
1))) \ mmap_base = (_base); \
- else if (((_addr) >= VA_USER_SV57) && (VA_BITS >=
VA_BITS_SV57)) \
mmap_base = VA_USER_SV57 - rnd_gap; \
- else if ((((_addr) >= VA_USER_SV48)) && (VA_BITS >=
VA_BITS_SV48)) \
mmap_base = VA_USER_SV48 - rnd_gap; \
else \
mmap_base = VA_USER_SV39 - rnd_gap; \
mmap_base = (_addr + len) - rnd_gap; \
mmap_base; \ }) +#ifdef CONFIG_64BIT +#define DEFAULT_MAP_WINDOW (UL(1) << (MMAP_VA_BITS - 1)) +#define STACK_TOP_MAX TASK_SIZE_64 #else #define DEFAULT_MAP_WINDOW TASK_SIZE #define STACK_TOP_MAX TASK_SIZE
I have carefully tested your patch on qemu with sv57. A bug that needs to be solved is that mmap with the same hint address without MAP_FIXED set will fail the second time.
Userspace code to reproduce the bug:
#include <sys/mman.h> #include <stdio.h> #include <stdint.h>
void test(char *addr) { char *res = mmap(addr, 4096, PROT_READ | PROT_WRITE, MAP_ANONYMOUS
MAP_PRIVATE, -1, 0);
printf("hint %p got %p.\n", addr, res); }
int main (void) { test(1<<30); test(1<<30); test(1<<30); return 0; }
output:
hint 0x40000000 got 0x40000000. hint 0x40000000 got 0xffffffffffffffff. hint 0x40000000 got 0xffffffffffffffff.
output on x86:
hint 0x40000000 got 0x40000000. hint 0x40000000 got 0x7f9171363000. hint 0x40000000 got 0x7f9171362000.
It may need to implement a special arch_get_unmapped_area and arch_get_unmapped_area_topdown function.
This is because hint address < rnd_gap. I have tried to let mmap_base = min((_addr + len), (base) + TASK_SIZE - DEFAULT_MAP_WINDOW). However it does not work for bottom-up while ulimit -s is unlimited. You said this behavior is expected from patch v2 review. However it brings a new regression even on sv39 systems.
I still don't know the reason why use addr+len as the upper-bound. I think solution like x86/arm64/powerpc provide two address space switch based on whether hint address above the default map window is enough.
Yep this is expected. It is up to the maintainers to decide.
- Charlie
On Thu, 01 Feb 2024 18:28:06 PST (-0800), Charlie Jenkins wrote:
On Wed, Jan 31, 2024 at 11:59:43PM +0800, Yangyu Chen wrote:
On Wed, 2024-01-31 at 22:41 +0800, Yangyu Chen wrote:
On Tue, 2024-01-30 at 17:07 -0800, Charlie Jenkins wrote:
On riscv it is guaranteed that the address returned by mmap is less than the hint address. Allow mmap to return an address all the way up to addr, if provided, rather than just up to the lower address space.
This provides a performance benefit as well, allowing mmap to exit after checking that the address is in range rather than searching for a valid address.
It is possible to provide an address that uses at most the same number of bits, however it is significantly more computationally expensive to provide that number rather than setting the max to be the hint address. There is the instruction clz/clzw in Zbb that returns the highest set bit which could be used to performantly implement this, but it would still be slower than the current implementation. At worst case, half of the address would not be able to be allocated when a hint address is provided.
Signed-off-by: Charlie Jenkins charlie@rivosinc.com
arch/riscv/include/asm/processor.h | 27 +++++++++++---------------
1 file changed, 11 insertions(+), 16 deletions(-)
diff --git a/arch/riscv/include/asm/processor.h b/arch/riscv/include/asm/processor.h index f19f861cda54..8ece7a8f0e18 100644 --- a/arch/riscv/include/asm/processor.h +++ b/arch/riscv/include/asm/processor.h @@ -14,22 +14,16 @@ #include <asm/ptrace.h> -#ifdef CONFIG_64BIT -#define DEFAULT_MAP_WINDOW (UL(1) << (MMAP_VA_BITS - 1)) -#define STACK_TOP_MAX TASK_SIZE_64
#define arch_get_mmap_end(addr, len, flags) \ ({ \ unsigned long mmap_end; \ typeof(addr) _addr = (addr); \
- if ((_addr) == 0 || (IS_ENABLED(CONFIG_COMPAT) &&
is_compat_task())) \
- if ((_addr) == 0 || \
- (IS_ENABLED(CONFIG_COMPAT) && is_compat_task()) || \
- ((_addr + len) > BIT(VA_BITS -
1))) \ mmap_end = STACK_TOP_MAX; \
- else if ((_addr) >= VA_USER_SV57) \
mmap_end = STACK_TOP_MAX; \
- else if ((((_addr) >= VA_USER_SV48)) && (VA_BITS >=
VA_BITS_SV48)) \
mmap_end = VA_USER_SV48; \
else \
mmap_end = VA_USER_SV39; \
mmap_end = (_addr + len); \
mmap_end; \ }) @@ -39,17 +33,18 @@ typeof(addr) _addr = (addr); \ typeof(base) _base = (base); \ unsigned long rnd_gap = DEFAULT_MAP_WINDOW - (_base); \
- if ((_addr) == 0 || (IS_ENABLED(CONFIG_COMPAT) &&
is_compat_task())) \
- if ((_addr) == 0 || \
- (IS_ENABLED(CONFIG_COMPAT) && is_compat_task()) || \
- ((_addr + len) > BIT(VA_BITS -
1))) \ mmap_base = (_base); \
- else if (((_addr) >= VA_USER_SV57) && (VA_BITS >=
VA_BITS_SV57)) \
mmap_base = VA_USER_SV57 - rnd_gap; \
- else if ((((_addr) >= VA_USER_SV48)) && (VA_BITS >=
VA_BITS_SV48)) \
mmap_base = VA_USER_SV48 - rnd_gap; \
else \
mmap_base = VA_USER_SV39 - rnd_gap; \
mmap_base = (_addr + len) - rnd_gap; \
mmap_base; \ }) +#ifdef CONFIG_64BIT +#define DEFAULT_MAP_WINDOW (UL(1) << (MMAP_VA_BITS - 1)) +#define STACK_TOP_MAX TASK_SIZE_64 #else #define DEFAULT_MAP_WINDOW TASK_SIZE #define STACK_TOP_MAX TASK_SIZE
I have carefully tested your patch on qemu with sv57. A bug that needs to be solved is that mmap with the same hint address without MAP_FIXED set will fail the second time.
Userspace code to reproduce the bug:
#include <sys/mman.h> #include <stdio.h> #include <stdint.h>
void test(char *addr) { char *res = mmap(addr, 4096, PROT_READ | PROT_WRITE, MAP_ANONYMOUS
MAP_PRIVATE, -1, 0);
printf("hint %p got %p.\n", addr, res); }
int main (void) { test(1<<30); test(1<<30); test(1<<30); return 0; }
output:
hint 0x40000000 got 0x40000000. hint 0x40000000 got 0xffffffffffffffff. hint 0x40000000 got 0xffffffffffffffff.
output on x86:
hint 0x40000000 got 0x40000000. hint 0x40000000 got 0x7f9171363000. hint 0x40000000 got 0x7f9171362000.
It may need to implement a special arch_get_unmapped_area and arch_get_unmapped_area_topdown function.
This is because hint address < rnd_gap. I have tried to let mmap_base = min((_addr + len), (base) + TASK_SIZE - DEFAULT_MAP_WINDOW). However it does not work for bottom-up while ulimit -s is unlimited. You said this behavior is expected from patch v2 review. However it brings a new regression even on sv39 systems.
I still don't know the reason why use addr+len as the upper-bound. I think solution like x86/arm64/powerpc provide two address space switch based on whether hint address above the default map window is enough.
Yep this is expected. It is up to the maintainers to decide.
Sorry I forgot to reply to this, I had a buffer sitting around somewhere but I must have lost it.
I think Charlie's approach is the right way to go. Putting my userspace hat on, I'd much rather have my allocations fail rather than silently ignore the hint when there's memory pressure.
If there's some real use case that needs these low hints to be silently ignored under VA pressure then we can try and figure something out that makes those applications work.
- Charlie
On 2024-03-22 22:06, Palmer Dabbelt wrote:
On Thu, 01 Feb 2024 18:28:06 PST (-0800), Charlie Jenkins wrote:
On Wed, Jan 31, 2024 at 11:59:43PM +0800, Yangyu Chen wrote:
On Wed, 2024-01-31 at 22:41 +0800, Yangyu Chen wrote:
On Tue, 2024-01-30 at 17:07 -0800, Charlie Jenkins wrote:
On riscv it is guaranteed that the address returned by mmap is less than the hint address. Allow mmap to return an address all the way up to addr, if provided, rather than just up to the lower address space.
> This provides a performance benefit as well, allowing mmap
to exit
after checking that the address is in range rather than searching for a valid address.
> It is possible to provide an address that uses at most the same
number of bits, however it is significantly more computationally expensive to provide that number rather than setting the max to be the hint address. There is the instruction clz/clzw in Zbb that returns the highest set bit which could be used to performantly implement this, but it would still be slower than the current implementation. At worst case, half of the address would not be able to be allocated when a hint address is provided.
> Signed-off-by: Charlie Jenkins charlie@rivosinc.com
arch/riscv/include/asm/processor.h | 27 +++++++++++---------------
1 file changed, 11 insertions(+), 16 deletions(-)
> diff --git a/arch/riscv/include/asm/processor.h
b/arch/riscv/include/asm/processor.h index f19f861cda54..8ece7a8f0e18 100644 --- a/arch/riscv/include/asm/processor.h +++ b/arch/riscv/include/asm/processor.h @@ -14,22 +14,16 @@
#include <asm/ptrace.h>
-#ifdef CONFIG_64BIT -#define DEFAULT_MAP_WINDOW (UL(1) << (MMAP_VA_BITS - 1)) -#define STACK_TOP_MAX TASK_SIZE_64
#define arch_get_mmap_end(addr, len, flags) \ ({ \ unsigned long mmap_end; \ typeof(addr) _addr = (addr); \ - if ((_addr) == 0 || (IS_ENABLED(CONFIG_COMPAT) && is_compat_task())) \ + if ((_addr) == 0 || \ + (IS_ENABLED(CONFIG_COMPAT) && is_compat_task()) || \ + ((_addr + len) > BIT(VA_BITS - 1))) \ mmap_end = STACK_TOP_MAX; \ - else if ((_addr) >= VA_USER_SV57) \ - mmap_end = STACK_TOP_MAX; \ - else if ((((_addr) >= VA_USER_SV48)) && (VA_BITS >= VA_BITS_SV48)) \ - mmap_end = VA_USER_SV48; \ else \ - mmap_end = VA_USER_SV39; \ + mmap_end = (_addr + len); \ mmap_end; \ })
@@ -39,17 +33,18 @@ typeof(addr) _addr = (addr); \ typeof(base) _base = (base); \ unsigned long rnd_gap = DEFAULT_MAP_WINDOW - (_base); \ - if ((_addr) == 0 || (IS_ENABLED(CONFIG_COMPAT) && is_compat_task())) \ + if ((_addr) == 0 || \ + (IS_ENABLED(CONFIG_COMPAT) && is_compat_task()) || \ + ((_addr + len) > BIT(VA_BITS - 1))) \ mmap_base = (_base); \ - else if (((_addr) >= VA_USER_SV57) && (VA_BITS >= VA_BITS_SV57)) \ - mmap_base = VA_USER_SV57 - rnd_gap; \ - else if ((((_addr) >= VA_USER_SV48)) && (VA_BITS >= VA_BITS_SV48)) \ - mmap_base = VA_USER_SV48 - rnd_gap; \ else \ - mmap_base = VA_USER_SV39 - rnd_gap; \ + mmap_base = (_addr + len) - rnd_gap; \ mmap_base; \ })
+#ifdef CONFIG_64BIT +#define DEFAULT_MAP_WINDOW (UL(1) << (MMAP_VA_BITS - 1)) +#define STACK_TOP_MAX TASK_SIZE_64 #else #define DEFAULT_MAP_WINDOW TASK_SIZE #define STACK_TOP_MAX TASK_SIZE
> I have carefully tested your patch on qemu with sv57. A bug
that
needs to be solved is that mmap with the same hint address without MAP_FIXED set will fail the second time.
Userspace code to reproduce the bug: #include <sys/mman.h>
#include <stdio.h> #include <stdint.h>
void test(char *addr) {
char *res = mmap(addr, 4096, PROT_READ | PROT_WRITE, MAP_ANONYMOUS
MAP_PRIVATE, -1, 0);
printf("hint %p got %p.\n", addr, res); }
int main (void) {
test(1<<30); test(1<<30); test(1<<30); return 0; }
output: hint 0x40000000 got 0x40000000.
hint 0x40000000 got 0xffffffffffffffff. hint 0x40000000 got 0xffffffffffffffff.
output on x86: hint 0x40000000 got 0x40000000.
hint 0x40000000 got 0x7f9171363000. hint 0x40000000 got 0x7f9171362000.
It may need to implement a special arch_get_unmapped_area and
arch_get_unmapped_area_topdown function.
This is because hint address < rnd_gap. I have tried to let mmap_base = min((_addr + len), (base) + TASK_SIZE - DEFAULT_MAP_WINDOW). However it does not work for bottom-up while ulimit -s is unlimited. You said this behavior is expected from patch v2 review. However it brings a new regression even on sv39 systems.
I still don't know the reason why use addr+len as the upper-bound. I think solution like x86/arm64/powerpc provide two address space switch based on whether hint address above the default map window is enough.
Yep this is expected. It is up to the maintainers to decide.
Sorry I forgot to reply to this, I had a buffer sitting around somewhere but I must have lost it.
I think Charlie's approach is the right way to go. Putting my userspace hat on, I'd much rather have my allocations fail rather than silently ignore the hint when there's memory pressure.
If there's some real use case that needs these low hints to be silently ignored under VA pressure then we can try and figure something out that makes those applications work.
I suspect this has broke chromium and all other software that depends on chromium on riscv64. See also https://github.com/riscv-forks/electron/issues/4
- Charlie
linux-riscv mailing list linux-riscv@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-riscv
On 2024-03-22 22:06, Palmer Dabbelt wrote:
On Thu, 01 Feb 2024 18:28:06 PST (-0800), Charlie Jenkins wrote:
On Wed, Jan 31, 2024 at 11:59:43PM +0800, Yangyu Chen wrote:
On Wed, 2024-01-31 at 22:41 +0800, Yangyu Chen wrote:
On Tue, 2024-01-30 at 17:07 -0800, Charlie Jenkins wrote:
On riscv it is guaranteed that the address returned by mmap is less than the hint address. Allow mmap to return an address all the way up to addr, if provided, rather than just up to the lower address space.
> This provides a performance benefit as well, allowing mmap
to exit
after checking that the address is in range rather than searching for a valid address.
> It is possible to provide an address that uses at most the same
number of bits, however it is significantly more computationally expensive to provide that number rather than setting the max to be the hint address. There is the instruction clz/clzw in Zbb that returns the highest set bit which could be used to performantly implement this, but it would still be slower than the current implementation. At worst case, half of the address would not be able to be allocated when a hint address is provided.
> Signed-off-by: Charlie Jenkins charlie@rivosinc.com
arch/riscv/include/asm/processor.h | 27 +++++++++++---------------
1 file changed, 11 insertions(+), 16 deletions(-)
> diff --git a/arch/riscv/include/asm/processor.h
b/arch/riscv/include/asm/processor.h index f19f861cda54..8ece7a8f0e18 100644 --- a/arch/riscv/include/asm/processor.h +++ b/arch/riscv/include/asm/processor.h @@ -14,22 +14,16 @@
#include <asm/ptrace.h>
-#ifdef CONFIG_64BIT -#define DEFAULT_MAP_WINDOW (UL(1) << (MMAP_VA_BITS - 1)) -#define STACK_TOP_MAX TASK_SIZE_64
#define arch_get_mmap_end(addr, len, flags) \ ({ \ unsigned long mmap_end; \ typeof(addr) _addr = (addr); \ - if ((_addr) == 0 || (IS_ENABLED(CONFIG_COMPAT) && is_compat_task())) \ + if ((_addr) == 0 || \ + (IS_ENABLED(CONFIG_COMPAT) && is_compat_task()) || \ + ((_addr + len) > BIT(VA_BITS - 1))) \ mmap_end = STACK_TOP_MAX; \ - else if ((_addr) >= VA_USER_SV57) \ - mmap_end = STACK_TOP_MAX; \ - else if ((((_addr) >= VA_USER_SV48)) && (VA_BITS >= VA_BITS_SV48)) \ - mmap_end = VA_USER_SV48; \ else \ - mmap_end = VA_USER_SV39; \ + mmap_end = (_addr + len); \ mmap_end; \ })
@@ -39,17 +33,18 @@ typeof(addr) _addr = (addr); \ typeof(base) _base = (base); \ unsigned long rnd_gap = DEFAULT_MAP_WINDOW - (_base); \ - if ((_addr) == 0 || (IS_ENABLED(CONFIG_COMPAT) && is_compat_task())) \ + if ((_addr) == 0 || \ + (IS_ENABLED(CONFIG_COMPAT) && is_compat_task()) || \ + ((_addr + len) > BIT(VA_BITS - 1))) \ mmap_base = (_base); \ - else if (((_addr) >= VA_USER_SV57) && (VA_BITS >= VA_BITS_SV57)) \ - mmap_base = VA_USER_SV57 - rnd_gap; \ - else if ((((_addr) >= VA_USER_SV48)) && (VA_BITS >= VA_BITS_SV48)) \ - mmap_base = VA_USER_SV48 - rnd_gap; \ else \ - mmap_base = VA_USER_SV39 - rnd_gap; \ + mmap_base = (_addr + len) - rnd_gap; \ mmap_base; \ })
+#ifdef CONFIG_64BIT +#define DEFAULT_MAP_WINDOW (UL(1) << (MMAP_VA_BITS - 1)) +#define STACK_TOP_MAX TASK_SIZE_64 #else #define DEFAULT_MAP_WINDOW TASK_SIZE #define STACK_TOP_MAX TASK_SIZE
> I have carefully tested your patch on qemu with sv57. A bug
that
needs to be solved is that mmap with the same hint address without MAP_FIXED set will fail the second time.
Userspace code to reproduce the bug: #include <sys/mman.h>
#include <stdio.h> #include <stdint.h>
void test(char *addr) {
char *res = mmap(addr, 4096, PROT_READ | PROT_WRITE, MAP_ANONYMOUS
MAP_PRIVATE, -1, 0);
printf("hint %p got %p.\n", addr, res); }
int main (void) {
test(1<<30); test(1<<30); test(1<<30); return 0; }
output: hint 0x40000000 got 0x40000000.
hint 0x40000000 got 0xffffffffffffffff. hint 0x40000000 got 0xffffffffffffffff.
output on x86: hint 0x40000000 got 0x40000000.
hint 0x40000000 got 0x7f9171363000. hint 0x40000000 got 0x7f9171362000.
It may need to implement a special arch_get_unmapped_area and
arch_get_unmapped_area_topdown function.
This is because hint address < rnd_gap. I have tried to let mmap_base = min((_addr + len), (base) + TASK_SIZE - DEFAULT_MAP_WINDOW). However it does not work for bottom-up while ulimit -s is unlimited. You said this behavior is expected from patch v2 review. However it brings a new regression even on sv39 systems.
I still don't know the reason why use addr+len as the upper-bound. I think solution like x86/arm64/powerpc provide two address space switch based on whether hint address above the default map window is enough.
Yep this is expected. It is up to the maintainers to decide.
Sorry I forgot to reply to this, I had a buffer sitting around somewhere but I must have lost it.
I think Charlie's approach is the right way to go. Putting my userspace hat on, I'd much rather have my allocations fail rather than silently ignore the hint when there's memory pressure.
If there's some real use case that needs these low hints to be silently ignored under VA pressure then we can try and figure something out that makes those applications work.
I could confirm that this patch has broken chromium's partition allocator on riscv64. The minimal reproduction I use is chromium-mmap.c:
#include <stdio.h> #include <sys/mman.h>
int main() { void* expected = (void*)0x400000000; void* addr = mmap(expected, 17179869184, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0); if (addr != expected) { printf("Not expected address: %p != %p\n", addr, expected); } expected = (void*)0x3fffff000; addr = mmap(expected, 17179873280, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0); if (addr != expected) { printf("Not expected address: %p != %p\n", addr, expected); } return 0; }
The second mmap fails with ENOMEM. Manually reverting this commit fixes the issue for me. So I think it's clearly a regression and breaks userspace.
See also https://github.com/riscv-forks/electron/issues/4
- Charlie
Sincerely, Levi
On Mon, Aug 19, 2024 at 01:55:57PM +0800, Levi Zim wrote:
On 2024-03-22 22:06, Palmer Dabbelt wrote:
On Thu, 01 Feb 2024 18:28:06 PST (-0800), Charlie Jenkins wrote:
On Wed, Jan 31, 2024 at 11:59:43PM +0800, Yangyu Chen wrote:
On Wed, 2024-01-31 at 22:41 +0800, Yangyu Chen wrote:
On Tue, 2024-01-30 at 17:07 -0800, Charlie Jenkins wrote:
On riscv it is guaranteed that the address returned by mmap is less than the hint address. Allow mmap to return an address all the way up to addr, if provided, rather than just up to the lower address space. > > This provides a performance benefit as well, allowing
mmap to exit
after checking that the address is in range rather than searching for a valid address. > > It is possible to provide an address that uses at most the same number of bits, however it is significantly more computationally expensive to provide that number rather than setting the max to be the hint address. There is the instruction clz/clzw in Zbb that returns the highest set bit which could be used to performantly implement this, but it would still be slower than the current implementation. At worst case, half of the address would not be able to be allocated when a hint address is provided.
> > Signed-off-by: Charlie Jenkins charlie@rivosinc.com
arch/riscv/include/asm/processor.h | 27 +++++++++++---------------
1 file changed, 11 insertions(+), 16 deletions(-) > > diff --git a/arch/riscv/include/asm/processor.h b/arch/riscv/include/asm/processor.h index f19f861cda54..8ece7a8f0e18 100644 --- a/arch/riscv/include/asm/processor.h +++ b/arch/riscv/include/asm/processor.h @@ -14,22 +14,16 @@
#include <asm/ptrace.h>
-#ifdef CONFIG_64BIT -#define DEFAULT_MAP_WINDOW (UL(1) << (MMAP_VA_BITS - 1)) -#define STACK_TOP_MAX TASK_SIZE_64
#define arch_get_mmap_end(addr, len, flags) \ ({ \ unsigned long mmap_end; \ typeof(addr) _addr = (addr); \ - if ((_addr) == 0 || (IS_ENABLED(CONFIG_COMPAT) && is_compat_task())) \ + if ((_addr) == 0 || \ + (IS_ENABLED(CONFIG_COMPAT) && is_compat_task()) || \ + ((_addr + len) > BIT(VA_BITS - 1))) \ mmap_end = STACK_TOP_MAX; \ - else if ((_addr) >= VA_USER_SV57) \ - mmap_end = STACK_TOP_MAX; \ - else if ((((_addr) >= VA_USER_SV48)) && (VA_BITS >= VA_BITS_SV48)) \ - mmap_end = VA_USER_SV48; \ else \ - mmap_end = VA_USER_SV39; \ + mmap_end = (_addr + len); \ mmap_end; \ })
@@ -39,17 +33,18 @@ typeof(addr) _addr = (addr); \ typeof(base) _base = (base); \ unsigned long rnd_gap = DEFAULT_MAP_WINDOW - (_base); \ - if ((_addr) == 0 || (IS_ENABLED(CONFIG_COMPAT) && is_compat_task())) \ + if ((_addr) == 0 || \ + (IS_ENABLED(CONFIG_COMPAT) && is_compat_task()) || \ + ((_addr + len) > BIT(VA_BITS - 1))) \ mmap_base = (_base); \ - else if (((_addr) >= VA_USER_SV57) && (VA_BITS >= VA_BITS_SV57)) \ - mmap_base = VA_USER_SV57 - rnd_gap; \ - else if ((((_addr) >= VA_USER_SV48)) && (VA_BITS >= VA_BITS_SV48)) \ - mmap_base = VA_USER_SV48 - rnd_gap; \ else \ - mmap_base = VA_USER_SV39 - rnd_gap; \ + mmap_base = (_addr + len) - rnd_gap; \ mmap_base; \ })
+#ifdef CONFIG_64BIT +#define DEFAULT_MAP_WINDOW (UL(1) << (MMAP_VA_BITS - 1)) +#define STACK_TOP_MAX TASK_SIZE_64 #else #define DEFAULT_MAP_WINDOW TASK_SIZE #define STACK_TOP_MAX TASK_SIZE > > I have carefully tested your patch on qemu with sv57. A
bug that
needs to be solved is that mmap with the same hint address without MAP_FIXED set will fail the second time.
Userspace code to reproduce the bug: #include <sys/mman.h>
#include <stdio.h> #include <stdint.h>
void test(char *addr) {
char *res = mmap(addr, 4096, PROT_READ | PROT_WRITE, MAP_ANONYMOUS
MAP_PRIVATE, -1, 0);
printf("hint %p got %p.\n", addr, res); }
int main (void) {
test(1<<30); test(1<<30); test(1<<30); return 0; }
output: hint 0x40000000 got 0x40000000.
hint 0x40000000 got 0xffffffffffffffff. hint 0x40000000 got 0xffffffffffffffff.
output on x86: hint 0x40000000 got 0x40000000.
hint 0x40000000 got 0x7f9171363000. hint 0x40000000 got 0x7f9171362000.
It may need to implement a special arch_get_unmapped_area and
arch_get_unmapped_area_topdown function.
This is because hint address < rnd_gap. I have tried to let mmap_base = min((_addr + len), (base) + TASK_SIZE - DEFAULT_MAP_WINDOW). However it does not work for bottom-up while ulimit -s is unlimited. You said this behavior is expected from patch v2 review. However it brings a new regression even on sv39 systems.
I still don't know the reason why use addr+len as the upper-bound. I think solution like x86/arm64/powerpc provide two address space switch based on whether hint address above the default map window is enough.
Yep this is expected. It is up to the maintainers to decide.
Sorry I forgot to reply to this, I had a buffer sitting around somewhere but I must have lost it.
I think Charlie's approach is the right way to go. Putting my userspace hat on, I'd much rather have my allocations fail rather than silently ignore the hint when there's memory pressure.
If there's some real use case that needs these low hints to be silently ignored under VA pressure then we can try and figure something out that makes those applications work.
I could confirm that this patch has broken chromium's partition allocator on riscv64. The minimal reproduction I use is chromium-mmap.c:
#include <stdio.h> #include <sys/mman.h>
int main() { void* expected = (void*)0x400000000; void* addr = mmap(expected, 17179869184, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0); if (addr != expected) {
It is not valid to assume that the address returned by mmap will be the hint address. If the hint address is not available, mmap will return a different address.
printf("Not expected address: %p != %p\n", addr, expected); } expected = (void*)0x3fffff000; addr = mmap(expected, 17179873280, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0); if (addr != expected) { printf("Not expected address: %p != %p\n", addr, expected); } return 0; }
The second mmap fails with ENOMEM. Manually reverting this commit fixes the issue for me. So I think it's clearly a regression and breaks userspace.
The issue here is that overlapping memory is being requested. This second mmap will never be able to provide an address at 0x3fffff000 with a size of 0x400001000 since mmap just provided an address at 0x400000000 with a size of 0x400000000.
Before this patch, this request causes mmap to return a completely arbitrary value. There is no reason to use a hint address in this manner because the hint can never be respected. Since an arbitrary address is desired, a hint of zero should be used.
This patch causes the behavior to be more deterministic. Instead of providing an arbitrary address, it causes the address to be less than or equal to the hint address. This allows for applications to make assumptions about the returned address.
This code is unfortunately relying on the previously mostly undefined behavior of the hint address in mmap. The goal of this patch is to help developers have more consistent mmap behavior, but maybe it is necessary to hide this behavior behind an mmap flag.
- Charlie
See also https://github.com/riscv-forks/electron/issues/4
- Charlie
Sincerely, Levi
On 2024-08-20 01:00, Charlie Jenkins wrote:
On Mon, Aug 19, 2024 at 01:55:57PM +0800, Levi Zim wrote:
On 2024-03-22 22:06, Palmer Dabbelt wrote:
On Thu, 01 Feb 2024 18:28:06 PST (-0800), Charlie Jenkins wrote:
On Wed, Jan 31, 2024 at 11:59:43PM +0800, Yangyu Chen wrote:
On Wed, 2024-01-31 at 22:41 +0800, Yangyu Chen wrote:
On Tue, 2024-01-30 at 17:07 -0800, Charlie Jenkins wrote: > On riscv it is guaranteed that the address returned by mmap is less > than > the hint address. Allow mmap to return an address all the way up to > addr, if provided, rather than just up to the lower address space. >>> This provides a performance benefit as well, allowing
mmap to exit
> after > checking that the address is in range rather than searching for a > valid > address. >>> It is possible to provide an address that uses at most the same > number > of bits, however it is significantly more computationally expensive > to > provide that number rather than setting the max to be the hint > address. > There is the instruction clz/clzw in Zbb that returns the highest > set > bit > which could be used to performantly implement this, but it would > still > be slower than the current implementation. At worst case, half of > the > address would not be able to be allocated when a hint address is > provided. >>> Signed-off-by: Charlie Jenkinscharlie@rivosinc.com > --- > arch/riscv/include/asm/processor.h | 27 +++++++++++--------------- > - > 1 file changed, 11 insertions(+), 16 deletions(-) >>> diff --git a/arch/riscv/include/asm/processor.h > b/arch/riscv/include/asm/processor.h > index f19f861cda54..8ece7a8f0e18 100644 > --- a/arch/riscv/include/asm/processor.h > +++ b/arch/riscv/include/asm/processor.h > @@ -14,22 +14,16 @@ > > #include <asm/ptrace.h> > > -#ifdef CONFIG_64BIT > -#define DEFAULT_MAP_WINDOW (UL(1) << (MMAP_VA_BITS - 1)) > -#define STACK_TOP_MAX TASK_SIZE_64 > - > #define arch_get_mmap_end(addr, len, flags) \ > ({ \ > unsigned long > mmap_end; \ > typeof(addr) _addr = (addr); \ > - if ((_addr) == 0 || (IS_ENABLED(CONFIG_COMPAT) && > is_compat_task())) \ > + if ((_addr) == 0 || \ > + (IS_ENABLED(CONFIG_COMPAT) && is_compat_task()) || \ > + ((_addr + len) > BIT(VA_BITS - > 1))) \ > mmap_end = STACK_TOP_MAX; \ > - else if ((_addr) >= VA_USER_SV57) \ > - mmap_end = STACK_TOP_MAX; \ > - else if ((((_addr) >= VA_USER_SV48)) && (VA_BITS >= > VA_BITS_SV48)) \ > - mmap_end = VA_USER_SV48; \ > else \ > - mmap_end = VA_USER_SV39; \ > + mmap_end = (_addr + len); \ > mmap_end; \ > }) > > @@ -39,17 +33,18 @@ > typeof(addr) _addr = (addr); \ > typeof(base) _base = (base); \ > unsigned long rnd_gap = DEFAULT_MAP_WINDOW - (_base); \ > - if ((_addr) == 0 || (IS_ENABLED(CONFIG_COMPAT) && > is_compat_task())) \ > + if ((_addr) == 0 || \ > + (IS_ENABLED(CONFIG_COMPAT) && is_compat_task()) || \ > + ((_addr + len) > BIT(VA_BITS - > 1))) \ > mmap_base = (_base); \ > - else if (((_addr) >= VA_USER_SV57) && (VA_BITS >= > VA_BITS_SV57)) \ > - mmap_base = VA_USER_SV57 - rnd_gap; \ > - else if ((((_addr) >= VA_USER_SV48)) && (VA_BITS >= > VA_BITS_SV48)) \ > - mmap_base = VA_USER_SV48 - rnd_gap; \ > else \ > - mmap_base = VA_USER_SV39 - rnd_gap; \ > + mmap_base = (_addr + len) - rnd_gap; \ > mmap_base; \ > }) > > +#ifdef CONFIG_64BIT > +#define DEFAULT_MAP_WINDOW (UL(1) << (MMAP_VA_BITS - 1)) > +#define STACK_TOP_MAX TASK_SIZE_64 > #else > #define DEFAULT_MAP_WINDOW TASK_SIZE > #define STACK_TOP_MAX TASK_SIZE >>> I have carefully tested your patch on qemu with sv57. A
bug that
needs to be solved is that mmap with the same hint address without MAP_FIXED set will fail the second time. > Userspace code to reproduce the bug: > #include <sys/mman.h> #include <stdio.h> #include <stdint.h> > void test(char *addr) { char *res = mmap(addr, 4096, PROT_READ | PROT_WRITE, MAP_ANONYMOUS > MAP_PRIVATE, -1, 0); printf("hint %p got %p.\n", addr, res); } > int main (void) { test(1<<30); test(1<<30); test(1<<30); return 0; } > output: > hint 0x40000000 got 0x40000000. hint 0x40000000 got 0xffffffffffffffff. hint 0x40000000 got 0xffffffffffffffff. > output on x86: > hint 0x40000000 got 0x40000000. hint 0x40000000 got 0x7f9171363000. hint 0x40000000 got 0x7f9171362000. > It may need to implement a special arch_get_unmapped_area and arch_get_unmapped_area_topdown function.
This is because hint address < rnd_gap. I have tried to let mmap_base = min((_addr + len), (base) + TASK_SIZE - DEFAULT_MAP_WINDOW). However it does not work for bottom-up while ulimit -s is unlimited. You said this behavior is expected from patch v2 review. However it brings a new regression even on sv39 systems.
I still don't know the reason why use addr+len as the upper-bound. I think solution like x86/arm64/powerpc provide two address space switch based on whether hint address above the default map window is enough.
Yep this is expected. It is up to the maintainers to decide.
Sorry I forgot to reply to this, I had a buffer sitting around somewhere but I must have lost it.
I think Charlie's approach is the right way to go. Putting my userspace hat on, I'd much rather have my allocations fail rather than silently ignore the hint when there's memory pressure.
If there's some real use case that needs these low hints to be silently ignored under VA pressure then we can try and figure something out that makes those applications work.
I could confirm that this patch has broken chromium's partition allocator on riscv64. The minimal reproduction I use is chromium-mmap.c:
#include <stdio.h> #include <sys/mman.h>
int main() { void* expected = (void*)0x400000000; void* addr = mmap(expected, 17179869184, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0); if (addr != expected) {
It is not valid to assume that the address returned by mmap will be the hint address. If the hint address is not available, mmap will return a different address.
Oh, sorry I didn't make it clear what is the expected behavior. The printf here is solely for debugging purpose and I don't mean that chromium expect it will get the hint address. The expected behavior is that both the two mmap calls will succeed.
printf("Not expected address: %p != %p\n", addr, expected); } expected = (void*)0x3fffff000; addr = mmap(expected, 17179873280, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0); if (addr != expected) { printf("Not expected address: %p != %p\n", addr, expected); } return 0; }
The second mmap fails with ENOMEM. Manually reverting this commit fixes the issue for me. So I think it's clearly a regression and breaks userspace.
The issue here is that overlapping memory is being requested. This second mmap will never be able to provide an address at 0x3fffff000 with a size of 0x400001000 since mmap just provided an address at 0x400000000 with a size of 0x400000000.
Before this patch, this request causes mmap to return a completely arbitrary value. There is no reason to use a hint address in this manner because the hint can never be respected. Since an arbitrary address is desired, a hint of zero should be used.
This patch causes the behavior to be more deterministic. Instead of providing an arbitrary address, it causes the address to be less than or equal to the hint address. This allows for applications to make assumptions about the returned address.
About the overlap, of course the partition allocator's request for overlapped vma seems unreasonable.
But I still don't quite understand why mmap cannot use an address higher than the hint address. The hint address, after all, is a hint, not a requirement.
Quoting the man page:
If another mapping already exists there, the kernel picks a new address that may or may not depend on the hint. The address of the new mapping is returned as the result of the call.
So for casual programmers that only reads man page but not architecture specific kernel documentation, the current behavior of mmap on riscv64 failing on overlapped address ranges are quite surprising IMO.
And quoting the man page again about the errno:
ENOMEM No memory is available.
ENOMEM The process's maximum number of mappings would have been exceeded. This error can also occur for munmap(), when unmapping a region in the middle of an existing mapping, since this results in two smaller mappings on either side of the region being unmapped.
ENOMEM (since Linux 4.7) The process's RLIMIT_DATA limit, described in getrlimit(2), would have been exceeded.
ENOMEM We don't like addr, because it exceeds the virtual address space of the CPU.
There's no matching description for the ENOMEM returned here. I would suggest removing "because it exceeds the virtual address space of the CPU." from the last item if the ENOMEM behavior here is expected.
This code is unfortunately relying on the previously mostly undefined behavior of the hint address in mmap.
Although I haven't read the code of chromium's partition allocator to judge whether it should be improved or fixed for riscv64, I do know that the kernel "don't break userspace" and "never EVER blame the user programs".
The goal of this patch is to help developers have more consistent mmap behavior, but maybe it is necessary to hide this behavior behind an mmap flag.
Thank you for helping to shape a more consistent mmap behavior. I think this should be fixed ASAP either by allowing the hint address to be ignored (as suggested by the Linux man page), or hide this behavior behind an mmap flag as you said.
- Charlie
See alsohttps://github.com/riscv-forks/electron/issues/4
- Charlie
Sincerely, Levi
I accidentally introduced some HTML into this reply so this reply is resent as plain text.
Sincerely, Levi
On Mon, 19 Aug 2024 18:58:18 PDT (-0700), rsworktech@outlook.com wrote:
On 2024-08-20 01:00, Charlie Jenkins wrote:
On Mon, Aug 19, 2024 at 01:55:57PM +0800, Levi Zim wrote:
On 2024-03-22 22:06, Palmer Dabbelt wrote:
On Thu, 01 Feb 2024 18:28:06 PST (-0800), Charlie Jenkins wrote:
On Wed, Jan 31, 2024 at 11:59:43PM +0800, Yangyu Chen wrote:
On Wed, 2024-01-31 at 22:41 +0800, Yangyu Chen wrote: > On Tue, 2024-01-30 at 17:07 -0800, Charlie Jenkins wrote: >> On riscv it is guaranteed that the address returned by mmap is less >> than >> the hint address. Allow mmap to return an address all the way up to >> addr, if provided, rather than just up to the lower address space. >>>> This provides a performance benefit as well, allowing mmap to exit >> after >> checking that the address is in range rather than searching for a >> valid >> address. >>>> It is possible to provide an address that uses at most the same >> number >> of bits, however it is significantly more computationally expensive >> to >> provide that number rather than setting the max to be the hint >> address. >> There is the instruction clz/clzw in Zbb that returns the highest >> set >> bit >> which could be used to performantly implement this, but it would >> still >> be slower than the current implementation. At worst case, half of >> the >> address would not be able to be allocated when a hint address is >> provided. >>>> Signed-off-by: Charlie Jenkinscharlie@rivosinc.com >> --- >> arch/riscv/include/asm/processor.h | 27 +++++++++++--------------- >> - >> 1 file changed, 11 insertions(+), 16 deletions(-) >>>> diff --git a/arch/riscv/include/asm/processor.h >> b/arch/riscv/include/asm/processor.h >> index f19f861cda54..8ece7a8f0e18 100644 >> --- a/arch/riscv/include/asm/processor.h >> +++ b/arch/riscv/include/asm/processor.h >> @@ -14,22 +14,16 @@ >> >> #include <asm/ptrace.h> >> >> -#ifdef CONFIG_64BIT >> -#define DEFAULT_MAP_WINDOW (UL(1) << (MMAP_VA_BITS - 1)) >> -#define STACK_TOP_MAX TASK_SIZE_64 >> - >> #define arch_get_mmap_end(addr, len, flags) \ >> ({ \ >> unsigned long >> mmap_end; \ >> typeof(addr) _addr = (addr); \ >> - if ((_addr) == 0 || (IS_ENABLED(CONFIG_COMPAT) && >> is_compat_task())) \ >> + if ((_addr) == 0 || \ >> + (IS_ENABLED(CONFIG_COMPAT) && is_compat_task()) || \ >> + ((_addr + len) > BIT(VA_BITS - >> 1))) \ >> mmap_end = STACK_TOP_MAX; \ >> - else if ((_addr) >= VA_USER_SV57) \ >> - mmap_end = STACK_TOP_MAX; \ >> - else if ((((_addr) >= VA_USER_SV48)) && (VA_BITS >= >> VA_BITS_SV48)) \ >> - mmap_end = VA_USER_SV48; \ >> else \ >> - mmap_end = VA_USER_SV39; \ >> + mmap_end = (_addr + len); \ >> mmap_end; \ >> }) >> >> @@ -39,17 +33,18 @@ >> typeof(addr) _addr = (addr); \ >> typeof(base) _base = (base); \ >> unsigned long rnd_gap = DEFAULT_MAP_WINDOW - (_base); \ >> - if ((_addr) == 0 || (IS_ENABLED(CONFIG_COMPAT) && >> is_compat_task())) \ >> + if ((_addr) == 0 || \ >> + (IS_ENABLED(CONFIG_COMPAT) && is_compat_task()) || \ >> + ((_addr + len) > BIT(VA_BITS - >> 1))) \ >> mmap_base = (_base); \ >> - else if (((_addr) >= VA_USER_SV57) && (VA_BITS >= >> VA_BITS_SV57)) \ >> - mmap_base = VA_USER_SV57 - rnd_gap; \ >> - else if ((((_addr) >= VA_USER_SV48)) && (VA_BITS >= >> VA_BITS_SV48)) \ >> - mmap_base = VA_USER_SV48 - rnd_gap; \ >> else \ >> - mmap_base = VA_USER_SV39 - rnd_gap; \ >> + mmap_base = (_addr + len) - rnd_gap; \ >> mmap_base; \ >> }) >> >> +#ifdef CONFIG_64BIT >> +#define DEFAULT_MAP_WINDOW (UL(1) << (MMAP_VA_BITS - 1)) >> +#define STACK_TOP_MAX TASK_SIZE_64 >> #else >> #define DEFAULT_MAP_WINDOW TASK_SIZE >> #define STACK_TOP_MAX TASK_SIZE >>>> I have carefully tested your patch on qemu with sv57. A bug that > needs > to be solved is that mmap with the same hint address without > MAP_FIXED > set will fail the second time. >> Userspace code to reproduce the bug: >> #include <sys/mman.h> > #include <stdio.h> > #include <stdint.h> >> void test(char *addr) { > char *res = mmap(addr, 4096, PROT_READ | PROT_WRITE, > MAP_ANONYMOUS >> MAP_PRIVATE, -1, 0); > printf("hint %p got %p.\n", addr, res); > } >> int main (void) { > test(1<<30); > test(1<<30); > test(1<<30); > return 0; > } >> output: >> hint 0x40000000 got 0x40000000. > hint 0x40000000 got 0xffffffffffffffff. > hint 0x40000000 got 0xffffffffffffffff. >> output on x86: >> hint 0x40000000 got 0x40000000. > hint 0x40000000 got 0x7f9171363000. > hint 0x40000000 got 0x7f9171362000. >> It may need to implement a special arch_get_unmapped_area and > arch_get_unmapped_area_topdown function. > This is because hint address < rnd_gap. I have tried to let mmap_base = min((_addr + len), (base) + TASK_SIZE - DEFAULT_MAP_WINDOW). However it does not work for bottom-up while ulimit -s is unlimited. You said this behavior is expected from patch v2 review. However it brings a new regression even on sv39 systems.
I still don't know the reason why use addr+len as the upper-bound. I think solution like x86/arm64/powerpc provide two address space switch based on whether hint address above the default map window is enough.
Yep this is expected. It is up to the maintainers to decide.
Sorry I forgot to reply to this, I had a buffer sitting around somewhere but I must have lost it.
I think Charlie's approach is the right way to go. Putting my userspace hat on, I'd much rather have my allocations fail rather than silently ignore the hint when there's memory pressure.
If there's some real use case that needs these low hints to be silently ignored under VA pressure then we can try and figure something out that makes those applications work.
I could confirm that this patch has broken chromium's partition allocator on riscv64. The minimal reproduction I use is chromium-mmap.c:
#include <stdio.h> #include <sys/mman.h>
int main() { void* expected = (void*)0x400000000; void* addr = mmap(expected, 17179869184, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0); if (addr != expected) {
It is not valid to assume that the address returned by mmap will be the hint address. If the hint address is not available, mmap will return a different address.
Oh, sorry I didn't make it clear what is the expected behavior. The printf here is solely for debugging purpose and I don't mean that chromium expect it will get the hint address. The expected behavior is that both the two mmap calls will succeed.
printf("Not expected address: %p != %p\n", addr, expected); } expected = (void*)0x3fffff000; addr = mmap(expected, 17179873280, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0); if (addr != expected) { printf("Not expected address: %p != %p\n", addr, expected); } return 0; }
The second mmap fails with ENOMEM. Manually reverting this commit fixes the issue for me. So I think it's clearly a regression and breaks userspace.
The issue here is that overlapping memory is being requested. This second mmap will never be able to provide an address at 0x3fffff000 with a size of 0x400001000 since mmap just provided an address at 0x400000000 with a size of 0x400000000.
Before this patch, this request causes mmap to return a completely arbitrary value. There is no reason to use a hint address in this manner because the hint can never be respected. Since an arbitrary address is desired, a hint of zero should be used.
This patch causes the behavior to be more deterministic. Instead of providing an arbitrary address, it causes the address to be less than or equal to the hint address. This allows for applications to make assumptions about the returned address.
About the overlap, of course the partition allocator's request for overlapped vma seems unreasonable.
But I still don't quite understand why mmap cannot use an address higher than the hint address. The hint address, after all, is a hint, not a requirement.
Quoting the man page:
If another mapping already exists there, the kernel picks a new address that may or may not depend on the hint. The address of the new mapping is returned as the result of the call.
So for casual programmers that only reads man page but not architecture specific kernel documentation, the current behavior of mmap on riscv64 failing on overlapped address ranges are quite surprising IMO.
And quoting the man page again about the errno:
ENOMEM No memory is available.
ENOMEM The process's maximum number of mappings would have been exceeded. This error can also occur for munmap(), when unmapping a region in the middle of an existing mapping, since this results in two smaller mappings on either side of the region being unmapped.
ENOMEM (since Linux 4.7) The process's RLIMIT_DATA limit, described in getrlimit(2), would have been exceeded.
ENOMEM We don't like addr, because it exceeds the virtual address space of the CPU.
There's no matching description for the ENOMEM returned here. I would suggest removing "because it exceeds the virtual address space of the CPU." from the last item if the ENOMEM behavior here is expected.
This code is unfortunately relying on the previously mostly undefined behavior of the hint address in mmap.
Although I haven't read the code of chromium's partition allocator to judge whether it should be improved or fixed for riscv64, I do know that the kernel "don't break userspace" and "never EVER blame the user programs".
Ya, sorry for breaking stuff.
The goal here was to move to the mmap flag behavor similar to what arm64 and x86 have, as that was done in a way that didn't appear to break userspace -- or at least any real userspace programs. IIRC that first test was pretty broken (it actually depended on the hint address), but sounds like that's not the case.
I think maybe this is just luck: we didn't chunk the address space up, we're just hinting on every bit, so we're just more likely to hit the exhaustion. Doesn't really matter, though, as if it's breaking stuff so we've got to deal with it.
Charlie and I are just talking, and best we can come up with is to move to the behavior where we fall back to larger allocation regions when there's no space in the smaller allocation region. Charlie's going to try and throw together a patch for that, hopefully it'll sort things out.
The goal of this patch is to help developers have more consistent mmap behavior, but maybe it is necessary to hide this behavior behind an mmap flag.
Thank you for helping to shape a more consistent mmap behavior. I think this should be fixed ASAP either by allowing the hint address to be ignored (as suggested by the Linux man page), or hide this behavior behind an mmap flag as you said.
- Charlie
See alsohttps://github.com/riscv-forks/electron/issues/4
- Charlie
Sincerely, Levi
I accidentally introduced some HTML into this reply so this reply is resent as plain text.
Sincerely, Levi
On Aug 22, 2024, at 06:17, Palmer Dabbelt palmer@dabbelt.com wrote:
On Mon, 19 Aug 2024 18:58:18 PDT (-0700), rsworktech@outlook.com wrote:
On 2024-08-20 01:00, Charlie Jenkins wrote:
On Mon, Aug 19, 2024 at 01:55:57PM +0800, Levi Zim wrote:
On 2024-03-22 22:06, Palmer Dabbelt wrote:
On Thu, 01 Feb 2024 18:28:06 PST (-0800), Charlie Jenkins wrote:
On Wed, Jan 31, 2024 at 11:59:43PM +0800, Yangyu Chen wrote: > On Wed, 2024-01-31 at 22:41 +0800, Yangyu Chen wrote: >> On Tue, 2024-01-30 at 17:07 -0800, Charlie Jenkins wrote: >>> On riscv it is guaranteed that the address returned by mmap is less >>> than >>> the hint address. Allow mmap to return an address all the way up to >>> addr, if provided, rather than just up to the lower address space. >>>>> This provides a performance benefit as well, allowing > mmap to exit >>> after >>> checking that the address is in range rather than searching for a >>> valid >>> address. >>>>> It is possible to provide an address that uses at most the same >>> number >>> of bits, however it is significantly more computationally expensive >>> to >>> provide that number rather than setting the max to be the hint >>> address. >>> There is the instruction clz/clzw in Zbb that returns the highest >>> set >>> bit >>> which could be used to performantly implement this, but it would >>> still >>> be slower than the current implementation. At worst case, half of >>> the >>> address would not be able to be allocated when a hint address is >>> provided. >>>>> Signed-off-by: Charlie Jenkinscharlie@rivosinc.com >>> --- >>> arch/riscv/include/asm/processor.h | 27 +++++++++++--------------- >>> - >>> 1 file changed, 11 insertions(+), 16 deletions(-) >>>>> diff --git a/arch/riscv/include/asm/processor.h >>> b/arch/riscv/include/asm/processor.h >>> index f19f861cda54..8ece7a8f0e18 100644 >>> --- a/arch/riscv/include/asm/processor.h >>> +++ b/arch/riscv/include/asm/processor.h >>> @@ -14,22 +14,16 @@ >>> >>> #include <asm/ptrace.h> >>> >>> -#ifdef CONFIG_64BIT >>> -#define DEFAULT_MAP_WINDOW (UL(1) << (MMAP_VA_BITS - 1)) >>> -#define STACK_TOP_MAX TASK_SIZE_64 >>> - >>> #define arch_get_mmap_end(addr, len, flags) \ >>> ({ \ >>> unsigned long >>> mmap_end; \ >>> typeof(addr) _addr = (addr); \ >>> - if ((_addr) == 0 || (IS_ENABLED(CONFIG_COMPAT) && >>> is_compat_task())) \ >>> + if ((_addr) == 0 || \ >>> + (IS_ENABLED(CONFIG_COMPAT) && is_compat_task()) || \ >>> + ((_addr + len) > BIT(VA_BITS - >>> 1))) \ >>> mmap_end = STACK_TOP_MAX; \ >>> - else if ((_addr) >= VA_USER_SV57) \ >>> - mmap_end = STACK_TOP_MAX; \ >>> - else if ((((_addr) >= VA_USER_SV48)) && (VA_BITS >= >>> VA_BITS_SV48)) \ >>> - mmap_end = VA_USER_SV48; \ >>> else \ >>> - mmap_end = VA_USER_SV39; \ >>> + mmap_end = (_addr + len); \ >>> mmap_end; \ >>> }) >>> >>> @@ -39,17 +33,18 @@ >>> typeof(addr) _addr = (addr); \ >>> typeof(base) _base = (base); \ >>> unsigned long rnd_gap = DEFAULT_MAP_WINDOW - (_base); \ >>> - if ((_addr) == 0 || (IS_ENABLED(CONFIG_COMPAT) && >>> is_compat_task())) \ >>> + if ((_addr) == 0 || \ >>> + (IS_ENABLED(CONFIG_COMPAT) && is_compat_task()) || \ >>> + ((_addr + len) > BIT(VA_BITS - >>> 1))) \ >>> mmap_base = (_base); \ >>> - else if (((_addr) >= VA_USER_SV57) && (VA_BITS >= >>> VA_BITS_SV57)) \ >>> - mmap_base = VA_USER_SV57 - rnd_gap; \ >>> - else if ((((_addr) >= VA_USER_SV48)) && (VA_BITS >= >>> VA_BITS_SV48)) \ >>> - mmap_base = VA_USER_SV48 - rnd_gap; \ >>> else \ >>> - mmap_base = VA_USER_SV39 - rnd_gap; \ >>> + mmap_base = (_addr + len) - rnd_gap; \ >>> mmap_base; \ >>> }) >>> >>> +#ifdef CONFIG_64BIT >>> +#define DEFAULT_MAP_WINDOW (UL(1) << (MMAP_VA_BITS - 1)) >>> +#define STACK_TOP_MAX TASK_SIZE_64 >>> #else >>> #define DEFAULT_MAP_WINDOW TASK_SIZE >>> #define STACK_TOP_MAX TASK_SIZE >>>>> I have carefully tested your patch on qemu with sv57. A > bug that >> needs >> to be solved is that mmap with the same hint address without >> MAP_FIXED >> set will fail the second time. >>> Userspace code to reproduce the bug: >>> #include <sys/mman.h> >> #include <stdio.h> >> #include <stdint.h> >>> void test(char *addr) { >> char *res = mmap(addr, 4096, PROT_READ | PROT_WRITE, >> MAP_ANONYMOUS >>> MAP_PRIVATE, -1, 0); >> printf("hint %p got %p.\n", addr, res); >> } >>> int main (void) { >> test(1<<30); >> test(1<<30); >> test(1<<30); >> return 0; >> } >>> output: >>> hint 0x40000000 got 0x40000000. >> hint 0x40000000 got 0xffffffffffffffff. >> hint 0x40000000 got 0xffffffffffffffff. >>> output on x86: >>> hint 0x40000000 got 0x40000000. >> hint 0x40000000 got 0x7f9171363000. >> hint 0x40000000 got 0x7f9171362000. >>> It may need to implement a special arch_get_unmapped_area and >> arch_get_unmapped_area_topdown function. >> > This is because hint address < rnd_gap. I have tried to let mmap_base = > min((_addr + len), (base) + TASK_SIZE - DEFAULT_MAP_WINDOW). However it > does not work for bottom-up while ulimit -s is unlimited. You said this > behavior is expected from patch v2 review. However it brings a new > regression even on sv39 systems. > > I still don't know the reason why use addr+len as the upper-bound. I > think solution like x86/arm64/powerpc provide two address space switch > based on whether hint address above the default map window is enough. > Yep this is expected. It is up to the maintainers to decide.
Sorry I forgot to reply to this, I had a buffer sitting around somewhere but I must have lost it.
I think Charlie's approach is the right way to go. Putting my userspace hat on, I'd much rather have my allocations fail rather than silently ignore the hint when there's memory pressure.
If there's some real use case that needs these low hints to be silently ignored under VA pressure then we can try and figure something out that makes those applications work.
I could confirm that this patch has broken chromium's partition allocator on riscv64. The minimal reproduction I use is chromium-mmap.c:
#include <stdio.h> #include <sys/mman.h>
int main() { void* expected = (void*)0x400000000; void* addr = mmap(expected, 17179869184, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0); if (addr != expected) {
It is not valid to assume that the address returned by mmap will be the hint address. If the hint address is not available, mmap will return a different address.
Oh, sorry I didn't make it clear what is the expected behavior. The printf here is solely for debugging purpose and I don't mean that chromium expect it will get the hint address. The expected behavior is that both the two mmap calls will succeed.
printf("Not expected address: %p != %p\n", addr, expected); } expected = (void*)0x3fffff000; addr = mmap(expected, 17179873280, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS,
-1, 0); if (addr != expected) { printf("Not expected address: %p != %p\n", addr, expected); } return 0; }
The second mmap fails with ENOMEM. Manually reverting this commit fixes the issue for me. So I think it's clearly a regression and breaks userspace.
The issue here is that overlapping memory is being requested. This second mmap will never be able to provide an address at 0x3fffff000 with a size of 0x400001000 since mmap just provided an address at 0x400000000 with a size of 0x400000000.
Before this patch, this request causes mmap to return a completely arbitrary value. There is no reason to use a hint address in this manner because the hint can never be respected. Since an arbitrary address is desired, a hint of zero should be used.
This patch causes the behavior to be more deterministic. Instead of providing an arbitrary address, it causes the address to be less than or equal to the hint address. This allows for applications to make assumptions about the returned address.
About the overlap, of course the partition allocator's request for overlapped vma seems unreasonable.
But I still don't quite understand why mmap cannot use an address higher than the hint address. The hint address, after all, is a hint, not a requirement.
Quoting the man page:
If another mapping already exists there, the kernel picks a new address that may or may not depend on the hint. The address of the new mapping is returned as the result of the call.
So for casual programmers that only reads man page but not architecture specific kernel documentation, the current behavior of mmap on riscv64 failing on overlapped address ranges are quite surprising IMO.
And quoting the man page again about the errno:
ENOMEM No memory is available. ENOMEM The process's maximum number of mappings would have been exceeded. This error can also occur for munmap(), when unmapping a region in the middle of an existing mapping, since this results in two smaller mappings on either side of the region being unmapped. ENOMEM (since Linux 4.7) The process's RLIMIT_DATA limit, described in getrlimit(2), would have been exceeded. ENOMEM We don't like addr, because it exceeds the virtual address space of the CPU.
There's no matching description for the ENOMEM returned here. I would suggest removing "because it exceeds the virtual address space of the CPU." from the last item if the ENOMEM behavior here is expected.
This code is unfortunately relying on the previously mostly undefined behavior of the hint address in mmap.
Although I haven't read the code of chromium's partition allocator to judge whether it should be improved or fixed for riscv64, I do know that the kernel "don't break userspace" and "never EVER blame the user programs".
Ya, sorry for breaking stuff.
The goal here was to move to the mmap flag behavor similar to what arm64 and x86 have, as that was done in a way that didn't appear to break userspace -- or at least any real userspace programs. IIRC that first test was pretty broken (it actually depended on the hint address), but sounds like that's not the case.
I think maybe this is just luck: we didn't chunk the address space up, we're just hinting on every bit, so we're just more likely to hit the exhaustion. Doesn't really matter, though, as if it's breaking stuff so we've got to deal with it.
Charlie and I are just talking, and best we can come up with is to move to the behavior where we fall back to larger allocation regions when there's no space in the smaller allocation region.
For this solution, the only difference from the mmap behavior of x86 and aarch64 is that we will first try to allocate some memory from an address less or equal to the request address + size. But for most cases, I think there is no need to do that, especially for those addresses < BIT(47), as most program works fine on x86-64, which has 47bit available userspace address space to use. And for that program that wants an address < BIT(32), we already have MAP_32BIT now.
I think we can just fix like that patch: https://lore.kernel.org/lkml/tencent_B2D0435BC011135736262764B511994F4805@qq...
Charlie's going to try and throw together a patch for that, hopefully it'll sort things out.
The goal of this patch is to help developers have more consistent mmap behavior, but maybe it is necessary to hide this behavior behind an mmap flag.
Thank you for helping to shape a more consistent mmap behavior. I think this should be fixed ASAP either by allowing the hint address to be ignored (as suggested by the Linux man page), or hide this behavior behind an mmap flag as you said.
- Charlie
See alsohttps://github.com/riscv-forks/electron/issues/4
- Charlie
Sincerely, Levi
I accidentally introduced some HTML into this reply so this reply is resent as plain text.
Sincerely, Levi
On Thu, Aug 22, 2024 at 10:51:54AM +0800, Yangyu Chen wrote:
On Aug 22, 2024, at 06:17, Palmer Dabbelt palmer@dabbelt.com wrote:
On Mon, 19 Aug 2024 18:58:18 PDT (-0700), rsworktech@outlook.com wrote:
On 2024-08-20 01:00, Charlie Jenkins wrote:
On Mon, Aug 19, 2024 at 01:55:57PM +0800, Levi Zim wrote:
On 2024-03-22 22:06, Palmer Dabbelt wrote:
On Thu, 01 Feb 2024 18:28:06 PST (-0800), Charlie Jenkins wrote: > On Wed, Jan 31, 2024 at 11:59:43PM +0800, Yangyu Chen wrote: >> On Wed, 2024-01-31 at 22:41 +0800, Yangyu Chen wrote: >>> On Tue, 2024-01-30 at 17:07 -0800, Charlie Jenkins wrote: >>>> On riscv it is guaranteed that the address returned by mmap is less >>>> than >>>> the hint address. Allow mmap to return an address all the way up to >>>> addr, if provided, rather than just up to the lower address space. >>>>>> This provides a performance benefit as well, allowing >> mmap to exit >>>> after >>>> checking that the address is in range rather than searching for a >>>> valid >>>> address. >>>>>> It is possible to provide an address that uses at most the same >>>> number >>>> of bits, however it is significantly more computationally expensive >>>> to >>>> provide that number rather than setting the max to be the hint >>>> address. >>>> There is the instruction clz/clzw in Zbb that returns the highest >>>> set >>>> bit >>>> which could be used to performantly implement this, but it would >>>> still >>>> be slower than the current implementation. At worst case, half of >>>> the >>>> address would not be able to be allocated when a hint address is >>>> provided. >>>>>> Signed-off-by: Charlie Jenkinscharlie@rivosinc.com >>>> --- >>>> arch/riscv/include/asm/processor.h | 27 +++++++++++--------------- >>>> - >>>> 1 file changed, 11 insertions(+), 16 deletions(-) >>>>>> diff --git a/arch/riscv/include/asm/processor.h >>>> b/arch/riscv/include/asm/processor.h >>>> index f19f861cda54..8ece7a8f0e18 100644 >>>> --- a/arch/riscv/include/asm/processor.h >>>> +++ b/arch/riscv/include/asm/processor.h >>>> @@ -14,22 +14,16 @@ >>>> >>>> #include <asm/ptrace.h> >>>> >>>> -#ifdef CONFIG_64BIT >>>> -#define DEFAULT_MAP_WINDOW (UL(1) << (MMAP_VA_BITS - 1)) >>>> -#define STACK_TOP_MAX TASK_SIZE_64 >>>> - >>>> #define arch_get_mmap_end(addr, len, flags) \ >>>> ({ \ >>>> unsigned long >>>> mmap_end; \ >>>> typeof(addr) _addr = (addr); \ >>>> - if ((_addr) == 0 || (IS_ENABLED(CONFIG_COMPAT) && >>>> is_compat_task())) \ >>>> + if ((_addr) == 0 || \ >>>> + (IS_ENABLED(CONFIG_COMPAT) && is_compat_task()) || \ >>>> + ((_addr + len) > BIT(VA_BITS - >>>> 1))) \ >>>> mmap_end = STACK_TOP_MAX; \ >>>> - else if ((_addr) >= VA_USER_SV57) \ >>>> - mmap_end = STACK_TOP_MAX; \ >>>> - else if ((((_addr) >= VA_USER_SV48)) && (VA_BITS >= >>>> VA_BITS_SV48)) \ >>>> - mmap_end = VA_USER_SV48; \ >>>> else \ >>>> - mmap_end = VA_USER_SV39; \ >>>> + mmap_end = (_addr + len); \ >>>> mmap_end; \ >>>> }) >>>> >>>> @@ -39,17 +33,18 @@ >>>> typeof(addr) _addr = (addr); \ >>>> typeof(base) _base = (base); \ >>>> unsigned long rnd_gap = DEFAULT_MAP_WINDOW - (_base); \ >>>> - if ((_addr) == 0 || (IS_ENABLED(CONFIG_COMPAT) && >>>> is_compat_task())) \ >>>> + if ((_addr) == 0 || \ >>>> + (IS_ENABLED(CONFIG_COMPAT) && is_compat_task()) || \ >>>> + ((_addr + len) > BIT(VA_BITS - >>>> 1))) \ >>>> mmap_base = (_base); \ >>>> - else if (((_addr) >= VA_USER_SV57) && (VA_BITS >= >>>> VA_BITS_SV57)) \ >>>> - mmap_base = VA_USER_SV57 - rnd_gap; \ >>>> - else if ((((_addr) >= VA_USER_SV48)) && (VA_BITS >= >>>> VA_BITS_SV48)) \ >>>> - mmap_base = VA_USER_SV48 - rnd_gap; \ >>>> else \ >>>> - mmap_base = VA_USER_SV39 - rnd_gap; \ >>>> + mmap_base = (_addr + len) - rnd_gap; \ >>>> mmap_base; \ >>>> }) >>>> >>>> +#ifdef CONFIG_64BIT >>>> +#define DEFAULT_MAP_WINDOW (UL(1) << (MMAP_VA_BITS - 1)) >>>> +#define STACK_TOP_MAX TASK_SIZE_64 >>>> #else >>>> #define DEFAULT_MAP_WINDOW TASK_SIZE >>>> #define STACK_TOP_MAX TASK_SIZE >>>>>> I have carefully tested your patch on qemu with sv57. A >> bug that >>> needs >>> to be solved is that mmap with the same hint address without >>> MAP_FIXED >>> set will fail the second time. >>>> Userspace code to reproduce the bug: >>>> #include <sys/mman.h> >>> #include <stdio.h> >>> #include <stdint.h> >>>> void test(char *addr) { >>> char *res = mmap(addr, 4096, PROT_READ | PROT_WRITE, >>> MAP_ANONYMOUS >>>> MAP_PRIVATE, -1, 0); >>> printf("hint %p got %p.\n", addr, res); >>> } >>>> int main (void) { >>> test(1<<30); >>> test(1<<30); >>> test(1<<30); >>> return 0; >>> } >>>> output: >>>> hint 0x40000000 got 0x40000000. >>> hint 0x40000000 got 0xffffffffffffffff. >>> hint 0x40000000 got 0xffffffffffffffff. >>>> output on x86: >>>> hint 0x40000000 got 0x40000000. >>> hint 0x40000000 got 0x7f9171363000. >>> hint 0x40000000 got 0x7f9171362000. >>>> It may need to implement a special arch_get_unmapped_area and >>> arch_get_unmapped_area_topdown function. >>> >> This is because hint address < rnd_gap. I have tried to let mmap_base = >> min((_addr + len), (base) + TASK_SIZE - DEFAULT_MAP_WINDOW). However it >> does not work for bottom-up while ulimit -s is unlimited. You said this >> behavior is expected from patch v2 review. However it brings a new >> regression even on sv39 systems. >> >> I still don't know the reason why use addr+len as the upper-bound. I >> think solution like x86/arm64/powerpc provide two address space switch >> based on whether hint address above the default map window is enough. >> > Yep this is expected. It is up to the maintainers to decide. Sorry I forgot to reply to this, I had a buffer sitting around somewhere but I must have lost it.
I think Charlie's approach is the right way to go. Putting my userspace hat on, I'd much rather have my allocations fail rather than silently ignore the hint when there's memory pressure.
If there's some real use case that needs these low hints to be silently ignored under VA pressure then we can try and figure something out that makes those applications work.
I could confirm that this patch has broken chromium's partition allocator on riscv64. The minimal reproduction I use is chromium-mmap.c:
#include <stdio.h> #include <sys/mman.h>
int main() { void* expected = (void*)0x400000000; void* addr = mmap(expected, 17179869184, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0); if (addr != expected) {
It is not valid to assume that the address returned by mmap will be the hint address. If the hint address is not available, mmap will return a different address.
Oh, sorry I didn't make it clear what is the expected behavior. The printf here is solely for debugging purpose and I don't mean that chromium expect it will get the hint address. The expected behavior is that both the two mmap calls will succeed.
printf("Not expected address: %p != %p\n", addr, expected); } expected = (void*)0x3fffff000; addr = mmap(expected, 17179873280, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS,
-1, 0); if (addr != expected) { printf("Not expected address: %p != %p\n", addr, expected); } return 0; }
The second mmap fails with ENOMEM. Manually reverting this commit fixes the issue for me. So I think it's clearly a regression and breaks userspace.
The issue here is that overlapping memory is being requested. This second mmap will never be able to provide an address at 0x3fffff000 with a size of 0x400001000 since mmap just provided an address at 0x400000000 with a size of 0x400000000.
Before this patch, this request causes mmap to return a completely arbitrary value. There is no reason to use a hint address in this manner because the hint can never be respected. Since an arbitrary address is desired, a hint of zero should be used.
This patch causes the behavior to be more deterministic. Instead of providing an arbitrary address, it causes the address to be less than or equal to the hint address. This allows for applications to make assumptions about the returned address.
About the overlap, of course the partition allocator's request for overlapped vma seems unreasonable.
But I still don't quite understand why mmap cannot use an address higher than the hint address. The hint address, after all, is a hint, not a requirement.
Quoting the man page:
If another mapping already exists there, the kernel picks a new address that may or may not depend on the hint. The address of the new mapping is returned as the result of the call.
So for casual programmers that only reads man page but not architecture specific kernel documentation, the current behavior of mmap on riscv64 failing on overlapped address ranges are quite surprising IMO.
And quoting the man page again about the errno:
ENOMEM No memory is available. ENOMEM The process's maximum number of mappings would have been exceeded. This error can also occur for munmap(), when unmapping a region in the middle of an existing mapping, since this results in two smaller mappings on either side of the region being unmapped. ENOMEM (since Linux 4.7) The process's RLIMIT_DATA limit, described in getrlimit(2), would have been exceeded. ENOMEM We don't like addr, because it exceeds the virtual address space of the CPU.
There's no matching description for the ENOMEM returned here. I would suggest removing "because it exceeds the virtual address space of the CPU." from the last item if the ENOMEM behavior here is expected.
This code is unfortunately relying on the previously mostly undefined behavior of the hint address in mmap.
Although I haven't read the code of chromium's partition allocator to judge whether it should be improved or fixed for riscv64, I do know that the kernel "don't break userspace" and "never EVER blame the user programs".
Ya, sorry for breaking stuff.
The goal here was to move to the mmap flag behavor similar to what arm64 and x86 have, as that was done in a way that didn't appear to break userspace -- or at least any real userspace programs. IIRC that first test was pretty broken (it actually depended on the hint address), but sounds like that's not the case.
I think maybe this is just luck: we didn't chunk the address space up, we're just hinting on every bit, so we're just more likely to hit the exhaustion. Doesn't really matter, though, as if it's breaking stuff so we've got to deal with it.
Charlie and I are just talking, and best we can come up with is to move to the behavior where we fall back to larger allocation regions when there's no space in the smaller allocation region.
For this solution, the only difference from the mmap behavior of x86 and aarch64 is that we will first try to allocate some memory from an address less or equal to the request address + size. But for most cases, I think there is no need to do that, especially for those addresses < BIT(47), as most program works fine on x86-64, which has 47bit available userspace address space to use. And for that program that wants an address < BIT(32), we already have MAP_32BIT now.
I think we can just fix like that patch: https://lore.kernel.org/lkml/tencent_B2D0435BC011135736262764B511994F4805@qq...
This patch does not satisfy the requirement of having the ability to guarantee that mmap returns an address that is less than the hint address. This patch only allows an address to be less than the DEFAULT_MAP_WINDOW which is 32 bits on sv32, 39 bits on sv39, and 48 bits on sv48 or sv57.
This patch also again falls into the trap of using the hint address to forcefully restrict the address space. I agree with Levi that it is not very good behavior to have a "hint" cause mmap to fail if conforming to the hint isn't possible. Instead, I believe it to be more logical to try to allocate at the hint address, otherwise give a random address.
The current behavior can then be maintained through the flag MAP_BELOW_HINT. This way the user explicitly selects that they want mmap to fail if an address could not be found within the hint address constraints.
- Charlie
Charlie's going to try and throw together a patch for that, hopefully it'll sort things out.
The goal of this patch is to help developers have more consistent mmap behavior, but maybe it is necessary to hide this behavior behind an mmap flag.
Thank you for helping to shape a more consistent mmap behavior. I think this should be fixed ASAP either by allowing the hint address to be ignored (as suggested by the Linux man page), or hide this behavior behind an mmap flag as you said.
- Charlie
See alsohttps://github.com/riscv-forks/electron/issues/4
> - Charlie
Sincerely, Levi
I accidentally introduced some HTML into this reply so this reply is resent as plain text.
Sincerely, Levi
On Aug 23, 2024, at 12:39, Charlie Jenkins charlie@rivosinc.com wrote:
On Thu, Aug 22, 2024 at 10:51:54AM +0800, Yangyu Chen wrote:
On Aug 22, 2024, at 06:17, Palmer Dabbelt palmer@dabbelt.com wrote:
On Mon, 19 Aug 2024 18:58:18 PDT (-0700), rsworktech@outlook.com wrote:
On 2024-08-20 01:00, Charlie Jenkins wrote:
On Mon, Aug 19, 2024 at 01:55:57PM +0800, Levi Zim wrote:
On 2024-03-22 22:06, Palmer Dabbelt wrote: > On Thu, 01 Feb 2024 18:28:06 PST (-0800), Charlie Jenkins wrote: >> On Wed, Jan 31, 2024 at 11:59:43PM +0800, Yangyu Chen wrote: >>> On Wed, 2024-01-31 at 22:41 +0800, Yangyu Chen wrote: >>>> On Tue, 2024-01-30 at 17:07 -0800, Charlie Jenkins wrote: >>>>> On riscv it is guaranteed that the address returned by mmap is less >>>>> than >>>>> the hint address. Allow mmap to return an address all the way up to >>>>> addr, if provided, rather than just up to the lower address space. >>>>>>> This provides a performance benefit as well, allowing >>> mmap to exit >>>>> after >>>>> checking that the address is in range rather than searching for a >>>>> valid >>>>> address. >>>>>>> It is possible to provide an address that uses at most the same >>>>> number >>>>> of bits, however it is significantly more computationally expensive >>>>> to >>>>> provide that number rather than setting the max to be the hint >>>>> address. >>>>> There is the instruction clz/clzw in Zbb that returns the highest >>>>> set >>>>> bit >>>>> which could be used to performantly implement this, but it would >>>>> still >>>>> be slower than the current implementation. At worst case, half of >>>>> the >>>>> address would not be able to be allocated when a hint address is >>>>> provided. >>>>>>> Signed-off-by: Charlie Jenkinscharlie@rivosinc.com >>>>> --- >>>>> arch/riscv/include/asm/processor.h | 27 +++++++++++--------------- >>>>> - >>>>> 1 file changed, 11 insertions(+), 16 deletions(-) >>>>>>> diff --git a/arch/riscv/include/asm/processor.h >>>>> b/arch/riscv/include/asm/processor.h >>>>> index f19f861cda54..8ece7a8f0e18 100644 >>>>> --- a/arch/riscv/include/asm/processor.h >>>>> +++ b/arch/riscv/include/asm/processor.h >>>>> @@ -14,22 +14,16 @@ >>>>> >>>>> #include <asm/ptrace.h> >>>>> >>>>> -#ifdef CONFIG_64BIT >>>>> -#define DEFAULT_MAP_WINDOW (UL(1) << (MMAP_VA_BITS - 1)) >>>>> -#define STACK_TOP_MAX TASK_SIZE_64 >>>>> - >>>>> #define arch_get_mmap_end(addr, len, flags) \ >>>>> ({ \ >>>>> unsigned long >>>>> mmap_end; \ >>>>> typeof(addr) _addr = (addr); \ >>>>> - if ((_addr) == 0 || (IS_ENABLED(CONFIG_COMPAT) && >>>>> is_compat_task())) \ >>>>> + if ((_addr) == 0 || \ >>>>> + (IS_ENABLED(CONFIG_COMPAT) && is_compat_task()) || \ >>>>> + ((_addr + len) > BIT(VA_BITS - >>>>> 1))) \ >>>>> mmap_end = STACK_TOP_MAX; \ >>>>> - else if ((_addr) >= VA_USER_SV57) \ >>>>> - mmap_end = STACK_TOP_MAX; \ >>>>> - else if ((((_addr) >= VA_USER_SV48)) && (VA_BITS >= >>>>> VA_BITS_SV48)) \ >>>>> - mmap_end = VA_USER_SV48; \ >>>>> else \ >>>>> - mmap_end = VA_USER_SV39; \ >>>>> + mmap_end = (_addr + len); \ >>>>> mmap_end; \ >>>>> }) >>>>> >>>>> @@ -39,17 +33,18 @@ >>>>> typeof(addr) _addr = (addr); \ >>>>> typeof(base) _base = (base); \ >>>>> unsigned long rnd_gap = DEFAULT_MAP_WINDOW - (_base); \ >>>>> - if ((_addr) == 0 || (IS_ENABLED(CONFIG_COMPAT) && >>>>> is_compat_task())) \ >>>>> + if ((_addr) == 0 || \ >>>>> + (IS_ENABLED(CONFIG_COMPAT) && is_compat_task()) || \ >>>>> + ((_addr + len) > BIT(VA_BITS - >>>>> 1))) \ >>>>> mmap_base = (_base); \ >>>>> - else if (((_addr) >= VA_USER_SV57) && (VA_BITS >= >>>>> VA_BITS_SV57)) \ >>>>> - mmap_base = VA_USER_SV57 - rnd_gap; \ >>>>> - else if ((((_addr) >= VA_USER_SV48)) && (VA_BITS >= >>>>> VA_BITS_SV48)) \ >>>>> - mmap_base = VA_USER_SV48 - rnd_gap; \ >>>>> else \ >>>>> - mmap_base = VA_USER_SV39 - rnd_gap; \ >>>>> + mmap_base = (_addr + len) - rnd_gap; \ >>>>> mmap_base; \ >>>>> }) >>>>> >>>>> +#ifdef CONFIG_64BIT >>>>> +#define DEFAULT_MAP_WINDOW (UL(1) << (MMAP_VA_BITS - 1)) >>>>> +#define STACK_TOP_MAX TASK_SIZE_64 >>>>> #else >>>>> #define DEFAULT_MAP_WINDOW TASK_SIZE >>>>> #define STACK_TOP_MAX TASK_SIZE >>>>>>> I have carefully tested your patch on qemu with sv57. A >>> bug that >>>> needs >>>> to be solved is that mmap with the same hint address without >>>> MAP_FIXED >>>> set will fail the second time. >>>>> Userspace code to reproduce the bug: >>>>> #include <sys/mman.h> >>>> #include <stdio.h> >>>> #include <stdint.h> >>>>> void test(char *addr) { >>>> char *res = mmap(addr, 4096, PROT_READ | PROT_WRITE, >>>> MAP_ANONYMOUS >>>>> MAP_PRIVATE, -1, 0); >>>> printf("hint %p got %p.\n", addr, res); >>>> } >>>>> int main (void) { >>>> test(1<<30); >>>> test(1<<30); >>>> test(1<<30); >>>> return 0; >>>> } >>>>> output: >>>>> hint 0x40000000 got 0x40000000. >>>> hint 0x40000000 got 0xffffffffffffffff. >>>> hint 0x40000000 got 0xffffffffffffffff. >>>>> output on x86: >>>>> hint 0x40000000 got 0x40000000. >>>> hint 0x40000000 got 0x7f9171363000. >>>> hint 0x40000000 got 0x7f9171362000. >>>>> It may need to implement a special arch_get_unmapped_area and >>>> arch_get_unmapped_area_topdown function. >>>> >>> This is because hint address < rnd_gap. I have tried to let mmap_base = >>> min((_addr + len), (base) + TASK_SIZE - DEFAULT_MAP_WINDOW). However it >>> does not work for bottom-up while ulimit -s is unlimited. You said this >>> behavior is expected from patch v2 review. However it brings a new >>> regression even on sv39 systems. >>> >>> I still don't know the reason why use addr+len as the upper-bound. I >>> think solution like x86/arm64/powerpc provide two address space switch >>> based on whether hint address above the default map window is enough. >>> >> Yep this is expected. It is up to the maintainers to decide. > Sorry I forgot to reply to this, I had a buffer sitting around somewhere > but I must have lost it. > > I think Charlie's approach is the right way to go. Putting my userspace > hat on, I'd much rather have my allocations fail rather than silently > ignore the hint when there's memory pressure. > > If there's some real use case that needs these low hints to be silently > ignored under VA pressure then we can try and figure something out that > makes those applications work. I could confirm that this patch has broken chromium's partition allocator on riscv64. The minimal reproduction I use is chromium-mmap.c:
#include <stdio.h> #include <sys/mman.h>
int main() { void* expected = (void*)0x400000000; void* addr = mmap(expected, 17179869184, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0); if (addr != expected) {
It is not valid to assume that the address returned by mmap will be the hint address. If the hint address is not available, mmap will return a different address.
Oh, sorry I didn't make it clear what is the expected behavior. The printf here is solely for debugging purpose and I don't mean that chromium expect it will get the hint address. The expected behavior is that both the two mmap calls will succeed.
printf("Not expected address: %p != %p\n", addr, expected);
} expected = (void*)0x3fffff000; addr = mmap(expected, 17179873280, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0); if (addr != expected) { printf("Not expected address: %p != %p\n", addr, expected); } return 0; }
The second mmap fails with ENOMEM. Manually reverting this commit fixes the issue for me. So I think it's clearly a regression and breaks userspace.
The issue here is that overlapping memory is being requested. This second mmap will never be able to provide an address at 0x3fffff000 with a size of 0x400001000 since mmap just provided an address at 0x400000000 with a size of 0x400000000.
Before this patch, this request causes mmap to return a completely arbitrary value. There is no reason to use a hint address in this manner because the hint can never be respected. Since an arbitrary address is desired, a hint of zero should be used.
This patch causes the behavior to be more deterministic. Instead of providing an arbitrary address, it causes the address to be less than or equal to the hint address. This allows for applications to make assumptions about the returned address.
About the overlap, of course the partition allocator's request for overlapped vma seems unreasonable.
But I still don't quite understand why mmap cannot use an address higher than the hint address. The hint address, after all, is a hint, not a requirement.
Quoting the man page:
If another mapping already exists there, the kernel picks a new address that may or may not depend on the hint. The address of the new mapping is returned as the result of the call.
So for casual programmers that only reads man page but not architecture specific kernel documentation, the current behavior of mmap on riscv64 failing on overlapped address ranges are quite surprising IMO.
And quoting the man page again about the errno:
ENOMEM No memory is available. ENOMEM The process's maximum number of mappings would have been exceeded. This error can also occur for munmap(), when unmapping a region in the middle of an existing mapping, since this results in two smaller mappings on either side of the region being unmapped. ENOMEM (since Linux 4.7) The process's RLIMIT_DATA limit, described in getrlimit(2), would have been exceeded. ENOMEM We don't like addr, because it exceeds the virtual address space of the CPU.
There's no matching description for the ENOMEM returned here. I would suggest removing "because it exceeds the virtual address space of the CPU." from the last item if the ENOMEM behavior here is expected.
This code is unfortunately relying on the previously mostly undefined behavior of the hint address in mmap.
Although I haven't read the code of chromium's partition allocator to judge whether it should be improved or fixed for riscv64, I do know that the kernel "don't break userspace" and "never EVER blame the user programs".
Ya, sorry for breaking stuff.
The goal here was to move to the mmap flag behavor similar to what arm64 and x86 have, as that was done in a way that didn't appear to break userspace -- or at least any real userspace programs. IIRC that first test was pretty broken (it actually depended on the hint address), but sounds like that's not the case.
I think maybe this is just luck: we didn't chunk the address space up, we're just hinting on every bit, so we're just more likely to hit the exhaustion. Doesn't really matter, though, as if it's breaking stuff so we've got to deal with it.
Charlie and I are just talking, and best we can come up with is to move to the behavior where we fall back to larger allocation regions when there's no space in the smaller allocation region.
For this solution, the only difference from the mmap behavior of x86 and aarch64 is that we will first try to allocate some memory from an address less or equal to the request address + size. But for most cases, I think there is no need to do that, especially for those addresses < BIT(47), as most program works fine on x86-64, which has 47bit available userspace address space to use. And for that program that wants an address < BIT(32), we already have MAP_32BIT now.
I think we can just fix like that patch: https://lore.kernel.org/lkml/tencent_B2D0435BC011135736262764B511994F4805@qq...
This patch does not satisfy the requirement of having the ability to guarantee that mmap returns an address that is less than the hint address.
Indeed. My intuition is to remove it and align it with x86 and aarch64.
This patch only allows an address to be less than the DEFAULT_MAP_WINDOW which is 32 bits on sv32, 39 bits on sv39, and 48 bits on sv48 or sv57.
This patch also again falls into the trap of using the hint address to forcefully restrict the address space.
Indeed. However, x86 and aarch64 also use this behavior to restrict va >= BIT(47) by default unless we have the hint address larger than BIT(47).
I agree with Levi that it is not very good behavior to have a "hint" cause mmap to fail if conforming to the hint isn't possible. Instead, I believe it to be more logical to try to allocate at the hint address, otherwise give a random address.
I also agree with this.
The current behavior can then be maintained through the flag MAP_BELOW_HINT. This way the user explicitly selects that they want mmap to fail if an address could not be found within the hint address constraints.
I think restricting the addresses with the MAP_BELOW_HINT flag would be the best choice. However, it remains a problem: What should the behavior be when there is no MAP_BELOW_HINT? I think we can fallback to Sv48 on the Sv57 machine by default to align with x86 and aarch64.
- Charlie
Charlie's going to try and throw together a patch for that, hopefully it'll sort things out.
The goal of this patch is to help developers have more consistent mmap behavior, but maybe it is necessary to hide this behavior behind an mmap flag.
Thank you for helping to shape a more consistent mmap behavior. I think this should be fixed ASAP either by allowing the hint address to be ignored (as suggested by the Linux man page), or hide this behavior behind an mmap flag as you said.
- Charlie
See alsohttps://github.com/riscv-forks/electron/issues/4
>> - Charlie Sincerely, Levi
I accidentally introduced some HTML into this reply so this reply is resent as plain text.
Sincerely, Levi
On Fri, Aug 23, 2024 at 01:28:18PM +0800, Yangyu Chen wrote:
On Aug 23, 2024, at 12:39, Charlie Jenkins charlie@rivosinc.com wrote:
On Thu, Aug 22, 2024 at 10:51:54AM +0800, Yangyu Chen wrote:
On Aug 22, 2024, at 06:17, Palmer Dabbelt palmer@dabbelt.com wrote:
On Mon, 19 Aug 2024 18:58:18 PDT (-0700), rsworktech@outlook.com wrote:
On 2024-08-20 01:00, Charlie Jenkins wrote:
On Mon, Aug 19, 2024 at 01:55:57PM +0800, Levi Zim wrote: > On 2024-03-22 22:06, Palmer Dabbelt wrote: >> On Thu, 01 Feb 2024 18:28:06 PST (-0800), Charlie Jenkins wrote: >>> On Wed, Jan 31, 2024 at 11:59:43PM +0800, Yangyu Chen wrote: >>>> On Wed, 2024-01-31 at 22:41 +0800, Yangyu Chen wrote: >>>>> On Tue, 2024-01-30 at 17:07 -0800, Charlie Jenkins wrote: >>>>>> On riscv it is guaranteed that the address returned by mmap is less >>>>>> than >>>>>> the hint address. Allow mmap to return an address all the way up to >>>>>> addr, if provided, rather than just up to the lower address space. >>>>>>>> This provides a performance benefit as well, allowing >>>> mmap to exit >>>>>> after >>>>>> checking that the address is in range rather than searching for a >>>>>> valid >>>>>> address. >>>>>>>> It is possible to provide an address that uses at most the same >>>>>> number >>>>>> of bits, however it is significantly more computationally expensive >>>>>> to >>>>>> provide that number rather than setting the max to be the hint >>>>>> address. >>>>>> There is the instruction clz/clzw in Zbb that returns the highest >>>>>> set >>>>>> bit >>>>>> which could be used to performantly implement this, but it would >>>>>> still >>>>>> be slower than the current implementation. At worst case, half of >>>>>> the >>>>>> address would not be able to be allocated when a hint address is >>>>>> provided. >>>>>>>> Signed-off-by: Charlie Jenkinscharlie@rivosinc.com >>>>>> --- >>>>>> arch/riscv/include/asm/processor.h | 27 +++++++++++--------------- >>>>>> - >>>>>> 1 file changed, 11 insertions(+), 16 deletions(-) >>>>>>>> diff --git a/arch/riscv/include/asm/processor.h >>>>>> b/arch/riscv/include/asm/processor.h >>>>>> index f19f861cda54..8ece7a8f0e18 100644 >>>>>> --- a/arch/riscv/include/asm/processor.h >>>>>> +++ b/arch/riscv/include/asm/processor.h >>>>>> @@ -14,22 +14,16 @@ >>>>>> >>>>>> #include <asm/ptrace.h> >>>>>> >>>>>> -#ifdef CONFIG_64BIT >>>>>> -#define DEFAULT_MAP_WINDOW (UL(1) << (MMAP_VA_BITS - 1)) >>>>>> -#define STACK_TOP_MAX TASK_SIZE_64 >>>>>> - >>>>>> #define arch_get_mmap_end(addr, len, flags) \ >>>>>> ({ \ >>>>>> unsigned long >>>>>> mmap_end; \ >>>>>> typeof(addr) _addr = (addr); \ >>>>>> - if ((_addr) == 0 || (IS_ENABLED(CONFIG_COMPAT) && >>>>>> is_compat_task())) \ >>>>>> + if ((_addr) == 0 || \ >>>>>> + (IS_ENABLED(CONFIG_COMPAT) && is_compat_task()) || \ >>>>>> + ((_addr + len) > BIT(VA_BITS - >>>>>> 1))) \ >>>>>> mmap_end = STACK_TOP_MAX; \ >>>>>> - else if ((_addr) >= VA_USER_SV57) \ >>>>>> - mmap_end = STACK_TOP_MAX; \ >>>>>> - else if ((((_addr) >= VA_USER_SV48)) && (VA_BITS >= >>>>>> VA_BITS_SV48)) \ >>>>>> - mmap_end = VA_USER_SV48; \ >>>>>> else \ >>>>>> - mmap_end = VA_USER_SV39; \ >>>>>> + mmap_end = (_addr + len); \ >>>>>> mmap_end; \ >>>>>> }) >>>>>> >>>>>> @@ -39,17 +33,18 @@ >>>>>> typeof(addr) _addr = (addr); \ >>>>>> typeof(base) _base = (base); \ >>>>>> unsigned long rnd_gap = DEFAULT_MAP_WINDOW - (_base); \ >>>>>> - if ((_addr) == 0 || (IS_ENABLED(CONFIG_COMPAT) && >>>>>> is_compat_task())) \ >>>>>> + if ((_addr) == 0 || \ >>>>>> + (IS_ENABLED(CONFIG_COMPAT) && is_compat_task()) || \ >>>>>> + ((_addr + len) > BIT(VA_BITS - >>>>>> 1))) \ >>>>>> mmap_base = (_base); \ >>>>>> - else if (((_addr) >= VA_USER_SV57) && (VA_BITS >= >>>>>> VA_BITS_SV57)) \ >>>>>> - mmap_base = VA_USER_SV57 - rnd_gap; \ >>>>>> - else if ((((_addr) >= VA_USER_SV48)) && (VA_BITS >= >>>>>> VA_BITS_SV48)) \ >>>>>> - mmap_base = VA_USER_SV48 - rnd_gap; \ >>>>>> else \ >>>>>> - mmap_base = VA_USER_SV39 - rnd_gap; \ >>>>>> + mmap_base = (_addr + len) - rnd_gap; \ >>>>>> mmap_base; \ >>>>>> }) >>>>>> >>>>>> +#ifdef CONFIG_64BIT >>>>>> +#define DEFAULT_MAP_WINDOW (UL(1) << (MMAP_VA_BITS - 1)) >>>>>> +#define STACK_TOP_MAX TASK_SIZE_64 >>>>>> #else >>>>>> #define DEFAULT_MAP_WINDOW TASK_SIZE >>>>>> #define STACK_TOP_MAX TASK_SIZE >>>>>>>> I have carefully tested your patch on qemu with sv57. A >>>> bug that >>>>> needs >>>>> to be solved is that mmap with the same hint address without >>>>> MAP_FIXED >>>>> set will fail the second time. >>>>>> Userspace code to reproduce the bug: >>>>>> #include <sys/mman.h> >>>>> #include <stdio.h> >>>>> #include <stdint.h> >>>>>> void test(char *addr) { >>>>> char *res = mmap(addr, 4096, PROT_READ | PROT_WRITE, >>>>> MAP_ANONYMOUS >>>>>> MAP_PRIVATE, -1, 0); >>>>> printf("hint %p got %p.\n", addr, res); >>>>> } >>>>>> int main (void) { >>>>> test(1<<30); >>>>> test(1<<30); >>>>> test(1<<30); >>>>> return 0; >>>>> } >>>>>> output: >>>>>> hint 0x40000000 got 0x40000000. >>>>> hint 0x40000000 got 0xffffffffffffffff. >>>>> hint 0x40000000 got 0xffffffffffffffff. >>>>>> output on x86: >>>>>> hint 0x40000000 got 0x40000000. >>>>> hint 0x40000000 got 0x7f9171363000. >>>>> hint 0x40000000 got 0x7f9171362000. >>>>>> It may need to implement a special arch_get_unmapped_area and >>>>> arch_get_unmapped_area_topdown function. >>>>> >>>> This is because hint address < rnd_gap. I have tried to let mmap_base = >>>> min((_addr + len), (base) + TASK_SIZE - DEFAULT_MAP_WINDOW). However it >>>> does not work for bottom-up while ulimit -s is unlimited. You said this >>>> behavior is expected from patch v2 review. However it brings a new >>>> regression even on sv39 systems. >>>> >>>> I still don't know the reason why use addr+len as the upper-bound. I >>>> think solution like x86/arm64/powerpc provide two address space switch >>>> based on whether hint address above the default map window is enough. >>>> >>> Yep this is expected. It is up to the maintainers to decide. >> Sorry I forgot to reply to this, I had a buffer sitting around somewhere >> but I must have lost it. >> >> I think Charlie's approach is the right way to go. Putting my userspace >> hat on, I'd much rather have my allocations fail rather than silently >> ignore the hint when there's memory pressure. >> >> If there's some real use case that needs these low hints to be silently >> ignored under VA pressure then we can try and figure something out that >> makes those applications work. > I could confirm that this patch has broken chromium's partition allocator on > riscv64. The minimal reproduction I use is chromium-mmap.c: > > #include <stdio.h> > #include <sys/mman.h> > > int main() { > void* expected = (void*)0x400000000; > void* addr = mmap(expected, 17179869184, PROT_NONE, > MAP_PRIVATE|MAP_ANONYMOUS, -1, 0); > if (addr != expected) { It is not valid to assume that the address returned by mmap will be the hint address. If the hint address is not available, mmap will return a different address.
Oh, sorry I didn't make it clear what is the expected behavior. The printf here is solely for debugging purpose and I don't mean that chromium expect it will get the hint address. The expected behavior is that both the two mmap calls will succeed.
> printf("Not expected address: %p != %p\n", addr, expected); > } > expected = (void*)0x3fffff000; > addr = mmap(expected, 17179873280, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS, > -1, 0); > if (addr != expected) { > printf("Not expected address: %p != %p\n", addr, expected); > } > return 0; > } > > The second mmap fails with ENOMEM. Manually reverting this commit fixes the > issue for me. So I think it's clearly a regression and breaks userspace. > The issue here is that overlapping memory is being requested. This second mmap will never be able to provide an address at 0x3fffff000 with a size of 0x400001000 since mmap just provided an address at 0x400000000 with a size of 0x400000000.
Before this patch, this request causes mmap to return a completely arbitrary value. There is no reason to use a hint address in this manner because the hint can never be respected. Since an arbitrary address is desired, a hint of zero should be used.
This patch causes the behavior to be more deterministic. Instead of providing an arbitrary address, it causes the address to be less than or equal to the hint address. This allows for applications to make assumptions about the returned address.
About the overlap, of course the partition allocator's request for overlapped vma seems unreasonable.
But I still don't quite understand why mmap cannot use an address higher than the hint address. The hint address, after all, is a hint, not a requirement.
Quoting the man page:
If another mapping already exists there, the kernel picks a new address that may or may not depend on the hint. The address of the new mapping is returned as the result of the call.
So for casual programmers that only reads man page but not architecture specific kernel documentation, the current behavior of mmap on riscv64 failing on overlapped address ranges are quite surprising IMO.
And quoting the man page again about the errno:
ENOMEM No memory is available. ENOMEM The process's maximum number of mappings would have been exceeded. This error can also occur for munmap(), when unmapping a region in the middle of an existing mapping, since this results in two smaller mappings on either side of the region being unmapped. ENOMEM (since Linux 4.7) The process's RLIMIT_DATA limit, described in getrlimit(2), would have been exceeded. ENOMEM We don't like addr, because it exceeds the virtual address space of the CPU.
There's no matching description for the ENOMEM returned here. I would suggest removing "because it exceeds the virtual address space of the CPU." from the last item if the ENOMEM behavior here is expected.
This code is unfortunately relying on the previously mostly undefined behavior of the hint address in mmap.
Although I haven't read the code of chromium's partition allocator to judge whether it should be improved or fixed for riscv64, I do know that the kernel "don't break userspace" and "never EVER blame the user programs".
Ya, sorry for breaking stuff.
The goal here was to move to the mmap flag behavor similar to what arm64 and x86 have, as that was done in a way that didn't appear to break userspace -- or at least any real userspace programs. IIRC that first test was pretty broken (it actually depended on the hint address), but sounds like that's not the case.
I think maybe this is just luck: we didn't chunk the address space up, we're just hinting on every bit, so we're just more likely to hit the exhaustion. Doesn't really matter, though, as if it's breaking stuff so we've got to deal with it.
Charlie and I are just talking, and best we can come up with is to move to the behavior where we fall back to larger allocation regions when there's no space in the smaller allocation region.
For this solution, the only difference from the mmap behavior of x86 and aarch64 is that we will first try to allocate some memory from an address less or equal to the request address + size. But for most cases, I think there is no need to do that, especially for those addresses < BIT(47), as most program works fine on x86-64, which has 47bit available userspace address space to use. And for that program that wants an address < BIT(32), we already have MAP_32BIT now.
I think we can just fix like that patch: https://lore.kernel.org/lkml/tencent_B2D0435BC011135736262764B511994F4805@qq...
This patch does not satisfy the requirement of having the ability to guarantee that mmap returns an address that is less than the hint address.
Indeed. My intuition is to remove it and align it with x86 and aarch64.
This patch only allows an address to be less than the DEFAULT_MAP_WINDOW which is 32 bits on sv32, 39 bits on sv39, and 48 bits on sv48 or sv57.
This patch also again falls into the trap of using the hint address to forcefully restrict the address space.
Indeed. However, x86 and aarch64 also use this behavior to restrict va >= BIT(47) by default unless we have the hint address larger than BIT(47).
I agree with Levi that it is not very good behavior to have a "hint" cause mmap to fail if conforming to the hint isn't possible. Instead, I believe it to be more logical to try to allocate at the hint address, otherwise give a random address.
I also agree with this.
The current behavior can then be maintained through the flag MAP_BELOW_HINT. This way the user explicitly selects that they want mmap to fail if an address could not be found within the hint address constraints.
I think restricting the addresses with the MAP_BELOW_HINT flag would be the best choice. However, it remains a problem: What should the behavior be when there is no MAP_BELOW_HINT? I think we can fallback to Sv48 on the Sv57 machine by default to align with x86 and aarch64.
Although that is the behavior on other architectures, I am hesitant to follow it because it is a somewhat arbitrary restriction. With a generic flag that can force mmap to provide exactly the number of bits that an application needs, there is no need for this restriction on riscv. It may cause problems for applications running on sv57 hardware, however:
1. sv57 hardware does not exist yet
2. A hint address would still be required if following the same behavior as other architectures. a. It would aid in the porting of an application to sv57 hardware, but I am not sure that forcing this restriction is worth having this one piece of parity. Applications using the proposed generic flag would work as expected on all architectures as well.
- Charlie
Charlie's going to try and throw together a patch for that, hopefully it'll sort things out.
The goal of this patch is to help developers have more consistent mmap behavior, but maybe it is necessary to hide this behavior behind an mmap flag.
Thank you for helping to shape a more consistent mmap behavior. I think this should be fixed ASAP either by allowing the hint address to be ignored (as suggested by the Linux man page), or hide this behavior behind an mmap flag as you said.
- Charlie
> See alsohttps://github.com/riscv-forks/electron/issues/4 > >>> - Charlie > Sincerely, > Levi >
I accidentally introduced some HTML into this reply so this reply is resent as plain text.
Sincerely, Levi
On Aug 23, 2024, at 13:57, Charlie Jenkins charlie@rivosinc.com wrote:
On Fri, Aug 23, 2024 at 01:28:18PM +0800, Yangyu Chen wrote:
On Aug 23, 2024, at 12:39, Charlie Jenkins charlie@rivosinc.com wrote:
On Thu, Aug 22, 2024 at 10:51:54AM +0800, Yangyu Chen wrote:
On Aug 22, 2024, at 06:17, Palmer Dabbelt palmer@dabbelt.com wrote:
On Mon, 19 Aug 2024 18:58:18 PDT (-0700), rsworktech@outlook.com wrote:
On 2024-08-20 01:00, Charlie Jenkins wrote: > On Mon, Aug 19, 2024 at 01:55:57PM +0800, Levi Zim wrote: >> On 2024-03-22 22:06, Palmer Dabbelt wrote: >>> On Thu, 01 Feb 2024 18:28:06 PST (-0800), Charlie Jenkins wrote: >>>> On Wed, Jan 31, 2024 at 11:59:43PM +0800, Yangyu Chen wrote: >>>>> On Wed, 2024-01-31 at 22:41 +0800, Yangyu Chen wrote: >>>>>> On Tue, 2024-01-30 at 17:07 -0800, Charlie Jenkins wrote: >>>>>>> On riscv it is guaranteed that the address returned by mmap is less >>>>>>> than >>>>>>> the hint address. Allow mmap to return an address all the way up to >>>>>>> addr, if provided, rather than just up to the lower address space. >>>>>>>>> This provides a performance benefit as well, allowing >>>>> mmap to exit >>>>>>> after >>>>>>> checking that the address is in range rather than searching for a >>>>>>> valid >>>>>>> address. >>>>>>>>> It is possible to provide an address that uses at most the same >>>>>>> number >>>>>>> of bits, however it is significantly more computationally expensive >>>>>>> to >>>>>>> provide that number rather than setting the max to be the hint >>>>>>> address. >>>>>>> There is the instruction clz/clzw in Zbb that returns the highest >>>>>>> set >>>>>>> bit >>>>>>> which could be used to performantly implement this, but it would >>>>>>> still >>>>>>> be slower than the current implementation. At worst case, half of >>>>>>> the >>>>>>> address would not be able to be allocated when a hint address is >>>>>>> provided. >>>>>>>>> Signed-off-by: Charlie Jenkinscharlie@rivosinc.com >>>>>>> --- >>>>>>> arch/riscv/include/asm/processor.h | 27 +++++++++++--------------- >>>>>>> - >>>>>>> 1 file changed, 11 insertions(+), 16 deletions(-) >>>>>>>>> diff --git a/arch/riscv/include/asm/processor.h >>>>>>> b/arch/riscv/include/asm/processor.h >>>>>>> index f19f861cda54..8ece7a8f0e18 100644 >>>>>>> --- a/arch/riscv/include/asm/processor.h >>>>>>> +++ b/arch/riscv/include/asm/processor.h >>>>>>> @@ -14,22 +14,16 @@ >>>>>>> >>>>>>> #include <asm/ptrace.h> >>>>>>> >>>>>>> -#ifdef CONFIG_64BIT >>>>>>> -#define DEFAULT_MAP_WINDOW (UL(1) << (MMAP_VA_BITS - 1)) >>>>>>> -#define STACK_TOP_MAX TASK_SIZE_64 >>>>>>> - >>>>>>> #define arch_get_mmap_end(addr, len, flags) \ >>>>>>> ({ \ >>>>>>> unsigned long >>>>>>> mmap_end; \ >>>>>>> typeof(addr) _addr = (addr); \ >>>>>>> - if ((_addr) == 0 || (IS_ENABLED(CONFIG_COMPAT) && >>>>>>> is_compat_task())) \ >>>>>>> + if ((_addr) == 0 || \ >>>>>>> + (IS_ENABLED(CONFIG_COMPAT) && is_compat_task()) || \ >>>>>>> + ((_addr + len) > BIT(VA_BITS - >>>>>>> 1))) \ >>>>>>> mmap_end = STACK_TOP_MAX; \ >>>>>>> - else if ((_addr) >= VA_USER_SV57) \ >>>>>>> - mmap_end = STACK_TOP_MAX; \ >>>>>>> - else if ((((_addr) >= VA_USER_SV48)) && (VA_BITS >= >>>>>>> VA_BITS_SV48)) \ >>>>>>> - mmap_end = VA_USER_SV48; \ >>>>>>> else \ >>>>>>> - mmap_end = VA_USER_SV39; \ >>>>>>> + mmap_end = (_addr + len); \ >>>>>>> mmap_end; \ >>>>>>> }) >>>>>>> >>>>>>> @@ -39,17 +33,18 @@ >>>>>>> typeof(addr) _addr = (addr); \ >>>>>>> typeof(base) _base = (base); \ >>>>>>> unsigned long rnd_gap = DEFAULT_MAP_WINDOW - (_base); \ >>>>>>> - if ((_addr) == 0 || (IS_ENABLED(CONFIG_COMPAT) && >>>>>>> is_compat_task())) \ >>>>>>> + if ((_addr) == 0 || \ >>>>>>> + (IS_ENABLED(CONFIG_COMPAT) && is_compat_task()) || \ >>>>>>> + ((_addr + len) > BIT(VA_BITS - >>>>>>> 1))) \ >>>>>>> mmap_base = (_base); \ >>>>>>> - else if (((_addr) >= VA_USER_SV57) && (VA_BITS >= >>>>>>> VA_BITS_SV57)) \ >>>>>>> - mmap_base = VA_USER_SV57 - rnd_gap; \ >>>>>>> - else if ((((_addr) >= VA_USER_SV48)) && (VA_BITS >= >>>>>>> VA_BITS_SV48)) \ >>>>>>> - mmap_base = VA_USER_SV48 - rnd_gap; \ >>>>>>> else \ >>>>>>> - mmap_base = VA_USER_SV39 - rnd_gap; \ >>>>>>> + mmap_base = (_addr + len) - rnd_gap; \ >>>>>>> mmap_base; \ >>>>>>> }) >>>>>>> >>>>>>> +#ifdef CONFIG_64BIT >>>>>>> +#define DEFAULT_MAP_WINDOW (UL(1) << (MMAP_VA_BITS - 1)) >>>>>>> +#define STACK_TOP_MAX TASK_SIZE_64 >>>>>>> #else >>>>>>> #define DEFAULT_MAP_WINDOW TASK_SIZE >>>>>>> #define STACK_TOP_MAX TASK_SIZE >>>>>>>>> I have carefully tested your patch on qemu with sv57. A >>>>> bug that >>>>>> needs >>>>>> to be solved is that mmap with the same hint address without >>>>>> MAP_FIXED >>>>>> set will fail the second time. >>>>>>> Userspace code to reproduce the bug: >>>>>>> #include <sys/mman.h> >>>>>> #include <stdio.h> >>>>>> #include <stdint.h> >>>>>>> void test(char *addr) { >>>>>> char *res = mmap(addr, 4096, PROT_READ | PROT_WRITE, >>>>>> MAP_ANONYMOUS >>>>>>> MAP_PRIVATE, -1, 0); >>>>>> printf("hint %p got %p.\n", addr, res); >>>>>> } >>>>>>> int main (void) { >>>>>> test(1<<30); >>>>>> test(1<<30); >>>>>> test(1<<30); >>>>>> return 0; >>>>>> } >>>>>>> output: >>>>>>> hint 0x40000000 got 0x40000000. >>>>>> hint 0x40000000 got 0xffffffffffffffff. >>>>>> hint 0x40000000 got 0xffffffffffffffff. >>>>>>> output on x86: >>>>>>> hint 0x40000000 got 0x40000000. >>>>>> hint 0x40000000 got 0x7f9171363000. >>>>>> hint 0x40000000 got 0x7f9171362000. >>>>>>> It may need to implement a special arch_get_unmapped_area and >>>>>> arch_get_unmapped_area_topdown function. >>>>>> >>>>> This is because hint address < rnd_gap. I have tried to let mmap_base = >>>>> min((_addr + len), (base) + TASK_SIZE - DEFAULT_MAP_WINDOW). However it >>>>> does not work for bottom-up while ulimit -s is unlimited. You said this >>>>> behavior is expected from patch v2 review. However it brings a new >>>>> regression even on sv39 systems. >>>>> >>>>> I still don't know the reason why use addr+len as the upper-bound. I >>>>> think solution like x86/arm64/powerpc provide two address space switch >>>>> based on whether hint address above the default map window is enough. >>>>> >>>> Yep this is expected. It is up to the maintainers to decide. >>> Sorry I forgot to reply to this, I had a buffer sitting around somewhere >>> but I must have lost it. >>> >>> I think Charlie's approach is the right way to go. Putting my userspace >>> hat on, I'd much rather have my allocations fail rather than silently >>> ignore the hint when there's memory pressure. >>> >>> If there's some real use case that needs these low hints to be silently >>> ignored under VA pressure then we can try and figure something out that >>> makes those applications work. >> I could confirm that this patch has broken chromium's partition allocator on >> riscv64. The minimal reproduction I use is chromium-mmap.c: >> >> #include <stdio.h> >> #include <sys/mman.h> >> >> int main() { >> void* expected = (void*)0x400000000; >> void* addr = mmap(expected, 17179869184, PROT_NONE, >> MAP_PRIVATE|MAP_ANONYMOUS, -1, 0); >> if (addr != expected) { > It is not valid to assume that the address returned by mmap will be the > hint address. If the hint address is not available, mmap will return a > different address.
Oh, sorry I didn't make it clear what is the expected behavior. The printf here is solely for debugging purpose and I don't mean that chromium expect it will get the hint address. The expected behavior is that both the two mmap calls will succeed.
>> printf("Not expected address: %p != %p\n", addr, expected); >> } >> expected = (void*)0x3fffff000; >> addr = mmap(expected, 17179873280, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS, >> -1, 0); >> if (addr != expected) { >> printf("Not expected address: %p != %p\n", addr, expected); >> } >> return 0; >> } >> >> The second mmap fails with ENOMEM. Manually reverting this commit fixes the >> issue for me. So I think it's clearly a regression and breaks userspace. >> > The issue here is that overlapping memory is being requested. This > second mmap will never be able to provide an address at 0x3fffff000 with > a size of 0x400001000 since mmap just provided an address at 0x400000000 > with a size of 0x400000000. > > Before this patch, this request causes mmap to return a completely > arbitrary value. There is no reason to use a hint address in this manner > because the hint can never be respected. Since an arbitrary address is > desired, a hint of zero should be used. > > This patch causes the behavior to be more deterministic. Instead of > providing an arbitrary address, it causes the address to be less than or > equal to the hint address. This allows for applications to make > assumptions about the returned address.
About the overlap, of course the partition allocator's request for overlapped vma seems unreasonable.
But I still don't quite understand why mmap cannot use an address higher than the hint address. The hint address, after all, is a hint, not a requirement.
Quoting the man page:
> If another mapping already exists there, the kernel picks > a new address that may or may not depend on the hint. The > address of the new mapping is returned as the result of the call.
So for casual programmers that only reads man page but not architecture specific kernel documentation, the current behavior of mmap on riscv64 failing on overlapped address ranges are quite surprising IMO.
And quoting the man page again about the errno:
> ENOMEM No memory is available. > > ENOMEM The process's maximum number of mappings would have been > exceeded. This error can also occur for munmap(), when > unmapping a region in the middle of an existing mapping, > since this results in two smaller mappings on either side > of the region being unmapped. > > ENOMEM (since Linux 4.7) The process's RLIMIT_DATA limit, > described in getrlimit(2), would have been exceeded. > > ENOMEM We don't like addr, because it exceeds the virtual address > space of the CPU. >
There's no matching description for the ENOMEM returned here. I would suggest removing "because it exceeds the virtual address space of the CPU." from the last item if the ENOMEM behavior here is expected.
> This code is unfortunately relying on the previously mostly undefined > behavior of the hint address in mmap.
Although I haven't read the code of chromium's partition allocator to judge whether it should be improved or fixed for riscv64, I do know that the kernel "don't break userspace" and "never EVER blame the user programs".
Ya, sorry for breaking stuff.
The goal here was to move to the mmap flag behavor similar to what arm64 and x86 have, as that was done in a way that didn't appear to break userspace -- or at least any real userspace programs. IIRC that first test was pretty broken (it actually depended on the hint address), but sounds like that's not the case.
I think maybe this is just luck: we didn't chunk the address space up, we're just hinting on every bit, so we're just more likely to hit the exhaustion. Doesn't really matter, though, as if it's breaking stuff so we've got to deal with it.
Charlie and I are just talking, and best we can come up with is to move to the behavior where we fall back to larger allocation regions when there's no space in the smaller allocation region.
For this solution, the only difference from the mmap behavior of x86 and aarch64 is that we will first try to allocate some memory from an address less or equal to the request address + size. But for most cases, I think there is no need to do that, especially for those addresses < BIT(47), as most program works fine on x86-64, which has 47bit available userspace address space to use. And for that program that wants an address < BIT(32), we already have MAP_32BIT now.
I think we can just fix like that patch: https://lore.kernel.org/lkml/tencent_B2D0435BC011135736262764B511994F4805@qq...
This patch does not satisfy the requirement of having the ability to guarantee that mmap returns an address that is less than the hint address.
Indeed. My intuition is to remove it and align it with x86 and aarch64.
This patch only allows an address to be less than the DEFAULT_MAP_WINDOW which is 32 bits on sv32, 39 bits on sv39, and 48 bits on sv48 or sv57.
This patch also again falls into the trap of using the hint address to forcefully restrict the address space.
Indeed. However, x86 and aarch64 also use this behavior to restrict va >= BIT(47) by default unless we have the hint address larger than BIT(47).
I agree with Levi that it is not very good behavior to have a "hint" cause mmap to fail if conforming to the hint isn't possible. Instead, I believe it to be more logical to try to allocate at the hint address, otherwise give a random address.
I also agree with this.
The current behavior can then be maintained through the flag MAP_BELOW_HINT. This way the user explicitly selects that they want mmap to fail if an address could not be found within the hint address constraints.
I think restricting the addresses with the MAP_BELOW_HINT flag would be the best choice. However, it remains a problem: What should the behavior be when there is no MAP_BELOW_HINT? I think we can fallback to Sv48 on the Sv57 machine by default to align with x86 and aarch64.
Although that is the behavior on other architectures, I am hesitant to follow it because it is a somewhat arbitrary restriction. With a generic flag that can force mmap to provide exactly the number of bits that an application needs, there is no need for this restriction on riscv. It may cause problems for applications running on sv57 hardware, however:
- sv57 hardware does not exist yet
Note that we have QEMU, which uses Sv57 by default. If the mmap returns an address >= BIT(47) with hint address == NULL, many QEMU users, such as some distro package builders, may need to deal with some problems.
- A hint address would still be required if following the same behavior
as other architectures. a. It would aid in the porting of an application to sv57 hardware, but I am not sure that forcing this restriction is worth having this one piece of parity. Applications using the proposed generic flag would work as expected on all architectures as well.
- Charlie
Charlie's going to try and throw together a patch for that, hopefully it'll sort things out.
> The goal of this patch is to help > developers have more consistent mmap behavior, but maybe it is necessary > to hide this behavior behind an mmap flag.
Thank you for helping to shape a more consistent mmap behavior. I think this should be fixed ASAP either by allowing the hint address to be ignored (as suggested by the Linux man page), or hide this behavior behind an mmap flag as you said.
> - Charlie > >> See alsohttps://github.com/riscv-forks/electron/issues/4 >> >>>> - Charlie >> Sincerely, >> Levi >>
I accidentally introduced some HTML into this reply so this reply is resent as plain text.
Sincerely, Levi
On Fri, Aug 23, 2024 at 02:55:15PM +0800, Yangyu Chen wrote:
On Aug 23, 2024, at 13:57, Charlie Jenkins charlie@rivosinc.com wrote:
On Fri, Aug 23, 2024 at 01:28:18PM +0800, Yangyu Chen wrote:
On Aug 23, 2024, at 12:39, Charlie Jenkins charlie@rivosinc.com wrote:
On Thu, Aug 22, 2024 at 10:51:54AM +0800, Yangyu Chen wrote:
On Aug 22, 2024, at 06:17, Palmer Dabbelt palmer@dabbelt.com wrote:
On Mon, 19 Aug 2024 18:58:18 PDT (-0700), rsworktech@outlook.com wrote: > On 2024-08-20 01:00, Charlie Jenkins wrote: >> On Mon, Aug 19, 2024 at 01:55:57PM +0800, Levi Zim wrote: >>> On 2024-03-22 22:06, Palmer Dabbelt wrote: >>>> On Thu, 01 Feb 2024 18:28:06 PST (-0800), Charlie Jenkins wrote: >>>>> On Wed, Jan 31, 2024 at 11:59:43PM +0800, Yangyu Chen wrote: >>>>>> On Wed, 2024-01-31 at 22:41 +0800, Yangyu Chen wrote: >>>>>>> On Tue, 2024-01-30 at 17:07 -0800, Charlie Jenkins wrote: >>>>>>>> On riscv it is guaranteed that the address returned by mmap is less >>>>>>>> than >>>>>>>> the hint address. Allow mmap to return an address all the way up to >>>>>>>> addr, if provided, rather than just up to the lower address space. >>>>>>>>>> This provides a performance benefit as well, allowing >>>>>> mmap to exit >>>>>>>> after >>>>>>>> checking that the address is in range rather than searching for a >>>>>>>> valid >>>>>>>> address. >>>>>>>>>> It is possible to provide an address that uses at most the same >>>>>>>> number >>>>>>>> of bits, however it is significantly more computationally expensive >>>>>>>> to >>>>>>>> provide that number rather than setting the max to be the hint >>>>>>>> address. >>>>>>>> There is the instruction clz/clzw in Zbb that returns the highest >>>>>>>> set >>>>>>>> bit >>>>>>>> which could be used to performantly implement this, but it would >>>>>>>> still >>>>>>>> be slower than the current implementation. At worst case, half of >>>>>>>> the >>>>>>>> address would not be able to be allocated when a hint address is >>>>>>>> provided. >>>>>>>>>> Signed-off-by: Charlie Jenkinscharlie@rivosinc.com >>>>>>>> --- >>>>>>>> arch/riscv/include/asm/processor.h | 27 +++++++++++--------------- >>>>>>>> - >>>>>>>> 1 file changed, 11 insertions(+), 16 deletions(-) >>>>>>>>>> diff --git a/arch/riscv/include/asm/processor.h >>>>>>>> b/arch/riscv/include/asm/processor.h >>>>>>>> index f19f861cda54..8ece7a8f0e18 100644 >>>>>>>> --- a/arch/riscv/include/asm/processor.h >>>>>>>> +++ b/arch/riscv/include/asm/processor.h >>>>>>>> @@ -14,22 +14,16 @@ >>>>>>>> >>>>>>>> #include <asm/ptrace.h> >>>>>>>> >>>>>>>> -#ifdef CONFIG_64BIT >>>>>>>> -#define DEFAULT_MAP_WINDOW (UL(1) << (MMAP_VA_BITS - 1)) >>>>>>>> -#define STACK_TOP_MAX TASK_SIZE_64 >>>>>>>> - >>>>>>>> #define arch_get_mmap_end(addr, len, flags) \ >>>>>>>> ({ \ >>>>>>>> unsigned long >>>>>>>> mmap_end; \ >>>>>>>> typeof(addr) _addr = (addr); \ >>>>>>>> - if ((_addr) == 0 || (IS_ENABLED(CONFIG_COMPAT) && >>>>>>>> is_compat_task())) \ >>>>>>>> + if ((_addr) == 0 || \ >>>>>>>> + (IS_ENABLED(CONFIG_COMPAT) && is_compat_task()) || \ >>>>>>>> + ((_addr + len) > BIT(VA_BITS - >>>>>>>> 1))) \ >>>>>>>> mmap_end = STACK_TOP_MAX; \ >>>>>>>> - else if ((_addr) >= VA_USER_SV57) \ >>>>>>>> - mmap_end = STACK_TOP_MAX; \ >>>>>>>> - else if ((((_addr) >= VA_USER_SV48)) && (VA_BITS >= >>>>>>>> VA_BITS_SV48)) \ >>>>>>>> - mmap_end = VA_USER_SV48; \ >>>>>>>> else \ >>>>>>>> - mmap_end = VA_USER_SV39; \ >>>>>>>> + mmap_end = (_addr + len); \ >>>>>>>> mmap_end; \ >>>>>>>> }) >>>>>>>> >>>>>>>> @@ -39,17 +33,18 @@ >>>>>>>> typeof(addr) _addr = (addr); \ >>>>>>>> typeof(base) _base = (base); \ >>>>>>>> unsigned long rnd_gap = DEFAULT_MAP_WINDOW - (_base); \ >>>>>>>> - if ((_addr) == 0 || (IS_ENABLED(CONFIG_COMPAT) && >>>>>>>> is_compat_task())) \ >>>>>>>> + if ((_addr) == 0 || \ >>>>>>>> + (IS_ENABLED(CONFIG_COMPAT) && is_compat_task()) || \ >>>>>>>> + ((_addr + len) > BIT(VA_BITS - >>>>>>>> 1))) \ >>>>>>>> mmap_base = (_base); \ >>>>>>>> - else if (((_addr) >= VA_USER_SV57) && (VA_BITS >= >>>>>>>> VA_BITS_SV57)) \ >>>>>>>> - mmap_base = VA_USER_SV57 - rnd_gap; \ >>>>>>>> - else if ((((_addr) >= VA_USER_SV48)) && (VA_BITS >= >>>>>>>> VA_BITS_SV48)) \ >>>>>>>> - mmap_base = VA_USER_SV48 - rnd_gap; \ >>>>>>>> else \ >>>>>>>> - mmap_base = VA_USER_SV39 - rnd_gap; \ >>>>>>>> + mmap_base = (_addr + len) - rnd_gap; \ >>>>>>>> mmap_base; \ >>>>>>>> }) >>>>>>>> >>>>>>>> +#ifdef CONFIG_64BIT >>>>>>>> +#define DEFAULT_MAP_WINDOW (UL(1) << (MMAP_VA_BITS - 1)) >>>>>>>> +#define STACK_TOP_MAX TASK_SIZE_64 >>>>>>>> #else >>>>>>>> #define DEFAULT_MAP_WINDOW TASK_SIZE >>>>>>>> #define STACK_TOP_MAX TASK_SIZE >>>>>>>>>> I have carefully tested your patch on qemu with sv57. A >>>>>> bug that >>>>>>> needs >>>>>>> to be solved is that mmap with the same hint address without >>>>>>> MAP_FIXED >>>>>>> set will fail the second time. >>>>>>>> Userspace code to reproduce the bug: >>>>>>>> #include <sys/mman.h> >>>>>>> #include <stdio.h> >>>>>>> #include <stdint.h> >>>>>>>> void test(char *addr) { >>>>>>> char *res = mmap(addr, 4096, PROT_READ | PROT_WRITE, >>>>>>> MAP_ANONYMOUS >>>>>>>> MAP_PRIVATE, -1, 0); >>>>>>> printf("hint %p got %p.\n", addr, res); >>>>>>> } >>>>>>>> int main (void) { >>>>>>> test(1<<30); >>>>>>> test(1<<30); >>>>>>> test(1<<30); >>>>>>> return 0; >>>>>>> } >>>>>>>> output: >>>>>>>> hint 0x40000000 got 0x40000000. >>>>>>> hint 0x40000000 got 0xffffffffffffffff. >>>>>>> hint 0x40000000 got 0xffffffffffffffff. >>>>>>>> output on x86: >>>>>>>> hint 0x40000000 got 0x40000000. >>>>>>> hint 0x40000000 got 0x7f9171363000. >>>>>>> hint 0x40000000 got 0x7f9171362000. >>>>>>>> It may need to implement a special arch_get_unmapped_area and >>>>>>> arch_get_unmapped_area_topdown function. >>>>>>> >>>>>> This is because hint address < rnd_gap. I have tried to let mmap_base = >>>>>> min((_addr + len), (base) + TASK_SIZE - DEFAULT_MAP_WINDOW). However it >>>>>> does not work for bottom-up while ulimit -s is unlimited. You said this >>>>>> behavior is expected from patch v2 review. However it brings a new >>>>>> regression even on sv39 systems. >>>>>> >>>>>> I still don't know the reason why use addr+len as the upper-bound. I >>>>>> think solution like x86/arm64/powerpc provide two address space switch >>>>>> based on whether hint address above the default map window is enough. >>>>>> >>>>> Yep this is expected. It is up to the maintainers to decide. >>>> Sorry I forgot to reply to this, I had a buffer sitting around somewhere >>>> but I must have lost it. >>>> >>>> I think Charlie's approach is the right way to go. Putting my userspace >>>> hat on, I'd much rather have my allocations fail rather than silently >>>> ignore the hint when there's memory pressure. >>>> >>>> If there's some real use case that needs these low hints to be silently >>>> ignored under VA pressure then we can try and figure something out that >>>> makes those applications work. >>> I could confirm that this patch has broken chromium's partition allocator on >>> riscv64. The minimal reproduction I use is chromium-mmap.c: >>> >>> #include <stdio.h> >>> #include <sys/mman.h> >>> >>> int main() { >>> void* expected = (void*)0x400000000; >>> void* addr = mmap(expected, 17179869184, PROT_NONE, >>> MAP_PRIVATE|MAP_ANONYMOUS, -1, 0); >>> if (addr != expected) { >> It is not valid to assume that the address returned by mmap will be the >> hint address. If the hint address is not available, mmap will return a >> different address. > > Oh, sorry I didn't make it clear what is the expected behavior. > The printf here is solely for debugging purpose and I don't mean that > chromium expect it will get the hint address. The expected behavior is > that both the two mmap calls will succeed. > >>> printf("Not expected address: %p != %p\n", addr, expected); >>> } >>> expected = (void*)0x3fffff000; >>> addr = mmap(expected, 17179873280, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS, >>> -1, 0); >>> if (addr != expected) { >>> printf("Not expected address: %p != %p\n", addr, expected); >>> } >>> return 0; >>> } >>> >>> The second mmap fails with ENOMEM. Manually reverting this commit fixes the >>> issue for me. So I think it's clearly a regression and breaks userspace. >>> >> The issue here is that overlapping memory is being requested. This >> second mmap will never be able to provide an address at 0x3fffff000 with >> a size of 0x400001000 since mmap just provided an address at 0x400000000 >> with a size of 0x400000000. >> >> Before this patch, this request causes mmap to return a completely >> arbitrary value. There is no reason to use a hint address in this manner >> because the hint can never be respected. Since an arbitrary address is >> desired, a hint of zero should be used. >> >> This patch causes the behavior to be more deterministic. Instead of >> providing an arbitrary address, it causes the address to be less than or >> equal to the hint address. This allows for applications to make >> assumptions about the returned address. > > About the overlap, of course the partition allocator's request for > overlapped vma seems unreasonable. > > But I still don't quite understand why mmap cannot use an address higher > than the hint address. > The hint address, after all, is a hint, not a requirement. > > Quoting the man page: > >> If another mapping already exists there, the kernel picks >> a new address that may or may not depend on the hint. The >> address of the new mapping is returned as the result of the call. > > So for casual programmers that only reads man page but not architecture > specific kernel documentation, the current behavior of mmap on riscv64 > failing on overlapped address ranges are quite surprising IMO. > > And quoting the man page again about the errno: > >> ENOMEM No memory is available. >> >> ENOMEM The process's maximum number of mappings would have been >> exceeded. This error can also occur for munmap(), when >> unmapping a region in the middle of an existing mapping, >> since this results in two smaller mappings on either side >> of the region being unmapped. >> >> ENOMEM (since Linux 4.7) The process's RLIMIT_DATA limit, >> described in getrlimit(2), would have been exceeded. >> >> ENOMEM We don't like addr, because it exceeds the virtual address >> space of the CPU. >> > > There's no matching description for the ENOMEM returned here. > I would suggest removing "because it exceeds the virtual address > space of the CPU." from the last item if the ENOMEM behavior here > is expected. > >> This code is unfortunately relying on the previously mostly undefined >> behavior of the hint address in mmap. > > Although I haven't read the code of chromium's partition allocator to > judge whether it should > be improved or fixed for riscv64, I do know that the kernel "don't break > userspace" and "never EVER blame the user programs".
Ya, sorry for breaking stuff.
The goal here was to move to the mmap flag behavor similar to what arm64 and x86 have, as that was done in a way that didn't appear to break userspace -- or at least any real userspace programs. IIRC that first test was pretty broken (it actually depended on the hint address), but sounds like that's not the case.
I think maybe this is just luck: we didn't chunk the address space up, we're just hinting on every bit, so we're just more likely to hit the exhaustion. Doesn't really matter, though, as if it's breaking stuff so we've got to deal with it.
Charlie and I are just talking, and best we can come up with is to move to the behavior where we fall back to larger allocation regions when there's no space in the smaller allocation region.
For this solution, the only difference from the mmap behavior of x86 and aarch64 is that we will first try to allocate some memory from an address less or equal to the request address + size. But for most cases, I think there is no need to do that, especially for those addresses < BIT(47), as most program works fine on x86-64, which has 47bit available userspace address space to use. And for that program that wants an address < BIT(32), we already have MAP_32BIT now.
I think we can just fix like that patch: https://lore.kernel.org/lkml/tencent_B2D0435BC011135736262764B511994F4805@qq...
This patch does not satisfy the requirement of having the ability to guarantee that mmap returns an address that is less than the hint address.
Indeed. My intuition is to remove it and align it with x86 and aarch64.
This patch only allows an address to be less than the DEFAULT_MAP_WINDOW which is 32 bits on sv32, 39 bits on sv39, and 48 bits on sv48 or sv57.
This patch also again falls into the trap of using the hint address to forcefully restrict the address space.
Indeed. However, x86 and aarch64 also use this behavior to restrict va >= BIT(47) by default unless we have the hint address larger than BIT(47).
I agree with Levi that it is not very good behavior to have a "hint" cause mmap to fail if conforming to the hint isn't possible. Instead, I believe it to be more logical to try to allocate at the hint address, otherwise give a random address.
I also agree with this.
The current behavior can then be maintained through the flag MAP_BELOW_HINT. This way the user explicitly selects that they want mmap to fail if an address could not be found within the hint address constraints.
I think restricting the addresses with the MAP_BELOW_HINT flag would be the best choice. However, it remains a problem: What should the behavior be when there is no MAP_BELOW_HINT? I think we can fallback to Sv48 on the Sv57 machine by default to align with x86 and aarch64.
Although that is the behavior on other architectures, I am hesitant to follow it because it is a somewhat arbitrary restriction. With a generic flag that can force mmap to provide exactly the number of bits that an application needs, there is no need for this restriction on riscv. It may cause problems for applications running on sv57 hardware, however:
- sv57 hardware does not exist yet
Note that we have QEMU, which uses Sv57 by default. If the mmap returns an address >= BIT(47) with hint address == NULL, many QEMU users, such as some distro package builders, may need to deal with some problems.
Yes that is true. However that was an existing problem before any of these patches went in. I think the best solution is to have an explicit flag as you have suggested with similar behavor to MAP_32BIT to solve this.
- Charlie
- A hint address would still be required if following the same behavior
as other architectures. a. It would aid in the porting of an application to sv57 hardware, but I am not sure that forcing this restriction is worth having this one piece of parity. Applications using the proposed generic flag would work as expected on all architectures as well.
- Charlie
Charlie's going to try and throw together a patch for that, hopefully it'll sort things out.
>> The goal of this patch is to help >> developers have more consistent mmap behavior, but maybe it is necessary >> to hide this behavior behind an mmap flag. > > Thank you for helping to shape a more consistent mmap behavior. > I think this should be fixed ASAP either by allowing the hint address to > be ignored > (as suggested by the Linux man page), or hide this behavior behind an > mmap flag as you said. > >> - Charlie >> >>> See alsohttps://github.com/riscv-forks/electron/issues/4 >>> >>>>> - Charlie >>> Sincerely, >>> Levi >>> > > I accidentally introduced some HTML into this reply so this reply is > resent as plain text. > > Sincerely, > Levi
The behavior of mmap on riscv is defined to not provide an address that uses more bits than the hint address, if provided. Make the tests reflect that.
Signed-off-by: Charlie Jenkins charlie@rivosinc.com --- tools/testing/selftests/riscv/mm/mmap_bottomup.c | 23 +---- tools/testing/selftests/riscv/mm/mmap_default.c | 23 +---- tools/testing/selftests/riscv/mm/mmap_test.h | 107 ++++++++++++++--------- 3 files changed, 67 insertions(+), 86 deletions(-)
diff --git a/tools/testing/selftests/riscv/mm/mmap_bottomup.c b/tools/testing/selftests/riscv/mm/mmap_bottomup.c index 1757d19ca89b..7f7d3eb8b9c9 100644 --- a/tools/testing/selftests/riscv/mm/mmap_bottomup.c +++ b/tools/testing/selftests/riscv/mm/mmap_bottomup.c @@ -6,30 +6,9 @@
TEST(infinite_rlimit) { -// Only works on 64 bit -#if __riscv_xlen == 64 - struct addresses mmap_addresses; - EXPECT_EQ(BOTTOM_UP, memory_layout());
- do_mmaps(&mmap_addresses); - - EXPECT_NE(MAP_FAILED, mmap_addresses.no_hint); - EXPECT_NE(MAP_FAILED, mmap_addresses.on_37_addr); - EXPECT_NE(MAP_FAILED, mmap_addresses.on_38_addr); - EXPECT_NE(MAP_FAILED, mmap_addresses.on_46_addr); - EXPECT_NE(MAP_FAILED, mmap_addresses.on_47_addr); - EXPECT_NE(MAP_FAILED, mmap_addresses.on_55_addr); - EXPECT_NE(MAP_FAILED, mmap_addresses.on_56_addr); - - EXPECT_GT(1UL << 47, (unsigned long)mmap_addresses.no_hint); - EXPECT_GT(1UL << 38, (unsigned long)mmap_addresses.on_37_addr); - EXPECT_GT(1UL << 38, (unsigned long)mmap_addresses.on_38_addr); - EXPECT_GT(1UL << 38, (unsigned long)mmap_addresses.on_46_addr); - EXPECT_GT(1UL << 47, (unsigned long)mmap_addresses.on_47_addr); - EXPECT_GT(1UL << 47, (unsigned long)mmap_addresses.on_55_addr); - EXPECT_GT(1UL << 56, (unsigned long)mmap_addresses.on_56_addr); -#endif + TEST_MMAPS; }
TEST_HARNESS_MAIN diff --git a/tools/testing/selftests/riscv/mm/mmap_default.c b/tools/testing/selftests/riscv/mm/mmap_default.c index c63c60b9397e..2ba3ec990006 100644 --- a/tools/testing/selftests/riscv/mm/mmap_default.c +++ b/tools/testing/selftests/riscv/mm/mmap_default.c @@ -6,30 +6,9 @@
TEST(default_rlimit) { -// Only works on 64 bit -#if __riscv_xlen == 64 - struct addresses mmap_addresses; - EXPECT_EQ(TOP_DOWN, memory_layout());
- do_mmaps(&mmap_addresses); - - EXPECT_NE(MAP_FAILED, mmap_addresses.no_hint); - EXPECT_NE(MAP_FAILED, mmap_addresses.on_37_addr); - EXPECT_NE(MAP_FAILED, mmap_addresses.on_38_addr); - EXPECT_NE(MAP_FAILED, mmap_addresses.on_46_addr); - EXPECT_NE(MAP_FAILED, mmap_addresses.on_47_addr); - EXPECT_NE(MAP_FAILED, mmap_addresses.on_55_addr); - EXPECT_NE(MAP_FAILED, mmap_addresses.on_56_addr); - - EXPECT_GT(1UL << 47, (unsigned long)mmap_addresses.no_hint); - EXPECT_GT(1UL << 38, (unsigned long)mmap_addresses.on_37_addr); - EXPECT_GT(1UL << 38, (unsigned long)mmap_addresses.on_38_addr); - EXPECT_GT(1UL << 38, (unsigned long)mmap_addresses.on_46_addr); - EXPECT_GT(1UL << 47, (unsigned long)mmap_addresses.on_47_addr); - EXPECT_GT(1UL << 47, (unsigned long)mmap_addresses.on_55_addr); - EXPECT_GT(1UL << 56, (unsigned long)mmap_addresses.on_56_addr); -#endif + TEST_MMAPS; }
TEST_HARNESS_MAIN diff --git a/tools/testing/selftests/riscv/mm/mmap_test.h b/tools/testing/selftests/riscv/mm/mmap_test.h index 9b8434f62f57..36e78d991d5e 100644 --- a/tools/testing/selftests/riscv/mm/mmap_test.h +++ b/tools/testing/selftests/riscv/mm/mmap_test.h @@ -4,60 +4,83 @@ #include <sys/mman.h> #include <sys/resource.h> #include <stddef.h> +#include <strings.h> +#include "../../kselftest_harness.h"
#define TOP_DOWN 0 #define BOTTOM_UP 1
-struct addresses { - int *no_hint; - int *on_37_addr; - int *on_38_addr; - int *on_46_addr; - int *on_47_addr; - int *on_55_addr; - int *on_56_addr; +#if __riscv_xlen == 64 +uint64_t random_addresses[] = { + 0x19764f0d73b3a9f0, 0x016049584cecef59, 0x3580bdd3562f4acd, + 0x1164219f20b17da0, 0x07d97fcb40ff2373, 0x76ec528921272ee7, + 0x4dd48c38a3de3f70, 0x2e11415055f6997d, 0x14b43334ac476c02, + 0x375a60795aff19f6, 0x47f3051725b8ee1a, 0x4e697cf240494a9f, + 0x456b59b5c2f9e9d1, 0x101724379d63cb96, 0x7fe9ad31619528c1, + 0x2f417247c495c2ea, 0x329a5a5b82943a5e, 0x06d7a9d6adcd3827, + 0x327b0b9ee37f62d5, 0x17c7b1851dfd9b76, 0x006ebb6456ec2cd9, + 0x00836cd14146a134, 0x00e5c4dcde7126db, 0x004c29feadf75753, + 0x00d8b20149ed930c, 0x00d71574c269387a, 0x0006ebe4a82acb7a, + 0x0016135df51f471b, 0x00758bdb55455160, 0x00d0bdd949b13b32, + 0x00ecea01e7c5f54b, 0x00e37b071b9948b1, 0x0011fdd00ff57ab3, + 0x00e407294b52f5ea, 0x00567748c200ed20, 0x000d073084651046, + 0x00ac896f4365463c, 0x00eb0d49a0b26216, 0x0066a2564a982a31, + 0x002e0d20237784ae, 0x0000554ff8a77a76, 0x00006ce07a54c012, + 0x000009570516d799, 0x00000954ca15b84d, 0x0000684f0d453379, + 0x00002ae5816302b5, 0x0000042403fb54bf, 0x00004bad7392bf30, + 0x00003e73bfa4b5e3, 0x00005442c29978e0, 0x00002803f11286b6, + 0x000073875d745fc6, 0x00007cede9cb8240, 0x000027df84cc6a4f, + 0x00006d7e0e74242a, 0x00004afd0b836e02, 0x000047d0e837cd82, + 0x00003b42405efeda, 0x00001531bafa4c95, 0x00007172cae34ac4, }; +#else +uint32_t random_addresses[] = { + 0x8dc302e0, 0x929ab1e0, 0xb47683ba, 0xea519c73, 0xa19f1c90, 0xc49ba213, + 0x8f57c625, 0xadfe5137, 0x874d4d95, 0xaa20f09d, 0xcf21ebfc, 0xda7737f1, + 0xcedf392a, 0x83026c14, 0xccedca52, 0xc6ccf826, 0xe0cd9415, 0x997472ca, + 0xa21a44c1, 0xe82196f5, 0xa23fd66b, 0xc28d5590, 0xd009cdce, 0xcf0be646, + 0x8fc8c7ff, 0xe2a85984, 0xa3d3236b, 0x89a0619d, 0xc03db924, 0xb5d4cc1b, + 0xb96ee04c, 0xd191da48, 0xb432a000, 0xaa2bebbc, 0xa2fcb289, 0xb0cca89b, + 0xb0c18d6a, 0x88f58deb, 0xa4d42d1c, 0xe4d74e86, 0x99902b09, 0x8f786d31, + 0xbec5e381, 0x9a727e65, 0xa9a65040, 0xa880d789, 0x8f1b335e, 0xfc821c1e, + 0x97e34be4, 0xbbef84ed, 0xf447d197, 0xfd7ceee2, 0xe632348d, 0xee4590f4, + 0x958992a5, 0xd57e05d6, 0xfd240970, 0xc5b0dcff, 0xd96da2c2, 0xa7ae041d, +}; +#endif
-static inline void do_mmaps(struct addresses *mmap_addresses) -{ - /* - * Place all of the hint addresses on the boundaries of mmap - * sv39, sv48, sv57 - * User addresses end at 1<<38, 1<<47, 1<<56 respectively - */ - void *on_37_bits = (void *)(1UL << 37); - void *on_38_bits = (void *)(1UL << 38); - void *on_46_bits = (void *)(1UL << 46); - void *on_47_bits = (void *)(1UL << 47); - void *on_55_bits = (void *)(1UL << 55); - void *on_56_bits = (void *)(1UL << 56); +#define PROT (PROT_READ | PROT_WRITE) +#define FLAGS (MAP_PRIVATE | MAP_ANONYMOUS)
- int prot = PROT_READ | PROT_WRITE; - int flags = MAP_PRIVATE | MAP_ANONYMOUS; +/* mmap must return a value that doesn't use more bits than the hint address. */ +static inline unsigned long get_max_value(unsigned long input) +{ + unsigned long max_bit = (1UL << (((sizeof(unsigned long) * 8) - 1 - + __builtin_clzl(input))));
- mmap_addresses->no_hint = - mmap(NULL, 5 * sizeof(int), prot, flags, 0, 0); - mmap_addresses->on_37_addr = - mmap(on_37_bits, 5 * sizeof(int), prot, flags, 0, 0); - mmap_addresses->on_38_addr = - mmap(on_38_bits, 5 * sizeof(int), prot, flags, 0, 0); - mmap_addresses->on_46_addr = - mmap(on_46_bits, 5 * sizeof(int), prot, flags, 0, 0); - mmap_addresses->on_47_addr = - mmap(on_47_bits, 5 * sizeof(int), prot, flags, 0, 0); - mmap_addresses->on_55_addr = - mmap(on_55_bits, 5 * sizeof(int), prot, flags, 0, 0); - mmap_addresses->on_56_addr = - mmap(on_56_bits, 5 * sizeof(int), prot, flags, 0, 0); + return max_bit + (max_bit - 1); }
+#define TEST_MMAPS \ + ({ \ + void *mmap_addr; \ + for (int i = 0; i < ARRAY_SIZE(random_addresses); i++) { \ + mmap_addr = mmap((void *)random_addresses[i], \ + 5 * sizeof(int), PROT, FLAGS, 0, 0); \ + EXPECT_NE(MAP_FAILED, mmap_addr); \ + EXPECT_GE((void *)get_max_value(random_addresses[i]), \ + mmap_addr); \ + mmap_addr = mmap((void *)random_addresses[i], \ + 5 * sizeof(int), PROT, FLAGS, 0, 0); \ + EXPECT_NE(MAP_FAILED, mmap_addr); \ + EXPECT_GE((void *)get_max_value(random_addresses[i]), \ + mmap_addr); \ + } \ + }) + static inline int memory_layout(void) { - int prot = PROT_READ | PROT_WRITE; - int flags = MAP_PRIVATE | MAP_ANONYMOUS; - - void *value1 = mmap(NULL, sizeof(int), prot, flags, 0, 0); - void *value2 = mmap(NULL, sizeof(int), prot, flags, 0, 0); + void *value1 = mmap(NULL, sizeof(int), PROT, FLAGS, 0, 0); + void *value2 = mmap(NULL, sizeof(int), PROT, FLAGS, 0, 0);
return value2 > value1; }
Define mmap on riscv to not provide an address that uses more bits than the hint address, if provided.
Signed-off-by: Charlie Jenkins charlie@rivosinc.com --- Documentation/arch/riscv/vm-layout.rst | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-)
diff --git a/Documentation/arch/riscv/vm-layout.rst b/Documentation/arch/riscv/vm-layout.rst index 69ff6da1dbf8..e476b4386bd9 100644 --- a/Documentation/arch/riscv/vm-layout.rst +++ b/Documentation/arch/riscv/vm-layout.rst @@ -144,14 +144,8 @@ passing 0 into the hint address parameter of mmap. On CPUs with an address space smaller than sv48, the CPU maximum supported address space will be the default.
Software can "opt-in" to receiving VAs from another VA space by providing -a hint address to mmap. A hint address passed to mmap will cause the largest -address space that fits entirely into the hint to be used, unless there is no -space left in the address space. If there is no space available in the requested -address space, an address in the next smallest available address space will be -returned. - -For example, in order to obtain 48-bit VA space, a hint address greater than -:code:`1 << 47` must be provided. Note that this is 47 due to sv48 userspace -ending at :code:`1 << 47` and the addresses beyond this are reserved for the -kernel. Similarly, to obtain 57-bit VA space addresses, a hint address greater -than or equal to :code:`1 << 56` must be provided. +a hint address to mmap. When a hint address is passed to mmap, the returned +address will never use more bits than the hint address. For example, if a hint +address of `1 << 40` is passed to mmap, a valid returned address will never use +bits 41 through 63. If no mappable addresses are available in that range, mmap +will return `MAP_FAILED`.
Hello:
This series was applied to riscv/linux.git (for-next) by Palmer Dabbelt palmer@rivosinc.com:
On Tue, 30 Jan 2024 17:06:59 -0800 you wrote:
On riscv, mmap currently returns an address from the largest address space that can fit entirely inside of the hint address. This makes it such that the hint address is almost never returned. This patch raises the mappable area up to and including the hint address. This allows mmap to often return the hint address, which allows a performance improvement over searching for a valid address as well as making the behavior more similar to other architectures.
[...]
Here is the summary with links: - [v3,1/3] riscv: mm: Use hint address in mmap if available https://git.kernel.org/riscv/c/b5b4287accd7 - [v3,2/3] selftests: riscv: Generalize mm selftests https://git.kernel.org/riscv/c/73d05262a2ca - [v3,3/3] docs: riscv: Define behavior of mmap https://git.kernel.org/riscv/c/371a3c2055db
You are awesome, thank you!
linux-kselftest-mirror@lists.linaro.org