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.

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