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.

309 lines
10 KiB

12 years ago
12 years ago
12 years ago
  1. /*
  2. * vim:ts=4:sw=4:expandtab
  3. *
  4. * © 2010 Michael Stapelberg
  5. *
  6. * xcb.c: contains all functions which use XCB to talk to X11. Mostly wrappers
  7. * around the rather complicated/ugly parts of the XCB API.
  8. *
  9. */
  10. #include <xcb/xcb.h>
  11. #include <xcb/xcb_image.h>
  12. #include <xcb/xcb_atom.h>
  13. #include <xcb/xcb_aux.h>
  14. #include <stdio.h>
  15. #include <stdlib.h>
  16. #include <stdbool.h>
  17. #include <string.h>
  18. #include <unistd.h>
  19. #include <assert.h>
  20. #include <err.h>
  21. #include <time.h>
  22. #include "cursors.h"
  23. #include "unlock_indicator.h"
  24. extern auth_state_t auth_state;
  25. xcb_connection_t *conn;
  26. xcb_screen_t *screen;
  27. #define curs_invisible_width 8
  28. #define curs_invisible_height 8
  29. static unsigned char curs_invisible_bits[] = {
  30. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
  31. #define curs_windows_width 11
  32. #define curs_windows_height 19
  33. static unsigned char curs_windows_bits[] = {
  34. 0xfe, 0x07, 0xfc, 0x07, 0xfa, 0x07, 0xf6, 0x07, 0xee, 0x07, 0xde, 0x07,
  35. 0xbe, 0x07, 0x7e, 0x07, 0xfe, 0x06, 0xfe, 0x05, 0x3e, 0x00, 0xb6, 0x07,
  36. 0x6a, 0x07, 0x6c, 0x07, 0xde, 0x06, 0xdf, 0x06, 0xbf, 0x05, 0xbf, 0x05,
  37. 0x7f, 0x06};
  38. #define mask_windows_width 11
  39. #define mask_windows_height 19
  40. static unsigned char mask_windows_bits[] = {
  41. 0x01, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0f, 0x00, 0x1f, 0x00, 0x3f, 0x00,
  42. 0x7f, 0x00, 0xff, 0x00, 0xff, 0x01, 0xff, 0x03, 0xff, 0x07, 0x7f, 0x00,
  43. 0xf7, 0x00, 0xf3, 0x00, 0xe1, 0x01, 0xe0, 0x01, 0xc0, 0x03, 0xc0, 0x03,
  44. 0x80, 0x01};
  45. static uint32_t get_colorpixel(char *hex) {
  46. char strgroups[3][3] = {{hex[0], hex[1], '\0'},
  47. {hex[2], hex[3], '\0'},
  48. {hex[4], hex[5], '\0'}};
  49. uint32_t rgb16[3] = {(strtol(strgroups[0], NULL, 16)),
  50. (strtol(strgroups[1], NULL, 16)),
  51. (strtol(strgroups[2], NULL, 16))};
  52. return (rgb16[0] << 16) + (rgb16[1] << 8) + rgb16[2];
  53. }
  54. xcb_visualtype_t *get_root_visual_type(xcb_screen_t *screen) {
  55. xcb_visualtype_t *visual_type = NULL;
  56. xcb_depth_iterator_t depth_iter;
  57. xcb_visualtype_iterator_t visual_iter;
  58. for (depth_iter = xcb_screen_allowed_depths_iterator(screen);
  59. depth_iter.rem;
  60. xcb_depth_next(&depth_iter)) {
  61. for (visual_iter = xcb_depth_visuals_iterator(depth_iter.data);
  62. visual_iter.rem;
  63. xcb_visualtype_next(&visual_iter)) {
  64. if (screen->root_visual != visual_iter.data->visual_id)
  65. continue;
  66. visual_type = visual_iter.data;
  67. return visual_type;
  68. }
  69. }
  70. return NULL;
  71. }
  72. xcb_pixmap_t create_bg_pixmap(xcb_connection_t *conn, xcb_screen_t *scr, u_int32_t *resolution, char *color) {
  73. xcb_pixmap_t bg_pixmap = xcb_generate_id(conn);
  74. xcb_create_pixmap(conn, scr->root_depth, bg_pixmap, scr->root,
  75. resolution[0], resolution[1]);
  76. /* Generate a Graphics Context and fill the pixmap with background color
  77. * (for images that are smaller than your screen) */
  78. xcb_gcontext_t gc = xcb_generate_id(conn);
  79. uint32_t values[] = {get_colorpixel(color)};
  80. xcb_create_gc(conn, gc, bg_pixmap, XCB_GC_FOREGROUND, values);
  81. xcb_rectangle_t rect = {0, 0, resolution[0], resolution[1]};
  82. xcb_poly_fill_rectangle(conn, bg_pixmap, gc, 1, &rect);
  83. xcb_free_gc(conn, gc);
  84. return bg_pixmap;
  85. }
  86. xcb_window_t open_fullscreen_window(xcb_connection_t *conn, xcb_screen_t *scr, char *color, xcb_pixmap_t pixmap) {
  87. uint32_t mask = 0;
  88. uint32_t values[3];
  89. xcb_window_t win = xcb_generate_id(conn);
  90. if (pixmap == XCB_NONE) {
  91. mask |= XCB_CW_BACK_PIXEL;
  92. values[0] = get_colorpixel(color);
  93. } else {
  94. mask |= XCB_CW_BACK_PIXMAP;
  95. values[0] = pixmap;
  96. }
  97. mask |= XCB_CW_OVERRIDE_REDIRECT;
  98. values[1] = 1;
  99. mask |= XCB_CW_EVENT_MASK;
  100. values[2] = XCB_EVENT_MASK_EXPOSURE |
  101. XCB_EVENT_MASK_KEY_PRESS |
  102. XCB_EVENT_MASK_KEY_RELEASE |
  103. XCB_EVENT_MASK_VISIBILITY_CHANGE |
  104. XCB_EVENT_MASK_STRUCTURE_NOTIFY;
  105. xcb_create_window(conn,
  106. XCB_COPY_FROM_PARENT,
  107. win, /* the window id */
  108. scr->root, /* parent == root */
  109. 0, 0,
  110. scr->width_in_pixels,
  111. scr->height_in_pixels, /* dimensions */
  112. 0, /* border = 0, we draw our own */
  113. XCB_WINDOW_CLASS_INPUT_OUTPUT,
  114. XCB_WINDOW_CLASS_COPY_FROM_PARENT, /* copy visual from parent */
  115. mask,
  116. values);
  117. char *name = "i3lock";
  118. xcb_change_property(conn,
  119. XCB_PROP_MODE_REPLACE,
  120. win,
  121. XCB_ATOM_WM_NAME,
  122. XCB_ATOM_STRING,
  123. 8,
  124. strlen(name),
  125. name);
  126. /* Map the window (= make it visible) */
  127. xcb_map_window(conn, win);
  128. /* Raise window (put it on top) */
  129. values[0] = XCB_STACK_MODE_ABOVE;
  130. xcb_configure_window(conn, win, XCB_CONFIG_WINDOW_STACK_MODE, values);
  131. /* Ensure that the window is created and set up before returning */
  132. xcb_aux_sync(conn);
  133. return win;
  134. }
  135. /*
  136. * Repeatedly tries to grab pointer and keyboard (up to 10000 times).
  137. *
  138. */
  139. void grab_pointer_and_keyboard(xcb_connection_t *conn, xcb_screen_t *screen, xcb_cursor_t cursor) {
  140. xcb_grab_pointer_cookie_t pcookie;
  141. xcb_grab_pointer_reply_t *preply;
  142. xcb_grab_keyboard_cookie_t kcookie;
  143. xcb_grab_keyboard_reply_t *kreply;
  144. int tries = 10000;
  145. /* Using few variables to trigger a redraw_screen() if too many tries */
  146. bool redrawn = false;
  147. time_t start = clock();
  148. while (tries-- > 0) {
  149. pcookie = xcb_grab_pointer(
  150. conn,
  151. false, /* get all pointer events specified by the following mask */
  152. screen->root, /* grab the root window */
  153. XCB_NONE, /* which events to let through */
  154. XCB_GRAB_MODE_ASYNC, /* pointer events should continue as normal */
  155. XCB_GRAB_MODE_ASYNC, /* keyboard mode */
  156. XCB_NONE, /* confine_to = in which window should the cursor stay */
  157. cursor, /* we change the cursor to whatever the user wanted */
  158. XCB_CURRENT_TIME);
  159. if ((preply = xcb_grab_pointer_reply(conn, pcookie, NULL)) &&
  160. preply->status == XCB_GRAB_STATUS_SUCCESS) {
  161. free(preply);
  162. break;
  163. }
  164. /* Make this quite a bit slower */
  165. usleep(50);
  166. /* Measure elapsed time and trigger a screen redraw if elapsed > 250000 */
  167. if (!redrawn &&
  168. (tries % 100) == 0 &&
  169. (clock() - start) > 250000) {
  170. redraw_screen();
  171. redrawn = true;
  172. }
  173. }
  174. while (tries-- > 0) {
  175. kcookie = xcb_grab_keyboard(
  176. conn,
  177. true, /* report events */
  178. screen->root, /* grab the root window */
  179. XCB_CURRENT_TIME,
  180. XCB_GRAB_MODE_ASYNC, /* process events as normal, do not require sync */
  181. XCB_GRAB_MODE_ASYNC);
  182. if ((kreply = xcb_grab_keyboard_reply(conn, kcookie, NULL)) &&
  183. kreply->status == XCB_GRAB_STATUS_SUCCESS) {
  184. free(kreply);
  185. break;
  186. }
  187. /* Make this quite a bit slower */
  188. usleep(50);
  189. /* Measure elapsed time and trigger a screen redraw if elapsed > 250000 */
  190. if (!redrawn &&
  191. (tries % 100) == 0 &&
  192. (clock() - start) > 250000) {
  193. redraw_screen();
  194. redrawn = true;
  195. }
  196. }
  197. /* After trying for 10000 times, i3lock will display an error message
  198. * for 2 sec prior to terminate. */
  199. if (tries <= 0) {
  200. auth_state = STATE_I3LOCK_LOCK_FAILED;
  201. redraw_screen();
  202. sleep(1);
  203. errx(EXIT_FAILURE, "Cannot grab pointer/keyboard");
  204. }
  205. }
  206. xcb_cursor_t create_cursor(xcb_connection_t *conn, xcb_screen_t *screen, xcb_window_t win, int choice) {
  207. xcb_pixmap_t bitmap;
  208. xcb_pixmap_t mask;
  209. xcb_cursor_t cursor;
  210. unsigned char *curs_bits;
  211. unsigned char *mask_bits;
  212. int curs_w, curs_h;
  213. switch (choice) {
  214. case CURS_NONE:
  215. curs_bits = curs_invisible_bits;
  216. mask_bits = curs_invisible_bits;
  217. curs_w = curs_invisible_width;
  218. curs_h = curs_invisible_height;
  219. break;
  220. case CURS_WIN:
  221. curs_bits = curs_windows_bits;
  222. mask_bits = mask_windows_bits;
  223. curs_w = curs_windows_width;
  224. curs_h = curs_windows_height;
  225. break;
  226. case CURS_DEFAULT:
  227. default:
  228. return XCB_NONE; /* XCB_NONE is xcb's way of saying "don't change the cursor" */
  229. }
  230. bitmap = xcb_create_pixmap_from_bitmap_data(conn,
  231. win,
  232. curs_bits,
  233. curs_w,
  234. curs_h,
  235. 1,
  236. screen->white_pixel,
  237. screen->black_pixel,
  238. NULL);
  239. mask = xcb_create_pixmap_from_bitmap_data(conn,
  240. win,
  241. mask_bits,
  242. curs_w,
  243. curs_h,
  244. 1,
  245. screen->white_pixel,
  246. screen->black_pixel,
  247. NULL);
  248. cursor = xcb_generate_id(conn);
  249. xcb_create_cursor(conn,
  250. cursor,
  251. bitmap,
  252. mask,
  253. 65535, 65535, 65535,
  254. 0, 0, 0,
  255. 0, 0);
  256. xcb_free_pixmap(conn, bitmap);
  257. xcb_free_pixmap(conn, mask);
  258. return cursor;
  259. }