David Sodman | bbcb052 | 2014-09-19 10:34:07 -0700 | [diff] [blame^] | 1 | /* |
| 2 | * Copyright (c) 2014 The Chromium OS Authors. All rights reserved. |
| 3 | * Use of this source code is governed by a BSD-style license that can be |
| 4 | * found in the LICENSE file. |
| 5 | */ |
| 6 | |
| 7 | #include <stdbool.h> |
| 8 | #include <stddef.h> |
| 9 | #include <stdio.h> |
| 10 | #include <stdlib.h> |
| 11 | #include <string.h> |
| 12 | #include <sys/mman.h> |
| 13 | #include <unistd.h> |
| 14 | #include <fcntl.h> |
| 15 | |
| 16 | #include <math.h> |
| 17 | #include <png.h> |
| 18 | |
| 19 | #include "util.h" |
| 20 | #include "splash.h" |
| 21 | #include "dbus_interface.h" |
| 22 | |
| 23 | #define MAX_SPLASH_IMAGES (30) |
| 24 | #define FILENAME_LENGTH (100) |
| 25 | |
| 26 | typedef union { |
| 27 | uint32_t *as_pixels; |
| 28 | png_byte *as_png_bytes; |
| 29 | char *address; |
| 30 | } splash_layout_t; |
| 31 | |
| 32 | typedef struct { |
| 33 | char filename[FILENAME_LENGTH]; |
| 34 | FILE *fp; |
| 35 | splash_layout_t layout; |
| 36 | png_uint_32 width; |
| 37 | png_uint_32 height; |
| 38 | png_uint_32 pitch; |
| 39 | } splash_image_t; |
| 40 | |
| 41 | struct _splash_t { |
| 42 | video_t *video; |
| 43 | int num_images; |
| 44 | splash_image_t images[MAX_SPLASH_IMAGES]; |
| 45 | int frame_interval; |
| 46 | uint32_t clear; |
| 47 | bool terminated; |
| 48 | bool devmode; |
| 49 | dbus_t *dbus; |
| 50 | }; |
| 51 | |
| 52 | static int splash_load_image_from_file(splash_t* splash, splash_image_t* image); |
| 53 | static int splash_image_show(splash_t *splash, splash_image_t* image, |
| 54 | uint32_t *video_buffer); |
| 55 | static void splash_rgb(png_struct *png, png_row_info *row_info, png_byte *data); |
| 56 | |
| 57 | splash_t* splash_init(video_t *video) |
| 58 | { |
| 59 | splash_t* splash; |
| 60 | |
| 61 | splash = (splash_t*)calloc(1, sizeof(splash_t)); |
| 62 | if (splash == NULL) |
| 63 | return NULL; |
| 64 | |
| 65 | splash->num_images = 0; |
| 66 | splash->video = video; |
| 67 | |
| 68 | return splash; |
| 69 | } |
| 70 | |
| 71 | int splash_destroy(splash_t* splash) |
| 72 | { |
| 73 | return 0; |
| 74 | } |
| 75 | |
| 76 | int splash_set_frame_rate(splash_t *splash, int32_t rate) |
| 77 | { |
| 78 | if (rate <= 0 || rate > 120) |
| 79 | return 1; |
| 80 | |
| 81 | splash->frame_interval = rate; |
| 82 | return 0; |
| 83 | } |
| 84 | |
| 85 | int splash_set_clear(splash_t *splash, int32_t clear_color) |
| 86 | { |
| 87 | splash->clear = clear_color; |
| 88 | return 0; |
| 89 | } |
| 90 | |
| 91 | int splash_add_image(splash_t* splash, const char* filename) |
| 92 | { |
| 93 | if (splash->num_images >= MAX_SPLASH_IMAGES) |
| 94 | return 1; |
| 95 | |
| 96 | strcpy(splash->images[splash->num_images].filename, filename); |
| 97 | splash->num_images++; |
| 98 | return 0; |
| 99 | } |
| 100 | |
| 101 | static void |
| 102 | frecon_dbus_path_message_func(dbus_t* dbus, void* user_data) |
| 103 | { |
| 104 | splash_t* splash = (splash_t*)user_data; |
| 105 | |
| 106 | if (!splash->devmode) |
| 107 | exit(EXIT_SUCCESS); |
| 108 | |
| 109 | dbus_stop_wait(dbus); |
| 110 | } |
| 111 | |
| 112 | static void splash_clear_screen(splash_t *splash, uint32_t *video_buffer) |
| 113 | { |
| 114 | int i,j; |
| 115 | buffer_properties_t *bp; |
| 116 | |
| 117 | video_setmode(splash->video); |
| 118 | |
| 119 | bp = video_get_buffer_properties(splash->video); |
| 120 | |
| 121 | for (j = 0; j < bp->height; j++) { |
| 122 | for (i = 0; i < bp->width; i++) { |
| 123 | (video_buffer + bp->pitch/4 * j)[i] = splash->clear; |
| 124 | } |
| 125 | } |
| 126 | } |
| 127 | |
| 128 | int splash_run(splash_t* splash, dbus_t** dbus) |
| 129 | { |
| 130 | int i; |
| 131 | uint32_t* video_buffer; |
| 132 | int status; |
| 133 | bool db_status; |
| 134 | int64_t last_show_ms; |
| 135 | int64_t now_ms; |
| 136 | int64_t sleep_ms; |
| 137 | struct timespec sleep_spec; |
| 138 | int fd; |
| 139 | int num_written; |
| 140 | |
| 141 | status = 0; |
| 142 | |
| 143 | /* |
| 144 | * First draw the actual splash screen |
| 145 | */ |
| 146 | video_buffer = video_lock(splash->video); |
| 147 | if (video_buffer != NULL) { |
| 148 | splash_clear_screen(splash, video_buffer); |
| 149 | last_show_ms = -1; |
| 150 | for (i = 0; i < splash->num_images; i++) { |
| 151 | status = splash_load_image_from_file(splash, &splash->images[i]); |
| 152 | if (status != 0) { |
| 153 | LOG(WARNING, "splash_load_image_from_file failed: %d\n", status); |
| 154 | break; |
| 155 | } |
| 156 | |
| 157 | now_ms = get_monotonic_time_ms(); |
| 158 | if (last_show_ms > 0) { |
| 159 | sleep_ms = splash->frame_interval - (now_ms - last_show_ms); |
| 160 | if (sleep_ms > 0) { |
| 161 | sleep_spec.tv_sec = sleep_ms / MS_PER_SEC; |
| 162 | sleep_spec.tv_nsec = (sleep_ms % MS_PER_SEC) * NS_PER_MS; |
| 163 | nanosleep(&sleep_spec, NULL); |
| 164 | } |
| 165 | } |
| 166 | |
| 167 | now_ms = get_monotonic_time_ms(); |
| 168 | |
| 169 | status = splash_image_show(splash, &splash->images[i], video_buffer); |
| 170 | if (status != 0) { |
| 171 | LOG(WARNING, "splash_image_show failed: %d", status); |
| 172 | break; |
| 173 | } |
| 174 | last_show_ms = now_ms; |
| 175 | } |
| 176 | video_unlock(splash->video); |
| 177 | |
| 178 | /* |
| 179 | * Next wait until chrome has drawn on top of the splash. In dev mode, |
| 180 | * dbus_wait_for_messages will return when chrome is visible. In |
| 181 | * verified mode, the frecon app will exit before dbus_wait_for_messages |
| 182 | * returns |
| 183 | */ |
| 184 | do { |
| 185 | *dbus = dbus_init(); |
| 186 | usleep(50000); |
| 187 | } while (*dbus == NULL); |
| 188 | |
| 189 | splash_set_dbus(splash, *dbus); |
| 190 | |
| 191 | db_status = dbus_signal_match_handler(*dbus, |
| 192 | kLoginPromptVisibleSignal, |
| 193 | kSessionManagerServicePath, |
| 194 | kSessionManagerInterface, |
| 195 | kLoginPromptVisiibleRule, |
| 196 | frecon_dbus_path_message_func, splash); |
| 197 | |
| 198 | if (db_status) |
| 199 | dbus_wait_for_messages(*dbus); |
| 200 | |
| 201 | |
| 202 | /* |
| 203 | * Now set drm_master_relax so that we can transfer drm_master between |
| 204 | * chrome and frecon |
| 205 | */ |
| 206 | fd = open("/sys/kernel/debug/dri/drm_master_relax", O_WRONLY); |
| 207 | if (fd != -1) { |
| 208 | num_written = write(fd, "Y", 1); |
| 209 | close(fd); |
| 210 | |
| 211 | /* |
| 212 | * If we can't set drm_master relax, then transitions between chrome |
| 213 | * and frecon won't work. No point in having frecon hold any resources |
| 214 | */ |
| 215 | if (num_written != 1) { |
| 216 | LOG(ERROR, "Unable to set drm_master_relax"); |
| 217 | splash->devmode = false; |
| 218 | } |
| 219 | } else { |
| 220 | LOG(ERROR, "unable to open drm_master_relax"); |
| 221 | } |
| 222 | } |
| 223 | return status; |
| 224 | } |
| 225 | |
| 226 | |
| 227 | static int splash_load_image_from_file(splash_t* splash, splash_image_t* image) |
| 228 | { |
| 229 | png_struct *png; |
| 230 | png_info *info; |
| 231 | png_uint_32 width, height, pitch, row; |
| 232 | int bpp, color_type, interlace_mthd; |
| 233 | png_byte **rows; |
| 234 | |
| 235 | if (image->fp != NULL) |
| 236 | return 1; |
| 237 | |
| 238 | image->fp = fopen(image->filename, "rb"); |
| 239 | if (image->fp == NULL) |
| 240 | return 1; |
| 241 | |
| 242 | |
| 243 | png = png_create_read_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL); |
| 244 | info = png_create_info_struct(png); |
| 245 | |
| 246 | if (info == NULL) |
| 247 | return 1; |
| 248 | |
| 249 | png_init_io(png, image->fp); |
| 250 | |
| 251 | if (setjmp(png_jmpbuf(png)) != 0) { |
| 252 | fclose(image->fp); |
| 253 | return 1; |
| 254 | } |
| 255 | |
| 256 | png_read_info(png, info); |
| 257 | png_get_IHDR(png, info, &width, &height, &bpp, &color_type, |
| 258 | &interlace_mthd, NULL, NULL); |
| 259 | |
| 260 | pitch = 4 * width; |
| 261 | |
| 262 | switch (color_type) |
| 263 | { |
| 264 | case PNG_COLOR_TYPE_PALETTE: |
| 265 | png_set_palette_to_rgb(png); |
| 266 | break; |
| 267 | |
| 268 | case PNG_COLOR_TYPE_GRAY: |
| 269 | case PNG_COLOR_TYPE_GRAY_ALPHA: |
| 270 | png_set_gray_to_rgb(png); |
| 271 | } |
| 272 | |
| 273 | if (png_get_valid(png, info, PNG_INFO_tRNS)) |
| 274 | png_set_tRNS_to_alpha(png); |
| 275 | |
| 276 | switch (bpp) |
| 277 | { |
| 278 | default: |
| 279 | if (bpp < 8) |
| 280 | png_set_packing(png); |
| 281 | break; |
| 282 | case 16: |
| 283 | png_set_strip_16(png); |
| 284 | break; |
| 285 | } |
| 286 | |
| 287 | if (interlace_mthd != PNG_INTERLACE_NONE) |
| 288 | png_set_interlace_handling(png); |
| 289 | |
| 290 | png_set_filler(png, 0xff, PNG_FILLER_AFTER); |
| 291 | |
| 292 | png_set_read_user_transform_fn(png, splash_rgb); |
| 293 | png_read_update_info(png, info); |
| 294 | |
| 295 | rows = malloc(height * sizeof(*rows)); |
| 296 | image->layout.address = malloc(height * pitch); |
| 297 | |
| 298 | for (row = 0; row < height; row++) { |
| 299 | rows[row] = &image->layout.as_png_bytes[row * pitch]; |
| 300 | } |
| 301 | |
| 302 | png_read_image(png, rows); |
| 303 | free(rows); |
| 304 | |
| 305 | png_read_end(png, info); |
| 306 | fclose(image->fp); |
| 307 | png_destroy_read_struct(&png, &info, NULL); |
| 308 | |
| 309 | image->width = width; |
| 310 | image->height = height; |
| 311 | image->pitch = pitch; |
| 312 | |
| 313 | return 0; |
| 314 | } |
| 315 | |
| 316 | static |
| 317 | int splash_image_show(splash_t *splash, |
| 318 | splash_image_t* image, |
| 319 | uint32_t *video_buffer) |
| 320 | { |
| 321 | uint32_t j; |
| 322 | uint32_t startx, starty; |
| 323 | buffer_properties_t *bp; |
| 324 | uint32_t *buffer; |
| 325 | |
| 326 | |
| 327 | bp = video_get_buffer_properties(splash->video); |
| 328 | startx = (bp->width - image->width) / 2; |
| 329 | starty = (bp->height - image->height) / 2; |
| 330 | |
| 331 | buffer = video_lock(splash->video); |
| 332 | |
| 333 | if (buffer != NULL) { |
| 334 | for (j = starty; j < starty + image->height; j++) { |
| 335 | memcpy(buffer + j * bp->pitch/4 + startx, |
| 336 | image->layout.address + (j - starty)*image->pitch, image->pitch); |
| 337 | } |
| 338 | } |
| 339 | |
| 340 | video_unlock(splash->video); |
| 341 | return 0; |
| 342 | } |
| 343 | |
| 344 | void splash_set_dbus(splash_t* splash, dbus_t* dbus) |
| 345 | { |
| 346 | splash->dbus = dbus; |
| 347 | } |
| 348 | |
| 349 | void splash_set_devmode(splash_t* splash) |
| 350 | { |
| 351 | splash->devmode = true; |
| 352 | } |
| 353 | |
| 354 | static |
| 355 | void splash_rgb(png_struct *png, png_row_info *row_info, png_byte *data) |
| 356 | { |
| 357 | unsigned int i; |
| 358 | |
| 359 | for (i = 0; i < row_info->rowbytes; i+= 4) { |
| 360 | uint8_t r, g, b, a; |
| 361 | uint32_t pixel; |
| 362 | |
| 363 | r = data[i + 0]; |
| 364 | g = data[i + 1]; |
| 365 | b = data[i + 2]; |
| 366 | a = data[i + 3]; |
| 367 | pixel = (a << 24) | (r << 16) | (g << 8) | b; |
| 368 | memcpy(data + i, &pixel, sizeof(pixel)); |
| 369 | } |
| 370 | } |