blob: 6db07be5f51a12425f0811ce97c4ae5be83122f9 [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 *
7 * 1999-02-22 Arkadiusz Mi¶kiewicz <misiek@pld.ORG.PL>
8 * - 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
Bernhard Reutner-Fischerc89982d2006-06-03 19:49:21 +000017#include "busybox.h"
Paul Fox42403642005-08-01 22:52:09 +000018
Denis Vlasenko06af2162007-02-03 17:28:39 +000019int setsid_main(int argc, char *argv[]);
Mike Frysingere1d41b32006-03-23 02:07:41 +000020int setsid_main(int argc, char *argv[])
21{
22 if (argc < 2)
Paul Fox42403642005-08-01 22:52:09 +000023 bb_show_usage();
Paul Fox42403642005-08-01 22:52:09 +000024
25 if (getpgrp() == getpid()) {
Denis Vlasenko9af7c9d2007-01-19 21:19:35 +000026 switch (fork()) {
Paul Fox42403642005-08-01 22:52:09 +000027 case -1:
28 bb_perror_msg_and_die("fork");
29 case 0:
30 break;
31 default: /* parent */
32 exit(0);
33 }
Paul Fox42403642005-08-01 22:52:09 +000034 }
Denis Vlasenko9af7c9d2007-01-19 21:19:35 +000035 /* child */
Paul Fox42403642005-08-01 22:52:09 +000036
37 setsid(); /* no error possible */
38
Denis Vlasenko1d76f432007-02-06 01:20:12 +000039 BB_EXECVP(argv[1], argv + 1);
Paul Fox42403642005-08-01 22:52:09 +000040
Mike Frysinger948a09d2006-03-23 02:07:20 +000041 bb_perror_msg_and_die("%s", argv[1]);
Paul Fox42403642005-08-01 22:52:09 +000042}