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.

803 lines
25 KiB

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