blob: fd4fd5623d4052a449daedd88e47a42e75477641 [file] [log] [blame]
Eric Andersen61dc0572000-07-11 17:29:36 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Mini dumpkmap implementation for busybox
4 *
5 * Copyright (C) Arne Bernin <arne@matrix.loopback.org>
6 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02007 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Eric Andersen61dc0572000-07-11 17:29:36 +00008 */
Denys Vlasenko6d932992016-11-23 10:39:27 +01009//config:config DUMPKMAP
Denys Vlasenkob097a842018-12-28 03:20:17 +010010//config: bool "dumpkmap (1.6 kb)"
Denys Vlasenko6d932992016-11-23 10:39:27 +010011//config: default y
12//config: select PLATFORM_LINUX
13//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020014//config: This program dumps the kernel's keyboard translation table to
15//config: stdout, in binary format. You can then use loadkmap to load it.
Denys Vlasenko6d932992016-11-23 10:39:27 +010016
Denys Vlasenkoff53bee2017-08-05 02:02:31 +020017//applet:IF_DUMPKMAP(APPLET_NOEXEC(dumpkmap, dumpkmap, BB_DIR_BIN, BB_SUID_DROP, dumpkmap))
Denys Vlasenkob9be7802017-08-06 21:23:03 +020018/* bb_common_bufsiz1 usage here is safe wrt NOEXEC: not expecting it to be zeroed. */
Denys Vlasenko6d932992016-11-23 10:39:27 +010019
20//kbuild:lib-$(CONFIG_DUMPKMAP) += dumpkmap.o
Eric Andersen61dc0572000-07-11 17:29:36 +000021
Pere Orga55068c42011-03-27 23:42:28 +020022//usage:#define dumpkmap_trivial_usage
23//usage: "> keymap"
24//usage:#define dumpkmap_full_usage "\n\n"
25//usage: "Print a binary keyboard translation table to stdout"
26//usage:
27//usage:#define dumpkmap_example_usage
28//usage: "$ dumpkmap > keymap\n"
29
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000030#include "libbb.h"
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +020031#include "common_bufsiz.h"
Eric Andersen61dc0572000-07-11 17:29:36 +000032
33/* From <linux/kd.h> */
34struct kbentry {
35 unsigned char kb_table;
36 unsigned char kb_index;
37 unsigned short kb_value;
38};
Mike Frysinger7e64db22005-07-31 22:09:33 +000039#define KDGKBENT 0x4B46 /* gets one entry in translation table */
Eric Andersen61dc0572000-07-11 17:29:36 +000040
41/* From <linux/keyboard.h> */
Mike Frysinger7e64db22005-07-31 22:09:33 +000042#define NR_KEYS 128
43#define MAX_NR_KEYMAPS 256
Eric Andersen61dc0572000-07-11 17:29:36 +000044
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000045int dumpkmap_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenko2fd45c22010-06-06 18:09:57 +020046int dumpkmap_main(int argc UNUSED_PARAM, char **argv)
Eric Andersen61dc0572000-07-11 17:29:36 +000047{
48 struct kbentry ke;
49 int i, j, fd;
Eric Andersen61dc0572000-07-11 17:29:36 +000050
Denys Vlasenko2fd45c22010-06-06 18:09:57 +020051 /* When user accidentally runs "dumpkmap FILE"
52 * instead of "dumpkmap >FILE", we'd dump binary stuff to tty.
Denys Vlasenko32ed30d2013-09-17 14:16:25 +020053 * Let's prevent it:
54 */
Denys Vlasenko2fd45c22010-06-06 18:09:57 +020055 if (argv[1])
56 bb_show_usage();
Denys Vlasenkoa355da02010-01-04 13:16:08 +010057/* bb_warn_ignoring_args(argv[1]);*/
Eric Andersen61dc0572000-07-11 17:29:36 +000058
Denis Vlasenko2afd5ab2008-08-05 23:32:27 +000059 fd = get_console_fd_or_die();
Eric Andersen61dc0572000-07-11 17:29:36 +000060
Denys Vlasenkob9be7802017-08-06 21:23:03 +020061#define flags bb_common_bufsiz1
62 setup_common_bufsiz();
Denys Vlasenko32ed30d2013-09-17 14:16:25 +020063 /* 0 1 2 3 4 5 6 7 8 9 a b c=12 */
64 memcpy(flags, "bkeymap\1\1\1\0\1\1\1\0\1\1\1\0\1",
65 /* Can use sizeof, or sizeof-1. sizeof is even, using that */
66 /****/ sizeof("bkeymap\1\1\1\0\1\1\1\0\1\1\1\0\1")
67 );
68 write(STDOUT_FILENO, flags, 7 + MAX_NR_KEYMAPS);
69#define flags7 (flags + 7)
Eric Andersen61dc0572000-07-11 17:29:36 +000070
Denys Vlasenko32ed30d2013-09-17 14:16:25 +020071 for (i = 0; i < 13; i++) {
72 if (flags7[i]) {
Eric Andersen61dc0572000-07-11 17:29:36 +000073 for (j = 0; j < NR_KEYS; j++) {
74 ke.kb_index = j;
75 ke.kb_table = i;
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +000076 if (!ioctl_or_perror(fd, KDGKBENT, &ke,
Denys Vlasenko32ed30d2013-09-17 14:16:25 +020077 "ioctl(KDGKBENT{%d,%d}) failed",
78 j, i)
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +000079 ) {
Denys Vlasenko32ed30d2013-09-17 14:16:25 +020080 write(STDOUT_FILENO, &ke.kb_value, 2);
Mike Frysingerf28c7ec2005-07-30 09:24:49 +000081 }
Eric Andersen61dc0572000-07-11 17:29:36 +000082 }
83 }
84 }
Bernhard Reutner-Fischerae4342c2008-05-19 08:18:50 +000085 if (ENABLE_FEATURE_CLEAN_UP) {
86 close(fd);
Bernhard Reutner-Fischerae4342c2008-05-19 08:18:50 +000087 }
Matt Kraai3e856ce2000-12-01 02:55:13 +000088 return EXIT_SUCCESS;
Eric Andersen61dc0572000-07-11 17:29:36 +000089}