blob: 41c4b779c25d440e2cd5226f05d2266d5000f7df [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Rob Landleyc020f5f2006-05-21 18:28:13 +00002/* nohup - invoke a utility immune to hangups.
3 *
4 * Busybox version based on nohup specification at
Rob Landley027ea1a2006-05-24 17:58:00 +00005 * http://www.opengroup.org/onlinepubs/007904975/utilities/nohup.html
Rob Landleyc020f5f2006-05-21 18:28:13 +00006 *
7 * Copyright 2006 Rob Landley <rob@landley.net>
8 *
9 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Bernhard Reutner-Fischer9d7010c2005-09-21 18:25:05 +000010 */
11
Bernhard Reutner-Fischer9d7010c2005-09-21 18:25:05 +000012#include <fcntl.h>
Rob Landleyfa6b5e62006-05-23 00:28:06 +000013#include <signal.h>
Rob Landleyc020f5f2006-05-21 18:28:13 +000014#include <unistd.h>
Bernhard Reutner-Fischer9d7010c2005-09-21 18:25:05 +000015#include "busybox.h"
Bernhard Reutner-Fischer9d7010c2005-09-21 18:25:05 +000016
Rob Landleyc020f5f2006-05-21 18:28:13 +000017int nohup_main(int argc, char *argv[])
Bernhard Reutner-Fischer9d7010c2005-09-21 18:25:05 +000018{
Rob Landleyc020f5f2006-05-21 18:28:13 +000019 int temp, nullfd;
20 char *nohupout = "nohup.out", *home = NULL;
Bernhard Reutner-Fischer9d7010c2005-09-21 18:25:05 +000021
Rob Landley027ea1a2006-05-24 17:58:00 +000022 // I have no idea why the standard cares about this.
23
24 bb_default_error_retval = 127;
25
Rob Landleyc020f5f2006-05-21 18:28:13 +000026 if (argc<2) bb_show_usage();
Bernhard Reutner-Fischer9d7010c2005-09-21 18:25:05 +000027
Rob Landleyc020f5f2006-05-21 18:28:13 +000028 nullfd = bb_xopen(bb_dev_null, O_WRONLY|O_APPEND);
29 // If stdin is a tty, detach from it.
Bernhard Reutner-Fischer9d7010c2005-09-21 18:25:05 +000030
Rob Landleyc020f5f2006-05-21 18:28:13 +000031 if (isatty(0)) dup2(nullfd, 0);
Bernhard Reutner-Fischer9d7010c2005-09-21 18:25:05 +000032
Rob Landleyc020f5f2006-05-21 18:28:13 +000033 // Redirect stdout to nohup.out, either in "." or in "$HOME".
Bernhard Reutner-Fischer9d7010c2005-09-21 18:25:05 +000034
Rob Landleyc020f5f2006-05-21 18:28:13 +000035 if (isatty(1)) {
36 close(1);
37 if (open(nohupout, O_CREAT|O_WRONLY|O_APPEND, S_IRUSR|S_IWUSR) < 0) {
38 home = getenv("HOME");
39 if (home) {
40 home = concat_path_file(home, nohupout);
41 bb_xopen3(nohupout, O_CREAT|O_WRONLY|O_APPEND, S_IRUSR|S_IWUSR);
Bernhard Reutner-Fischer9d7010c2005-09-21 18:25:05 +000042 }
Bernhard Reutner-Fischer9d7010c2005-09-21 18:25:05 +000043 }
Rob Landleyc020f5f2006-05-21 18:28:13 +000044 } else dup2(nullfd, 1);
Bernhard Reutner-Fischer9d7010c2005-09-21 18:25:05 +000045
Rob Landleyc020f5f2006-05-21 18:28:13 +000046 // If we have a tty on strderr, announce filename and redirect to stdout.
47 // Else redirect to /dev/null.
Bernhard Reutner-Fischer9d7010c2005-09-21 18:25:05 +000048
Rob Landleyc020f5f2006-05-21 18:28:13 +000049 temp = isatty(2);
50 if (temp) fdprintf(2,"Writing to %s\n", home ? home : nohupout);
51 dup2(temp ? 1 : nullfd, 2);
Rob Landleyc020f5f2006-05-21 18:28:13 +000052 close(nullfd);
Rob Landleyfa6b5e62006-05-23 00:28:06 +000053 signal (SIGHUP, SIG_IGN);
Bernhard Reutner-Fischer9d7010c2005-09-21 18:25:05 +000054
Rob Landleyc020f5f2006-05-21 18:28:13 +000055 // Exec our new program.
Bernhard Reutner-Fischer9d7010c2005-09-21 18:25:05 +000056
Rob Landleyc020f5f2006-05-21 18:28:13 +000057 execvp(argv[1],argv+1);
58 if (ENABLE_FEATURE_CLEAN_UP) free(home);
59 bb_error_msg_and_die("exec %s",argv[1]);
Bernhard Reutner-Fischer9d7010c2005-09-21 18:25:05 +000060}