You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

712 lines
22 KiB

15 years ago
12 years ago
  1. /*
  2. * vim:ts=4:sw=4:expandtab
  3. *
  4. * © 2010-2012 Michael Stapelberg
  5. *
  6. * See LICENSE for licensing information
  7. *
  8. */
  9. #include <stdio.h>
  10. #include <stdlib.h>
  11. #include <string.h>
  12. #include <unistd.h>
  13. #include <stdbool.h>
  14. #include <stdint.h>
  15. #include <xcb/xcb.h>
  16. #include <xcb/dpms.h>
  17. #include <err.h>
  18. #include <assert.h>
  19. #include <security/pam_appl.h>
  20. #include <X11/Xlib-xcb.h>
  21. #include <getopt.h>
  22. #include <string.h>
  23. #include <ev.h>
  24. #include <sys/mman.h>
  25. #include <X11/XKBlib.h>
  26. #include <X11/extensions/XKBfile.h>
  27. #include <xkbcommon/xkbcommon.h>
  28. #include <cairo.h>
  29. #include <cairo/cairo-xcb.h>
  30. #include "i3lock.h"
  31. #include "xcb.h"
  32. #include "cursors.h"
  33. #include "unlock_indicator.h"
  34. #include "xinerama.h"
  35. /* We need this for libxkbfile */
  36. static Display *display;
  37. char color[7] = "ffffff";
  38. uint32_t last_resolution[2];
  39. xcb_window_t win;
  40. static xcb_cursor_t cursor;
  41. static pam_handle_t *pam_handle;
  42. int input_position = 0;
  43. /* Holds the password you enter (in UTF-8). */
  44. static char password[512];
  45. static bool beep = false;
  46. bool debug_mode = false;
  47. static bool dpms = false;
  48. bool unlock_indicator = true;
  49. static bool dont_fork = false;
  50. struct ev_loop *main_loop;
  51. static struct ev_timer *clear_pam_wrong_timeout;
  52. extern unlock_state_t unlock_state;
  53. extern pam_state_t pam_state;
  54. static struct xkb_state *xkb_state;
  55. static struct xkb_context *xkb_context;
  56. static struct xkb_keymap *xkb_keymap;
  57. cairo_surface_t *img = NULL;
  58. bool tile = false;
  59. bool ignore_empty_password = false;
  60. /* isutf, u8_dec © 2005 Jeff Bezanson, public domain */
  61. #define isutf(c) (((c) & 0xC0) != 0x80)
  62. /*
  63. * Decrements i to point to the previous unicode glyph
  64. *
  65. */
  66. void u8_dec(char *s, int *i) {
  67. (void)(isutf(s[--(*i)]) || isutf(s[--(*i)]) || isutf(s[--(*i)]) || --(*i));
  68. }
  69. /*
  70. * Loads the XKB keymap from the X11 server and feeds it to xkbcommon.
  71. * Necessary so that we can properly let xkbcommon track the keyboard state and
  72. * translate keypresses to utf-8.
  73. *
  74. * Ideally, xkbcommon would ship something like this itself, but as of now
  75. * (version 0.2.0), it doesnt.
  76. *
  77. */
  78. static bool load_keymap(void) {
  79. bool ret = false;
  80. XkbFileInfo result;
  81. memset(&result, '\0', sizeof(result));
  82. result.xkb = XkbGetKeyboard(display, XkbAllMapComponentsMask, XkbUseCoreKbd);
  83. if (result.xkb == NULL) {
  84. fprintf(stderr, "[i3lock] XKB: XkbGetKeyboard failed\n");
  85. return false;
  86. }
  87. FILE *temp = tmpfile();
  88. if (temp == NULL) {
  89. fprintf(stderr, "[i3lock] could not create tempfile\n");
  90. return false;
  91. }
  92. bool ok = XkbWriteXKBKeymap(temp, &result, false, false, NULL, NULL);
  93. if (!ok) {
  94. fprintf(stderr, "[i3lock] XkbWriteXKBKeymap failed\n");
  95. goto out;
  96. }
  97. rewind(temp);
  98. if (xkb_context == NULL) {
  99. if ((xkb_context = xkb_context_new(0)) == NULL) {
  100. fprintf(stderr, "[i3lock] could not create xkbcommon context\n");
  101. goto out;
  102. }
  103. }
  104. if (xkb_keymap != NULL)
  105. xkb_keymap_unref(xkb_keymap);
  106. if ((xkb_keymap = xkb_keymap_new_from_file(xkb_context, temp, XKB_KEYMAP_FORMAT_TEXT_V1, 0)) == NULL) {
  107. fprintf(stderr, "[i3lock] xkb_keymap_new_from_file failed\n");
  108. goto out;
  109. }
  110. struct xkb_state *new_state = xkb_state_new(xkb_keymap);
  111. if (new_state == NULL) {
  112. fprintf(stderr, "[i3lock] xkb_state_new failed\n");
  113. goto out;
  114. }
  115. if (xkb_state != NULL)
  116. xkb_state_unref(xkb_state);
  117. xkb_state = new_state;
  118. ret = true;
  119. out:
  120. XkbFreeKeyboard(result.xkb, XkbAllComponentsMask, true);
  121. fclose(temp);
  122. return ret;
  123. }
  124. /*
  125. * Clears the memory which stored the password to be a bit safer against
  126. * cold-boot attacks.
  127. *
  128. */
  129. static void clear_password_memory(void) {
  130. /* A volatile pointer to the password buffer to prevent the compiler from
  131. * optimizing this out. */
  132. volatile char *vpassword = password;
  133. for (int c = 0; c < sizeof(password); c++)
  134. /* We store a non-random pattern which consists of the (irrelevant)
  135. * index plus (!) the value of the beep variable. This prevents the
  136. * compiler from optimizing the calls away, since the value of 'beep'
  137. * is not known at compile-time. */
  138. vpassword[c] = c + (int)beep;
  139. }
  140. /*
  141. * Resets pam_state to STATE_PAM_IDLE 2 seconds after an unsuccesful
  142. * authentication event.
  143. *
  144. */
  145. static void clear_pam_wrong(EV_P_ ev_timer *w, int revents) {
  146. DEBUG("clearing pam wrong\n");
  147. pam_state = STATE_PAM_IDLE;
  148. unlock_state = STATE_STARTED;
  149. redraw_screen();
  150. /* Now free this timeout. */
  151. ev_timer_stop(main_loop, clear_pam_wrong_timeout);
  152. free(clear_pam_wrong_timeout);
  153. clear_pam_wrong_timeout = NULL;
  154. }
  155. static void clear_input(void) {
  156. input_position = 0;
  157. clear_password_memory();
  158. password[input_position] = '\0';
  159. /* Hide the unlock indicator after a bit if the password buffer is
  160. * empty. */
  161. start_clear_indicator_timeout();
  162. unlock_state = STATE_BACKSPACE_ACTIVE;
  163. redraw_screen();
  164. unlock_state = STATE_KEY_PRESSED;
  165. }
  166. static void input_done(void) {
  167. if (clear_pam_wrong_timeout) {
  168. ev_timer_stop(main_loop, clear_pam_wrong_timeout);
  169. free(clear_pam_wrong_timeout);
  170. clear_pam_wrong_timeout = NULL;
  171. }
  172. pam_state = STATE_PAM_VERIFY;
  173. redraw_screen();
  174. if (pam_authenticate(pam_handle, 0) == PAM_SUCCESS) {
  175. DEBUG("successfully authenticated\n");
  176. clear_password_memory();
  177. exit(0);
  178. }
  179. if (debug_mode)
  180. fprintf(stderr, "Authentication failure\n");
  181. pam_state = STATE_PAM_WRONG;
  182. clear_input();
  183. redraw_screen();
  184. /* Clear this state after 2 seconds (unless the user enters another
  185. * password during that time). */
  186. ev_now_update(main_loop);
  187. if ((clear_pam_wrong_timeout = calloc(sizeof(struct ev_timer), 1))) {
  188. ev_timer_init(clear_pam_wrong_timeout, clear_pam_wrong, 2.0, 0.);
  189. ev_timer_start(main_loop, clear_pam_wrong_timeout);
  190. }
  191. /* Cancel the clear_indicator_timeout, it would hide the unlock indicator
  192. * too early. */
  193. stop_clear_indicator_timeout();
  194. /* beep on authentication failure, if enabled */
  195. if (beep) {
  196. xcb_bell(conn, 100);
  197. xcb_flush(conn);
  198. }
  199. }
  200. /*
  201. * Called when the user releases a key. We need to leave the Mode_switch
  202. * state when the user releases the Mode_switch key.
  203. *
  204. */
  205. static void handle_key_release(xcb_key_release_event_t *event) {
  206. xkb_state_update_key(xkb_state, event->detail, XKB_KEY_UP);
  207. }
  208. static void redraw_timeout(EV_P_ ev_timer *w, int revents) {
  209. redraw_screen();
  210. ev_timer_stop(main_loop, w);
  211. free(w);
  212. }
  213. /*
  214. * Handle key presses. Fixes state, then looks up the key symbol for the
  215. * given keycode, then looks up the key symbol (as UCS-2), converts it to
  216. * UTF-8 and stores it in the password array.
  217. *
  218. */
  219. static void handle_key_press(xcb_key_press_event_t *event) {
  220. xkb_keysym_t ksym;
  221. char buffer[128];
  222. int n;
  223. bool ctrl;
  224. ksym = xkb_state_key_get_one_sym(xkb_state, event->detail);
  225. ctrl = xkb_state_mod_name_is_active(xkb_state, "Control", XKB_STATE_MODS_DEPRESSED);
  226. xkb_state_update_key(xkb_state, event->detail, XKB_KEY_DOWN);
  227. /* The buffer will be null-terminated, so n >= 2 for 1 actual character. */
  228. memset(buffer, '\0', sizeof(buffer));
  229. n = xkb_keysym_to_utf8(ksym, buffer, sizeof(buffer));
  230. switch (ksym) {
  231. case XKB_KEY_Return:
  232. case XKB_KEY_KP_Enter:
  233. case XKB_KEY_XF86ScreenSaver:
  234. if (ignore_empty_password && input_position == 0) {
  235. clear_input();
  236. return;
  237. }
  238. password[input_position] = '\0';
  239. unlock_state = STATE_KEY_PRESSED;
  240. redraw_screen();
  241. input_done();
  242. return;
  243. case XKB_KEY_u:
  244. if (ctrl) {
  245. DEBUG("C-u pressed\n");
  246. clear_input();
  247. return;
  248. }
  249. break;
  250. case XKB_KEY_Escape:
  251. clear_input();
  252. return;
  253. case XKB_KEY_BackSpace:
  254. if (input_position == 0)
  255. return;
  256. /* decrement input_position to point to the previous glyph */
  257. u8_dec(password, &input_position);
  258. password[input_position] = '\0';
  259. /* Hide the unlock indicator after a bit if the password buffer is
  260. * empty. */
  261. start_clear_indicator_timeout();
  262. unlock_state = STATE_BACKSPACE_ACTIVE;
  263. redraw_screen();
  264. unlock_state = STATE_KEY_PRESSED;
  265. return;
  266. }
  267. if ((input_position + 8) >= sizeof(password))
  268. return;
  269. #if 0
  270. /* FIXME: handle all of these? */
  271. printf("is_keypad_key = %d\n", xcb_is_keypad_key(sym));
  272. printf("is_private_keypad_key = %d\n", xcb_is_private_keypad_key(sym));
  273. printf("xcb_is_cursor_key = %d\n", xcb_is_cursor_key(sym));
  274. printf("xcb_is_pf_key = %d\n", xcb_is_pf_key(sym));
  275. printf("xcb_is_function_key = %d\n", xcb_is_function_key(sym));
  276. printf("xcb_is_misc_function_key = %d\n", xcb_is_misc_function_key(sym));
  277. printf("xcb_is_modifier_key = %d\n", xcb_is_modifier_key(sym));
  278. #endif
  279. if (n < 2)
  280. return;
  281. /* store it in the password array as UTF-8 */
  282. memcpy(password+input_position, buffer, n-1);
  283. input_position += n-1;
  284. DEBUG("current password = %.*s\n", input_position, password);
  285. unlock_state = STATE_KEY_ACTIVE;
  286. redraw_screen();
  287. unlock_state = STATE_KEY_PRESSED;
  288. struct ev_timer *timeout = calloc(sizeof(struct ev_timer), 1);
  289. if (timeout) {
  290. ev_timer_init(timeout, redraw_timeout, 0.25, 0.);
  291. ev_timer_start(main_loop, timeout);
  292. }
  293. stop_clear_indicator_timeout();
  294. }
  295. /*
  296. * A visibility notify event will be received when the visibility (= can the
  297. * user view the complete window) changes, so for example when a popup overlays
  298. * some area of the i3lock window.
  299. *
  300. * In this case, we raise our window on top so that the popup (or whatever is
  301. * hiding us) gets hidden.
  302. *
  303. */
  304. static void handle_visibility_notify(xcb_visibility_notify_event_t *event) {
  305. if (event->state != XCB_VISIBILITY_UNOBSCURED) {
  306. uint32_t values[] = { XCB_STACK_MODE_ABOVE };
  307. xcb_configure_window(conn, event->window, XCB_CONFIG_WINDOW_STACK_MODE, values);
  308. xcb_flush(conn);
  309. }
  310. }
  311. /*
  312. * Called when the keyboard mapping changes. We update our symbols.
  313. *
  314. */
  315. static void handle_mapping_notify(xcb_mapping_notify_event_t *event) {
  316. /* We ignore errors — if the new keymap cannot be loaded it’s better if the
  317. * screen stays locked and the user intervenes by using killall i3lock. */
  318. (void)load_keymap();
  319. }
  320. /*
  321. * Called when the properties on the root window change, e.g. when the screen
  322. * resolution changes. If so we update the window to cover the whole screen
  323. * and also redraw the image, if any.
  324. *
  325. */
  326. void handle_screen_resize(void) {
  327. xcb_get_geometry_cookie_t geomc;
  328. xcb_get_geometry_reply_t *geom;
  329. geomc = xcb_get_geometry(conn, screen->root);
  330. if ((geom = xcb_get_geometry_reply(conn, geomc, 0)) == NULL)
  331. return;
  332. if (last_resolution[0] == geom->width &&
  333. last_resolution[1] == geom->height) {
  334. free(geom);
  335. return;
  336. }
  337. last_resolution[0] = geom->width;
  338. last_resolution[1] = geom->height;
  339. free(geom);
  340. redraw_screen();
  341. uint32_t mask = XCB_CONFIG_WINDOW_WIDTH | XCB_CONFIG_WINDOW_HEIGHT;
  342. xcb_configure_window(conn, win, mask, last_resolution);
  343. xcb_flush(conn);
  344. xinerama_query_screens();
  345. redraw_screen();
  346. }
  347. /*
  348. * Callback function for PAM. We only react on password request callbacks.
  349. *
  350. */
  351. static int conv_callback(int num_msg, const struct pam_message **msg,
  352. struct pam_response **resp, void *appdata_ptr)
  353. {
  354. if (num_msg == 0)
  355. return 1;
  356. /* PAM expects an array of responses, one for each message */
  357. if ((*resp = calloc(num_msg, sizeof(struct pam_response))) == NULL) {
  358. perror("calloc");
  359. return 1;
  360. }
  361. for (int c = 0; c < num_msg; c++) {
  362. if (msg[c]->msg_style != PAM_PROMPT_ECHO_OFF &&
  363. msg[c]->msg_style != PAM_PROMPT_ECHO_ON)
  364. continue;
  365. /* return code is currently not used but should be set to zero */
  366. resp[c]->resp_retcode = 0;
  367. if ((resp[c]->resp = strdup(password)) == NULL) {
  368. perror("strdup");
  369. return 1;
  370. }
  371. }
  372. return 0;
  373. }
  374. /*
  375. * This callback is only a dummy, see xcb_prepare_cb and xcb_check_cb.
  376. * See also man libev(3): "ev_prepare" and "ev_check" - customise your event loop
  377. *
  378. */
  379. static void xcb_got_event(EV_P_ struct ev_io *w, int revents) {
  380. /* empty, because xcb_prepare_cb and xcb_check_cb are used */
  381. }
  382. /*
  383. * Flush before blocking (and waiting for new events)
  384. *
  385. */
  386. static void xcb_prepare_cb(EV_P_ ev_prepare *w, int revents) {
  387. xcb_flush(conn);
  388. }
  389. /*
  390. * Instead of polling the X connection socket we leave this to
  391. * xcb_poll_for_event() which knows better than we can ever know.
  392. *
  393. */
  394. static void xcb_check_cb(EV_P_ ev_check *w, int revents) {
  395. xcb_generic_event_t *event;
  396. while ((event = xcb_poll_for_event(conn)) != NULL) {
  397. if (event->response_type == 0) {
  398. xcb_generic_error_t *error = (xcb_generic_error_t*)event;
  399. if (debug_mode)
  400. fprintf(stderr, "X11 Error received! sequence 0x%x, error_code = %d\n",
  401. error->sequence, error->error_code);
  402. free(event);
  403. continue;
  404. }
  405. /* Strip off the highest bit (set if the event is generated) */
  406. int type = (event->response_type & 0x7F);
  407. switch (type) {
  408. case XCB_KEY_PRESS:
  409. handle_key_press((xcb_key_press_event_t*)event);
  410. break;
  411. case XCB_KEY_RELEASE:
  412. handle_key_release((xcb_key_release_event_t*)event);
  413. /* If this was the backspace or escape key we are back at an
  414. * empty input, so turn off the screen if DPMS is enabled */
  415. if (dpms && input_position == 0)
  416. dpms_turn_off_screen(conn);
  417. break;
  418. case XCB_VISIBILITY_NOTIFY:
  419. handle_visibility_notify((xcb_visibility_notify_event_t*)event);
  420. break;
  421. case XCB_MAP_NOTIFY:
  422. if (!dont_fork) {
  423. /* After the first MapNotify, we never fork again. We don’t
  424. * expect to get another MapNotify, but better be sure */
  425. dont_fork = true;
  426. /* In the parent process, we exit */
  427. if (fork() != 0)
  428. exit(0);
  429. ev_loop_fork(EV_DEFAULT);
  430. }
  431. break;
  432. case XCB_MAPPING_NOTIFY:
  433. handle_mapping_notify((xcb_mapping_notify_event_t*)event);
  434. break;
  435. case XCB_CONFIGURE_NOTIFY:
  436. handle_screen_resize();
  437. break;
  438. }
  439. free(event);
  440. }
  441. }
  442. int main(int argc, char *argv[]) {
  443. char *username;
  444. char *image_path = NULL;
  445. int ret;
  446. struct pam_conv conv = {conv_callback, NULL};
  447. int curs_choice = CURS_NONE;
  448. int o;
  449. int optind = 0;
  450. struct option longopts[] = {
  451. {"version", no_argument, NULL, 'v'},
  452. {"nofork", no_argument, NULL, 'n'},
  453. {"beep", no_argument, NULL, 'b'},
  454. {"dpms", no_argument, NULL, 'd'},
  455. {"color", required_argument, NULL, 'c'},
  456. {"pointer", required_argument, NULL , 'p'},
  457. {"debug", no_argument, NULL, 0},
  458. {"help", no_argument, NULL, 'h'},
  459. {"no-unlock-indicator", no_argument, NULL, 'u'},
  460. {"image", required_argument, NULL, 'i'},
  461. {"tiling", no_argument, NULL, 't'},
  462. {"ignore-empty-password", no_argument, NULL, 'e'},
  463. {NULL, no_argument, NULL, 0}
  464. };
  465. if ((username = getenv("USER")) == NULL)
  466. errx(1, "USER environment variable not set, please set it.\n");
  467. while ((o = getopt_long(argc, argv, "hvnbdc:p:ui:te", longopts, &optind)) != -1) {
  468. switch (o) {
  469. case 'v':
  470. errx(EXIT_SUCCESS, "version " VERSION " © 2010-2012 Michael Stapelberg");
  471. case 'n':
  472. dont_fork = true;
  473. break;
  474. case 'b':
  475. beep = true;
  476. break;
  477. case 'd':
  478. dpms = true;
  479. break;
  480. case 'c': {
  481. char *arg = optarg;
  482. /* Skip # if present */
  483. if (arg[0] == '#')
  484. arg++;
  485. if (strlen(arg) != 6 || sscanf(arg, "%06[0-9a-fA-F]", color) != 1)
  486. errx(1, "color is invalid, it must be given in 3-byte hexadecimal format: rrggbb\n");
  487. break;
  488. }
  489. case 'u':
  490. unlock_indicator = false;
  491. break;
  492. case 'i':
  493. image_path = strdup(optarg);
  494. break;
  495. case 't':
  496. tile = true;
  497. break;
  498. case 'p':
  499. if (!strcmp(optarg, "win")) {
  500. curs_choice = CURS_WIN;
  501. } else if (!strcmp(optarg, "default")) {
  502. curs_choice = CURS_DEFAULT;
  503. } else {
  504. errx(1, "i3lock: Invalid pointer type given. Expected one of \"win\" or \"default\".\n");
  505. }
  506. break;
  507. case 'e':
  508. ignore_empty_password = true;
  509. break;
  510. case 0:
  511. if (strcmp(longopts[optind].name, "debug") == 0)
  512. debug_mode = true;
  513. break;
  514. default:
  515. errx(1, "Syntax: i3lock [-v] [-n] [-b] [-d] [-c color] [-u] [-p win|default]"
  516. " [-i image.png] [-t] [-e]"
  517. );
  518. }
  519. }
  520. /* We need (relatively) random numbers for highlighting a random part of
  521. * the unlock indicator upon keypresses. */
  522. srand(time(NULL));
  523. /* Initialize PAM */
  524. ret = pam_start("i3lock", username, &conv, &pam_handle);
  525. if (ret != PAM_SUCCESS)
  526. errx(EXIT_FAILURE, "PAM: %s", pam_strerror(pam_handle, ret));
  527. /* Using mlock() as non-super-user seems only possible in Linux. Users of other
  528. * operating systems should use encrypted swap/no swap (or remove the ifdef and
  529. * run i3lock as super-user). */
  530. #if defined(__linux__)
  531. /* Lock the area where we store the password in memory, we don’t want it to
  532. * be swapped to disk. Since Linux 2.6.9, this does not require any
  533. * privileges, just enough bytes in the RLIMIT_MEMLOCK limit. */
  534. if (mlock(password, sizeof(password)) != 0)
  535. err(EXIT_FAILURE, "Could not lock page in memory, check RLIMIT_MEMLOCK");
  536. #endif
  537. /* Initialize connection to X11 */
  538. if ((display = XOpenDisplay(NULL)) == NULL)
  539. errx(EXIT_FAILURE, "Could not connect to X11, maybe you need to set DISPLAY?");
  540. XSetEventQueueOwner(display, XCBOwnsEventQueue);
  541. conn = XGetXCBConnection(display);
  542. /* Double checking that connection is good and operatable with xcb */
  543. if (xcb_connection_has_error(conn))
  544. errx(EXIT_FAILURE, "Could not connect to X11, maybe you need to set DISPLAY?");
  545. /* When we cannot initially load the keymap, we better exit */
  546. if (!load_keymap())
  547. errx(EXIT_FAILURE, "Could not load keymap");
  548. xinerama_init();
  549. xinerama_query_screens();
  550. /* if DPMS is enabled, check if the X server really supports it */
  551. if (dpms) {
  552. xcb_dpms_capable_cookie_t dpmsc = xcb_dpms_capable(conn);
  553. xcb_dpms_capable_reply_t *dpmsr;
  554. if ((dpmsr = xcb_dpms_capable_reply(conn, dpmsc, NULL))) {
  555. if (!dpmsr->capable) {
  556. if (debug_mode)
  557. fprintf(stderr, "Disabling DPMS, X server not DPMS capable\n");
  558. dpms = false;
  559. }
  560. free(dpmsr);
  561. }
  562. }
  563. screen = xcb_setup_roots_iterator(xcb_get_setup(conn)).data;
  564. last_resolution[0] = screen->width_in_pixels;
  565. last_resolution[1] = screen->height_in_pixels;
  566. xcb_change_window_attributes(conn, screen->root, XCB_CW_EVENT_MASK,
  567. (uint32_t[]){ XCB_EVENT_MASK_STRUCTURE_NOTIFY });
  568. if (image_path) {
  569. /* Create a pixmap to render on, fill it with the background color */
  570. img = cairo_image_surface_create_from_png(image_path);
  571. /* In case loading failed, we just pretend no -i was specified. */
  572. if (cairo_surface_status(img) != CAIRO_STATUS_SUCCESS) {
  573. fprintf(stderr, "Could not load image \"%s\": %s\n",
  574. image_path, cairo_status_to_string(cairo_surface_status(img)));
  575. img = NULL;
  576. }
  577. }
  578. /* Pixmap on which the image is rendered to (if any) */
  579. xcb_pixmap_t bg_pixmap = draw_image(last_resolution);
  580. /* open the fullscreen window, already with the correct pixmap in place */
  581. win = open_fullscreen_window(conn, screen, color, bg_pixmap);
  582. xcb_free_pixmap(conn, bg_pixmap);
  583. cursor = create_cursor(conn, screen, win, curs_choice);
  584. grab_pointer_and_keyboard(conn, screen, cursor);
  585. if (dpms)
  586. dpms_turn_off_screen(conn);
  587. /* Initialize the libev event loop. */
  588. main_loop = EV_DEFAULT;
  589. if (main_loop == NULL)
  590. errx(EXIT_FAILURE, "Could not initialize libev. Bad LIBEV_FLAGS?\n");
  591. struct ev_io *xcb_watcher = calloc(sizeof(struct ev_io), 1);
  592. struct ev_check *xcb_check = calloc(sizeof(struct ev_check), 1);
  593. struct ev_prepare *xcb_prepare = calloc(sizeof(struct ev_prepare), 1);
  594. ev_io_init(xcb_watcher, xcb_got_event, xcb_get_file_descriptor(conn), EV_READ);
  595. ev_io_start(main_loop, xcb_watcher);
  596. ev_check_init(xcb_check, xcb_check_cb);
  597. ev_check_start(main_loop, xcb_check);
  598. ev_prepare_init(xcb_prepare, xcb_prepare_cb);
  599. ev_prepare_start(main_loop, xcb_prepare);
  600. /* Invoke the event callback once to catch all the events which were
  601. * received up until now. ev will only pick up new events (when the X11
  602. * file descriptor becomes readable). */
  603. ev_invoke(main_loop, xcb_check, 0);
  604. ev_loop(main_loop, 0);
  605. }