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.

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