~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/tools/lib/subcmd/run-command.h

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0 */
  2 #ifndef __SUBCMD_RUN_COMMAND_H
  3 #define __SUBCMD_RUN_COMMAND_H
  4 
  5 #include <unistd.h>
  6 
  7 enum {
  8         ERR_RUN_COMMAND_FORK = 10000,
  9         ERR_RUN_COMMAND_EXEC,
 10         ERR_RUN_COMMAND_PIPE,
 11         ERR_RUN_COMMAND_WAITPID,
 12         ERR_RUN_COMMAND_WAITPID_WRONG_PID,
 13         ERR_RUN_COMMAND_WAITPID_SIGNAL,
 14         ERR_RUN_COMMAND_WAITPID_NOEXIT,
 15 };
 16 #define IS_RUN_COMMAND_ERR(x) (-(x) >= ERR_RUN_COMMAND_FORK)
 17 
 18 struct child_process {
 19         const char **argv;
 20         pid_t pid;
 21         /*
 22          * Using .in, .out, .err:
 23          * - Specify 0 for no redirections (child inherits stdin, stdout,
 24          *   stderr from parent).
 25          * - Specify -1 to have a pipe allocated as follows:
 26          *     .in: returns the writable pipe end; parent writes to it,
 27          *          the readable pipe end becomes child's stdin
 28          *     .out, .err: returns the readable pipe end; parent reads from
 29          *          it, the writable pipe end becomes child's stdout/stderr
 30          *   The caller of start_command() must close the returned FDs
 31          *   after it has completed reading from/writing to it!
 32          * - Specify > 0 to set a channel to a particular FD as follows:
 33          *     .in: a readable FD, becomes child's stdin
 34          *     .out: a writable FD, becomes child's stdout/stderr
 35          *     .err > 0 not supported
 36          *   The specified FD is closed by start_command(), even in case
 37          *   of errors!
 38          */
 39         int in;
 40         int out;
 41         int err;
 42         const char *dir;
 43         const char *const *env;
 44         int finish_result;
 45         unsigned no_stdin:1;
 46         unsigned no_stdout:1;
 47         unsigned no_stderr:1;
 48         unsigned exec_cmd:1; /* if this is to be external sub-command */
 49         unsigned stdout_to_stderr:1;
 50         unsigned finished:1;
 51         void (*preexec_cb)(void);
 52          /* If set, call function in child rather than doing an exec. */
 53         int (*no_exec_cmd)(struct child_process *process);
 54 };
 55 
 56 int start_command(struct child_process *);
 57 int check_if_command_finished(struct child_process *);
 58 int finish_command(struct child_process *);
 59 int run_command(struct child_process *);
 60 
 61 #define RUN_COMMAND_NO_STDIN 1
 62 #define RUN_EXEC_CMD         2  /*If this is to be external sub-command */
 63 #define RUN_COMMAND_STDOUT_TO_STDERR 4
 64 int run_command_v_opt(const char **argv, int opt);
 65 
 66 #endif /* __SUBCMD_RUN_COMMAND_H */
 67 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php