attempt to regularize atoi mess.
[oweals/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  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
9  */
10
11 /* getopt not needed */
12
13 #include "busybox.h"
14
15 int openvt_main(int argc, char **argv)
16 {
17         int fd;
18         char vtname[sizeof(VC_FORMAT) + 2];
19
20
21         if (argc < 3) {
22                 bb_show_usage();
23         }
24         /* check for illegal vt number: < 1 or > 63 */
25         sprintf(vtname, VC_FORMAT, (int)xatoul_range(argv[1], 1, 63));
26
27         if (fork() == 0) {
28                 /* leave current vt */
29                 if (setsid() < 0) {
30                         bb_perror_msg_and_die("setsid");
31                 }
32                 close(0);                       /* so that new vt becomes stdin */
33
34                 /* and grab new one */
35                 fd = xopen(vtname, O_RDWR);
36
37                 /* Reassign stdout and sterr */
38                 dup2(fd, STDOUT_FILENO);
39                 dup2(fd, STDERR_FILENO);
40
41                 execvp(argv[2], &argv[2]);
42                 _exit(1);
43         }
44         return EXIT_SUCCESS;
45 }