aboutsummaryrefslogtreecommitdiff
path: root/testcases/kernel/mem/hugetlb/hugemmap/hugemmap25.c
blob: 71beb90d355ae1d9bc5c91db82e1c64cde7b7195 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
// SPDX-License-Identifier: LGPL-2.1-or-later
/*
 * Copyright (C) 2009 IBM Corporation.
 * Author: David Gibson
 */

/*\
 * [Description]
 *
 * The kernel has bug for mremap() on some architecture. mremap() can
 * cause crashes on architectures with holes in the address space
 * (like ia64) and on powerpc with it's distinct page size "slices".
 *
 * This test get the normal mapping address and mremap() hugepage mapping
 * near to this normal mapping.
 */

#define _GNU_SOURCE
#include "hugetlb.h"

#define MNTPOINT "hugetlbfs/"

static int fd = -1;
static long hpage_size;

static int do_remap(int fd, void *target)
{
	void *a, *b;
	int ret;

	a = SAFE_MMAP(NULL, hpage_size, PROT_READ|PROT_WRITE, MAP_SHARED, fd, 0);

	ret = do_readback(a, hpage_size, "base huge");
	if (ret)
		goto cleanup;

	b = mremap(a, hpage_size, hpage_size, MREMAP_MAYMOVE | MREMAP_FIXED,
		   target);

	if (b != MAP_FAILED) {
		ret = do_readback(b, hpage_size, "remapped");
		a = b;
	} else {
		tst_res(TINFO|TERRNO, "mremap(MAYMOVE|FIXED) disallowed");
	}

cleanup:
	SAFE_MUNMAP(a, hpage_size);
	return ret;
}

static void *map_align(size_t size, size_t align)
{
	unsigned long xsize = size + align - getpagesize();
	size_t t;
	void *p, *q;

	p = SAFE_MMAP(NULL, xsize, PROT_READ|PROT_WRITE,
		 MAP_SHARED | MAP_ANONYMOUS, -1, 0);

	q = PALIGN(p, align);

	t = q - p;
	if (t)
		SAFE_MUNMAP(p, t);

	t = p + xsize - (q + size);
	if (t)
		SAFE_MUNMAP(q + size, t);

	return q;
}

static void run_test(void)
{
	void *p;
	int ret;

	fd = tst_creat_unlinked(MNTPOINT, 0);
	p = map_align(3*hpage_size, hpage_size);

	SAFE_MUNMAP(p, hpage_size);
	SAFE_MUNMAP(p + 2*hpage_size, hpage_size);

	p = p + hpage_size;

	tst_res(TINFO, "Normal mapping at %p", p);
	ret = do_readback(p, hpage_size, "base normal page");
	if (ret)
		goto cleanup;

	ret = do_remap(fd, p - hpage_size);
	if (ret)
		goto cleanup;

	ret = do_remap(fd, p + hpage_size);
	if (ret == 0)
		tst_res(TPASS, "Successfully tested mremap hpage near normal mapping");

cleanup:
	SAFE_CLOSE(fd);
}

static void setup(void)
{
	hpage_size = tst_get_hugepage_size();
}

static void cleanup(void)
{
	if (fd >= 0)
		SAFE_CLOSE(fd);
}

static struct tst_test test = {
	.needs_root = 1,
	.mntpoint = MNTPOINT,
	.needs_hugetlbfs = 1,
	.needs_tmpdir = 1,
	.setup = setup,
	.cleanup = cleanup,
	.test_all = run_test,
	.hugepages = {3, TST_NEEDS},
};