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.

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