Josef Weidendorfer | b1bf95b | 2005-07-31 21:17:43 +0200 | [diff] [blame] | 1 | #ifndef RUN_COMMAND_H |
| 2 | #define RUN_COMMAND_H |
| 3 | |
Nguyễn Thái Ngọc Duy | 10bc232 | 2018-11-03 09:48:38 +0100 | [diff] [blame] | 4 | #include "thread-utils.h" |
Johannes Sixt | 200a76b | 2010-03-06 16:40:42 +0100 | [diff] [blame] | 5 | |
Jeff King | dbbcd44 | 2020-07-28 16:23:39 -0400 | [diff] [blame] | 6 | #include "strvec.h" |
Jeff King | c460c0e | 2014-05-15 04:33:26 -0400 | [diff] [blame] | 7 | |
Heba Waly | 4c4066d | 2019-11-17 21:04:55 +0000 | [diff] [blame] | 8 | /** |
| 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. |
| 12 | * |
| 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. |
| 16 | */ |
| 17 | |
| 18 | |
| 19 | /** |
| 20 | * This describes the arguments, redirections, and environment of a |
| 21 | * command to run in a sub-process. |
| 22 | * |
| 23 | * The caller: |
| 24 | * |
| 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(). |
| 32 | * |
| 33 | * Special forms of redirection are available by setting these members |
| 34 | * to 1: |
| 35 | * |
| 36 | * .no_stdin, .no_stdout, .no_stderr: The respective channel is |
| 37 | * redirected to /dev/null. |
| 38 | * |
| 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 |
| 42 | * redirected. |
| 43 | */ |
Shawn O. Pearce | f100089 | 2007-03-10 03:28:00 -0500 | [diff] [blame] | 44 | struct child_process { |
Heba Waly | 4c4066d | 2019-11-17 21:04:55 +0000 | [diff] [blame] | 45 | |
| 46 | /** |
Ævar Arnfjörð Bjarmason | d3b2159 | 2021-11-25 23:52:22 +0100 | [diff] [blame] | 47 | * The .args is a `struct strvec', use that API to manipulate |
| 48 | * it, e.g. strvec_pushv() to add an existing "const char **" |
| 49 | * vector. |
Heba Waly | 4c4066d | 2019-11-17 21:04:55 +0000 | [diff] [blame] | 50 | * |
Ævar Arnfjörð Bjarmason | d3b2159 | 2021-11-25 23:52:22 +0100 | [diff] [blame] | 51 | * If the command to run is a git command, set the first |
| 52 | * element in the strvec to the command name without the |
| 53 | * 'git-' prefix and set .git_cmd = 1. |
| 54 | * |
| 55 | * The memory in .args will be cleaned up automatically during |
Heba Waly | 4c4066d | 2019-11-17 21:04:55 +0000 | [diff] [blame] | 56 | * `finish_command` (or during `start_command` when it is unsuccessful). |
Heba Waly | 4c4066d | 2019-11-17 21:04:55 +0000 | [diff] [blame] | 57 | */ |
Jeff King | c972bf4 | 2020-07-28 16:25:12 -0400 | [diff] [blame] | 58 | struct strvec args; |
Ævar Arnfjörð Bjarmason | c7c4bde | 2021-11-25 23:52:24 +0100 | [diff] [blame] | 59 | |
| 60 | /** |
| 61 | * Like .args the .env_array is a `struct strvec'. |
| 62 | * |
| 63 | * To modify the environment of the sub-process, specify an array of |
| 64 | * environment settings. Each string in the array manipulates the |
| 65 | * environment. |
| 66 | * |
| 67 | * - If the string is of the form "VAR=value", i.e. it contains '=' |
| 68 | * the variable is added to the child process's environment. |
| 69 | * |
| 70 | * - If the string does not contain '=', it names an environment |
| 71 | * variable that will be removed from the child process's environment. |
| 72 | * |
| 73 | * The memory in .env_array will be cleaned up automatically during |
| 74 | * `finish_command` (or during `start_command` when it is unsuccessful). |
| 75 | */ |
Jeff King | c972bf4 | 2020-07-28 16:25:12 -0400 | [diff] [blame] | 76 | struct strvec env_array; |
Shawn O. Pearce | ebcb5d1 | 2007-03-10 03:28:05 -0500 | [diff] [blame] | 77 | pid_t pid; |
Jeff Hostetler | ee4512e | 2019-02-22 14:25:01 -0800 | [diff] [blame] | 78 | |
| 79 | int trace2_child_id; |
| 80 | uint64_t trace2_child_us_start; |
| 81 | const char *trace2_child_class; |
| 82 | const char *trace2_hook_name; |
| 83 | |
Johannes Sixt | c20181e | 2008-02-21 23:42:56 +0100 | [diff] [blame] | 84 | /* |
| 85 | * Using .in, .out, .err: |
Heba Waly | 4c4066d | 2019-11-17 21:04:55 +0000 | [diff] [blame] | 86 | * - Specify 0 for no redirections. No new file descriptor is allocated. |
| 87 | * (child inherits stdin, stdout, stderr from parent). |
Johannes Sixt | c20181e | 2008-02-21 23:42:56 +0100 | [diff] [blame] | 88 | * - Specify -1 to have a pipe allocated as follows: |
| 89 | * .in: returns the writable pipe end; parent writes to it, |
| 90 | * the readable pipe end becomes child's stdin |
| 91 | * .out, .err: returns the readable pipe end; parent reads from |
| 92 | * it, the writable pipe end becomes child's stdout/stderr |
| 93 | * The caller of start_command() must close the returned FDs |
| 94 | * after it has completed reading from/writing to it! |
| 95 | * - Specify > 0 to set a channel to a particular FD as follows: |
| 96 | * .in: a readable FD, becomes child's stdin |
| 97 | * .out: a writable FD, becomes child's stdout/stderr |
Shawn O. Pearce | 4f41b61 | 2010-02-05 12:57:37 -0800 | [diff] [blame] | 98 | * .err: a writable FD, becomes child's stderr |
Johannes Sixt | c20181e | 2008-02-21 23:42:56 +0100 | [diff] [blame] | 99 | * The specified FD is closed by start_command(), even in case |
| 100 | * of errors! |
| 101 | */ |
Shawn O. Pearce | 4919bf0 | 2007-03-10 03:28:08 -0500 | [diff] [blame] | 102 | int in; |
Shawn O. Pearce | f4bba25 | 2007-03-12 14:37:45 -0400 | [diff] [blame] | 103 | int out; |
Johannes Sixt | f3b33f1 | 2007-10-19 21:47:58 +0200 | [diff] [blame] | 104 | int err; |
Heba Waly | 4c4066d | 2019-11-17 21:04:55 +0000 | [diff] [blame] | 105 | |
| 106 | /** |
| 107 | * To specify a new initial working directory for the sub-process, |
| 108 | * specify it in the .dir member. |
| 109 | */ |
Alex Riesen | 1568fea | 2007-05-22 23:48:23 +0200 | [diff] [blame] | 110 | const char *dir; |
Heba Waly | 4c4066d | 2019-11-17 21:04:55 +0000 | [diff] [blame] | 111 | |
Shawn O. Pearce | f100089 | 2007-03-10 03:28:00 -0500 | [diff] [blame] | 112 | unsigned no_stdin:1; |
Shawn O. Pearce | e4507ae | 2007-03-12 14:37:55 -0400 | [diff] [blame] | 113 | unsigned no_stdout:1; |
Shawn O. Pearce | b73a439 | 2007-11-11 02:29:37 -0500 | [diff] [blame] | 114 | unsigned no_stderr:1; |
Jeff King | 539052f | 2020-02-20 21:56:37 -0500 | [diff] [blame] | 115 | unsigned git_cmd:1; /* if this is to be git sub-command */ |
Heba Waly | 4c4066d | 2019-11-17 21:04:55 +0000 | [diff] [blame] | 116 | |
| 117 | /** |
| 118 | * If the program cannot be found, the functions return -1 and set |
| 119 | * errno to ENOENT. Normally, an error message is printed, but if |
| 120 | * .silent_exec_failure is set to 1, no message is printed for this |
| 121 | * special error condition. |
| 122 | */ |
Johannes Sixt | c024beb | 2009-07-04 21:26:42 +0200 | [diff] [blame] | 123 | unsigned silent_exec_failure:1; |
Heba Waly | 4c4066d | 2019-11-17 21:04:55 +0000 | [diff] [blame] | 124 | |
Jeff King | ee4e225 | 2021-01-22 16:03:33 -0500 | [diff] [blame] | 125 | /** |
| 126 | * Run the command from argv[0] using a shell (but note that we may |
| 127 | * still optimize out the shell call if the command contains no |
| 128 | * metacharacters). Note that further arguments to the command in |
| 129 | * argv[1], etc, do not need to be shell-quoted. |
| 130 | */ |
Jeff King | 8dba1e6 | 2009-12-30 05:53:16 -0500 | [diff] [blame] | 131 | unsigned use_shell:1; |
Jeff King | ee4e225 | 2021-01-22 16:03:33 -0500 | [diff] [blame] | 132 | |
Johannes Schindelin | 28d04e1 | 2021-09-09 09:47:06 +0000 | [diff] [blame] | 133 | /** |
| 134 | * Release any open file handles to the object store before running |
| 135 | * the command; This is necessary e.g. when the spawned process may |
| 136 | * want to repack because that would delete `.pack` files (and on |
| 137 | * Windows, you cannot delete files that are still in use). |
| 138 | */ |
| 139 | unsigned close_object_store:1; |
| 140 | |
Jeff King | ee4e225 | 2021-01-22 16:03:33 -0500 | [diff] [blame] | 141 | unsigned stdout_to_stderr:1; |
Jeff King | afe19ff | 2012-01-07 12:42:43 +0100 | [diff] [blame] | 142 | unsigned clean_on_exit:1; |
Jeff King | 46df690 | 2017-01-06 20:22:23 -0500 | [diff] [blame] | 143 | unsigned wait_after_clean:1; |
Lars Schneider | ac2fbaa | 2016-10-16 16:20:28 -0700 | [diff] [blame] | 144 | void (*clean_on_exit_handler)(struct child_process *process); |
| 145 | void *clean_on_exit_handler_cbdata; |
Shawn O. Pearce | f100089 | 2007-03-10 03:28:00 -0500 | [diff] [blame] | 146 | }; |
| 147 | |
Ævar Arnfjörð Bjarmason | 3d97ea4 | 2021-07-01 12:51:25 +0200 | [diff] [blame] | 148 | #define CHILD_PROCESS_INIT { \ |
| 149 | .args = STRVEC_INIT, \ |
| 150 | .env_array = STRVEC_INIT, \ |
| 151 | } |
Heba Waly | 4c4066d | 2019-11-17 21:04:55 +0000 | [diff] [blame] | 152 | |
| 153 | /** |
| 154 | * The functions: child_process_init, start_command, finish_command, |
| 155 | * run_command, run_command_v_opt, run_command_v_opt_cd_env, child_process_clear |
| 156 | * do the following: |
| 157 | * |
| 158 | * - If a system call failed, errno is set and -1 is returned. A diagnostic |
| 159 | * is printed. |
| 160 | * |
| 161 | * - If the program was not found, then -1 is returned and errno is set to |
| 162 | * ENOENT; a diagnostic is printed only if .silent_exec_failure is 0. |
| 163 | * |
| 164 | * - Otherwise, the program is run. If it terminates regularly, its exit |
| 165 | * code is returned. No diagnostic is printed, even if the exit code is |
| 166 | * non-zero. |
| 167 | * |
| 168 | * - If the program terminated due to a signal, then the return value is the |
| 169 | * signal number + 128, ie. the same value that a POSIX shell's $? would |
| 170 | * report. A diagnostic is printed. |
| 171 | * |
| 172 | */ |
| 173 | |
| 174 | /** |
| 175 | * Initialize a struct child_process variable. |
| 176 | */ |
René Scharfe | 483bbd4 | 2014-08-19 21:10:48 +0200 | [diff] [blame] | 177 | void child_process_init(struct child_process *); |
Heba Waly | 4c4066d | 2019-11-17 21:04:55 +0000 | [diff] [blame] | 178 | |
| 179 | /** |
| 180 | * Release the memory associated with the struct child_process. |
| 181 | * Most users of the run-command API don't need to call this |
| 182 | * function explicitly because `start_command` invokes it on |
| 183 | * failure and `finish_command` calls it automatically already. |
| 184 | */ |
René Scharfe | 2d71608 | 2015-10-24 14:11:27 +0200 | [diff] [blame] | 185 | void child_process_clear(struct child_process *); |
Heba Waly | 4c4066d | 2019-11-17 21:04:55 +0000 | [diff] [blame] | 186 | |
Denton Liu | 5545442 | 2019-04-29 04:28:14 -0400 | [diff] [blame] | 187 | int is_executable(const char *name); |
René Scharfe | d318027 | 2014-08-19 21:09:35 +0200 | [diff] [blame] | 188 | |
Heba Waly | 4c4066d | 2019-11-17 21:04:55 +0000 | [diff] [blame] | 189 | /** |
Pranit Bauva | 3f36e6f | 2021-09-13 19:39:01 +0200 | [diff] [blame] | 190 | * Check if the command exists on $PATH. This emulates the path search that |
| 191 | * execvp would perform, without actually executing the command so it |
| 192 | * can be used before fork() to prepare to run a command using |
| 193 | * execve() or after execvp() to diagnose why it failed. |
| 194 | * |
| 195 | * The caller should ensure that command contains no directory separators. |
| 196 | * |
| 197 | * Returns 1 if it is found in $PATH or 0 if the command could not be found. |
| 198 | */ |
| 199 | int exists_in_PATH(const char *command); |
| 200 | |
| 201 | /** |
Heba Waly | 4c4066d | 2019-11-17 21:04:55 +0000 | [diff] [blame] | 202 | * Start a sub-process. Takes a pointer to a `struct child_process` |
| 203 | * that specifies the details and returns pipe FDs (if requested). |
| 204 | * See below for details. |
| 205 | */ |
Shawn O. Pearce | ebcb5d1 | 2007-03-10 03:28:05 -0500 | [diff] [blame] | 206 | int start_command(struct child_process *); |
Heba Waly | 4c4066d | 2019-11-17 21:04:55 +0000 | [diff] [blame] | 207 | |
| 208 | /** |
| 209 | * Wait for the completion of a sub-process that was started with |
| 210 | * start_command(). |
| 211 | */ |
Shawn O. Pearce | ebcb5d1 | 2007-03-10 03:28:05 -0500 | [diff] [blame] | 212 | int finish_command(struct child_process *); |
Heba Waly | 4c4066d | 2019-11-17 21:04:55 +0000 | [diff] [blame] | 213 | |
Takashi Iwai | 507d780 | 2015-09-04 11:35:57 +0200 | [diff] [blame] | 214 | int finish_command_in_signal(struct child_process *); |
Heba Waly | 4c4066d | 2019-11-17 21:04:55 +0000 | [diff] [blame] | 215 | |
| 216 | /** |
| 217 | * A convenience function that encapsulates a sequence of |
| 218 | * start_command() followed by finish_command(). Takes a pointer |
| 219 | * to a `struct child_process` that specifies the details. |
| 220 | */ |
Shawn O. Pearce | f100089 | 2007-03-10 03:28:00 -0500 | [diff] [blame] | 221 | int run_command(struct child_process *); |
| 222 | |
Junio C Hamano | 850b6ed | 2020-05-06 13:18:29 -0700 | [diff] [blame] | 223 | /* |
| 224 | * Trigger an auto-gc |
| 225 | */ |
Derrick Stolee | a95ce12 | 2020-09-17 18:11:44 +0000 | [diff] [blame] | 226 | int run_auto_maintenance(int quiet); |
Junio C Hamano | 850b6ed | 2020-05-06 13:18:29 -0700 | [diff] [blame] | 227 | |
Johannes Schindelin | 3322a9d | 2021-09-09 09:47:05 +0000 | [diff] [blame] | 228 | #define RUN_COMMAND_NO_STDIN (1<<0) |
| 229 | #define RUN_GIT_CMD (1<<1) |
| 230 | #define RUN_COMMAND_STDOUT_TO_STDERR (1<<2) |
| 231 | #define RUN_SILENT_EXEC_FAILURE (1<<3) |
| 232 | #define RUN_USING_SHELL (1<<4) |
| 233 | #define RUN_CLEAN_ON_EXIT (1<<5) |
| 234 | #define RUN_WAIT_AFTER_CLEAN (1<<6) |
Johannes Schindelin | 28d04e1 | 2021-09-09 09:47:06 +0000 | [diff] [blame] | 235 | #define RUN_CLOSE_OBJECT_STORE (1<<7) |
Heba Waly | 4c4066d | 2019-11-17 21:04:55 +0000 | [diff] [blame] | 236 | |
| 237 | /** |
| 238 | * Convenience functions that encapsulate a sequence of |
| 239 | * start_command() followed by finish_command(). The argument argv |
| 240 | * specifies the program and its arguments. The argument opt is zero |
| 241 | * or more of the flags `RUN_COMMAND_NO_STDIN`, `RUN_GIT_CMD`, |
| 242 | * `RUN_COMMAND_STDOUT_TO_STDERR`, or `RUN_SILENT_EXEC_FAILURE` |
| 243 | * that correspond to the members .no_stdin, .git_cmd, |
| 244 | * .stdout_to_stderr, .silent_exec_failure of `struct child_process`. |
| 245 | * The argument dir corresponds the member .dir. The argument env |
| 246 | * corresponds to the member .env. |
| 247 | */ |
Shawn O. Pearce | 9b0b509 | 2006-12-30 21:55:15 -0500 | [diff] [blame] | 248 | int run_command_v_opt(const char **argv, int opt); |
Jeff Hostetler | ee4512e | 2019-02-22 14:25:01 -0800 | [diff] [blame] | 249 | int run_command_v_opt_tr2(const char **argv, int opt, const char *tr2_class); |
Alex Riesen | 3427b37 | 2007-05-23 22:21:39 +0200 | [diff] [blame] | 250 | /* |
| 251 | * env (the environment) is to be formatted like environ: "VAR=VALUE". |
| 252 | * To unset an environment variable use just "VAR". |
| 253 | */ |
Alex Riesen | ee49314 | 2007-05-22 23:48:47 +0200 | [diff] [blame] | 254 | int run_command_v_opt_cd_env(const char **argv, int opt, const char *dir, const char *const *env); |
Jeff Hostetler | ee4512e | 2019-02-22 14:25:01 -0800 | [diff] [blame] | 255 | int run_command_v_opt_cd_env_tr2(const char **argv, int opt, const char *dir, |
| 256 | const char *const *env, const char *tr2_class); |
Josef Weidendorfer | b1bf95b | 2005-07-31 21:17:43 +0200 | [diff] [blame] | 257 | |
Jeff King | 911ec99 | 2015-03-22 23:53:43 -0400 | [diff] [blame] | 258 | /** |
Jeff King | 96335bc | 2016-06-17 19:38:47 -0400 | [diff] [blame] | 259 | * Execute the given command, sending "in" to its stdin, and capturing its |
| 260 | * stdout and stderr in the "out" and "err" strbufs. Any of the three may |
| 261 | * be NULL to skip processing. |
| 262 | * |
Jeff King | 911ec99 | 2015-03-22 23:53:43 -0400 | [diff] [blame] | 263 | * Returns -1 if starting the command fails or reading fails, and otherwise |
Jeff King | 96335bc | 2016-06-17 19:38:47 -0400 | [diff] [blame] | 264 | * returns the exit code of the command. Any output collected in the |
| 265 | * buffers is kept even if the command returns a non-zero exit. The hint fields |
| 266 | * gives starting sizes for the strbuf allocations. |
Jeff King | 911ec99 | 2015-03-22 23:53:43 -0400 | [diff] [blame] | 267 | * |
| 268 | * The fields of "cmd" should be set up as they would for a normal run_command |
Jeff King | 96335bc | 2016-06-17 19:38:47 -0400 | [diff] [blame] | 269 | * invocation. But note that there is no need to set the in, out, or err |
| 270 | * fields; pipe_command handles that automatically. |
Jeff King | 911ec99 | 2015-03-22 23:53:43 -0400 | [diff] [blame] | 271 | */ |
Jeff King | 96335bc | 2016-06-17 19:38:47 -0400 | [diff] [blame] | 272 | int pipe_command(struct child_process *cmd, |
| 273 | const char *in, size_t in_len, |
| 274 | struct strbuf *out, size_t out_hint, |
| 275 | struct strbuf *err, size_t err_hint); |
| 276 | |
| 277 | /** |
| 278 | * Convenience wrapper around pipe_command for the common case |
| 279 | * of capturing only stdout. |
| 280 | */ |
| 281 | static inline int capture_command(struct child_process *cmd, |
| 282 | struct strbuf *out, |
| 283 | size_t hint) |
| 284 | { |
| 285 | return pipe_command(cmd, NULL, 0, out, hint, NULL, 0); |
| 286 | } |
Jeff King | 911ec99 | 2015-03-22 23:53:43 -0400 | [diff] [blame] | 287 | |
Johannes Sixt | 2d22c20 | 2007-10-19 21:48:00 +0200 | [diff] [blame] | 288 | /* |
| 289 | * The purpose of the following functions is to feed a pipe by running |
| 290 | * a function asynchronously and providing output that the caller reads. |
| 291 | * |
| 292 | * It is expected that no synchronization and mutual exclusion between |
| 293 | * the caller and the feed function is necessary so that the function |
| 294 | * can run in a thread without interfering with the caller. |
Heba Waly | 4c4066d | 2019-11-17 21:04:55 +0000 | [diff] [blame] | 295 | * |
| 296 | * The caller: |
| 297 | * |
| 298 | * 1. allocates and clears (memset(&asy, 0, sizeof(asy));) a |
| 299 | * struct async variable; |
| 300 | * 2. initializes .proc and .data; |
| 301 | * 3. calls start_async(); |
| 302 | * 4. processes communicates with proc through .in and .out; |
| 303 | * 5. closes .in and .out; |
| 304 | * 6. calls finish_async(). |
| 305 | * |
| 306 | * There are serious restrictions on what the asynchronous function can do |
| 307 | * because this facility is implemented by a thread in the same address |
| 308 | * space on most platforms (when pthreads is available), but by a pipe to |
| 309 | * a forked process otherwise: |
| 310 | * |
| 311 | * - It cannot change the program's state (global variables, environment, |
| 312 | * etc.) in a way that the caller notices; in other words, .in and .out |
| 313 | * are the only communication channels to the caller. |
| 314 | * |
| 315 | * - It must not change the program's state that the caller of the |
| 316 | * facility also uses. |
| 317 | * |
Johannes Sixt | 2d22c20 | 2007-10-19 21:48:00 +0200 | [diff] [blame] | 318 | */ |
| 319 | struct async { |
Heba Waly | 4c4066d | 2019-11-17 21:04:55 +0000 | [diff] [blame] | 320 | |
| 321 | /** |
| 322 | * The function pointer in .proc has the following signature: |
| 323 | * |
| 324 | * int proc(int in, int out, void *data); |
| 325 | * |
| 326 | * - in, out specifies a set of file descriptors to which the function |
| 327 | * must read/write the data that it needs/produces. The function |
| 328 | * *must* close these descriptors before it returns. A descriptor |
| 329 | * may be -1 if the caller did not configure a descriptor for that |
| 330 | * direction. |
| 331 | * |
| 332 | * - data is the value that the caller has specified in the .data member |
| 333 | * of struct async. |
| 334 | * |
| 335 | * - The return value of the function is 0 on success and non-zero |
| 336 | * on failure. If the function indicates failure, finish_async() will |
| 337 | * report failure as well. |
| 338 | * |
Johannes Sixt | 2d22c20 | 2007-10-19 21:48:00 +0200 | [diff] [blame] | 339 | */ |
Erik Faye-Lund | ae6a560 | 2010-02-05 12:57:38 -0800 | [diff] [blame] | 340 | int (*proc)(int in, int out, void *data); |
Heba Waly | 4c4066d | 2019-11-17 21:04:55 +0000 | [diff] [blame] | 341 | |
Johannes Sixt | 2d22c20 | 2007-10-19 21:48:00 +0200 | [diff] [blame] | 342 | void *data; |
Heba Waly | 4c4066d | 2019-11-17 21:04:55 +0000 | [diff] [blame] | 343 | |
| 344 | /** |
| 345 | * The members .in, .out are used to provide a set of fd's for |
| 346 | * communication between the caller and the callee as follows: |
| 347 | * |
| 348 | * - Specify 0 to have no file descriptor passed. The callee will |
| 349 | * receive -1 in the corresponding argument. |
| 350 | * |
| 351 | * - Specify < 0 to have a pipe allocated; start_async() replaces |
| 352 | * with the pipe FD in the following way: |
| 353 | * |
| 354 | * .in: Returns the writable pipe end into which the caller |
| 355 | * writes; the readable end of the pipe becomes the function's |
| 356 | * in argument. |
| 357 | * |
| 358 | * .out: Returns the readable pipe end from which the caller |
| 359 | * reads; the writable end of the pipe becomes the function's |
| 360 | * out argument. |
| 361 | * |
| 362 | * The caller of start_async() must close the returned FDs after it |
| 363 | * has completed reading from/writing from them. |
| 364 | * |
| 365 | * - Specify a file descriptor > 0 to be used by the function: |
| 366 | * |
| 367 | * .in: The FD must be readable; it becomes the function's in. |
| 368 | * .out: The FD must be writable; it becomes the function's out. |
| 369 | * |
| 370 | * The specified FD is closed by start_async(), even if it fails to |
| 371 | * run the function. |
| 372 | */ |
Erik Faye-Lund | ae6a560 | 2010-02-05 12:57:38 -0800 | [diff] [blame] | 373 | int in; /* caller writes here and closes it */ |
Johannes Sixt | 2d22c20 | 2007-10-19 21:48:00 +0200 | [diff] [blame] | 374 | int out; /* caller reads from here and closes it */ |
Johannes Sixt | f6b6098 | 2010-03-09 21:00:36 +0100 | [diff] [blame] | 375 | #ifdef NO_PTHREADS |
Johannes Sixt | 2d22c20 | 2007-10-19 21:48:00 +0200 | [diff] [blame] | 376 | pid_t pid; |
Johannes Sixt | 618ebe9 | 2007-12-08 22:19:14 +0100 | [diff] [blame] | 377 | #else |
Johannes Sixt | 200a76b | 2010-03-06 16:40:42 +0100 | [diff] [blame] | 378 | pthread_t tid; |
Erik Faye-Lund | ae6a560 | 2010-02-05 12:57:38 -0800 | [diff] [blame] | 379 | int proc_in; |
| 380 | int proc_out; |
Johannes Sixt | 618ebe9 | 2007-12-08 22:19:14 +0100 | [diff] [blame] | 381 | #endif |
Jeff King | c792d7b | 2016-04-19 18:49:41 -0400 | [diff] [blame] | 382 | int isolate_sigpipe; |
Johannes Sixt | 2d22c20 | 2007-10-19 21:48:00 +0200 | [diff] [blame] | 383 | }; |
| 384 | |
Heba Waly | 4c4066d | 2019-11-17 21:04:55 +0000 | [diff] [blame] | 385 | /** |
| 386 | * Run a function asynchronously. Takes a pointer to a `struct |
| 387 | * async` that specifies the details and returns a set of pipe FDs |
| 388 | * for communication with the function. See below for details. |
| 389 | */ |
Johannes Sixt | 2d22c20 | 2007-10-19 21:48:00 +0200 | [diff] [blame] | 390 | int start_async(struct async *async); |
Heba Waly | 4c4066d | 2019-11-17 21:04:55 +0000 | [diff] [blame] | 391 | |
| 392 | /** |
| 393 | * Wait for the completion of an asynchronous function that was |
| 394 | * started with start_async(). |
| 395 | */ |
Johannes Sixt | 2d22c20 | 2007-10-19 21:48:00 +0200 | [diff] [blame] | 396 | int finish_async(struct async *async); |
Heba Waly | 4c4066d | 2019-11-17 21:04:55 +0000 | [diff] [blame] | 397 | |
Jeff King | 661a8cf | 2015-09-01 16:22:43 -0400 | [diff] [blame] | 398 | int in_async(void); |
Nguyễn Thái Ngọc Duy | c0e40a2 | 2018-11-03 09:48:39 +0100 | [diff] [blame] | 399 | int async_with_fork(void); |
Lars Schneider | b992fe1 | 2016-10-16 16:20:27 -0700 | [diff] [blame] | 400 | void check_pipe(int err); |
Johannes Sixt | 2d22c20 | 2007-10-19 21:48:00 +0200 | [diff] [blame] | 401 | |
Stefan Beller | c553c72 | 2015-12-15 16:04:10 -0800 | [diff] [blame] | 402 | /** |
| 403 | * This callback should initialize the child process and preload the |
| 404 | * error channel if desired. The preloading of is useful if you want to |
| 405 | * have a message printed directly before the output of the child process. |
| 406 | * pp_cb is the callback cookie as passed to run_processes_parallel. |
| 407 | * You can store a child process specific callback cookie in pp_task_cb. |
| 408 | * |
| 409 | * Even after returning 0 to indicate that there are no more processes, |
| 410 | * this function will be called again until there are no more running |
| 411 | * child processes. |
| 412 | * |
| 413 | * Return 1 if the next child is ready to run. |
| 414 | * Return 0 if there are currently no more tasks to be processed. |
| 415 | * To send a signal to other child processes for abortion, |
| 416 | * return the negative signal number. |
| 417 | */ |
| 418 | typedef int (*get_next_task_fn)(struct child_process *cp, |
Stefan Beller | aa71049 | 2016-02-29 18:07:16 -0800 | [diff] [blame] | 419 | struct strbuf *out, |
Stefan Beller | c553c72 | 2015-12-15 16:04:10 -0800 | [diff] [blame] | 420 | void *pp_cb, |
| 421 | void **pp_task_cb); |
| 422 | |
| 423 | /** |
| 424 | * This callback is called whenever there are problems starting |
| 425 | * a new process. |
| 426 | * |
| 427 | * You must not write to stdout or stderr in this function. Add your |
Stefan Beller | aa71049 | 2016-02-29 18:07:16 -0800 | [diff] [blame] | 428 | * message to the strbuf out instead, which will be printed without |
Stefan Beller | c553c72 | 2015-12-15 16:04:10 -0800 | [diff] [blame] | 429 | * messing up the output of the other parallel processes. |
| 430 | * |
| 431 | * pp_cb is the callback cookie as passed into run_processes_parallel, |
| 432 | * pp_task_cb is the callback cookie as passed into get_next_task_fn. |
| 433 | * |
| 434 | * Return 0 to continue the parallel processing. To abort return non zero. |
| 435 | * To send a signal to other child processes for abortion, return |
| 436 | * the negative signal number. |
| 437 | */ |
Stefan Beller | aa71049 | 2016-02-29 18:07:16 -0800 | [diff] [blame] | 438 | typedef int (*start_failure_fn)(struct strbuf *out, |
Stefan Beller | c553c72 | 2015-12-15 16:04:10 -0800 | [diff] [blame] | 439 | void *pp_cb, |
| 440 | void *pp_task_cb); |
| 441 | |
| 442 | /** |
| 443 | * This callback is called on every child process that finished processing. |
| 444 | * |
| 445 | * You must not write to stdout or stderr in this function. Add your |
Stefan Beller | aa71049 | 2016-02-29 18:07:16 -0800 | [diff] [blame] | 446 | * message to the strbuf out instead, which will be printed without |
Stefan Beller | c553c72 | 2015-12-15 16:04:10 -0800 | [diff] [blame] | 447 | * messing up the output of the other parallel processes. |
| 448 | * |
| 449 | * pp_cb is the callback cookie as passed into run_processes_parallel, |
| 450 | * pp_task_cb is the callback cookie as passed into get_next_task_fn. |
| 451 | * |
| 452 | * Return 0 to continue the parallel processing. To abort return non zero. |
| 453 | * To send a signal to other child processes for abortion, return |
| 454 | * the negative signal number. |
| 455 | */ |
| 456 | typedef int (*task_finished_fn)(int result, |
Stefan Beller | aa71049 | 2016-02-29 18:07:16 -0800 | [diff] [blame] | 457 | struct strbuf *out, |
Stefan Beller | c553c72 | 2015-12-15 16:04:10 -0800 | [diff] [blame] | 458 | void *pp_cb, |
| 459 | void *pp_task_cb); |
| 460 | |
| 461 | /** |
| 462 | * Runs up to n processes at the same time. Whenever a process can be |
| 463 | * started, the callback get_next_task_fn is called to obtain the data |
| 464 | * required to start another child process. |
| 465 | * |
| 466 | * The children started via this function run in parallel. Their output |
| 467 | * (both stdout and stderr) is routed to stderr in a manner that output |
| 468 | * from different tasks does not interleave. |
| 469 | * |
Stefan Beller | 2a73b3d | 2016-02-29 13:57:06 -0800 | [diff] [blame] | 470 | * start_failure_fn and task_finished_fn can be NULL to omit any |
| 471 | * special handling. |
Stefan Beller | c553c72 | 2015-12-15 16:04:10 -0800 | [diff] [blame] | 472 | */ |
| 473 | int run_processes_parallel(int n, |
| 474 | get_next_task_fn, |
| 475 | start_failure_fn, |
| 476 | task_finished_fn, |
| 477 | void *pp_cb); |
Jeff Hostetler | ee4512e | 2019-02-22 14:25:01 -0800 | [diff] [blame] | 478 | int run_processes_parallel_tr2(int n, get_next_task_fn, start_failure_fn, |
| 479 | task_finished_fn, void *pp_cb, |
| 480 | const char *tr2_category, const char *tr2_label); |
Stefan Beller | c553c72 | 2015-12-15 16:04:10 -0800 | [diff] [blame] | 481 | |
Jonathan Tan | d1fa943 | 2021-06-17 10:13:25 -0700 | [diff] [blame] | 482 | /** |
| 483 | * Convenience function which prepares env_array for a command to be run in a |
| 484 | * new repo. This adds all GIT_* environment variables to env_array with the |
| 485 | * exception of GIT_CONFIG_PARAMETERS and GIT_CONFIG_COUNT (which cause the |
| 486 | * corresponding environment variables to be unset in the subprocess) and adds |
| 487 | * an environment variable pointing to new_git_dir. See local_repo_env in |
| 488 | * cache.h for more information. |
| 489 | */ |
| 490 | void prepare_other_repo_env(struct strvec *env_array, const char *new_git_dir); |
| 491 | |
Jeff Hostetler | fdb1322 | 2021-09-20 15:36:17 +0000 | [diff] [blame] | 492 | /** |
| 493 | * Possible return values for start_bg_command(). |
| 494 | */ |
| 495 | enum start_bg_result { |
| 496 | /* child process is "ready" */ |
| 497 | SBGR_READY = 0, |
| 498 | |
| 499 | /* child process could not be started */ |
| 500 | SBGR_ERROR, |
| 501 | |
| 502 | /* callback error when testing for "ready" */ |
| 503 | SBGR_CB_ERROR, |
| 504 | |
| 505 | /* timeout expired waiting for child to become "ready" */ |
| 506 | SBGR_TIMEOUT, |
| 507 | |
| 508 | /* child process exited or was signalled before becomming "ready" */ |
| 509 | SBGR_DIED, |
| 510 | }; |
| 511 | |
| 512 | /** |
| 513 | * Callback used by start_bg_command() to ask whether the |
| 514 | * child process is ready or needs more time to become "ready". |
| 515 | * |
| 516 | * The callback will receive the cmd and cb_data arguments given to |
| 517 | * start_bg_command(). |
| 518 | * |
| 519 | * Returns 1 is child needs more time (subject to the requested timeout). |
| 520 | * Returns 0 if child is "ready". |
| 521 | * Returns -1 on any error and cause start_bg_command() to also error out. |
| 522 | */ |
| 523 | typedef int(start_bg_wait_cb)(const struct child_process *cmd, void *cb_data); |
| 524 | |
| 525 | /** |
| 526 | * Start a command in the background. Wait long enough for the child |
| 527 | * to become "ready" (as defined by the provided callback). Capture |
| 528 | * immediate errors (like failure to start) and any immediate exit |
| 529 | * status (such as a shutdown/signal before the child became "ready") |
| 530 | * and return this like start_command(). |
| 531 | * |
| 532 | * We run a custom wait loop using the provided callback to wait for |
| 533 | * the child to start and become "ready". This is limited by the given |
| 534 | * timeout value. |
| 535 | * |
| 536 | * If the child does successfully start and become "ready", we orphan |
| 537 | * it into the background. |
| 538 | * |
| 539 | * The caller must not call finish_command(). |
| 540 | * |
| 541 | * The opaque cb_data argument will be forwarded to the callback for |
| 542 | * any instance data that it might require. This may be NULL. |
| 543 | */ |
| 544 | enum start_bg_result start_bg_command(struct child_process *cmd, |
| 545 | start_bg_wait_cb *wait_cb, |
| 546 | void *cb_data, |
| 547 | unsigned int timeout_sec); |
| 548 | |
Josef Weidendorfer | b1bf95b | 2005-07-31 21:17:43 +0200 | [diff] [blame] | 549 | #endif |