at v4.14-rc4 1313 lines 35 kB view raw
1/* 2 * Stress userfaultfd syscall. 3 * 4 * Copyright (C) 2015 Red Hat, Inc. 5 * 6 * This work is licensed under the terms of the GNU GPL, version 2. See 7 * the COPYING file in the top-level directory. 8 * 9 * This test allocates two virtual areas and bounces the physical 10 * memory across the two virtual areas (from area_src to area_dst) 11 * using userfaultfd. 12 * 13 * There are three threads running per CPU: 14 * 15 * 1) one per-CPU thread takes a per-page pthread_mutex in a random 16 * page of the area_dst (while the physical page may still be in 17 * area_src), and increments a per-page counter in the same page, 18 * and checks its value against a verification region. 19 * 20 * 2) another per-CPU thread handles the userfaults generated by 21 * thread 1 above. userfaultfd blocking reads or poll() modes are 22 * exercised interleaved. 23 * 24 * 3) one last per-CPU thread transfers the memory in the background 25 * at maximum bandwidth (if not already transferred by thread 26 * 2). Each cpu thread takes cares of transferring a portion of the 27 * area. 28 * 29 * When all threads of type 3 completed the transfer, one bounce is 30 * complete. area_src and area_dst are then swapped. All threads are 31 * respawned and so the bounce is immediately restarted in the 32 * opposite direction. 33 * 34 * per-CPU threads 1 by triggering userfaults inside 35 * pthread_mutex_lock will also verify the atomicity of the memory 36 * transfer (UFFDIO_COPY). 37 * 38 * The program takes two parameters: the amounts of physical memory in 39 * megabytes (MiB) of the area and the number of bounces to execute. 40 * 41 * # 100MiB 99999 bounces 42 * ./userfaultfd 100 99999 43 * 44 * # 1GiB 99 bounces 45 * ./userfaultfd 1000 99 46 * 47 * # 10MiB-~6GiB 999 bounces, continue forever unless an error triggers 48 * while ./userfaultfd $[RANDOM % 6000 + 10] 999; do true; done 49 */ 50 51#define _GNU_SOURCE 52#include <stdio.h> 53#include <errno.h> 54#include <unistd.h> 55#include <stdlib.h> 56#include <sys/types.h> 57#include <sys/stat.h> 58#include <fcntl.h> 59#include <time.h> 60#include <signal.h> 61#include <poll.h> 62#include <string.h> 63#include <sys/mman.h> 64#include <sys/syscall.h> 65#include <sys/ioctl.h> 66#include <sys/wait.h> 67#include <pthread.h> 68#include <linux/userfaultfd.h> 69#include <setjmp.h> 70#include <stdbool.h> 71 72#ifdef __NR_userfaultfd 73 74static unsigned long nr_cpus, nr_pages, nr_pages_per_cpu, page_size; 75 76#define BOUNCE_RANDOM (1<<0) 77#define BOUNCE_RACINGFAULTS (1<<1) 78#define BOUNCE_VERIFY (1<<2) 79#define BOUNCE_POLL (1<<3) 80static int bounces; 81 82#define TEST_ANON 1 83#define TEST_HUGETLB 2 84#define TEST_SHMEM 3 85static int test_type; 86 87/* exercise the test_uffdio_*_eexist every ALARM_INTERVAL_SECS */ 88#define ALARM_INTERVAL_SECS 10 89static volatile bool test_uffdio_copy_eexist = true; 90static volatile bool test_uffdio_zeropage_eexist = true; 91 92static bool map_shared; 93static int huge_fd; 94static char *huge_fd_off0; 95static unsigned long long *count_verify; 96static int uffd, uffd_flags, finished, *pipefd; 97static char *area_src, *area_src_alias, *area_dst, *area_dst_alias; 98static char *zeropage; 99pthread_attr_t attr; 100 101/* pthread_mutex_t starts at page offset 0 */ 102#define area_mutex(___area, ___nr) \ 103 ((pthread_mutex_t *) ((___area) + (___nr)*page_size)) 104/* 105 * count is placed in the page after pthread_mutex_t naturally aligned 106 * to avoid non alignment faults on non-x86 archs. 107 */ 108#define area_count(___area, ___nr) \ 109 ((volatile unsigned long long *) ((unsigned long) \ 110 ((___area) + (___nr)*page_size + \ 111 sizeof(pthread_mutex_t) + \ 112 sizeof(unsigned long long) - 1) & \ 113 ~(unsigned long)(sizeof(unsigned long long) \ 114 - 1))) 115 116static int anon_release_pages(char *rel_area) 117{ 118 int ret = 0; 119 120 if (madvise(rel_area, nr_pages * page_size, MADV_DONTNEED)) { 121 perror("madvise"); 122 ret = 1; 123 } 124 125 return ret; 126} 127 128static void anon_allocate_area(void **alloc_area) 129{ 130 if (posix_memalign(alloc_area, page_size, nr_pages * page_size)) { 131 fprintf(stderr, "out of memory\n"); 132 *alloc_area = NULL; 133 } 134} 135 136static void noop_alias_mapping(__u64 *start, size_t len, unsigned long offset) 137{ 138} 139 140/* HugeTLB memory */ 141static int hugetlb_release_pages(char *rel_area) 142{ 143 int ret = 0; 144 145 if (fallocate(huge_fd, FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE, 146 rel_area == huge_fd_off0 ? 0 : 147 nr_pages * page_size, 148 nr_pages * page_size)) { 149 perror("fallocate"); 150 ret = 1; 151 } 152 153 return ret; 154} 155 156 157static void hugetlb_allocate_area(void **alloc_area) 158{ 159 void *area_alias = NULL; 160 char **alloc_area_alias; 161 *alloc_area = mmap(NULL, nr_pages * page_size, PROT_READ | PROT_WRITE, 162 (map_shared ? MAP_SHARED : MAP_PRIVATE) | 163 MAP_HUGETLB, 164 huge_fd, *alloc_area == area_src ? 0 : 165 nr_pages * page_size); 166 if (*alloc_area == MAP_FAILED) { 167 fprintf(stderr, "mmap of hugetlbfs file failed\n"); 168 *alloc_area = NULL; 169 } 170 171 if (map_shared) { 172 area_alias = mmap(NULL, nr_pages * page_size, PROT_READ | PROT_WRITE, 173 MAP_SHARED | MAP_HUGETLB, 174 huge_fd, *alloc_area == area_src ? 0 : 175 nr_pages * page_size); 176 if (area_alias == MAP_FAILED) { 177 if (munmap(*alloc_area, nr_pages * page_size) < 0) 178 perror("hugetlb munmap"), exit(1); 179 *alloc_area = NULL; 180 return; 181 } 182 } 183 if (*alloc_area == area_src) { 184 huge_fd_off0 = *alloc_area; 185 alloc_area_alias = &area_src_alias; 186 } else { 187 alloc_area_alias = &area_dst_alias; 188 } 189 if (area_alias) 190 *alloc_area_alias = area_alias; 191} 192 193static void hugetlb_alias_mapping(__u64 *start, size_t len, unsigned long offset) 194{ 195 if (!map_shared) 196 return; 197 /* 198 * We can't zap just the pagetable with hugetlbfs because 199 * MADV_DONTEED won't work. So exercise -EEXIST on a alias 200 * mapping where the pagetables are not established initially, 201 * this way we'll exercise the -EEXEC at the fs level. 202 */ 203 *start = (unsigned long) area_dst_alias + offset; 204} 205 206/* Shared memory */ 207static int shmem_release_pages(char *rel_area) 208{ 209 int ret = 0; 210 211 if (madvise(rel_area, nr_pages * page_size, MADV_REMOVE)) { 212 perror("madvise"); 213 ret = 1; 214 } 215 216 return ret; 217} 218 219static void shmem_allocate_area(void **alloc_area) 220{ 221 *alloc_area = mmap(NULL, nr_pages * page_size, PROT_READ | PROT_WRITE, 222 MAP_ANONYMOUS | MAP_SHARED, -1, 0); 223 if (*alloc_area == MAP_FAILED) { 224 fprintf(stderr, "shared memory mmap failed\n"); 225 *alloc_area = NULL; 226 } 227} 228 229struct uffd_test_ops { 230 unsigned long expected_ioctls; 231 void (*allocate_area)(void **alloc_area); 232 int (*release_pages)(char *rel_area); 233 void (*alias_mapping)(__u64 *start, size_t len, unsigned long offset); 234}; 235 236#define ANON_EXPECTED_IOCTLS ((1 << _UFFDIO_WAKE) | \ 237 (1 << _UFFDIO_COPY) | \ 238 (1 << _UFFDIO_ZEROPAGE)) 239 240static struct uffd_test_ops anon_uffd_test_ops = { 241 .expected_ioctls = ANON_EXPECTED_IOCTLS, 242 .allocate_area = anon_allocate_area, 243 .release_pages = anon_release_pages, 244 .alias_mapping = noop_alias_mapping, 245}; 246 247static struct uffd_test_ops shmem_uffd_test_ops = { 248 .expected_ioctls = ANON_EXPECTED_IOCTLS, 249 .allocate_area = shmem_allocate_area, 250 .release_pages = shmem_release_pages, 251 .alias_mapping = noop_alias_mapping, 252}; 253 254static struct uffd_test_ops hugetlb_uffd_test_ops = { 255 .expected_ioctls = UFFD_API_RANGE_IOCTLS_BASIC, 256 .allocate_area = hugetlb_allocate_area, 257 .release_pages = hugetlb_release_pages, 258 .alias_mapping = hugetlb_alias_mapping, 259}; 260 261static struct uffd_test_ops *uffd_test_ops; 262 263static int my_bcmp(char *str1, char *str2, size_t n) 264{ 265 unsigned long i; 266 for (i = 0; i < n; i++) 267 if (str1[i] != str2[i]) 268 return 1; 269 return 0; 270} 271 272static void *locking_thread(void *arg) 273{ 274 unsigned long cpu = (unsigned long) arg; 275 struct random_data rand; 276 unsigned long page_nr = *(&(page_nr)); /* uninitialized warning */ 277 int32_t rand_nr; 278 unsigned long long count; 279 char randstate[64]; 280 unsigned int seed; 281 time_t start; 282 283 if (bounces & BOUNCE_RANDOM) { 284 seed = (unsigned int) time(NULL) - bounces; 285 if (!(bounces & BOUNCE_RACINGFAULTS)) 286 seed += cpu; 287 bzero(&rand, sizeof(rand)); 288 bzero(&randstate, sizeof(randstate)); 289 if (initstate_r(seed, randstate, sizeof(randstate), &rand)) 290 fprintf(stderr, "srandom_r error\n"), exit(1); 291 } else { 292 page_nr = -bounces; 293 if (!(bounces & BOUNCE_RACINGFAULTS)) 294 page_nr += cpu * nr_pages_per_cpu; 295 } 296 297 while (!finished) { 298 if (bounces & BOUNCE_RANDOM) { 299 if (random_r(&rand, &rand_nr)) 300 fprintf(stderr, "random_r 1 error\n"), exit(1); 301 page_nr = rand_nr; 302 if (sizeof(page_nr) > sizeof(rand_nr)) { 303 if (random_r(&rand, &rand_nr)) 304 fprintf(stderr, "random_r 2 error\n"), exit(1); 305 page_nr |= (((unsigned long) rand_nr) << 16) << 306 16; 307 } 308 } else 309 page_nr += 1; 310 page_nr %= nr_pages; 311 312 start = time(NULL); 313 if (bounces & BOUNCE_VERIFY) { 314 count = *area_count(area_dst, page_nr); 315 if (!count) 316 fprintf(stderr, 317 "page_nr %lu wrong count %Lu %Lu\n", 318 page_nr, count, 319 count_verify[page_nr]), exit(1); 320 321 322 /* 323 * We can't use bcmp (or memcmp) because that 324 * returns 0 erroneously if the memory is 325 * changing under it (even if the end of the 326 * page is never changing and always 327 * different). 328 */ 329#if 1 330 if (!my_bcmp(area_dst + page_nr * page_size, zeropage, 331 page_size)) 332 fprintf(stderr, 333 "my_bcmp page_nr %lu wrong count %Lu %Lu\n", 334 page_nr, count, 335 count_verify[page_nr]), exit(1); 336#else 337 unsigned long loops; 338 339 loops = 0; 340 /* uncomment the below line to test with mutex */ 341 /* pthread_mutex_lock(area_mutex(area_dst, page_nr)); */ 342 while (!bcmp(area_dst + page_nr * page_size, zeropage, 343 page_size)) { 344 loops += 1; 345 if (loops > 10) 346 break; 347 } 348 /* uncomment below line to test with mutex */ 349 /* pthread_mutex_unlock(area_mutex(area_dst, page_nr)); */ 350 if (loops) { 351 fprintf(stderr, 352 "page_nr %lu all zero thread %lu %p %lu\n", 353 page_nr, cpu, area_dst + page_nr * page_size, 354 loops); 355 if (loops > 10) 356 exit(1); 357 } 358#endif 359 } 360 361 pthread_mutex_lock(area_mutex(area_dst, page_nr)); 362 count = *area_count(area_dst, page_nr); 363 if (count != count_verify[page_nr]) { 364 fprintf(stderr, 365 "page_nr %lu memory corruption %Lu %Lu\n", 366 page_nr, count, 367 count_verify[page_nr]), exit(1); 368 } 369 count++; 370 *area_count(area_dst, page_nr) = count_verify[page_nr] = count; 371 pthread_mutex_unlock(area_mutex(area_dst, page_nr)); 372 373 if (time(NULL) - start > 1) 374 fprintf(stderr, 375 "userfault too slow %ld " 376 "possible false positive with overcommit\n", 377 time(NULL) - start); 378 } 379 380 return NULL; 381} 382 383static void retry_copy_page(int ufd, struct uffdio_copy *uffdio_copy, 384 unsigned long offset) 385{ 386 uffd_test_ops->alias_mapping(&uffdio_copy->dst, 387 uffdio_copy->len, 388 offset); 389 if (ioctl(ufd, UFFDIO_COPY, uffdio_copy)) { 390 /* real retval in ufdio_copy.copy */ 391 if (uffdio_copy->copy != -EEXIST) 392 fprintf(stderr, "UFFDIO_COPY retry error %Ld\n", 393 uffdio_copy->copy), exit(1); 394 } else { 395 fprintf(stderr, "UFFDIO_COPY retry unexpected %Ld\n", 396 uffdio_copy->copy), exit(1); 397 } 398} 399 400static int copy_page(int ufd, unsigned long offset) 401{ 402 struct uffdio_copy uffdio_copy; 403 404 if (offset >= nr_pages * page_size) 405 fprintf(stderr, "unexpected offset %lu\n", 406 offset), exit(1); 407 uffdio_copy.dst = (unsigned long) area_dst + offset; 408 uffdio_copy.src = (unsigned long) area_src + offset; 409 uffdio_copy.len = page_size; 410 uffdio_copy.mode = 0; 411 uffdio_copy.copy = 0; 412 if (ioctl(ufd, UFFDIO_COPY, &uffdio_copy)) { 413 /* real retval in ufdio_copy.copy */ 414 if (uffdio_copy.copy != -EEXIST) 415 fprintf(stderr, "UFFDIO_COPY error %Ld\n", 416 uffdio_copy.copy), exit(1); 417 } else if (uffdio_copy.copy != page_size) { 418 fprintf(stderr, "UFFDIO_COPY unexpected copy %Ld\n", 419 uffdio_copy.copy), exit(1); 420 } else { 421 if (test_uffdio_copy_eexist) { 422 test_uffdio_copy_eexist = false; 423 retry_copy_page(ufd, &uffdio_copy, offset); 424 } 425 return 1; 426 } 427 return 0; 428} 429 430static void *uffd_poll_thread(void *arg) 431{ 432 unsigned long cpu = (unsigned long) arg; 433 struct pollfd pollfd[2]; 434 struct uffd_msg msg; 435 struct uffdio_register uffd_reg; 436 int ret; 437 unsigned long offset; 438 char tmp_chr; 439 unsigned long userfaults = 0; 440 441 pollfd[0].fd = uffd; 442 pollfd[0].events = POLLIN; 443 pollfd[1].fd = pipefd[cpu*2]; 444 pollfd[1].events = POLLIN; 445 446 for (;;) { 447 ret = poll(pollfd, 2, -1); 448 if (!ret) 449 fprintf(stderr, "poll error %d\n", ret), exit(1); 450 if (ret < 0) 451 perror("poll"), exit(1); 452 if (pollfd[1].revents & POLLIN) { 453 if (read(pollfd[1].fd, &tmp_chr, 1) != 1) 454 fprintf(stderr, "read pipefd error\n"), 455 exit(1); 456 break; 457 } 458 if (!(pollfd[0].revents & POLLIN)) 459 fprintf(stderr, "pollfd[0].revents %d\n", 460 pollfd[0].revents), exit(1); 461 ret = read(uffd, &msg, sizeof(msg)); 462 if (ret < 0) { 463 if (errno == EAGAIN) 464 continue; 465 perror("nonblocking read error"), exit(1); 466 } 467 switch (msg.event) { 468 default: 469 fprintf(stderr, "unexpected msg event %u\n", 470 msg.event), exit(1); 471 break; 472 case UFFD_EVENT_PAGEFAULT: 473 if (msg.arg.pagefault.flags & UFFD_PAGEFAULT_FLAG_WRITE) 474 fprintf(stderr, "unexpected write fault\n"), exit(1); 475 offset = (char *)(unsigned long)msg.arg.pagefault.address - 476 area_dst; 477 offset &= ~(page_size-1); 478 if (copy_page(uffd, offset)) 479 userfaults++; 480 break; 481 case UFFD_EVENT_FORK: 482 close(uffd); 483 uffd = msg.arg.fork.ufd; 484 pollfd[0].fd = uffd; 485 break; 486 case UFFD_EVENT_REMOVE: 487 uffd_reg.range.start = msg.arg.remove.start; 488 uffd_reg.range.len = msg.arg.remove.end - 489 msg.arg.remove.start; 490 if (ioctl(uffd, UFFDIO_UNREGISTER, &uffd_reg.range)) 491 fprintf(stderr, "remove failure\n"), exit(1); 492 break; 493 case UFFD_EVENT_REMAP: 494 area_dst = (char *)(unsigned long)msg.arg.remap.to; 495 break; 496 } 497 } 498 return (void *)userfaults; 499} 500 501pthread_mutex_t uffd_read_mutex = PTHREAD_MUTEX_INITIALIZER; 502 503static void *uffd_read_thread(void *arg) 504{ 505 unsigned long *this_cpu_userfaults; 506 struct uffd_msg msg; 507 unsigned long offset; 508 int ret; 509 510 this_cpu_userfaults = (unsigned long *) arg; 511 *this_cpu_userfaults = 0; 512 513 pthread_mutex_unlock(&uffd_read_mutex); 514 /* from here cancellation is ok */ 515 516 for (;;) { 517 ret = read(uffd, &msg, sizeof(msg)); 518 if (ret != sizeof(msg)) { 519 if (ret < 0) 520 perror("blocking read error"), exit(1); 521 else 522 fprintf(stderr, "short read\n"), exit(1); 523 } 524 if (msg.event != UFFD_EVENT_PAGEFAULT) 525 fprintf(stderr, "unexpected msg event %u\n", 526 msg.event), exit(1); 527 if (bounces & BOUNCE_VERIFY && 528 msg.arg.pagefault.flags & UFFD_PAGEFAULT_FLAG_WRITE) 529 fprintf(stderr, "unexpected write fault\n"), exit(1); 530 offset = (char *)(unsigned long)msg.arg.pagefault.address - 531 area_dst; 532 offset &= ~(page_size-1); 533 if (copy_page(uffd, offset)) 534 (*this_cpu_userfaults)++; 535 } 536 return (void *)NULL; 537} 538 539static void *background_thread(void *arg) 540{ 541 unsigned long cpu = (unsigned long) arg; 542 unsigned long page_nr; 543 544 for (page_nr = cpu * nr_pages_per_cpu; 545 page_nr < (cpu+1) * nr_pages_per_cpu; 546 page_nr++) 547 copy_page(uffd, page_nr * page_size); 548 549 return NULL; 550} 551 552static int stress(unsigned long *userfaults) 553{ 554 unsigned long cpu; 555 pthread_t locking_threads[nr_cpus]; 556 pthread_t uffd_threads[nr_cpus]; 557 pthread_t background_threads[nr_cpus]; 558 void **_userfaults = (void **) userfaults; 559 560 finished = 0; 561 for (cpu = 0; cpu < nr_cpus; cpu++) { 562 if (pthread_create(&locking_threads[cpu], &attr, 563 locking_thread, (void *)cpu)) 564 return 1; 565 if (bounces & BOUNCE_POLL) { 566 if (pthread_create(&uffd_threads[cpu], &attr, 567 uffd_poll_thread, (void *)cpu)) 568 return 1; 569 } else { 570 if (pthread_create(&uffd_threads[cpu], &attr, 571 uffd_read_thread, 572 &_userfaults[cpu])) 573 return 1; 574 pthread_mutex_lock(&uffd_read_mutex); 575 } 576 if (pthread_create(&background_threads[cpu], &attr, 577 background_thread, (void *)cpu)) 578 return 1; 579 } 580 for (cpu = 0; cpu < nr_cpus; cpu++) 581 if (pthread_join(background_threads[cpu], NULL)) 582 return 1; 583 584 /* 585 * Be strict and immediately zap area_src, the whole area has 586 * been transferred already by the background treads. The 587 * area_src could then be faulted in in a racy way by still 588 * running uffdio_threads reading zeropages after we zapped 589 * area_src (but they're guaranteed to get -EEXIST from 590 * UFFDIO_COPY without writing zero pages into area_dst 591 * because the background threads already completed). 592 */ 593 if (uffd_test_ops->release_pages(area_src)) 594 return 1; 595 596 for (cpu = 0; cpu < nr_cpus; cpu++) { 597 char c; 598 if (bounces & BOUNCE_POLL) { 599 if (write(pipefd[cpu*2+1], &c, 1) != 1) { 600 fprintf(stderr, "pipefd write error\n"); 601 return 1; 602 } 603 if (pthread_join(uffd_threads[cpu], &_userfaults[cpu])) 604 return 1; 605 } else { 606 if (pthread_cancel(uffd_threads[cpu])) 607 return 1; 608 if (pthread_join(uffd_threads[cpu], NULL)) 609 return 1; 610 } 611 } 612 613 finished = 1; 614 for (cpu = 0; cpu < nr_cpus; cpu++) 615 if (pthread_join(locking_threads[cpu], NULL)) 616 return 1; 617 618 return 0; 619} 620 621static int userfaultfd_open(int features) 622{ 623 struct uffdio_api uffdio_api; 624 625 uffd = syscall(__NR_userfaultfd, O_CLOEXEC | O_NONBLOCK); 626 if (uffd < 0) { 627 fprintf(stderr, 628 "userfaultfd syscall not available in this kernel\n"); 629 return 1; 630 } 631 uffd_flags = fcntl(uffd, F_GETFD, NULL); 632 633 uffdio_api.api = UFFD_API; 634 uffdio_api.features = features; 635 if (ioctl(uffd, UFFDIO_API, &uffdio_api)) { 636 fprintf(stderr, "UFFDIO_API\n"); 637 return 1; 638 } 639 if (uffdio_api.api != UFFD_API) { 640 fprintf(stderr, "UFFDIO_API error %Lu\n", uffdio_api.api); 641 return 1; 642 } 643 644 return 0; 645} 646 647sigjmp_buf jbuf, *sigbuf; 648 649static void sighndl(int sig, siginfo_t *siginfo, void *ptr) 650{ 651 if (sig == SIGBUS) { 652 if (sigbuf) 653 siglongjmp(*sigbuf, 1); 654 abort(); 655 } 656} 657 658/* 659 * For non-cooperative userfaultfd test we fork() a process that will 660 * generate pagefaults, will mremap the area monitored by the 661 * userfaultfd and at last this process will release the monitored 662 * area. 663 * For the anonymous and shared memory the area is divided into two 664 * parts, the first part is accessed before mremap, and the second 665 * part is accessed after mremap. Since hugetlbfs does not support 666 * mremap, the entire monitored area is accessed in a single pass for 667 * HUGETLB_TEST. 668 * The release of the pages currently generates event for shmem and 669 * anonymous memory (UFFD_EVENT_REMOVE), hence it is not checked 670 * for hugetlb. 671 * For signal test(UFFD_FEATURE_SIGBUS), signal_test = 1, we register 672 * monitored area, generate pagefaults and test that signal is delivered. 673 * Use UFFDIO_COPY to allocate missing page and retry. For signal_test = 2 674 * test robustness use case - we release monitored area, fork a process 675 * that will generate pagefaults and verify signal is generated. 676 * This also tests UFFD_FEATURE_EVENT_FORK event along with the signal 677 * feature. Using monitor thread, verify no userfault events are generated. 678 */ 679static int faulting_process(int signal_test) 680{ 681 unsigned long nr; 682 unsigned long long count; 683 unsigned long split_nr_pages; 684 unsigned long lastnr; 685 struct sigaction act; 686 unsigned long signalled = 0; 687 688 if (test_type != TEST_HUGETLB) 689 split_nr_pages = (nr_pages + 1) / 2; 690 else 691 split_nr_pages = nr_pages; 692 693 if (signal_test) { 694 sigbuf = &jbuf; 695 memset(&act, 0, sizeof(act)); 696 act.sa_sigaction = sighndl; 697 act.sa_flags = SA_SIGINFO; 698 if (sigaction(SIGBUS, &act, 0)) { 699 perror("sigaction"); 700 return 1; 701 } 702 lastnr = (unsigned long)-1; 703 } 704 705 for (nr = 0; nr < split_nr_pages; nr++) { 706 if (signal_test) { 707 if (sigsetjmp(*sigbuf, 1) != 0) { 708 if (nr == lastnr) { 709 fprintf(stderr, "Signal repeated\n"); 710 return 1; 711 } 712 713 lastnr = nr; 714 if (signal_test == 1) { 715 if (copy_page(uffd, nr * page_size)) 716 signalled++; 717 } else { 718 signalled++; 719 continue; 720 } 721 } 722 } 723 724 count = *area_count(area_dst, nr); 725 if (count != count_verify[nr]) { 726 fprintf(stderr, 727 "nr %lu memory corruption %Lu %Lu\n", 728 nr, count, 729 count_verify[nr]), exit(1); 730 } 731 } 732 733 if (signal_test) 734 return signalled != split_nr_pages; 735 736 if (test_type == TEST_HUGETLB) 737 return 0; 738 739 area_dst = mremap(area_dst, nr_pages * page_size, nr_pages * page_size, 740 MREMAP_MAYMOVE | MREMAP_FIXED, area_src); 741 if (area_dst == MAP_FAILED) 742 perror("mremap"), exit(1); 743 744 for (; nr < nr_pages; nr++) { 745 count = *area_count(area_dst, nr); 746 if (count != count_verify[nr]) { 747 fprintf(stderr, 748 "nr %lu memory corruption %Lu %Lu\n", 749 nr, count, 750 count_verify[nr]), exit(1); 751 } 752 } 753 754 if (uffd_test_ops->release_pages(area_dst)) 755 return 1; 756 757 for (nr = 0; nr < nr_pages; nr++) { 758 if (my_bcmp(area_dst + nr * page_size, zeropage, page_size)) 759 fprintf(stderr, "nr %lu is not zero\n", nr), exit(1); 760 } 761 762 return 0; 763} 764 765static void retry_uffdio_zeropage(int ufd, 766 struct uffdio_zeropage *uffdio_zeropage, 767 unsigned long offset) 768{ 769 uffd_test_ops->alias_mapping(&uffdio_zeropage->range.start, 770 uffdio_zeropage->range.len, 771 offset); 772 if (ioctl(ufd, UFFDIO_ZEROPAGE, uffdio_zeropage)) { 773 if (uffdio_zeropage->zeropage != -EEXIST) 774 fprintf(stderr, "UFFDIO_ZEROPAGE retry error %Ld\n", 775 uffdio_zeropage->zeropage), exit(1); 776 } else { 777 fprintf(stderr, "UFFDIO_ZEROPAGE retry unexpected %Ld\n", 778 uffdio_zeropage->zeropage), exit(1); 779 } 780} 781 782static int uffdio_zeropage(int ufd, unsigned long offset) 783{ 784 struct uffdio_zeropage uffdio_zeropage; 785 int ret; 786 unsigned long has_zeropage; 787 788 has_zeropage = uffd_test_ops->expected_ioctls & (1 << _UFFDIO_ZEROPAGE); 789 790 if (offset >= nr_pages * page_size) 791 fprintf(stderr, "unexpected offset %lu\n", 792 offset), exit(1); 793 uffdio_zeropage.range.start = (unsigned long) area_dst + offset; 794 uffdio_zeropage.range.len = page_size; 795 uffdio_zeropage.mode = 0; 796 ret = ioctl(ufd, UFFDIO_ZEROPAGE, &uffdio_zeropage); 797 if (ret) { 798 /* real retval in ufdio_zeropage.zeropage */ 799 if (has_zeropage) { 800 if (uffdio_zeropage.zeropage == -EEXIST) 801 fprintf(stderr, "UFFDIO_ZEROPAGE -EEXIST\n"), 802 exit(1); 803 else 804 fprintf(stderr, "UFFDIO_ZEROPAGE error %Ld\n", 805 uffdio_zeropage.zeropage), exit(1); 806 } else { 807 if (uffdio_zeropage.zeropage != -EINVAL) 808 fprintf(stderr, 809 "UFFDIO_ZEROPAGE not -EINVAL %Ld\n", 810 uffdio_zeropage.zeropage), exit(1); 811 } 812 } else if (has_zeropage) { 813 if (uffdio_zeropage.zeropage != page_size) { 814 fprintf(stderr, "UFFDIO_ZEROPAGE unexpected %Ld\n", 815 uffdio_zeropage.zeropage), exit(1); 816 } else { 817 if (test_uffdio_zeropage_eexist) { 818 test_uffdio_zeropage_eexist = false; 819 retry_uffdio_zeropage(ufd, &uffdio_zeropage, 820 offset); 821 } 822 return 1; 823 } 824 } else { 825 fprintf(stderr, 826 "UFFDIO_ZEROPAGE succeeded %Ld\n", 827 uffdio_zeropage.zeropage), exit(1); 828 } 829 830 return 0; 831} 832 833/* exercise UFFDIO_ZEROPAGE */ 834static int userfaultfd_zeropage_test(void) 835{ 836 struct uffdio_register uffdio_register; 837 unsigned long expected_ioctls; 838 839 printf("testing UFFDIO_ZEROPAGE: "); 840 fflush(stdout); 841 842 if (uffd_test_ops->release_pages(area_dst)) 843 return 1; 844 845 if (userfaultfd_open(0) < 0) 846 return 1; 847 uffdio_register.range.start = (unsigned long) area_dst; 848 uffdio_register.range.len = nr_pages * page_size; 849 uffdio_register.mode = UFFDIO_REGISTER_MODE_MISSING; 850 if (ioctl(uffd, UFFDIO_REGISTER, &uffdio_register)) 851 fprintf(stderr, "register failure\n"), exit(1); 852 853 expected_ioctls = uffd_test_ops->expected_ioctls; 854 if ((uffdio_register.ioctls & expected_ioctls) != 855 expected_ioctls) 856 fprintf(stderr, 857 "unexpected missing ioctl for anon memory\n"), 858 exit(1); 859 860 if (uffdio_zeropage(uffd, 0)) { 861 if (my_bcmp(area_dst, zeropage, page_size)) 862 fprintf(stderr, "zeropage is not zero\n"), exit(1); 863 } 864 865 close(uffd); 866 printf("done.\n"); 867 return 0; 868} 869 870static int userfaultfd_events_test(void) 871{ 872 struct uffdio_register uffdio_register; 873 unsigned long expected_ioctls; 874 unsigned long userfaults; 875 pthread_t uffd_mon; 876 int err, features; 877 pid_t pid; 878 char c; 879 880 printf("testing events (fork, remap, remove): "); 881 fflush(stdout); 882 883 if (uffd_test_ops->release_pages(area_dst)) 884 return 1; 885 886 features = UFFD_FEATURE_EVENT_FORK | UFFD_FEATURE_EVENT_REMAP | 887 UFFD_FEATURE_EVENT_REMOVE; 888 if (userfaultfd_open(features) < 0) 889 return 1; 890 fcntl(uffd, F_SETFL, uffd_flags | O_NONBLOCK); 891 892 uffdio_register.range.start = (unsigned long) area_dst; 893 uffdio_register.range.len = nr_pages * page_size; 894 uffdio_register.mode = UFFDIO_REGISTER_MODE_MISSING; 895 if (ioctl(uffd, UFFDIO_REGISTER, &uffdio_register)) 896 fprintf(stderr, "register failure\n"), exit(1); 897 898 expected_ioctls = uffd_test_ops->expected_ioctls; 899 if ((uffdio_register.ioctls & expected_ioctls) != 900 expected_ioctls) 901 fprintf(stderr, 902 "unexpected missing ioctl for anon memory\n"), 903 exit(1); 904 905 if (pthread_create(&uffd_mon, &attr, uffd_poll_thread, NULL)) 906 perror("uffd_poll_thread create"), exit(1); 907 908 pid = fork(); 909 if (pid < 0) 910 perror("fork"), exit(1); 911 912 if (!pid) 913 return faulting_process(0); 914 915 waitpid(pid, &err, 0); 916 if (err) 917 fprintf(stderr, "faulting process failed\n"), exit(1); 918 919 if (write(pipefd[1], &c, sizeof(c)) != sizeof(c)) 920 perror("pipe write"), exit(1); 921 if (pthread_join(uffd_mon, (void **)&userfaults)) 922 return 1; 923 924 close(uffd); 925 printf("userfaults: %ld\n", userfaults); 926 927 return userfaults != nr_pages; 928} 929 930static int userfaultfd_sig_test(void) 931{ 932 struct uffdio_register uffdio_register; 933 unsigned long expected_ioctls; 934 unsigned long userfaults; 935 pthread_t uffd_mon; 936 int err, features; 937 pid_t pid; 938 char c; 939 940 printf("testing signal delivery: "); 941 fflush(stdout); 942 943 if (uffd_test_ops->release_pages(area_dst)) 944 return 1; 945 946 features = UFFD_FEATURE_EVENT_FORK|UFFD_FEATURE_SIGBUS; 947 if (userfaultfd_open(features) < 0) 948 return 1; 949 fcntl(uffd, F_SETFL, uffd_flags | O_NONBLOCK); 950 951 uffdio_register.range.start = (unsigned long) area_dst; 952 uffdio_register.range.len = nr_pages * page_size; 953 uffdio_register.mode = UFFDIO_REGISTER_MODE_MISSING; 954 if (ioctl(uffd, UFFDIO_REGISTER, &uffdio_register)) 955 fprintf(stderr, "register failure\n"), exit(1); 956 957 expected_ioctls = uffd_test_ops->expected_ioctls; 958 if ((uffdio_register.ioctls & expected_ioctls) != 959 expected_ioctls) 960 fprintf(stderr, 961 "unexpected missing ioctl for anon memory\n"), 962 exit(1); 963 964 if (faulting_process(1)) 965 fprintf(stderr, "faulting process failed\n"), exit(1); 966 967 if (uffd_test_ops->release_pages(area_dst)) 968 return 1; 969 970 if (pthread_create(&uffd_mon, &attr, uffd_poll_thread, NULL)) 971 perror("uffd_poll_thread create"), exit(1); 972 973 pid = fork(); 974 if (pid < 0) 975 perror("fork"), exit(1); 976 977 if (!pid) 978 exit(faulting_process(2)); 979 980 waitpid(pid, &err, 0); 981 if (err) 982 fprintf(stderr, "faulting process failed\n"), exit(1); 983 984 if (write(pipefd[1], &c, sizeof(c)) != sizeof(c)) 985 perror("pipe write"), exit(1); 986 if (pthread_join(uffd_mon, (void **)&userfaults)) 987 return 1; 988 989 printf("done.\n"); 990 if (userfaults) 991 fprintf(stderr, "Signal test failed, userfaults: %ld\n", 992 userfaults); 993 close(uffd); 994 return userfaults != 0; 995} 996static int userfaultfd_stress(void) 997{ 998 void *area; 999 char *tmp_area; 1000 unsigned long nr; 1001 struct uffdio_register uffdio_register; 1002 unsigned long cpu; 1003 int err; 1004 unsigned long userfaults[nr_cpus]; 1005 1006 uffd_test_ops->allocate_area((void **)&area_src); 1007 if (!area_src) 1008 return 1; 1009 uffd_test_ops->allocate_area((void **)&area_dst); 1010 if (!area_dst) 1011 return 1; 1012 1013 if (userfaultfd_open(0) < 0) 1014 return 1; 1015 1016 count_verify = malloc(nr_pages * sizeof(unsigned long long)); 1017 if (!count_verify) { 1018 perror("count_verify"); 1019 return 1; 1020 } 1021 1022 for (nr = 0; nr < nr_pages; nr++) { 1023 *area_mutex(area_src, nr) = (pthread_mutex_t) 1024 PTHREAD_MUTEX_INITIALIZER; 1025 count_verify[nr] = *area_count(area_src, nr) = 1; 1026 /* 1027 * In the transition between 255 to 256, powerpc will 1028 * read out of order in my_bcmp and see both bytes as 1029 * zero, so leave a placeholder below always non-zero 1030 * after the count, to avoid my_bcmp to trigger false 1031 * positives. 1032 */ 1033 *(area_count(area_src, nr) + 1) = 1; 1034 } 1035 1036 pipefd = malloc(sizeof(int) * nr_cpus * 2); 1037 if (!pipefd) { 1038 perror("pipefd"); 1039 return 1; 1040 } 1041 for (cpu = 0; cpu < nr_cpus; cpu++) { 1042 if (pipe2(&pipefd[cpu*2], O_CLOEXEC | O_NONBLOCK)) { 1043 perror("pipe"); 1044 return 1; 1045 } 1046 } 1047 1048 if (posix_memalign(&area, page_size, page_size)) { 1049 fprintf(stderr, "out of memory\n"); 1050 return 1; 1051 } 1052 zeropage = area; 1053 bzero(zeropage, page_size); 1054 1055 pthread_mutex_lock(&uffd_read_mutex); 1056 1057 pthread_attr_init(&attr); 1058 pthread_attr_setstacksize(&attr, 16*1024*1024); 1059 1060 err = 0; 1061 while (bounces--) { 1062 unsigned long expected_ioctls; 1063 1064 printf("bounces: %d, mode:", bounces); 1065 if (bounces & BOUNCE_RANDOM) 1066 printf(" rnd"); 1067 if (bounces & BOUNCE_RACINGFAULTS) 1068 printf(" racing"); 1069 if (bounces & BOUNCE_VERIFY) 1070 printf(" ver"); 1071 if (bounces & BOUNCE_POLL) 1072 printf(" poll"); 1073 printf(", "); 1074 fflush(stdout); 1075 1076 if (bounces & BOUNCE_POLL) 1077 fcntl(uffd, F_SETFL, uffd_flags | O_NONBLOCK); 1078 else 1079 fcntl(uffd, F_SETFL, uffd_flags & ~O_NONBLOCK); 1080 1081 /* register */ 1082 uffdio_register.range.start = (unsigned long) area_dst; 1083 uffdio_register.range.len = nr_pages * page_size; 1084 uffdio_register.mode = UFFDIO_REGISTER_MODE_MISSING; 1085 if (ioctl(uffd, UFFDIO_REGISTER, &uffdio_register)) { 1086 fprintf(stderr, "register failure\n"); 1087 return 1; 1088 } 1089 expected_ioctls = uffd_test_ops->expected_ioctls; 1090 if ((uffdio_register.ioctls & expected_ioctls) != 1091 expected_ioctls) { 1092 fprintf(stderr, 1093 "unexpected missing ioctl for anon memory\n"); 1094 return 1; 1095 } 1096 1097 if (area_dst_alias) { 1098 uffdio_register.range.start = (unsigned long) 1099 area_dst_alias; 1100 if (ioctl(uffd, UFFDIO_REGISTER, &uffdio_register)) { 1101 fprintf(stderr, "register failure alias\n"); 1102 return 1; 1103 } 1104 } 1105 1106 /* 1107 * The madvise done previously isn't enough: some 1108 * uffd_thread could have read userfaults (one of 1109 * those already resolved by the background thread) 1110 * and it may be in the process of calling 1111 * UFFDIO_COPY. UFFDIO_COPY will read the zapped 1112 * area_src and it would map a zero page in it (of 1113 * course such a UFFDIO_COPY is perfectly safe as it'd 1114 * return -EEXIST). The problem comes at the next 1115 * bounce though: that racing UFFDIO_COPY would 1116 * generate zeropages in the area_src, so invalidating 1117 * the previous MADV_DONTNEED. Without this additional 1118 * MADV_DONTNEED those zeropages leftovers in the 1119 * area_src would lead to -EEXIST failure during the 1120 * next bounce, effectively leaving a zeropage in the 1121 * area_dst. 1122 * 1123 * Try to comment this out madvise to see the memory 1124 * corruption being caught pretty quick. 1125 * 1126 * khugepaged is also inhibited to collapse THP after 1127 * MADV_DONTNEED only after the UFFDIO_REGISTER, so it's 1128 * required to MADV_DONTNEED here. 1129 */ 1130 if (uffd_test_ops->release_pages(area_dst)) 1131 return 1; 1132 1133 /* bounce pass */ 1134 if (stress(userfaults)) 1135 return 1; 1136 1137 /* unregister */ 1138 if (ioctl(uffd, UFFDIO_UNREGISTER, &uffdio_register.range)) { 1139 fprintf(stderr, "unregister failure\n"); 1140 return 1; 1141 } 1142 if (area_dst_alias) { 1143 uffdio_register.range.start = (unsigned long) area_dst; 1144 if (ioctl(uffd, UFFDIO_UNREGISTER, 1145 &uffdio_register.range)) { 1146 fprintf(stderr, "unregister failure alias\n"); 1147 return 1; 1148 } 1149 } 1150 1151 /* verification */ 1152 if (bounces & BOUNCE_VERIFY) { 1153 for (nr = 0; nr < nr_pages; nr++) { 1154 if (*area_count(area_dst, nr) != count_verify[nr]) { 1155 fprintf(stderr, 1156 "error area_count %Lu %Lu %lu\n", 1157 *area_count(area_src, nr), 1158 count_verify[nr], 1159 nr); 1160 err = 1; 1161 bounces = 0; 1162 } 1163 } 1164 } 1165 1166 /* prepare next bounce */ 1167 tmp_area = area_src; 1168 area_src = area_dst; 1169 area_dst = tmp_area; 1170 1171 tmp_area = area_src_alias; 1172 area_src_alias = area_dst_alias; 1173 area_dst_alias = tmp_area; 1174 1175 printf("userfaults:"); 1176 for (cpu = 0; cpu < nr_cpus; cpu++) 1177 printf(" %lu", userfaults[cpu]); 1178 printf("\n"); 1179 } 1180 1181 if (err) 1182 return err; 1183 1184 close(uffd); 1185 return userfaultfd_zeropage_test() || userfaultfd_sig_test() 1186 || userfaultfd_events_test(); 1187} 1188 1189/* 1190 * Copied from mlock2-tests.c 1191 */ 1192unsigned long default_huge_page_size(void) 1193{ 1194 unsigned long hps = 0; 1195 char *line = NULL; 1196 size_t linelen = 0; 1197 FILE *f = fopen("/proc/meminfo", "r"); 1198 1199 if (!f) 1200 return 0; 1201 while (getline(&line, &linelen, f) > 0) { 1202 if (sscanf(line, "Hugepagesize: %lu kB", &hps) == 1) { 1203 hps <<= 10; 1204 break; 1205 } 1206 } 1207 1208 free(line); 1209 fclose(f); 1210 return hps; 1211} 1212 1213static void set_test_type(const char *type) 1214{ 1215 if (!strcmp(type, "anon")) { 1216 test_type = TEST_ANON; 1217 uffd_test_ops = &anon_uffd_test_ops; 1218 } else if (!strcmp(type, "hugetlb")) { 1219 test_type = TEST_HUGETLB; 1220 uffd_test_ops = &hugetlb_uffd_test_ops; 1221 } else if (!strcmp(type, "hugetlb_shared")) { 1222 map_shared = true; 1223 test_type = TEST_HUGETLB; 1224 uffd_test_ops = &hugetlb_uffd_test_ops; 1225 } else if (!strcmp(type, "shmem")) { 1226 map_shared = true; 1227 test_type = TEST_SHMEM; 1228 uffd_test_ops = &shmem_uffd_test_ops; 1229 } else { 1230 fprintf(stderr, "Unknown test type: %s\n", type), exit(1); 1231 } 1232 1233 if (test_type == TEST_HUGETLB) 1234 page_size = default_huge_page_size(); 1235 else 1236 page_size = sysconf(_SC_PAGE_SIZE); 1237 1238 if (!page_size) 1239 fprintf(stderr, "Unable to determine page size\n"), 1240 exit(2); 1241 if ((unsigned long) area_count(NULL, 0) + sizeof(unsigned long long) * 2 1242 > page_size) 1243 fprintf(stderr, "Impossible to run this test\n"), exit(2); 1244} 1245 1246static void sigalrm(int sig) 1247{ 1248 if (sig != SIGALRM) 1249 abort(); 1250 test_uffdio_copy_eexist = true; 1251 test_uffdio_zeropage_eexist = true; 1252 alarm(ALARM_INTERVAL_SECS); 1253} 1254 1255int main(int argc, char **argv) 1256{ 1257 if (argc < 4) 1258 fprintf(stderr, "Usage: <test type> <MiB> <bounces> [hugetlbfs_file]\n"), 1259 exit(1); 1260 1261 if (signal(SIGALRM, sigalrm) == SIG_ERR) 1262 fprintf(stderr, "failed to arm SIGALRM"), exit(1); 1263 alarm(ALARM_INTERVAL_SECS); 1264 1265 set_test_type(argv[1]); 1266 1267 nr_cpus = sysconf(_SC_NPROCESSORS_ONLN); 1268 nr_pages_per_cpu = atol(argv[2]) * 1024*1024 / page_size / 1269 nr_cpus; 1270 if (!nr_pages_per_cpu) { 1271 fprintf(stderr, "invalid MiB\n"); 1272 fprintf(stderr, "Usage: <MiB> <bounces>\n"), exit(1); 1273 } 1274 1275 bounces = atoi(argv[3]); 1276 if (bounces <= 0) { 1277 fprintf(stderr, "invalid bounces\n"); 1278 fprintf(stderr, "Usage: <MiB> <bounces>\n"), exit(1); 1279 } 1280 nr_pages = nr_pages_per_cpu * nr_cpus; 1281 1282 if (test_type == TEST_HUGETLB) { 1283 if (argc < 5) 1284 fprintf(stderr, "Usage: hugetlb <MiB> <bounces> <hugetlbfs_file>\n"), 1285 exit(1); 1286 huge_fd = open(argv[4], O_CREAT | O_RDWR, 0755); 1287 if (huge_fd < 0) { 1288 fprintf(stderr, "Open of %s failed", argv[3]); 1289 perror("open"); 1290 exit(1); 1291 } 1292 if (ftruncate(huge_fd, 0)) { 1293 fprintf(stderr, "ftruncate %s to size 0 failed", argv[3]); 1294 perror("ftruncate"); 1295 exit(1); 1296 } 1297 } 1298 printf("nr_pages: %lu, nr_pages_per_cpu: %lu\n", 1299 nr_pages, nr_pages_per_cpu); 1300 return userfaultfd_stress(); 1301} 1302 1303#else /* __NR_userfaultfd */ 1304 1305#warning "missing __NR_userfaultfd definition" 1306 1307int main(void) 1308{ 1309 printf("skip: Skipping userfaultfd test (missing __NR_userfaultfd)\n"); 1310 return 0; 1311} 1312 1313#endif /* __NR_userfaultfd */