blob: 5b5b296b4581ca1b568d24862dc5653fac62c8be [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 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 */
22
Eric Andersen61dc0572000-07-11 17:29:36 +000023#include <errno.h>
24#include <fcntl.h>
25#include <stdio.h>
Eric Andersened3ef502001-01-27 08:24:39 +000026#include <unistd.h>
27#include <string.h>
28#include <stdlib.h>
Eric Andersen61dc0572000-07-11 17:29:36 +000029#include <sys/ioctl.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000030#include "busybox.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
Eric Andersen61dc0572000-07-11 17:29:36 +000044int dumpkmap_main(int argc, char **argv)
45{
46 struct kbentry ke;
47 int i, j, fd;
48 char flags[MAX_NR_KEYMAPS], magic[] = "bkeymap";
49
Mike Frysingerf28c7ec2005-07-30 09:24:49 +000050 if (argc >= 2 && *argv[1] == '-')
Manuel Novoa III cad53642003-03-19 09:13:01 +000051 bb_show_usage();
Eric Andersen61dc0572000-07-11 17:29:36 +000052
Mike Frysingerf28c7ec2005-07-30 09:24:49 +000053 fd = bb_xopen(CURRENT_VC, O_RDWR);
Eric Andersen61dc0572000-07-11 17:29:36 +000054
55 write(1, magic, 7);
56
Mike Frysingere11ff712005-07-31 22:06:38 +000057 /* Here we want to set everything to 0 except for indexes:
58 * [0-2] [4-6] [8-10] [12] */
Mike Frysinger08c20362005-07-31 20:51:58 +000059 memset(flags, 0x00, MAX_NR_KEYMAPS);
Mike Frysingere11ff712005-07-31 22:06:38 +000060 memset(flags, 0x01, 13);
61 flags[3] = flags[7] = flags[11] = 0;
Eric Andersenc7bda1c2004-03-15 08:29:22 +000062
Eric Andersen61dc0572000-07-11 17:29:36 +000063 /* dump flags */
Mike Frysinger08c20362005-07-31 20:51:58 +000064 write(1, flags, MAX_NR_KEYMAPS);
Eric Andersen61dc0572000-07-11 17:29:36 +000065
66 for (i = 0; i < MAX_NR_KEYMAPS; i++) {
67 if (flags[i] == 1) {
68 for (j = 0; j < NR_KEYS; j++) {
69 ke.kb_index = j;
70 ke.kb_table = i;
71 if (ioctl(fd, KDGKBENT, &ke) < 0) {
Mike Frysinger198ea3c2005-07-30 09:29:10 +000072 bb_perror_msg("ioctl failed with %s, %s, %p",
Mike Frysingerf28c7ec2005-07-30 09:24:49 +000073 (char *)&ke.kb_index,
74 (char *)&ke.kb_table,
Mike Frysinger198ea3c2005-07-30 09:29:10 +000075 &ke.kb_value);
Mike Frysingerf28c7ec2005-07-30 09:24:49 +000076 } else {
77 write(1, (void*)&ke.kb_value, 2);
78 }
Eric Andersen61dc0572000-07-11 17:29:36 +000079 }
80 }
81 }
82 close(fd);
Matt Kraai3e856ce2000-12-01 02:55:13 +000083 return EXIT_SUCCESS;
Eric Andersen61dc0572000-07-11 17:29:36 +000084}