2000-02-09 01:28:47 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-10-21 03:38:37 +05:30
|
|
|
/*
|
|
|
|
* Mini loadkmap implementation for busybox
|
|
|
|
*
|
|
|
|
* Copyright (C) 1998 Enrique Zanardi <ezanardi@ull.es>
|
|
|
|
*
|
2010-08-16 23:44:46 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
1999-10-21 03:38:37 +05:30
|
|
|
*/
|
2011-03-28 03:12:28 +05:30
|
|
|
|
|
|
|
//usage:#define loadkmap_trivial_usage
|
|
|
|
//usage: "< keymap"
|
|
|
|
//usage:#define loadkmap_full_usage "\n\n"
|
2015-01-25 00:16:45 +05:30
|
|
|
//usage: "Load a binary keyboard translation table from stdin"
|
|
|
|
////usage: "\n"
|
|
|
|
////usage: "\n -C TTY Affect TTY instead of /dev/tty"
|
2011-03-28 03:12:28 +05:30
|
|
|
//usage:
|
|
|
|
//usage:#define loadkmap_example_usage
|
|
|
|
//usage: "$ loadkmap < /etc/i18n/lang-keymap\n"
|
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
1999-10-05 21:54:54 +05:30
|
|
|
|
2000-10-25 22:18:15 +05:30
|
|
|
#define BINARY_KEYMAP_MAGIC "bkeymap"
|
|
|
|
|
2000-07-09 00:25:24 +05:30
|
|
|
/* From <linux/kd.h> */
|
|
|
|
struct kbentry {
|
|
|
|
unsigned char kb_table;
|
|
|
|
unsigned char kb_index;
|
|
|
|
unsigned short kb_value;
|
|
|
|
};
|
2003-11-21 14:57:02 +05:30
|
|
|
/* sets one entry in translation table */
|
|
|
|
#define KDSKBENT 0x4B47
|
2000-07-09 00:25:24 +05:30
|
|
|
|
|
|
|
/* From <linux/keyboard.h> */
|
2003-11-21 14:57:02 +05:30
|
|
|
#define NR_KEYS 128
|
|
|
|
#define MAX_NR_KEYMAPS 256
|
2000-07-09 00:25:24 +05:30
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int loadkmap_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2010-06-06 21:40:50 +05:30
|
|
|
int loadkmap_main(int argc UNUSED_PARAM, char **argv)
|
2000-02-09 01:28:47 +05:30
|
|
|
{
|
|
|
|
struct kbentry ke;
|
2003-11-21 14:57:02 +05:30
|
|
|
int i, j, fd;
|
2006-12-20 02:02:02 +05:30
|
|
|
uint16_t ibuff[NR_KEYS];
|
2008-11-09 03:09:06 +05:30
|
|
|
/* const char *tty_name = CURRENT_TTY; */
|
2010-01-04 17:46:08 +05:30
|
|
|
RESERVE_CONFIG_BUFFER(flags, MAX_NR_KEYMAPS);
|
1999-10-05 21:54:54 +05:30
|
|
|
|
2010-06-06 21:39:57 +05:30
|
|
|
/* When user accidentally runs "loadkmap FILE"
|
|
|
|
* instead of "loadkmap <FILE", we end up waiting for input from tty.
|
|
|
|
* Let's prevent it: */
|
|
|
|
if (argv[1])
|
|
|
|
bb_show_usage();
|
2010-01-04 17:46:08 +05:30
|
|
|
/* bb_warn_ignoring_args(argv[1]); */
|
2013-09-19 21:26:59 +05:30
|
|
|
|
2008-08-06 05:02:27 +05:30
|
|
|
fd = get_console_fd_or_die();
|
2008-11-09 03:09:06 +05:30
|
|
|
/* or maybe:
|
|
|
|
opt = getopt32(argv, "C:", &tty_name);
|
2009-10-27 03:57:08 +05:30
|
|
|
fd = xopen_nonblocking(tty_name);
|
2008-11-09 03:09:06 +05:30
|
|
|
*/
|
2000-02-09 01:28:47 +05:30
|
|
|
|
2008-05-19 13:48:50 +05:30
|
|
|
xread(STDIN_FILENO, flags, 7);
|
2015-03-12 22:18:34 +05:30
|
|
|
if (!is_prefixed_with(flags, BINARY_KEYMAP_MAGIC))
|
2008-05-19 13:48:50 +05:30
|
|
|
bb_error_msg_and_die("not a valid binary keymap");
|
1999-10-05 21:54:54 +05:30
|
|
|
|
2008-05-19 13:48:50 +05:30
|
|
|
xread(STDIN_FILENO, flags, MAX_NR_KEYMAPS);
|
2000-02-09 01:28:47 +05:30
|
|
|
|
|
|
|
for (i = 0; i < MAX_NR_KEYMAPS; i++) {
|
2013-09-19 21:26:59 +05:30
|
|
|
if (flags[i] != 1)
|
|
|
|
continue;
|
|
|
|
xread(STDIN_FILENO, ibuff, NR_KEYS * sizeof(uint16_t));
|
|
|
|
for (j = 0; j < NR_KEYS; j++) {
|
|
|
|
ke.kb_index = j;
|
|
|
|
ke.kb_table = i;
|
|
|
|
ke.kb_value = ibuff[j];
|
|
|
|
/*
|
|
|
|
* Note: table[idx:0] can contain special value
|
|
|
|
* K_ALLOCATED (marks allocated tables in kernel).
|
|
|
|
* dumpkmap saves the value as-is; but attempts
|
|
|
|
* to load it here fail, since it isn't a valid
|
|
|
|
* key value: it is K(KT_SPEC,126) == 2<<8 + 126,
|
|
|
|
* whereas last valid KT_SPEC is
|
|
|
|
* K_BARENUMLOCK == K(KT_SPEC,19).
|
|
|
|
* So far we just ignore these errors:
|
|
|
|
*/
|
|
|
|
ioctl(fd, KDSKBENT, &ke);
|
2000-02-09 01:28:47 +05:30
|
|
|
}
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|
2003-11-21 14:57:02 +05:30
|
|
|
|
2008-05-19 13:48:50 +05:30
|
|
|
if (ENABLE_FEATURE_CLEAN_UP) {
|
|
|
|
close(fd);
|
|
|
|
RELEASE_CONFIG_BUFFER(flags);
|
|
|
|
}
|
|
|
|
return EXIT_SUCCESS;
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|