3
0

setsid.c 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. //usage:#define setsid_trivial_usage
  17. //usage: "PROG ARGS"
  18. //usage:#define setsid_full_usage "\n\n"
  19. //usage: "Run PROG in a new session. PROG will have no controlling terminal\n"
  20. //usage: "and will not be affected by keyboard signals (Ctrl-C etc).\n"
  21. //usage: "See setsid(2) for details."
  22. #include "libbb.h"
  23. int setsid_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
  24. int setsid_main(int argc UNUSED_PARAM, char **argv)
  25. {
  26. if (!argv[1])
  27. bb_show_usage();
  28. /* setsid() is allowed only when we are not a process group leader.
  29. * Otherwise our PID serves as PGID of some existing process group
  30. * and cannot be used as PGID of a new process group. */
  31. if (setsid() < 0) {
  32. pid_t pid = fork_or_rexec(argv);
  33. if (pid != 0) {
  34. /* parent */
  35. /* TODO:
  36. * we can waitpid(pid, &status, 0) and then even
  37. * emulate exitcode, making the behavior consistent
  38. * in both forked and non forked cases.
  39. * However, the code is larger and upstream
  40. * does not do such trick.
  41. */
  42. exit(EXIT_SUCCESS);
  43. }
  44. /* child */
  45. /* now there should be no error: */
  46. setsid();
  47. }
  48. argv++;
  49. BB_EXECVP_or_die(argv);
  50. }