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.

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