0897b32943be6d5f88c620a5e958ed370fe9a660
[oweals/busybox.git] / console-tools / dumpkmap.c
1 /* 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
23 #include <errno.h>
24 #include <fcntl.h>
25 #include <stdio.h>
26 #include <unistd.h>
27 #include <string.h>
28 #include <stdlib.h>
29 #include <sys/ioctl.h>
30 #include "busybox.h"
31
32 /* From <linux/kd.h> */
33 struct kbentry {
34         unsigned char kb_table;
35         unsigned char kb_index;
36         unsigned short kb_value;
37 };
38 static const int KDGKBENT = 0x4B46;  /* gets one entry in translation table */
39
40 /* From <linux/keyboard.h> */
41 static const int NR_KEYS = 128;
42 static const int MAX_NR_KEYMAPS = 256;
43
44 int 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
50         if (argc >= 2 && *argv[1] == '-')
51                 bb_show_usage();
52
53         fd = bb_xopen(CURRENT_VC, O_RDWR);
54
55         write(1, magic, 7);
56
57         for (i=0; i < MAX_NR_KEYMAPS; i++)
58                 flags[i] = 0;
59         flags[0] = 1;
60         flags[1] = 1;
61         flags[2] = 1;
62         flags[4] = 1;
63         flags[5] = 1;
64         flags[6] = 1;
65         flags[8] = 1;
66         flags[9] = 1;
67         flags[10] = 1;
68         flags[12] = 1;
69
70         /* dump flags */
71         for (i = 0; i < MAX_NR_KEYMAPS; i++)
72                 write(1, &flags[i], 1);
73
74         for (i = 0; i < MAX_NR_KEYMAPS; i++) {
75                 if (flags[i] == 1) {
76                         for (j = 0; j < NR_KEYS; j++) {
77                                 ke.kb_index = j;
78                                 ke.kb_table = i;
79                                 if (ioctl(fd, KDGKBENT, &ke) < 0) {
80                                         bb_error_msg("ioctl returned: %m, %s, %s, %xqq",
81                                                 (char *)&ke.kb_index,
82                                                 (char *)&ke.kb_table,
83                                                 (int)&ke.kb_value);
84                                 } else {
85                                         write(1, (void*)&ke.kb_value, 2);
86                                 }
87                         }
88                 }
89         }
90         close(fd);
91         return EXIT_SUCCESS;
92 }