Fix calls to {m,c,re}alloc so that they use x{m,c,re}alloc instead of
[oweals/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 "internal.h"
24 #include <errno.h>
25 #include <fcntl.h>
26 #include <stdio.h>
27 #include <sys/ioctl.h>
28
29 /* From <linux/kd.h> */
30 struct kbentry {
31         unsigned char kb_table;
32         unsigned char kb_index;
33         unsigned short kb_value;
34 };
35 #define KDSKBENT        0x4B47  /* sets one entry in translation table */
36
37 /* From <linux/keyboard.h> */
38 #define NR_KEYS         128
39 #define MAX_NR_KEYMAPS  256
40
41 int loadkmap_main(int argc, char **argv)
42 {
43         struct kbentry ke;
44         u_short *ibuff;
45         int i, j, fd, readsz, pos, ibuffsz = NR_KEYS * sizeof(u_short);
46         char flags[MAX_NR_KEYMAPS], magic[] = "bkeymap", buff[7];
47
48         if (argc>=2 && *argv[1]=='-') {
49                 usage(loadkmap_usage);
50         }
51
52         fd = open("/dev/tty0", O_RDWR);
53         if (fd < 0) {
54                 errorMsg("Error opening /dev/tty0: %s\n", strerror(errno));
55                 exit(FALSE);
56         }
57
58         read(0, buff, 7);
59         if (0 != strncmp(buff, magic, 7)) {
60                 errorMsg("This is not a valid binary keymap.\n");
61                 exit(FALSE);
62         }
63
64         if (MAX_NR_KEYMAPS != read(0, flags, MAX_NR_KEYMAPS)) {
65                 errorMsg("Error reading keymap flags: %s\n",
66                                 strerror(errno));
67                 exit(FALSE);
68         }
69
70         ibuff = (u_short *) xmalloc(ibuffsz);
71
72         for (i = 0; i < MAX_NR_KEYMAPS; i++) {
73                 if (flags[i] == 1) {
74                         pos = 0;
75                         while (pos < ibuffsz) {
76                                 if ((readsz = read(0, (char *) ibuff + pos, ibuffsz - pos))
77                                         < 0) {
78                                         errorMsg("Error reading keymap: %s\n",
79                                                         strerror(errno));
80                                         exit(FALSE);
81                                 }
82                                 pos += readsz;
83                         }
84                         for (j = 0; j < NR_KEYS; j++) {
85                                 ke.kb_index = j;
86                                 ke.kb_table = i;
87                                 ke.kb_value = ibuff[j];
88                                 ioctl(fd, KDSKBENT, &ke);
89                         }
90                 }
91         }
92         /* Don't bother to close files.  Exit does that 
93          * automagically, so we can save a few bytes */
94         /* close(fd); */
95         return(TRUE);
96 }