blob: 69c37a3d633f7b4047b167b5e7828380d3e3aa2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
/*
* Adapted from kbd-1.12
* License: GPL
*
*/
#include "config.h"
#include <stdio.h>
#include <fcntl.h>
#include <errno.h>
#include <linux/kd.h>
#include <sys/ioctl.h>
#ifdef HAVE_PATHS_H
#include <paths.h>
#endif /* HAVE_PATHS_H */
/*
* getfd.c
*
* Get an fd for use with kbd/console ioctls.
* We try several things because opening /dev/console will fail
* if someone else used X (which does a chown on /dev/console).
*/
static int
is_a_console (int fd)
{
char arg;
arg = 0;
return (ioctl (fd, KDGKBTYPE, &arg) == 0
&& ((arg == KB_101) || (arg == KB_84)));
}
static int
open_a_console (char *fnam)
{
int fd;
fd = open (fnam, O_RDONLY);
if (fd < 0 && errno == EACCES)
fd = open(fnam, O_WRONLY);
if (fd < 0 || ! is_a_console (fd))
return -1;
return fd;
}
int getfd (void)
{
int fd;
fd = open_a_console (_PATH_TTY);
if (fd >= 0)
return fd;
fd = open_a_console ("/dev/tty");
if (fd >= 0)
return fd;
fd = open_a_console (_PATH_CONSOLE);
if (fd >= 0)
return fd;
fd = open_a_console ("/dev/console");
if (fd >= 0)
return fd;
for (fd = 0; fd < 3; fd++)
if (is_a_console (fd))
return fd;
return -1;
}
|