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.

703 lines
21 KiB

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