etc/protocols - sync with NetBSD-8
[minix.git] / tests / lib / libc / sys / t_mincore.c
blob553207a8af7f9af7e017a15ced555e19aaba9de7
1 /* $NetBSD: t_mincore.c,v 1.8 2012/06/08 07:18:58 martin Exp $ */
3 /*-
4 * Copyright (c) 2011 The NetBSD Foundation, Inc.
5 * All rights reserved.
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Jukka Ruohonen.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
32 /*-
33 * Copyright (c) 1999 The NetBSD Foundation, Inc.
34 * All rights reserved.
36 * This code is derived from software contributed to The NetBSD Foundation
37 * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
38 * NASA Ames Research Center.
40 * Redistribution and use in source and binary forms, with or without
41 * modification, are permitted provided that the following conditions
42 * are met:
43 * 1. Redistributions of source code must retain the above copyright
44 * notice, this list of conditions and the following disclaimer.
45 * 2. Redistributions in binary form must reproduce the above copyright
46 * notice, this list of conditions and the following disclaimer in the
47 * documentation and/or other materials provided with the distribution.
49 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
50 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
51 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
52 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
53 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
54 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
55 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
56 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
57 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
58 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
59 * POSSIBILITY OF SUCH DAMAGE.
61 #include <sys/cdefs.h>
62 __RCSID("$NetBSD: t_mincore.c,v 1.8 2012/06/08 07:18:58 martin Exp $");
64 #include <sys/mman.h>
65 #include <sys/shm.h>
67 #include <atf-c.h>
68 #include <errno.h>
69 #include <fcntl.h>
70 #include <kvm.h>
71 #include <stdio.h>
72 #include <stdlib.h>
73 #include <string.h>
74 #include <unistd.h>
75 #include <sys/resource.h>
77 static long page = 0;
78 static const char path[] = "mincore";
79 static size_t check_residency(void *, size_t);
81 static size_t
82 check_residency(void *addr, size_t npgs)
84 size_t i, resident;
85 char *vec;
87 vec = malloc(npgs);
89 ATF_REQUIRE(vec != NULL);
90 ATF_REQUIRE(mincore(addr, npgs * page, vec) == 0);
92 for (i = resident = 0; i < npgs; i++) {
94 if (vec[i] != 0)
95 resident++;
97 #if 0
98 (void)fprintf(stderr, "page 0x%p is %sresident\n",
99 (char *)addr + (i * page), vec[i] ? "" : "not ");
100 #endif
103 free(vec);
105 return resident;
108 ATF_TC(mincore_err);
109 ATF_TC_HEAD(mincore_err, tc)
111 atf_tc_set_md_var(tc, "descr", "Test errors from mincore(2)");
114 ATF_TC_BODY(mincore_err, tc)
116 char *map, *vec;
118 map = mmap(NULL, page, PROT_WRITE, MAP_ANON | MAP_PRIVATE, -1, 0);
119 vec = malloc(page);
121 ATF_REQUIRE(vec != NULL);
122 ATF_REQUIRE(map != MAP_FAILED);
124 errno = 0;
125 ATF_REQUIRE_ERRNO(EINVAL, mincore(map, 0, vec) == -1);
127 errno = 0;
128 ATF_REQUIRE_ERRNO(ENOMEM, mincore(0, page, vec) == -1);
130 errno = 0;
131 ATF_REQUIRE_ERRNO(EFAULT, mincore(map, page, (void *)-1) == -1);
133 free(vec);
134 ATF_REQUIRE(munmap(map, page) == 0);
137 ATF_TC_WITH_CLEANUP(mincore_resid);
138 ATF_TC_HEAD(mincore_resid, tc)
140 atf_tc_set_md_var(tc, "descr", "Test page residency with mincore(2)");
143 ATF_TC_BODY(mincore_resid, tc)
145 void *addr, *addr2, *addr3, *buf;
146 size_t npgs = 0, resident;
147 struct stat st;
148 int fd, rv;
149 struct rlimit rlim;
151 ATF_REQUIRE(getrlimit(RLIMIT_MEMLOCK, &rlim) == 0);
152 rlim.rlim_cur = rlim.rlim_max;
153 ATF_REQUIRE(setrlimit(RLIMIT_MEMLOCK, &rlim) == 0);
155 (void)memset(&st, 0, sizeof(struct stat));
157 fd = open(path, O_RDWR | O_CREAT, 0700);
158 buf = malloc(page * 5);
160 ATF_REQUIRE(fd >= 0);
161 ATF_REQUIRE(buf != NULL);
163 rv = write(fd, buf, page * 5);
164 ATF_REQUIRE(rv >= 0);
166 ATF_REQUIRE(fd >= 0);
167 ATF_REQUIRE(fstat(fd, &st) == 0);
169 addr = mmap(NULL, (size_t)st.st_size, PROT_READ,
170 MAP_FILE | MAP_SHARED, fd, (off_t) 0);
172 ATF_REQUIRE(addr != MAP_FAILED);
174 (void)close(fd);
176 npgs = st.st_size / page;
178 if (st.st_size % page != 0)
179 npgs++;
181 (void)check_residency(addr, npgs);
183 rv = mlock(addr, npgs * page);
184 if (rv == -1 && errno == EAGAIN)
185 atf_tc_skip("hit process resource limits");
186 ATF_REQUIRE(munmap(addr, st.st_size) == 0);
188 npgs = 128;
190 addr = mmap(NULL, npgs * page, PROT_READ | PROT_WRITE,
191 MAP_ANON | MAP_PRIVATE | MAP_WIRED, -1, (off_t)0);
193 if (addr == MAP_FAILED)
194 atf_tc_skip("could not mmap wired anonymous test area, system "
195 "might be low on memory");
197 ATF_REQUIRE(check_residency(addr, npgs) == npgs);
198 ATF_REQUIRE(munmap(addr, npgs * page) == 0);
200 npgs = 128;
202 addr = mmap(NULL, npgs * page, PROT_READ | PROT_WRITE,
203 MAP_ANON | MAP_PRIVATE, -1, (off_t)0);
205 ATF_REQUIRE(addr != MAP_FAILED);
208 * Check that the in-core pages match the locked pages.
210 ATF_REQUIRE(check_residency(addr, npgs) == 0);
212 errno = 0;
213 if (mlockall(MCL_CURRENT|MCL_FUTURE) != 0 && errno != ENOMEM)
214 atf_tc_fail("mlockall(2) failed");
215 if (errno == ENOMEM)
216 atf_tc_skip("mlockall() exceeded process resource limits");
218 resident = check_residency(addr, npgs);
219 if (resident < npgs)
220 atf_tc_fail("mlockall(MCL_FUTURE) succeeded, still only "
221 "%zu pages of the newly mapped %zu pages are resident",
222 resident, npgs);
224 addr2 = mmap(NULL, npgs * page, PROT_READ, MAP_ANON, -1, (off_t)0);
225 addr3 = mmap(NULL, npgs * page, PROT_NONE, MAP_ANON, -1, (off_t)0);
227 if (addr2 == MAP_FAILED || addr3 == MAP_FAILED)
228 atf_tc_skip("could not mmap more anonymous test pages with "
229 "mlockall(MCL_FUTURE) in effect, system "
230 "might be low on memory");
232 ATF_REQUIRE(check_residency(addr2, npgs) == npgs);
233 ATF_REQUIRE(check_residency(addr3, npgs) == 0);
234 ATF_REQUIRE(mprotect(addr3, npgs * page, PROT_READ) == 0);
235 ATF_REQUIRE(check_residency(addr, npgs) == npgs);
236 ATF_REQUIRE(check_residency(addr2, npgs) == npgs);
238 (void)munlockall();
240 ATF_REQUIRE(madvise(addr2, npgs * page, MADV_FREE) == 0);
241 ATF_REQUIRE(check_residency(addr2, npgs) == 0);
243 (void)memset(addr, 0, npgs * page);
245 ATF_REQUIRE(madvise(addr, npgs * page, MADV_FREE) == 0);
246 ATF_REQUIRE(check_residency(addr, npgs) == 0);
248 (void)munmap(addr, npgs * page);
249 (void)munmap(addr2, npgs * page);
250 (void)munmap(addr3, npgs * page);
251 (void)unlink(path);
254 ATF_TC_CLEANUP(mincore_resid, tc)
256 (void)unlink(path);
259 ATF_TC(mincore_shmseg);
260 ATF_TC_HEAD(mincore_shmseg, tc)
262 atf_tc_set_md_var(tc, "descr", "residency of shared memory");
265 ATF_TC_BODY(mincore_shmseg, tc)
267 size_t npgs = 128;
268 void *addr = NULL;
269 int shmid;
271 shmid = shmget(IPC_PRIVATE, npgs * page,
272 IPC_CREAT | S_IRUSR | S_IWUSR);
274 ATF_REQUIRE(shmid != -1);
276 addr = shmat(shmid, NULL, 0);
278 ATF_REQUIRE(addr != NULL);
279 ATF_REQUIRE(check_residency(addr, npgs) == 0);
281 (void)memset(addr, 0xff, npgs * page);
283 ATF_REQUIRE(check_residency(addr, npgs) == npgs);
284 ATF_REQUIRE(madvise(addr, npgs * page, MADV_FREE) == 0);
287 * NOTE! Even though we have MADV_FREE'd the range,
288 * there is another reference (the kernel's) to the
289 * object which owns the pages. In this case, the
290 * kernel does not simply free the pages, as haphazardly
291 * freeing pages when there are still references to
292 * an object can cause data corruption (say, the other
293 * referencer doesn't expect the pages to be freed,
294 * and is surprised by the subsequent ZFOD).
296 * Because of this, we simply report the number of
297 * pages still resident, for information only.
299 npgs = check_residency(addr, npgs);
301 (void)fprintf(stderr, "%zu pages still resident\n", npgs);
303 ATF_REQUIRE(shmdt(addr) == 0);
304 ATF_REQUIRE(shmctl(shmid, IPC_RMID, NULL) == 0);
307 ATF_TP_ADD_TCS(tp)
310 page = sysconf(_SC_PAGESIZE);
311 ATF_REQUIRE(page >= 0);
313 ATF_TP_ADD_TC(tp, mincore_err);
314 ATF_TP_ADD_TC(tp, mincore_resid);
315 ATF_TP_ADD_TC(tp, mincore_shmseg);
317 return atf_no_error();