blob: bfb7468a8fe606508902f2caef35819f315fb50c [file] [log] [blame]
Eric Andersenaad1a882001-03-16 22:47:14 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Utility routines.
4 *
Glenn L McGrath005f83a2003-09-01 08:53:32 +00005 * Copyright (C) many different people. If you wrote this, please
6 * acknowledge your work.
Eric Andersenaad1a882001-03-16 22:47:14 +00007 *
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
Eric Andersenaad1a882001-03-16 22:47:14 +000021 */
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
Eric Andersenc7bda1c2004-03-15 08:29:22 +000032/* From <linux/kd.h> */
Eric Andersenaad1a882001-03-16 22:47:14 +000033static const int KDGKBTYPE = 0x4B33; /* get keyboard type */
Eric Andersenaad1a882001-03-16 22:47:14 +000034
Eric Andersenaad1a882001-03-16 22:47:14 +000035
Glenn L McGrath005f83a2003-09-01 08:53:32 +000036static int open_a_console(const char *fnam)
Eric Andersenaad1a882001-03-16 22:47:14 +000037{
38 int fd;
39
Glenn L McGrath005f83a2003-09-01 08:53:32 +000040 /* try read-write */
Eric Andersenaad1a882001-03-16 22:47:14 +000041 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
Eric Andersenaad1a882001-03-16 22:47:14 +000051 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).
Eric Andersenaad1a882001-03-16 22:47:14 +000058 */
59
Eric Andersenc38678d2002-09-16 06:22:25 +000060int get_console_fd(void)
Eric Andersenaad1a882001-03-16 22:47:14 +000061{
62 int fd;
63
Glenn L McGrath005f83a2003-09-01 08:53:32 +000064 static const char * const choise_console_names[] = {
65 CONSOLE_DEV, CURRENT_VC, CURRENT_TTY
66 };
Eric Andersenaad1a882001-03-16 22:47:14 +000067
Glenn L McGrath005f83a2003-09-01 08:53:32 +000068 for (fd = 2; fd >= 0; fd--) {
69 int fd4name;
70 int choise_fd;
71 char arg;
Eric Andersenaad1a882001-03-16 22:47:14 +000072
Glenn L McGrath005f83a2003-09-01 08:53:32 +000073 fd4name = open_a_console(choise_console_names[fd]);
74 chk_std:
75 choise_fd = fd4name >= 0 ? fd4name : fd;
Eric Andersenaad1a882001-03-16 22:47:14 +000076
Glenn L McGrath005f83a2003-09-01 08:53:32 +000077 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 }
Eric Andersenaad1a882001-03-16 22:47:14 +000086
Manuel Novoa III cad53642003-03-19 09:13:01 +000087 bb_error_msg("Couldn't get a file descriptor referring to the console");
Glenn L McGrath005f83a2003-09-01 08:53:32 +000088 return fd; /* total failure */
Eric Andersenaad1a882001-03-16 22:47:14 +000089}
90
91
92/* END CODE */
93/*
94Local Variables:
95c-file-style: "linux"
96c-basic-offset: 4
97tab-width: 4
98End:
99*/