setsid.c 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /* vi: set sw=4 ts=4: */
  2. /*
  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 Mickiewicz <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. #include "libbb.h"
  17. int setsid_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
  18. int setsid_main(int argc UNUSED_PARAM, char **argv)
  19. {
  20. if (!argv[1])
  21. bb_show_usage();
  22. /* setsid() is allowed only when we are not a process group leader.
  23. * Otherwise our PID serves as PGID of some existing process group
  24. * and cannot be used as PGID of a new process group. */
  25. if (setsid() < 0) {
  26. pid_t pid = fork_or_rexec(argv);
  27. if (pid != 0) {
  28. /* parent */
  29. /* TODO:
  30. * we can waitpid(pid, &status, 0) and then even
  31. * emulate exitcode, making the behavior consistent
  32. * in both forked and non forked cases.
  33. * However, the code is larger and upstream
  34. * does not do such trick.
  35. */
  36. exit(EXIT_SUCCESS);
  37. }
  38. /* child */
  39. /* now there should be no error: */
  40. setsid();
  41. }
  42. argv++;
  43. BB_EXECVP_or_die(argv);
  44. }