Dmitry V. Levin | 6204654 | 2016-02-09 04:16:41 +0000 | [diff] [blame] | 1 | /* |
| 2 | * This file is part of attach-f-p strace test. |
| 3 | * |
| 4 | * Copyright (c) 2016 Dmitry V. Levin <ldv@altlinux.org> |
| 5 | * All rights reserved. |
| 6 | * |
| 7 | * Redistribution and use in source and binary forms, with or without |
| 8 | * modification, are permitted provided that the following conditions |
| 9 | * are met: |
| 10 | * 1. Redistributions of source code must retain the above copyright |
| 11 | * notice, this list of conditions and the following disclaimer. |
| 12 | * 2. Redistributions in binary form must reproduce the above copyright |
| 13 | * notice, this list of conditions and the following disclaimer in the |
| 14 | * documentation and/or other materials provided with the distribution. |
| 15 | * 3. The name of the author may not be used to endorse or promote products |
| 16 | * derived from this software without specific prior written permission. |
| 17 | * |
| 18 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 19 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 20 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 21 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 22 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 23 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 24 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 25 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 26 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 27 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 28 | */ |
| 29 | |
| 30 | #include "tests.h" |
| 31 | #include <assert.h> |
| 32 | #include <errno.h> |
| 33 | #include <pthread.h> |
| 34 | #include <signal.h> |
| 35 | #include <stdio.h> |
| 36 | #include <stdlib.h> |
| 37 | #include <time.h> |
| 38 | #include <sys/syscall.h> |
| 39 | #include <unistd.h> |
| 40 | |
| 41 | #define N 3 |
| 42 | |
| 43 | typedef union { |
| 44 | void *ptr; |
| 45 | pid_t pid; |
| 46 | } retval_t; |
| 47 | |
| 48 | typedef struct { |
| 49 | sigset_t set; |
| 50 | unsigned int no; |
| 51 | } thread_arg_t; |
| 52 | |
| 53 | static const char text_parent[] = "attach-f-p.test parent"; |
| 54 | static const char *child[N] = { |
| 55 | "attach-f-p.test child 0", |
| 56 | "attach-f-p.test child 1", |
| 57 | "attach-f-p.test child 2" |
| 58 | }; |
| 59 | static const int sigs[N] = { SIGALRM, SIGUSR1, SIGUSR2 }; |
| 60 | static const struct itimerspec its[N] = { |
Dmitry V. Levin | 88fc4c2 | 2016-05-07 23:51:47 +0000 | [diff] [blame] | 61 | { .it_value.tv_sec = 1 }, |
| 62 | { .it_value.tv_sec = 2 }, |
| 63 | { .it_value.tv_sec = 3 } |
Dmitry V. Levin | 6204654 | 2016-02-09 04:16:41 +0000 | [diff] [blame] | 64 | }; |
| 65 | static thread_arg_t args[N] = { |
| 66 | { .no = 0 }, |
| 67 | { .no = 1 }, |
| 68 | { .no = 2 } |
| 69 | }; |
| 70 | |
| 71 | static void * |
| 72 | thread(void *a) |
| 73 | { |
| 74 | thread_arg_t *arg = a; |
| 75 | int signo; |
| 76 | errno = sigwait(&arg->set, &signo); |
| 77 | if (errno) |
| 78 | perror_msg_and_fail("sigwait"); |
| 79 | assert(chdir(child[arg->no]) == -1); |
| 80 | retval_t retval = { .pid = syscall(__NR_gettid) }; |
| 81 | return retval.ptr; |
| 82 | } |
| 83 | |
| 84 | int |
| 85 | main(void) |
| 86 | { |
Dmitry V. Levin | 9b49af1 | 2016-05-24 11:10:22 +0000 | [diff] [blame] | 87 | static timer_t timerid[N]; |
Dmitry V. Levin | 6204654 | 2016-02-09 04:16:41 +0000 | [diff] [blame] | 88 | pthread_t t[N]; |
| 89 | unsigned int i; |
| 90 | |
| 91 | for (i = 0; i < N; ++i) { |
| 92 | sigemptyset(&args[i].set); |
| 93 | sigaddset(&args[i].set, sigs[i]); |
| 94 | |
| 95 | errno = pthread_sigmask(SIG_BLOCK, &args[i].set, NULL); |
| 96 | if (errno) |
| 97 | perror_msg_and_fail("pthread_sigmask"); |
| 98 | } |
| 99 | |
| 100 | for (i = 0; i < N; ++i) { |
| 101 | struct sigevent sev = { |
| 102 | .sigev_notify = SIGEV_SIGNAL, |
| 103 | .sigev_signo = sigs[i] |
| 104 | }; |
Dmitry V. Levin | 9b49af1 | 2016-05-24 11:10:22 +0000 | [diff] [blame] | 105 | if (timer_create(CLOCK_MONOTONIC, &sev, &timerid[i])) |
Dmitry V. Levin | 6204654 | 2016-02-09 04:16:41 +0000 | [diff] [blame] | 106 | perror_msg_and_skip("timer_create"); |
| 107 | |
Dmitry V. Levin | 9b49af1 | 2016-05-24 11:10:22 +0000 | [diff] [blame] | 108 | if (timer_settime(timerid[i], 0, &its[i], NULL)) |
Dmitry V. Levin | 6204654 | 2016-02-09 04:16:41 +0000 | [diff] [blame] | 109 | perror_msg_and_fail("timer_settime"); |
| 110 | |
| 111 | errno = pthread_create(&t[i], NULL, thread, (void *) &args[i]); |
| 112 | if (errno) |
| 113 | perror_msg_and_fail("pthread_create"); |
| 114 | } |
| 115 | |
| 116 | if (write(3, "\n", 1) != 1) |
| 117 | perror_msg_and_fail("write"); |
| 118 | |
| 119 | for (i = 0; i < N; ++i) { |
| 120 | retval_t retval; |
| 121 | errno = pthread_join(t[i], &retval.ptr); |
| 122 | if (errno) |
| 123 | perror_msg_and_fail("pthread_join"); |
| 124 | errno = ENOENT; |
| 125 | printf("%-5d chdir(\"%s\") = -1 ENOENT (%m)\n" |
| 126 | "%-5d +++ exited with 0 +++\n", |
| 127 | retval.pid, child[i], retval.pid); |
| 128 | } |
| 129 | |
Dmitry V. Levin | 21e3ff8 | 2016-06-13 22:15:49 +0000 | [diff] [blame] | 130 | /* sleep a bit more to let the tracer catch up */ |
Dmitry V. Levin | 9b49af1 | 2016-05-24 11:10:22 +0000 | [diff] [blame] | 131 | if (timer_settime(timerid[0], 0, &its[0], NULL)) |
| 132 | perror_msg_and_fail("timer_settime"); |
| 133 | int signo; |
| 134 | errno = sigwait(&args[0].set, &signo); |
| 135 | if (errno) |
| 136 | perror_msg_and_fail("sigwait"); |
| 137 | |
Dmitry V. Levin | 6204654 | 2016-02-09 04:16:41 +0000 | [diff] [blame] | 138 | pid_t pid = getpid(); |
| 139 | assert(chdir(text_parent) == -1); |
| 140 | |
| 141 | printf("%-5d chdir(\"%s\") = -1 ENOENT (%m)\n" |
| 142 | "%-5d +++ exited with 0 +++\n", pid, text_parent, pid); |
| 143 | |
| 144 | return 0; |
| 145 | } |