blob: b0db33b3370f0777e2b54e50a6eeba9619d2591f [file] [log] [blame]
Glenn L McGrathec0c48c2002-09-16 03:16:06 +00001/* vi: set sw=4 ts=4: */
Glenn L McGrathec0c48c2002-09-16 03:16:06 +00002/*
Glenn L McGrathebdc8b42002-09-16 03:47:48 +00003 * openvt.c - open a vt to run a command.
Glenn L McGrathec0c48c2002-09-16 03:16:06 +00004 *
Glenn L McGrathebdc8b42002-09-16 03:47:48 +00005 * busyboxed by Quy Tonthat <quy@signal3.com>
Glenn L McGrath0a3b0102003-05-13 16:31:15 +00006 * hacked by Tito <farmatito@tiscali.it>
Glenn L McGrathebdc8b42002-09-16 03:47:48 +00007 *
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 McGrathec0c48c2002-09-16 03:16:06 +000021 */
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 McGratha6bbf792002-12-08 12:08:37 +000031#include <ctype.h>
32
Glenn L McGrathec0c48c2002-09-16 03:16:06 +000033#include "busybox.h"
34
Glenn L McGrathec0c48c2002-09-16 03:16:06 +000035int openvt_main(int argc, char **argv)
36{
Glenn L McGrathec0c48c2002-09-16 03:16:06 +000037 int fd;
Glenn L McGrathdfb62112004-01-13 10:12:16 +000038 char vtname[sizeof VC_FORMAT + 2];
Glenn L McGrath0a3b0102003-05-13 16:31:15 +000039
Glenn L McGrathec0c48c2002-09-16 03:16:06 +000040
41 if (argc < 3)
Manuel Novoa III cad53642003-03-19 09:13:01 +000042 bb_show_usage();
Glenn L McGrathec0c48c2002-09-16 03:16:06 +000043
Glenn L McGrathdfb62112004-01-13 10:12:16 +000044 /* check for Illegal vt number: < 1 or > 12 */
45 sprintf(vtname, VC_FORMAT,(int)bb_xgetlarg(argv[1], 10, 1, 12));
Glenn L McGrathec0c48c2002-09-16 03:16:06 +000046
Glenn L McGrath0a3b0102003-05-13 16:31:15 +000047 argv+=2;
48 argc-=2;
Glenn L McGrathec0c48c2002-09-16 03:16:06 +000049
Glenn L McGrathdfb62112004-01-13 10:12:16 +000050 if(fork() == 0) {
Glenn L McGrathec0c48c2002-09-16 03:16:06 +000051 /* leave current vt */
52
53#ifdef ESIX_5_3_2_D
54 if (setpgrp() < 0) {
55#else
56 if (setsid() < 0) {
57#endif
58
Manuel Novoa III cad53642003-03-19 09:13:01 +000059 bb_perror_msg_and_die("Unable to set new session");
Glenn L McGrathec0c48c2002-09-16 03:16:06 +000060 }
61 close(0); /* so that new vt becomes stdin */
62
63 /* and grab new one */
Glenn L McGrath02e03552003-12-20 06:00:08 +000064 fd = bb_xopen(vtname, O_RDWR);
Glenn L McGrathec0c48c2002-09-16 03:16:06 +000065
66 /* Reassign stdout and sterr */
67 close(1);
68 close(2);
69 dup(fd);
70 dup(fd);
71
Glenn L McGrath0a3b0102003-05-13 16:31:15 +000072 execvp(argv[0], argv);
Glenn L McGrathec0c48c2002-09-16 03:16:06 +000073 _exit(1);
74 }
75 return EXIT_SUCCESS;
76}
77
78/*
79Local Variables:
80c-file-style: "linux"
81c-basic-offset: 4
82tab-width: 4
83End:
84*/