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.

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