]> git.ipfire.org Git - thirdparty/glibc.git/blob - sysdeps/posix/spawni.c
posix: Fix default posix_spawn return value
[thirdparty/glibc.git] / sysdeps / posix / spawni.c
1 /* Guts of POSIX spawn interface. Generic POSIX.1 version.
2 Copyright (C) 2000-2017 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4
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.
9
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.
14
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/>. */
18
19 #include <spawn.h>
20 #include <assert.h>
21 #include <fcntl.h>
22 #include <paths.h>
23 #include <string.h>
24 #include <sys/resource.h>
25 #include <sys/wait.h>
26 #include <sys/param.h>
27 #include <sys/mman.h>
28 #include <not-cancel.h>
29 #include <local-setxid.h>
30 #include <shlib-compat.h>
31 #include <nptl/pthreadP.h>
32 #include <dl-sysdep.h>
33 #include <libc-pointer-arith.h>
34 #include <ldsodefs.h>
35 #include "spawn_int.h"
36
37
38 /* The Unix standard contains a long explanation of the way to signal
39 an error after the fork() was successful. Since no new wait status
40 was wanted there is no way to signal an error using one of the
41 available methods. The committee chose to signal an error by a
42 normal program exit with the exit code 127. */
43 #define SPAWN_ERROR 127
44
45 struct posix_spawn_args
46 {
47 sigset_t oldmask;
48 const char *file;
49 int (*exec) (const char *, char *const *, char *const *);
50 const posix_spawn_file_actions_t *fa;
51 const posix_spawnattr_t *restrict attr;
52 char *const *argv;
53 ptrdiff_t argc;
54 char *const *envp;
55 int xflags;
56 int pipe[2];
57 };
58
59 /* Older version requires that shell script without shebang definition
60 to be called explicitly using /bin/sh (_PATH_BSHELL). */
61 static void
62 maybe_script_execute (struct posix_spawn_args *args)
63 {
64 if (SHLIB_COMPAT (libc, GLIBC_2_2, GLIBC_2_15)
65 && (args->xflags & SPAWN_XFLAGS_TRY_SHELL) && errno == ENOEXEC)
66 {
67 char *const *argv = args->argv;
68 ptrdiff_t argc = args->argc;
69
70 /* Construct an argument list for the shell. */
71 char *new_argv[argc + 1];
72 new_argv[0] = (char *) _PATH_BSHELL;
73 new_argv[1] = (char *) args->file;
74 if (argc > 1)
75 memcpy (new_argv + 2, argv + 1, argc * sizeof(char *));
76 else
77 new_argv[2] = NULL;
78
79 /* Execute the shell. */
80 args->exec (new_argv[0], new_argv, args->envp);
81 }
82 }
83
84 /* Function used in the clone call to setup the signals mask, posix_spawn
85 attributes, and file actions. */
86 static int
87 __spawni_child (void *arguments)
88 {
89 struct posix_spawn_args *args = arguments;
90 const posix_spawnattr_t *restrict attr = args->attr;
91 const posix_spawn_file_actions_t *file_actions = args->fa;
92 int ret;
93
94 __close (args->pipe[0]);
95
96 /* Set signal default action. */
97 if ((attr->__flags & POSIX_SPAWN_SETSIGDEF) != 0)
98 {
99 /* We have to iterate over all signals. This could possibly be
100 done better but it requires system specific solutions since
101 the sigset_t data type can be very different on different
102 architectures. */
103 int sig;
104 struct sigaction sa;
105
106 memset (&sa, '\0', sizeof (sa));
107 sa.sa_handler = SIG_DFL;
108
109 for (sig = 1; sig <= _NSIG; ++sig)
110 if (__sigismember (&attr->__sd, sig) != 0
111 && __sigaction (sig, &sa, NULL) != 0)
112 goto fail;
113 }
114
115 #ifdef _POSIX_PRIORITY_SCHEDULING
116 /* Set the scheduling algorithm and parameters. */
117 if ((attr->__flags & (POSIX_SPAWN_SETSCHEDPARAM | POSIX_SPAWN_SETSCHEDULER))
118 == POSIX_SPAWN_SETSCHEDPARAM)
119 {
120 if (__sched_setparam (0, &attr->__sp) == -1)
121 goto fail;
122 }
123 else if ((attr->__flags & POSIX_SPAWN_SETSCHEDULER) != 0)
124 {
125 if (__sched_setscheduler (0, attr->__policy, &attr->__sp) == -1)
126 goto fail;
127 }
128 #endif
129
130 /* Set the process session ID. */
131 if ((attr->__flags & POSIX_SPAWN_SETSID) != 0
132 && __setsid () < 0)
133 goto fail;
134
135 /* Set the process group ID. */
136 if ((attr->__flags & POSIX_SPAWN_SETPGROUP) != 0
137 && __setpgid (0, attr->__pgrp) != 0)
138 goto fail;
139
140 /* Set the effective user and group IDs. */
141 if ((attr->__flags & POSIX_SPAWN_RESETIDS) != 0
142 && (local_seteuid (__getuid ()) != 0
143 || local_setegid (__getgid ())) != 0)
144 goto fail;
145
146 /* Execute the file actions. */
147 if (file_actions != NULL)
148 {
149 int cnt;
150 struct rlimit64 fdlimit;
151 bool have_fdlimit = false;
152
153 for (cnt = 0; cnt < file_actions->__used; ++cnt)
154 {
155 struct __spawn_action *action = &file_actions->__actions[cnt];
156
157 switch (action->tag)
158 {
159 case spawn_do_close:
160 if (close_not_cancel (action->action.close_action.fd) != 0)
161 {
162 if (have_fdlimit == 0)
163 {
164 __getrlimit64 (RLIMIT_NOFILE, &fdlimit);
165 have_fdlimit = true;
166 }
167
168 /* Only signal errors for file descriptors out of range. */
169 if (action->action.close_action.fd < 0
170 || action->action.close_action.fd >= fdlimit.rlim_cur)
171 goto fail;
172 }
173 break;
174
175 case spawn_do_open:
176 {
177 /* POSIX states that if fildes was already an open file descriptor,
178 it shall be closed before the new file is opened. This avoid
179 pontential issues when posix_spawn plus addopen action is called
180 with the process already at maximum number of file descriptor
181 opened and also for multiple actions on single-open special
182 paths (like /dev/watchdog). */
183 close_not_cancel (action->action.open_action.fd);
184
185 int new_fd = open_not_cancel (action->action.open_action.path,
186 action->action.open_action.oflag
187 | O_LARGEFILE,
188 action->action.open_action.mode);
189
190 if (new_fd == -1)
191 goto fail;
192
193 /* Make sure the desired file descriptor is used. */
194 if (new_fd != action->action.open_action.fd)
195 {
196 if (__dup2 (new_fd, action->action.open_action.fd)
197 != action->action.open_action.fd)
198 goto fail;
199
200 if (close_not_cancel (new_fd) != 0)
201 goto fail;
202 }
203 }
204 break;
205
206 case spawn_do_dup2:
207 if (__dup2 (action->action.dup2_action.fd,
208 action->action.dup2_action.newfd)
209 != action->action.dup2_action.newfd)
210 goto fail;
211 break;
212 }
213 }
214 }
215
216 /* Set the initial signal mask of the child if POSIX_SPAWN_SETSIGMASK
217 is set, otherwise restore the previous one. */
218 __sigprocmask (SIG_SETMASK, (attr->__flags & POSIX_SPAWN_SETSIGMASK)
219 ? &attr->__ss : &args->oldmask, 0);
220
221 args->exec (args->file, args->argv, args->envp);
222
223 /* This is compatibility function required to enable posix_spawn run
224 script without shebang definition for older posix_spawn versions
225 (2.15). */
226 maybe_script_execute (args);
227
228 fail:
229 /* errno should have an appropriate non-zero value; otherwise,
230 there's a bug in glibc or the kernel. For lack of an error code
231 (EINTERNALBUG) describing that, use ECHILD. Another option would
232 be to set args->err to some negative sentinel and have the parent
233 abort(), but that seems needlessly harsh. */
234 ret = errno ? : ECHILD;
235 if (ret)
236 /* Since sizeof errno < PIPE_BUF, the write is atomic. */
237 while (write_not_cancel (args->pipe[1], &ret, sizeof (ret)) < 0);
238
239 _exit (SPAWN_ERROR);
240 }
241
242 /* Spawn a new process executing PATH with the attributes describes in *ATTRP.
243 Before running the process perform the actions described in FILE-ACTIONS. */
244 int
245 __spawnix (pid_t *pid, const char *file,
246 const posix_spawn_file_actions_t *file_actions,
247 const posix_spawnattr_t *attrp, char *const argv[],
248 char *const envp[], int xflags,
249 int (*exec) (const char *, char *const *, char *const *))
250 {
251 struct posix_spawn_args args;
252 int ec;
253
254 if (__pipe2 (args.pipe, O_CLOEXEC))
255 return errno;
256
257 /* Disable asynchronous cancellation. */
258 int state;
259 __libc_ptf_call (__pthread_setcancelstate,
260 (PTHREAD_CANCEL_DISABLE, &state), 0);
261
262 ptrdiff_t argc = 0;
263 ptrdiff_t limit = INT_MAX - 1;
264 while (argv[argc++] != NULL)
265 if (argc == limit)
266 {
267 errno = E2BIG;
268 return errno;
269 }
270
271 args.file = file;
272 args.exec = exec;
273 args.fa = file_actions;
274 args.attr = attrp ? attrp : &(const posix_spawnattr_t) { 0 };
275 args.argv = argv;
276 args.argc = argc;
277 args.envp = envp;
278 args.xflags = xflags;
279
280 /* Generate the new process. */
281 pid_t new_pid = __fork ();
282
283 if (new_pid == 0)
284 __spawni_child (&args);
285 else if (new_pid > 0)
286 {
287 __close (args.pipe[1]);
288
289 if (__read (args.pipe[0], &ec, sizeof ec) != sizeof ec)
290 ec = 0;
291 else
292 __waitpid (new_pid, &(int) { 0 }, 0);
293 }
294 else
295 ec = errno;
296
297 __close (args.pipe[0]);
298
299 if ((ec == 0) && (pid != NULL))
300 *pid = new_pid;
301
302 __libc_ptf_call (__pthread_setcancelstate, (state, NULL), 0);
303
304 return ec;
305 }
306
307 int
308 __spawni (pid_t * pid, const char *file,
309 const posix_spawn_file_actions_t * acts,
310 const posix_spawnattr_t * attrp, char *const argv[],
311 char *const envp[], int xflags)
312 {
313 return __spawnix (pid, file, acts, attrp, argv, envp, xflags,
314 xflags & SPAWN_XFLAGS_USE_PATH ? __execvpe : __execve);
315 }