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. */
|
2007-03-26 19:05:09 +05:30
|
|
|
if (getpgrp() == getpid())
|
|
|
|
forkexit_or_rexec(argv);
|
2005-08-02 04:22:09 +05:30
|
|
|
|
|
|
|
setsid(); /* no error possible */
|
|
|
|
|
2007-02-06 06:50:12 +05:30
|
|
|
BB_EXECVP(argv[1], argv + 1);
|
2007-10-01 17:28:38 +05:30
|
|
|
bb_simple_perror_msg_and_die(argv[1]);
|
2005-08-02 04:22:09 +05:30
|
|
|
}
|