1 /* Creation of autonomous subprocesses.
2 Copyright (C) 2001-2004, 2006-2020 Free Software Foundation, Inc.
3 Written by Bruno Haible <haible@clisp.cons.org>, 2001.
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
10 This program 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
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <https://www.gnu.org/licenses/>. */
32 #include "fatal-signal.h"
33 #include "wait-process.h"
36 #define _(str) gettext (str)
38 #if defined _WIN32 && ! defined __CYGWIN__
40 /* Native Windows API. */
42 # include "w32spawn.h"
52 #if defined EINTR && (defined _WIN32 && ! defined __CYGWIN__)
54 /* EINTR handling for close(), open().
55 These functions can return -1/EINTR even though we don't have any
56 signal handlers set up, namely when we get interrupted via SIGSTOP. */
59 nonintr_close (int fd
)
65 while (retval
< 0 && errno
== EINTR
);
69 #undef close /* avoid warning related to gnulib module unistd */
70 #define close nonintr_close
73 nonintr_open (const char *pathname
, int oflag
, mode_t mode
)
78 retval
= open (pathname
, oflag
, mode
);
79 while (retval
< 0 && errno
== EINTR
);
83 #undef open /* avoid warning on VMS */
84 #define open nonintr_open
89 /* Execute a command, optionally redirecting any of the three standard file
90 descriptors to /dev/null. Return its exit code.
91 If it didn't terminate correctly, exit if exit_on_error is true, otherwise
93 If slave_process is true, the child process will be terminated when its
94 creator receives a catchable fatal signal. */
96 execute (const char *progname
,
97 const char *prog_path
, char **prog_argv
,
99 bool null_stdin
, bool null_stdout
, bool null_stderr
,
100 bool slave_process
, bool exit_on_error
,
103 #if defined _WIN32 && ! defined __CYGWIN__
105 /* Native Windows API. */
113 /* FIXME: Need to free memory allocated by prepare_spawn. */
114 prog_argv
= prepare_spawn (prog_argv
);
116 /* Save standard file handles of parent process. */
118 orig_stdin
= dup_safer_noinherit (STDIN_FILENO
);
120 orig_stdout
= dup_safer_noinherit (STDOUT_FILENO
);
122 orig_stderr
= dup_safer_noinherit (STDERR_FILENO
);
125 /* Create standard file handles of child process. */
129 || ((nullinfd
= open ("NUL", O_RDONLY
, 0)) >= 0
130 && (nullinfd
== STDIN_FILENO
131 || (dup2 (nullinfd
, STDIN_FILENO
) >= 0
132 && close (nullinfd
) >= 0))))
133 && (!(null_stdout
|| null_stderr
)
134 || ((nulloutfd
= open ("NUL", O_RDWR
, 0)) >= 0
136 || nulloutfd
== STDOUT_FILENO
137 || dup2 (nulloutfd
, STDOUT_FILENO
) >= 0)
139 || nulloutfd
== STDERR_FILENO
140 || dup2 (nulloutfd
, STDERR_FILENO
) >= 0)
141 && ((null_stdout
&& nulloutfd
== STDOUT_FILENO
)
142 || (null_stderr
&& nulloutfd
== STDERR_FILENO
)
143 || close (nulloutfd
) >= 0))))
144 /* Use _spawnvpe and pass the environment explicitly. This is needed if
145 the program has modified the environment using putenv() or [un]setenv().
146 On Windows, programs have two environments, one in the "environment
147 block" of the process and managed through SetEnvironmentVariable(), and
148 one inside the process, in the location retrieved by the 'environ'
149 macro. When using _spawnvp() without 'e', the child process inherits a
150 copy of the environment block - ignoring the effects of putenv() and
153 exitcode
= _spawnvpe (P_WAIT
, prog_path
, (const char **) prog_argv
,
154 (const char **) environ
);
155 if (exitcode
< 0 && errno
== ENOEXEC
)
157 /* prog is not a native executable. Try to execute it as a
158 shell script. Note that prepare_spawn() has already prepended
159 a hidden element "sh.exe" to prog_argv. */
161 exitcode
= _spawnvpe (P_WAIT
, prog_argv
[0], (const char **) prog_argv
,
162 (const char **) environ
);
170 /* Restore standard file handles of parent process. */
172 undup_safer_noinherit (orig_stderr
, STDERR_FILENO
);
174 undup_safer_noinherit (orig_stdout
, STDOUT_FILENO
);
176 undup_safer_noinherit (orig_stdin
, STDIN_FILENO
);
178 if (termsigp
!= NULL
)
183 if (exit_on_error
|| !null_stderr
)
184 error (exit_on_error
? EXIT_FAILURE
: 0, errno
,
185 _("%s subprocess failed"), progname
);
194 /* Note about 127: Some errors during posix_spawnp() cause the function
195 posix_spawnp() to return an error code; some other errors cause the
196 subprocess to exit with return code 127. It is implementation
197 dependent which error is reported which way. We treat both cases as
199 sigset_t blocked_signals
;
200 posix_spawn_file_actions_t actions
;
201 bool actions_allocated
;
202 posix_spawnattr_t attrs
;
203 bool attrs_allocated
;
209 sigprocmask (SIG_SETMASK
, NULL
, &blocked_signals
);
210 block_fatal_signals ();
212 actions_allocated
= false;
213 attrs_allocated
= false;
214 if ((err
= posix_spawn_file_actions_init (&actions
)) != 0
215 || (actions_allocated
= true,
217 && (err
= posix_spawn_file_actions_addopen (&actions
,
219 "/dev/null", O_RDONLY
,
223 && (err
= posix_spawn_file_actions_addopen (&actions
,
229 && (err
= posix_spawn_file_actions_addopen (&actions
,
235 && ((err
= posix_spawnattr_init (&attrs
)) != 0
236 || (attrs_allocated
= true,
237 (err
= posix_spawnattr_setsigmask (&attrs
,
240 || (err
= posix_spawnattr_setflags (&attrs
,
241 POSIX_SPAWN_SETSIGMASK
))
243 || (err
= posix_spawnp (&child
, prog_path
, &actions
,
244 attrs_allocated
? &attrs
: NULL
, prog_argv
,
248 if (actions_allocated
)
249 posix_spawn_file_actions_destroy (&actions
);
251 posix_spawnattr_destroy (&attrs
);
253 unblock_fatal_signals ();
254 if (termsigp
!= NULL
)
256 if (exit_on_error
|| !null_stderr
)
257 error (exit_on_error
? EXIT_FAILURE
: 0, err
,
258 _("%s subprocess failed"), progname
);
261 posix_spawn_file_actions_destroy (&actions
);
263 posix_spawnattr_destroy (&attrs
);
266 register_slave_subprocess (child
);
267 unblock_fatal_signals ();
270 return wait_subprocess (child
, progname
, ignore_sigpipe
, null_stderr
,
271 slave_process
, exit_on_error
, termsigp
);