2006-06-03 19:49:21 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
2005-08-01 22:52:09 +00:00
|
|
|
/*
|
|
|
|
* setsid.c -- execute a command in a new session
|
|
|
|
* Rick Sladkey <jrs@world.std.com>
|
|
|
|
* In the public domain.
|
|
|
|
*
|
2008-03-17 09:29:43 +00:00
|
|
|
* 1999-02-22 Arkadiusz Mickiewicz <misiek@pld.ORG.PL>
|
2005-08-01 22:52:09 +00:00
|
|
|
* - added Native Language Support
|
|
|
|
*
|
|
|
|
* 2001-01-18 John Fremlin <vii@penguinpowered.com>
|
|
|
|
* - fork in case we are process group leader
|
|
|
|
*
|
|
|
|
* 2004-11-12 Paul Fox
|
|
|
|
* - busyboxed
|
|
|
|
*/
|
|
|
|
|
2011-04-11 01:29:49 +00:00
|
|
|
//usage:#define setsid_trivial_usage
|
|
|
|
//usage: "PROG ARGS"
|
|
|
|
//usage:#define setsid_full_usage "\n\n"
|
|
|
|
//usage: "Run PROG in a new session. PROG will have no controlling terminal\n"
|
|
|
|
//usage: "and will not be affected by keyboard signals (Ctrl-C etc).\n"
|
|
|
|
//usage: "See setsid(2) for details."
|
|
|
|
|
2007-05-26 19:00:18 +00:00
|
|
|
#include "libbb.h"
|
2005-08-01 22:52:09 +00:00
|
|
|
|
2007-10-11 10:05:36 +00:00
|
|
|
int setsid_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 09:18:54 +00:00
|
|
|
int setsid_main(int argc UNUSED_PARAM, char **argv)
|
2006-03-23 02:07:41 +00:00
|
|
|
{
|
2008-03-17 09:29:43 +00:00
|
|
|
if (!argv[1])
|
2005-08-01 22:52:09 +00:00
|
|
|
bb_show_usage();
|
|
|
|
|
2008-03-17 09:29:43 +00:00
|
|
|
/* setsid() is allowed only when we are not a process group leader.
|
|
|
|
* Otherwise our PID serves as PGID of some existing process group
|
|
|
|
* and cannot be used as PGID of a new process group. */
|
2010-05-16 00:12:56 +00:00
|
|
|
if (setsid() < 0) {
|
|
|
|
pid_t pid = fork_or_rexec(argv);
|
|
|
|
if (pid != 0) {
|
|
|
|
/* parent */
|
|
|
|
/* TODO:
|
|
|
|
* we can waitpid(pid, &status, 0) and then even
|
|
|
|
* emulate exitcode, making the behavior consistent
|
|
|
|
* in both forked and non forked cases.
|
|
|
|
* However, the code is larger and upstream
|
|
|
|
* does not do such trick.
|
|
|
|
*/
|
|
|
|
exit(EXIT_SUCCESS);
|
|
|
|
}
|
2005-08-01 22:52:09 +00:00
|
|
|
|
2010-05-16 00:12:56 +00:00
|
|
|
/* child */
|
|
|
|
/* now there should be no error: */
|
|
|
|
setsid();
|
|
|
|
}
|
2005-08-01 22:52:09 +00:00
|
|
|
|
2010-06-24 23:46:53 +00:00
|
|
|
argv++;
|
2010-07-03 22:57:03 +00:00
|
|
|
BB_EXECVP_or_die(argv);
|
2005-08-01 22:52:09 +00:00
|
|
|
}
|