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.

840 lines
26 KiB

11 years ago
15 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 <getopt.h>
  21. #include <string.h>
  22. #include <ev.h>
  23. #include <sys/mman.h>
  24. #include <xkbcommon/xkbcommon.h>
  25. #include <xkbcommon/xkbcommon-x11.h>
  26. #include <cairo.h>
  27. #include <cairo/cairo-xcb.h>
  28. #include "i3lock.h"
  29. #include "xcb.h"
  30. #include "cursors.h"
  31. #include "unlock_indicator.h"
  32. #include "xinerama.h"
  33. #define TSTAMP_N_SECS(n) (n * 1.0)
  34. #define TSTAMP_N_MINS(n) (60 * TSTAMP_N_SECS(n))
  35. #define START_TIMER(timer_obj, timeout, callback) \
  36. timer_obj = start_timer(timer_obj, timeout, callback)
  37. #define STOP_TIMER(timer_obj) \
  38. timer_obj = stop_timer(timer_obj)
  39. typedef void (*ev_callback_t)(EV_P_ ev_timer *w, int revents);
  40. /* We need this for libxkbfile */
  41. char color[7] = "ffffff";
  42. int inactivity_timeout = 30;
  43. uint32_t last_resolution[2];
  44. xcb_window_t win;
  45. static xcb_cursor_t cursor;
  46. static pam_handle_t *pam_handle;
  47. int input_position = 0;
  48. /* Holds the password you enter (in UTF-8). */
  49. static char password[512];
  50. static bool beep = false;
  51. bool debug_mode = false;
  52. static bool dpms = false;
  53. bool unlock_indicator = true;
  54. static bool dont_fork = false;
  55. struct ev_loop *main_loop;
  56. static struct ev_timer *clear_pam_wrong_timeout;
  57. static struct ev_timer *clear_indicator_timeout;
  58. static struct ev_timer *dpms_timeout;
  59. static struct ev_timer *discard_passwd_timeout;
  60. extern unlock_state_t unlock_state;
  61. extern pam_state_t pam_state;
  62. static struct xkb_state *xkb_state;
  63. static struct xkb_context *xkb_context;
  64. static struct xkb_keymap *xkb_keymap;
  65. static uint8_t xkb_base_event;
  66. static uint8_t xkb_base_error;
  67. cairo_surface_t *img = NULL;
  68. bool tile = false;
  69. bool ignore_empty_password = false;
  70. bool skip_repeated_empty_password = false;
  71. /* isutf, u8_dec © 2005 Jeff Bezanson, public domain */
  72. #define isutf(c) (((c) & 0xC0) != 0x80)
  73. /*
  74. * Decrements i to point to the previous unicode glyph
  75. *
  76. */
  77. void u8_dec(char *s, int *i) {
  78. (void)(isutf(s[--(*i)]) || isutf(s[--(*i)]) || isutf(s[--(*i)]) || --(*i));
  79. }
  80. static void turn_monitors_on(void) {
  81. if (dpms)
  82. dpms_set_mode(conn, XCB_DPMS_DPMS_MODE_ON);
  83. }
  84. static void turn_monitors_off(void) {
  85. if (dpms)
  86. dpms_set_mode(conn, XCB_DPMS_DPMS_MODE_OFF);
  87. }
  88. /*
  89. * Loads the XKB keymap from the X11 server and feeds it to xkbcommon.
  90. * Necessary so that we can properly let xkbcommon track the keyboard state and
  91. * translate keypresses to utf-8.
  92. *
  93. */
  94. static bool load_keymap(void) {
  95. if (xkb_context == NULL) {
  96. if ((xkb_context = xkb_context_new(0)) == NULL) {
  97. fprintf(stderr, "[i3lock] could not create xkbcommon context\n");
  98. return false;
  99. }
  100. }
  101. xkb_keymap_unref(xkb_keymap);
  102. int32_t device_id = xkb_x11_get_core_keyboard_device_id(conn);
  103. DEBUG("device = %d\n", device_id);
  104. if ((xkb_keymap = xkb_x11_keymap_new_from_device(xkb_context, conn, device_id, 0)) == NULL) {
  105. fprintf(stderr, "[i3lock] xkb_x11_keymap_new_from_device failed\n");
  106. return false;
  107. }
  108. struct xkb_state *new_state =
  109. xkb_x11_state_new_from_device(xkb_keymap, conn, device_id);
  110. if (new_state == NULL) {
  111. fprintf(stderr, "[i3lock] xkb_x11_state_new_from_device failed\n");
  112. return false;
  113. }
  114. xkb_state_unref(xkb_state);
  115. xkb_state = new_state;
  116. return true;
  117. }
  118. /*
  119. * Clears the memory which stored the password to be a bit safer against
  120. * cold-boot attacks.
  121. *
  122. */
  123. static void clear_password_memory(void) {
  124. /* A volatile pointer to the password buffer to prevent the compiler from
  125. * optimizing this out. */
  126. volatile char *vpassword = password;
  127. for (int c = 0; c < sizeof(password); c++)
  128. /* We store a non-random pattern which consists of the (irrelevant)
  129. * index plus (!) the value of the beep variable. This prevents the
  130. * compiler from optimizing the calls away, since the value of 'beep'
  131. * is not known at compile-time. */
  132. vpassword[c] = c + (int)beep;
  133. }
  134. ev_timer* start_timer(ev_timer *timer_obj, ev_tstamp timeout, ev_callback_t callback) {
  135. if (timer_obj) {
  136. ev_timer_stop(main_loop, timer_obj);
  137. ev_timer_set(timer_obj, timeout, 0.);
  138. ev_timer_start(main_loop, timer_obj);
  139. } else {
  140. /* When there is no memory, we just don’t have a timeout. We cannot
  141. * exit() here, since that would effectively unlock the screen. */
  142. timer_obj = calloc(sizeof(struct ev_timer), 1);
  143. if (timer_obj) {
  144. ev_timer_init(timer_obj, callback, timeout, 0.);
  145. ev_timer_start(main_loop, timer_obj);
  146. }
  147. }
  148. return timer_obj;
  149. }
  150. ev_timer* stop_timer(ev_timer *timer_obj) {
  151. if (timer_obj) {
  152. ev_timer_stop(main_loop, timer_obj);
  153. free(timer_obj);
  154. }
  155. return NULL;
  156. }
  157. /*
  158. * Resets pam_state to STATE_PAM_IDLE 2 seconds after an unsuccessful
  159. * authentication event.
  160. *
  161. */
  162. static void clear_pam_wrong(EV_P_ ev_timer *w, int revents) {
  163. DEBUG("clearing pam wrong\n");
  164. pam_state = STATE_PAM_IDLE;
  165. unlock_state = STATE_STARTED;
  166. redraw_screen();
  167. /* Now free this timeout. */
  168. STOP_TIMER(clear_pam_wrong_timeout);
  169. }
  170. static void clear_indicator_cb(EV_P_ ev_timer *w, int revents) {
  171. clear_indicator();
  172. STOP_TIMER(clear_indicator_timeout);
  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_TIMER(clear_indicator_timeout, 1.0, clear_indicator_cb);
  181. unlock_state = STATE_BACKSPACE_ACTIVE;
  182. redraw_screen();
  183. unlock_state = STATE_KEY_PRESSED;
  184. }
  185. static void turn_off_monitors_cb(EV_P_ ev_timer *w, int revents) {
  186. if (input_position == 0)
  187. turn_monitors_off();
  188. STOP_TIMER(dpms_timeout);
  189. }
  190. static void discard_passwd_cb(EV_P_ ev_timer *w, int revents) {
  191. clear_input();
  192. turn_monitors_off();
  193. STOP_TIMER(discard_passwd_timeout);
  194. }
  195. static void input_done(void) {
  196. STOP_TIMER(clear_pam_wrong_timeout);
  197. pam_state = STATE_PAM_VERIFY;
  198. redraw_screen();
  199. if (pam_authenticate(pam_handle, 0) == PAM_SUCCESS) {
  200. DEBUG("successfully authenticated\n");
  201. clear_password_memory();
  202. /* Turn the screen on, as it may have been turned off
  203. * on release of the 'enter' key. */
  204. turn_monitors_on();
  205. exit(0);
  206. }
  207. if (debug_mode)
  208. fprintf(stderr, "Authentication failure\n");
  209. pam_state = STATE_PAM_WRONG;
  210. clear_input();
  211. redraw_screen();
  212. /* Clear this state after 2 seconds (unless the user enters another
  213. * password during that time). */
  214. ev_now_update(main_loop);
  215. START_TIMER(clear_pam_wrong_timeout, TSTAMP_N_SECS(2), clear_pam_wrong);
  216. /* Cancel the clear_indicator_timeout, it would hide the unlock indicator
  217. * too early. */
  218. STOP_TIMER(clear_indicator_timeout);
  219. /* beep on authentication failure, if enabled */
  220. if (beep) {
  221. xcb_bell(conn, 100);
  222. xcb_flush(conn);
  223. }
  224. }
  225. /*
  226. * Called when the user releases a key. We need to leave the Mode_switch
  227. * state when the user releases the Mode_switch key.
  228. *
  229. */
  230. static void handle_key_release(xcb_key_release_event_t *event) {
  231. xkb_state_update_key(xkb_state, event->detail, XKB_KEY_UP);
  232. }
  233. static void redraw_timeout(EV_P_ ev_timer *w, int revents) {
  234. redraw_screen();
  235. STOP_TIMER(w);
  236. }
  237. static bool skip_without_validation(void) {
  238. if (input_position != 0)
  239. return false;
  240. if (skip_repeated_empty_password || ignore_empty_password)
  241. return true;
  242. return false;
  243. }
  244. /*
  245. * Handle key presses. Fixes state, then looks up the key symbol for the
  246. * given keycode, then looks up the key symbol (as UCS-2), converts it to
  247. * UTF-8 and stores it in the password array.
  248. *
  249. */
  250. static void handle_key_press(xcb_key_press_event_t *event) {
  251. xkb_keysym_t ksym;
  252. char buffer[128];
  253. int n;
  254. bool ctrl;
  255. ksym = xkb_state_key_get_one_sym(xkb_state, event->detail);
  256. ctrl = xkb_state_mod_name_is_active(xkb_state, "Control", XKB_STATE_MODS_DEPRESSED);
  257. xkb_state_update_key(xkb_state, event->detail, XKB_KEY_DOWN);
  258. /* The buffer will be null-terminated, so n >= 2 for 1 actual character. */
  259. memset(buffer, '\0', sizeof(buffer));
  260. n = xkb_keysym_to_utf8(ksym, buffer, sizeof(buffer));
  261. switch (ksym) {
  262. case XKB_KEY_Return:
  263. case XKB_KEY_KP_Enter:
  264. case XKB_KEY_XF86ScreenSaver:
  265. if (skip_without_validation()) {
  266. clear_input();
  267. return;
  268. }
  269. password[input_position] = '\0';
  270. unlock_state = STATE_KEY_PRESSED;
  271. redraw_screen();
  272. input_done();
  273. skip_repeated_empty_password = true;
  274. return;
  275. default:
  276. skip_repeated_empty_password = false;
  277. }
  278. switch (ksym) {
  279. case XKB_KEY_u:
  280. if (ctrl) {
  281. DEBUG("C-u pressed\n");
  282. clear_input();
  283. return;
  284. }
  285. break;
  286. case XKB_KEY_Escape:
  287. clear_input();
  288. return;
  289. case XKB_KEY_BackSpace:
  290. if (input_position == 0)
  291. return;
  292. /* decrement input_position to point to the previous glyph */
  293. u8_dec(password, &input_position);
  294. password[input_position] = '\0';
  295. /* Hide the unlock indicator after a bit if the password buffer is
  296. * empty. */
  297. START_TIMER(clear_indicator_timeout, 1.0, clear_indicator_cb);
  298. unlock_state = STATE_BACKSPACE_ACTIVE;
  299. redraw_screen();
  300. unlock_state = STATE_KEY_PRESSED;
  301. return;
  302. }
  303. if ((input_position + 8) >= sizeof(password))
  304. return;
  305. #if 0
  306. /* FIXME: handle all of these? */
  307. printf("is_keypad_key = %d\n", xcb_is_keypad_key(sym));
  308. printf("is_private_keypad_key = %d\n", xcb_is_private_keypad_key(sym));
  309. printf("xcb_is_cursor_key = %d\n", xcb_is_cursor_key(sym));
  310. printf("xcb_is_pf_key = %d\n", xcb_is_pf_key(sym));
  311. printf("xcb_is_function_key = %d\n", xcb_is_function_key(sym));
  312. printf("xcb_is_misc_function_key = %d\n", xcb_is_misc_function_key(sym));
  313. printf("xcb_is_modifier_key = %d\n", xcb_is_modifier_key(sym));
  314. #endif
  315. if (n < 2)
  316. return;
  317. /* store it in the password array as UTF-8 */
  318. memcpy(password+input_position, buffer, n-1);
  319. input_position += n-1;
  320. DEBUG("current password = %.*s\n", input_position, password);
  321. unlock_state = STATE_KEY_ACTIVE;
  322. redraw_screen();
  323. unlock_state = STATE_KEY_PRESSED;
  324. struct ev_timer *timeout = NULL;
  325. START_TIMER(timeout, TSTAMP_N_SECS(0.25), redraw_timeout);
  326. STOP_TIMER(clear_indicator_timeout);
  327. START_TIMER(discard_passwd_timeout, TSTAMP_N_MINS(3), discard_passwd_cb);
  328. }
  329. /*
  330. * A visibility notify event will be received when the visibility (= can the
  331. * user view the complete window) changes, so for example when a popup overlays
  332. * some area of the i3lock window.
  333. *
  334. * In this case, we raise our window on top so that the popup (or whatever is
  335. * hiding us) gets hidden.
  336. *
  337. */
  338. static void handle_visibility_notify(xcb_connection_t *conn,
  339. xcb_visibility_notify_event_t *event) {
  340. if (event->state != XCB_VISIBILITY_UNOBSCURED) {
  341. uint32_t values[] = { XCB_STACK_MODE_ABOVE };
  342. xcb_configure_window(conn, event->window, XCB_CONFIG_WINDOW_STACK_MODE, values);
  343. xcb_flush(conn);
  344. }
  345. }
  346. /*
  347. * Called when the keyboard mapping changes. We update our symbols.
  348. *
  349. */
  350. static void handle_mapping_notify(xcb_mapping_notify_event_t *event) {
  351. /* We ignore errors — if the new keymap cannot be loaded it’s better if the
  352. * screen stays locked and the user intervenes by using killall i3lock. */
  353. (void)load_keymap();
  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(void) {
  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. redraw_screen();
  376. uint32_t mask = XCB_CONFIG_WINDOW_WIDTH | XCB_CONFIG_WINDOW_HEIGHT;
  377. xcb_configure_window(conn, win, mask, last_resolution);
  378. xcb_flush(conn);
  379. xinerama_query_screens();
  380. redraw_screen();
  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_response))) == 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. if (debug_mode)
  435. fprintf(stderr, "X11 Error received! sequence 0x%x, error_code = %d\n",
  436. error->sequence, error->error_code);
  437. free(event);
  438. continue;
  439. }
  440. /* Strip off the highest bit (set if the event is generated) */
  441. int type = (event->response_type & 0x7F);
  442. switch (type) {
  443. case XCB_KEY_PRESS:
  444. handle_key_press((xcb_key_press_event_t*)event);
  445. break;
  446. case XCB_KEY_RELEASE:
  447. handle_key_release((xcb_key_release_event_t*)event);
  448. /* If this was the backspace or escape key we are back at an
  449. * empty input, so turn off the screen if DPMS is enabled, but
  450. * only do that after some timeout: maybe user mistyped and
  451. * will type again right away */
  452. START_TIMER(dpms_timeout, TSTAMP_N_SECS(inactivity_timeout),
  453. turn_off_monitors_cb);
  454. break;
  455. case XCB_VISIBILITY_NOTIFY:
  456. handle_visibility_notify(conn, (xcb_visibility_notify_event_t*)event);
  457. break;
  458. case XCB_MAP_NOTIFY:
  459. if (!dont_fork) {
  460. /* After the first MapNotify, we never fork again. We don’t
  461. * expect to get another MapNotify, but better be sure */
  462. dont_fork = true;
  463. /* In the parent process, we exit */
  464. if (fork() != 0)
  465. exit(0);
  466. ev_loop_fork(EV_DEFAULT);
  467. }
  468. break;
  469. case XCB_MAPPING_NOTIFY:
  470. handle_mapping_notify((xcb_mapping_notify_event_t*)event);
  471. break;
  472. case XCB_CONFIGURE_NOTIFY:
  473. handle_screen_resize();
  474. break;
  475. }
  476. free(event);
  477. }
  478. }
  479. /*
  480. * This function is called from a fork()ed child and will raise the i3lock
  481. * window when the window is obscured, even when the main i3lock process is
  482. * blocked due to PAM.
  483. *
  484. */
  485. static void raise_loop(xcb_window_t window) {
  486. xcb_connection_t *conn;
  487. xcb_generic_event_t *event;
  488. int screens;
  489. if ((conn = xcb_connect(NULL, &screens)) == NULL ||
  490. xcb_connection_has_error(conn))
  491. errx(EXIT_FAILURE, "Cannot open display\n");
  492. /* We need to know about the window being obscured or getting destroyed. */
  493. xcb_change_window_attributes(conn, window, XCB_CW_EVENT_MASK,
  494. (uint32_t[]){
  495. XCB_EVENT_MASK_VISIBILITY_CHANGE |
  496. XCB_EVENT_MASK_STRUCTURE_NOTIFY
  497. });
  498. xcb_flush(conn);
  499. DEBUG("Watching window 0x%08x\n", window);
  500. while ((event = xcb_wait_for_event(conn)) != NULL) {
  501. if (event->response_type == 0) {
  502. xcb_generic_error_t *error = (xcb_generic_error_t*)event;
  503. DEBUG("X11 Error received! sequence 0x%x, error_code = %d\n",
  504. error->sequence, error->error_code);
  505. free(event);
  506. continue;
  507. }
  508. /* Strip off the highest bit (set if the event is generated) */
  509. int type = (event->response_type & 0x7F);
  510. DEBUG("Read event of type %d\n", type);
  511. switch (type) {
  512. case XCB_VISIBILITY_NOTIFY:
  513. handle_visibility_notify(conn, (xcb_visibility_notify_event_t*)event);
  514. break;
  515. case XCB_UNMAP_NOTIFY:
  516. DEBUG("UnmapNotify for 0x%08x\n", (((xcb_unmap_notify_event_t*)event)->window));
  517. if (((xcb_unmap_notify_event_t*)event)->window == window)
  518. exit(EXIT_SUCCESS);
  519. break;
  520. case XCB_DESTROY_NOTIFY:
  521. DEBUG("DestroyNotify for 0x%08x\n", (((xcb_destroy_notify_event_t*)event)->window));
  522. if (((xcb_destroy_notify_event_t*)event)->window == window)
  523. exit(EXIT_SUCCESS);
  524. break;
  525. default:
  526. DEBUG("Unhandled event type %d\n", type);
  527. break;
  528. }
  529. free(event);
  530. }
  531. }
  532. int main(int argc, char *argv[]) {
  533. char *username;
  534. char *image_path = NULL;
  535. int ret;
  536. struct pam_conv conv = {conv_callback, NULL};
  537. int curs_choice = CURS_NONE;
  538. int o;
  539. int optind = 0;
  540. struct option longopts[] = {
  541. {"version", no_argument, NULL, 'v'},
  542. {"nofork", no_argument, NULL, 'n'},
  543. {"beep", no_argument, NULL, 'b'},
  544. {"dpms", no_argument, NULL, 'd'},
  545. {"color", required_argument, NULL, 'c'},
  546. {"pointer", required_argument, NULL , 'p'},
  547. {"debug", no_argument, NULL, 0},
  548. {"help", no_argument, NULL, 'h'},
  549. {"no-unlock-indicator", no_argument, NULL, 'u'},
  550. {"image", required_argument, NULL, 'i'},
  551. {"tiling", no_argument, NULL, 't'},
  552. {"ignore-empty-password", no_argument, NULL, 'e'},
  553. {"inactivity-timeout", required_argument, NULL, 'I'},
  554. {NULL, no_argument, NULL, 0}
  555. };
  556. if ((username = getenv("USER")) == NULL)
  557. errx(EXIT_FAILURE, "USER environment variable not set, please set it.\n");
  558. char *optstring = "hvnbdc:p:ui:teI:";
  559. while ((o = getopt_long(argc, argv, optstring, longopts, &optind)) != -1) {
  560. switch (o) {
  561. case 'v':
  562. errx(EXIT_SUCCESS, "version " VERSION " © 2010-2012 Michael Stapelberg");
  563. case 'n':
  564. dont_fork = true;
  565. break;
  566. case 'b':
  567. beep = true;
  568. break;
  569. case 'd':
  570. dpms = true;
  571. break;
  572. case 'I': {
  573. int time = 0;
  574. if (sscanf(optarg, "%d", &time) != 1 || time < 0)
  575. errx(EXIT_FAILURE, "invalid timeout, it must be a positive integer\n");
  576. inactivity_timeout = time;
  577. break;
  578. }
  579. case 'c': {
  580. char *arg = optarg;
  581. /* Skip # if present */
  582. if (arg[0] == '#')
  583. arg++;
  584. if (strlen(arg) != 6 || sscanf(arg, "%06[0-9a-fA-F]", color) != 1)
  585. errx(EXIT_FAILURE, "color is invalid, it must be given in 3-byte hexadecimal format: rrggbb\n");
  586. break;
  587. }
  588. case 'u':
  589. unlock_indicator = false;
  590. break;
  591. case 'i':
  592. image_path = strdup(optarg);
  593. break;
  594. case 't':
  595. tile = true;
  596. break;
  597. case 'p':
  598. if (!strcmp(optarg, "win")) {
  599. curs_choice = CURS_WIN;
  600. } else if (!strcmp(optarg, "default")) {
  601. curs_choice = CURS_DEFAULT;
  602. } else {
  603. errx(EXIT_FAILURE, "i3lock: Invalid pointer type given. Expected one of \"win\" or \"default\".\n");
  604. }
  605. break;
  606. case 'e':
  607. ignore_empty_password = true;
  608. break;
  609. case 0:
  610. if (strcmp(longopts[optind].name, "debug") == 0)
  611. debug_mode = true;
  612. break;
  613. default:
  614. errx(EXIT_FAILURE, "Syntax: i3lock [-v] [-n] [-b] [-d] [-c color] [-u] [-p win|default]"
  615. " [-i image.png] [-t] [-e] [-I]"
  616. );
  617. }
  618. }
  619. /* We need (relatively) random numbers for highlighting a random part of
  620. * the unlock indicator upon keypresses. */
  621. srand(time(NULL));
  622. /* Initialize PAM */
  623. ret = pam_start("i3lock", username, &conv, &pam_handle);
  624. if (ret != PAM_SUCCESS)
  625. errx(EXIT_FAILURE, "PAM: %s", pam_strerror(pam_handle, ret));
  626. /* Using mlock() as non-super-user seems only possible in Linux. Users of other
  627. * operating systems should use encrypted swap/no swap (or remove the ifdef and
  628. * run i3lock as super-user). */
  629. #if defined(__linux__)
  630. /* Lock the area where we store the password in memory, we don’t want it to
  631. * be swapped to disk. Since Linux 2.6.9, this does not require any
  632. * privileges, just enough bytes in the RLIMIT_MEMLOCK limit. */
  633. if (mlock(password, sizeof(password)) != 0)
  634. err(EXIT_FAILURE, "Could not lock page in memory, check RLIMIT_MEMLOCK");
  635. #endif
  636. /* Double checking that connection is good and operatable with xcb */
  637. int screennr;
  638. if ((conn = xcb_connect(NULL, &screennr)) == NULL ||
  639. xcb_connection_has_error(conn))
  640. errx(EXIT_FAILURE, "Could not connect to X11, maybe you need to set DISPLAY?");
  641. if (xkb_x11_setup_xkb_extension(conn,
  642. XKB_X11_MIN_MAJOR_XKB_VERSION,
  643. XKB_X11_MIN_MINOR_XKB_VERSION,
  644. 0,
  645. NULL,
  646. NULL,
  647. &xkb_base_event,
  648. &xkb_base_error) != 1)
  649. errx(EXIT_FAILURE, "Could not setup XKB extension.");
  650. /* When we cannot initially load the keymap, we better exit */
  651. if (!load_keymap())
  652. errx(EXIT_FAILURE, "Could not load keymap");
  653. xinerama_init();
  654. xinerama_query_screens();
  655. /* if DPMS is enabled, check if the X server really supports it */
  656. if (dpms) {
  657. xcb_dpms_capable_cookie_t dpmsc = xcb_dpms_capable(conn);
  658. xcb_dpms_capable_reply_t *dpmsr;
  659. if ((dpmsr = xcb_dpms_capable_reply(conn, dpmsc, NULL))) {
  660. if (!dpmsr->capable) {
  661. if (debug_mode)
  662. fprintf(stderr, "Disabling DPMS, X server not DPMS capable\n");
  663. dpms = false;
  664. }
  665. free(dpmsr);
  666. }
  667. }
  668. screen = xcb_setup_roots_iterator(xcb_get_setup(conn)).data;
  669. last_resolution[0] = screen->width_in_pixels;
  670. last_resolution[1] = screen->height_in_pixels;
  671. xcb_change_window_attributes(conn, screen->root, XCB_CW_EVENT_MASK,
  672. (uint32_t[]){ XCB_EVENT_MASK_STRUCTURE_NOTIFY });
  673. if (image_path) {
  674. /* Create a pixmap to render on, fill it with the background color */
  675. img = cairo_image_surface_create_from_png(image_path);
  676. /* In case loading failed, we just pretend no -i was specified. */
  677. if (cairo_surface_status(img) != CAIRO_STATUS_SUCCESS) {
  678. fprintf(stderr, "Could not load image \"%s\": %s\n",
  679. image_path, cairo_status_to_string(cairo_surface_status(img)));
  680. img = NULL;
  681. }
  682. }
  683. /* Pixmap on which the image is rendered to (if any) */
  684. xcb_pixmap_t bg_pixmap = draw_image(last_resolution);
  685. /* open the fullscreen window, already with the correct pixmap in place */
  686. win = open_fullscreen_window(conn, screen, color, bg_pixmap);
  687. xcb_free_pixmap(conn, bg_pixmap);
  688. pid_t pid = fork();
  689. /* The pid == -1 case is intentionally ignored here:
  690. * While the child process is useful for preventing other windows from
  691. * popping up while i3lock blocks, it is not critical. */
  692. if (pid == 0) {
  693. /* Child */
  694. close(xcb_get_file_descriptor(conn));
  695. raise_loop(win);
  696. exit(EXIT_SUCCESS);
  697. }
  698. cursor = create_cursor(conn, screen, win, curs_choice);
  699. grab_pointer_and_keyboard(conn, screen, cursor);
  700. /* Load the keymap again to sync the current modifier state. Since we first
  701. * loaded the keymap, there might have been changes, but starting from now,
  702. * we should get all key presses/releases due to having grabbed the
  703. * keyboard. */
  704. (void)load_keymap();
  705. turn_monitors_off();
  706. /* Initialize the libev event loop. */
  707. main_loop = EV_DEFAULT;
  708. if (main_loop == NULL)
  709. errx(EXIT_FAILURE, "Could not initialize libev. Bad LIBEV_FLAGS?\n");
  710. struct ev_io *xcb_watcher = calloc(sizeof(struct ev_io), 1);
  711. struct ev_check *xcb_check = calloc(sizeof(struct ev_check), 1);
  712. struct ev_prepare *xcb_prepare = calloc(sizeof(struct ev_prepare), 1);
  713. ev_io_init(xcb_watcher, xcb_got_event, xcb_get_file_descriptor(conn), EV_READ);
  714. ev_io_start(main_loop, xcb_watcher);
  715. ev_check_init(xcb_check, xcb_check_cb);
  716. ev_check_start(main_loop, xcb_check);
  717. ev_prepare_init(xcb_prepare, xcb_prepare_cb);
  718. ev_prepare_start(main_loop, xcb_prepare);
  719. /* Invoke the event callback once to catch all the events which were
  720. * received up until now. ev will only pick up new events (when the X11
  721. * file descriptor becomes readable). */
  722. ev_invoke(main_loop, xcb_check, 0);
  723. ev_loop(main_loop, 0);
  724. }