1
/* vi: set sw=4 ts=4: */
3
* Mini dumpkmap implementation for busybox
5
* Copyright (C) Arne Bernin <arne@matrix.loopback.org>
7
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
9
//config:config DUMPKMAP
10
//config: bool "dumpkmap (1.9 kb)"
13
//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.
16
//applet:IF_DUMPKMAP(APPLET_NOEXEC(dumpkmap, dumpkmap, BB_DIR_BIN, BB_SUID_DROP, dumpkmap))
17
/* bb_common_bufsiz1 usage here is safe wrt NOEXEC: not expecting it to be zeroed. */
19
//kbuild:lib-$(CONFIG_DUMPKMAP) += dumpkmap.o
21
//usage:#define dumpkmap_trivial_usage
23
//usage:#define dumpkmap_full_usage "\n\n"
24
//usage: "Print a binary keyboard translation table to stdout"
26
//usage:#define dumpkmap_example_usage
27
//usage: "$ dumpkmap > keymap\n"
30
#include "common_bufsiz.h"
32
/* From <linux/kd.h> */
34
unsigned char kb_table;
35
unsigned char kb_index;
36
unsigned short kb_value;
38
#define KDGKBENT 0x4B46 /* gets one entry in translation table */
40
/* From <linux/keyboard.h> */
42
#define MAX_NR_KEYMAPS 256
44
int dumpkmap_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
45
int dumpkmap_main(int argc UNUSED_PARAM, char **argv)
50
/* When user accidentally runs "dumpkmap FILE"
51
* instead of "dumpkmap >FILE", we'd dump binary stuff to tty.
56
/* bb_warn_ignoring_args(argv[1]);*/
58
fd = get_console_fd_or_die();
60
#define flags bb_common_bufsiz1
61
setup_common_bufsiz();
62
/* 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")
67
write(STDOUT_FILENO, flags, 7 + MAX_NR_KEYMAPS);
68
#define flags7 (flags + 7)
70
for (i = 0; i < 13; i++) {
72
for (j = 0; j < NR_KEYS; j++) {
75
if (!ioctl_or_perror(fd, KDGKBENT, &ke,
76
"ioctl(KDGKBENT{%d,%d}) failed",
79
write(STDOUT_FILENO, &ke.kb_value, 2);
84
if (ENABLE_FEATURE_CLEAN_UP) {