blob: b803e579a113ac8a61ce2101fb37ef3ced485cdf [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 *
9 */
Denys Vlasenko6d932992016-11-23 10:39:27 +010010//config:config DUMPKMAP
Denys Vlasenko4eed2c62017-07-18 22:01:24 +020011//config: bool "dumpkmap (1.3 kb)"
Denys Vlasenko6d932992016-11-23 10:39:27 +010012//config: default y
13//config: select PLATFORM_LINUX
14//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020015//config: This program dumps the kernel's keyboard translation table to
16//config: stdout, in binary format. You can then use loadkmap to load it.
Denys Vlasenko6d932992016-11-23 10:39:27 +010017
Denys Vlasenkoff53bee2017-08-05 02:02:31 +020018//applet:IF_DUMPKMAP(APPLET_NOEXEC(dumpkmap, dumpkmap, BB_DIR_BIN, BB_SUID_DROP, dumpkmap))
Denys Vlasenkob9be7802017-08-06 21:23:03 +020019/* bb_common_bufsiz1 usage here is safe wrt NOEXEC: not expecting it to be zeroed. */
Denys Vlasenko6d932992016-11-23 10:39:27 +010020
21//kbuild:lib-$(CONFIG_DUMPKMAP) += dumpkmap.o
Eric Andersen61dc0572000-07-11 17:29:36 +000022
Pere Orga55068c42011-03-27 23:42:28 +020023//usage:#define dumpkmap_trivial_usage
24//usage: "> keymap"
25//usage:#define dumpkmap_full_usage "\n\n"
26//usage: "Print a binary keyboard translation table to stdout"
27//usage:
28//usage:#define dumpkmap_example_usage
29//usage: "$ dumpkmap > keymap\n"
30
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000031#include "libbb.h"
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +020032#include "common_bufsiz.h"
Eric Andersen61dc0572000-07-11 17:29:36 +000033
34/* From <linux/kd.h> */
35struct kbentry {
36 unsigned char kb_table;
37 unsigned char kb_index;
38 unsigned short kb_value;
39};
Mike Frysinger7e64db22005-07-31 22:09:33 +000040#define KDGKBENT 0x4B46 /* gets one entry in translation table */
Eric Andersen61dc0572000-07-11 17:29:36 +000041
42/* From <linux/keyboard.h> */
Mike Frysinger7e64db22005-07-31 22:09:33 +000043#define NR_KEYS 128
44#define MAX_NR_KEYMAPS 256
Eric Andersen61dc0572000-07-11 17:29:36 +000045
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000046int dumpkmap_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenko2fd45c22010-06-06 18:09:57 +020047int dumpkmap_main(int argc UNUSED_PARAM, char **argv)
Eric Andersen61dc0572000-07-11 17:29:36 +000048{
49 struct kbentry ke;
50 int i, j, fd;
Eric Andersen61dc0572000-07-11 17:29:36 +000051
Denys Vlasenko2fd45c22010-06-06 18:09:57 +020052 /* When user accidentally runs "dumpkmap FILE"
53 * instead of "dumpkmap >FILE", we'd dump binary stuff to tty.
Denys Vlasenko32ed30d2013-09-17 14:16:25 +020054 * Let's prevent it:
55 */
Denys Vlasenko2fd45c22010-06-06 18:09:57 +020056 if (argv[1])
57 bb_show_usage();
Denys Vlasenkoa355da02010-01-04 13:16:08 +010058/* bb_warn_ignoring_args(argv[1]);*/
Eric Andersen61dc0572000-07-11 17:29:36 +000059
Denis Vlasenko2afd5ab2008-08-05 23:32:27 +000060 fd = get_console_fd_or_die();
Eric Andersen61dc0572000-07-11 17:29:36 +000061
Denys Vlasenkob9be7802017-08-06 21:23:03 +020062#define flags bb_common_bufsiz1
63 setup_common_bufsiz();
Denys Vlasenko32ed30d2013-09-17 14:16:25 +020064 /* 0 1 2 3 4 5 6 7 8 9 a b c=12 */
65 memcpy(flags, "bkeymap\1\1\1\0\1\1\1\0\1\1\1\0\1",
66 /* Can use sizeof, or sizeof-1. sizeof is even, using that */
67 /****/ sizeof("bkeymap\1\1\1\0\1\1\1\0\1\1\1\0\1")
68 );
69 write(STDOUT_FILENO, flags, 7 + MAX_NR_KEYMAPS);
70#define flags7 (flags + 7)
Eric Andersen61dc0572000-07-11 17:29:36 +000071
Denys Vlasenko32ed30d2013-09-17 14:16:25 +020072 for (i = 0; i < 13; i++) {
73 if (flags7[i]) {
Eric Andersen61dc0572000-07-11 17:29:36 +000074 for (j = 0; j < NR_KEYS; j++) {
75 ke.kb_index = j;
76 ke.kb_table = i;
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +000077 if (!ioctl_or_perror(fd, KDGKBENT, &ke,
Denys Vlasenko32ed30d2013-09-17 14:16:25 +020078 "ioctl(KDGKBENT{%d,%d}) failed",
79 j, i)
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +000080 ) {
Denys Vlasenko32ed30d2013-09-17 14:16:25 +020081 write(STDOUT_FILENO, &ke.kb_value, 2);
Mike Frysingerf28c7ec2005-07-30 09:24:49 +000082 }
Eric Andersen61dc0572000-07-11 17:29:36 +000083 }
84 }
85 }
Bernhard Reutner-Fischerae4342c2008-05-19 08:18:50 +000086 if (ENABLE_FEATURE_CLEAN_UP) {
87 close(fd);
Bernhard Reutner-Fischerae4342c2008-05-19 08:18:50 +000088 }
Matt Kraai3e856ce2000-12-01 02:55:13 +000089 return EXIT_SUCCESS;
Eric Andersen61dc0572000-07-11 17:29:36 +000090}