blob: 336418061ae2988fb181660ca3ee92036df4e242 [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Eric Andersen3e0fbae1999-10-19 06:02:44 +00002/*
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.)
Denis Vlasenkodb12d1d2008-12-07 00:52:58 +00009 *
10 * Licensed under GPLv2, see file LICENSE in this tarball for details.
Eric Andersen3e0fbae1999-10-19 06:02:44 +000011 */
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000012#include "libbb.h"
Rob Landleyd921b2e2006-08-03 15:41:12 +000013#include <sys/kd.h>
Eric Andersen3e0fbae1999-10-19 06:02:44 +000014
Denis Vlasenkoeef60772008-09-20 18:14:13 +000015#ifndef KDFONTOP
16#define KDFONTOP 0x4B72
17struct console_font_op {
18 unsigned op; /* KD_FONT_OP_* */
19 unsigned flags; /* KD_FONT_FLAG_* */
20 unsigned width, height;
21 unsigned charcount;
22 unsigned char *data; /* font data with height fixed to 32 */
23};
24
25#define KD_FONT_OP_SET 0 /* Set font */
26#define KD_FONT_OP_GET 1 /* Get font */
27#define KD_FONT_OP_SET_DEFAULT 2 /* Set font to default,
28 data points to name / NULL */
29#define KD_FONT_OP_COPY 3 /* Copy from another console */
30
31#define KD_FONT_FLAG_OLD 0x80000000 /* Invoked via old interface */
32#define KD_FONT_FLAG_DONT_RECALC 1 /* Don't call adjust_height() */
33 /* (Used internally for PIO_FONT support) */
34#endif /* KDFONTOP */
35
36
Denis Vlasenko83ea6432006-11-16 02:27:24 +000037enum {
Rob Landleybc68cd12006-03-10 19:22:06 +000038 PSF_MAGIC1 = 0x36,
39 PSF_MAGIC2 = 0x04,
Eric Andersen3e0fbae1999-10-19 06:02:44 +000040
Rob Landleybc68cd12006-03-10 19:22:06 +000041 PSF_MODE512 = 0x01,
42 PSF_MODEHASTAB = 0x02,
43 PSF_MAXMODE = 0x03,
Denis Vlasenko53f219e2008-09-16 19:35:42 +000044 PSF_SEPARATOR = 0xffff
Rob Landleybc68cd12006-03-10 19:22:06 +000045};
Eric Andersen3e0fbae1999-10-19 06:02:44 +000046
Erik Andersene49d5ec2000-02-08 19:58:47 +000047struct psf_header {
Denis Vlasenkoe8a07882007-06-10 15:08:44 +000048 unsigned char magic1, magic2; /* Magic number */
49 unsigned char mode; /* PSF font mode */
50 unsigned char charsize; /* Character size */
Eric Andersen3e0fbae1999-10-19 06:02:44 +000051};
52
Denis Vlasenkoc8d02aa2008-08-17 14:12:26 +000053#define PSF_MAGIC_OK(x) ((x)->magic1 == PSF_MAGIC1 && (x)->magic2 == PSF_MAGIC2)
Eric Andersen3e0fbae1999-10-19 06:02:44 +000054
Eric Andersen5e678872006-01-30 19:48:23 +000055static void do_loadfont(int fd, unsigned char *inbuf, int unit, int fontsize)
Erik Andersene49d5ec2000-02-08 19:58:47 +000056{
Denis Vlasenkoe8a07882007-06-10 15:08:44 +000057 char *buf;
Eric Andersen3e0fbae1999-10-19 06:02:44 +000058 int i;
59
Matt Kraaief5529b2000-10-25 17:00:36 +000060 if (unit < 1 || unit > 32)
Denis Vlasenkod3d004d2006-10-27 09:02:31 +000061 bb_error_msg_and_die("bad character size %d", unit);
Eric Andersen3e0fbae1999-10-19 06:02:44 +000062
Denis Vlasenkoe8a07882007-06-10 15:08:44 +000063 buf = xzalloc(16 * 1024);
Eric Andersen3e0fbae1999-10-19 06:02:44 +000064 for (i = 0; i < fontsize; i++)
Erik Andersene49d5ec2000-02-08 19:58:47 +000065 memcpy(buf + (32 * i), inbuf + (unit * i), unit);
Eric Andersen3e0fbae1999-10-19 06:02:44 +000066
Denis Vlasenkoeef60772008-09-20 18:14:13 +000067 { /* KDFONTOP */
68 struct console_font_op cfo;
69
70 cfo.op = KD_FONT_OP_SET;
71 cfo.flags = 0;
72 cfo.width = 8;
73 cfo.height = unit;
74 cfo.charcount = fontsize;
75 cfo.data = (void*)buf;
76#if 0
77 if (!ioctl_or_perror(fd, KDFONTOP, &cfo, "KDFONTOP ioctl failed (will try PIO_FONTX)"))
78 goto ret; /* success */
79#else
80 xioctl(fd, KDFONTOP, &cfo);
81#endif
82 }
83
84#if 0
Denis Vlasenkodc700692008-11-08 21:39:06 +000085/* These ones do not honour -C tty (they set font on current tty regardless)
86 * On x86, this distinction is visible on framebuffer consoles
87 * (regular character consoles may have only one shared font anyway)
88 */
Denis Vlasenkoe8a07882007-06-10 15:08:44 +000089#if defined(PIO_FONTX) && !defined(__sparc__)
Eric Andersen3e0fbae1999-10-19 06:02:44 +000090 {
Erik Andersene49d5ec2000-02-08 19:58:47 +000091 struct consolefontdesc cfd;
Eric Andersen3e0fbae1999-10-19 06:02:44 +000092
Erik Andersene49d5ec2000-02-08 19:58:47 +000093 cfd.charcount = fontsize;
94 cfd.charheight = unit;
95 cfd.chardata = buf;
Eric Andersen3e0fbae1999-10-19 06:02:44 +000096
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +000097 if (!ioctl_or_perror(fd, PIO_FONTX, &cfd, "PIO_FONTX ioctl failed (will try PIO_FONT)"))
Denis Vlasenkoeef60772008-09-20 18:14:13 +000098 goto ret; /* success */
Eric Andersen3e0fbae1999-10-19 06:02:44 +000099 }
100#endif
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +0000101 xioctl(fd, PIO_FONT, buf);
Denis Vlasenkoe8a07882007-06-10 15:08:44 +0000102 ret:
Denis Vlasenkoeef60772008-09-20 18:14:13 +0000103#endif /* 0 */
Denis Vlasenkoe8a07882007-06-10 15:08:44 +0000104 free(buf);
Eric Andersen3e0fbae1999-10-19 06:02:44 +0000105}
106
Denis Vlasenkoc8d02aa2008-08-17 14:12:26 +0000107static void do_loadtable(int fd, unsigned char *inbuf, int tailsz, int fontsize)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000108{
Eric Andersen3e0fbae1999-10-19 06:02:44 +0000109 struct unimapinit advice;
110 struct unimapdesc ud;
111 struct unipair *up;
112 int ct = 0, maxct;
113 int glyph;
Denis Vlasenko28703012006-12-19 20:32:02 +0000114 uint16_t unicode;
Eric Andersen3e0fbae1999-10-19 06:02:44 +0000115
Denis Vlasenkoc8d02aa2008-08-17 14:12:26 +0000116 maxct = tailsz; /* more than enough */
Denis Vlasenkob95636c2006-12-19 23:36:04 +0000117 up = xmalloc(maxct * sizeof(struct unipair));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000118
Eric Andersen3e0fbae1999-10-19 06:02:44 +0000119 for (glyph = 0; glyph < fontsize; glyph++) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000120 while (tailsz >= 2) {
Denis Vlasenko28703012006-12-19 20:32:02 +0000121 unicode = (((uint16_t) inbuf[1]) << 8) + inbuf[0];
Erik Andersene49d5ec2000-02-08 19:58:47 +0000122 tailsz -= 2;
123 inbuf += 2;
124 if (unicode == PSF_SEPARATOR)
125 break;
126 up[ct].unicode = unicode;
127 up[ct].fontpos = glyph;
128 ct++;
129 }
Eric Andersen3e0fbae1999-10-19 06:02:44 +0000130 }
131
132 /* Note: after PIO_UNIMAPCLR and before PIO_UNIMAP
133 this printf did not work on many kernels */
134
135 advice.advised_hashsize = 0;
136 advice.advised_hashstep = 0;
137 advice.advised_hashlevel = 0;
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +0000138 xioctl(fd, PIO_UNIMAPCLR, &advice);
Eric Andersen3e0fbae1999-10-19 06:02:44 +0000139 ud.entry_ct = ct;
140 ud.entries = up;
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +0000141 xioctl(fd, PIO_UNIMAP, &ud);
Eric Andersen3e0fbae1999-10-19 06:02:44 +0000142}
143
Denis Vlasenkoc8d02aa2008-08-17 14:12:26 +0000144static void do_load(int fd, struct psf_header *psfhdr, size_t len)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000145{
Eric Andersen3e0fbae1999-10-19 06:02:44 +0000146 int unit;
Denis Vlasenkoc8d02aa2008-08-17 14:12:26 +0000147 int fontsize;
148 int hastable;
149 unsigned head0, head = head;
150
151 /* test for psf first */
152 if (len >= sizeof(struct psf_header) && PSF_MAGIC_OK(psfhdr)) {
153 if (psfhdr->mode > PSF_MAXMODE)
154 bb_error_msg_and_die("unsupported psf file mode");
155 fontsize = ((psfhdr->mode & PSF_MODE512) ? 512 : 256);
156#if !defined(PIO_FONTX) || defined(__sparc__)
157 if (fontsize != 256)
158 bb_error_msg_and_die("only fontsize 256 supported");
159#endif
160 hastable = (psfhdr->mode & PSF_MODEHASTAB);
161 unit = psfhdr->charsize;
162 head0 = sizeof(struct psf_header);
163
164 head = head0 + fontsize * unit;
165 if (head > len || (!hastable && head != len))
166 bb_error_msg_and_die("input file: bad length");
167 } else {
168 /* file with three code pages? */
169 if (len == 9780) {
170 head0 = 40;
171 unit = 16;
172 } else {
173 /* bare font */
174 if (len & 0377)
175 bb_error_msg_and_die("input file: bad length");
176 head0 = 0;
177 unit = len / 256;
178 }
179 fontsize = 256;
180 hastable = 0;
181 }
182
183 do_loadfont(fd, (unsigned char *)psfhdr + head0, unit, fontsize);
184 if (hastable)
185 do_loadtable(fd, (unsigned char *)psfhdr + head, len - head, fontsize);
186}
187
188#if ENABLE_LOADFONT
189int loadfont_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
190int loadfont_main(int argc UNUSED_PARAM, char **argv)
191{
192 size_t len;
193 struct psf_header *psfhdr;
194
195 // no arguments allowed!
196 opt_complementary = "=0";
197 getopt32(argv, "");
Eric Andersen3e0fbae1999-10-19 06:02:44 +0000198
199 /*
200 * We used to look at the length of the input file
201 * with stat(); now that we accept compressed files,
202 * just read the entire file.
203 */
Denis Vlasenkoc8d02aa2008-08-17 14:12:26 +0000204 len = 32*1024; // can't be larger
Denis Vlasenkofc668922008-11-06 02:32:31 +0000205 psfhdr = xmalloc_read(STDIN_FILENO, &len);
Denis Vlasenkoc8d02aa2008-08-17 14:12:26 +0000206 // xmalloc_open_zipped_read_close(filename, &len);
207 if (!psfhdr)
Denis Vlasenkod3d004d2006-10-27 09:02:31 +0000208 bb_perror_msg_and_die("error reading input font");
Denis Vlasenkoc8d02aa2008-08-17 14:12:26 +0000209 do_load(get_console_fd_or_die(), psfhdr, len);
Denis Vlasenkoe8a07882007-06-10 15:08:44 +0000210
211 return EXIT_SUCCESS;
212}
Denis Vlasenkoc8d02aa2008-08-17 14:12:26 +0000213#endif
214
Denis Vlasenko53f219e2008-09-16 19:35:42 +0000215#if ENABLE_SETFONT
216
Denis Vlasenko2bc5c032008-09-13 18:27:32 +0000217/*
218kbd-1.12:
219
220setfont [-O font+umap.orig] [-o font.orig] [-om cmap.orig]
221[-ou umap.orig] [-N] [font.new ...] [-m cmap] [-u umap] [-C console]
222[-hNN] [-v] [-V]
223
224-h NN Override font height
225-o file
226 Save previous font in file
227-O file
228 Save previous font and Unicode map in file
229-om file
230 Store console map in file
231-ou file
232 Save previous Unicode map in file
233-m file
234 Load console map or Unicode console map from file
235-u file
236 Load Unicode table describing the font from file
237 Example:
238 # cp866
239 0x00-0x7f idem
240 #
241 0x80 U+0410 # CYRILLIC CAPITAL LETTER A
242 0x81 U+0411 # CYRILLIC CAPITAL LETTER BE
243 0x82 U+0412 # CYRILLIC CAPITAL LETTER VE
244-C console
245 Set the font for the indicated console
246-v Verbose
247-V Version
248*/
249
Denis Vlasenko53f219e2008-09-16 19:35:42 +0000250#if ENABLE_FEATURE_SETFONT_TEXTUAL_MAP
251static int ctoi(char *s)
252{
253 if (s[0] == '\'' && s[1] != '\0' && s[2] == '\'' && s[3] == '\0')
254 return s[1];
255 // U+ means 0x
256 if (s[0] == 'U' && s[1] == '+') {
257 s[0] = '0';
258 s[1] = 'x';
259 }
260 if (!isdigit(s[0]))
261 return -1;
262 return xstrtoul(s, 0);
263}
264#endif
265
Denis Vlasenkoc8d02aa2008-08-17 14:12:26 +0000266int setfont_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
267int setfont_main(int argc UNUSED_PARAM, char **argv)
268{
269 size_t len;
Denis Vlasenko53f219e2008-09-16 19:35:42 +0000270 unsigned opts;
271 int fd;
Denis Vlasenkoc8d02aa2008-08-17 14:12:26 +0000272 struct psf_header *psfhdr;
273 char *mapfilename;
Denis Vlasenko53f219e2008-09-16 19:35:42 +0000274 const char *tty_name = CURRENT_TTY;
Denis Vlasenkoc8d02aa2008-08-17 14:12:26 +0000275
276 opt_complementary = "=1";
Denis Vlasenko53f219e2008-09-16 19:35:42 +0000277 opts = getopt32(argv, "m:C:", &mapfilename, &tty_name);
Denis Vlasenkoc8d02aa2008-08-17 14:12:26 +0000278 argv += optind;
279
Denis Vlasenko53f219e2008-09-16 19:35:42 +0000280 fd = xopen(tty_name, O_NONBLOCK);
281
282 if (sizeof(CONFIG_DEFAULT_SETFONT_DIR) > 1) { // if not ""
Denis Vlasenko72fa70a2008-09-18 01:01:02 +0000283 if (*argv[0] != '/') {
Denis Vlasenko53f219e2008-09-16 19:35:42 +0000284 // goto default fonts location. don't die if doesn't exist
285 chdir(CONFIG_DEFAULT_SETFONT_DIR "/consolefonts");
Denis Vlasenko53f219e2008-09-16 19:35:42 +0000286 }
287 }
Denis Vlasenkoc8d02aa2008-08-17 14:12:26 +0000288 // load font
289 len = 32*1024; // can't be larger
Denis Vlasenkofc668922008-11-06 02:32:31 +0000290 psfhdr = xmalloc_open_zipped_read_close(*argv, &len);
Denis Vlasenko72fa70a2008-09-18 01:01:02 +0000291 if (!psfhdr)
292 bb_simple_perror_msg_and_die(*argv);
Denis Vlasenkoc8d02aa2008-08-17 14:12:26 +0000293 do_load(fd, psfhdr, len);
294
295 // load the screen map, if any
Denis Vlasenko53f219e2008-09-16 19:35:42 +0000296 if (opts & 1) { // -m
297 unsigned mode = PIO_SCRNMAP;
298 void *map;
299
300 if (sizeof(CONFIG_DEFAULT_SETFONT_DIR) > 1) { // if not ""
Denis Vlasenko72fa70a2008-09-18 01:01:02 +0000301 if (mapfilename[0] != '/') {
Denis Vlasenko53f219e2008-09-16 19:35:42 +0000302 // goto default keymaps location
303 chdir(CONFIG_DEFAULT_SETFONT_DIR "/consoletrans");
304 }
Denis Vlasenkoc8d02aa2008-08-17 14:12:26 +0000305 }
Denis Vlasenko53f219e2008-09-16 19:35:42 +0000306 // fetch keymap
307 map = xmalloc_open_zipped_read_close(mapfilename, &len);
308 if (!map)
309 bb_simple_perror_msg_and_die(mapfilename);
310 // file size is 256 or 512 bytes? -> assume binary map
311 if (len == E_TABSZ || len == 2*E_TABSZ) {
312 if (len == 2*E_TABSZ)
313 mode = PIO_UNISCRNMAP;
314 }
315#if ENABLE_FEATURE_SETFONT_TEXTUAL_MAP
316 // assume textual Unicode console maps:
317 // 0x00 U+0000 # NULL (NUL)
318 // 0x01 U+0001 # START OF HEADING (SOH)
319 // 0x02 U+0002 # START OF TEXT (STX)
320 // 0x03 U+0003 # END OF TEXT (ETX)
321 else {
322 int i;
323 char *token[2];
324 parser_t *parser;
325
326 if (ENABLE_FEATURE_CLEAN_UP)
327 free(map);
328 map = xmalloc(E_TABSZ * sizeof(unsigned short));
329
330#define unicodes ((unsigned short *)map)
331 // fill vanilla map
332 for (i = 0; i < E_TABSZ; i++)
333 unicodes[i] = 0xf000 + i;
334
335 parser = config_open(mapfilename);
336 while (config_read(parser, token, 2, 2, "# \t", PARSE_NORMAL | PARSE_MIN_DIE)) {
337 // parse code/value pair
338 int a = ctoi(token[0]);
339 int b = ctoi(token[1]);
340 if (a < 0 || a >= E_TABSZ
341 || b < 0 || b > 65535
342 ) {
343 bb_error_msg_and_die("map format");
344 }
345 // patch map
346 unicodes[a] = b;
347 // unicode character is met?
348 if (b > 255)
349 mode = PIO_UNISCRNMAP;
350 }
351 if (ENABLE_FEATURE_CLEAN_UP)
352 config_close(parser);
353
354 if (mode != PIO_UNISCRNMAP) {
355#define asciis ((unsigned char *)map)
356 for (i = 0; i < E_TABSZ; i++)
357 asciis[i] = unicodes[i];
358#undef asciis
359 }
360#undef unicodes
361 }
362#endif // ENABLE_FEATURE_SETFONT_TEXTUAL_MAP
363
364 // do set screen map
365 xioctl(fd, mode, map);
366
367 if (ENABLE_FEATURE_CLEAN_UP)
368 free(map);
Denis Vlasenkoc8d02aa2008-08-17 14:12:26 +0000369 }
370
371 return EXIT_SUCCESS;
372}
373#endif