#define -> static const int. Also got rid of some big static buffers.
[platform/upstream/busybox.git] / console-tools / loadkmap.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini loadkmap implementation for busybox
4  *
5  * Copyright (C) 1998 Enrique Zanardi <ezanardi@ull.es>
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 "busybox.h"
24 #include <errno.h>
25 #include <fcntl.h>
26 #include <stdio.h>
27 #include <sys/ioctl.h>
28
29 #define BINARY_KEYMAP_MAGIC "bkeymap"
30
31 /* From <linux/kd.h> */
32 struct kbentry {
33         unsigned char kb_table;
34         unsigned char kb_index;
35         unsigned short kb_value;
36 };
37 static const int KDSKBENT = 0x4B47;  /* sets one entry in translation table */
38
39 /* From <linux/keyboard.h> */
40 static const int NR_KEYS = 128;
41 static const int MAX_NR_KEYMAPS = 256;
42
43 int loadkmap_main(int argc, char **argv)
44 {
45         struct kbentry ke;
46         u_short *ibuff;
47         int i, j, fd, readsz, pos, ibuffsz = NR_KEYS * sizeof(u_short);
48         char flags[MAX_NR_KEYMAPS], buff[7];
49
50         if (argc != 1)
51                 usage(loadkmap_usage);
52
53         fd = open("/dev/tty0", O_RDWR);
54         if (fd < 0)
55                 perror_msg_and_die("Error opening /dev/tty0");
56
57         read(0, buff, 7);
58         if (0 != strncmp(buff, BINARY_KEYMAP_MAGIC, 7))
59                 error_msg_and_die("This is not a valid binary keymap.\n");
60
61         if (MAX_NR_KEYMAPS != read(0, flags, MAX_NR_KEYMAPS))
62                 perror_msg_and_die("Error reading keymap flags");
63
64         ibuff = (u_short *) xmalloc(ibuffsz);
65
66         for (i = 0; i < MAX_NR_KEYMAPS; i++) {
67                 if (flags[i] == 1) {
68                         pos = 0;
69                         while (pos < ibuffsz) {
70                                 if ((readsz = read(0, (char *) ibuff + pos, ibuffsz - pos)) < 0)
71                                         perror_msg_and_die("Error reading keymap");
72                                 pos += readsz;
73                         }
74                         for (j = 0; j < NR_KEYS; j++) {
75                                 ke.kb_index = j;
76                                 ke.kb_table = i;
77                                 ke.kb_value = ibuff[j];
78                                 ioctl(fd, KDSKBENT, &ke);
79                         }
80                 }
81         }
82         /* Don't bother to close files.  Exit does that 
83          * automagically, so we can save a few bytes */
84         /* close(fd); */
85         return EXIT_SUCCESS;
86 }