summaryrefslogtreecommitdiff
path: root/regress/sys/uvm/mmap_mod/mmap_mod.c
blob: 5effc628a0419f695d2a586fa60f19d1c67372f6 (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
/*	$OpenBSD: mmap_mod.c,v 1.2 2010/06/20 17:56:07 phessler Exp $	*/

/*
 * Public domain. 2007, Artur Grabowski <art@openbsd.org>
 */

#include <sys/types.h>
#include <sys/mman.h>
#include <err.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>

/*
 * Test a corner case where a pmap can lose mod/ref bits after unmapping
 * and remapping a page.
 */
int
main()
{
	char name[20] = "/tmp/fluff.XXXXXX";
	char *buf, *pat;
	size_t ps;
	int fd;

	ps = getpagesize();

	if ((fd = mkstemp(name)) == -1)
		err(1, "mkstemp");

	if (unlink(name) == -1)
		err(1, "unlink");

	if (ftruncate(fd, ps))
		err(1, "ftruncate");

	if ((pat = malloc(ps)) == NULL)
		err(1, "malloc");

	memset(pat, 'a', ps);

	if (pwrite(fd, pat, ps, 0) != ps)
		err(1, "write");

	buf = mmap(NULL, ps, PROT_READ|PROT_WRITE, MAP_FILE|MAP_SHARED, fd, 0);
	if (buf == MAP_FAILED)
		err(1, "mmap");

	if (*buf != 'a')
		errx(1, "mapped area - no file data ('%c' != 'a')", *buf);

	memset(buf, 'x', ps);

	if (munmap(buf, ps) == -1)
		err(1, "munmap");

	buf = mmap(NULL, ps, PROT_READ|PROT_WRITE, MAP_FILE|MAP_SHARED, fd, 0);
	if (buf == MAP_FAILED)
		err(1, "mmap 2");

	if (*buf != 'x')
		errx(1, "mapped area lost modifications ('%c' != 'x')", *buf);

	if (msync(buf, ps, MS_SYNC) == -1)
		err(1, "msync");

	if (pread(fd, pat, ps, 0) != ps)
		err(1, "pread");

	if (*pat != 'x')
		errx(1, "synced area lost modifications ('%c' != 'x')", *pat);

	return (0);
}