Glenn L McGrath | ec0c48c | 2002-09-16 03:16:06 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Glenn L McGrath | ec0c48c | 2002-09-16 03:16:06 +0000 | [diff] [blame] | 2 | /* |
Glenn L McGrath | ebdc8b4 | 2002-09-16 03:47:48 +0000 | [diff] [blame] | 3 | * openvt.c - open a vt to run a command. |
Glenn L McGrath | ec0c48c | 2002-09-16 03:16:06 +0000 | [diff] [blame] | 4 | * |
Glenn L McGrath | ebdc8b4 | 2002-09-16 03:47:48 +0000 | [diff] [blame] | 5 | * busyboxed by Quy Tonthat <quy@signal3.com> |
Glenn L McGrath | 0a3b010 | 2003-05-13 16:31:15 +0000 | [diff] [blame] | 6 | * hacked by Tito <farmatito@tiscali.it> |
Glenn L McGrath | ebdc8b4 | 2002-09-16 03:47:48 +0000 | [diff] [blame] | 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. |
Glenn L McGrath | ec0c48c | 2002-09-16 03:16:06 +0000 | [diff] [blame] | 21 | */ |
| 22 | |
| 23 | /* getopt not needed */ |
| 24 | |
| 25 | #include <stdio.h> |
| 26 | #include <stdlib.h> |
| 27 | #include <unistd.h> |
| 28 | #include <fcntl.h> |
| 29 | #include <string.h> |
| 30 | #include <sys/types.h> |
Glenn L McGrath | a6bbf79 | 2002-12-08 12:08:37 +0000 | [diff] [blame] | 31 | #include <ctype.h> |
| 32 | |
Glenn L McGrath | ec0c48c | 2002-09-16 03:16:06 +0000 | [diff] [blame] | 33 | #include "busybox.h" |
| 34 | |
| 35 | #define VTNAME "/dev/tty%d" |
| 36 | |
| 37 | int openvt_main(int argc, char **argv) |
| 38 | { |
| 39 | int pid; |
| 40 | int fd; |
| 41 | int vtno; |
| 42 | char vtname[sizeof VTNAME + 2]; |
Glenn L McGrath | 0a3b010 | 2003-05-13 16:31:15 +0000 | [diff] [blame] | 43 | |
Glenn L McGrath | ec0c48c | 2002-09-16 03:16:06 +0000 | [diff] [blame] | 44 | |
| 45 | if (argc < 3) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 46 | bb_show_usage(); |
Glenn L McGrath | ec0c48c | 2002-09-16 03:16:06 +0000 | [diff] [blame] | 47 | |
| 48 | if (!isdigit(argv[1][0])) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 49 | bb_show_usage(); |
Glenn L McGrath | ec0c48c | 2002-09-16 03:16:06 +0000 | [diff] [blame] | 50 | |
| 51 | vtno = (int) atol(argv[1]); |
| 52 | |
| 53 | /* if (vtno <= 0 || vtno > 63) */ |
| 54 | if (vtno <= 0 || vtno > 12) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 55 | bb_error_msg_and_die("Illegal vt number (%d)", vtno); |
Glenn L McGrath | ec0c48c | 2002-09-16 03:16:06 +0000 | [diff] [blame] | 56 | |
| 57 | sprintf(vtname, VTNAME, vtno); |
| 58 | |
Glenn L McGrath | 0a3b010 | 2003-05-13 16:31:15 +0000 | [diff] [blame] | 59 | argv+=2; |
| 60 | argc-=2; |
Glenn L McGrath | ec0c48c | 2002-09-16 03:16:06 +0000 | [diff] [blame] | 61 | |
| 62 | if((pid = fork()) == 0) { |
| 63 | /* leave current vt */ |
| 64 | |
| 65 | #ifdef ESIX_5_3_2_D |
| 66 | if (setpgrp() < 0) { |
| 67 | #else |
| 68 | if (setsid() < 0) { |
| 69 | #endif |
| 70 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 71 | bb_perror_msg_and_die("Unable to set new session"); |
Glenn L McGrath | ec0c48c | 2002-09-16 03:16:06 +0000 | [diff] [blame] | 72 | } |
| 73 | close(0); /* so that new vt becomes stdin */ |
| 74 | |
| 75 | /* and grab new one */ |
| 76 | if ((fd = open(vtname, O_RDWR)) == -1) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 77 | bb_perror_msg_and_die("could not open %s", vtname); |
Glenn L McGrath | ec0c48c | 2002-09-16 03:16:06 +0000 | [diff] [blame] | 78 | |
| 79 | /* Reassign stdout and sterr */ |
| 80 | close(1); |
| 81 | close(2); |
| 82 | dup(fd); |
| 83 | dup(fd); |
| 84 | |
Glenn L McGrath | 0a3b010 | 2003-05-13 16:31:15 +0000 | [diff] [blame] | 85 | execvp(argv[0], argv); |
Glenn L McGrath | ec0c48c | 2002-09-16 03:16:06 +0000 | [diff] [blame] | 86 | _exit(1); |
| 87 | } |
| 88 | return EXIT_SUCCESS; |
| 89 | } |
| 90 | |
| 91 | /* |
| 92 | Local Variables: |
| 93 | c-file-style: "linux" |
| 94 | c-basic-offset: 4 |
| 95 | tab-width: 4 |
| 96 | End: |
| 97 | */ |