openvt.c 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * openvt.c - open a vt to run a command.
  4. *
  5. * busyboxed by Quy Tonthat <quy@signal3.com>
  6. * hacked by Tito <farmatito@tiscali.it>
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  21. */
  22. /* getopt not needed */
  23. #include <stdio.h>
  24. #include <stdlib.h>
  25. #include <unistd.h>
  26. #include <fcntl.h>
  27. #include <string.h>
  28. #include <sys/types.h>
  29. #include <ctype.h>
  30. #include "busybox.h"
  31. int openvt_main(int argc, char **argv)
  32. {
  33. int fd;
  34. char vtname[sizeof VC_FORMAT + 2];
  35. if (argc < 3)
  36. bb_show_usage();
  37. /* check for Illegal vt number: < 1 or > 12 */
  38. sprintf(vtname, VC_FORMAT,(int)bb_xgetlarg(argv[1], 10, 1, 12));
  39. argv+=2;
  40. argc-=2;
  41. if(fork() == 0) {
  42. /* leave current vt */
  43. #ifdef ESIX_5_3_2_D
  44. if (setpgrp() < 0) {
  45. #else
  46. if (setsid() < 0) {
  47. #endif
  48. bb_perror_msg_and_die("Unable to set new session");
  49. }
  50. close(0); /* so that new vt becomes stdin */
  51. /* and grab new one */
  52. fd = bb_xopen(vtname, O_RDWR);
  53. /* Reassign stdout and sterr */
  54. close(1);
  55. close(2);
  56. dup(fd);
  57. dup(fd);
  58. execvp(argv[0], argv);
  59. _exit(1);
  60. }
  61. return EXIT_SUCCESS;
  62. }
  63. /*
  64. Local Variables:
  65. c-file-style: "linux"
  66. c-basic-offset: 4
  67. tab-width: 4
  68. End:
  69. */