blob: 3d8de6bed340f10bda7f233df1620ee1085294ce [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
Denys Vlasenko6d932992016-11-23 10:39:27 +010012//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020013//config: This program dumps the kernel's keyboard translation table to
14//config: stdout, in binary format. You can then use loadkmap to load it.
Denys Vlasenko6d932992016-11-23 10:39:27 +010015
Denys Vlasenkoff53bee2017-08-05 02:02:31 +020016//applet:IF_DUMPKMAP(APPLET_NOEXEC(dumpkmap, dumpkmap, BB_DIR_BIN, BB_SUID_DROP, dumpkmap))
Denys Vlasenkob9be7802017-08-06 21:23:03 +020017/* bb_common_bufsiz1 usage here is safe wrt NOEXEC: not expecting it to be zeroed. */
Denys Vlasenko6d932992016-11-23 10:39:27 +010018
19//kbuild:lib-$(CONFIG_DUMPKMAP) += dumpkmap.o
Eric Andersen61dc0572000-07-11 17:29:36 +000020
Pere Orga55068c42011-03-27 23:42:28 +020021//usage:#define dumpkmap_trivial_usage
22//usage: "> keymap"
23//usage:#define dumpkmap_full_usage "\n\n"
24//usage: "Print a binary keyboard translation table to stdout"
25//usage:
26//usage:#define dumpkmap_example_usage
27//usage: "$ dumpkmap > keymap\n"
28
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000029#include "libbb.h"
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +020030#include "common_bufsiz.h"
Eric Andersen61dc0572000-07-11 17:29:36 +000031
32/* From <linux/kd.h> */
33struct kbentry {
34 unsigned char kb_table;
35 unsigned char kb_index;
36 unsigned short kb_value;
37};
Mike Frysinger7e64db22005-07-31 22:09:33 +000038#define KDGKBENT 0x4B46 /* gets one entry in translation table */
Eric Andersen61dc0572000-07-11 17:29:36 +000039
40/* From <linux/keyboard.h> */
Mike Frysinger7e64db22005-07-31 22:09:33 +000041#define NR_KEYS 128
42#define MAX_NR_KEYMAPS 256
Eric Andersen61dc0572000-07-11 17:29:36 +000043
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000044int dumpkmap_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenko2fd45c22010-06-06 18:09:57 +020045int dumpkmap_main(int argc UNUSED_PARAM, char **argv)
Eric Andersen61dc0572000-07-11 17:29:36 +000046{
47 struct kbentry ke;
48 int i, j, fd;
Eric Andersen61dc0572000-07-11 17:29:36 +000049
Denys Vlasenko2fd45c22010-06-06 18:09:57 +020050 /* When user accidentally runs "dumpkmap FILE"
51 * instead of "dumpkmap >FILE", we'd dump binary stuff to tty.
Denys Vlasenko32ed30d2013-09-17 14:16:25 +020052 * Let's prevent it:
53 */
Denys Vlasenko2fd45c22010-06-06 18:09:57 +020054 if (argv[1])
55 bb_show_usage();
Denys Vlasenkoa355da02010-01-04 13:16:08 +010056/* bb_warn_ignoring_args(argv[1]);*/
Eric Andersen61dc0572000-07-11 17:29:36 +000057
Denis Vlasenko2afd5ab2008-08-05 23:32:27 +000058 fd = get_console_fd_or_die();
Eric Andersen61dc0572000-07-11 17:29:36 +000059
Denys Vlasenkob9be7802017-08-06 21:23:03 +020060#define flags bb_common_bufsiz1
61 setup_common_bufsiz();
Denys Vlasenko32ed30d2013-09-17 14:16:25 +020062 /* 0 1 2 3 4 5 6 7 8 9 a b c=12 */
63 memcpy(flags, "bkeymap\1\1\1\0\1\1\1\0\1\1\1\0\1",
64 /* Can use sizeof, or sizeof-1. sizeof is even, using that */
65 /****/ sizeof("bkeymap\1\1\1\0\1\1\1\0\1\1\1\0\1")
66 );
67 write(STDOUT_FILENO, flags, 7 + MAX_NR_KEYMAPS);
68#define flags7 (flags + 7)
Eric Andersen61dc0572000-07-11 17:29:36 +000069
Denys Vlasenko32ed30d2013-09-17 14:16:25 +020070 for (i = 0; i < 13; i++) {
71 if (flags7[i]) {
Eric Andersen61dc0572000-07-11 17:29:36 +000072 for (j = 0; j < NR_KEYS; j++) {
73 ke.kb_index = j;
74 ke.kb_table = i;
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +000075 if (!ioctl_or_perror(fd, KDGKBENT, &ke,
Denys Vlasenko32ed30d2013-09-17 14:16:25 +020076 "ioctl(KDGKBENT{%d,%d}) failed",
77 j, i)
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +000078 ) {
Denys Vlasenko32ed30d2013-09-17 14:16:25 +020079 write(STDOUT_FILENO, &ke.kb_value, 2);
Mike Frysingerf28c7ec2005-07-30 09:24:49 +000080 }
Eric Andersen61dc0572000-07-11 17:29:36 +000081 }
82 }
83 }
Bernhard Reutner-Fischerae4342c2008-05-19 08:18:50 +000084 if (ENABLE_FEATURE_CLEAN_UP) {
85 close(fd);
Bernhard Reutner-Fischerae4342c2008-05-19 08:18:50 +000086 }
Matt Kraai3e856ce2000-12-01 02:55:13 +000087 return EXIT_SUCCESS;
Eric Andersen61dc0572000-07-11 17:29:36 +000088}