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
  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 <xcb/xcb_keysyms.h>
  18. #include <err.h>
  19. #include <assert.h>
  20. #include <security/pam_appl.h>
  21. /* FIXME: can we get rid of this header? */
  22. #include <X11/keysym.h>
  23. #include <getopt.h>
  24. #include <string.h>
  25. #include <ev.h>
  26. #include <sys/mman.h>
  27. #ifndef NOLIBCAIRO
  28. #include <cairo.h>
  29. #include <cairo/cairo-xcb.h>
  30. #endif
  31. #include "keysym2ucs.h"
  32. #include "ucs2_to_utf8.h"
  33. #include "xcb.h"
  34. #include "cursors.h"
  35. #include "unlock_indicator.h"
  36. char color[7] = "ffffff";
  37. uint32_t last_resolution[2];
  38. xcb_window_t win;
  39. static xcb_cursor_t cursor;
  40. static xcb_key_symbols_t *symbols;
  41. static pam_handle_t *pam_handle;
  42. static int input_position = 0;
  43. /* Holds the password you enter (in UTF-8). */
  44. static char password[512];
  45. static bool modeswitch_active = false;
  46. static bool iso_level3_shift_active = false;
  47. static bool iso_level5_shift_active = false;
  48. static int modeswitchmask;
  49. static int numlockmask;
  50. static bool beep = false;
  51. static bool debug_mode = false;
  52. static bool dpms = false;
  53. bool unlock_indicator = true;
  54. static bool dont_fork = false;
  55. static struct ev_loop *main_loop;
  56. static struct ev_timer *clear_pam_wrong_timeout;
  57. static struct ev_timer *clear_indicator_timeout;
  58. extern unlock_state_t unlock_state;
  59. extern pam_state_t pam_state;
  60. #define DEBUG(fmt, ...) do { \
  61. if (debug_mode) \
  62. printf("[i3lock-debug] " fmt, ##__VA_ARGS__); \
  63. } while (0)
  64. #ifndef NOLIBCAIRO
  65. cairo_surface_t *img = NULL;
  66. bool tile = false;
  67. #endif
  68. /*
  69. * Clears the memory which stored the password to be a bit safer against
  70. * cold-boot attacks.
  71. *
  72. */
  73. static void clear_password_memory() {
  74. /* A volatile pointer to the password buffer to prevent the compiler from
  75. * optimizing this out. */
  76. volatile char *vpassword = password;
  77. for (int c = 0; c < sizeof(password); c++)
  78. /* We store a non-random pattern which consists of the (irrelevant)
  79. * index plus (!) the value of the beep variable. This prevents the
  80. * compiler from optimizing the calls away, since the value of 'beep'
  81. * is not known at compile-time. */
  82. vpassword[c] = c + (int)beep;
  83. }
  84. /*
  85. * Resets pam_state to STATE_PAM_IDLE 2 seconds after an unsuccesful
  86. * authentication event.
  87. *
  88. */
  89. static void clear_pam_wrong(EV_P_ ev_timer *w, int revents) {
  90. DEBUG("clearing pam wrong\n");
  91. pam_state = STATE_PAM_IDLE;
  92. unlock_state = STATE_STARTED;
  93. redraw_screen();
  94. }
  95. /*
  96. * Hides the unlock indicator completely when there is no content in the
  97. * password buffer.
  98. *
  99. */
  100. static void clear_indicator(EV_P_ ev_timer *w, int revents) {
  101. if (input_position == 0) {
  102. DEBUG("Clear indicator\n");
  103. unlock_state = STATE_STARTED;
  104. } else unlock_state = STATE_KEY_PRESSED;
  105. redraw_screen();
  106. }
  107. /*
  108. * (Re-)starts the clear_indicator timeout. Called after pressing backspace or
  109. * after an unsuccessful authentication attempt.
  110. *
  111. */
  112. static void start_clear_indicator_timeout() {
  113. if (clear_indicator_timeout) {
  114. ev_timer_stop(main_loop, clear_indicator_timeout);
  115. ev_timer_set(clear_indicator_timeout, 1.0, 0.);
  116. ev_timer_start(main_loop, clear_indicator_timeout);
  117. } else {
  118. clear_indicator_timeout = calloc(sizeof(struct ev_timer), 1);
  119. ev_timer_init(clear_indicator_timeout, clear_indicator, 1.0, 0.);
  120. ev_timer_start(main_loop, clear_indicator_timeout);
  121. }
  122. }
  123. static void input_done() {
  124. if (input_position == 0)
  125. return;
  126. if (clear_pam_wrong_timeout) {
  127. ev_timer_stop(main_loop, clear_pam_wrong_timeout);
  128. clear_pam_wrong_timeout = NULL;
  129. }
  130. pam_state = STATE_PAM_VERIFY;
  131. redraw_screen();
  132. if (pam_authenticate(pam_handle, 0) == PAM_SUCCESS) {
  133. printf("successfully authenticated\n");
  134. clear_password_memory();
  135. exit(0);
  136. }
  137. fprintf(stderr, "Authentication failure\n");
  138. pam_state = STATE_PAM_WRONG;
  139. redraw_screen();
  140. /* Clear this state after 2 seconds (unless the user enters another
  141. * password during that time). */
  142. ev_now_update(main_loop);
  143. clear_pam_wrong_timeout = calloc(sizeof(struct ev_timer), 1);
  144. ev_timer_init(clear_pam_wrong_timeout, clear_pam_wrong, 2.0, 0.);
  145. ev_timer_start(main_loop, clear_pam_wrong_timeout);
  146. /* Cancel the clear_indicator_timeout, it would hide the unlock indicator
  147. * too early. */
  148. if (clear_indicator_timeout) {
  149. ev_timer_stop(main_loop, clear_indicator_timeout);
  150. clear_indicator_timeout = NULL;
  151. }
  152. /* beep on authentication failure, if enabled */
  153. if (beep) {
  154. xcb_bell(conn, 100);
  155. xcb_flush(conn);
  156. }
  157. }
  158. /*
  159. * Called when the user releases a key. We need to leave the Mode_switch
  160. * state when the user releases the Mode_switch key.
  161. *
  162. */
  163. static void handle_key_release(xcb_key_release_event_t *event) {
  164. DEBUG("releasing key %d, state raw = %d, modeswitch_active = %d, iso_level3_shift_active = %d, iso_level5_shift_active = %d\n",
  165. event->detail, event->state, modeswitch_active, iso_level3_shift_active, iso_level5_shift_active);
  166. /* We don’t care about the column here and just use the first symbol. Since
  167. * we only check for Mode_switch and ISO_Level3_Shift, this *should* work.
  168. * Also, if we would use the current column, we would look in the wrong
  169. * place. */
  170. xcb_keysym_t sym = xcb_key_press_lookup_keysym(symbols, event, 0);
  171. if (sym == XK_Mode_switch) {
  172. //printf("Mode switch disabled\n");
  173. modeswitch_active = false;
  174. } else if (sym == XK_ISO_Level3_Shift) {
  175. iso_level3_shift_active = false;
  176. } else if (sym == XK_ISO_Level5_Shift) {
  177. iso_level5_shift_active = false;
  178. }
  179. DEBUG("release done. modeswitch_active = %d, iso_level3_shift_active = %d, iso_level5_shift_active = %d\n",
  180. modeswitch_active, iso_level3_shift_active, iso_level5_shift_active);
  181. }
  182. static void redraw_timeout(EV_P_ ev_timer *w, int revents) {
  183. redraw_screen();
  184. }
  185. /*
  186. * Handle key presses. Fixes state, then looks up the key symbol for the
  187. * given keycode, then looks up the key symbol (as UCS-2), converts it to
  188. * UTF-8 and stores it in the password array.
  189. *
  190. */
  191. static void handle_key_press(xcb_key_press_event_t *event) {
  192. DEBUG("keypress %d, state raw = %d, modeswitch_active = %d, iso_level3_shift_active = %d\n",
  193. event->detail, event->state, modeswitch_active, iso_level3_shift_active);
  194. xcb_keysym_t sym0, sym1, sym;
  195. /* For each keycode, there is a list of symbols. The list could look like this:
  196. * $ xmodmap -pke | grep 'keycode 38'
  197. * keycode 38 = a A adiaeresis Adiaeresis o O
  198. * In non-X11 terminology, the symbols for the keycode 38 (the key labeled
  199. * with "a" on my keyboard) are "a A ä Ä o O".
  200. * Another form to display the same information is using xkbcomp:
  201. * $ xkbcomp $DISPLAY /tmp/xkb.dump
  202. * Then open /tmp/xkb.dump and search for '\<a\>' (in VIM regexp-language):
  203. *
  204. * symbols[Group1]= [ a, A, o, O ],
  205. * symbols[Group2]= [ adiaeresis, Adiaeresis ]
  206. *
  207. * So there are two *groups*, one containing 'a A' and one containing 'ä
  208. * Ä'. You can use Mode_switch to switch between these groups. You can use
  209. * ISO_Level3_Shift to reach the 'o O' part of the first group (its the
  210. * same group, just an even higher shift level).
  211. *
  212. * So, using the "logical" XKB information, the following lookup will be
  213. * performed:
  214. *
  215. * Neither Mode_switch nor ISO_Level3_Shift active: group 1, column 0 and 1
  216. * Mode_switch active: group 2, column 0 and 1
  217. * ISO_Level3_Shift active: group 1, column 2 and 3
  218. *
  219. * Using the column index which xcb_key_press_lookup_keysym uses (and
  220. * xmodmap prints out), the following lookup will be performed:
  221. *
  222. * Neither Mode_switch nor ISO_Level3_Shift active: column 0 and 1
  223. * Mode_switch active: column 2 and 3
  224. * ISO_Level3_Shift active: column 4 and 5
  225. */
  226. int base_column = 0;
  227. if (modeswitch_active)
  228. base_column = 2;
  229. if (iso_level3_shift_active)
  230. base_column = 4;
  231. if (iso_level5_shift_active)
  232. base_column = 6;
  233. sym0 = xcb_key_press_lookup_keysym(symbols, event, base_column);
  234. sym1 = xcb_key_press_lookup_keysym(symbols, event, base_column + 1);
  235. switch (sym0) {
  236. case XK_Mode_switch:
  237. DEBUG("Mode switch enabled\n");
  238. modeswitch_active = true;
  239. return;
  240. case XK_ISO_Level3_Shift:
  241. DEBUG("ISO_Level3_Shift enabled\n");
  242. iso_level3_shift_active = true;
  243. return;
  244. case XK_ISO_Level5_Shift:
  245. DEBUG("ISO_Level5_Shift enabled\n");
  246. iso_level5_shift_active = true;
  247. return;
  248. case XK_Return:
  249. case XK_KP_Enter:
  250. input_done();
  251. case XK_Escape:
  252. input_position = 0;
  253. clear_password_memory();
  254. password[input_position] = '\0';
  255. return;
  256. case XK_BackSpace:
  257. if (input_position == 0)
  258. return;
  259. /* decrement input_position to point to the previous glyph */
  260. u8_dec(password, &input_position);
  261. password[input_position] = '\0';
  262. /* Clear this state after 2 seconds (unless the user enters another
  263. * password during that time). */
  264. start_clear_indicator_timeout();
  265. unlock_state = STATE_BACKSPACE_ACTIVE;
  266. redraw_screen();
  267. unlock_state = STATE_KEY_PRESSED;
  268. //printf("new input position = %d, new password = %s\n", input_position, password);
  269. return;
  270. }
  271. if ((input_position + 8) >= sizeof(password))
  272. return;
  273. if ((event->state & numlockmask) && xcb_is_keypad_key(sym1)) {
  274. /* this key was a keypad key */
  275. if ((event->state & XCB_MOD_MASK_SHIFT))
  276. sym = sym0;
  277. else sym = sym1;
  278. } else {
  279. if ((event->state & XCB_MOD_MASK_SHIFT))
  280. sym = sym1;
  281. else sym = sym0;
  282. }
  283. #if 0
  284. /* FIXME: handle all of these? */
  285. printf("is_keypad_key = %d\n", xcb_is_keypad_key(sym));
  286. printf("is_private_keypad_key = %d\n", xcb_is_private_keypad_key(sym));
  287. printf("xcb_is_cursor_key = %d\n", xcb_is_cursor_key(sym));
  288. printf("xcb_is_pf_key = %d\n", xcb_is_pf_key(sym));
  289. printf("xcb_is_function_key = %d\n", xcb_is_function_key(sym));
  290. printf("xcb_is_misc_function_key = %d\n", xcb_is_misc_function_key(sym));
  291. printf("xcb_is_modifier_key = %d\n", xcb_is_modifier_key(sym));
  292. #endif
  293. if (xcb_is_modifier_key(sym) || xcb_is_cursor_key(sym))
  294. return;
  295. DEBUG("resolved to keysym = %c (%d)\n", sym, sym);
  296. /* convert the keysym to UCS */
  297. uint16_t ucs = keysym2ucs(sym);
  298. if ((int16_t)ucs == -1) {
  299. fprintf(stderr, "Keysym could not be converted to UCS, skipping\n");
  300. return;
  301. }
  302. /* store the UCS in a string to convert it */
  303. uint8_t inp[3] = {(ucs & 0xFF00) >> 8, (ucs & 0xFF), 0};
  304. DEBUG("input part = %s\n", inp);
  305. /* store it in the password array as UTF-8 */
  306. input_position += convert_ucs_to_utf8((char*)inp, password + input_position);
  307. password[input_position] = '\0';
  308. DEBUG("current password = %s\n", password);
  309. unlock_state = STATE_KEY_ACTIVE;
  310. redraw_screen();
  311. unlock_state = STATE_KEY_PRESSED;
  312. struct ev_timer *timeout = calloc(sizeof(struct ev_timer), 1);
  313. ev_timer_init(timeout, redraw_timeout, 0.25, 0.);
  314. ev_timer_start(main_loop, timeout);
  315. if (clear_indicator_timeout) {
  316. ev_timer_stop(main_loop, clear_indicator_timeout);
  317. clear_indicator_timeout = NULL;
  318. }
  319. }
  320. /*
  321. * A visibility notify event will be received when the visibility (= can the
  322. * user view the complete window) changes, so for example when a popup overlays
  323. * some area of the i3lock window.
  324. *
  325. * In this case, we raise our window on top so that the popup (or whatever is
  326. * hiding us) gets hidden.
  327. *
  328. */
  329. static void handle_visibility_notify(xcb_visibility_notify_event_t *event) {
  330. if (event->state != XCB_VISIBILITY_UNOBSCURED) {
  331. uint32_t values[] = { XCB_STACK_MODE_ABOVE };
  332. xcb_configure_window(conn, event->window, XCB_CONFIG_WINDOW_STACK_MODE, values);
  333. xcb_flush(conn);
  334. }
  335. }
  336. /*
  337. * Called when the keyboard mapping changes. We update our symbols.
  338. *
  339. */
  340. static void handle_mapping_notify(xcb_mapping_notify_event_t *event) {
  341. xcb_refresh_keyboard_mapping(symbols, event);
  342. modeswitchmask = get_mod_mask(conn, symbols, XK_Mode_switch);
  343. numlockmask = get_mod_mask(conn, symbols, XK_Num_Lock);
  344. }
  345. /*
  346. * Called when the properties on the root window change, e.g. when the screen
  347. * resolution changes. If so we update the window to cover the whole screen
  348. * and also redraw the image, if any.
  349. *
  350. */
  351. void handle_screen_resize(xcb_window_t win, uint32_t* last_resolution) {
  352. xcb_get_geometry_cookie_t geomc;
  353. xcb_get_geometry_reply_t *geom;
  354. geomc = xcb_get_geometry(conn, screen->root);
  355. if ((geom = xcb_get_geometry_reply(conn, geomc, 0)) == NULL) {
  356. return;
  357. }
  358. if (last_resolution[0] == geom->width && last_resolution[1] == geom->height)
  359. return;
  360. last_resolution[0] = geom->width;
  361. last_resolution[1] = geom->height;
  362. #ifndef NOLIBCAIRO
  363. redraw_screen();
  364. #endif
  365. uint32_t mask = XCB_CONFIG_WINDOW_WIDTH | XCB_CONFIG_WINDOW_HEIGHT;
  366. xcb_configure_window(conn, win, mask, last_resolution);
  367. xcb_flush(conn);
  368. }
  369. /*
  370. * Callback function for PAM. We only react on password request callbacks.
  371. *
  372. */
  373. static int conv_callback(int num_msg, const struct pam_message **msg,
  374. struct pam_response **resp, void *appdata_ptr)
  375. {
  376. if (num_msg == 0)
  377. return 1;
  378. /* PAM expects an array of responses, one for each message */
  379. if ((*resp = calloc(num_msg, sizeof(struct pam_message))) == NULL) {
  380. perror("calloc");
  381. return 1;
  382. }
  383. for (int c = 0; c < num_msg; c++) {
  384. if (msg[c]->msg_style != PAM_PROMPT_ECHO_OFF &&
  385. msg[c]->msg_style != PAM_PROMPT_ECHO_ON)
  386. continue;
  387. /* return code is currently not used but should be set to zero */
  388. resp[c]->resp_retcode = 0;
  389. if ((resp[c]->resp = strdup(password)) == NULL) {
  390. perror("strdup");
  391. return 1;
  392. }
  393. }
  394. return 0;
  395. }
  396. /*
  397. * This callback is only a dummy, see xcb_prepare_cb and xcb_check_cb.
  398. * See also man libev(3): "ev_prepare" and "ev_check" - customise your event loop
  399. *
  400. */
  401. static void xcb_got_event(EV_P_ struct ev_io *w, int revents) {
  402. /* empty, because xcb_prepare_cb and xcb_check_cb are used */
  403. }
  404. /*
  405. * Flush before blocking (and waiting for new events)
  406. *
  407. */
  408. static void xcb_prepare_cb(EV_P_ ev_prepare *w, int revents) {
  409. xcb_flush(conn);
  410. }
  411. /*
  412. * Instead of polling the X connection socket we leave this to
  413. * xcb_poll_for_event() which knows better than we can ever know.
  414. *
  415. */
  416. static void xcb_check_cb(EV_P_ ev_check *w, int revents) {
  417. xcb_generic_event_t *event;
  418. while ((event = xcb_poll_for_event(conn)) != NULL) {
  419. if (event->response_type == 0) {
  420. xcb_generic_error_t *error = (xcb_generic_error_t*)event;
  421. fprintf(stderr, "X11 Error received! sequence 0x%x, error_code = %d\n",
  422. error->sequence, error->error_code);
  423. free(event);
  424. continue;
  425. }
  426. /* Strip off the highest bit (set if the event is generated) */
  427. int type = (event->response_type & 0x7F);
  428. if (type == XCB_KEY_PRESS) {
  429. handle_key_press((xcb_key_press_event_t*)event);
  430. continue;
  431. }
  432. if (type == XCB_KEY_RELEASE) {
  433. handle_key_release((xcb_key_release_event_t*)event);
  434. /* If this was the backspace or escape key we are back at an
  435. * empty input, so turn off the screen if DPMS is enabled */
  436. if (dpms && input_position == 0)
  437. dpms_turn_off_screen(conn);
  438. continue;
  439. }
  440. if (type == XCB_VISIBILITY_NOTIFY) {
  441. handle_visibility_notify((xcb_visibility_notify_event_t*)event);
  442. continue;
  443. }
  444. if (type == XCB_MAP_NOTIFY) {
  445. if (!dont_fork) {
  446. /* After the first MapNotify, we never fork again. We don’t
  447. * expect to get another MapNotify, but better be sure */
  448. dont_fork = true;
  449. /* In the parent process, we exit */
  450. if (fork() != 0)
  451. exit(0);
  452. }
  453. continue;
  454. }
  455. if (type == XCB_MAPPING_NOTIFY) {
  456. handle_mapping_notify((xcb_mapping_notify_event_t*)event);
  457. continue;
  458. }
  459. if (type == XCB_CONFIGURE_NOTIFY) {
  460. handle_screen_resize(win, last_resolution);
  461. continue;
  462. }
  463. printf("WARNING: unhandled event of type %d\n", type);
  464. free(event);
  465. }
  466. }
  467. int main(int argc, char *argv[]) {
  468. char *username;
  469. #ifndef NOLIBCAIRO
  470. char *image_path = NULL;
  471. #endif
  472. int ret;
  473. struct pam_conv conv = {conv_callback, NULL};
  474. int nscreen;
  475. int curs_choice = CURS_NONE;
  476. char o;
  477. int optind = 0;
  478. struct option longopts[] = {
  479. {"version", no_argument, NULL, 'v'},
  480. {"nofork", no_argument, NULL, 'n'},
  481. {"beep", no_argument, NULL, 'b'},
  482. {"dpms", no_argument, NULL, 'd'},
  483. {"color", required_argument, NULL, 'c'},
  484. {"pointer", required_argument, NULL , 'p'},
  485. {"debug", no_argument, NULL, 0},
  486. {"help", no_argument, NULL, 'h'},
  487. {"no-unlock-indicator", no_argument, NULL, 'u'},
  488. #ifndef NOLIBCAIRO
  489. {"image", required_argument, NULL, 'i'},
  490. {"tiling", no_argument, NULL, 't'},
  491. #endif
  492. {NULL, no_argument, NULL, 0}
  493. };
  494. if ((username = getenv("USER")) == NULL)
  495. errx(1, "USER environment variable not set, please set it.\n");
  496. while ((o = getopt_long(argc, argv, "hvnbdc:p:u"
  497. #ifndef NOLIBCAIRO
  498. "i:t"
  499. #endif
  500. , longopts, &optind)) != -1) {
  501. switch (o) {
  502. case 'v':
  503. errx(EXIT_SUCCESS, "version " VERSION " © 2010-2012 Michael Stapelberg");
  504. case 'n':
  505. dont_fork = true;
  506. break;
  507. case 'b':
  508. beep = true;
  509. break;
  510. case 'd':
  511. dpms = true;
  512. break;
  513. case 'c': {
  514. char *arg = optarg;
  515. /* Skip # if present */
  516. if (arg[0] == '#')
  517. arg++;
  518. if (strlen(arg) != 6 || sscanf(arg, "%06[0-9a-fA-F]", color) != 1)
  519. errx(1, "color is invalid, color must be given in 6-byte format: rrggbb\n");
  520. break;
  521. }
  522. case 'u':
  523. unlock_indicator = false;
  524. break;
  525. #ifndef NOLIBCAIRO
  526. case 'i':
  527. image_path = strdup(optarg);
  528. break;
  529. case 't':
  530. tile = true;
  531. break;
  532. #endif
  533. case 'p':
  534. if (!strcmp(optarg, "win")) {
  535. curs_choice = CURS_WIN;
  536. } else if (!strcmp(optarg, "default")) {
  537. curs_choice = CURS_DEFAULT;
  538. } else {
  539. errx(1, "i3lock: Invalid pointer type given. Expected one of \"win\" or \"default\".\n");
  540. }
  541. break;
  542. case 0:
  543. if (strcmp(longopts[optind].name, "debug") == 0)
  544. debug_mode = true;
  545. break;
  546. default:
  547. errx(1, "Syntax: i3lock [-v] [-n] [-b] [-d] [-c color] [-u] [-p win|default]"
  548. #ifndef NOLIBCAIRO
  549. " [-i image.png] [-t]"
  550. #else
  551. " (compiled with NOLIBCAIRO)"
  552. #endif
  553. );
  554. }
  555. }
  556. /* We need (relatively) random numbers for highlighting a random part of
  557. * the unlock indicator upon keypresses. */
  558. srand(time(NULL));
  559. /* Initialize PAM */
  560. ret = pam_start("i3lock", username, &conv, &pam_handle);
  561. if (ret != PAM_SUCCESS)
  562. errx(EXIT_FAILURE, "PAM: %s", pam_strerror(pam_handle, ret));
  563. /* Lock the area where we store the password in memory, we don’t want it to
  564. * be swapped to disk. Since Linux 2.6.9, this does not require any
  565. * privileges, just enough bytes in the RLIMIT_MEMLOCK limit. */
  566. if (mlock(password, sizeof(password)) != 0)
  567. err(EXIT_FAILURE, "Could not lock page in memory, check RLIMIT_MEMLOCK");
  568. /* Initialize connection to X11 */
  569. if ((conn = xcb_connect(NULL, &nscreen)) == NULL ||
  570. xcb_connection_has_error(conn))
  571. errx(EXIT_FAILURE, "Could not connect to X11, maybe you need to set DISPLAY?");
  572. /* if DPMS is enabled, check if the X server really supports it */
  573. if (dpms) {
  574. xcb_dpms_capable_cookie_t dpmsc = xcb_dpms_capable(conn);
  575. xcb_dpms_capable_reply_t *dpmsr;
  576. if ((dpmsr = xcb_dpms_capable_reply(conn, dpmsc, NULL)) && !dpmsr->capable) {
  577. fprintf(stderr, "Disabling DPMS, X server not DPMS capable\n");
  578. dpms = false;
  579. }
  580. }
  581. screen = xcb_setup_roots_iterator(xcb_get_setup(conn)).data;
  582. last_resolution[0] = screen->width_in_pixels;
  583. last_resolution[1] = screen->height_in_pixels;
  584. #ifndef NOLIBCAIRO
  585. if (image_path) {
  586. /* Create a pixmap to render on, fill it with the background color */
  587. img = cairo_image_surface_create_from_png(image_path);
  588. }
  589. #endif
  590. /* Pixmap on which the image is rendered to (if any) */
  591. xcb_pixmap_t bg_pixmap = draw_image(last_resolution);
  592. /* open the fullscreen window, already with the correct pixmap in place */
  593. win = open_fullscreen_window(conn, screen, color, bg_pixmap);
  594. xcb_free_pixmap(conn, bg_pixmap);
  595. cursor = create_cursor(conn, screen, win, curs_choice);
  596. grab_pointer_and_keyboard(conn, screen, cursor);
  597. symbols = xcb_key_symbols_alloc(conn);
  598. modeswitchmask = get_mod_mask(conn, symbols, XK_Mode_switch);
  599. numlockmask = get_mod_mask(conn, symbols, XK_Num_Lock);
  600. if (dpms)
  601. dpms_turn_off_screen(conn);
  602. /* Initialize the libev event loop. */
  603. main_loop = EV_DEFAULT;
  604. if (main_loop == NULL)
  605. errx(EXIT_FAILURE, "Could not initialize libev. Bad LIBEV_FLAGS?\n");
  606. struct ev_io *xcb_watcher = calloc(sizeof(struct ev_io), 1);
  607. struct ev_check *xcb_check = calloc(sizeof(struct ev_check), 1);
  608. struct ev_prepare *xcb_prepare = calloc(sizeof(struct ev_prepare), 1);
  609. ev_io_init(xcb_watcher, xcb_got_event, xcb_get_file_descriptor(conn), EV_READ);
  610. ev_io_start(main_loop, xcb_watcher);
  611. ev_check_init(xcb_check, xcb_check_cb);
  612. ev_check_start(main_loop, xcb_check);
  613. ev_prepare_init(xcb_prepare, xcb_prepare_cb);
  614. ev_prepare_start(main_loop, xcb_prepare);
  615. xcb_flush(conn);
  616. ev_loop(main_loop, 0);
  617. }