blob: b6fd466dc8a83f63b8e0e5a8101b71e24d2f0bbc [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 */
Bernhard Reutner-Fischerae4342c2008-05-19 08:18:50 +000010/* no options, no getopt */
Eric Andersen61dc0572000-07-11 17:29:36 +000011
Pere Orga55068c42011-03-27 23:42:28 +020012//usage:#define dumpkmap_trivial_usage
13//usage: "> keymap"
14//usage:#define dumpkmap_full_usage "\n\n"
15//usage: "Print a binary keyboard translation table to stdout"
16//usage:
17//usage:#define dumpkmap_example_usage
18//usage: "$ dumpkmap > keymap\n"
19
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000020#include "libbb.h"
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +020021#include "common_bufsiz.h"
Eric Andersen61dc0572000-07-11 17:29:36 +000022
23/* From <linux/kd.h> */
24struct kbentry {
25 unsigned char kb_table;
26 unsigned char kb_index;
27 unsigned short kb_value;
28};
Mike Frysinger7e64db22005-07-31 22:09:33 +000029#define KDGKBENT 0x4B46 /* gets one entry in translation table */
Eric Andersen61dc0572000-07-11 17:29:36 +000030
31/* From <linux/keyboard.h> */
Mike Frysinger7e64db22005-07-31 22:09:33 +000032#define NR_KEYS 128
33#define MAX_NR_KEYMAPS 256
Eric Andersen61dc0572000-07-11 17:29:36 +000034
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000035int dumpkmap_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenko2fd45c22010-06-06 18:09:57 +020036int dumpkmap_main(int argc UNUSED_PARAM, char **argv)
Eric Andersen61dc0572000-07-11 17:29:36 +000037{
38 struct kbentry ke;
39 int i, j, fd;
Denys Vlasenko32ed30d2013-09-17 14:16:25 +020040#define flags bb_common_bufsiz1
Denys Vlasenko9de2e5a2016-04-21 18:38:51 +020041 setup_common_bufsiz();
Eric Andersen61dc0572000-07-11 17:29:36 +000042
Denys Vlasenko2fd45c22010-06-06 18:09:57 +020043 /* When user accidentally runs "dumpkmap FILE"
44 * instead of "dumpkmap >FILE", we'd dump binary stuff to tty.
Denys Vlasenko32ed30d2013-09-17 14:16:25 +020045 * Let's prevent it:
46 */
Denys Vlasenko2fd45c22010-06-06 18:09:57 +020047 if (argv[1])
48 bb_show_usage();
Denys Vlasenkoa355da02010-01-04 13:16:08 +010049/* bb_warn_ignoring_args(argv[1]);*/
Eric Andersen61dc0572000-07-11 17:29:36 +000050
Denis Vlasenko2afd5ab2008-08-05 23:32:27 +000051 fd = get_console_fd_or_die();
Eric Andersen61dc0572000-07-11 17:29:36 +000052
Denys Vlasenko32ed30d2013-09-17 14:16:25 +020053#if 0
Bernhard Reutner-Fischerae4342c2008-05-19 08:18:50 +000054 write(STDOUT_FILENO, "bkeymap", 7);
Mike Frysingere11ff712005-07-31 22:06:38 +000055 /* Here we want to set everything to 0 except for indexes:
Denys Vlasenko32ed30d2013-09-17 14:16:25 +020056 * [0-2] [4-6] [8-10] [12]
57 */
58 /*memset(flags, 0x00, MAX_NR_KEYMAPS); - already is */
Mike Frysingere11ff712005-07-31 22:06:38 +000059 memset(flags, 0x01, 13);
60 flags[3] = flags[7] = flags[11] = 0;
Eric Andersen61dc0572000-07-11 17:29:36 +000061 /* dump flags */
Bernhard Reutner-Fischerae4342c2008-05-19 08:18:50 +000062 write(STDOUT_FILENO, flags, MAX_NR_KEYMAPS);
Denys Vlasenko32ed30d2013-09-17 14:16:25 +020063#define flags7 flags
64#else
65 /* Same effect */
66 /* 0 1 2 3 4 5 6 7 8 9 a b c=12 */
67 memcpy(flags, "bkeymap\1\1\1\0\1\1\1\0\1\1\1\0\1",
68 /* Can use sizeof, or sizeof-1. sizeof is even, using that */
69 /****/ sizeof("bkeymap\1\1\1\0\1\1\1\0\1\1\1\0\1")
70 );
71 write(STDOUT_FILENO, flags, 7 + MAX_NR_KEYMAPS);
72#define flags7 (flags + 7)
73#endif
Eric Andersen61dc0572000-07-11 17:29:36 +000074
Denys Vlasenko32ed30d2013-09-17 14:16:25 +020075 for (i = 0; i < 13; i++) {
76 if (flags7[i]) {
Eric Andersen61dc0572000-07-11 17:29:36 +000077 for (j = 0; j < NR_KEYS; j++) {
78 ke.kb_index = j;
79 ke.kb_table = i;
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +000080 if (!ioctl_or_perror(fd, KDGKBENT, &ke,
Denys Vlasenko32ed30d2013-09-17 14:16:25 +020081 "ioctl(KDGKBENT{%d,%d}) failed",
82 j, i)
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +000083 ) {
Denys Vlasenko32ed30d2013-09-17 14:16:25 +020084 write(STDOUT_FILENO, &ke.kb_value, 2);
Mike Frysingerf28c7ec2005-07-30 09:24:49 +000085 }
Eric Andersen61dc0572000-07-11 17:29:36 +000086 }
87 }
88 }
Bernhard Reutner-Fischerae4342c2008-05-19 08:18:50 +000089 if (ENABLE_FEATURE_CLEAN_UP) {
90 close(fd);
Bernhard Reutner-Fischerae4342c2008-05-19 08:18:50 +000091 }
Matt Kraai3e856ce2000-12-01 02:55:13 +000092 return EXIT_SUCCESS;
Eric Andersen61dc0572000-07-11 17:29:36 +000093}