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.

974 lines
31 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 <pwd.h>
  12. #include <sys/types.h>
  13. #include <string.h>
  14. #include <unistd.h>
  15. #include <stdbool.h>
  16. #include <stdint.h>
  17. #include <xcb/xcb.h>
  18. #include <xcb/xkb.h>
  19. #include <xcb/dpms.h>
  20. #include <err.h>
  21. #include <assert.h>
  22. #include <security/pam_appl.h>
  23. #include <getopt.h>
  24. #include <string.h>
  25. #include <ev.h>
  26. #include <sys/mman.h>
  27. #include <xkbcommon/xkbcommon.h>
  28. #include <xkbcommon/xkbcommon-compose.h>
  29. #include <xkbcommon/xkbcommon-x11.h>
  30. #include <cairo.h>
  31. #include <cairo/cairo-xcb.h>
  32. #include "i3lock.h"
  33. #include "xcb.h"
  34. #include "cursors.h"
  35. #include "unlock_indicator.h"
  36. #include "xinerama.h"
  37. #define TSTAMP_N_SECS(n) (n * 1.0)
  38. #define TSTAMP_N_MINS(n) (60 * TSTAMP_N_SECS(n))
  39. #define START_TIMER(timer_obj, timeout, callback) \
  40. timer_obj = start_timer(timer_obj, timeout, callback)
  41. #define STOP_TIMER(timer_obj) \
  42. timer_obj = stop_timer(timer_obj)
  43. typedef void (*ev_callback_t)(EV_P_ ev_timer *w, int revents);
  44. /* We need this for libxkbfile */
  45. char color[7] = "ffffff";
  46. int inactivity_timeout = 30;
  47. uint32_t last_resolution[2];
  48. xcb_window_t win;
  49. static xcb_cursor_t cursor;
  50. static pam_handle_t *pam_handle;
  51. int input_position = 0;
  52. /* Holds the password you enter (in UTF-8). */
  53. static char password[512];
  54. static bool beep = false;
  55. bool debug_mode = false;
  56. static bool dpms = false;
  57. bool unlock_indicator = true;
  58. static bool dont_fork = false;
  59. struct ev_loop *main_loop;
  60. static struct ev_timer *clear_pam_wrong_timeout;
  61. static struct ev_timer *clear_indicator_timeout;
  62. static struct ev_timer *dpms_timeout;
  63. static struct ev_timer *discard_passwd_timeout;
  64. extern unlock_state_t unlock_state;
  65. extern pam_state_t pam_state;
  66. int failed_attempts = 0;
  67. bool show_failed_attempts = false;
  68. static struct xkb_state *xkb_state;
  69. static struct xkb_context *xkb_context;
  70. static struct xkb_keymap *xkb_keymap;
  71. static struct xkb_compose_table *xkb_compose_table;
  72. static struct xkb_compose_state *xkb_compose_state;
  73. static uint8_t xkb_base_event;
  74. static uint8_t xkb_base_error;
  75. cairo_surface_t *img = NULL;
  76. bool tile = false;
  77. bool ignore_empty_password = false;
  78. bool skip_repeated_empty_password = false;
  79. /* isutf, u8_dec © 2005 Jeff Bezanson, public domain */
  80. #define isutf(c) (((c)&0xC0) != 0x80)
  81. /*
  82. * Decrements i to point to the previous unicode glyph
  83. *
  84. */
  85. void u8_dec(char *s, int *i) {
  86. (void)(isutf(s[--(*i)]) || isutf(s[--(*i)]) || isutf(s[--(*i)]) || --(*i));
  87. }
  88. static void turn_monitors_on(void) {
  89. if (dpms)
  90. dpms_set_mode(conn, XCB_DPMS_DPMS_MODE_ON);
  91. }
  92. static void turn_monitors_off(void) {
  93. if (dpms)
  94. dpms_set_mode(conn, XCB_DPMS_DPMS_MODE_OFF);
  95. }
  96. /*
  97. * Loads the XKB keymap from the X11 server and feeds it to xkbcommon.
  98. * Necessary so that we can properly let xkbcommon track the keyboard state and
  99. * translate keypresses to utf-8.
  100. *
  101. */
  102. static bool load_keymap(void) {
  103. if (xkb_context == NULL) {
  104. if ((xkb_context = xkb_context_new(0)) == NULL) {
  105. fprintf(stderr, "[i3lock] could not create xkbcommon context\n");
  106. return false;
  107. }
  108. }
  109. xkb_keymap_unref(xkb_keymap);
  110. int32_t device_id = xkb_x11_get_core_keyboard_device_id(conn);
  111. DEBUG("device = %d\n", device_id);
  112. if ((xkb_keymap = xkb_x11_keymap_new_from_device(xkb_context, conn, device_id, 0)) == NULL) {
  113. fprintf(stderr, "[i3lock] xkb_x11_keymap_new_from_device failed\n");
  114. return false;
  115. }
  116. struct xkb_state *new_state =
  117. xkb_x11_state_new_from_device(xkb_keymap, conn, device_id);
  118. if (new_state == NULL) {
  119. fprintf(stderr, "[i3lock] xkb_x11_state_new_from_device failed\n");
  120. return false;
  121. }
  122. xkb_state_unref(xkb_state);
  123. xkb_state = new_state;
  124. return true;
  125. }
  126. /*
  127. * Loads the XKB compose table from the given locale.
  128. *
  129. */
  130. static bool load_compose_table(const char *locale) {
  131. xkb_compose_table_unref(xkb_compose_table);
  132. if ((xkb_compose_table = xkb_compose_table_new_from_locale(xkb_context, locale, 0)) == NULL) {
  133. fprintf(stderr, "[i3lock] xkb_compose_table_new_from_locale failed\n");
  134. return false;
  135. }
  136. struct xkb_compose_state *new_compose_state = xkb_compose_state_new(xkb_compose_table, 0);
  137. if (new_compose_state == NULL) {
  138. fprintf(stderr, "[i3lock] xkb_compose_state_new failed\n");
  139. return false;
  140. }
  141. xkb_compose_state_unref(xkb_compose_state);
  142. xkb_compose_state = new_compose_state;
  143. return true;
  144. }
  145. /*
  146. * Clears the memory which stored the password to be a bit safer against
  147. * cold-boot attacks.
  148. *
  149. */
  150. static void clear_password_memory(void) {
  151. /* A volatile pointer to the password buffer to prevent the compiler from
  152. * optimizing this out. */
  153. volatile char *vpassword = password;
  154. for (int c = 0; c < sizeof(password); c++)
  155. /* We store a non-random pattern which consists of the (irrelevant)
  156. * index plus (!) the value of the beep variable. This prevents the
  157. * compiler from optimizing the calls away, since the value of 'beep'
  158. * is not known at compile-time. */
  159. vpassword[c] = c + (int)beep;
  160. }
  161. ev_timer *start_timer(ev_timer *timer_obj, ev_tstamp timeout, ev_callback_t callback) {
  162. if (timer_obj) {
  163. ev_timer_stop(main_loop, timer_obj);
  164. ev_timer_set(timer_obj, timeout, 0.);
  165. ev_timer_start(main_loop, timer_obj);
  166. } else {
  167. /* When there is no memory, we just don’t have a timeout. We cannot
  168. * exit() here, since that would effectively unlock the screen. */
  169. timer_obj = calloc(sizeof(struct ev_timer), 1);
  170. if (timer_obj) {
  171. ev_timer_init(timer_obj, callback, timeout, 0.);
  172. ev_timer_start(main_loop, timer_obj);
  173. }
  174. }
  175. return timer_obj;
  176. }
  177. ev_timer *stop_timer(ev_timer *timer_obj) {
  178. if (timer_obj) {
  179. ev_timer_stop(main_loop, timer_obj);
  180. free(timer_obj);
  181. }
  182. return NULL;
  183. }
  184. /*
  185. * Resets pam_state to STATE_PAM_IDLE 2 seconds after an unsuccessful
  186. * authentication event.
  187. *
  188. */
  189. static void clear_pam_wrong(EV_P_ ev_timer *w, int revents) {
  190. DEBUG("clearing pam wrong\n");
  191. pam_state = STATE_PAM_IDLE;
  192. unlock_state = STATE_STARTED;
  193. redraw_screen();
  194. /* Now free this timeout. */
  195. STOP_TIMER(clear_pam_wrong_timeout);
  196. }
  197. static void clear_indicator_cb(EV_P_ ev_timer *w, int revents) {
  198. clear_indicator();
  199. STOP_TIMER(clear_indicator_timeout);
  200. }
  201. static void clear_input(void) {
  202. input_position = 0;
  203. clear_password_memory();
  204. password[input_position] = '\0';
  205. /* Hide the unlock indicator after a bit if the password buffer is
  206. * empty. */
  207. START_TIMER(clear_indicator_timeout, 1.0, clear_indicator_cb);
  208. unlock_state = STATE_BACKSPACE_ACTIVE;
  209. redraw_screen();
  210. unlock_state = STATE_KEY_PRESSED;
  211. }
  212. static void turn_off_monitors_cb(EV_P_ ev_timer *w, int revents) {
  213. if (input_position == 0)
  214. turn_monitors_off();
  215. STOP_TIMER(dpms_timeout);
  216. }
  217. static void discard_passwd_cb(EV_P_ ev_timer *w, int revents) {
  218. clear_input();
  219. turn_monitors_off();
  220. STOP_TIMER(discard_passwd_timeout);
  221. }
  222. static void input_done(void) {
  223. STOP_TIMER(clear_pam_wrong_timeout);
  224. pam_state = STATE_PAM_VERIFY;
  225. redraw_screen();
  226. if (pam_authenticate(pam_handle, 0) == PAM_SUCCESS) {
  227. DEBUG("successfully authenticated\n");
  228. clear_password_memory();
  229. /* Turn the screen on, as it may have been turned off
  230. * on release of the 'enter' key. */
  231. turn_monitors_on();
  232. exit(0);
  233. }
  234. if (debug_mode)
  235. fprintf(stderr, "Authentication failure\n");
  236. pam_state = STATE_PAM_WRONG;
  237. failed_attempts += 1;
  238. clear_input();
  239. redraw_screen();
  240. /* Clear this state after 2 seconds (unless the user enters another
  241. * password during that time). */
  242. ev_now_update(main_loop);
  243. START_TIMER(clear_pam_wrong_timeout, TSTAMP_N_SECS(2), clear_pam_wrong);
  244. /* Cancel the clear_indicator_timeout, it would hide the unlock indicator
  245. * too early. */
  246. STOP_TIMER(clear_indicator_timeout);
  247. /* beep on authentication failure, if enabled */
  248. if (beep) {
  249. xcb_bell(conn, 100);
  250. xcb_flush(conn);
  251. }
  252. }
  253. static void redraw_timeout(EV_P_ ev_timer *w, int revents) {
  254. redraw_screen();
  255. STOP_TIMER(w);
  256. }
  257. static bool skip_without_validation(void) {
  258. if (input_position != 0)
  259. return false;
  260. if (skip_repeated_empty_password || ignore_empty_password)
  261. return true;
  262. return false;
  263. }
  264. /*
  265. * Handle key presses. Fixes state, then looks up the key symbol for the
  266. * given keycode, then looks up the key symbol (as UCS-2), converts it to
  267. * UTF-8 and stores it in the password array.
  268. *
  269. */
  270. static void handle_key_press(xcb_key_press_event_t *event) {
  271. xkb_keysym_t ksym;
  272. char buffer[128];
  273. int n;
  274. bool ctrl;
  275. bool composed = false;
  276. ksym = xkb_state_key_get_one_sym(xkb_state, event->detail);
  277. ctrl = xkb_state_mod_name_is_active(xkb_state, "Control", XKB_STATE_MODS_DEPRESSED);
  278. /* The buffer will be null-terminated, so n >= 2 for 1 actual character. */
  279. memset(buffer, '\0', sizeof(buffer));
  280. if (xkb_compose_state && xkb_compose_state_feed(xkb_compose_state, ksym) == XKB_COMPOSE_FEED_ACCEPTED) {
  281. switch (xkb_compose_state_get_status(xkb_compose_state)) {
  282. case XKB_COMPOSE_NOTHING:
  283. break;
  284. case XKB_COMPOSE_COMPOSING:
  285. return;
  286. case XKB_COMPOSE_COMPOSED:
  287. /* xkb_compose_state_get_utf8 doesn't include the terminating byte in the return value
  288. * as xkb_keysym_to_utf8 does. Adding one makes the variable n consistent. */
  289. n = xkb_compose_state_get_utf8(xkb_compose_state, buffer, sizeof(buffer)) + 1;
  290. ksym = xkb_compose_state_get_one_sym(xkb_compose_state);
  291. composed = true;
  292. break;
  293. case XKB_COMPOSE_CANCELLED:
  294. xkb_compose_state_reset(xkb_compose_state);
  295. return;
  296. }
  297. }
  298. if (!composed) {
  299. n = xkb_keysym_to_utf8(ksym, buffer, sizeof(buffer));
  300. }
  301. switch (ksym) {
  302. case XKB_KEY_Return:
  303. case XKB_KEY_KP_Enter:
  304. case XKB_KEY_XF86ScreenSaver:
  305. if (pam_state == STATE_PAM_WRONG)
  306. return;
  307. if (skip_without_validation()) {
  308. clear_input();
  309. return;
  310. }
  311. password[input_position] = '\0';
  312. unlock_state = STATE_KEY_PRESSED;
  313. redraw_screen();
  314. input_done();
  315. skip_repeated_empty_password = true;
  316. return;
  317. default:
  318. skip_repeated_empty_password = false;
  319. }
  320. switch (ksym) {
  321. case XKB_KEY_u:
  322. if (ctrl) {
  323. DEBUG("C-u pressed\n");
  324. clear_input();
  325. return;
  326. }
  327. break;
  328. case XKB_KEY_Escape:
  329. clear_input();
  330. return;
  331. case XKB_KEY_BackSpace:
  332. if (input_position == 0)
  333. return;
  334. /* decrement input_position to point to the previous glyph */
  335. u8_dec(password, &input_position);
  336. password[input_position] = '\0';
  337. /* Hide the unlock indicator after a bit if the password buffer is
  338. * empty. */
  339. START_TIMER(clear_indicator_timeout, 1.0, clear_indicator_cb);
  340. unlock_state = STATE_BACKSPACE_ACTIVE;
  341. redraw_screen();
  342. unlock_state = STATE_KEY_PRESSED;
  343. return;
  344. }
  345. if ((input_position + 8) >= sizeof(password))
  346. return;
  347. #if 0
  348. /* FIXME: handle all of these? */
  349. printf("is_keypad_key = %d\n", xcb_is_keypad_key(sym));
  350. printf("is_private_keypad_key = %d\n", xcb_is_private_keypad_key(sym));
  351. printf("xcb_is_cursor_key = %d\n", xcb_is_cursor_key(sym));
  352. printf("xcb_is_pf_key = %d\n", xcb_is_pf_key(sym));
  353. printf("xcb_is_function_key = %d\n", xcb_is_function_key(sym));
  354. printf("xcb_is_misc_function_key = %d\n", xcb_is_misc_function_key(sym));
  355. printf("xcb_is_modifier_key = %d\n", xcb_is_modifier_key(sym));
  356. #endif
  357. if (n < 2)
  358. return;
  359. /* store it in the password array as UTF-8 */
  360. memcpy(password + input_position, buffer, n - 1);
  361. input_position += n - 1;
  362. DEBUG("current password = %.*s\n", input_position, password);
  363. unlock_state = STATE_KEY_ACTIVE;
  364. redraw_screen();
  365. unlock_state = STATE_KEY_PRESSED;
  366. struct ev_timer *timeout = NULL;
  367. START_TIMER(timeout, TSTAMP_N_SECS(0.25), redraw_timeout);
  368. STOP_TIMER(clear_indicator_timeout);
  369. START_TIMER(discard_passwd_timeout, TSTAMP_N_MINS(3), discard_passwd_cb);
  370. }
  371. /*
  372. * A visibility notify event will be received when the visibility (= can the
  373. * user view the complete window) changes, so for example when a popup overlays
  374. * some area of the i3lock window.
  375. *
  376. * In this case, we raise our window on top so that the popup (or whatever is
  377. * hiding us) gets hidden.
  378. *
  379. */
  380. static void handle_visibility_notify(xcb_connection_t *conn,
  381. xcb_visibility_notify_event_t *event) {
  382. if (event->state != XCB_VISIBILITY_UNOBSCURED) {
  383. uint32_t values[] = {XCB_STACK_MODE_ABOVE};
  384. xcb_configure_window(conn, event->window, XCB_CONFIG_WINDOW_STACK_MODE, values);
  385. xcb_flush(conn);
  386. }
  387. }
  388. /*
  389. * Called when the keyboard mapping changes. We update our symbols.
  390. *
  391. * We ignore errors if the new keymap cannot be loaded its better if the
  392. * screen stays locked and the user intervenes by using killall i3lock.
  393. *
  394. */
  395. static void process_xkb_event(xcb_generic_event_t *gevent) {
  396. union xkb_event {
  397. struct {
  398. uint8_t response_type;
  399. uint8_t xkbType;
  400. uint16_t sequence;
  401. xcb_timestamp_t time;
  402. uint8_t deviceID;
  403. } any;
  404. xcb_xkb_new_keyboard_notify_event_t new_keyboard_notify;
  405. xcb_xkb_map_notify_event_t map_notify;
  406. xcb_xkb_state_notify_event_t state_notify;
  407. } *event = (union xkb_event *)gevent;
  408. DEBUG("process_xkb_event for device %d\n", event->any.deviceID);
  409. if (event->any.deviceID != xkb_x11_get_core_keyboard_device_id(conn))
  410. return;
  411. /*
  412. * XkbNewKkdNotify and XkbMapNotify together capture all sorts of keymap
  413. * updates (e.g. xmodmap, xkbcomp, setxkbmap), with minimal redundent
  414. * recompilations.
  415. */
  416. switch (event->any.xkbType) {
  417. case XCB_XKB_NEW_KEYBOARD_NOTIFY:
  418. if (event->new_keyboard_notify.changed & XCB_XKB_NKN_DETAIL_KEYCODES)
  419. (void)load_keymap();
  420. break;
  421. case XCB_XKB_MAP_NOTIFY:
  422. (void)load_keymap();
  423. break;
  424. case XCB_XKB_STATE_NOTIFY:
  425. xkb_state_update_mask(xkb_state,
  426. event->state_notify.baseMods,
  427. event->state_notify.latchedMods,
  428. event->state_notify.lockedMods,
  429. event->state_notify.baseGroup,
  430. event->state_notify.latchedGroup,
  431. event->state_notify.lockedGroup);
  432. break;
  433. }
  434. }
  435. /*
  436. * Called when the properties on the root window change, e.g. when the screen
  437. * resolution changes. If so we update the window to cover the whole screen
  438. * and also redraw the image, if any.
  439. *
  440. */
  441. void handle_screen_resize(void) {
  442. xcb_get_geometry_cookie_t geomc;
  443. xcb_get_geometry_reply_t *geom;
  444. geomc = xcb_get_geometry(conn, screen->root);
  445. if ((geom = xcb_get_geometry_reply(conn, geomc, 0)) == NULL)
  446. return;
  447. if (last_resolution[0] == geom->width &&
  448. last_resolution[1] == geom->height) {
  449. free(geom);
  450. return;
  451. }
  452. last_resolution[0] = geom->width;
  453. last_resolution[1] = geom->height;
  454. free(geom);
  455. redraw_screen();
  456. uint32_t mask = XCB_CONFIG_WINDOW_WIDTH | XCB_CONFIG_WINDOW_HEIGHT;
  457. xcb_configure_window(conn, win, mask, last_resolution);
  458. xcb_flush(conn);
  459. xinerama_query_screens();
  460. redraw_screen();
  461. }
  462. /*
  463. * Callback function for PAM. We only react on password request callbacks.
  464. *
  465. */
  466. static int conv_callback(int num_msg, const struct pam_message **msg,
  467. struct pam_response **resp, void *appdata_ptr) {
  468. if (num_msg == 0)
  469. return 1;
  470. /* PAM expects an array of responses, one for each message */
  471. if ((*resp = calloc(num_msg, sizeof(struct pam_response))) == NULL) {
  472. perror("calloc");
  473. return 1;
  474. }
  475. for (int c = 0; c < num_msg; c++) {
  476. if (msg[c]->msg_style != PAM_PROMPT_ECHO_OFF &&
  477. msg[c]->msg_style != PAM_PROMPT_ECHO_ON)
  478. continue;
  479. /* return code is currently not used but should be set to zero */
  480. resp[c]->resp_retcode = 0;
  481. if ((resp[c]->resp = strdup(password)) == NULL) {
  482. perror("strdup");
  483. return 1;
  484. }
  485. }
  486. return 0;
  487. }
  488. /*
  489. * This callback is only a dummy, see xcb_prepare_cb and xcb_check_cb.
  490. * See also man libev(3): "ev_prepare" and "ev_check" - customise your event loop
  491. *
  492. */
  493. static void xcb_got_event(EV_P_ struct ev_io *w, int revents) {
  494. /* empty, because xcb_prepare_cb and xcb_check_cb are used */
  495. }
  496. /*
  497. * Flush before blocking (and waiting for new events)
  498. *
  499. */
  500. static void xcb_prepare_cb(EV_P_ ev_prepare *w, int revents) {
  501. xcb_flush(conn);
  502. }
  503. /*
  504. * Instead of polling the X connection socket we leave this to
  505. * xcb_poll_for_event() which knows better than we can ever know.
  506. *
  507. */
  508. static void xcb_check_cb(EV_P_ ev_check *w, int revents) {
  509. xcb_generic_event_t *event;
  510. if (xcb_connection_has_error(conn))
  511. errx(EXIT_FAILURE, "X11 connection broke, did your server terminate?\n");
  512. while ((event = xcb_poll_for_event(conn)) != NULL) {
  513. if (event->response_type == 0) {
  514. xcb_generic_error_t *error = (xcb_generic_error_t *)event;
  515. if (debug_mode)
  516. fprintf(stderr, "X11 Error received! sequence 0x%x, error_code = %d\n",
  517. error->sequence, error->error_code);
  518. free(event);
  519. continue;
  520. }
  521. /* Strip off the highest bit (set if the event is generated) */
  522. int type = (event->response_type & 0x7F);
  523. switch (type) {
  524. case XCB_KEY_PRESS:
  525. handle_key_press((xcb_key_press_event_t *)event);
  526. break;
  527. case XCB_KEY_RELEASE:
  528. /* If this was the backspace or escape key we are back at an
  529. * empty input, so turn off the screen if DPMS is enabled, but
  530. * only do that after some timeout: maybe user mistyped and
  531. * will type again right away */
  532. START_TIMER(dpms_timeout, TSTAMP_N_SECS(inactivity_timeout),
  533. turn_off_monitors_cb);
  534. break;
  535. case XCB_VISIBILITY_NOTIFY:
  536. handle_visibility_notify(conn, (xcb_visibility_notify_event_t *)event);
  537. break;
  538. case XCB_MAP_NOTIFY:
  539. if (!dont_fork) {
  540. /* After the first MapNotify, we never fork again. We don’t
  541. * expect to get another MapNotify, but better be sure */
  542. dont_fork = true;
  543. /* In the parent process, we exit */
  544. if (fork() != 0)
  545. exit(0);
  546. ev_loop_fork(EV_DEFAULT);
  547. }
  548. break;
  549. case XCB_CONFIGURE_NOTIFY:
  550. handle_screen_resize();
  551. break;
  552. default:
  553. if (type == xkb_base_event)
  554. process_xkb_event(event);
  555. }
  556. free(event);
  557. }
  558. }
  559. /*
  560. * This function is called from a fork()ed child and will raise the i3lock
  561. * window when the window is obscured, even when the main i3lock process is
  562. * blocked due to PAM.
  563. *
  564. */
  565. static void raise_loop(xcb_window_t window) {
  566. xcb_connection_t *conn;
  567. xcb_generic_event_t *event;
  568. int screens;
  569. if ((conn = xcb_connect(NULL, &screens)) == NULL ||
  570. xcb_connection_has_error(conn))
  571. errx(EXIT_FAILURE, "Cannot open display\n");
  572. /* We need to know about the window being obscured or getting destroyed. */
  573. xcb_change_window_attributes(conn, window, XCB_CW_EVENT_MASK,
  574. (uint32_t[]){
  575. XCB_EVENT_MASK_VISIBILITY_CHANGE |
  576. XCB_EVENT_MASK_STRUCTURE_NOTIFY});
  577. xcb_flush(conn);
  578. DEBUG("Watching window 0x%08x\n", window);
  579. while ((event = xcb_wait_for_event(conn)) != NULL) {
  580. if (event->response_type == 0) {
  581. xcb_generic_error_t *error = (xcb_generic_error_t *)event;
  582. DEBUG("X11 Error received! sequence 0x%x, error_code = %d\n",
  583. error->sequence, error->error_code);
  584. free(event);
  585. continue;
  586. }
  587. /* Strip off the highest bit (set if the event is generated) */
  588. int type = (event->response_type & 0x7F);
  589. DEBUG("Read event of type %d\n", type);
  590. switch (type) {
  591. case XCB_VISIBILITY_NOTIFY:
  592. handle_visibility_notify(conn, (xcb_visibility_notify_event_t *)event);
  593. break;
  594. case XCB_UNMAP_NOTIFY:
  595. DEBUG("UnmapNotify for 0x%08x\n", (((xcb_unmap_notify_event_t *)event)->window));
  596. if (((xcb_unmap_notify_event_t *)event)->window == window)
  597. exit(EXIT_SUCCESS);
  598. break;
  599. case XCB_DESTROY_NOTIFY:
  600. DEBUG("DestroyNotify for 0x%08x\n", (((xcb_destroy_notify_event_t *)event)->window));
  601. if (((xcb_destroy_notify_event_t *)event)->window == window)
  602. exit(EXIT_SUCCESS);
  603. break;
  604. default:
  605. DEBUG("Unhandled event type %d\n", type);
  606. break;
  607. }
  608. free(event);
  609. }
  610. }
  611. int main(int argc, char *argv[]) {
  612. struct passwd *pw;
  613. char *username;
  614. char *image_path = NULL;
  615. int ret;
  616. struct pam_conv conv = {conv_callback, NULL};
  617. int curs_choice = CURS_NONE;
  618. int o;
  619. int optind = 0;
  620. struct option longopts[] = {
  621. {"version", no_argument, NULL, 'v'},
  622. {"nofork", no_argument, NULL, 'n'},
  623. {"beep", no_argument, NULL, 'b'},
  624. {"dpms", no_argument, NULL, 'd'},
  625. {"color", required_argument, NULL, 'c'},
  626. {"pointer", required_argument, NULL, 'p'},
  627. {"debug", no_argument, NULL, 0},
  628. {"help", no_argument, NULL, 'h'},
  629. {"no-unlock-indicator", no_argument, NULL, 'u'},
  630. {"image", required_argument, NULL, 'i'},
  631. {"tiling", no_argument, NULL, 't'},
  632. {"ignore-empty-password", no_argument, NULL, 'e'},
  633. {"inactivity-timeout", required_argument, NULL, 'I'},
  634. {"show-failed-attempts", no_argument, NULL, 'f'},
  635. {NULL, no_argument, NULL, 0}};
  636. if ((pw = getpwuid(getuid())) == NULL)
  637. err(EXIT_FAILURE, "getpwuid() failed");
  638. if ((username = pw->pw_name) == NULL)
  639. errx(EXIT_FAILURE, "pw->pw_name is NULL.\n");
  640. char *optstring = "hvnbdc:p:ui:teI:f";
  641. while ((o = getopt_long(argc, argv, optstring, longopts, &optind)) != -1) {
  642. switch (o) {
  643. case 'v':
  644. errx(EXIT_SUCCESS, "version " VERSION " © 2010-2012 Michael Stapelberg");
  645. case 'n':
  646. dont_fork = true;
  647. break;
  648. case 'b':
  649. beep = true;
  650. break;
  651. case 'd':
  652. dpms = true;
  653. break;
  654. case 'I': {
  655. int time = 0;
  656. if (sscanf(optarg, "%d", &time) != 1 || time < 0)
  657. errx(EXIT_FAILURE, "invalid timeout, it must be a positive integer\n");
  658. inactivity_timeout = time;
  659. break;
  660. }
  661. case 'c': {
  662. char *arg = optarg;
  663. /* Skip # if present */
  664. if (arg[0] == '#')
  665. arg++;
  666. if (strlen(arg) != 6 || sscanf(arg, "%06[0-9a-fA-F]", color) != 1)
  667. errx(EXIT_FAILURE, "color is invalid, it must be given in 3-byte hexadecimal format: rrggbb\n");
  668. break;
  669. }
  670. case 'u':
  671. unlock_indicator = false;
  672. break;
  673. case 'i':
  674. image_path = strdup(optarg);
  675. break;
  676. case 't':
  677. tile = true;
  678. break;
  679. case 'p':
  680. if (!strcmp(optarg, "win")) {
  681. curs_choice = CURS_WIN;
  682. } else if (!strcmp(optarg, "default")) {
  683. curs_choice = CURS_DEFAULT;
  684. } else {
  685. errx(EXIT_FAILURE, "i3lock: Invalid pointer type given. Expected one of \"win\" or \"default\".\n");
  686. }
  687. break;
  688. case 'e':
  689. ignore_empty_password = true;
  690. break;
  691. case 0:
  692. if (strcmp(longopts[optind].name, "debug") == 0)
  693. debug_mode = true;
  694. break;
  695. case 'f':
  696. show_failed_attempts = true;
  697. break;
  698. default:
  699. errx(EXIT_FAILURE, "Syntax: i3lock [-v] [-n] [-b] [-d] [-c color] [-u] [-p win|default]"
  700. " [-i image.png] [-t] [-e] [-I] [-f]");
  701. }
  702. }
  703. /* We need (relatively) random numbers for highlighting a random part of
  704. * the unlock indicator upon keypresses. */
  705. srand(time(NULL));
  706. /* Initialize PAM */
  707. ret = pam_start("i3lock", username, &conv, &pam_handle);
  708. if (ret != PAM_SUCCESS)
  709. errx(EXIT_FAILURE, "PAM: %s", pam_strerror(pam_handle, ret));
  710. /* Using mlock() as non-super-user seems only possible in Linux. Users of other
  711. * operating systems should use encrypted swap/no swap (or remove the ifdef and
  712. * run i3lock as super-user). */
  713. #if defined(__linux__)
  714. /* Lock the area where we store the password in memory, we don’t want it to
  715. * be swapped to disk. Since Linux 2.6.9, this does not require any
  716. * privileges, just enough bytes in the RLIMIT_MEMLOCK limit. */
  717. if (mlock(password, sizeof(password)) != 0)
  718. err(EXIT_FAILURE, "Could not lock page in memory, check RLIMIT_MEMLOCK");
  719. #endif
  720. /* Double checking that connection is good and operatable with xcb */
  721. int screennr;
  722. if ((conn = xcb_connect(NULL, &screennr)) == NULL ||
  723. xcb_connection_has_error(conn))
  724. errx(EXIT_FAILURE, "Could not connect to X11, maybe you need to set DISPLAY?");
  725. if (xkb_x11_setup_xkb_extension(conn,
  726. XKB_X11_MIN_MAJOR_XKB_VERSION,
  727. XKB_X11_MIN_MINOR_XKB_VERSION,
  728. 0,
  729. NULL,
  730. NULL,
  731. &xkb_base_event,
  732. &xkb_base_error) != 1)
  733. errx(EXIT_FAILURE, "Could not setup XKB extension.");
  734. static const xcb_xkb_map_part_t required_map_parts =
  735. (XCB_XKB_MAP_PART_KEY_TYPES |
  736. XCB_XKB_MAP_PART_KEY_SYMS |
  737. XCB_XKB_MAP_PART_MODIFIER_MAP |
  738. XCB_XKB_MAP_PART_EXPLICIT_COMPONENTS |
  739. XCB_XKB_MAP_PART_KEY_ACTIONS |
  740. XCB_XKB_MAP_PART_VIRTUAL_MODS |
  741. XCB_XKB_MAP_PART_VIRTUAL_MOD_MAP);
  742. static const xcb_xkb_event_type_t required_events =
  743. (XCB_XKB_EVENT_TYPE_NEW_KEYBOARD_NOTIFY |
  744. XCB_XKB_EVENT_TYPE_MAP_NOTIFY |
  745. XCB_XKB_EVENT_TYPE_STATE_NOTIFY);
  746. xcb_xkb_select_events(
  747. conn,
  748. xkb_x11_get_core_keyboard_device_id(conn),
  749. required_events,
  750. 0,
  751. required_events,
  752. required_map_parts,
  753. required_map_parts,
  754. 0);
  755. /* When we cannot initially load the keymap, we better exit */
  756. if (!load_keymap())
  757. errx(EXIT_FAILURE, "Could not load keymap");
  758. const char *locale = getenv("LC_ALL");
  759. if (!locale)
  760. locale = getenv("LC_CTYPE");
  761. if (!locale)
  762. locale = getenv("LANG");
  763. if (!locale) {
  764. if (debug_mode)
  765. fprintf(stderr, "Can't detect your locale, fallback to C\n");
  766. locale = "C";
  767. }
  768. load_compose_table(locale);
  769. xinerama_init();
  770. xinerama_query_screens();
  771. /* if DPMS is enabled, check if the X server really supports it */
  772. if (dpms) {
  773. xcb_dpms_capable_cookie_t dpmsc = xcb_dpms_capable(conn);
  774. xcb_dpms_capable_reply_t *dpmsr;
  775. if ((dpmsr = xcb_dpms_capable_reply(conn, dpmsc, NULL))) {
  776. if (!dpmsr->capable) {
  777. if (debug_mode)
  778. fprintf(stderr, "Disabling DPMS, X server not DPMS capable\n");
  779. dpms = false;
  780. }
  781. free(dpmsr);
  782. }
  783. }
  784. screen = xcb_setup_roots_iterator(xcb_get_setup(conn)).data;
  785. last_resolution[0] = screen->width_in_pixels;
  786. last_resolution[1] = screen->height_in_pixels;
  787. xcb_change_window_attributes(conn, screen->root, XCB_CW_EVENT_MASK,
  788. (uint32_t[]){XCB_EVENT_MASK_STRUCTURE_NOTIFY});
  789. if (image_path) {
  790. /* Create a pixmap to render on, fill it with the background color */
  791. img = cairo_image_surface_create_from_png(image_path);
  792. /* In case loading failed, we just pretend no -i was specified. */
  793. if (cairo_surface_status(img) != CAIRO_STATUS_SUCCESS) {
  794. fprintf(stderr, "Could not load image \"%s\": %s\n",
  795. image_path, cairo_status_to_string(cairo_surface_status(img)));
  796. img = NULL;
  797. }
  798. }
  799. /* Pixmap on which the image is rendered to (if any) */
  800. xcb_pixmap_t bg_pixmap = draw_image(last_resolution);
  801. /* open the fullscreen window, already with the correct pixmap in place */
  802. win = open_fullscreen_window(conn, screen, color, bg_pixmap);
  803. xcb_free_pixmap(conn, bg_pixmap);
  804. pid_t pid = fork();
  805. /* The pid == -1 case is intentionally ignored here:
  806. * While the child process is useful for preventing other windows from
  807. * popping up while i3lock blocks, it is not critical. */
  808. if (pid == 0) {
  809. /* Child */
  810. close(xcb_get_file_descriptor(conn));
  811. raise_loop(win);
  812. exit(EXIT_SUCCESS);
  813. }
  814. cursor = create_cursor(conn, screen, win, curs_choice);
  815. grab_pointer_and_keyboard(conn, screen, cursor);
  816. /* Load the keymap again to sync the current modifier state. Since we first
  817. * loaded the keymap, there might have been changes, but starting from now,
  818. * we should get all key presses/releases due to having grabbed the
  819. * keyboard. */
  820. (void)load_keymap();
  821. turn_monitors_off();
  822. /* Initialize the libev event loop. */
  823. main_loop = EV_DEFAULT;
  824. if (main_loop == NULL)
  825. errx(EXIT_FAILURE, "Could not initialize libev. Bad LIBEV_FLAGS?\n");
  826. struct ev_io *xcb_watcher = calloc(sizeof(struct ev_io), 1);
  827. struct ev_check *xcb_check = calloc(sizeof(struct ev_check), 1);
  828. struct ev_prepare *xcb_prepare = calloc(sizeof(struct ev_prepare), 1);
  829. ev_io_init(xcb_watcher, xcb_got_event, xcb_get_file_descriptor(conn), EV_READ);
  830. ev_io_start(main_loop, xcb_watcher);
  831. ev_check_init(xcb_check, xcb_check_cb);
  832. ev_check_start(main_loop, xcb_check);
  833. ev_prepare_init(xcb_prepare, xcb_prepare_cb);
  834. ev_prepare_start(main_loop, xcb_prepare);
  835. /* Invoke the event callback once to catch all the events which were
  836. * received up until now. ev will only pick up new events (when the X11
  837. * file descriptor becomes readable). */
  838. ev_invoke(main_loop, xcb_check, 0);
  839. ev_loop(main_loop, 0);
  840. }