]> git.sur5r.net Git - i3/i3lock/blob - xcb.c
Add option to lock TTY switching
[i3/i3lock] / xcb.c
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 <sys/time.h>
23
24 #include "cursors.h"
25 #include "unlock_indicator.h"
26
27 extern auth_state_t auth_state;
28
29 xcb_connection_t *conn;
30 xcb_screen_t *screen;
31
32 #define curs_invisible_width 8
33 #define curs_invisible_height 8
34
35 static unsigned char curs_invisible_bits[] = {
36     0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
37
38 #define curs_windows_width 11
39 #define curs_windows_height 19
40
41 static unsigned char curs_windows_bits[] = {
42     0xfe, 0x07, 0xfc, 0x07, 0xfa, 0x07, 0xf6, 0x07, 0xee, 0x07, 0xde, 0x07,
43     0xbe, 0x07, 0x7e, 0x07, 0xfe, 0x06, 0xfe, 0x05, 0x3e, 0x00, 0xb6, 0x07,
44     0x6a, 0x07, 0x6c, 0x07, 0xde, 0x06, 0xdf, 0x06, 0xbf, 0x05, 0xbf, 0x05,
45     0x7f, 0x06};
46
47 #define mask_windows_width 11
48 #define mask_windows_height 19
49
50 static unsigned char mask_windows_bits[] = {
51     0x01, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0f, 0x00, 0x1f, 0x00, 0x3f, 0x00,
52     0x7f, 0x00, 0xff, 0x00, 0xff, 0x01, 0xff, 0x03, 0xff, 0x07, 0x7f, 0x00,
53     0xf7, 0x00, 0xf3, 0x00, 0xe1, 0x01, 0xe0, 0x01, 0xc0, 0x03, 0xc0, 0x03,
54     0x80, 0x01};
55
56 static uint32_t get_colorpixel(char *hex) {
57     char strgroups[3][3] = {{hex[0], hex[1], '\0'},
58                             {hex[2], hex[3], '\0'},
59                             {hex[4], hex[5], '\0'}};
60     uint32_t rgb16[3] = {(strtol(strgroups[0], NULL, 16)),
61                          (strtol(strgroups[1], NULL, 16)),
62                          (strtol(strgroups[2], NULL, 16))};
63
64     return (rgb16[0] << 16) + (rgb16[1] << 8) + rgb16[2];
65 }
66
67 xcb_visualtype_t *get_root_visual_type(xcb_screen_t *screen) {
68     xcb_visualtype_t *visual_type = NULL;
69     xcb_depth_iterator_t depth_iter;
70     xcb_visualtype_iterator_t visual_iter;
71
72     for (depth_iter = xcb_screen_allowed_depths_iterator(screen);
73          depth_iter.rem;
74          xcb_depth_next(&depth_iter)) {
75         for (visual_iter = xcb_depth_visuals_iterator(depth_iter.data);
76              visual_iter.rem;
77              xcb_visualtype_next(&visual_iter)) {
78             if (screen->root_visual != visual_iter.data->visual_id)
79                 continue;
80
81             visual_type = visual_iter.data;
82             return visual_type;
83         }
84     }
85
86     return NULL;
87 }
88
89 xcb_pixmap_t create_bg_pixmap(xcb_connection_t *conn, xcb_screen_t *scr, u_int32_t *resolution, char *color) {
90     xcb_pixmap_t bg_pixmap = xcb_generate_id(conn);
91     xcb_create_pixmap(conn, scr->root_depth, bg_pixmap, scr->root,
92                       resolution[0], resolution[1]);
93
94     /* Generate a Graphics Context and fill the pixmap with background color
95      * (for images that are smaller than your screen) */
96     xcb_gcontext_t gc = xcb_generate_id(conn);
97     uint32_t values[] = {get_colorpixel(color)};
98     xcb_create_gc(conn, gc, bg_pixmap, XCB_GC_FOREGROUND, values);
99     xcb_rectangle_t rect = {0, 0, resolution[0], resolution[1]};
100     xcb_poly_fill_rectangle(conn, bg_pixmap, gc, 1, &rect);
101     xcb_free_gc(conn, gc);
102
103     return bg_pixmap;
104 }
105
106 xcb_window_t open_fullscreen_window(xcb_connection_t *conn, xcb_screen_t *scr, char *color, xcb_pixmap_t pixmap) {
107     uint32_t mask = 0;
108     uint32_t values[3];
109     xcb_window_t win = xcb_generate_id(conn);
110
111     if (pixmap == XCB_NONE) {
112         mask |= XCB_CW_BACK_PIXEL;
113         values[0] = get_colorpixel(color);
114     } else {
115         mask |= XCB_CW_BACK_PIXMAP;
116         values[0] = pixmap;
117     }
118
119     mask |= XCB_CW_OVERRIDE_REDIRECT;
120     values[1] = 1;
121
122     mask |= XCB_CW_EVENT_MASK;
123     values[2] = XCB_EVENT_MASK_EXPOSURE |
124                 XCB_EVENT_MASK_KEY_PRESS |
125                 XCB_EVENT_MASK_KEY_RELEASE |
126                 XCB_EVENT_MASK_VISIBILITY_CHANGE |
127                 XCB_EVENT_MASK_STRUCTURE_NOTIFY;
128
129     xcb_create_window(conn,
130                       XCB_COPY_FROM_PARENT,
131                       win,       /* the window id */
132                       scr->root, /* parent == root */
133                       0, 0,
134                       scr->width_in_pixels,
135                       scr->height_in_pixels, /* dimensions */
136                       0,                     /* border = 0, we draw our own */
137                       XCB_WINDOW_CLASS_INPUT_OUTPUT,
138                       XCB_WINDOW_CLASS_COPY_FROM_PARENT, /* copy visual from parent */
139                       mask,
140                       values);
141
142     char *name = "i3lock";
143     xcb_change_property(conn,
144                         XCB_PROP_MODE_REPLACE,
145                         win,
146                         XCB_ATOM_WM_NAME,
147                         XCB_ATOM_STRING,
148                         8,
149                         strlen(name),
150                         name);
151
152     /* Map the window (= make it visible) */
153     xcb_map_window(conn, win);
154
155     /* Raise window (put it on top) */
156     values[0] = XCB_STACK_MODE_ABOVE;
157     xcb_configure_window(conn, win, XCB_CONFIG_WINDOW_STACK_MODE, values);
158
159     /* Ensure that the window is created and set up before returning */
160     xcb_aux_sync(conn);
161
162     return win;
163 }
164
165 /*
166  * Repeatedly tries to grab pointer and keyboard (up to the specified number of
167  * tries).
168  *
169  * Returns true if the grab succeeded, false if not.
170  *
171  */
172 bool grab_pointer_and_keyboard(xcb_connection_t *conn, xcb_screen_t *screen, xcb_cursor_t cursor, int tries) {
173     xcb_grab_pointer_cookie_t pcookie;
174     xcb_grab_pointer_reply_t *preply;
175
176     xcb_grab_keyboard_cookie_t kcookie;
177     xcb_grab_keyboard_reply_t *kreply;
178
179     const suseconds_t screen_redraw_timeout = 100000; /* 100ms */
180
181     /* Using few variables to trigger a redraw_screen() if too many tries */
182     bool redrawn = false;
183     struct timeval start;
184     if (gettimeofday(&start, NULL) == -1) {
185         err(EXIT_FAILURE, "gettimeofday");
186     }
187
188     while (tries-- > 0) {
189         pcookie = xcb_grab_pointer(
190             conn,
191             false,               /* get all pointer events specified by the following mask */
192             screen->root,        /* grab the root window */
193             XCB_NONE,            /* which events to let through */
194             XCB_GRAB_MODE_ASYNC, /* pointer events should continue as normal */
195             XCB_GRAB_MODE_ASYNC, /* keyboard mode */
196             XCB_NONE,            /* confine_to = in which window should the cursor stay */
197             cursor,              /* we change the cursor to whatever the user wanted */
198             XCB_CURRENT_TIME);
199
200         if ((preply = xcb_grab_pointer_reply(conn, pcookie, NULL)) &&
201             preply->status == XCB_GRAB_STATUS_SUCCESS) {
202             free(preply);
203             break;
204         }
205
206         /* In case the grab failed, we still need to free the reply */
207         free(preply);
208
209         /* Make this quite a bit slower */
210         usleep(50);
211
212         struct timeval now;
213         if (gettimeofday(&now, NULL) == -1) {
214             err(EXIT_FAILURE, "gettimeofday");
215         }
216
217         struct timeval elapsed;
218         timersub(&now, &start, &elapsed);
219
220         if (!redrawn &&
221             (tries % 100) == 0 &&
222             elapsed.tv_usec >= screen_redraw_timeout) {
223             redraw_screen();
224             redrawn = true;
225         }
226     }
227
228     while (tries-- > 0) {
229         kcookie = xcb_grab_keyboard(
230             conn,
231             true,         /* report events */
232             screen->root, /* grab the root window */
233             XCB_CURRENT_TIME,
234             XCB_GRAB_MODE_ASYNC, /* process events as normal, do not require sync */
235             XCB_GRAB_MODE_ASYNC);
236
237         if ((kreply = xcb_grab_keyboard_reply(conn, kcookie, NULL)) &&
238             kreply->status == XCB_GRAB_STATUS_SUCCESS) {
239             free(kreply);
240             break;
241         }
242
243         /* In case the grab failed, we still need to free the reply */
244         free(kreply);
245
246         /* Make this quite a bit slower */
247         usleep(50);
248
249         struct timeval now;
250         if (gettimeofday(&now, NULL) == -1) {
251             err(EXIT_FAILURE, "gettimeofday");
252         }
253
254         struct timeval elapsed;
255         timersub(&now, &start, &elapsed);
256
257         /* Trigger a screen redraw if 100ms elapsed */
258         if (!redrawn &&
259             (tries % 100) == 0 &&
260             elapsed.tv_usec >= screen_redraw_timeout) {
261             redraw_screen();
262             redrawn = true;
263         }
264     }
265
266     return (tries > 0);
267 }
268
269 xcb_cursor_t create_cursor(xcb_connection_t *conn, xcb_screen_t *screen, xcb_window_t win, int choice) {
270     xcb_pixmap_t bitmap;
271     xcb_pixmap_t mask;
272     xcb_cursor_t cursor;
273
274     unsigned char *curs_bits;
275     unsigned char *mask_bits;
276     int curs_w, curs_h;
277
278     switch (choice) {
279         case CURS_NONE:
280             curs_bits = curs_invisible_bits;
281             mask_bits = curs_invisible_bits;
282             curs_w = curs_invisible_width;
283             curs_h = curs_invisible_height;
284             break;
285         case CURS_WIN:
286             curs_bits = curs_windows_bits;
287             mask_bits = mask_windows_bits;
288             curs_w = curs_windows_width;
289             curs_h = curs_windows_height;
290             break;
291         case CURS_DEFAULT:
292         default:
293             return XCB_NONE; /* XCB_NONE is xcb's way of saying "don't change the cursor" */
294     }
295
296     bitmap = xcb_create_pixmap_from_bitmap_data(conn,
297                                                 win,
298                                                 curs_bits,
299                                                 curs_w,
300                                                 curs_h,
301                                                 1,
302                                                 screen->white_pixel,
303                                                 screen->black_pixel,
304                                                 NULL);
305
306     mask = xcb_create_pixmap_from_bitmap_data(conn,
307                                               win,
308                                               mask_bits,
309                                               curs_w,
310                                               curs_h,
311                                               1,
312                                               screen->white_pixel,
313                                               screen->black_pixel,
314                                               NULL);
315
316     cursor = xcb_generate_id(conn);
317
318     xcb_create_cursor(conn,
319                       cursor,
320                       bitmap,
321                       mask,
322                       65535, 65535, 65535,
323                       0, 0, 0,
324                       0, 0);
325
326     xcb_free_pixmap(conn, bitmap);
327     xcb_free_pixmap(conn, mask);
328
329     return cursor;
330 }
331
332 static xcb_atom_t _NET_ACTIVE_WINDOW = XCB_NONE;
333 void _init_net_active_window(xcb_connection_t *conn) {
334     if (_NET_ACTIVE_WINDOW != XCB_NONE) {
335         /* already initialized */
336         return;
337     }
338     xcb_generic_error_t *err;
339     xcb_intern_atom_reply_t *atom_reply = xcb_intern_atom_reply(
340         conn,
341         xcb_intern_atom(conn, 0, strlen("_NET_ACTIVE_WINDOW"), "_NET_ACTIVE_WINDOW"),
342         &err);
343     if (atom_reply == NULL) {
344         fprintf(stderr, "X11 Error %d\n", err->error_code);
345         free(err);
346         return;
347     }
348     _NET_ACTIVE_WINDOW = atom_reply->atom;
349     free(atom_reply);
350 }
351
352 xcb_window_t find_focused_window(xcb_connection_t *conn, const xcb_window_t root) {
353     xcb_window_t result = XCB_NONE;
354
355     _init_net_active_window(conn);
356
357     xcb_get_property_reply_t *prop_reply = xcb_get_property_reply(
358         conn,
359         xcb_get_property_unchecked(
360             conn, false, root, _NET_ACTIVE_WINDOW, XCB_GET_PROPERTY_TYPE_ANY, 0, 1 /* word */),
361         NULL);
362     if (prop_reply == NULL) {
363         goto out;
364     }
365     if (xcb_get_property_value_length(prop_reply) == 0) {
366         goto out_prop;
367     }
368     if (prop_reply->type != XCB_ATOM_WINDOW) {
369         goto out_prop;
370     }
371
372     result = *((xcb_window_t *)xcb_get_property_value(prop_reply));
373
374 out_prop:
375     free(prop_reply);
376 out:
377     return result;
378 }
379
380 void set_focused_window(xcb_connection_t *conn, const xcb_window_t root, const xcb_window_t window) {
381     xcb_client_message_event_t ev;
382     memset(&ev, '\0', sizeof(xcb_client_message_event_t));
383
384     _init_net_active_window(conn);
385
386     ev.response_type = XCB_CLIENT_MESSAGE;
387     ev.window = window;
388     ev.type = _NET_ACTIVE_WINDOW;
389     ev.format = 32;
390     ev.data.data32[0] = 2; /* 2 = pager */
391
392     xcb_send_event(conn, false, root, XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT, (char *)&ev);
393     xcb_flush(conn);
394 }