1 /* vi: set sw=4 ts=4: */
3 * loadfont.c - Eugene Crosser & Andries Brouwer
7 * Loads the console font, and possibly the corresponding screen map(s).
8 * (Adapted for busybox by Matej Vela.)
16 #include <sys/types.h>
19 #include <sys/ioctl.h>
24 static const int PSF_MAGIC1 = 0x36;
25 static const int PSF_MAGIC2 = 0x04;
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;
33 unsigned char magic1, magic2; /* Magic number */
34 unsigned char mode; /* PSF font mode */
35 unsigned char charsize; /* Character size */
38 #define PSF_MAGIC_OK(x) ((x).magic1 == PSF_MAGIC1 && (x).magic2 == PSF_MAGIC2)
40 static void loadnewfont(int fd);
42 extern int loadfont_main(int argc, char **argv)
49 fd = open(CURRENT_VC, O_RDWR);
51 perror_msg_and_die("Error opening " CURRENT_VC);
57 static void do_loadfont(int fd, char *inbuf, int unit, int fontsize)
62 memset(buf, 0, sizeof(buf));
64 if (unit < 1 || unit > 32)
65 error_msg_and_die("Bad character size %d", unit);
67 for (i = 0; i < fontsize; i++)
68 memcpy(buf + (32 * i), inbuf + (unit * i), unit);
70 #if defined( PIO_FONTX ) && !defined( __sparc__ )
72 struct consolefontdesc cfd;
74 cfd.charcount = fontsize;
75 cfd.charheight = unit;
78 if (ioctl(fd, PIO_FONTX, &cfd) == 0)
80 perror_msg("PIO_FONTX ioctl error (trying PIO_FONT)");
83 if (ioctl(fd, PIO_FONT, buf))
84 perror_msg_and_die("PIO_FONT ioctl error");
88 do_loadtable(int fd, unsigned char *inbuf, int tailsz, int fontsize)
90 struct unimapinit advice;
97 maxct = tailsz; /* more than enough */
98 up = (struct unipair *) xmalloc(maxct * sizeof(struct unipair));
100 for (glyph = 0; glyph < fontsize; glyph++) {
101 while (tailsz >= 2) {
102 unicode = (((u_short) inbuf[1]) << 8) + inbuf[0];
105 if (unicode == PSF_SEPARATOR)
107 up[ct].unicode = unicode;
108 up[ct].fontpos = glyph;
113 /* Note: after PIO_UNIMAPCLR and before PIO_UNIMAP
114 this printf did not work on many kernels */
116 advice.advised_hashsize = 0;
117 advice.advised_hashstep = 0;
118 advice.advised_hashlevel = 0;
119 if (ioctl(fd, PIO_UNIMAPCLR, &advice)) {
121 if (errno == ENOIOCTLCMD) {
122 error_msg("It seems this kernel is older than 1.1.92");
123 error_msg_and_die("No Unicode mapping table loaded.");
126 perror_msg_and_die("PIO_UNIMAPCLR");
130 if (ioctl(fd, PIO_UNIMAP, &ud)) {
132 if (errno == ENOMEM) {
133 /* change advice parameters */
136 perror_msg_and_die("PIO_UNIMAP");
140 static void loadnewfont(int fd)
143 char inbuf[32768]; /* primitive */
144 unsigned int inputlth, offset;
147 * We used to look at the length of the input file
148 * with stat(); now that we accept compressed files,
149 * just read the entire file.
151 inputlth = fread(inbuf, 1, sizeof(inbuf), stdin);
153 perror_msg_and_die("Error reading input font");
154 /* use malloc/realloc in case of giant files;
155 maybe these do not occur: 16kB for the font,
156 and 16kB for the map leaves 32 unicode values
157 for each font position */
159 perror_msg_and_die("Font too large");
161 /* test for psf first */
163 struct psf_header psfhdr;
166 unsigned int head0, head;
168 if (inputlth < sizeof(struct psf_header))
171 psfhdr = *(struct psf_header *) &inbuf[0];
173 if (!PSF_MAGIC_OK(psfhdr))
176 if (psfhdr.mode > PSF_MAXMODE)
177 error_msg_and_die("Unsupported psf file mode");
178 fontsize = ((psfhdr.mode & PSF_MODE512) ? 512 : 256);
179 #if !defined( PIO_FONTX ) || defined( __sparc__ )
181 error_msg_and_die("Only fontsize 256 supported");
183 hastable = (psfhdr.mode & PSF_MODEHASTAB);
184 unit = psfhdr.charsize;
185 head0 = sizeof(struct psf_header);
187 head = head0 + fontsize * unit;
188 if (head > inputlth || (!hastable && head != inputlth))
189 error_msg_and_die("Input file: bad length");
190 do_loadfont(fd, inbuf + head0, unit, fontsize);
192 do_loadtable(fd, inbuf + head, inputlth - head, fontsize);
197 /* file with three code pages? */
198 if (inputlth == 9780) {
204 error_msg_and_die("Bad input file size");
206 unit = inputlth / 256;
208 do_loadfont(fd, inbuf + offset, unit, 256);