aboutsummaryrefslogtreecommitdiff
path: root/console-tools/kbd_mode.c
blob: 46ec3fd283cd4c1a7a727fd18b7ff0baa196f75b (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
/* vi: set sw=4 ts=4: */
/*
 * Mini loadkmap implementation for busybox
 *
 * Copyright (C) 2007 Lo�c Greni� <loic.grenie@gmail.com>
 *   written using Andries Brouwer <aeb@cwi.nl>'s kbd_mode from
 *   console-utils v0.2.3, licensed under GNU GPLv2
 *
 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
 *
 */

#include "libbb.h"
#include <linux/kd.h>

int kbd_mode_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
int kbd_mode_main(int argc, char **argv)
{
	static const char opts[] = "saku";

	const char *opt = argv[1];
	const char *p;
	int fd;

	fd = get_console_fd();
	if (fd < 0) /* get_console_fd() already complained */
		return EXIT_FAILURE;

	if (opt == NULL) {
		/* No arg */
		const char *msg = "unknown";
		int mode;

		ioctl(fd, KDGKBMODE, &mode);
		switch(mode) {
		case K_RAW:
			msg = "raw (scancode)";
			break;
		case K_XLATE:
			msg = "default (ASCII)";
			break;
		case K_MEDIUMRAW:
			msg = "mediumraw (keycode)";
			break;
		case K_UNICODE:
			msg = "Unicode (UTF-8)";
			break;
		}
		printf("The keyboard is in %s mode\n", msg);
	}
	else if (argc > 2 /* more than 1 arg */
	 || *opt != '-' /* not an option */
	 || (p = strchr(opts, opt[1])) == NULL /* not an option we expect */
	 || opt[2] != '\0' /* more than one option char */
	) {
		bb_show_usage();
		/* return EXIT_FAILURE; - not reached */
	}
	else {
#if K_RAW != 0 || K_XLATE != 1 || K_MEDIUMRAW != 2 || K_UNICODE != 3
#error kbd_mode must be changed
#endif
		/* The options are in the order of the various K_xxx */
		ioctl(fd, KDSKBMODE, p - opts);
	}

	if (ENABLE_FEATURE_CLEAN_UP)
		close(fd);
	return EXIT_SUCCESS;
}