1 /* Check if posix_spawn does not act as a cancellation entrypoint.
2 Copyright (C) 2016-2018 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
30 static int do_test (void);
31 #define TEST_FUNCTION do_test ()
32 #include <test-skeleton.c>
34 static pthread_barrier_t b
;
42 xpthread_barrier_wait (&b
);
44 posix_spawn_file_actions_t a
;
45 if (posix_spawn_file_actions_init (&a
) != 0)
47 puts ("error: spawn_file_actions_init failed");
51 if (posix_spawn_file_actions_adddup2 (&a
, pipefd
[1], STDOUT_FILENO
) != 0)
53 puts ("error: spawn_file_actions_adddup2 failed");
57 if (posix_spawn_file_actions_addclose (&a
, pipefd
[0]) != 0)
59 puts ("error: spawn_file_actions_addclose");
63 char *argv
[] = { (char *) _PATH_BSHELL
, (char *) "-c", (char *) "echo $$",
65 if (posix_spawn (&pid
, _PATH_BSHELL
, &a
, NULL
, argv
, NULL
) != 0)
67 puts ("error: spawn failed");
78 /* The test basically pipe a 'echo $$' created by a thread with a
79 cancellation pending. It then checks if the thread is not cancelled,
80 the process is created and if the output is the expected one. */
82 if (pipe (pipefd
) != 0)
84 puts ("error: pipe failed");
88 /* Not interested in knowing when the pipe is closed. */
89 if (sigignore (SIGPIPE
) != 0)
91 puts ("error: sigignore failed");
95 /* To synchronize with the thread. */
96 if (pthread_barrier_init (&b
, NULL
, 2) != 0)
98 puts ("error: pthread_barrier_init failed");
102 pthread_t th
= xpthread_create (NULL
, &tf
, NULL
);
104 if (pthread_cancel (th
) != 0)
106 puts ("error: pthread_cancel failed");
110 xpthread_barrier_wait (&b
);
112 if (xpthread_join (th
) == PTHREAD_CANCELED
)
114 puts ("error: thread cancelled");
120 /* The global 'pid' should be set by thread posix_spawn calling. Check
121 below if it was executed correctly and with expected output. */
125 bool seen_pid
= false;
126 while (TEMP_FAILURE_RETRY ((n
= read (pipefd
[0], buf
, sizeof (buf
)))) > 0)
128 /* We only expect to read the PID. */
130 long int rpid
= strtol (buf
, &endp
, 10);
134 printf ("error: didn't parse whole line: \"%s\"\n", buf
);
139 puts ("error: read empty line");
145 printf ("error: found \"%s\", expected PID %ld\n", buf
,
152 puts ("error: found more than one PID line");
162 int err
= waitpid (pid
, &status
, 0);
165 puts ("errnor: waitpid failed");
171 puts ("error: didn't get PID");