e93ca31868429d8795ca6691ff04a371ae98a6ff
[oweals/busybox.git] / 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 *) xmalloc(maxct * sizeof(struct unipair));
106
107         for (glyph = 0; glyph < fontsize; glyph++) {
108                 while (tailsz >= 2) {
109                         unicode = (((u_short) inbuf[1]) << 8) + inbuf[0];
110                         tailsz -= 2;
111                         inbuf += 2;
112                         if (unicode == PSF_SEPARATOR)
113                                 break;
114                         up[ct].unicode = unicode;
115                         up[ct].fontpos = glyph;
116                         ct++;
117                 }
118         }
119
120         /* Note: after PIO_UNIMAPCLR and before PIO_UNIMAP
121            this printf did not work on many kernels */
122
123         advice.advised_hashsize = 0;
124         advice.advised_hashstep = 0;
125         advice.advised_hashlevel = 0;
126         if (ioctl(fd, PIO_UNIMAPCLR, &advice)) {
127 #ifdef ENOIOCTLCMD
128                 if (errno == ENOIOCTLCMD) {
129                         errorMsg("It seems this kernel is older than 1.1.92\n");
130                         errorMsg("No Unicode mapping table loaded.\n");
131                 } else
132 #endif
133                         perror("PIO_UNIMAPCLR");
134                 exit(1);
135         }
136         ud.entry_ct = ct;
137         ud.entries = up;
138         if (ioctl(fd, PIO_UNIMAP, &ud)) {
139 #if 0
140                 if (errno == ENOMEM) {
141                         /* change advice parameters */
142                 }
143 #endif
144                 perror("PIO_UNIMAP");
145                 exit(1);
146         }
147 }
148
149 static void loadnewfont(int fd)
150 {
151         int unit;
152         char inbuf[32768];                      /* primitive */
153         unsigned int inputlth, offset;
154
155         /*
156          * We used to look at the length of the input file
157          * with stat(); now that we accept compressed files,
158          * just read the entire file.
159          */
160         inputlth = fread(inbuf, 1, sizeof(inbuf), stdin);
161         if (ferror(stdin)) {
162                 perror("Error reading input font");
163                 exit(1);
164         }
165         /* use malloc/realloc in case of giant files;
166            maybe these do not occur: 16kB for the font,
167            and 16kB for the map leaves 32 unicode values
168            for each font position */
169         if (!feof(stdin)) {
170                 perror("Font too large");
171                 exit(1);
172         }
173
174         /* test for psf first */
175         {
176                 struct psf_header psfhdr;
177                 int fontsize;
178                 int hastable;
179                 unsigned int head0, head;
180
181                 if (inputlth < sizeof(struct psf_header))
182                         goto no_psf;
183
184                 psfhdr = *(struct psf_header *) &inbuf[0];
185
186                 if (!PSF_MAGIC_OK(psfhdr))
187                         goto no_psf;
188
189                 if (psfhdr.mode > PSF_MAXMODE) {
190                         errorMsg("Unsupported psf file mode\n");
191                         exit(1);
192                 }
193                 fontsize = ((psfhdr.mode & PSF_MODE512) ? 512 : 256);
194 #if !defined( PIO_FONTX ) || defined( __sparc__ )
195                 if (fontsize != 256) {
196                         errorMsg("Only fontsize 256 supported\n");
197                         exit(1);
198                 }
199 #endif
200                 hastable = (psfhdr.mode & PSF_MODEHASTAB);
201                 unit = psfhdr.charsize;
202                 head0 = sizeof(struct psf_header);
203
204                 head = head0 + fontsize * unit;
205                 if (head > inputlth || (!hastable && head != inputlth)) {
206                         errorMsg("Input file: bad length\n");
207                         exit(1);
208                 }
209                 do_loadfont(fd, inbuf + head0, unit, fontsize);
210                 if (hastable)
211                         do_loadtable(fd, inbuf + head, inputlth - head, fontsize);
212                 return;
213         }
214   no_psf:
215
216         /* file with three code pages? */
217         if (inputlth == 9780) {
218                 offset = 40;
219                 unit = 16;
220         } else {
221                 /* bare font */
222                 if (inputlth & 0377) {
223                         errorMsg("Bad input file size\n");
224                         exit(1);
225                 }
226                 offset = 0;
227                 unit = inputlth / 256;
228         }
229         do_loadfont(fd, inbuf + offset, unit, 256);
230 }