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.

985 lines
31 KiB

11 years ago
15 years ago
  1. /*
  2. * vim:ts=4:sw=4:expandtab
  3. *
  4. * © 2010-2013 Michael Stapelberg
  5. *
  6. * See LICENSE for licensing information
  7. *
  8. */
  9. #include <stdio.h>
  10. #include <stdlib.h>
  11. #include <pwd.h>
  12. #include <sys/types.h>
  13. #include <string.h>
  14. #include <unistd.h>
  15. #include <stdbool.h>
  16. #include <stdint.h>
  17. #include <xcb/xcb.h>
  18. #include <xcb/xkb.h>
  19. #include <xcb/dpms.h>
  20. #include <err.h>
  21. #include <assert.h>
  22. #include <security/pam_appl.h>
  23. #include <getopt.h>
  24. #include <string.h>
  25. #include <ev.h>
  26. #include <sys/mman.h>
  27. #include <xkbcommon/xkbcommon.h>
  28. #include <xkbcommon/xkbcommon-compose.h>
  29. #include <xkbcommon/xkbcommon-x11.h>
  30. #include <cairo.h>
  31. #include <cairo/cairo-xcb.h>
  32. #include "i3lock.h"
  33. #include "xcb.h"
  34. #include "cursors.h"
  35. #include "unlock_indicator.h"
  36. #include "xinerama.h"
  37. #define TSTAMP_N_SECS(n) (n * 1.0)
  38. #define TSTAMP_N_MINS(n) (60 * TSTAMP_N_SECS(n))
  39. #define START_TIMER(timer_obj, timeout, callback) \
  40. timer_obj = start_timer(timer_obj, timeout, callback)
  41. #define STOP_TIMER(timer_obj) \
  42. timer_obj = stop_timer(timer_obj)
  43. typedef void (*ev_callback_t)(EV_P_ ev_timer *w, int revents);
  44. /* We need this for libxkbfile */
  45. char color[7] = "ffffff";
  46. int inactivity_timeout = 30;
  47. uint32_t last_resolution[2];
  48. xcb_window_t win;
  49. static xcb_cursor_t cursor;
  50. static pam_handle_t *pam_handle;
  51. int input_position = 0;
  52. /* Holds the password you enter (in UTF-8). */
  53. static char password[512];
  54. static bool beep = false;
  55. bool debug_mode = false;
  56. static bool dpms = false;
  57. bool unlock_indicator = true;
  58. static bool dont_fork = false;
  59. struct ev_loop *main_loop;
  60. static struct ev_timer *clear_pam_wrong_timeout;
  61. static struct ev_timer *clear_indicator_timeout;
  62. static struct ev_timer *dpms_timeout;
  63. static struct ev_timer *discard_passwd_timeout;
  64. extern unlock_state_t unlock_state;
  65. extern pam_state_t pam_state;
  66. int failed_attempts = 0;
  67. bool show_failed_attempts = false;
  68. static struct xkb_state *xkb_state;
  69. static struct xkb_context *xkb_context;
  70. static struct xkb_keymap *xkb_keymap;
  71. static struct xkb_compose_table *xkb_compose_table;
  72. static struct xkb_compose_state *xkb_compose_state;
  73. static uint8_t xkb_base_event;
  74. static uint8_t xkb_base_error;
  75. cairo_surface_t *img = NULL;
  76. bool tile = false;
  77. bool ignore_empty_password = false;
  78. bool skip_repeated_empty_password = false;
  79. /* isutf, u8_dec © 2005 Jeff Bezanson, public domain */
  80. #define isutf(c) (((c) & 0xC0) != 0x80)
  81. /*
  82. * Decrements i to point to the previous unicode glyph
  83. *
  84. */
  85. void u8_dec(char *s, int *i) {
  86. (void)(isutf(s[--(*i)]) || isutf(s[--(*i)]) || isutf(s[--(*i)]) || --(*i));
  87. }
  88. static void turn_monitors_on(void) {
  89. if (dpms)
  90. dpms_set_mode(conn, XCB_DPMS_DPMS_MODE_ON);
  91. }
  92. static void turn_monitors_off(void) {
  93. if (dpms)
  94. dpms_set_mode(conn, XCB_DPMS_DPMS_MODE_OFF);
  95. }
  96. /*
  97. * Loads the XKB keymap from the X11 server and feeds it to xkbcommon.
  98. * Necessary so that we can properly let xkbcommon track the keyboard state and
  99. * translate keypresses to utf-8.
  100. *
  101. */
  102. static bool load_keymap(void) {
  103. if (xkb_context == NULL) {
  104. if ((xkb_context = xkb_context_new(0)) == NULL) {
  105. fprintf(stderr, "[i3lock] could not create xkbcommon context\n");
  106. return false;
  107. }
  108. }
  109. xkb_keymap_unref(xkb_keymap);
  110. int32_t device_id = xkb_x11_get_core_keyboard_device_id(conn);
  111. DEBUG("device = %d\n", device_id);
  112. if ((xkb_keymap = xkb_x11_keymap_new_from_device(xkb_context, conn, device_id, 0)) == NULL) {
  113. fprintf(stderr, "[i3lock] xkb_x11_keymap_new_from_device failed\n");
  114. return false;
  115. }
  116. struct xkb_state *new_state =
  117. xkb_x11_state_new_from_device(xkb_keymap, conn, device_id);
  118. if (new_state == NULL) {
  119. fprintf(stderr, "[i3lock] xkb_x11_state_new_from_device failed\n");
  120. return false;
  121. }
  122. xkb_state_unref(xkb_state);
  123. xkb_state = new_state;
  124. return true;
  125. }
  126. /*
  127. * Loads the XKB compose table from the given locale.
  128. *
  129. */
  130. static bool load_compose_table(const char *locale) {
  131. if (xkb_context == NULL) {
  132. if ((xkb_context = xkb_context_new(0)) == NULL) {
  133. fprintf(stderr, "[i3lock] could not create xkbcommon context\n");
  134. return false;
  135. }
  136. }
  137. xkb_compose_table_unref(xkb_compose_table);
  138. if ((xkb_compose_table = xkb_compose_table_new_from_locale(xkb_context, locale, 0)) == NULL) {
  139. fprintf(stderr, "[i3lock] xkb_compose_table_new_from_locale failed\n");
  140. return false;
  141. }
  142. struct xkb_compose_state *new_compose_state = xkb_compose_state_new(xkb_compose_table, 0);
  143. if (new_compose_state == NULL) {
  144. fprintf(stderr, "[i3lock] xkb_compose_state_new failed\n");
  145. return false;
  146. }
  147. xkb_compose_state_unref(xkb_compose_state);
  148. xkb_compose_state = new_compose_state;
  149. return true;
  150. }
  151. /*
  152. * Clears the memory which stored the password to be a bit safer against
  153. * cold-boot attacks.
  154. *
  155. */
  156. static void clear_password_memory(void) {
  157. /* A volatile pointer to the password buffer to prevent the compiler from
  158. * optimizing this out. */
  159. volatile char *vpassword = password;
  160. for (int c = 0; c < sizeof(password); c++)
  161. /* We store a non-random pattern which consists of the (irrelevant)
  162. * index plus (!) the value of the beep variable. This prevents the
  163. * compiler from optimizing the calls away, since the value of 'beep'
  164. * is not known at compile-time. */
  165. vpassword[c] = c + (int)beep;
  166. }
  167. ev_timer* start_timer(ev_timer *timer_obj, ev_tstamp timeout, ev_callback_t callback) {
  168. if (timer_obj) {
  169. ev_timer_stop(main_loop, timer_obj);
  170. ev_timer_set(timer_obj, timeout, 0.);
  171. ev_timer_start(main_loop, timer_obj);
  172. } else {
  173. /* When there is no memory, we just don’t have a timeout. We cannot
  174. * exit() here, since that would effectively unlock the screen. */
  175. timer_obj = calloc(sizeof(struct ev_timer), 1);
  176. if (timer_obj) {
  177. ev_timer_init(timer_obj, callback, timeout, 0.);
  178. ev_timer_start(main_loop, timer_obj);
  179. }
  180. }
  181. return timer_obj;
  182. }
  183. ev_timer* stop_timer(ev_timer *timer_obj) {
  184. if (timer_obj) {
  185. ev_timer_stop(main_loop, timer_obj);
  186. free(timer_obj);
  187. }
  188. return NULL;
  189. }
  190. /*
  191. * Resets pam_state to STATE_PAM_IDLE 2 seconds after an unsuccessful
  192. * authentication event.
  193. *
  194. */
  195. static void clear_pam_wrong(EV_P_ ev_timer *w, int revents) {
  196. DEBUG("clearing pam wrong\n");
  197. pam_state = STATE_PAM_IDLE;
  198. unlock_state = STATE_STARTED;
  199. redraw_screen();
  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. START_TIMER(clear_indicator_timeout, 1.0, clear_indicator_cb);
  214. unlock_state = STATE_BACKSPACE_ACTIVE;
  215. redraw_screen();
  216. unlock_state = STATE_KEY_PRESSED;
  217. }
  218. static void turn_off_monitors_cb(EV_P_ ev_timer *w, int revents) {
  219. if (input_position == 0)
  220. turn_monitors_off();
  221. STOP_TIMER(dpms_timeout);
  222. }
  223. static void discard_passwd_cb(EV_P_ ev_timer *w, int revents) {
  224. clear_input();
  225. turn_monitors_off();
  226. STOP_TIMER(discard_passwd_timeout);
  227. }
  228. static void input_done(void) {
  229. STOP_TIMER(clear_pam_wrong_timeout);
  230. pam_state = STATE_PAM_VERIFY;
  231. redraw_screen();
  232. if (pam_authenticate(pam_handle, 0) == PAM_SUCCESS) {
  233. DEBUG("successfully authenticated\n");
  234. clear_password_memory();
  235. /* Turn the screen on, as it may have been turned off
  236. * on release of the 'enter' key. */
  237. turn_monitors_on();
  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); // Not sure if it's needed
  297. composed = true;
  298. break;
  299. case XKB_COMPOSE_CANCELLED:
  300. xkb_compose_state_reset(xkb_compose_state);
  301. break;
  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. {
  475. if (num_msg == 0)
  476. return 1;
  477. /* PAM expects an array of responses, one for each message */
  478. if ((*resp = calloc(num_msg, sizeof(struct pam_response))) == NULL) {
  479. perror("calloc");
  480. return 1;
  481. }
  482. for (int c = 0; c < num_msg; c++) {
  483. if (msg[c]->msg_style != PAM_PROMPT_ECHO_OFF &&
  484. msg[c]->msg_style != PAM_PROMPT_ECHO_ON)
  485. continue;
  486. /* return code is currently not used but should be set to zero */
  487. resp[c]->resp_retcode = 0;
  488. if ((resp[c]->resp = strdup(password)) == NULL) {
  489. perror("strdup");
  490. return 1;
  491. }
  492. }
  493. return 0;
  494. }
  495. /*
  496. * This callback is only a dummy, see xcb_prepare_cb and xcb_check_cb.
  497. * See also man libev(3): "ev_prepare" and "ev_check" - customise your event loop
  498. *
  499. */
  500. static void xcb_got_event(EV_P_ struct ev_io *w, int revents) {
  501. /* empty, because xcb_prepare_cb and xcb_check_cb are used */
  502. }
  503. /*
  504. * Flush before blocking (and waiting for new events)
  505. *
  506. */
  507. static void xcb_prepare_cb(EV_P_ ev_prepare *w, int revents) {
  508. xcb_flush(conn);
  509. }
  510. /*
  511. * Instead of polling the X connection socket we leave this to
  512. * xcb_poll_for_event() which knows better than we can ever know.
  513. *
  514. */
  515. static void xcb_check_cb(EV_P_ ev_check *w, int revents) {
  516. xcb_generic_event_t *event;
  517. if (xcb_connection_has_error(conn))
  518. errx(EXIT_FAILURE, "X11 connection broke, did your server terminate?\n");
  519. while ((event = xcb_poll_for_event(conn)) != NULL) {
  520. if (event->response_type == 0) {
  521. xcb_generic_error_t *error = (xcb_generic_error_t*)event;
  522. if (debug_mode)
  523. fprintf(stderr, "X11 Error received! sequence 0x%x, error_code = %d\n",
  524. error->sequence, error->error_code);
  525. free(event);
  526. continue;
  527. }
  528. /* Strip off the highest bit (set if the event is generated) */
  529. int type = (event->response_type & 0x7F);
  530. switch (type) {
  531. case XCB_KEY_PRESS:
  532. handle_key_press((xcb_key_press_event_t*)event);
  533. break;
  534. case XCB_KEY_RELEASE:
  535. /* If this was the backspace or escape key we are back at an
  536. * empty input, so turn off the screen if DPMS is enabled, but
  537. * only do that after some timeout: maybe user mistyped and
  538. * will type again right away */
  539. START_TIMER(dpms_timeout, TSTAMP_N_SECS(inactivity_timeout),
  540. turn_off_monitors_cb);
  541. break;
  542. case XCB_VISIBILITY_NOTIFY:
  543. handle_visibility_notify(conn, (xcb_visibility_notify_event_t*)event);
  544. break;
  545. case XCB_MAP_NOTIFY:
  546. if (!dont_fork) {
  547. /* After the first MapNotify, we never fork again. We don’t
  548. * expect to get another MapNotify, but better be sure */
  549. dont_fork = true;
  550. /* In the parent process, we exit */
  551. if (fork() != 0)
  552. exit(0);
  553. ev_loop_fork(EV_DEFAULT);
  554. }
  555. break;
  556. case XCB_CONFIGURE_NOTIFY:
  557. handle_screen_resize();
  558. break;
  559. default:
  560. if (type == xkb_base_event)
  561. process_xkb_event(event);
  562. }
  563. free(event);
  564. }
  565. }
  566. /*
  567. * This function is called from a fork()ed child and will raise the i3lock
  568. * window when the window is obscured, even when the main i3lock process is
  569. * blocked due to PAM.
  570. *
  571. */
  572. static void raise_loop(xcb_window_t window) {
  573. xcb_connection_t *conn;
  574. xcb_generic_event_t *event;
  575. int screens;
  576. if ((conn = xcb_connect(NULL, &screens)) == NULL ||
  577. xcb_connection_has_error(conn))
  578. errx(EXIT_FAILURE, "Cannot open display\n");
  579. /* We need to know about the window being obscured or getting destroyed. */
  580. xcb_change_window_attributes(conn, window, XCB_CW_EVENT_MASK,
  581. (uint32_t[]){
  582. XCB_EVENT_MASK_VISIBILITY_CHANGE |
  583. XCB_EVENT_MASK_STRUCTURE_NOTIFY
  584. });
  585. xcb_flush(conn);
  586. DEBUG("Watching window 0x%08x\n", window);
  587. while ((event = xcb_wait_for_event(conn)) != NULL) {
  588. if (event->response_type == 0) {
  589. xcb_generic_error_t *error = (xcb_generic_error_t*)event;
  590. DEBUG("X11 Error received! sequence 0x%x, error_code = %d\n",
  591. error->sequence, error->error_code);
  592. free(event);
  593. continue;
  594. }
  595. /* Strip off the highest bit (set if the event is generated) */
  596. int type = (event->response_type & 0x7F);
  597. DEBUG("Read event of type %d\n", type);
  598. switch (type) {
  599. case XCB_VISIBILITY_NOTIFY:
  600. handle_visibility_notify(conn, (xcb_visibility_notify_event_t*)event);
  601. break;
  602. case XCB_UNMAP_NOTIFY:
  603. DEBUG("UnmapNotify for 0x%08x\n", (((xcb_unmap_notify_event_t*)event)->window));
  604. if (((xcb_unmap_notify_event_t*)event)->window == window)
  605. exit(EXIT_SUCCESS);
  606. break;
  607. case XCB_DESTROY_NOTIFY:
  608. DEBUG("DestroyNotify for 0x%08x\n", (((xcb_destroy_notify_event_t*)event)->window));
  609. if (((xcb_destroy_notify_event_t*)event)->window == window)
  610. exit(EXIT_SUCCESS);
  611. break;
  612. default:
  613. DEBUG("Unhandled event type %d\n", type);
  614. break;
  615. }
  616. free(event);
  617. }
  618. }
  619. int main(int argc, char *argv[]) {
  620. struct passwd *pw;
  621. char *username;
  622. char *image_path = NULL;
  623. int ret;
  624. struct pam_conv conv = {conv_callback, NULL};
  625. int curs_choice = CURS_NONE;
  626. int o;
  627. int optind = 0;
  628. struct option longopts[] = {
  629. {"version", no_argument, NULL, 'v'},
  630. {"nofork", no_argument, NULL, 'n'},
  631. {"beep", no_argument, NULL, 'b'},
  632. {"dpms", no_argument, NULL, 'd'},
  633. {"color", required_argument, NULL, 'c'},
  634. {"pointer", required_argument, NULL , 'p'},
  635. {"debug", no_argument, NULL, 0},
  636. {"help", no_argument, NULL, 'h'},
  637. {"no-unlock-indicator", no_argument, NULL, 'u'},
  638. {"image", required_argument, NULL, 'i'},
  639. {"tiling", no_argument, NULL, 't'},
  640. {"ignore-empty-password", no_argument, NULL, 'e'},
  641. {"inactivity-timeout", required_argument, NULL, 'I'},
  642. {"show-failed-attempts", no_argument, NULL, 'f'},
  643. {NULL, no_argument, NULL, 0}
  644. };
  645. if ((pw = getpwuid(getuid())) == NULL)
  646. err(EXIT_FAILURE, "getpwuid() failed");
  647. if ((username = pw->pw_name) == NULL)
  648. errx(EXIT_FAILURE, "pw->pw_name is NULL.\n");
  649. char *optstring = "hvnbdc:p:ui:teI:f";
  650. while ((o = getopt_long(argc, argv, optstring, longopts, &optind)) != -1) {
  651. switch (o) {
  652. case 'v':
  653. errx(EXIT_SUCCESS, "version " VERSION " © 2010-2012 Michael Stapelberg");
  654. case 'n':
  655. dont_fork = true;
  656. break;
  657. case 'b':
  658. beep = true;
  659. break;
  660. case 'd':
  661. dpms = true;
  662. break;
  663. case 'I': {
  664. int time = 0;
  665. if (sscanf(optarg, "%d", &time) != 1 || time < 0)
  666. errx(EXIT_FAILURE, "invalid timeout, it must be a positive integer\n");
  667. inactivity_timeout = time;
  668. break;
  669. }
  670. case 'c': {
  671. char *arg = optarg;
  672. /* Skip # if present */
  673. if (arg[0] == '#')
  674. arg++;
  675. if (strlen(arg) != 6 || sscanf(arg, "%06[0-9a-fA-F]", color) != 1)
  676. errx(EXIT_FAILURE, "color is invalid, it must be given in 3-byte hexadecimal format: rrggbb\n");
  677. break;
  678. }
  679. case 'u':
  680. unlock_indicator = false;
  681. break;
  682. case 'i':
  683. image_path = strdup(optarg);
  684. break;
  685. case 't':
  686. tile = true;
  687. break;
  688. case 'p':
  689. if (!strcmp(optarg, "win")) {
  690. curs_choice = CURS_WIN;
  691. } else if (!strcmp(optarg, "default")) {
  692. curs_choice = CURS_DEFAULT;
  693. } else {
  694. errx(EXIT_FAILURE, "i3lock: Invalid pointer type given. Expected one of \"win\" or \"default\".\n");
  695. }
  696. break;
  697. case 'e':
  698. ignore_empty_password = true;
  699. break;
  700. case 0:
  701. if (strcmp(longopts[optind].name, "debug") == 0)
  702. debug_mode = true;
  703. break;
  704. case 'f':
  705. show_failed_attempts = true;
  706. break;
  707. default:
  708. errx(EXIT_FAILURE, "Syntax: i3lock [-v] [-n] [-b] [-d] [-c color] [-u] [-p win|default]"
  709. " [-i image.png] [-t] [-e] [-I] [-f]"
  710. );
  711. }
  712. }
  713. /* We need (relatively) random numbers for highlighting a random part of
  714. * the unlock indicator upon keypresses. */
  715. srand(time(NULL));
  716. /* Initialize PAM */
  717. ret = pam_start("i3lock", username, &conv, &pam_handle);
  718. if (ret != PAM_SUCCESS)
  719. errx(EXIT_FAILURE, "PAM: %s", pam_strerror(pam_handle, ret));
  720. /* Using mlock() as non-super-user seems only possible in Linux. Users of other
  721. * operating systems should use encrypted swap/no swap (or remove the ifdef and
  722. * run i3lock as super-user). */
  723. #if defined(__linux__)
  724. /* Lock the area where we store the password in memory, we don’t want it to
  725. * be swapped to disk. Since Linux 2.6.9, this does not require any
  726. * privileges, just enough bytes in the RLIMIT_MEMLOCK limit. */
  727. if (mlock(password, sizeof(password)) != 0)
  728. err(EXIT_FAILURE, "Could not lock page in memory, check RLIMIT_MEMLOCK");
  729. #endif
  730. /* Double checking that connection is good and operatable with xcb */
  731. int screennr;
  732. if ((conn = xcb_connect(NULL, &screennr)) == NULL ||
  733. xcb_connection_has_error(conn))
  734. errx(EXIT_FAILURE, "Could not connect to X11, maybe you need to set DISPLAY?");
  735. if (xkb_x11_setup_xkb_extension(conn,
  736. XKB_X11_MIN_MAJOR_XKB_VERSION,
  737. XKB_X11_MIN_MINOR_XKB_VERSION,
  738. 0,
  739. NULL,
  740. NULL,
  741. &xkb_base_event,
  742. &xkb_base_error) != 1)
  743. errx(EXIT_FAILURE, "Could not setup XKB extension.");
  744. static const xcb_xkb_map_part_t required_map_parts =
  745. (XCB_XKB_MAP_PART_KEY_TYPES |
  746. XCB_XKB_MAP_PART_KEY_SYMS |
  747. XCB_XKB_MAP_PART_MODIFIER_MAP |
  748. XCB_XKB_MAP_PART_EXPLICIT_COMPONENTS |
  749. XCB_XKB_MAP_PART_KEY_ACTIONS |
  750. XCB_XKB_MAP_PART_VIRTUAL_MODS |
  751. XCB_XKB_MAP_PART_VIRTUAL_MOD_MAP);
  752. static const xcb_xkb_event_type_t required_events =
  753. (XCB_XKB_EVENT_TYPE_NEW_KEYBOARD_NOTIFY |
  754. XCB_XKB_EVENT_TYPE_MAP_NOTIFY |
  755. XCB_XKB_EVENT_TYPE_STATE_NOTIFY);
  756. xcb_xkb_select_events(
  757. conn,
  758. xkb_x11_get_core_keyboard_device_id(conn),
  759. required_events,
  760. 0,
  761. required_events,
  762. required_map_parts,
  763. required_map_parts,
  764. 0);
  765. /* When we cannot initially load the keymap, we better exit */
  766. if (!load_keymap())
  767. errx(EXIT_FAILURE, "Could not load keymap");
  768. const char *locale = getenv("LC_ALL");
  769. if (!locale)
  770. locale = getenv("LC_CTYPE");
  771. if (!locale)
  772. locale = getenv("LANG");
  773. if (!locale) {
  774. if (debug_mode)
  775. fprintf(stderr, "Can't detect your locale, fallback to C\n");
  776. locale = "C";
  777. }
  778. load_compose_table(locale);
  779. xinerama_init();
  780. xinerama_query_screens();
  781. /* if DPMS is enabled, check if the X server really supports it */
  782. if (dpms) {
  783. xcb_dpms_capable_cookie_t dpmsc = xcb_dpms_capable(conn);
  784. xcb_dpms_capable_reply_t *dpmsr;
  785. if ((dpmsr = xcb_dpms_capable_reply(conn, dpmsc, NULL))) {
  786. if (!dpmsr->capable) {
  787. if (debug_mode)
  788. fprintf(stderr, "Disabling DPMS, X server not DPMS capable\n");
  789. dpms = false;
  790. }
  791. free(dpmsr);
  792. }
  793. }
  794. screen = xcb_setup_roots_iterator(xcb_get_setup(conn)).data;
  795. last_resolution[0] = screen->width_in_pixels;
  796. last_resolution[1] = screen->height_in_pixels;
  797. xcb_change_window_attributes(conn, screen->root, XCB_CW_EVENT_MASK,
  798. (uint32_t[]){ XCB_EVENT_MASK_STRUCTURE_NOTIFY });
  799. if (image_path) {
  800. /* Create a pixmap to render on, fill it with the background color */
  801. img = cairo_image_surface_create_from_png(image_path);
  802. /* In case loading failed, we just pretend no -i was specified. */
  803. if (cairo_surface_status(img) != CAIRO_STATUS_SUCCESS) {
  804. fprintf(stderr, "Could not load image \"%s\": %s\n",
  805. image_path, cairo_status_to_string(cairo_surface_status(img)));
  806. img = NULL;
  807. }
  808. }
  809. /* Pixmap on which the image is rendered to (if any) */
  810. xcb_pixmap_t bg_pixmap = draw_image(last_resolution);
  811. /* open the fullscreen window, already with the correct pixmap in place */
  812. win = open_fullscreen_window(conn, screen, color, bg_pixmap);
  813. xcb_free_pixmap(conn, bg_pixmap);
  814. pid_t pid = fork();
  815. /* The pid == -1 case is intentionally ignored here:
  816. * While the child process is useful for preventing other windows from
  817. * popping up while i3lock blocks, it is not critical. */
  818. if (pid == 0) {
  819. /* Child */
  820. close(xcb_get_file_descriptor(conn));
  821. raise_loop(win);
  822. exit(EXIT_SUCCESS);
  823. }
  824. cursor = create_cursor(conn, screen, win, curs_choice);
  825. grab_pointer_and_keyboard(conn, screen, cursor);
  826. /* Load the keymap again to sync the current modifier state. Since we first
  827. * loaded the keymap, there might have been changes, but starting from now,
  828. * we should get all key presses/releases due to having grabbed the
  829. * keyboard. */
  830. (void)load_keymap();
  831. turn_monitors_off();
  832. /* Initialize the libev event loop. */
  833. main_loop = EV_DEFAULT;
  834. if (main_loop == NULL)
  835. errx(EXIT_FAILURE, "Could not initialize libev. Bad LIBEV_FLAGS?\n");
  836. struct ev_io *xcb_watcher = calloc(sizeof(struct ev_io), 1);
  837. struct ev_check *xcb_check = calloc(sizeof(struct ev_check), 1);
  838. struct ev_prepare *xcb_prepare = calloc(sizeof(struct ev_prepare), 1);
  839. ev_io_init(xcb_watcher, xcb_got_event, xcb_get_file_descriptor(conn), EV_READ);
  840. ev_io_start(main_loop, xcb_watcher);
  841. ev_check_init(xcb_check, xcb_check_cb);
  842. ev_check_start(main_loop, xcb_check);
  843. ev_prepare_init(xcb_prepare, xcb_prepare_cb);
  844. ev_prepare_start(main_loop, xcb_prepare);
  845. /* Invoke the event callback once to catch all the events which were
  846. * received up until now. ev will only pick up new events (when the X11
  847. * file descriptor becomes readable). */
  848. ev_invoke(main_loop, xcb_check, 0);
  849. ev_loop(main_loop, 0);
  850. }