Skip to content

Commit c872e05

Browse files
author
Fox Snowpatch
committed
1 parent ddf9a4c commit c872e05

File tree

5 files changed

+40
-0
lines changed

5 files changed

+40
-0
lines changed

include/uapi/linux/personality.h

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ enum {
2222
WHOLE_SECONDS = 0x2000000,
2323
STICKY_TIMEOUTS = 0x4000000,
2424
ADDR_LIMIT_3GB = 0x8000000,
25+
ADDR_LIMIT_47BIT = 0x10000000,
2526
};
2627

2728
/*

mm/mmap.c

+3
Original file line numberDiff line numberDiff line change
@@ -1766,6 +1766,9 @@ unsigned long vm_unmapped_area(struct vm_unmapped_area_info *info)
17661766
{
17671767
unsigned long addr;
17681768

1769+
if (current->personality & ADDR_LIMIT_47BIT)
1770+
info->high_limit = MIN(info->high_limit, BIT(47) - 1);
1771+
17691772
if (info->flags & VM_UNMAPPED_AREA_TOPDOWN)
17701773
addr = unmapped_area_topdown(info);
17711774
else

tools/testing/selftests/mm/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ mlock-random-test
3232
virtual_address_range
3333
gup_test
3434
va_128TBswitch
35+
map_47bit_personality
3536
map_fixed_noreplace
3637
write_to_hugetlbfs
3738
hmm-tests

tools/testing/selftests/mm/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ TEST_GEN_FILES += hugepage-shm
5050
TEST_GEN_FILES += hugepage-vmemmap
5151
TEST_GEN_FILES += khugepaged
5252
TEST_GEN_FILES += madv_populate
53+
TEST_GEN_FILES += map_47bit_personality
5354
TEST_GEN_FILES += map_fixed_noreplace
5455
TEST_GEN_FILES += map_hugetlb
5556
TEST_GEN_FILES += map_populate
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
// SPDX-License-Identifier: GPL-2.0
2+
/*
3+
* Test the ADDR_LIMIT_47BIT personality flag.
4+
*/
5+
#include <sys/syscall.h>
6+
#include <sys/mman.h>
7+
#include <errno.h>
8+
#include "../kselftest.h"
9+
10+
#define LENGTH (100000000)
11+
12+
#define ADDR_LIMIT_47BIT 0x10000000
13+
#define BIT47 1UL << 47
14+
15+
/*
16+
* Map memory with ADDR_LIMIT_47BIT until no memory left. Ensure that all returned
17+
* addresses are below 47 bits.
18+
*/
19+
int main(int argc, char **argv)
20+
{
21+
void *addr;
22+
23+
syscall(__NR_personality, ADDR_LIMIT_47BIT);
24+
25+
do {
26+
addr = mmap(0, LENGTH, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
27+
} while (addr != MAP_FAILED && (unsigned long)addr < BIT47);
28+
29+
if (errno == ENOMEM)
30+
ksft_test_result_pass("ADDR_LIMIT_47BIT works\n");
31+
else
32+
ksft_test_result_fail("mmap returned address above 47 bits with ADDR_LIMIT_47BIT with addr: %p and err: %s\n",
33+
addr, strerror(errno));
34+
}

0 commit comments

Comments
 (0)