blob: 637081b6ccdad0b03212f51235f99bdea116f123 [file] [log] [blame]
Bernhard Reutner-Fischerc89982d2006-06-03 19:49:21 +00001/* vi: set sw=4 ts=4: */
Paul Fox42403642005-08-01 22:52:09 +00002/*
3 * setsid.c -- execute a command in a new session
4 * Rick Sladkey <jrs@world.std.com>
5 * In the public domain.
6 *
Denis Vlasenkob44c7902008-03-17 09:29:43 +00007 * 1999-02-22 Arkadiusz Mickiewicz <misiek@pld.ORG.PL>
Paul Fox42403642005-08-01 22:52:09 +00008 * - added Native Language Support
9 *
10 * 2001-01-18 John Fremlin <vii@penguinpowered.com>
11 * - fork in case we are process group leader
12 *
13 * 2004-11-12 Paul Fox
14 * - busyboxed
15 */
16
Pere Orga5bc8c002011-04-11 03:29:49 +020017//usage:#define setsid_trivial_usage
18//usage: "PROG ARGS"
19//usage:#define setsid_full_usage "\n\n"
20//usage: "Run PROG in a new session. PROG will have no controlling terminal\n"
21//usage: "and will not be affected by keyboard signals (Ctrl-C etc).\n"
22//usage: "See setsid(2) for details."
23
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000024#include "libbb.h"
Paul Fox42403642005-08-01 22:52:09 +000025
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000026int setsid_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000027int setsid_main(int argc UNUSED_PARAM, char **argv)
Mike Frysingere1d41b32006-03-23 02:07:41 +000028{
Denis Vlasenkob44c7902008-03-17 09:29:43 +000029 if (!argv[1])
Paul Fox42403642005-08-01 22:52:09 +000030 bb_show_usage();
Paul Fox42403642005-08-01 22:52:09 +000031
Denis Vlasenkob44c7902008-03-17 09:29:43 +000032 /* setsid() is allowed only when we are not a process group leader.
33 * Otherwise our PID serves as PGID of some existing process group
maxwen27116ba2015-08-14 21:41:28 +020034 * and cannot be used as PGID of a new process group.
35 *
36 * Example: setsid() below fails when run alone in interactive shell:
37 * $ setsid PROG
38 * because shell's child (setsid) is put in a new process group.
39 * But doesn't fail if shell is not interactive
40 * (and therefore doesn't create process groups for pipes),
41 * or if setsid is not the first process in the process group:
42 * $ true | setsid PROG
43 * or if setsid is executed in backquotes (`setsid PROG`)...
44 */
Denys Vlasenkoa29b0552010-05-16 02:12:56 +020045 if (setsid() < 0) {
46 pid_t pid = fork_or_rexec(argv);
47 if (pid != 0) {
48 /* parent */
49 /* TODO:
50 * we can waitpid(pid, &status, 0) and then even
51 * emulate exitcode, making the behavior consistent
52 * in both forked and non forked cases.
53 * However, the code is larger and upstream
54 * does not do such trick.
55 */
maxwen27116ba2015-08-14 21:41:28 +020056 return EXIT_SUCCESS;
Denys Vlasenkoa29b0552010-05-16 02:12:56 +020057 }
Paul Fox42403642005-08-01 22:52:09 +000058
Denys Vlasenkoa29b0552010-05-16 02:12:56 +020059 /* child */
60 /* now there should be no error: */
61 setsid();
62 }
Paul Fox42403642005-08-01 22:52:09 +000063
Denys Vlasenko41ddd9f2010-06-25 01:46:53 +020064 argv++;
Pascal Bellard21e8e8d2010-07-04 00:57:03 +020065 BB_EXECVP_or_die(argv);
Paul Fox42403642005-08-01 22:52:09 +000066}