Use bb_xopen
[platform/upstream/busybox.git] / console-tools / openvt.c
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
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>
31 #include <ctype.h>
32
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];
43
44
45         if (argc < 3)
46         bb_show_usage();
47
48         if (!isdigit(argv[1][0]))
49                 bb_show_usage();
50
51         /* check for Illegal vt number */
52         vtno=bb_xgetlarg(argv[1], 10, 1, 12);
53
54         sprintf(vtname, VTNAME, vtno);
55
56         argv+=2;
57         argc-=2;
58
59         if((pid = fork()) == 0) {
60                 /* leave current vt */
61
62 #ifdef   ESIX_5_3_2_D
63                 if (setpgrp() < 0) {
64 #else
65                 if (setsid() < 0) {
66 #endif
67
68                         bb_perror_msg_and_die("Unable to set new session");       
69                 }
70                 close(0);                       /* so that new vt becomes stdin */
71
72                 /* and grab new one */
73                 fd = bb_xopen(vtname, O_RDWR);
74
75                 /* Reassign stdout and sterr */
76                 close(1);
77                 close(2);
78                 dup(fd);
79                 dup(fd);
80
81                 execvp(argv[0], argv);
82                 _exit(1);
83         }
84         return EXIT_SUCCESS;
85 }
86
87 /*
88 Local Variables:
89 c-file-style: "linux"
90 c-basic-offset: 4
91 tab-width: 4
92 End:
93 */