fbsplash.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * Copyright (C) 2008 Michele Sanges <michele.sanges@gmail.com>
  4. *
  5. * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
  6. *
  7. * Usage:
  8. * - use kernel option 'vga=xxx' or otherwise enable framebuffer device.
  9. * - put somewhere fbsplash.cfg file and an image in .ppm format.
  10. * - run applet: $ setsid fbsplash [params] &
  11. * -c: hide cursor
  12. * -d /dev/fbN: framebuffer device (if not /dev/fb0)
  13. * -s path_to_image_file (can be "-" for stdin)
  14. * -i path_to_cfg_file
  15. * -f path_to_fifo (can be "-" for stdin)
  16. * - if you want to run it only in presence of a kernel parameter
  17. * (for example fbsplash=on), use:
  18. * grep -q "fbsplash=on" </proc/cmdline && setsid fbsplash [params]
  19. * - commands for fifo:
  20. * "NN" (ASCII decimal number) - percentage to show on progress bar.
  21. * "exit" (or just close fifo) - well you guessed it.
  22. */
  23. #include "libbb.h"
  24. #include <linux/fb.h>
  25. /* If you want logging messages on /tmp/fbsplash.log... */
  26. #define DEBUG 0
  27. #define BYTES_PER_PIXEL 2
  28. typedef unsigned short DATA;
  29. struct globals {
  30. #if DEBUG
  31. bool bdebug_messages; // enable/disable logging
  32. FILE *logfile_fd; // log file
  33. #endif
  34. unsigned char *addr; // pointer to framebuffer memory
  35. unsigned ns[7]; // n-parameters
  36. const char *image_filename;
  37. struct fb_var_screeninfo scr_var;
  38. struct fb_fix_screeninfo scr_fix;
  39. };
  40. #define G (*ptr_to_globals)
  41. #define INIT_G() do { \
  42. SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
  43. } while (0)
  44. #define nbar_width ns[0] // progress bar width
  45. #define nbar_height ns[1] // progress bar height
  46. #define nbar_posx ns[2] // progress bar horizontal position
  47. #define nbar_posy ns[3] // progress bar vertical position
  48. #define nbar_colr ns[4] // progress bar color red component
  49. #define nbar_colg ns[5] // progress bar color green component
  50. #define nbar_colb ns[6] // progress bar color blue component
  51. #if DEBUG
  52. #define DEBUG_MESSAGE(strMessage, args...) \
  53. if (G.bdebug_messages) { \
  54. fprintf(G.logfile_fd, "[%s][%s] - %s\n", \
  55. __FILE__, __FUNCTION__, strMessage); \
  56. }
  57. #else
  58. #define DEBUG_MESSAGE(...) ((void)0)
  59. #endif
  60. /**
  61. * Open and initialize the framebuffer device
  62. * \param *strfb_device pointer to framebuffer device
  63. */
  64. static void fb_open(const char *strfb_device)
  65. {
  66. int fbfd = xopen(strfb_device, O_RDWR);
  67. // framebuffer properties
  68. xioctl(fbfd, FBIOGET_VSCREENINFO, &G.scr_var);
  69. xioctl(fbfd, FBIOGET_FSCREENINFO, &G.scr_fix);
  70. if (G.scr_var.bits_per_pixel != 16)
  71. bb_error_msg_and_die("only 16 bpp is supported");
  72. // map the device in memory
  73. G.addr = mmap(NULL,
  74. G.scr_var.xres * G.scr_var.yres
  75. * BYTES_PER_PIXEL /*(G.scr_var.bits_per_pixel / 8)*/,
  76. PROT_WRITE, MAP_SHARED, fbfd, 0);
  77. if (G.addr == MAP_FAILED)
  78. bb_perror_msg_and_die("mmap");
  79. close(fbfd);
  80. }
  81. /**
  82. * Draw hollow rectangle on framebuffer
  83. */
  84. static void fb_drawrectangle(void)
  85. {
  86. int cnt;
  87. DATA thispix;
  88. DATA *ptr1, *ptr2;
  89. unsigned char nred = G.nbar_colr/2;
  90. unsigned char ngreen = G.nbar_colg/2;
  91. unsigned char nblue = G.nbar_colb/2;
  92. nred >>= 3; // 5-bit red
  93. ngreen >>= 2; // 6-bit green
  94. nblue >>= 3; // 5-bit blue
  95. thispix = nblue + (ngreen << 5) + (nred << (5+6));
  96. // horizontal lines
  97. ptr1 = (DATA*)(G.addr + (G.nbar_posy * G.scr_var.xres + G.nbar_posx) * BYTES_PER_PIXEL);
  98. ptr2 = (DATA*)(G.addr + ((G.nbar_posy + G.nbar_height - 1) * G.scr_var.xres + G.nbar_posx) * BYTES_PER_PIXEL);
  99. cnt = G.nbar_width - 1;
  100. do {
  101. *ptr1++ = thispix;
  102. *ptr2++ = thispix;
  103. } while (--cnt >= 0);
  104. // vertical lines
  105. ptr1 = (DATA*)(G.addr + (G.nbar_posy * G.scr_var.xres + G.nbar_posx) * BYTES_PER_PIXEL);
  106. ptr2 = (DATA*)(G.addr + (G.nbar_posy * G.scr_var.xres + G.nbar_posx + G.nbar_width - 1) * BYTES_PER_PIXEL);
  107. cnt = G.nbar_height - 1;
  108. do {
  109. *ptr1 = thispix; ptr1 += G.scr_var.xres;
  110. *ptr2 = thispix; ptr2 += G.scr_var.xres;
  111. } while (--cnt >= 0);
  112. }
  113. /**
  114. * Draw filled rectangle on framebuffer
  115. * \param nx1pos,ny1pos upper left position
  116. * \param nx2pos,ny2pos down right position
  117. * \param nred,ngreen,nblue rgb color
  118. */
  119. static void fb_drawfullrectangle(int nx1pos, int ny1pos, int nx2pos, int ny2pos,
  120. unsigned char nred, unsigned char ngreen, unsigned char nblue)
  121. {
  122. int cnt1, cnt2, nypos;
  123. DATA thispix;
  124. DATA *ptr;
  125. nred >>= 3; // 5-bit red
  126. ngreen >>= 2; // 6-bit green
  127. nblue >>= 3; // 5-bit blue
  128. thispix = nblue + (ngreen << 5) + (nred << (5+6));
  129. cnt1 = ny2pos - ny1pos;
  130. nypos = ny1pos;
  131. do {
  132. ptr = (DATA*)(G.addr + (nypos * G.scr_var.xres + nx1pos) * BYTES_PER_PIXEL);
  133. cnt2 = nx2pos - nx1pos;
  134. do {
  135. *ptr++ = thispix;
  136. } while (--cnt2 >= 0);
  137. nypos++;
  138. } while (--cnt1 >= 0);
  139. }
  140. /**
  141. * Draw a progress bar on framebuffer
  142. * \param percent percentage of loading
  143. */
  144. static void fb_drawprogressbar(unsigned percent)
  145. {
  146. int i, left_x, top_y, width, height;
  147. // outer box
  148. left_x = G.nbar_posx;
  149. top_y = G.nbar_posy;
  150. width = G.nbar_width - 1;
  151. height = G.nbar_height - 1;
  152. if ((height | width) < 0)
  153. return;
  154. // NB: "width" of 1 actually makes rect with width of 2!
  155. fb_drawrectangle();
  156. // inner "empty" rectangle
  157. left_x++;
  158. top_y++;
  159. width -= 2;
  160. height -= 2;
  161. if ((height | width) < 0)
  162. return;
  163. fb_drawfullrectangle(
  164. left_x, top_y,
  165. left_x + width, top_y + height,
  166. G.nbar_colr, G.nbar_colg, G.nbar_colb);
  167. if (percent > 0) {
  168. // actual progress bar
  169. width = width * percent / 100;
  170. i = height;
  171. if (height == 0)
  172. height++; // divide by 0 is bad
  173. while (i >= 0) {
  174. // draw one-line thick "rectangle"
  175. // top line will have gray lvl 200, bottom one 100
  176. unsigned gray_level = 100 + i*100/height;
  177. fb_drawfullrectangle(
  178. left_x, top_y, left_x + width, top_y,
  179. gray_level, gray_level, gray_level);
  180. top_y++;
  181. i--;
  182. }
  183. }
  184. }
  185. /**
  186. * Draw image from PPM file
  187. */
  188. static void fb_drawimage(void)
  189. {
  190. FILE *theme_file;
  191. char *read_ptr;
  192. unsigned char *pixline;
  193. unsigned i, j, width, height, line_size;
  194. if (LONE_DASH(G.image_filename)) {
  195. theme_file = stdin;
  196. } else {
  197. int fd = open_zipped(G.image_filename);
  198. if (fd < 0)
  199. bb_simple_perror_msg_and_die(G.image_filename);
  200. theme_file = xfdopen_for_read(fd);
  201. }
  202. /* Parse ppm header:
  203. * - Magic: two characters "P6".
  204. * - Whitespace (blanks, TABs, CRs, LFs).
  205. * - A width, formatted as ASCII characters in decimal.
  206. * - Whitespace.
  207. * - A height, ASCII decimal.
  208. * - Whitespace.
  209. * - The maximum color value, ASCII decimal, in 0..65535
  210. * - Newline or other single whitespace character.
  211. * (we support newline only)
  212. * - A raster of Width * Height pixels in triplets of rgb
  213. * in pure binary by 1 or 2 bytes. (we support only 1 byte)
  214. */
  215. #define concat_buf bb_common_bufsiz1
  216. read_ptr = concat_buf;
  217. while (1) {
  218. int w, h, max_color_val;
  219. int rem = concat_buf + sizeof(concat_buf) - read_ptr;
  220. if (rem < 2
  221. || fgets(read_ptr, rem, theme_file) == NULL
  222. ) {
  223. bb_error_msg_and_die("bad PPM file '%s'", G.image_filename);
  224. }
  225. read_ptr = strchrnul(read_ptr, '#');
  226. *read_ptr = '\0'; /* ignore #comments */
  227. if (sscanf(concat_buf, "P6 %u %u %u", &w, &h, &max_color_val) == 3
  228. && max_color_val <= 255
  229. ) {
  230. width = w; /* w is on stack, width may be in register */
  231. height = h;
  232. break;
  233. }
  234. }
  235. line_size = width*3;
  236. pixline = xmalloc(line_size);
  237. if (width > G.scr_var.xres)
  238. width = G.scr_var.xres;
  239. if (height > G.scr_var.yres)
  240. height = G.scr_var.yres;
  241. for (j = 0; j < height; j++) {
  242. unsigned char *pixel;
  243. DATA *src;
  244. if (fread(pixline, 1, line_size, theme_file) != line_size)
  245. bb_error_msg_and_die("bad PPM file '%s'", G.image_filename);
  246. pixel = pixline;
  247. src = (DATA *)(G.addr + j * G.scr_fix.line_length);
  248. for (i = 0; i < width; i++) {
  249. unsigned thispix;
  250. thispix = (((unsigned)pixel[0] << 8) & 0xf800)
  251. | (((unsigned)pixel[1] << 3) & 0x07e0)
  252. | (((unsigned)pixel[2] >> 3));
  253. *src++ = thispix;
  254. pixel += 3;
  255. }
  256. }
  257. free(pixline);
  258. fclose(theme_file);
  259. }
  260. /**
  261. * Parse configuration file
  262. * \param *cfg_filename name of the configuration file
  263. */
  264. static void init(const char *cfg_filename)
  265. {
  266. static const char param_names[] ALIGN1 =
  267. "BAR_WIDTH\0" "BAR_HEIGHT\0"
  268. "BAR_LEFT\0" "BAR_TOP\0"
  269. "BAR_R\0" "BAR_G\0" "BAR_B\0"
  270. #if DEBUG
  271. "DEBUG\0"
  272. #endif
  273. ;
  274. char *token[2];
  275. parser_t *parser = config_open2(cfg_filename, xfopen_stdin);
  276. while (config_read(parser, token, 2, 2, "#=",
  277. (PARSE_NORMAL | PARSE_MIN_DIE) & ~(PARSE_TRIM | PARSE_COLLAPSE))) {
  278. unsigned val = xatoi_u(token[1]);
  279. int i = index_in_strings(param_names, token[0]);
  280. if (i < 0)
  281. bb_error_msg_and_die("syntax error: %s", token[0]);
  282. if (i >= 0 && i < 7)
  283. G.ns[i] = val;
  284. #if DEBUG
  285. if (i == 7) {
  286. G.bdebug_messages = val;
  287. if (G.bdebug_messages)
  288. G.logfile_fd = xfopen_for_write("/tmp/fbsplash.log");
  289. }
  290. #endif
  291. }
  292. config_close(parser);
  293. }
  294. int fbsplash_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
  295. int fbsplash_main(int argc UNUSED_PARAM, char **argv)
  296. {
  297. const char *fb_device, *cfg_filename, *fifo_filename;
  298. FILE *fp = fp; // for compiler
  299. char *num_buf;
  300. unsigned num;
  301. bool bCursorOff;
  302. INIT_G();
  303. // parse command line options
  304. fb_device = "/dev/fb0";
  305. cfg_filename = NULL;
  306. fifo_filename = NULL;
  307. bCursorOff = 1 & getopt32(argv, "cs:d:i:f:",
  308. &G.image_filename, &fb_device, &cfg_filename, &fifo_filename);
  309. // parse configuration file
  310. if (cfg_filename)
  311. init(cfg_filename);
  312. // We must have -s IMG
  313. if (!G.image_filename)
  314. bb_show_usage();
  315. fb_open(fb_device);
  316. if (fifo_filename && bCursorOff) {
  317. // hide cursor (BEFORE any fb ops)
  318. full_write(STDOUT_FILENO, "\x1b" "[?25l", 6);
  319. }
  320. fb_drawimage();
  321. if (!fifo_filename)
  322. return EXIT_SUCCESS;
  323. fp = xfopen_stdin(fifo_filename);
  324. if (fp != stdin) {
  325. // For named pipes, we want to support this:
  326. // mkfifo cmd_pipe
  327. // fbsplash -f cmd_pipe .... &
  328. // ...
  329. // echo 33 >cmd_pipe
  330. // ...
  331. // echo 66 >cmd_pipe
  332. // This means that we don't want fbsplash to get EOF
  333. // when last writer closes input end.
  334. // The simplest way is to open fifo for writing too
  335. // and become an additional writer :)
  336. open(fifo_filename, O_WRONLY); // errors are ignored
  337. }
  338. fb_drawprogressbar(0);
  339. // Block on read, waiting for some input.
  340. // Use of <stdio.h> style I/O allows to correctly
  341. // handle a case when we have many buffered lines
  342. // already in the pipe
  343. while ((num_buf = xmalloc_fgetline(fp)) != NULL) {
  344. if (strncmp(num_buf, "exit", 4) == 0) {
  345. DEBUG_MESSAGE("exit");
  346. break;
  347. }
  348. num = atoi(num_buf);
  349. if (isdigit(num_buf[0]) && (num <= 100)) {
  350. #if DEBUG
  351. DEBUG_MESSAGE(itoa(num));
  352. #endif
  353. fb_drawprogressbar(num);
  354. }
  355. free(num_buf);
  356. }
  357. if (bCursorOff) // restore cursor
  358. full_write(STDOUT_FILENO, "\x1b" "[?25h", 6);
  359. return EXIT_SUCCESS;
  360. }