add NOMMU fixme's; move move_fd from runit_lib to libbb; nuke fd_copy
[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  * 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 int openvt_main(int argc, char **argv)
17 {
18         int fd;
19         char vtname[sizeof(VC_FORMAT) + 2];
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)xatou_range(argv[1], 1, 63));
26
27 //FIXME NOMMU
28         if (fork() == 0) {
29                 /* child */
30                 /* leave current vt (controlling tty) */
31                 setsid();
32                 /* and grab new one */
33                 fd = xopen(vtname, O_RDWR);
34                 /* Reassign stdin, stdout and sterr */
35                 dup2(fd, STDIN_FILENO);
36                 dup2(fd, STDOUT_FILENO);
37                 dup2(fd, STDERR_FILENO);
38                 while (fd > 2) close(fd--);
39
40                 BB_EXECVP(argv[2], &argv[2]);
41                 _exit(1);
42         }
43         return EXIT_SUCCESS;
44 }