Loading...
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 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 | /* SPDX-License-Identifier: GPL-2.0 */ #define _GNU_SOURCE #include <errno.h> #include <fcntl.h> #include <linux/types.h> #include <pthread.h> #include <sched.h> #include <signal.h> #include <stdio.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> #include <syscall.h> #include <sys/epoll.h> #include <sys/mman.h> #include <sys/mount.h> #include <sys/wait.h> #include <time.h> #include <unistd.h> #include "pidfd.h" #include "../kselftest.h" #define str(s) _str(s) #define _str(s) #s #define CHILD_THREAD_MIN_WAIT 3 /* seconds */ #define MAX_EVENTS 5 static bool have_pidfd_send_signal; static pid_t pidfd_clone(int flags, int *pidfd, int (*fn)(void *)) { size_t stack_size = 1024; char *stack[1024] = { 0 }; #ifdef __ia64__ return __clone2(fn, stack, stack_size, flags | SIGCHLD, NULL, pidfd); #else return clone(fn, stack + stack_size, flags | SIGCHLD, NULL, pidfd); #endif } static int signal_received; static void set_signal_received_on_sigusr1(int sig) { if (sig == SIGUSR1) signal_received = 1; } /* * Straightforward test to see whether pidfd_send_signal() works is to send * a signal to ourself. */ static int test_pidfd_send_signal_simple_success(void) { int pidfd, ret; const char *test_name = "pidfd_send_signal send SIGUSR1"; if (!have_pidfd_send_signal) { ksft_test_result_skip( "%s test: pidfd_send_signal() syscall not supported\n", test_name); return 0; } pidfd = open("/proc/self", O_DIRECTORY | O_CLOEXEC); if (pidfd < 0) ksft_exit_fail_msg( "%s test: Failed to open process file descriptor\n", test_name); signal(SIGUSR1, set_signal_received_on_sigusr1); ret = sys_pidfd_send_signal(pidfd, SIGUSR1, NULL, 0); close(pidfd); if (ret < 0) ksft_exit_fail_msg("%s test: Failed to send signal\n", test_name); if (signal_received != 1) ksft_exit_fail_msg("%s test: Failed to receive signal\n", test_name); signal_received = 0; ksft_test_result_pass("%s test: Sent signal\n", test_name); return 0; } static int test_pidfd_send_signal_exited_fail(void) { int pidfd, ret, saved_errno; char buf[256]; pid_t pid; const char *test_name = "pidfd_send_signal signal exited process"; if (!have_pidfd_send_signal) { ksft_test_result_skip( "%s test: pidfd_send_signal() syscall not supported\n", test_name); return 0; } pid = fork(); if (pid < 0) ksft_exit_fail_msg("%s test: Failed to create new process\n", test_name); if (pid == 0) _exit(EXIT_SUCCESS); snprintf(buf, sizeof(buf), "/proc/%d", pid); pidfd = open(buf, O_DIRECTORY | O_CLOEXEC); (void)wait_for_pid(pid); if (pidfd < 0) ksft_exit_fail_msg( "%s test: Failed to open process file descriptor\n", test_name); ret = sys_pidfd_send_signal(pidfd, 0, NULL, 0); saved_errno = errno; close(pidfd); if (ret == 0) ksft_exit_fail_msg( "%s test: Managed to send signal to process even though it should have failed\n", test_name); if (saved_errno != ESRCH) ksft_exit_fail_msg( "%s test: Expected to receive ESRCH as errno value but received %d instead\n", test_name, saved_errno); ksft_test_result_pass("%s test: Failed to send signal as expected\n", test_name); return 0; } /* * Maximum number of cycles we allow. This is equivalent to PID_MAX_DEFAULT. * If users set a higher limit or we have cycled PIDFD_MAX_DEFAULT number of * times then we skip the test to not go into an infinite loop or block for a * long time. */ #define PIDFD_MAX_DEFAULT 0x8000 static int test_pidfd_send_signal_recycled_pid_fail(void) { int i, ret; pid_t pid1; const char *test_name = "pidfd_send_signal signal recycled pid"; if (!have_pidfd_send_signal) { ksft_test_result_skip( "%s test: pidfd_send_signal() syscall not supported\n", test_name); return 0; } ret = unshare(CLONE_NEWPID); if (ret < 0) { if (errno == EPERM) { ksft_test_result_skip("%s test: Unsharing pid namespace not permitted\n", test_name); return 0; } ksft_exit_fail_msg("%s test: Failed to unshare pid namespace\n", test_name); } ret = unshare(CLONE_NEWNS); if (ret < 0) { if (errno == EPERM) { ksft_test_result_skip("%s test: Unsharing mount namespace not permitted\n", test_name); return 0; } ksft_exit_fail_msg("%s test: Failed to unshare mount namespace\n", test_name); } ret = mount(NULL, "/", NULL, MS_REC | MS_PRIVATE, 0); if (ret < 0) ksft_exit_fail_msg("%s test: Failed to remount / private\n", test_name); /* pid 1 in new pid namespace */ pid1 = fork(); if (pid1 < 0) ksft_exit_fail_msg("%s test: Failed to create new process\n", test_name); if (pid1 == 0) { char buf[256]; pid_t pid2; int pidfd = -1; (void)umount2("/proc", MNT_DETACH); ret = mount("proc", "/proc", "proc", 0, NULL); if (ret < 0) _exit(PIDFD_ERROR); /* grab pid PID_RECYCLE */ for (i = 0; i <= PIDFD_MAX_DEFAULT; i++) { pid2 = fork(); if (pid2 < 0) _exit(PIDFD_ERROR); if (pid2 == 0) _exit(PIDFD_PASS); if (pid2 == PID_RECYCLE) { snprintf(buf, sizeof(buf), "/proc/%d", pid2); ksft_print_msg("pid to recycle is %d\n", pid2); pidfd = open(buf, O_DIRECTORY | O_CLOEXEC); } if (wait_for_pid(pid2)) _exit(PIDFD_ERROR); if (pid2 >= PID_RECYCLE) break; } /* * We want to be as predictable as we can so if we haven't been * able to grab pid PID_RECYCLE skip the test. */ if (pid2 != PID_RECYCLE) { /* skip test */ close(pidfd); _exit(PIDFD_SKIP); } if (pidfd < 0) _exit(PIDFD_ERROR); for (i = 0; i <= PIDFD_MAX_DEFAULT; i++) { char c; int pipe_fds[2]; pid_t recycled_pid; int child_ret = PIDFD_PASS; ret = pipe2(pipe_fds, O_CLOEXEC); if (ret < 0) _exit(PIDFD_ERROR); recycled_pid = fork(); if (recycled_pid < 0) _exit(PIDFD_ERROR); if (recycled_pid == 0) { close(pipe_fds[1]); (void)read(pipe_fds[0], &c, 1); close(pipe_fds[0]); _exit(PIDFD_PASS); } /* * Stop the child so we can inspect whether we have * recycled pid PID_RECYCLE. */ close(pipe_fds[0]); ret = kill(recycled_pid, SIGSTOP); close(pipe_fds[1]); if (ret) { (void)wait_for_pid(recycled_pid); _exit(PIDFD_ERROR); } /* * We have recycled the pid. Try to signal it. This * needs to fail since this is a different process than * the one the pidfd refers to. */ if (recycled_pid == PID_RECYCLE) { ret = sys_pidfd_send_signal(pidfd, SIGCONT, NULL, 0); if (ret && errno == ESRCH) child_ret = PIDFD_XFAIL; else child_ret = PIDFD_FAIL; } /* let the process move on */ ret = kill(recycled_pid, SIGCONT); if (ret) (void)kill(recycled_pid, SIGKILL); if (wait_for_pid(recycled_pid)) _exit(PIDFD_ERROR); switch (child_ret) { case PIDFD_FAIL: /* fallthrough */ case PIDFD_XFAIL: _exit(child_ret); case PIDFD_PASS: break; default: /* not reached */ _exit(PIDFD_ERROR); } /* * If the user set a custom pid_max limit we could be * in the millions. * Skip the test in this case. */ if (recycled_pid > PIDFD_MAX_DEFAULT) _exit(PIDFD_SKIP); } /* failed to recycle pid */ _exit(PIDFD_SKIP); } ret = wait_for_pid(pid1); switch (ret) { case PIDFD_FAIL: ksft_exit_fail_msg( "%s test: Managed to signal recycled pid %d\n", test_name, PID_RECYCLE); case PIDFD_PASS: ksft_exit_fail_msg("%s test: Failed to recycle pid %d\n", test_name, PID_RECYCLE); case PIDFD_SKIP: ksft_test_result_skip("%s test: Skipping test\n", test_name); ret = 0; break; case PIDFD_XFAIL: ksft_test_result_pass( "%s test: Failed to signal recycled pid as expected\n", test_name); ret = 0; break; default /* PIDFD_ERROR */: ksft_exit_fail_msg("%s test: Error while running tests\n", test_name); } return ret; } static int test_pidfd_send_signal_syscall_support(void) { int pidfd, ret; const char *test_name = "pidfd_send_signal check for support"; pidfd = open("/proc/self", O_DIRECTORY | O_CLOEXEC); if (pidfd < 0) ksft_exit_fail_msg( "%s test: Failed to open process file descriptor\n", test_name); ret = sys_pidfd_send_signal(pidfd, 0, NULL, 0); if (ret < 0) { if (errno == ENOSYS) { ksft_test_result_skip( "%s test: pidfd_send_signal() syscall not supported\n", test_name); return 0; } ksft_exit_fail_msg("%s test: Failed to send signal\n", test_name); } have_pidfd_send_signal = true; close(pidfd); ksft_test_result_pass( "%s test: pidfd_send_signal() syscall is supported. Tests can be executed\n", test_name); return 0; } static void *test_pidfd_poll_exec_thread(void *priv) { ksft_print_msg("Child Thread: starting. pid %d tid %d ; and sleeping\n", getpid(), syscall(SYS_gettid)); ksft_print_msg("Child Thread: doing exec of sleep\n"); execl("/bin/sleep", "sleep", str(CHILD_THREAD_MIN_WAIT), (char *)NULL); ksft_print_msg("Child Thread: DONE. pid %d tid %d\n", getpid(), syscall(SYS_gettid)); return NULL; } static void poll_pidfd(const char *test_name, int pidfd) { int c; int epoll_fd = epoll_create1(EPOLL_CLOEXEC); struct epoll_event event, events[MAX_EVENTS]; if (epoll_fd == -1) ksft_exit_fail_msg("%s test: Failed to create epoll file descriptor " "(errno %d)\n", test_name, errno); event.events = EPOLLIN; event.data.fd = pidfd; if (epoll_ctl(epoll_fd, EPOLL_CTL_ADD, pidfd, &event)) { ksft_exit_fail_msg("%s test: Failed to add epoll file descriptor " "(errno %d)\n", test_name, errno); } c = epoll_wait(epoll_fd, events, MAX_EVENTS, 5000); if (c != 1 || !(events[0].events & EPOLLIN)) ksft_exit_fail_msg("%s test: Unexpected epoll_wait result (c=%d, events=%x) " "(errno %d)\n", test_name, c, events[0].events, errno); close(epoll_fd); return; } static int child_poll_exec_test(void *args) { pthread_t t1; ksft_print_msg("Child (pidfd): starting. pid %d tid %d\n", getpid(), syscall(SYS_gettid)); pthread_create(&t1, NULL, test_pidfd_poll_exec_thread, NULL); /* * Exec in the non-leader thread will destroy the leader immediately. * If the wait in the parent returns too soon, the test fails. */ while (1) sleep(1); return 0; } static void test_pidfd_poll_exec(int use_waitpid) { int pid, pidfd = 0; int status, ret; time_t prog_start = time(NULL); const char *test_name = "pidfd_poll check for premature notification on child thread exec"; ksft_print_msg("Parent: pid: %d\n", getpid()); pid = pidfd_clone(CLONE_PIDFD, &pidfd, child_poll_exec_test); if (pid < 0) ksft_exit_fail_msg("%s test: pidfd_clone failed (ret %d, errno %d)\n", test_name, pid, errno); ksft_print_msg("Parent: Waiting for Child (%d) to complete.\n", pid); if (use_waitpid) { ret = waitpid(pid, &status, 0); if (ret == -1) ksft_print_msg("Parent: error\n"); if (ret == pid) ksft_print_msg("Parent: Child process waited for.\n"); } else { poll_pidfd(test_name, pidfd); } time_t prog_time = time(NULL) - prog_start; ksft_print_msg("Time waited for child: %lu\n", prog_time); close(pidfd); if (prog_time < CHILD_THREAD_MIN_WAIT || prog_time > CHILD_THREAD_MIN_WAIT + 2) ksft_exit_fail_msg("%s test: Failed\n", test_name); else ksft_test_result_pass("%s test: Passed\n", test_name); } static void *test_pidfd_poll_leader_exit_thread(void *priv) { ksft_print_msg("Child Thread: starting. pid %d tid %d ; and sleeping\n", getpid(), syscall(SYS_gettid)); sleep(CHILD_THREAD_MIN_WAIT); ksft_print_msg("Child Thread: DONE. pid %d tid %d\n", getpid(), syscall(SYS_gettid)); return NULL; } static time_t *child_exit_secs; static int child_poll_leader_exit_test(void *args) { pthread_t t1, t2; ksft_print_msg("Child: starting. pid %d tid %d\n", getpid(), syscall(SYS_gettid)); pthread_create(&t1, NULL, test_pidfd_poll_leader_exit_thread, NULL); pthread_create(&t2, NULL, test_pidfd_poll_leader_exit_thread, NULL); /* * glibc exit calls exit_group syscall, so explicity call exit only * so that only the group leader exits, leaving the threads alone. */ *child_exit_secs = time(NULL); syscall(SYS_exit, 0); /* Never reached, but appeases compiler thinking we should return. */ exit(0); } static void test_pidfd_poll_leader_exit(int use_waitpid) { int pid, pidfd = 0; int status, ret = 0; const char *test_name = "pidfd_poll check for premature notification on non-empty" "group leader exit"; child_exit_secs = mmap(NULL, sizeof *child_exit_secs, PROT_READ | PROT_WRITE, MAP_SHARED | MAP_ANONYMOUS, -1, 0); if (child_exit_secs == MAP_FAILED) ksft_exit_fail_msg("%s test: mmap failed (errno %d)\n", test_name, errno); ksft_print_msg("Parent: pid: %d\n", getpid()); pid = pidfd_clone(CLONE_PIDFD, &pidfd, child_poll_leader_exit_test); if (pid < 0) ksft_exit_fail_msg("%s test: pidfd_clone failed (ret %d, errno %d)\n", test_name, pid, errno); ksft_print_msg("Parent: Waiting for Child (%d) to complete.\n", pid); if (use_waitpid) { ret = waitpid(pid, &status, 0); if (ret == -1) ksft_print_msg("Parent: error\n"); } else { /* * This sleep tests for the case where if the child exits, and is in * EXIT_ZOMBIE, but the thread group leader is non-empty, then the poll * doesn't prematurely return even though there are active threads */ sleep(1); poll_pidfd(test_name, pidfd); } if (ret == pid) ksft_print_msg("Parent: Child process waited for.\n"); time_t since_child_exit = time(NULL) - *child_exit_secs; ksft_print_msg("Time since child exit: %lu\n", since_child_exit); close(pidfd); if (since_child_exit < CHILD_THREAD_MIN_WAIT || since_child_exit > CHILD_THREAD_MIN_WAIT + 2) ksft_exit_fail_msg("%s test: Failed\n", test_name); else ksft_test_result_pass("%s test: Passed\n", test_name); } int main(int argc, char **argv) { ksft_print_header(); ksft_set_plan(8); test_pidfd_poll_exec(0); test_pidfd_poll_exec(1); test_pidfd_poll_leader_exit(0); test_pidfd_poll_leader_exit(1); test_pidfd_send_signal_syscall_support(); test_pidfd_send_signal_simple_success(); test_pidfd_send_signal_exited_fail(); test_pidfd_send_signal_recycled_pid_fail(); return ksft_exit_pass(); } |