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.

551 lines
17 KiB

14 years ago
15 years ago
14 years ago
  1. /*
  2. * vim:ts=4:sw=4:expandtab
  3. *
  4. * © 2010-2011 Michael Stapelberg
  5. *
  6. * See LICENSE for licensing information
  7. *
  8. */
  9. #include <stdio.h>
  10. #include <stdlib.h>
  11. #include <string.h>
  12. #include <unistd.h>
  13. #include <stdbool.h>
  14. #include <stdint.h>
  15. #include <xcb/xcb.h>
  16. #include <xcb/dpms.h>
  17. #include <xcb/xcb_keysyms.h>
  18. #include <err.h>
  19. #include <assert.h>
  20. #include <security/pam_appl.h>
  21. /* FIXME: can we get rid of this header? */
  22. #include <X11/keysym.h>
  23. #include <getopt.h>
  24. #include <string.h>
  25. #ifndef NOLIBCAIRO
  26. #include <cairo.h>
  27. #include <cairo/cairo-xcb.h>
  28. #endif
  29. #include "keysym2ucs.h"
  30. #include "ucs2_to_utf8.h"
  31. #include "xcb.h"
  32. #include "cursors.h"
  33. static xcb_connection_t *conn;
  34. static xcb_cursor_t cursor;
  35. static xcb_key_symbols_t *symbols;
  36. static xcb_screen_t *scr;
  37. static pam_handle_t *pam_handle;
  38. static int input_position = 0;
  39. /* holds the password you enter (in UTF-8) */
  40. static char password[512];
  41. static bool modeswitch_active = false;
  42. static bool iso_level3_shift_active = false;
  43. static int modeswitchmask;
  44. static int numlockmask;
  45. static bool beep = false;
  46. static bool debug_mode = false;
  47. #define DEBUG(fmt, ...) do { \
  48. if (debug_mode) \
  49. printf("[i3lock-debug] " fmt, ##__VA_ARGS__); \
  50. } while (0)
  51. #ifndef NOLIBCAIRO
  52. static cairo_surface_t *img = NULL;
  53. static bool tile = false;
  54. #endif
  55. /*
  56. * Draws global image with fill color onto a pixmap with the given
  57. * resolution and returns it.
  58. *
  59. */
  60. xcb_pixmap_t draw_image(xcb_visualtype_t *vistype, u_int32_t* resolution, char* color) {
  61. xcb_pixmap_t bg_pixmap = XCB_NONE;
  62. #ifndef NOLIBCAIRO
  63. if (!img)
  64. return bg_pixmap;
  65. bg_pixmap = create_bg_pixmap(conn, scr, resolution, color);
  66. /* Initialize cairo */
  67. cairo_surface_t *output;
  68. output = cairo_xcb_surface_create(conn, bg_pixmap, vistype,
  69. resolution[0], resolution[1]);
  70. cairo_t *ctx = cairo_create(output);
  71. if (!tile) {
  72. cairo_set_source_surface(ctx, img, 0, 0);
  73. cairo_paint(ctx);
  74. } else {
  75. /* create a pattern and fill a rectangle as big as the screen */
  76. cairo_pattern_t *pattern;
  77. pattern = cairo_pattern_create_for_surface(img);
  78. cairo_set_source(ctx, pattern);
  79. cairo_pattern_set_extend(pattern, CAIRO_EXTEND_REPEAT);
  80. cairo_rectangle(ctx, 0, 0, resolution[0], resolution[1]);
  81. cairo_fill(ctx);
  82. cairo_pattern_destroy(pattern);
  83. }
  84. cairo_surface_destroy(output);
  85. cairo_destroy(ctx);
  86. #endif
  87. return bg_pixmap;
  88. }
  89. static void input_done() {
  90. if (input_position == 0)
  91. return;
  92. /* TODO: change cursor during authentication? */
  93. if (pam_authenticate(pam_handle, 0) == PAM_SUCCESS) {
  94. printf("successfully authenticated\n");
  95. exit(0);
  96. }
  97. fprintf(stderr, "Authentication failure\n");
  98. /* beep on authentication failure, if enabled */
  99. if (beep) {
  100. xcb_bell(conn, 100);
  101. xcb_flush(conn);
  102. }
  103. }
  104. /*
  105. * Called when the user releases a key. We need to leave the Mode_switch
  106. * state when the user releases the Mode_switch key.
  107. *
  108. */
  109. static void handle_key_release(xcb_key_release_event_t *event) {
  110. DEBUG("releasing key %d, state raw = %d, modeswitch_active = %d, iso_level3_shift_active = %d\n",
  111. event->detail, event->state, modeswitch_active, iso_level3_shift_active);
  112. /* fix state */
  113. event->state &= ~numlockmask;
  114. xcb_keysym_t sym = xcb_key_press_lookup_keysym(symbols, event, event->state);
  115. if (sym == XK_Mode_switch) {
  116. //printf("Mode switch disabled\n");
  117. modeswitch_active = false;
  118. } else if (sym == XK_ISO_Level3_Shift) {
  119. iso_level3_shift_active = false;
  120. }
  121. DEBUG("release done. modeswitch_active = %d, iso_level3_shift_active = %d\n",
  122. modeswitch_active, iso_level3_shift_active);
  123. }
  124. /*
  125. * Handle key presses. Fixes state, then looks up the key symbol for the
  126. * given keycode, then looks up the key symbol (as UCS-2), converts it to
  127. * UTF-8 and stores it in the password array.
  128. *
  129. */
  130. static void handle_key_press(xcb_key_press_event_t *event) {
  131. DEBUG("keypress %d, state raw = %d, modeswitch_active = %d, iso_level3_shift_active = %d\n",
  132. event->detail, event->state, modeswitch_active, iso_level3_shift_active);
  133. xcb_keysym_t sym0, sym1, sym;
  134. /* For each keycode, there is a list of symbols. The list could look like this:
  135. * $ xmodmap -pke | grep 'keycode 38'
  136. * keycode 38 = a A adiaeresis Adiaeresis o O
  137. * In non-X11 terminology, the symbols for the keycode 38 (the key labeled
  138. * with "a" on my keyboard) are "a A ä Ä o O".
  139. * Another form to display the same information is using xkbcomp:
  140. * $ xkbcomp $DISPLAY /tmp/xkb.dump
  141. * Then open /tmp/xkb.dump and search for '\<a\>' (in VIM regexp-language):
  142. *
  143. * symbols[Group1]= [ a, A, o, O ],
  144. * symbols[Group2]= [ adiaeresis, Adiaeresis ]
  145. *
  146. * So there are two *groups*, one containing 'a A' and one containing 'ä
  147. * Ä'. You can use Mode_switch to switch between these groups. You can use
  148. * ISO_Level3_Shift to reach the 'o O' part of the first group (its the
  149. * same group, just an even higher shift level).
  150. *
  151. * So, using the "logical" XKB information, the following lookup will be
  152. * performed:
  153. *
  154. * Neither Mode_switch nor ISO_Level3_Shift active: group 1, column 0 and 1
  155. * Mode_switch active: group 2, column 0 and 1
  156. * ISO_Level3_Shift active: group 1, column 2 and 3
  157. *
  158. * Using the column index which xcb_key_press_lookup_keysym uses (and
  159. * xmodmap prints out), the following lookup will be performed:
  160. *
  161. * Neither Mode_switch nor ISO_Level3_Shift active: column 0 and 1
  162. * Mode_switch active: column 2 and 3
  163. * ISO_Level3_Shift active: column 4 and 5
  164. */
  165. int base_column = 0;
  166. if (modeswitch_active)
  167. base_column = 2;
  168. if (iso_level3_shift_active)
  169. base_column = 4;
  170. sym0 = xcb_key_press_lookup_keysym(symbols, event, base_column);
  171. sym1 = xcb_key_press_lookup_keysym(symbols, event, base_column + 1);
  172. switch (sym0) {
  173. case XK_Mode_switch:
  174. DEBUG("Mode switch enabled\n");
  175. modeswitch_active = true;
  176. return;
  177. case XK_ISO_Level3_Shift:
  178. DEBUG("ISO_Level3_Shift enabled\n");
  179. iso_level3_shift_active = true;
  180. return;
  181. case XK_Return:
  182. case XK_KP_Enter:
  183. input_done();
  184. case XK_Escape:
  185. input_position = 0;
  186. password[input_position] = '\0';
  187. return;
  188. case XK_BackSpace:
  189. if (input_position == 0)
  190. return;
  191. /* decrement input_position to point to the previous glyph */
  192. u8_dec(password, &input_position);
  193. password[input_position] = '\0';
  194. //printf("new input position = %d, new password = %s\n", input_position, password);
  195. return;
  196. }
  197. if ((input_position + 8) >= sizeof(password))
  198. return;
  199. if ((event->state & numlockmask) && xcb_is_keypad_key(sym1)) {
  200. /* this key was a keypad key */
  201. if ((event->state & XCB_MOD_MASK_SHIFT))
  202. sym = sym0;
  203. else sym = sym1;
  204. } else {
  205. if ((event->state & XCB_MOD_MASK_SHIFT))
  206. sym = sym1;
  207. else sym = sym0;
  208. }
  209. #if 0
  210. /* FIXME: handle all of these? */
  211. printf("is_keypad_key = %d\n", xcb_is_keypad_key(sym));
  212. printf("is_private_keypad_key = %d\n", xcb_is_private_keypad_key(sym));
  213. printf("xcb_is_cursor_key = %d\n", xcb_is_cursor_key(sym));
  214. printf("xcb_is_pf_key = %d\n", xcb_is_pf_key(sym));
  215. printf("xcb_is_function_key = %d\n", xcb_is_function_key(sym));
  216. printf("xcb_is_misc_function_key = %d\n", xcb_is_misc_function_key(sym));
  217. printf("xcb_is_modifier_key = %d\n", xcb_is_modifier_key(sym));
  218. #endif
  219. if (xcb_is_modifier_key(sym) || xcb_is_cursor_key(sym))
  220. return;
  221. DEBUG("resolved to keysym = %c (%d)\n", sym, sym);
  222. /* convert the keysym to UCS */
  223. uint16_t ucs = keysym2ucs(sym);
  224. if ((int16_t)ucs == -1) {
  225. fprintf(stderr, "Keysym could not be converted to UCS, skipping\n");
  226. return;
  227. }
  228. /* store the UCS in a string to convert it */
  229. uint8_t inp[3] = {(ucs & 0xFF00) >> 8, (ucs & 0xFF), 0};
  230. DEBUG("input part = %s\n", inp);
  231. /* store it in the password array as UTF-8 */
  232. input_position += convert_ucs_to_utf8((char*)inp, password + input_position);
  233. password[input_position] = '\0';
  234. DEBUG("current password = %s\n", password);
  235. }
  236. /*
  237. * A visibility notify event will be received when the visibility (= can the
  238. * user view the complete window) changes, so for example when a popup overlays
  239. * some area of the i3lock window.
  240. *
  241. * In this case, we raise our window on top so that the popup (or whatever is
  242. * hiding us) gets hidden.
  243. *
  244. */
  245. static void handle_visibility_notify(xcb_visibility_notify_event_t *event) {
  246. if (event->state != XCB_VISIBILITY_UNOBSCURED) {
  247. uint32_t values[] = { XCB_STACK_MODE_ABOVE };
  248. xcb_configure_window(conn, event->window, XCB_CONFIG_WINDOW_STACK_MODE, values);
  249. xcb_flush(conn);
  250. }
  251. }
  252. /*
  253. * Called when the keyboard mapping changes. We update our symbols.
  254. *
  255. */
  256. static void handle_mapping_notify(xcb_mapping_notify_event_t *event) {
  257. xcb_refresh_keyboard_mapping(symbols, event);
  258. modeswitchmask = get_mod_mask(conn, symbols, XK_Mode_switch);
  259. numlockmask = get_mod_mask(conn, symbols, XK_Num_Lock);
  260. }
  261. /*
  262. * Called when the properties on the root window change, e.g. when the screen
  263. * resolution changes. If so we update the window to cover the whole screen
  264. * and also redraw the image, if any.
  265. *
  266. */
  267. void handle_screen_resize(xcb_visualtype_t *vistype, xcb_window_t win, uint32_t* last_resolution, char* color) {
  268. xcb_get_geometry_cookie_t geomc;
  269. xcb_get_geometry_reply_t *geom;
  270. geomc = xcb_get_geometry(conn, scr->root);
  271. if ((geom = xcb_get_geometry_reply(conn, geomc, 0)) == NULL) {
  272. return;
  273. }
  274. if (last_resolution[0] == geom->width && last_resolution[1] == geom->height)
  275. return;
  276. last_resolution[0] = geom->width;
  277. last_resolution[1] = geom->height;
  278. #ifndef NOLIBCAIRO
  279. if (img) {
  280. xcb_pixmap_t bg_pixmap = draw_image(vistype, last_resolution, color);
  281. xcb_change_window_attributes(conn, win, XCB_CW_BACK_PIXMAP, (uint32_t[1]){ bg_pixmap });
  282. }
  283. #endif
  284. uint32_t mask = XCB_CONFIG_WINDOW_WIDTH | XCB_CONFIG_WINDOW_HEIGHT;
  285. xcb_configure_window(conn, win, mask, last_resolution);
  286. xcb_flush(conn);
  287. }
  288. /*
  289. * Callback function for PAM. We only react on password request callbacks.
  290. *
  291. */
  292. static int conv_callback(int num_msg, const struct pam_message **msg,
  293. struct pam_response **resp, void *appdata_ptr)
  294. {
  295. if (num_msg == 0)
  296. return 1;
  297. /* PAM expects an array of responses, one for each message */
  298. if ((*resp = calloc(num_msg, sizeof(struct pam_message))) == NULL) {
  299. perror("calloc");
  300. return 1;
  301. }
  302. for (int c = 0; c < num_msg; c++) {
  303. if (msg[c]->msg_style != PAM_PROMPT_ECHO_OFF &&
  304. msg[c]->msg_style != PAM_PROMPT_ECHO_ON)
  305. continue;
  306. /* return code is currently not used but should be set to zero */
  307. resp[c]->resp_retcode = 0;
  308. if ((resp[c]->resp = strdup(password)) == NULL) {
  309. perror("strdup");
  310. return 1;
  311. }
  312. }
  313. return 0;
  314. }
  315. int main(int argc, char *argv[]) {
  316. bool dont_fork = false;
  317. bool dpms = false;
  318. char color[7] = "ffffff";
  319. char *username;
  320. #ifndef NOLIBCAIRO
  321. char *image_path = NULL;
  322. #endif
  323. int ret;
  324. struct pam_conv conv = {conv_callback, NULL};
  325. int screen;
  326. xcb_visualtype_t *vistype;
  327. xcb_generic_event_t *event;
  328. xcb_window_t win;
  329. int curs_choice = CURS_NONE;
  330. char o;
  331. int optind = 0;
  332. struct option longopts[] = {
  333. {"version", no_argument, NULL, 'v'},
  334. {"nofork", no_argument, NULL, 'n'},
  335. {"beep", no_argument, NULL, 'b'},
  336. {"dpms", no_argument, NULL, 'd'},
  337. {"color", required_argument, NULL, 'c'},
  338. {"pointer", required_argument, NULL , 'p'},
  339. {"debug", no_argument, NULL, 0},
  340. #ifndef NOLIBCAIRO
  341. {"image", required_argument, NULL, 'i'},
  342. {"tiling", no_argument, NULL, 't'},
  343. #endif
  344. {NULL, no_argument, NULL, 0}
  345. };
  346. if ((username = getenv("USER")) == NULL)
  347. errx(1, "USER environment variable not set, please set it.\n");
  348. while ((o = getopt_long(argc, argv, "vnbdc:p:"
  349. #ifndef NOLIBCAIRO
  350. "i:t"
  351. #endif
  352. , longopts, &optind)) != -1) {
  353. switch (o) {
  354. case 'v':
  355. errx(EXIT_SUCCESS, "version " VERSION " © 2010-2011 Michael Stapelberg\n");
  356. case 'n':
  357. dont_fork = true;
  358. break;
  359. case 'b':
  360. beep = true;
  361. break;
  362. case 'd':
  363. dpms = true;
  364. break;
  365. case 'c': {
  366. char *arg = optarg;
  367. /* Skip # if present */
  368. if (arg[0] == '#')
  369. arg++;
  370. if (strlen(arg) != 6 || sscanf(arg, "%06[0-9a-fA-F]", color) != 1)
  371. errx(1, "color is invalid, color must be given in 6-byte format: rrggbb\n");
  372. break;
  373. }
  374. #ifndef NOLIBCAIRO
  375. case 'i':
  376. image_path = strdup(optarg);
  377. break;
  378. case 't':
  379. tile = true;
  380. break;
  381. #endif
  382. case 'p':
  383. if (!strcmp(optarg, "win")) {
  384. curs_choice = CURS_WIN;
  385. } else if (!strcmp(optarg, "default")) {
  386. curs_choice = CURS_DEFAULT;
  387. } else {
  388. errx(1, "i3lock: Invalid pointer type given. Expected one of \"win\" or \"default\".\n");
  389. }
  390. break;
  391. case 0:
  392. if (strcmp(longopts[optind].name, "debug") == 0)
  393. debug_mode = true;
  394. break;
  395. default:
  396. errx(1, "i3lock: Unknown option. Syntax: i3lock [-v] [-n] [-b] [-d] [-c color] [-p win|default]"
  397. #ifndef NOLIBCAIRO
  398. " [-i image.png] [-t]"
  399. #else
  400. " (compiled with NOLIBCAIRO)"
  401. #endif
  402. "\n");
  403. }
  404. }
  405. /* Initialize PAM */
  406. ret = pam_start("i3lock", username, &conv, &pam_handle);
  407. if (ret != PAM_SUCCESS)
  408. errx(EXIT_FAILURE, "PAM: %s\n", pam_strerror(pam_handle, ret));
  409. /* Initialize connection to X11 */
  410. if ((conn = xcb_connect(NULL, &screen)) == NULL ||
  411. xcb_connection_has_error(conn))
  412. errx(EXIT_FAILURE, "Could not connect to X11, maybe you need to set DISPLAY?");
  413. if (!dont_fork) {
  414. /* In the parent process, we exit */
  415. if (fork() != 0)
  416. return 0;
  417. }
  418. /* if DPMS is enabled, check if the X server really supports it */
  419. if (dpms) {
  420. xcb_dpms_capable_cookie_t dpmsc = xcb_dpms_capable(conn);
  421. xcb_dpms_capable_reply_t *dpmsr;
  422. if ((dpmsr = xcb_dpms_capable_reply(conn, dpmsc, NULL)) && !dpmsr->capable) {
  423. fprintf(stderr, "Disabling DPMS, X server not DPMS capable\n");
  424. dpms = false;
  425. }
  426. }
  427. scr = xcb_setup_roots_iterator(xcb_get_setup(conn)).data;
  428. vistype = get_root_visual_type(scr);
  429. uint32_t last_resolution[2] = {scr->width_in_pixels, scr->height_in_pixels};
  430. #ifndef NOLIBCAIRO
  431. if (image_path) {
  432. /* Create a pixmap to render on, fill it with the background color */
  433. img = cairo_image_surface_create_from_png(image_path);
  434. }
  435. #endif
  436. /* Pixmap on which the image is rendered to (if any) */
  437. xcb_pixmap_t bg_pixmap = draw_image(vistype, last_resolution, color);
  438. /* open the fullscreen window, already with the correct pixmap in place */
  439. win = open_fullscreen_window(conn, scr, color, bg_pixmap);
  440. cursor = create_cursor(conn, scr, win, curs_choice);
  441. grab_pointer_and_keyboard(conn, scr, cursor);
  442. symbols = xcb_key_symbols_alloc(conn);
  443. modeswitchmask = get_mod_mask(conn, symbols, XK_Mode_switch);
  444. numlockmask = get_mod_mask(conn, symbols, XK_Num_Lock);
  445. if (dpms)
  446. dpms_turn_off_screen(conn);
  447. while ((event = xcb_wait_for_event(conn))) {
  448. if (event->response_type == 0)
  449. errx(1, "XCB: Invalid event received");
  450. /* Strip off the highest bit (set if the event is generated) */
  451. int type = (event->response_type & 0x7F);
  452. if (type == XCB_KEY_PRESS) {
  453. handle_key_press((xcb_key_press_event_t*)event);
  454. continue;
  455. }
  456. if (type == XCB_KEY_RELEASE) {
  457. handle_key_release((xcb_key_release_event_t*)event);
  458. /* If this was the backspace or escape key we are back at an
  459. * empty input, so turn off the screen if DPMS is enabled */
  460. if (dpms && input_position == 0)
  461. dpms_turn_off_screen(conn);
  462. continue;
  463. }
  464. if (type == XCB_VISIBILITY_NOTIFY) {
  465. handle_visibility_notify((xcb_visibility_notify_event_t*)event);
  466. continue;
  467. }
  468. if (type == XCB_MAPPING_NOTIFY) {
  469. handle_mapping_notify((xcb_mapping_notify_event_t*)event);
  470. continue;
  471. }
  472. if (type == XCB_CONFIGURE_NOTIFY) {
  473. handle_screen_resize(vistype, win, last_resolution, color);
  474. continue;
  475. }
  476. printf("WARNING: unhandled event of type %d\n", type);
  477. }
  478. return 0;
  479. }