2006-06-04 01:19:21 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2005-08-02 04:22:09 +05:30
|
|
|
/*
|
|
|
|
* setsid.c -- execute a command in a new session
|
|
|
|
* Rick Sladkey <jrs@world.std.com>
|
|
|
|
* In the public domain.
|
|
|
|
*
|
2008-03-17 14:59:43 +05:30
|
|
|
* 1999-02-22 Arkadiusz Mickiewicz <misiek@pld.ORG.PL>
|
2005-08-02 04:22:09 +05:30
|
|
|
* - 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
|
|
|
|
*/
|
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2005-08-02 04:22:09 +05:30
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int setsid_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 14:48:54 +05:30
|
|
|
int setsid_main(int argc UNUSED_PARAM, char **argv)
|
2006-03-23 07:37:41 +05:30
|
|
|
{
|
2008-03-17 14:59:43 +05:30
|
|
|
if (!argv[1])
|
2005-08-02 04:22:09 +05:30
|
|
|
bb_show_usage();
|
|
|
|
|
2008-03-17 14:59:43 +05:30
|
|
|
/* 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 05:42:56 +05:30
|
|
|
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-02 04:22:09 +05:30
|
|
|
|
2010-05-16 05:42:56 +05:30
|
|
|
/* child */
|
|
|
|
/* now there should be no error: */
|
|
|
|
setsid();
|
|
|
|
}
|
2005-08-02 04:22:09 +05:30
|
|
|
|
2010-06-25 05:16:53 +05:30
|
|
|
argv++;
|
2010-07-04 04:27:03 +05:30
|
|
|
BB_EXECVP_or_die(argv);
|
2005-08-02 04:22:09 +05:30
|
|
|
}
|