1 /* $NetBSD: t_mlock.c,v 1.5 2014/02/26 20:49:26 martin Exp $ */ 2 3 /*- 4 * Copyright (c) 2012 The NetBSD Foundation, Inc. 5 * All rights reserved. 6 * 7 * This code is derived from software contributed to The NetBSD Foundation 8 * by Jukka Ruohonen. 9 * 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. 18 * 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. 30 */ 31 #include <sys/cdefs.h> 32 __RCSID("$NetBSD: t_mlock.c,v 1.5 2014/02/26 20:49:26 martin Exp $"); 33 34 #ifdef __FreeBSD__ 35 #include <sys/types.h> 36 #endif 37 #include <sys/mman.h> 38 #include <sys/resource.h> 39 #include <sys/sysctl.h> 40 #include <sys/wait.h> 41 42 #include <errno.h> 43 #include <atf-c.h> 44 #include <stdint.h> 45 #include <stdio.h> 46 #include <stdlib.h> 47 #include <unistd.h> 48 49 #ifdef __FreeBSD__ 50 #include <limits.h> 51 #define _KMEMUSER 52 #include <machine/vmparam.h> 53 #endif 54 55 static long page = 0; 56 57 #ifdef __FreeBSD__ 58 #define VM_MAX_WIRED "vm.max_wired" 59 60 static void 61 vm_max_wired_sysctl(int *old_value, int *new_value) 62 { 63 size_t old_len; 64 size_t new_len = (new_value == NULL ? 0 : sizeof(int)); 65 66 if (old_value == NULL) 67 printf("Setting the new value to %d\n", *new_value); 68 else { 69 ATF_REQUIRE_MSG(sysctlbyname(VM_MAX_WIRED, NULL, &old_len, 70 new_value, new_len) == 0, 71 "sysctlbyname(%s) failed: %s", VM_MAX_WIRED, strerror(errno)); 72 } 73 74 ATF_REQUIRE_MSG(sysctlbyname(VM_MAX_WIRED, old_value, &old_len, 75 new_value, new_len) == 0, 76 "sysctlbyname(%s) failed: %s", VM_MAX_WIRED, strerror(errno)); 77 78 if (old_value != NULL) 79 printf("Saved the old value (%d)\n", *old_value); 80 } 81 82 static void 83 set_vm_max_wired(int new_value) 84 { 85 FILE *fp; 86 int old_value; 87 88 fp = fopen(VM_MAX_WIRED, "w"); 89 if (fp == NULL) { 90 atf_tc_skip("could not open %s for writing: %s", 91 VM_MAX_WIRED, strerror(errno)); 92 return; 93 } 94 95 vm_max_wired_sysctl(&old_value, NULL); 96 97 ATF_REQUIRE_MSG(fprintf(fp, "%d", old_value) > 0, 98 "saving %s failed", VM_MAX_WIRED); 99 100 fclose(fp); 101 102 vm_max_wired_sysctl(NULL, &new_value); 103 } 104 105 static void 106 restore_vm_max_wired(void) 107 { 108 FILE *fp; 109 int saved_max_wired; 110 111 fp = fopen(VM_MAX_WIRED, "r"); 112 if (fp == NULL) { 113 perror("fopen failed\n"); 114 return; 115 } 116 117 if (fscanf(fp, "%d", &saved_max_wired) != 1) { 118 perror("fscanf failed\n"); 119 fclose(fp); 120 return; 121 } 122 123 fclose(fp); 124 printf("old value in %s: %d\n", VM_MAX_WIRED, saved_max_wired); 125 126 if (saved_max_wired == 0) /* This will cripple the test host */ 127 return; 128 129 vm_max_wired_sysctl(NULL, &saved_max_wired); 130 } 131 #endif 132 133 ATF_TC(mlock_clip); 134 ATF_TC_HEAD(mlock_clip, tc) 135 { 136 atf_tc_set_md_var(tc, "descr", "Test with mlock(2) that UVM only " 137 "clips if the clip address is within the entry (PR kern/44788)"); 138 } 139 140 ATF_TC_BODY(mlock_clip, tc) 141 { 142 void *buf; 143 144 buf = malloc(page); 145 ATF_REQUIRE(buf != NULL); 146 147 if (page < 1024) 148 atf_tc_skip("page size too small"); 149 150 for (size_t i = page; i >= 1; i = i - 1024) { 151 (void)mlock(buf, page - i); 152 (void)munlock(buf, page - i); 153 } 154 155 free(buf); 156 } 157 158 #ifdef __FreeBSD__ 159 ATF_TC_WITH_CLEANUP(mlock_err); 160 #else 161 ATF_TC(mlock_err); 162 #endif 163 ATF_TC_HEAD(mlock_err, tc) 164 { 165 atf_tc_set_md_var(tc, "descr", 166 "Test error conditions in mlock(2) and munlock(2)"); 167 #ifdef __FreeBSD__ 168 atf_tc_set_md_var(tc, "require.config", "allow_sysctl_side_effects"); 169 atf_tc_set_md_var(tc, "require.user", "root"); 170 #endif 171 } 172 173 ATF_TC_BODY(mlock_err, tc) 174 { 175 #ifdef __NetBSD__ 176 unsigned long vmin = 0; 177 size_t len = sizeof(vmin); 178 #endif 179 #ifndef __aarch64__ 180 void *invalid_ptr; 181 #endif 182 int null_errno = ENOMEM; /* error expected for NULL */ 183 184 #ifdef __FreeBSD__ 185 #ifdef VM_MIN_ADDRESS 186 if ((uintptr_t)VM_MIN_ADDRESS > 0) 187 null_errno = EINVAL; /* NULL is not inside user VM */ 188 #endif 189 /* Set max_wired really really high to avoid EAGAIN */ 190 set_vm_max_wired(INT_MAX); 191 #else 192 if (sysctlbyname("vm.minaddress", &vmin, &len, NULL, 0) != 0) 193 atf_tc_fail("failed to read vm.minaddress"); 194 195 if (vmin > 0) 196 null_errno = EINVAL; /* NULL is not inside user VM */ 197 #endif 198 199 errno = 0; 200 ATF_REQUIRE_ERRNO(null_errno, mlock(NULL, page) == -1); 201 202 errno = 0; 203 ATF_REQUIRE_ERRNO(null_errno, mlock((char *)0, page) == -1); 204 205 errno = 0; 206 ATF_REQUIRE_ERRNO(EINVAL, mlock((char *)-1, page) == -1); 207 208 errno = 0; 209 ATF_REQUIRE_ERRNO(null_errno, munlock(NULL, page) == -1); 210 211 errno = 0; 212 ATF_REQUIRE_ERRNO(null_errno, munlock((char *)0, page) == -1); 213 214 errno = 0; 215 ATF_REQUIRE_ERRNO(EINVAL, munlock((char *)-1, page) == -1); 216 217 #ifndef __aarch64__ /* There is no sbrk on AArch64 */ 218 /* 219 * Try to create a pointer to an unmapped page - first after current 220 * brk will likely do. 221 */ 222 invalid_ptr = (void*)(((uintptr_t)sbrk(0)+page) & ~(page-1)); 223 printf("testing with (hopefully) invalid pointer %p\n", invalid_ptr); 224 225 errno = 0; 226 ATF_REQUIRE_ERRNO(ENOMEM, mlock(invalid_ptr, page) == -1); 227 228 errno = 0; 229 ATF_REQUIRE_ERRNO(ENOMEM, munlock(invalid_ptr, page) == -1); 230 #endif 231 } 232 233 #ifdef __FreeBSD__ 234 ATF_TC_CLEANUP(mlock_err, tc) 235 { 236 237 restore_vm_max_wired(); 238 } 239 #endif 240 241 ATF_TC(mlock_limits); 242 ATF_TC_HEAD(mlock_limits, tc) 243 { 244 atf_tc_set_md_var(tc, "descr", "Test system limits with mlock(2)"); 245 } 246 247 ATF_TC_BODY(mlock_limits, tc) 248 { 249 struct rlimit res; 250 void *buf; 251 pid_t pid; 252 int sta; 253 254 buf = malloc(page); 255 ATF_REQUIRE(buf != NULL); 256 257 pid = fork(); 258 ATF_REQUIRE(pid >= 0); 259 260 if (pid == 0) { 261 262 for (ssize_t i = page; i >= 2; i -= 100) { 263 264 res.rlim_cur = i - 1; 265 res.rlim_max = i - 1; 266 267 (void)fprintf(stderr, "trying to lock %zd bytes " 268 "with %zu byte limit\n", i, (size_t)res.rlim_cur); 269 270 if (setrlimit(RLIMIT_MEMLOCK, &res) != 0) 271 _exit(EXIT_FAILURE); 272 273 errno = 0; 274 275 #ifdef __FreeBSD__ 276 /* 277 * NetBSD doesn't conform to POSIX with ENOMEM requirement; 278 * FreeBSD does. 279 * 280 * See: NetBSD PR # kern/48962 for more details. 281 */ 282 if (mlock(buf, i) != -1 || errno != ENOMEM) { 283 #else 284 if (mlock(buf, i) != -1 || errno != EAGAIN) { 285 #endif 286 (void)munlock(buf, i); 287 _exit(EXIT_FAILURE); 288 } 289 } 290 291 _exit(EXIT_SUCCESS); 292 } 293 294 (void)wait(&sta); 295 296 if (WIFEXITED(sta) == 0 || WEXITSTATUS(sta) != EXIT_SUCCESS) 297 atf_tc_fail("mlock(2) locked beyond system limits"); 298 299 free(buf); 300 } 301 302 #ifdef __FreeBSD__ 303 ATF_TC_WITH_CLEANUP(mlock_mmap); 304 #else 305 ATF_TC(mlock_mmap); 306 #endif 307 ATF_TC_HEAD(mlock_mmap, tc) 308 { 309 atf_tc_set_md_var(tc, "descr", "Test mlock(2)-mmap(2) interaction"); 310 #ifdef __FreeBSD__ 311 atf_tc_set_md_var(tc, "require.config", "allow_sysctl_side_effects"); 312 atf_tc_set_md_var(tc, "require.user", "root"); 313 #endif 314 } 315 316 ATF_TC_BODY(mlock_mmap, tc) 317 { 318 #ifdef __NetBSD__ 319 static const int flags = MAP_ANON | MAP_PRIVATE | MAP_WIRED; 320 #else 321 static const int flags = MAP_ANON | MAP_PRIVATE; 322 #endif 323 void *buf; 324 325 #ifdef __FreeBSD__ 326 /* Set max_wired really really high to avoid EAGAIN */ 327 set_vm_max_wired(INT_MAX); 328 #endif 329 330 /* 331 * Make a wired RW mapping and check that mlock(2) 332 * does not fail for the (already locked) mapping. 333 */ 334 buf = mmap(NULL, page, PROT_READ | PROT_WRITE, flags, -1, 0); 335 336 ATF_REQUIRE(buf != MAP_FAILED); 337 #ifdef __FreeBSD__ 338 /* 339 * The duplicate mlock call is added to ensure that the call works 340 * as described above without MAP_WIRED support. 341 */ 342 ATF_REQUIRE(mlock(buf, page) == 0); 343 #endif 344 ATF_REQUIRE(mlock(buf, page) == 0); 345 ATF_REQUIRE(munlock(buf, page) == 0); 346 ATF_REQUIRE(munmap(buf, page) == 0); 347 ATF_REQUIRE(munlock(buf, page) != 0); 348 349 /* 350 * But it should be impossible to mlock(2) a PROT_NONE mapping. 351 */ 352 buf = mmap(NULL, page, PROT_NONE, flags, -1, 0); 353 354 ATF_REQUIRE(buf != MAP_FAILED); 355 #ifdef __FreeBSD__ 356 ATF_REQUIRE_ERRNO(ENOMEM, mlock(buf, page) != 0); 357 #else 358 ATF_REQUIRE(mlock(buf, page) != 0); 359 #endif 360 ATF_REQUIRE(munmap(buf, page) == 0); 361 } 362 363 #ifdef __FreeBSD__ 364 ATF_TC_CLEANUP(mlock_mmap, tc) 365 { 366 367 restore_vm_max_wired(); 368 } 369 #endif 370 371 #ifdef __FreeBSD__ 372 ATF_TC_WITH_CLEANUP(mlock_nested); 373 #else 374 ATF_TC(mlock_nested); 375 #endif 376 ATF_TC_HEAD(mlock_nested, tc) 377 { 378 atf_tc_set_md_var(tc, "descr", 379 "Test that consecutive mlock(2) calls succeed"); 380 #ifdef __FreeBSD__ 381 atf_tc_set_md_var(tc, "require.config", "allow_sysctl_side_effects"); 382 atf_tc_set_md_var(tc, "require.user", "root"); 383 #endif 384 } 385 386 ATF_TC_BODY(mlock_nested, tc) 387 { 388 const size_t maxiter = 100; 389 void *buf; 390 391 #ifdef __FreeBSD__ 392 /* Set max_wired really really high to avoid EAGAIN */ 393 set_vm_max_wired(INT_MAX); 394 #endif 395 396 buf = malloc(page); 397 ATF_REQUIRE(buf != NULL); 398 399 for (size_t i = 0; i < maxiter; i++) 400 ATF_REQUIRE(mlock(buf, page) == 0); 401 402 ATF_REQUIRE(munlock(buf, page) == 0); 403 free(buf); 404 } 405 406 #ifdef __FreeBSD__ 407 ATF_TC_CLEANUP(mlock_nested, tc) 408 { 409 410 restore_vm_max_wired(); 411 } 412 #endif 413 414 ATF_TP_ADD_TCS(tp) 415 { 416 417 page = sysconf(_SC_PAGESIZE); 418 ATF_REQUIRE(page >= 0); 419 420 ATF_TP_ADD_TC(tp, mlock_clip); 421 ATF_TP_ADD_TC(tp, mlock_err); 422 ATF_TP_ADD_TC(tp, mlock_limits); 423 ATF_TP_ADD_TC(tp, mlock_mmap); 424 ATF_TP_ADD_TC(tp, mlock_nested); 425 426 return atf_no_error(); 427 } 428