hush/coreutils/nohup.c

57 lines
1.4 KiB
C
Raw Normal View History

/* vi:set ts=4: */
/* nohup - invoke a utility immune to hangups.
*
* Busybox version based on nohup specification at
* http://www.opengroup.org/onlinepubs/007904975/utilities/sed.html
*
* Copyright 2006 Rob Landley <rob@landley.net>
*
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
2005-09-21 18:25:05 +00:00
*/
#include <fcntl.h>
#include <signal.h>
#include <unistd.h>
2005-09-21 18:25:05 +00:00
#include "busybox.h"
int nohup_main(int argc, char *argv[])
2005-09-21 18:25:05 +00:00
{
int temp, nullfd;
char *nohupout = "nohup.out", *home = NULL;
2005-09-21 18:25:05 +00:00
if (argc<2) bb_show_usage();
2005-09-21 18:25:05 +00:00
nullfd = bb_xopen(bb_dev_null, O_WRONLY|O_APPEND);
// If stdin is a tty, detach from it.
2005-09-21 18:25:05 +00:00
if (isatty(0)) dup2(nullfd, 0);
2005-09-21 18:25:05 +00:00
// Redirect stdout to nohup.out, either in "." or in "$HOME".
2005-09-21 18:25:05 +00:00
if (isatty(1)) {
close(1);
if (open(nohupout, O_CREAT|O_WRONLY|O_APPEND, S_IRUSR|S_IWUSR) < 0) {
home = getenv("HOME");
if (home) {
home = concat_path_file(home, nohupout);
bb_xopen3(nohupout, O_CREAT|O_WRONLY|O_APPEND, S_IRUSR|S_IWUSR);
2005-09-21 18:25:05 +00:00
}
}
} else dup2(nullfd, 1);
2005-09-21 18:25:05 +00:00
// If we have a tty on strderr, announce filename and redirect to stdout.
// Else redirect to /dev/null.
2005-09-21 18:25:05 +00:00
temp = isatty(2);
if (temp) fdprintf(2,"Writing to %s\n", home ? home : nohupout);
dup2(temp ? 1 : nullfd, 2);
close(nullfd);
signal (SIGHUP, SIG_IGN);
2005-09-21 18:25:05 +00:00
// Exec our new program.
2005-09-21 18:25:05 +00:00
execvp(argv[1],argv+1);
if (ENABLE_FEATURE_CLEAN_UP) free(home);
bb_error_msg_and_die("exec %s",argv[1]);
2005-09-21 18:25:05 +00:00
}