927c2bad47012018ccadb80609b8ab63245380de
[oweals/busybox.git] / console-tools / loadfont.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * loadfont.c - Eugene Crosser & Andries Brouwer
4  *
5  * Version 0.96bb
6  *
7  * Loads the console font, and possibly the corresponding screen map(s).
8  * (Adapted for busybox by Matej Vela.)
9  */
10 #include "internal.h"
11 #include <stdio.h>
12 #include <string.h>
13 #include <fcntl.h>
14 #include <memory.h>
15 #include <stdlib.h>
16 #include <unistd.h>
17 #include <sys/types.h>
18 #include <dirent.h>
19 #include <errno.h>
20 #include <sys/ioctl.h>
21 #include <sys/kd.h>
22 #include <endian.h>
23
24 #define PSF_MAGIC1      0x36
25 #define PSF_MAGIC2      0x04
26
27 #define PSF_MODE512    0x01
28 #define PSF_MODEHASTAB 0x02
29 #define PSF_MAXMODE    0x03
30 #define PSF_SEPARATOR  0xFFFF
31
32 struct psf_header {
33         unsigned char magic1, magic2;   /* Magic number */
34         unsigned char mode;                     /* PSF font mode */
35         unsigned char charsize;         /* Character size */
36 };
37
38 #define PSF_MAGIC_OK(x) ((x).magic1 == PSF_MAGIC1 && (x).magic2 == PSF_MAGIC2)
39
40 static void loadnewfont(int fd);
41
42 extern int loadfont_main(int argc, char **argv)
43 {
44         int fd;
45
46         if (argc>=2 && *argv[1]=='-') {
47                 usage(loadfont_usage);
48         }
49
50         fd = open("/dev/tty0", O_RDWR);
51         if (fd < 0) {
52                 errorMsg("Error opening /dev/tty0: %s\n", strerror(errno));
53                 return( FALSE);
54         }
55         loadnewfont(fd);
56
57         return( TRUE);
58 }
59
60 static void do_loadfont(int fd, char *inbuf, int unit, int fontsize)
61 {
62         char buf[16384];
63         int i;
64
65         memset(buf, 0, sizeof(buf));
66
67         if (unit < 1 || unit > 32) {
68                 errorMsg("Bad character size %d\n", unit);
69                 exit(1);
70         }
71
72         for (i = 0; i < fontsize; i++)
73                 memcpy(buf + (32 * i), inbuf + (unit * i), unit);
74
75 #if defined( PIO_FONTX ) && !defined( __sparc__ )
76         {
77                 struct consolefontdesc cfd;
78
79                 cfd.charcount = fontsize;
80                 cfd.charheight = unit;
81                 cfd.chardata = buf;
82
83                 if (ioctl(fd, PIO_FONTX, &cfd) == 0)
84                         return;                         /* success */
85                 perror("PIO_FONTX ioctl error (trying PIO_FONT)");
86         }
87 #endif
88         if (ioctl(fd, PIO_FONT, buf)) {
89                 perror("PIO_FONT ioctl error");
90                 exit(1);
91         }
92 }
93
94 static void
95 do_loadtable(int fd, unsigned char *inbuf, int tailsz, int fontsize)
96 {
97         struct unimapinit advice;
98         struct unimapdesc ud;
99         struct unipair *up;
100         int ct = 0, maxct;
101         int glyph;
102         u_short unicode;
103
104         maxct = tailsz;                         /* more than enough */
105         up = (struct unipair *) malloc(maxct * sizeof(struct unipair));
106
107         if (!up) {
108                 errorMsg("Out of memory?\n");
109                 exit(1);
110         }
111         for (glyph = 0; glyph < fontsize; glyph++) {
112                 while (tailsz >= 2) {
113                         unicode = (((u_short) inbuf[1]) << 8) + inbuf[0];
114                         tailsz -= 2;
115                         inbuf += 2;
116                         if (unicode == PSF_SEPARATOR)
117                                 break;
118                         up[ct].unicode = unicode;
119                         up[ct].fontpos = glyph;
120                         ct++;
121                 }
122         }
123
124         /* Note: after PIO_UNIMAPCLR and before PIO_UNIMAP
125            this printf did not work on many kernels */
126
127         advice.advised_hashsize = 0;
128         advice.advised_hashstep = 0;
129         advice.advised_hashlevel = 0;
130         if (ioctl(fd, PIO_UNIMAPCLR, &advice)) {
131 #ifdef ENOIOCTLCMD
132                 if (errno == ENOIOCTLCMD) {
133                         errorMsg("It seems this kernel is older than 1.1.92\n");
134                         errorMsg("No Unicode mapping table loaded.\n");
135                 } else
136 #endif
137                         perror("PIO_UNIMAPCLR");
138                 exit(1);
139         }
140         ud.entry_ct = ct;
141         ud.entries = up;
142         if (ioctl(fd, PIO_UNIMAP, &ud)) {
143 #if 0
144                 if (errno == ENOMEM) {
145                         /* change advice parameters */
146                 }
147 #endif
148                 perror("PIO_UNIMAP");
149                 exit(1);
150         }
151 }
152
153 static void loadnewfont(int fd)
154 {
155         int unit;
156         char inbuf[32768];                      /* primitive */
157         unsigned int inputlth, offset;
158
159         /*
160          * We used to look at the length of the input file
161          * with stat(); now that we accept compressed files,
162          * just read the entire file.
163          */
164         inputlth = fread(inbuf, 1, sizeof(inbuf), stdin);
165         if (ferror(stdin)) {
166                 perror("Error reading input font");
167                 exit(1);
168         }
169         /* use malloc/realloc in case of giant files;
170            maybe these do not occur: 16kB for the font,
171            and 16kB for the map leaves 32 unicode values
172            for each font position */
173         if (!feof(stdin)) {
174                 perror("Font too large");
175                 exit(1);
176         }
177
178         /* test for psf first */
179         {
180                 struct psf_header psfhdr;
181                 int fontsize;
182                 int hastable;
183                 unsigned int head0, head;
184
185                 if (inputlth < sizeof(struct psf_header))
186                         goto no_psf;
187
188                 psfhdr = *(struct psf_header *) &inbuf[0];
189
190                 if (!PSF_MAGIC_OK(psfhdr))
191                         goto no_psf;
192
193                 if (psfhdr.mode > PSF_MAXMODE) {
194                         errorMsg("Unsupported psf file mode\n");
195                         exit(1);
196                 }
197                 fontsize = ((psfhdr.mode & PSF_MODE512) ? 512 : 256);
198 #if !defined( PIO_FONTX ) || defined( __sparc__ )
199                 if (fontsize != 256) {
200                         errorMsg("Only fontsize 256 supported\n");
201                         exit(1);
202                 }
203 #endif
204                 hastable = (psfhdr.mode & PSF_MODEHASTAB);
205                 unit = psfhdr.charsize;
206                 head0 = sizeof(struct psf_header);
207
208                 head = head0 + fontsize * unit;
209                 if (head > inputlth || (!hastable && head != inputlth)) {
210                         errorMsg("Input file: bad length\n");
211                         exit(1);
212                 }
213                 do_loadfont(fd, inbuf + head0, unit, fontsize);
214                 if (hastable)
215                         do_loadtable(fd, inbuf + head, inputlth - head, fontsize);
216                 return;
217         }
218   no_psf:
219
220         /* file with three code pages? */
221         if (inputlth == 9780) {
222                 offset = 40;
223                 unit = 16;
224         } else {
225                 /* bare font */
226                 if (inputlth & 0377) {
227                         errorMsg("Bad input file size\n");
228                         exit(1);
229                 }
230                 offset = 0;
231                 unit = inputlth / 256;
232         }
233         do_loadfont(fd, inbuf + offset, unit, 256);
234 }