31c6d2495d3aad290cf6d87f82edeaff4a40d998
[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 <stdio.h>
11 #include <string.h>
12 #include <fcntl.h>
13 #include <memory.h>
14 #include <stdlib.h>
15 #include <unistd.h>
16 #include <sys/types.h>
17 #include <dirent.h>
18 #include <errno.h>
19 #include <sys/ioctl.h>
20 #include <sys/kd.h>
21 #include <endian.h>
22 #include "busybox.h"
23
24 static const int PSF_MAGIC1 = 0x36;
25 static const int PSF_MAGIC2 = 0x04;
26
27 static const int PSF_MODE512 = 0x01;
28 static const int PSF_MODEHASTAB = 0x02;
29 static const int PSF_MAXMODE = 0x03;
30 static const int 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 int loadfont_main(int argc, char **argv)
43 {
44         int fd;
45
46         if (argc != 1)
47                 bb_show_usage();
48
49         fd = bb_xopen(CURRENT_VC, O_RDWR);
50         loadnewfont(fd);
51
52         return EXIT_SUCCESS;
53 }
54
55 static void do_loadfont(int fd, unsigned char *inbuf, int unit, int fontsize)
56 {
57         char buf[16384];
58         int i;
59
60         memset(buf, 0, sizeof(buf));
61
62         if (unit < 1 || unit > 32)
63                 bb_error_msg_and_die("Bad character size %d", unit);
64
65         for (i = 0; i < fontsize; i++)
66                 memcpy(buf + (32 * i), inbuf + (unit * i), unit);
67
68 #if defined( PIO_FONTX ) && !defined( __sparc__ )
69         {
70                 struct consolefontdesc cfd;
71
72                 cfd.charcount = fontsize;
73                 cfd.charheight = unit;
74                 cfd.chardata = buf;
75
76                 if (ioctl(fd, PIO_FONTX, &cfd) == 0)
77                         return;                         /* success */
78                 bb_perror_msg("PIO_FONTX ioctl error (trying PIO_FONT)");
79         }
80 #endif
81         if (ioctl(fd, PIO_FONT, buf))
82                 bb_perror_msg_and_die("PIO_FONT ioctl error");
83 }
84
85 static void
86 do_loadtable(int fd, unsigned char *inbuf, int tailsz, int fontsize)
87 {
88         struct unimapinit advice;
89         struct unimapdesc ud;
90         struct unipair *up;
91         int ct = 0, maxct;
92         int glyph;
93         u_short unicode;
94
95         maxct = tailsz;                         /* more than enough */
96         up = (struct unipair *) xmalloc(maxct * sizeof(struct unipair));
97
98         for (glyph = 0; glyph < fontsize; glyph++) {
99                 while (tailsz >= 2) {
100                         unicode = (((u_short) inbuf[1]) << 8) + inbuf[0];
101                         tailsz -= 2;
102                         inbuf += 2;
103                         if (unicode == PSF_SEPARATOR)
104                                 break;
105                         up[ct].unicode = unicode;
106                         up[ct].fontpos = glyph;
107                         ct++;
108                 }
109         }
110
111         /* Note: after PIO_UNIMAPCLR and before PIO_UNIMAP
112            this printf did not work on many kernels */
113
114         advice.advised_hashsize = 0;
115         advice.advised_hashstep = 0;
116         advice.advised_hashlevel = 0;
117         if (ioctl(fd, PIO_UNIMAPCLR, &advice)) {
118 #ifdef ENOIOCTLCMD
119                 if (errno == ENOIOCTLCMD) {
120                         bb_error_msg("It seems this kernel is older than 1.1.92");
121                         bb_error_msg_and_die("No Unicode mapping table loaded.");
122                 } else
123 #endif
124                         bb_perror_msg_and_die("PIO_UNIMAPCLR");
125         }
126         ud.entry_ct = ct;
127         ud.entries = up;
128         if (ioctl(fd, PIO_UNIMAP, &ud)) {
129 #if 0
130                 if (errno == ENOMEM) {
131                         /* change advice parameters */
132                 }
133 #endif
134                 bb_perror_msg_and_die("PIO_UNIMAP");
135         }
136 }
137
138 static void loadnewfont(int fd)
139 {
140         int unit;
141         unsigned char inbuf[32768];                     /* primitive */
142         unsigned int inputlth, offset;
143
144         /*
145          * We used to look at the length of the input file
146          * with stat(); now that we accept compressed files,
147          * just read the entire file.
148          */
149         inputlth = fread(inbuf, 1, sizeof(inbuf), stdin);
150         if (ferror(stdin))
151                 bb_perror_msg_and_die("Error reading input font");
152         /* use malloc/realloc in case of giant files;
153            maybe these do not occur: 16kB for the font,
154            and 16kB for the map leaves 32 unicode values
155            for each font position */
156         if (!feof(stdin))
157                 bb_perror_msg_and_die("Font too large");
158
159         /* test for psf first */
160         {
161                 struct psf_header psfhdr;
162                 int fontsize;
163                 int hastable;
164                 unsigned int head0, head;
165
166                 if (inputlth < sizeof(struct psf_header))
167                         goto no_psf;
168
169                 psfhdr = *(struct psf_header *) &inbuf[0];
170
171                 if (!PSF_MAGIC_OK(psfhdr))
172                         goto no_psf;
173
174                 if (psfhdr.mode > PSF_MAXMODE)
175                         bb_error_msg_and_die("Unsupported psf file mode");
176                 fontsize = ((psfhdr.mode & PSF_MODE512) ? 512 : 256);
177 #if !defined( PIO_FONTX ) || defined( __sparc__ )
178                 if (fontsize != 256)
179                         bb_error_msg_and_die("Only fontsize 256 supported");
180 #endif
181                 hastable = (psfhdr.mode & PSF_MODEHASTAB);
182                 unit = psfhdr.charsize;
183                 head0 = sizeof(struct psf_header);
184
185                 head = head0 + fontsize * unit;
186                 if (head > inputlth || (!hastable && head != inputlth))
187                         bb_error_msg_and_die("Input file: bad length");
188                 do_loadfont(fd, inbuf + head0, unit, fontsize);
189                 if (hastable)
190                         do_loadtable(fd, inbuf + head, inputlth - head, fontsize);
191                 return;
192         }
193   no_psf:
194
195         /* file with three code pages? */
196         if (inputlth == 9780) {
197                 offset = 40;
198                 unit = 16;
199         } else {
200                 /* bare font */
201                 if (inputlth & 0377)
202                         bb_error_msg_and_die("Bad input file size");
203                 offset = 0;
204                 unit = inputlth / 256;
205         }
206         do_loadfont(fd, inbuf + offset, unit, 256);
207 }