blob: 8e0f2058c552f411651bdc8842074b849e27bad9 [file] [log] [blame]
Dmitry V. Levin62046542016-02-09 04:16:41 +00001/*
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
43typedef union {
44 void *ptr;
45 pid_t pid;
46} retval_t;
47
48typedef struct {
49 sigset_t set;
50 unsigned int no;
51} thread_arg_t;
52
53static const char text_parent[] = "attach-f-p.test parent";
54static 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};
59static const int sigs[N] = { SIGALRM, SIGUSR1, SIGUSR2 };
60static const struct itimerspec its[N] = {
Dmitry V. Levin88fc4c22016-05-07 23:51:47 +000061 { .it_value.tv_sec = 1 },
62 { .it_value.tv_sec = 2 },
63 { .it_value.tv_sec = 3 }
Dmitry V. Levin62046542016-02-09 04:16:41 +000064};
65static thread_arg_t args[N] = {
66 { .no = 0 },
67 { .no = 1 },
68 { .no = 2 }
69};
70
71static void *
72thread(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
84int
85main(void)
86{
Dmitry V. Levin9b49af12016-05-24 11:10:22 +000087 static timer_t timerid[N];
Dmitry V. Levin62046542016-02-09 04:16:41 +000088 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. Levin9b49af12016-05-24 11:10:22 +0000105 if (timer_create(CLOCK_MONOTONIC, &sev, &timerid[i]))
Dmitry V. Levin62046542016-02-09 04:16:41 +0000106 perror_msg_and_skip("timer_create");
107
Dmitry V. Levin9b49af12016-05-24 11:10:22 +0000108 if (timer_settime(timerid[i], 0, &its[i], NULL))
Dmitry V. Levin62046542016-02-09 04:16:41 +0000109 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. Levin21e3ff82016-06-13 22:15:49 +0000130 /* sleep a bit more to let the tracer catch up */
Dmitry V. Levin9b49af12016-05-24 11:10:22 +0000131 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. Levin62046542016-02-09 04:16:41 +0000138 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}