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.

1030 lines
33 KiB

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