blob: 9b6407bd022b0699d48368a2417c430650edf6b1 [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 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02008 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Eric Andersenaad1a882001-03-16 22:47:14 +00009 */
10
Eric Andersenaad1a882001-03-16 22:47:14 +000011#include "libbb.h"
12
Eric Andersenc7bda1c2004-03-15 08:29:22 +000013/* From <linux/kd.h> */
Rob Landleybc68cd12006-03-10 19:22:06 +000014enum { KDGKBTYPE = 0x4B33 }; /* get keyboard type */
Eric Andersenaad1a882001-03-16 22:47:14 +000015
Glenn L McGrath005f83a2003-09-01 08:53:32 +000016static int open_a_console(const char *fnam)
Eric Andersenaad1a882001-03-16 22:47:14 +000017{
18 int fd;
19
Glenn L McGrath005f83a2003-09-01 08:53:32 +000020 /* try read-write */
Eric Andersenaad1a882001-03-16 22:47:14 +000021 fd = open(fnam, O_RDWR);
22
23 /* if failed, try read-only */
24 if (fd < 0 && errno == EACCES)
25 fd = open(fnam, O_RDONLY);
26
27 /* if failed, try write-only */
28 if (fd < 0 && errno == EACCES)
29 fd = open(fnam, O_WRONLY);
30
Eric Andersenaad1a882001-03-16 22:47:14 +000031 return fd;
32}
33
34/*
35 * Get an fd for use with kbd/console ioctls.
36 * We try several things because opening /dev/console will fail
37 * if someone else used X (which does a chown on /dev/console).
Eric Andersenaad1a882001-03-16 22:47:14 +000038 */
Denis Vlasenko2afd5ab2008-08-05 23:32:27 +000039int FAST_FUNC get_console_fd_or_die(void)
Eric Andersenaad1a882001-03-16 22:47:14 +000040{
Denis Vlasenkoec27feb2007-02-17 15:52:02 +000041 static const char *const console_names[] = {
42 DEV_CONSOLE, CURRENT_VC, CURRENT_TTY
Glenn L McGrath005f83a2003-09-01 08:53:32 +000043 };
Eric Andersenaad1a882001-03-16 22:47:14 +000044
Denis Vlasenkoec27feb2007-02-17 15:52:02 +000045 int fd;
46
Glenn L McGrath005f83a2003-09-01 08:53:32 +000047 for (fd = 2; fd >= 0; fd--) {
48 int fd4name;
Denis Vlasenko51742f42007-04-12 00:32:05 +000049 int choice_fd;
Glenn L McGrath005f83a2003-09-01 08:53:32 +000050 char arg;
Eric Andersenaad1a882001-03-16 22:47:14 +000051
Denis Vlasenkoec27feb2007-02-17 15:52:02 +000052 fd4name = open_a_console(console_names[fd]);
Denis Vlasenko06af2162007-02-03 17:28:39 +000053 chk_std:
Denis Vlasenko51742f42007-04-12 00:32:05 +000054 choice_fd = (fd4name >= 0 ? fd4name : fd);
Eric Andersenaad1a882001-03-16 22:47:14 +000055
Glenn L McGrath005f83a2003-09-01 08:53:32 +000056 arg = 0;
Denis Vlasenko51742f42007-04-12 00:32:05 +000057 if (ioctl(choice_fd, KDGKBTYPE, &arg) == 0)
58 return choice_fd;
59 if (fd4name >= 0) {
Glenn L McGrath005f83a2003-09-01 08:53:32 +000060 close(fd4name);
61 fd4name = -1;
62 goto chk_std;
63 }
64 }
Eric Andersenaad1a882001-03-16 22:47:14 +000065
Denis Vlasenko2afd5ab2008-08-05 23:32:27 +000066 bb_error_msg_and_die("can't open console");
67 /*return fd; - total failure */
Eric Andersenaad1a882001-03-16 22:47:14 +000068}
Bernhard Reutner-Fischerae4342c2008-05-19 08:18:50 +000069
70/* From <linux/vt.h> */
71enum {
72 VT_ACTIVATE = 0x5606, /* make vt active */
73 VT_WAITACTIVE = 0x5607 /* wait for vt active */
74};
75
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000076void FAST_FUNC console_make_active(int fd, const int vt_num)
Bernhard Reutner-Fischerae4342c2008-05-19 08:18:50 +000077{
78 xioctl(fd, VT_ACTIVATE, (void *)(ptrdiff_t)vt_num);
79 xioctl(fd, VT_WAITACTIVE, (void *)(ptrdiff_t)vt_num);
80}