4 #include "thread-utils.h"
9 * The run-command API offers a versatile tool to run sub-processes with
10 * redirected input and output as well as with a modified environment
11 * and an alternate current directory.
13 * A similar API offers the capability to run a function asynchronously,
14 * which is primarily used to capture the output that the function
15 * produces in the caller in order to process it.
20 * This describes the arguments, redirections, and environment of a
21 * command to run in a sub-process.
25 * 1. allocates and clears (using child_process_init() or
26 * CHILD_PROCESS_INIT) a struct child_process variable;
27 * 2. initializes the members;
28 * 3. calls start_command();
29 * 4. processes the data;
30 * 5. closes file descriptors (if necessary; see below);
31 * 6. calls finish_command().
33 * Special forms of redirection are available by setting these members
36 * .no_stdin, .no_stdout, .no_stderr: The respective channel is
37 * redirected to /dev/null.
39 * .stdout_to_stderr: stdout of the child is redirected to its
40 * stderr. This happens after stderr is itself redirected.
41 * So stdout will follow stderr to wherever it is
44 struct child_process {
47 * The .argv member is set up as an array of string pointers (NULL
48 * terminated), of which .argv[0] is the program name to run (usually
49 * without a path). If the command to run is a git command, set argv[0] to
50 * the command name without the 'git-' prefix and set .git_cmd = 1.
52 * Note that the ownership of the memory pointed to by .argv stays with the
53 * caller, but it should survive until `finish_command` completes. If the
54 * .argv member is NULL, `start_command` will point it at the .args
55 * `strvec` (so you may use one or the other, but you must use exactly
56 * one). The memory in .args will be cleaned up automatically during
57 * `finish_command` (or during `start_command` when it is unsuccessful).
63 struct strvec env_array;
67 uint64_t trace2_child_us_start;
68 const char *trace2_child_class;
69 const char *trace2_hook_name;
72 * Using .in, .out, .err:
73 * - Specify 0 for no redirections. No new file descriptor is allocated.
74 * (child inherits stdin, stdout, stderr from parent).
75 * - Specify -1 to have a pipe allocated as follows:
76 * .in: returns the writable pipe end; parent writes to it,
77 * the readable pipe end becomes child's stdin
78 * .out, .err: returns the readable pipe end; parent reads from
79 * it, the writable pipe end becomes child's stdout/stderr
80 * The caller of start_command() must close the returned FDs
81 * after it has completed reading from/writing to it!
82 * - Specify > 0 to set a channel to a particular FD as follows:
83 * .in: a readable FD, becomes child's stdin
84 * .out: a writable FD, becomes child's stdout/stderr
85 * .err: a writable FD, becomes child's stderr
86 * The specified FD is closed by start_command(), even in case
94 * To specify a new initial working directory for the sub-process,
95 * specify it in the .dir member.
100 * To modify the environment of the sub-process, specify an array of
101 * string pointers (NULL terminated) in .env:
103 * - If the string is of the form "VAR=value", i.e. it contains '='
104 * the variable is added to the child process's environment.
106 * - If the string does not contain '=', it names an environment
107 * variable that will be removed from the child process's environment.
109 * If the .env member is NULL, `start_command` will point it at the
110 * .env_array `strvec` (so you may use one or the other, but not both).
111 * The memory in .env_array will be cleaned up automatically during
112 * `finish_command` (or during `start_command` when it is unsuccessful).
114 const char *const *env;
117 unsigned no_stdout:1;
118 unsigned no_stderr:1;
119 unsigned git_cmd:1; /* if this is to be git sub-command */
122 * If the program cannot be found, the functions return -1 and set
123 * errno to ENOENT. Normally, an error message is printed, but if
124 * .silent_exec_failure is set to 1, no message is printed for this
125 * special error condition.
127 unsigned silent_exec_failure:1;
130 * Run the command from argv[0] using a shell (but note that we may
131 * still optimize out the shell call if the command contains no
132 * metacharacters). Note that further arguments to the command in
133 * argv[1], etc, do not need to be shell-quoted.
135 unsigned use_shell:1;
137 unsigned stdout_to_stderr:1;
138 unsigned clean_on_exit:1;
139 unsigned wait_after_clean:1;
140 void (*clean_on_exit_handler)(struct child_process *process);
141 void *clean_on_exit_handler_cbdata;
144 #define CHILD_PROCESS_INIT { NULL, STRVEC_INIT, STRVEC_INIT }
147 * The functions: child_process_init, start_command, finish_command,
148 * run_command, run_command_v_opt, run_command_v_opt_cd_env, child_process_clear
151 * - If a system call failed, errno is set and -1 is returned. A diagnostic
154 * - If the program was not found, then -1 is returned and errno is set to
155 * ENOENT; a diagnostic is printed only if .silent_exec_failure is 0.
157 * - Otherwise, the program is run. If it terminates regularly, its exit
158 * code is returned. No diagnostic is printed, even if the exit code is
161 * - If the program terminated due to a signal, then the return value is the
162 * signal number + 128, ie. the same value that a POSIX shell's $? would
163 * report. A diagnostic is printed.
168 * Initialize a struct child_process variable.
170 void child_process_init(struct child_process *);
173 * Release the memory associated with the struct child_process.
174 * Most users of the run-command API don't need to call this
175 * function explicitly because `start_command` invokes it on
176 * failure and `finish_command` calls it automatically already.
178 void child_process_clear(struct child_process *);
180 int is_executable(const char *name);
183 * Start a sub-process. Takes a pointer to a `struct child_process`
184 * that specifies the details and returns pipe FDs (if requested).
185 * See below for details.
187 int start_command(struct child_process *);
190 * Wait for the completion of a sub-process that was started with
193 int finish_command(struct child_process *);
195 int finish_command_in_signal(struct child_process *);
198 * A convenience function that encapsulates a sequence of
199 * start_command() followed by finish_command(). Takes a pointer
200 * to a `struct child_process` that specifies the details.
202 int run_command(struct child_process *);
207 int run_auto_maintenance(int quiet);
209 #define RUN_COMMAND_NO_STDIN 1
210 #define RUN_GIT_CMD 2 /*If this is to be git sub-command */
211 #define RUN_COMMAND_STDOUT_TO_STDERR 4
212 #define RUN_SILENT_EXEC_FAILURE 8
213 #define RUN_USING_SHELL 16
214 #define RUN_CLEAN_ON_EXIT 32
215 #define RUN_WAIT_AFTER_CLEAN 64
218 * Convenience functions that encapsulate a sequence of
219 * start_command() followed by finish_command(). The argument argv
220 * specifies the program and its arguments. The argument opt is zero
221 * or more of the flags `RUN_COMMAND_NO_STDIN`, `RUN_GIT_CMD`,
222 * `RUN_COMMAND_STDOUT_TO_STDERR`, or `RUN_SILENT_EXEC_FAILURE`
223 * that correspond to the members .no_stdin, .git_cmd,
224 * .stdout_to_stderr, .silent_exec_failure of `struct child_process`.
225 * The argument dir corresponds the member .dir. The argument env
226 * corresponds to the member .env.
228 int run_command_v_opt(const char **argv, int opt);
229 int run_command_v_opt_tr2(const char **argv, int opt, const char *tr2_class);
231 * env (the environment) is to be formatted like environ: "VAR=VALUE".
232 * To unset an environment variable use just "VAR".
234 int run_command_v_opt_cd_env(const char **argv, int opt, const char *dir, const char *const *env);
235 int run_command_v_opt_cd_env_tr2(const char **argv, int opt, const char *dir,
236 const char *const *env, const char *tr2_class);
239 * Execute the given command, sending "in" to its stdin, and capturing its
240 * stdout and stderr in the "out" and "err" strbufs. Any of the three may
241 * be NULL to skip processing.
243 * Returns -1 if starting the command fails or reading fails, and otherwise
244 * returns the exit code of the command. Any output collected in the
245 * buffers is kept even if the command returns a non-zero exit. The hint fields
246 * gives starting sizes for the strbuf allocations.
248 * The fields of "cmd" should be set up as they would for a normal run_command
249 * invocation. But note that there is no need to set the in, out, or err
250 * fields; pipe_command handles that automatically.
252 int pipe_command(struct child_process *cmd,
253 const char *in, size_t in_len,
254 struct strbuf *out, size_t out_hint,
255 struct strbuf *err, size_t err_hint);
258 * Convenience wrapper around pipe_command for the common case
259 * of capturing only stdout.
261 static inline int capture_command(struct child_process *cmd,
265 return pipe_command(cmd, NULL, 0, out, hint, NULL, 0);
269 * The purpose of the following functions is to feed a pipe by running
270 * a function asynchronously and providing output that the caller reads.
272 * It is expected that no synchronization and mutual exclusion between
273 * the caller and the feed function is necessary so that the function
274 * can run in a thread without interfering with the caller.
278 * 1. allocates and clears (memset(&asy, 0, sizeof(asy));) a
279 * struct async variable;
280 * 2. initializes .proc and .data;
281 * 3. calls start_async();
282 * 4. processes communicates with proc through .in and .out;
283 * 5. closes .in and .out;
284 * 6. calls finish_async().
286 * There are serious restrictions on what the asynchronous function can do
287 * because this facility is implemented by a thread in the same address
288 * space on most platforms (when pthreads is available), but by a pipe to
289 * a forked process otherwise:
291 * - It cannot change the program's state (global variables, environment,
292 * etc.) in a way that the caller notices; in other words, .in and .out
293 * are the only communication channels to the caller.
295 * - It must not change the program's state that the caller of the
296 * facility also uses.
302 * The function pointer in .proc has the following signature:
304 * int proc(int in, int out, void *data);
306 * - in, out specifies a set of file descriptors to which the function
307 * must read/write the data that it needs/produces. The function
308 * *must* close these descriptors before it returns. A descriptor
309 * may be -1 if the caller did not configure a descriptor for that
312 * - data is the value that the caller has specified in the .data member
315 * - The return value of the function is 0 on success and non-zero
316 * on failure. If the function indicates failure, finish_async() will
317 * report failure as well.
320 int (*proc)(int in, int out, void *data);
325 * The members .in, .out are used to provide a set of fd's for
326 * communication between the caller and the callee as follows:
328 * - Specify 0 to have no file descriptor passed. The callee will
329 * receive -1 in the corresponding argument.
331 * - Specify < 0 to have a pipe allocated; start_async() replaces
332 * with the pipe FD in the following way:
334 * .in: Returns the writable pipe end into which the caller
335 * writes; the readable end of the pipe becomes the function's
338 * .out: Returns the readable pipe end from which the caller
339 * reads; the writable end of the pipe becomes the function's
342 * The caller of start_async() must close the returned FDs after it
343 * has completed reading from/writing from them.
345 * - Specify a file descriptor > 0 to be used by the function:
347 * .in: The FD must be readable; it becomes the function's in.
348 * .out: The FD must be writable; it becomes the function's out.
350 * The specified FD is closed by start_async(), even if it fails to
353 int in; /* caller writes here and closes it */
354 int out; /* caller reads from here and closes it */
366 * Run a function asynchronously. Takes a pointer to a `struct
367 * async` that specifies the details and returns a set of pipe FDs
368 * for communication with the function. See below for details.
370 int start_async(struct async *async);
373 * Wait for the completion of an asynchronous function that was
374 * started with start_async().
376 int finish_async(struct async *async);
379 int async_with_fork(void);
380 void check_pipe(int err);
383 * This callback should initialize the child process and preload the
384 * error channel if desired. The preloading of is useful if you want to
385 * have a message printed directly before the output of the child process.
386 * pp_cb is the callback cookie as passed to run_processes_parallel.
387 * You can store a child process specific callback cookie in pp_task_cb.
389 * Even after returning 0 to indicate that there are no more processes,
390 * this function will be called again until there are no more running
393 * Return 1 if the next child is ready to run.
394 * Return 0 if there are currently no more tasks to be processed.
395 * To send a signal to other child processes for abortion,
396 * return the negative signal number.
398 typedef int (*get_next_task_fn)(struct child_process *cp,
404 * This callback is called whenever there are problems starting
407 * You must not write to stdout or stderr in this function. Add your
408 * message to the strbuf out instead, which will be printed without
409 * messing up the output of the other parallel processes.
411 * pp_cb is the callback cookie as passed into run_processes_parallel,
412 * pp_task_cb is the callback cookie as passed into get_next_task_fn.
414 * Return 0 to continue the parallel processing. To abort return non zero.
415 * To send a signal to other child processes for abortion, return
416 * the negative signal number.
418 typedef int (*start_failure_fn)(struct strbuf *out,
423 * This callback is called repeatedly on every child process who requests
424 * start_command() to create a pipe by setting child_process.in < 0.
426 * pp_cb is the callback cookie as passed into run_processes_parallel, and
427 * pp_task_cb is the callback cookie as passed into get_next_task_fn.
428 * The contents of 'send' will be read into the pipe and passed to the pipe.
430 * Return nonzero to close the pipe.
432 typedef int (*feed_pipe_fn)(struct strbuf *pipe,
437 * If this callback is provided, instead of collating process output to stderr,
438 * they will be collated into a new pipe. consume_sideband_fn will be called
439 * repeatedly. When output is available on that pipe, it will be contained in
440 * 'output'. But it will be called with an empty 'output' too, to allow for
441 * keepalives or similar operations if necessary.
443 * pp_cb is the callback cookie as passed into run_processes_parallel.
445 * Since this callback is provided with the collated output, no task cookie is
448 typedef void (*consume_sideband_fn)(struct strbuf *output, void *pp_cb);
451 * This callback is called on every child process that finished processing.
453 * You must not write to stdout or stderr in this function. Add your
454 * message to the strbuf out instead, which will be printed without
455 * messing up the output of the other parallel processes.
457 * pp_cb is the callback cookie as passed into run_processes_parallel,
458 * pp_task_cb is the callback cookie as passed into get_next_task_fn.
460 * Return 0 to continue the parallel processing. To abort return non zero.
461 * To send a signal to other child processes for abortion, return
462 * the negative signal number.
464 typedef int (*task_finished_fn)(int result,
470 * Runs up to n processes at the same time. Whenever a process can be
471 * started, the callback get_next_task_fn is called to obtain the data
472 * required to start another child process.
474 * The children started via this function run in parallel. Their output
475 * (both stdout and stderr) is routed to stderr in a manner that output
476 * from different tasks does not interleave.
478 * start_failure_fn and task_finished_fn can be NULL to omit any
481 int run_processes_parallel(int n,
488 int run_processes_parallel_tr2(int n, get_next_task_fn, start_failure_fn,
489 feed_pipe_fn, consume_sideband_fn,
490 task_finished_fn, void *pp_cb,
491 const char *tr2_category, const char *tr2_label);
494 * Convenience function which prepares env_array for a command to be run in a
495 * new repo. This adds all GIT_* environment variables to env_array with the
496 * exception of GIT_CONFIG_PARAMETERS (which cause the corresponding
497 * environment variables to be unset in the subprocess) and adds an environment
498 * variable pointing to new_git_dir. See local_repo_env in cache.h for more
501 void prepare_other_repo_env(struct strvec *env_array, const char *new_git_dir);