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 | * |
Bernhard Reutner-Fischer | b1629b1 | 2006-05-19 19:29:19 +0000 | [diff] [blame] | 8 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
Glenn L McGrath | ec0c48c | 2002-09-16 03:16:06 +0000 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | /* getopt not needed */ |
| 12 | |
| 13 | #include <stdio.h> |
| 14 | #include <stdlib.h> |
| 15 | #include <unistd.h> |
| 16 | #include <fcntl.h> |
| 17 | #include <string.h> |
| 18 | #include <sys/types.h> |
Glenn L McGrath | a6bbf79 | 2002-12-08 12:08:37 +0000 | [diff] [blame] | 19 | #include <ctype.h> |
| 20 | |
Glenn L McGrath | ec0c48c | 2002-09-16 03:16:06 +0000 | [diff] [blame] | 21 | #include "busybox.h" |
| 22 | |
Glenn L McGrath | ec0c48c | 2002-09-16 03:16:06 +0000 | [diff] [blame] | 23 | int openvt_main(int argc, char **argv) |
| 24 | { |
Glenn L McGrath | ec0c48c | 2002-09-16 03:16:06 +0000 | [diff] [blame] | 25 | int fd; |
Rob Landley | ead1930 | 2006-03-10 23:16:25 +0000 | [diff] [blame] | 26 | char vtname[sizeof(VC_FORMAT) + 2]; |
Glenn L McGrath | 0a3b010 | 2003-05-13 16:31:15 +0000 | [diff] [blame] | 27 | |
Glenn L McGrath | ec0c48c | 2002-09-16 03:16:06 +0000 | [diff] [blame] | 28 | |
Rob Landley | ead1930 | 2006-03-10 23:16:25 +0000 | [diff] [blame] | 29 | if (argc < 3) { |
| 30 | bb_show_usage(); |
| 31 | } |
Glenn L McGrath | dfb6211 | 2004-01-13 10:12:16 +0000 | [diff] [blame] | 32 | /* check for Illegal vt number: < 1 or > 12 */ |
Rob Landley | ead1930 | 2006-03-10 23:16:25 +0000 | [diff] [blame] | 33 | sprintf(vtname, VC_FORMAT, (int)bb_xgetlarg(argv[1], 10, 1, 12)); |
Glenn L McGrath | ec0c48c | 2002-09-16 03:16:06 +0000 | [diff] [blame] | 34 | |
Rob Landley | ead1930 | 2006-03-10 23:16:25 +0000 | [diff] [blame] | 35 | if (fork() == 0) { |
Glenn L McGrath | ec0c48c | 2002-09-16 03:16:06 +0000 | [diff] [blame] | 36 | /* leave current vt */ |
Glenn L McGrath | ec0c48c | 2002-09-16 03:16:06 +0000 | [diff] [blame] | 37 | if (setsid() < 0) { |
Rob Landley | ead1930 | 2006-03-10 23:16:25 +0000 | [diff] [blame] | 38 | bb_perror_msg_and_die("setsid"); |
Glenn L McGrath | ec0c48c | 2002-09-16 03:16:06 +0000 | [diff] [blame] | 39 | } |
| 40 | close(0); /* so that new vt becomes stdin */ |
| 41 | |
| 42 | /* and grab new one */ |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 43 | fd = xopen(vtname, O_RDWR); |
Glenn L McGrath | ec0c48c | 2002-09-16 03:16:06 +0000 | [diff] [blame] | 44 | |
| 45 | /* Reassign stdout and sterr */ |
Rob Landley | 9f0e00f | 2005-09-08 03:27:06 +0000 | [diff] [blame] | 46 | dup2(fd, STDOUT_FILENO); |
| 47 | dup2(fd, STDERR_FILENO); |
Glenn L McGrath | ec0c48c | 2002-09-16 03:16:06 +0000 | [diff] [blame] | 48 | |
Rob Landley | ead1930 | 2006-03-10 23:16:25 +0000 | [diff] [blame] | 49 | execvp(argv[2], &argv[2]); |
Glenn L McGrath | ec0c48c | 2002-09-16 03:16:06 +0000 | [diff] [blame] | 50 | _exit(1); |
| 51 | } |
| 52 | return EXIT_SUCCESS; |
| 53 | } |