aboutsummaryrefslogtreecommitdiff
path: root/busybox/libbb/get_console.c
diff options
context:
space:
mode:
Diffstat (limited to 'busybox/libbb/get_console.c')
-rw-r--r--busybox/libbb/get_console.c99
1 files changed, 99 insertions, 0 deletions
diff --git a/busybox/libbb/get_console.c b/busybox/libbb/get_console.c
new file mode 100644
index 000000000..bfb7468a8
--- /dev/null
+++ b/busybox/libbb/get_console.c
@@ -0,0 +1,99 @@
1/* vi: set sw=4 ts=4: */
2/*
3 * Utility routines.
4 *
5 * Copyright (C) many different people. If you wrote this, please
6 * acknowledge your work.
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 GNU
16 * 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#include <stdio.h>
24#include <errno.h>
25#include <fcntl.h>
26#include <unistd.h>
27#include <sys/ioctl.h>
28#include "libbb.h"
29
30
31
32/* From <linux/kd.h> */
33static const int KDGKBTYPE = 0x4B33; /* get keyboard type */
34
35
36static int open_a_console(const char *fnam)
37{
38 int fd;
39
40 /* try read-write */
41 fd = open(fnam, O_RDWR);
42
43 /* if failed, try read-only */
44 if (fd < 0 && errno == EACCES)
45 fd = open(fnam, O_RDONLY);
46
47 /* if failed, try write-only */
48 if (fd < 0 && errno == EACCES)
49 fd = open(fnam, O_WRONLY);
50
51 return fd;
52}
53
54/*
55 * Get an fd for use with kbd/console ioctls.
56 * We try several things because opening /dev/console will fail
57 * if someone else used X (which does a chown on /dev/console).
58 */
59
60int get_console_fd(void)
61{
62 int fd;
63
64 static const char * const choise_console_names[] = {
65 CONSOLE_DEV, CURRENT_VC, CURRENT_TTY
66 };
67
68 for (fd = 2; fd >= 0; fd--) {
69 int fd4name;
70 int choise_fd;
71 char arg;
72
73 fd4name = open_a_console(choise_console_names[fd]);
74 chk_std:
75 choise_fd = fd4name >= 0 ? fd4name : fd;
76
77 arg = 0;
78 if (ioctl(choise_fd, KDGKBTYPE, &arg) == 0)
79 return choise_fd;
80 if(fd4name >= 0) {
81 close(fd4name);
82 fd4name = -1;
83 goto chk_std;
84 }
85 }
86
87 bb_error_msg("Couldn't get a file descriptor referring to the console");
88 return fd; /* total failure */
89}
90
91
92/* END CODE */
93/*
94Local Variables:
95c-file-style: "linux"
96c-basic-offset: 4
97tab-width: 4
98End:
99*/