blob: 7f2c7533230a487e39cc2571908dbf2efdf460e5 [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 */
Eric Andersenaad1a882001-03-16 22:47:14 +000010#include "libbb.h"
11
Eric Andersenc7bda1c2004-03-15 08:29:22 +000012/* From <linux/kd.h> */
Rob Landleybc68cd12006-03-10 19:22:06 +000013enum { KDGKBTYPE = 0x4B33 }; /* get keyboard type */
Eric Andersenaad1a882001-03-16 22:47:14 +000014
Glenn L McGrath005f83a2003-09-01 08:53:32 +000015static int open_a_console(const char *fnam)
Eric Andersenaad1a882001-03-16 22:47:14 +000016{
17 int fd;
18
Glenn L McGrath005f83a2003-09-01 08:53:32 +000019 /* try read-write */
Eric Andersenaad1a882001-03-16 22:47:14 +000020 fd = open(fnam, O_RDWR);
21
22 /* if failed, try read-only */
23 if (fd < 0 && errno == EACCES)
24 fd = open(fnam, O_RDONLY);
25
26 /* if failed, try write-only */
27 if (fd < 0 && errno == EACCES)
28 fd = open(fnam, O_WRONLY);
29
Eric Andersenaad1a882001-03-16 22:47:14 +000030 return fd;
31}
32
33/*
34 * Get an fd for use with kbd/console ioctls.
35 * We try several things because opening /dev/console will fail
36 * if someone else used X (which does a chown on /dev/console).
Eric Andersenaad1a882001-03-16 22:47:14 +000037 */
Denis Vlasenko2afd5ab2008-08-05 23:32:27 +000038int FAST_FUNC get_console_fd_or_die(void)
Eric Andersenaad1a882001-03-16 22:47:14 +000039{
Denis Vlasenkoec27feb2007-02-17 15:52:02 +000040 static const char *const console_names[] = {
41 DEV_CONSOLE, CURRENT_VC, CURRENT_TTY
Glenn L McGrath005f83a2003-09-01 08:53:32 +000042 };
Eric Andersenaad1a882001-03-16 22:47:14 +000043
Denis Vlasenkoec27feb2007-02-17 15:52:02 +000044 int fd;
45
Glenn L McGrath005f83a2003-09-01 08:53:32 +000046 for (fd = 2; fd >= 0; fd--) {
47 int fd4name;
Denis Vlasenko51742f42007-04-12 00:32:05 +000048 int choice_fd;
Glenn L McGrath005f83a2003-09-01 08:53:32 +000049 char arg;
Eric Andersenaad1a882001-03-16 22:47:14 +000050
Denis Vlasenkoec27feb2007-02-17 15:52:02 +000051 fd4name = open_a_console(console_names[fd]);
Denis Vlasenko06af2162007-02-03 17:28:39 +000052 chk_std:
Denis Vlasenko51742f42007-04-12 00:32:05 +000053 choice_fd = (fd4name >= 0 ? fd4name : fd);
Eric Andersenaad1a882001-03-16 22:47:14 +000054
Glenn L McGrath005f83a2003-09-01 08:53:32 +000055 arg = 0;
Denis Vlasenko51742f42007-04-12 00:32:05 +000056 if (ioctl(choice_fd, KDGKBTYPE, &arg) == 0)
57 return choice_fd;
58 if (fd4name >= 0) {
Glenn L McGrath005f83a2003-09-01 08:53:32 +000059 close(fd4name);
60 fd4name = -1;
61 goto chk_std;
62 }
63 }
Eric Andersenaad1a882001-03-16 22:47:14 +000064
James Byrne69374872019-07-02 11:35:03 +020065 bb_simple_error_msg_and_die("can't open console");
Eric Andersenaad1a882001-03-16 22:47:14 +000066}
Bernhard Reutner-Fischerae4342c2008-05-19 08:18:50 +000067
68/* From <linux/vt.h> */
69enum {
70 VT_ACTIVATE = 0x5606, /* make vt active */
71 VT_WAITACTIVE = 0x5607 /* wait for vt active */
72};
73
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000074void FAST_FUNC console_make_active(int fd, const int vt_num)
Bernhard Reutner-Fischerae4342c2008-05-19 08:18:50 +000075{
76 xioctl(fd, VT_ACTIVATE, (void *)(ptrdiff_t)vt_num);
77 xioctl(fd, VT_WAITACTIVE, (void *)(ptrdiff_t)vt_num);
78}