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 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 13 | #include "libbb.h" |
Glenn L McGrath | ec0c48c | 2002-09-16 03:16:06 +0000 | [diff] [blame] | 14 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 15 | int openvt_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Glenn L McGrath | ec0c48c | 2002-09-16 03:16:06 +0000 | [diff] [blame] | 16 | int openvt_main(int argc, char **argv) |
| 17 | { |
Rob Landley | ead1930 | 2006-03-10 23:16:25 +0000 | [diff] [blame] | 18 | char vtname[sizeof(VC_FORMAT) + 2]; |
Glenn L McGrath | 0a3b010 | 2003-05-13 16:31:15 +0000 | [diff] [blame] | 19 | |
Denis Vlasenko | 53091ec | 2007-03-26 13:35:09 +0000 | [diff] [blame] | 20 | if (argc < 3) |
Rob Landley | ead1930 | 2006-03-10 23:16:25 +0000 | [diff] [blame] | 21 | bb_show_usage(); |
Denis Vlasenko | 53091ec | 2007-03-26 13:35:09 +0000 | [diff] [blame] | 22 | |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 23 | /* check for illegal vt number: < 1 or > 63 */ |
Denis Vlasenko | cad04ef | 2007-03-25 23:21:05 +0000 | [diff] [blame] | 24 | sprintf(vtname, VC_FORMAT, (int)xatou_range(argv[1], 1, 63)); |
Glenn L McGrath | ec0c48c | 2002-09-16 03:16:06 +0000 | [diff] [blame] | 25 | |
Denis Vlasenko | 53091ec | 2007-03-26 13:35:09 +0000 | [diff] [blame] | 26 | bb_daemonize_or_rexec(DAEMON_CLOSE_EXTRA_FDS, argv); |
| 27 | /* grab new one */ |
| 28 | close(0); |
| 29 | xopen(vtname, O_RDWR); |
| 30 | dup2(0, STDOUT_FILENO); |
| 31 | dup2(0, STDERR_FILENO); |
Glenn L McGrath | ec0c48c | 2002-09-16 03:16:06 +0000 | [diff] [blame] | 32 | |
Denis Vlasenko | 53091ec | 2007-03-26 13:35:09 +0000 | [diff] [blame] | 33 | BB_EXECVP(argv[2], &argv[2]); |
| 34 | _exit(1); |
Glenn L McGrath | ec0c48c | 2002-09-16 03:16:06 +0000 | [diff] [blame] | 35 | } |