*: introduce and use xfork() and xvfork()
authorPascal Bellard <pascal.bellard@ads-lu.com>
Sun, 4 Jul 2010 13:32:38 +0000 (15:32 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Sun, 4 Jul 2010 13:32:38 +0000 (15:32 +0200)
function                                             old     new   delta
launch_helper                                        170     169      -1
setup_heredoc                                        312     302     -10
handle_dir_common                                    367     354     -13
expand_vars_to_list                                 2456    2443     -13
open_transformer                                      89      74     -15
data_extract_to_command                              439     423     -16
do_ipaddr                                           1406    1389     -17
------------------------------------------------------------------------------
(add/remove: 0/0 grow/shrink: 0/7 up/down: 0/-85)             Total: -85 bytes

Signed-off-by: Pascal Bellard <pascal.bellard@ads-lu.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
21 files changed:
archival/libunarchive/data_extract_to_command.c
archival/libunarchive/open_transformer.c
archival/tar.c
debianutils/start_stop_daemon.c
e2fsprogs/old_e2fsprogs/fsck.c
include/libbb.h
init/bootchartd.c
libbb/vfork_daemon_rexec.c
libbb/xfuncs_printf.c
mailutils/mail.c
miscutils/conspy.c
miscutils/crontab.c
miscutils/time.c
miscutils/timeout.c
networking/ftpd.c
networking/ifupdown.c
networking/inetd.c
networking/nc.c
scripts/basic/docproc.c
shell/hush.c
util-linux/script.c

index eb09439bc5e1a38274bcfb849dc6c9c592b3787f..95f5bc8644e456869562157267a97659a914f990 100644 (file)
@@ -82,11 +82,8 @@ void FAST_FUNC data_extract_to_command(archive_handle_t *archive_handle)
                memset(tar_env, 0, sizeof(tar_env));
 
                xpipe(p);
-               pid = BB_MMU ? fork() : vfork();
-               switch (pid) {
-               case -1:
-                       bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork");
-               case 0:
+               pid = BB_MMU ? xfork() : xvfork();
+               if (pid == 0) {
                        /* Child */
                        /* str2env(tar_env, TAR_FILETYPE, "f"); - parent should do it once */
                        oct2env(tar_env, TAR_MODE, file_header->mode);
index 47c13e6f46176d8a52cbf8f8cde0c5040db8698b..cba049f1fa1f5b8b74db7bf3b88cd311006c9b1d 100644 (file)
@@ -19,19 +19,9 @@ void FAST_FUNC open_transformer(int fd,
        int pid;
 
        xpiped_pair(fd_pipe);
-
-#if BB_MMU
-       pid = fork();
-       if (pid == -1)
-               bb_perror_msg_and_die("vfork" + 1);
-#else
-       pid = vfork();
-       if (pid == -1)
-               bb_perror_msg_and_die("vfork");
-#endif
-
+       pid = BB_MMU ? xfork() : xvfork();
        if (pid == 0) {
-               /* child process */
+               /* Child */
                close(fd_pipe.rd); /* we don't want to read from the parent */
                // FIXME: error check?
 #if BB_MMU
index f49fb129e593b48e2f39cb2669351ce62e8b7791..9dd74536edb010fbc748c83df36e9b804b3831ab 100644 (file)
@@ -514,9 +514,7 @@ static void NOINLINE vfork_compressor(int tar_fd, int gzip)
        (void) &zip_exec;
 # endif
 
-       gzipPid = vfork();
-       if (gzipPid < 0)
-               bb_perror_msg_and_die("vfork");
+       gzipPid = xvfork();
 
        if (gzipPid == 0) {
                /* child */
index 3ded758bf4c24003ef514e9033f6c20ac5f0c14d..665f38fbd802c4e2b348409620c7b587d7112207 100644 (file)
@@ -409,9 +409,7 @@ int start_stop_daemon_main(int argc UNUSED_PARAM, char **argv)
                /* DAEMON_DEVNULL_STDIO is superfluous -
                 * it's always done by bb_daemonize() */
 #else
-               pid_t pid = vfork();
-               if (pid < 0) /* error */
-                       bb_perror_msg_and_die("vfork");
+               pid_t pid = xvfork();
                if (pid != 0) {
                        /* parent */
                        /* why _exit? the child may have changed the stack,
index dc029b65ab03f9da22c63c369ba1e31d9389872b..2a66d728aa26975e91e4a0eb6063f1791909e4ee 100644 (file)
@@ -612,7 +612,7 @@ static int execute(const char *type, const char *device, const char *mntpt,
        if (noexecute)
                pid = -1;
        else if ((pid = fork()) < 0) {
-               perror("fork");
+               perror("vfork"+1);
                return errno;
        } else if (pid == 0) {
                if (!interactive)
index 4b6699f2f170e612bd48c2c855bfe58f294e2cb0..e2a8322b8fc08c12a1cb8527d9dc14bddf1604e3 100644 (file)
@@ -841,6 +841,19 @@ int bb_execvp(const char *file, char *const argv[]) FAST_FUNC;
 #endif
 int BB_EXECVP_or_die(char **argv) NORETURN FAST_FUNC;
 
+/* xvfork() can't be a _function_, return after vfork mangles stack
+ * in the parent. It must be a macro. */
+#define xvfork() \
+({ \
+       pid_t bb__xvfork_pid = vfork(); \
+       if (bb__xvfork_pid < 0) \
+               bb_perror_msg_and_die("vfork"); \
+       bb__xvfork_pid; \
+})
+#if BB_MMU
+pid_t xfork(void) FAST_FUNC;
+#endif
+
 /* NOMMU friendy fork+exec: */
 pid_t spawn(char **argv) FAST_FUNC;
 pid_t xspawn(char **argv) FAST_FUNC;
@@ -886,7 +899,7 @@ int run_nofork_applet_prime(struct nofork_save_area *old, int applet_no, char **
  * Both of the above will redirect fd 0,1,2 to /dev/null and drop ctty
  * (will do setsid()).
  *
- * fork_or_rexec(argv) = bare-bones "fork" on MMU,
+ * fork_or_rexec(argv) = bare-bones fork on MMU,
  *      "vfork + re-exec ourself" on NOMMU. No fd redirection, no setsid().
  *      On MMU ignores argv.
  *
@@ -902,19 +915,19 @@ enum {
        DAEMON_ONLY_SANITIZE = 8, /* internal use */
 };
 #if BB_MMU
-  pid_t fork_or_rexec(void) FAST_FUNC;
   enum { re_execed = 0 };
-# define fork_or_rexec(argv)                fork_or_rexec()
+# define fork_or_rexec(argv)                xfork()
 # define bb_daemonize_or_rexec(flags, argv) bb_daemonize_or_rexec(flags)
 # define bb_daemonize(flags)                bb_daemonize_or_rexec(flags, bogus)
 #else
+  extern bool re_execed;
   void re_exec(char **argv) NORETURN FAST_FUNC;
   pid_t fork_or_rexec(char **argv) FAST_FUNC;
-  extern bool re_execed;
   int  BUG_fork_is_unavailable_on_nommu(void) FAST_FUNC;
   int  BUG_daemon_is_unavailable_on_nommu(void) FAST_FUNC;
   void BUG_bb_daemonize_is_unavailable_on_nommu(void) FAST_FUNC;
 # define fork()          BUG_fork_is_unavailable_on_nommu()
+# define xfork()         BUG_fork_is_unavailable_on_nommu()
 # define daemon(a,b)     BUG_daemon_is_unavailable_on_nommu()
 # define bb_daemonize(a) BUG_bb_daemonize_is_unavailable_on_nommu()
 #endif
index 42b98c827586001cae498f2785915354c589bbb8..b3e08af92a6c1c6355e046672dc0b493ce239804 100644 (file)
@@ -427,9 +427,7 @@ int bootchartd_main(int argc UNUSED_PARAM, char **argv)
        }
 
        if (cmd == CMD_START && argv[2]) { /* "start PROG ARGS" */
-               pid_t pid = vfork();
-               if (pid < 0)
-                       bb_perror_msg_and_die("vfork");
+               pid_t pid = xvfork();
                if (pid == 0) { /* child */
                        argv += 2;
                        execvp(argv[0], argv);
index 8102ea2dc3eda28cb041491257c447f6fa015122..5c2c529c972a6099725243b8c99bfcddb8ff97ee 100644 (file)
@@ -224,26 +224,12 @@ pid_t FAST_FUNC fork_or_rexec(char **argv)
        /* Maybe we are already re-execed and come here again? */
        if (re_execed)
                return 0;
-       pid = vfork();
-       if (pid < 0) /* wtf? */
-               bb_perror_msg_and_die("vfork");
+       pid = xvfork();
        if (pid) /* parent */
                return pid;
        /* child - re-exec ourself */
        re_exec(argv);
 }
-#else
-/* Dance around (void)...*/
-#undef fork_or_rexec
-pid_t FAST_FUNC fork_or_rexec(void)
-{
-       pid_t pid;
-       pid = fork();
-       if (pid < 0) /* wtf? */
-               bb_perror_msg_and_die("fork");
-       return pid;
-}
-#define fork_or_rexec(argv) fork_or_rexec()
 #endif
 
 /* Due to a #define in libbb.h on MMU systems we actually have 1 argument -
index f021493b1ec8a505b844ce46e7b9257da58fbb0e..7069a7c8e949e20a7745a35eb46c5193f708b28e 100644 (file)
@@ -589,3 +589,14 @@ void FAST_FUNC generate_uuid(uint8_t *buf)
        /* variant = 10x */
        buf[4 + 2 + 2] = (buf[4 + 2 + 2] & 0x3f) | 0x80;
 }
+
+#if BB_MMU
+pid_t FAST_FUNC xfork(void)
+{
+       pid_t pid;
+       pid = fork();
+       if (pid < 0) /* wtf? */
+               bb_perror_msg_and_die("vfork"+1);
+       return pid;
+}
+#endif
index 5eb99e13dae4f757340290eaf765c0d71137fa86..bcd358302725628d38adba0fb4676bd973517438 100644 (file)
@@ -54,9 +54,7 @@ void FAST_FUNC launch_helper(const char **argv)
                + (1 << SIGALRM)
                , signal_handler);
 
-       G.helper_pid = vfork();
-       if (G.helper_pid < 0)
-               bb_perror_msg_and_die("vfork");
+       G.helper_pid = xvfork();
 
        i = (!G.helper_pid) * 2; // for parent:0, for child:2
        close(pipes[i + 1]); // 1 or 3 - closing one write end
index 3f341ce18734316022e07c1e87db8a8d14b5b24a..509a0f271ddc92cb4afacc2731ea5174705b5342 100644 (file)
@@ -309,10 +309,7 @@ static void create_cdev_if_doesnt_exist(const char* name, dev_t dev)
 
 static NOINLINE void start_shell_in_child(const char* tty_name)
 {
-       int pid = vfork();
-       if (pid < 0) {
-               bb_perror_msg_and_die("vfork");
-       }
+       int pid = xvfork();
        if (pid == 0) {
                struct termios termchild;
                char *shell = getenv("SHELL");
index 5557bc491e0f000013207253d093f73b1d95fd0c..b8a5abc64435069f623c9f575befbfed145e931f 100644 (file)
 static void edit_file(const struct passwd *pas, const char *file)
 {
        const char *ptr;
-       int pid = vfork();
+       int pid = xvfork();
 
-       if (pid < 0) /* failure */
-               bb_perror_msg_and_die("vfork");
        if (pid) { /* parent */
                wait4pid(pid);
                return;
@@ -51,9 +49,7 @@ static int open_as_user(const struct passwd *pas, const char *file)
        pid_t pid;
        char c;
 
-       pid = vfork();
-       if (pid < 0) /* ERROR */
-               bb_perror_msg_and_die("vfork");
+       pid = xvfork();
        if (pid) { /* PARENT */
                if (wait4pid(pid) == 0) {
                        /* exitcode 0: child says it can read */
index 5cfbcef8ef64202e28166f5265e49aeec64c0750..9facc36573a2ac9a1d5581ddf766983b00d8aa21 100644 (file)
@@ -372,9 +372,7 @@ static void run_command(char *const *cmd, resource_t *resp)
        void (*quit_signal)(int);
 
        resp->elapsed_ms = monotonic_ms();
-       pid = vfork();
-       if (pid < 0)
-               bb_perror_msg_and_die("vfork");
+       pid = xvfork();
        if (pid == 0) {
                /* Child */
                BB_EXECVP_or_die((char**)cmd);
index f6e655accc22b28635159442ba8efd4244f90f11..48b8d8fc0fe683aaab9692881e9900a073954f0b 100644 (file)
@@ -71,9 +71,7 @@ int timeout_main(int argc UNUSED_PARAM, char **argv)
        sv1 = argv[optind];
        sv2 = argv[optind + 1];
 #endif
-       pid = vfork();
-       if (pid < 0)
-               bb_perror_msg_and_die("vfork");
+       pid = xvfork();
        if (pid == 0) {
                /* Child: spawn grandchild and exit */
                parent = getppid();
index c63b9319e199f430154d26b2b1ca433e653ab141..e8cae0a36e28c094cda6965e8a4e7ab8b8c5da64 100644 (file)
@@ -632,10 +632,7 @@ popen_ls(const char *opt)
        xpiped_pair(outfd);
 
        /*fflush_all(); - so far we dont use stdio on output */
-       pid = BB_MMU ? fork() : vfork();
-       if (pid < 0)
-               bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork");
-
+       pid = BB_MMU ? xfork() : xvfork();
        if (pid == 0) {
                /* child */
 #if !BB_MMU
index 1bab2c5cb77874890d42ee6725c9e415d6de4778..69c56e8796785b7c9f542b8530d98d78cbb45fdd 100644 (file)
@@ -1041,12 +1041,10 @@ static int popen2(FILE **in, FILE **out, char *command, char *param)
        xpiped_pair(outfd);
 
        fflush_all();
-       pid = vfork();
+       pid = xvfork();
 
-       switch (pid) {
-       case -1:  /* failure */
-               bb_perror_msg_and_die("vfork");
-       case 0:  /* child */
+       if (pid == 0) {
+               /* Child */
                /* NB: close _first_, then move fds! */
                close(infd.wr);
                close(outfd.rd);
index 2b0e0069e728c0c128272affefe02d9c232e42a2..7030062b6e1f7a90b47aee7c857d2aa65a012d71 100644 (file)
@@ -1271,7 +1271,7 @@ int inetd_main(int argc UNUSED_PARAM, char **argv)
                                        pid = vfork();
 
                                if (pid < 0) { /* fork error */
-                                       bb_perror_msg("fork");
+                                       bb_perror_msg("vfork"+1);
                                        sleep(1);
                                        restore_sigmask(&omask);
                                        maybe_close(accepted_fd);
index 5fd8bd759b836231a062e995e4367aa11dc8763e..0dacaf1176f17bbfd1b64dede1fe5c6d2d7cc573 100644 (file)
@@ -216,10 +216,8 @@ int nc_main(int argc, char **argv)
        if (execparam) {
                pid_t pid;
                /* With more than one -l, repeatedly act as server */
-               if (do_listen > 1 && (pid = vfork()) != 0) {
-                       /* parent or error */
-                       if (pid < 0)
-                               bb_perror_msg_and_die("vfork");
+               if (do_listen > 1 && (pid = xvfork()) != 0) {
+                       /* parent */
                        /* prevent zombies */
                        signal(SIGCHLD, SIG_IGN);
                        close(cfd);
index ef51812266ff46a9191445e8a1dbdc236a60973b..50ef371572f89997617bdb174352ad3f79fcc6be 100644 (file)
@@ -86,7 +86,7 @@ void exec_kernel_doc(char **svec)
        fflush(stdout);
        switch(pid=fork()) {
                case -1:
-                       perror("fork");
+                       perror("vfork"+1);
                        exit(1);
                case  0:
                        rflen  = strlen(getenv("SRCTREE"));
index 29ff3c44290e865347d25fcf57bc4b71d12bb420..831443e2e2b88b6e37fd4f5cefbb9a28552147c7 100644 (file)
@@ -3208,15 +3208,11 @@ static void setup_heredoc(struct redir_struct *redir)
 #if !BB_MMU
        to_free = NULL;
 #endif
-       pid = vfork();
-       if (pid < 0)
-               bb_perror_msg_and_die("vfork");
+       pid = xvfork();
        if (pid == 0) {
                /* child */
                disable_restore_tty_pgrp_on_exit();
-               pid = BB_MMU ? fork() : vfork();
-               if (pid < 0)
-                       bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork");
+               pid = BB_MMU ? xfork() : xvfork();
                if (pid != 0)
                        _exit(0);
                /* grandchild */
@@ -4450,7 +4446,7 @@ static NOINLINE int run_pipe(struct pipe *pi)
                argv_expanded = NULL;
                if (command->pid < 0) { /* [v]fork failed */
                        /* Clearly indicate, was it fork or vfork */
-                       bb_perror_msg(BB_MMU ? "fork" : "vfork");
+                       bb_perror_msg(BB_MMU ? "vfork"+1 : "vfork");
                } else {
                        pi->alive_cmds++;
 #if ENABLE_HUSH_JOB
@@ -5586,10 +5582,7 @@ static FILE *generate_stream_from_string(const char *s, pid_t *pid_p)
 # endif
 
        xpipe(channel);
-       pid = BB_MMU ? fork() : vfork();
-       if (pid < 0)
-               bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork");
-
+       pid = BB_MMU ? xfork() : xvfork();
        if (pid == 0) { /* child */
                disable_restore_tty_pgrp_on_exit();
                /* Process substitution is not considered to be usual
index d9a62fbfefef573de72aebc969a7ac2f4cebd2f4..c23117cf34de3c1c5d5207a19e3fe6271354ae78 100644 (file)
@@ -88,10 +88,7 @@ int script_main(int argc UNUSED_PARAM, char **argv)
 
        /* TODO: SIGWINCH? pass window size changes down to slave? */
 
-       child_pid = vfork();
-       if (child_pid < 0) {
-               bb_perror_msg_and_die("vfork");
-       }
+       child_pid = xvfork();
 
        if (child_pid) {
                /* parent */