add state handler
[project/procd.git] / askfirst.c
1 /*
2  * Copyright (C) 2013 Felix Fietkau <nbd@openwrt.org>
3  * Copyright (C) 2013 John Crispin <blogic@openwrt.org>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU Lesser General Public License version 2.1
7  * as published by the Free Software Foundation
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  */
14
15 #include <sys/types.h>
16 #include <sys/stat.h>
17
18 #include <stdio.h>
19 #include <unistd.h>
20 #include <fcntl.h>
21
22 static int redirect_output(const char *dev)
23 {
24         pid_t p = setsid();
25         int fd;
26
27         chdir("/dev");
28         fd = open(dev, O_RDWR);
29         chdir("/");
30
31         if (fd < 0)
32                 return -1;
33
34         close(STDIN_FILENO);
35         close(STDOUT_FILENO);
36         close(STDERR_FILENO);
37
38         dup2(fd, STDIN_FILENO);
39         dup2(fd, STDOUT_FILENO);
40         dup2(fd, STDERR_FILENO);
41         tcsetpgrp(fd, p);
42         close(fd);
43
44         return 0;
45 }
46
47 int main(int argc, char **argv)
48 {
49         if (redirect_output(argv[1]))
50                 fprintf(stderr, "%s: Failed to open %s\n", argv[0], argv[1]);
51
52         printf("Please press Enter to activate this console.\n");
53         while (getchar() != 0xA)
54                 ;
55         execvp(argv[2], &argv[2]);
56         printf("%s: Failed to execute %s\n", argv[0], argv[2]);
57
58         return -1;
59 }