]> git.sur5r.net Git - i3/i3lock/blob - i3lock.c
Allow XKB_KEY_XF86ScreenSaver as synonm for enter
[i3/i3lock] / i3lock.c
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * © 2010-2012 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 <err.h>
18 #include <assert.h>
19 #include <security/pam_appl.h>
20 #include <X11/Xlib-xcb.h>
21 #include <getopt.h>
22 #include <string.h>
23 #include <ev.h>
24 #include <sys/mman.h>
25 #include <X11/XKBlib.h>
26 #include <X11/extensions/XKBfile.h>
27 #include <xkbcommon/xkbcommon.h>
28 #include <cairo.h>
29 #include <cairo/cairo-xcb.h>
30
31 #include "i3lock.h"
32 #include "xcb.h"
33 #include "cursors.h"
34 #include "unlock_indicator.h"
35 #include "xinerama.h"
36
37 /* We need this for libxkbfile */
38 static Display *display;
39 char color[7] = "ffffff";
40 uint32_t last_resolution[2];
41 xcb_window_t win;
42 static xcb_cursor_t cursor;
43 static pam_handle_t *pam_handle;
44 int input_position = 0;
45 /* Holds the password you enter (in UTF-8). */
46 static char password[512];
47 static bool beep = false;
48 bool debug_mode = false;
49 static bool dpms = false;
50 bool unlock_indicator = true;
51 static bool dont_fork = false;
52 struct ev_loop *main_loop;
53 static struct ev_timer *clear_pam_wrong_timeout;
54 extern unlock_state_t unlock_state;
55 extern pam_state_t pam_state;
56
57 static struct xkb_state *xkb_state;
58 static struct xkb_context *xkb_context;
59 static struct xkb_keymap *xkb_keymap;
60
61 cairo_surface_t *img = NULL;
62 bool tile = false;
63
64 /* isutf, u8_dec © 2005 Jeff Bezanson, public domain */
65 #define isutf(c) (((c) & 0xC0) != 0x80)
66
67 /*
68  * Decrements i to point to the previous unicode glyph
69  *
70  */
71 void u8_dec(char *s, int *i) {
72     (void)(isutf(s[--(*i)]) || isutf(s[--(*i)]) || isutf(s[--(*i)]) || --(*i));
73 }
74
75 /*
76  * Loads the XKB keymap from the X11 server and feeds it to xkbcommon.
77  * Necessary so that we can properly let xkbcommon track the keyboard state and
78  * translate keypresses to utf-8.
79  *
80  * Ideally, xkbcommon would ship something like this itself, but as of now
81  * (version 0.2.0), it doesn’t.
82  *
83  */
84 static bool load_keymap(void) {
85     bool ret = false;
86     XkbFileInfo result;
87     memset(&result, '\0', sizeof(result));
88     result.xkb = XkbGetKeyboard(display, XkbAllMapComponentsMask, XkbUseCoreKbd);
89     if (result.xkb == NULL) {
90         fprintf(stderr, "[i3lock] XKB: XkbGetKeyboard failed\n");
91         return false;
92     }
93
94     FILE *temp = tmpfile();
95     if (temp == NULL) {
96         fprintf(stderr, "[i3lock] could not create tempfile\n");
97         return false;
98     }
99
100     bool ok = XkbWriteXKBKeymap(temp, &result, false, false, NULL, NULL);
101     if (!ok) {
102         fprintf(stderr, "[i3lock] XkbWriteXKBKeymap failed\n");
103         goto out;
104     }
105
106     rewind(temp);
107
108     if (xkb_context == NULL) {
109         if ((xkb_context = xkb_context_new(0)) == NULL) {
110             fprintf(stderr, "[i3lock] could not create xkbcommon context\n");
111             goto out;
112         }
113     }
114
115     if (xkb_keymap != NULL)
116         xkb_keymap_unref(xkb_keymap);
117
118     if ((xkb_keymap = xkb_keymap_new_from_file(xkb_context, temp, XKB_KEYMAP_FORMAT_TEXT_V1, 0)) == NULL) {
119         fprintf(stderr, "[i3lock] xkb_keymap_new_from_file failed\n");
120         goto out;
121     }
122
123     struct xkb_state *new_state = xkb_state_new(xkb_keymap);
124     if (new_state == NULL) {
125         fprintf(stderr, "[i3lock] xkb_state_new failed\n");
126         goto out;
127     }
128
129     if (xkb_state != NULL)
130         xkb_state_unref(xkb_state);
131     xkb_state = new_state;
132
133     ret = true;
134 out:
135     XkbFreeKeyboard(result.xkb, XkbAllComponentsMask, true);
136     fclose(temp);
137     return ret;
138 }
139
140 /*
141  * Clears the memory which stored the password to be a bit safer against
142  * cold-boot attacks.
143  *
144  */
145 static void clear_password_memory(void) {
146     /* A volatile pointer to the password buffer to prevent the compiler from
147      * optimizing this out. */
148     volatile char *vpassword = password;
149     for (int c = 0; c < sizeof(password); c++)
150         /* We store a non-random pattern which consists of the (irrelevant)
151          * index plus (!) the value of the beep variable. This prevents the
152          * compiler from optimizing the calls away, since the value of 'beep'
153          * is not known at compile-time. */
154         vpassword[c] = c + (int)beep;
155 }
156
157
158 /*
159  * Resets pam_state to STATE_PAM_IDLE 2 seconds after an unsuccesful
160  * authentication event.
161  *
162  */
163 static void clear_pam_wrong(EV_P_ ev_timer *w, int revents) {
164     DEBUG("clearing pam wrong\n");
165     pam_state = STATE_PAM_IDLE;
166     unlock_state = STATE_STARTED;
167     redraw_screen();
168
169     /* Now free this timeout. */
170     ev_timer_stop(main_loop, clear_pam_wrong_timeout);
171     free(clear_pam_wrong_timeout);
172     clear_pam_wrong_timeout = NULL;
173 }
174
175 static void input_done(void) {
176     if (input_position == 0)
177         return;
178
179     if (clear_pam_wrong_timeout) {
180         ev_timer_stop(main_loop, clear_pam_wrong_timeout);
181         free(clear_pam_wrong_timeout);
182         clear_pam_wrong_timeout = NULL;
183     }
184
185     pam_state = STATE_PAM_VERIFY;
186     redraw_screen();
187
188     if (pam_authenticate(pam_handle, 0) == PAM_SUCCESS) {
189         DEBUG("successfully authenticated\n");
190         clear_password_memory();
191         exit(0);
192     }
193
194     if (debug_mode)
195         fprintf(stderr, "Authentication failure\n");
196
197     pam_state = STATE_PAM_WRONG;
198     redraw_screen();
199
200     /* Clear this state after 2 seconds (unless the user enters another
201      * password during that time). */
202     ev_now_update(main_loop);
203     if ((clear_pam_wrong_timeout = calloc(sizeof(struct ev_timer), 1))) {
204         ev_timer_init(clear_pam_wrong_timeout, clear_pam_wrong, 2.0, 0.);
205         ev_timer_start(main_loop, clear_pam_wrong_timeout);
206     }
207
208     /* Cancel the clear_indicator_timeout, it would hide the unlock indicator
209      * too early. */
210     stop_clear_indicator_timeout();
211
212     /* beep on authentication failure, if enabled */
213     if (beep) {
214         xcb_bell(conn, 100);
215         xcb_flush(conn);
216     }
217 }
218
219 /*
220  * Called when the user releases a key. We need to leave the Mode_switch
221  * state when the user releases the Mode_switch key.
222  *
223  */
224 static void handle_key_release(xcb_key_release_event_t *event) {
225     xkb_state_update_key(xkb_state, event->detail, XKB_KEY_UP);
226 }
227
228 static void redraw_timeout(EV_P_ ev_timer *w, int revents) {
229     redraw_screen();
230
231     ev_timer_stop(main_loop, w);
232     free(w);
233 }
234
235 /*
236  * Handle key presses. Fixes state, then looks up the key symbol for the
237  * given keycode, then looks up the key symbol (as UCS-2), converts it to
238  * UTF-8 and stores it in the password array.
239  *
240  */
241 static void handle_key_press(xcb_key_press_event_t *event) {
242     xkb_keysym_t ksym;
243     char buffer[128];
244     int n;
245
246     ksym = xkb_state_key_get_one_sym(xkb_state, event->detail);
247     xkb_state_update_key(xkb_state, event->detail, XKB_KEY_DOWN);
248
249     /* The buffer will be null-terminated, so n >= 2 for 1 actual character. */
250     memset(buffer, '\0', sizeof(buffer));
251     n = xkb_keysym_to_utf8(ksym, buffer, sizeof(buffer));
252
253     switch (ksym) {
254     case XKB_KEY_Return:
255     case XKB_KEY_KP_Enter:
256     case XKB_KEY_XF86ScreenSaver:
257         password[input_position] = '\0';
258         input_done();
259     case XKB_KEY_Escape:
260         input_position = 0;
261         clear_password_memory();
262         password[input_position] = '\0';
263
264         /* Hide the unlock indicator after a bit if the password buffer is
265          * empty. */
266         start_clear_indicator_timeout();
267         unlock_state = STATE_BACKSPACE_ACTIVE;
268         redraw_screen();
269         unlock_state = STATE_KEY_PRESSED;
270         return;
271
272     case XKB_KEY_BackSpace:
273         if (input_position == 0)
274             return;
275
276         /* decrement input_position to point to the previous glyph */
277         u8_dec(password, &input_position);
278         password[input_position] = '\0';
279
280         /* Hide the unlock indicator after a bit if the password buffer is
281          * empty. */
282         start_clear_indicator_timeout();
283         unlock_state = STATE_BACKSPACE_ACTIVE;
284         redraw_screen();
285         unlock_state = STATE_KEY_PRESSED;
286         return;
287     }
288
289     if ((input_position + 8) >= sizeof(password))
290         return;
291
292 #if 0
293     /* FIXME: handle all of these? */
294     printf("is_keypad_key = %d\n", xcb_is_keypad_key(sym));
295     printf("is_private_keypad_key = %d\n", xcb_is_private_keypad_key(sym));
296     printf("xcb_is_cursor_key = %d\n", xcb_is_cursor_key(sym));
297     printf("xcb_is_pf_key = %d\n", xcb_is_pf_key(sym));
298     printf("xcb_is_function_key = %d\n", xcb_is_function_key(sym));
299     printf("xcb_is_misc_function_key = %d\n", xcb_is_misc_function_key(sym));
300     printf("xcb_is_modifier_key = %d\n", xcb_is_modifier_key(sym));
301 #endif
302
303     if (n < 2)
304         return;
305
306     /* store it in the password array as UTF-8 */
307     memcpy(password+input_position, buffer, n-1);
308     input_position += n-1;
309     DEBUG("current password = %s\n", password);
310
311     unlock_state = STATE_KEY_ACTIVE;
312     redraw_screen();
313     unlock_state = STATE_KEY_PRESSED;
314
315     struct ev_timer *timeout = calloc(sizeof(struct ev_timer), 1);
316     if (timeout) {
317         ev_timer_init(timeout, redraw_timeout, 0.25, 0.);
318         ev_timer_start(main_loop, timeout);
319     }
320
321     stop_clear_indicator_timeout();
322 }
323
324 /*
325  * A visibility notify event will be received when the visibility (= can the
326  * user view the complete window) changes, so for example when a popup overlays
327  * some area of the i3lock window.
328  *
329  * In this case, we raise our window on top so that the popup (or whatever is
330  * hiding us) gets hidden.
331  *
332  */
333 static void handle_visibility_notify(xcb_visibility_notify_event_t *event) {
334     if (event->state != XCB_VISIBILITY_UNOBSCURED) {
335         uint32_t values[] = { XCB_STACK_MODE_ABOVE };
336         xcb_configure_window(conn, event->window, XCB_CONFIG_WINDOW_STACK_MODE, values);
337         xcb_flush(conn);
338     }
339 }
340
341 /*
342  * Called when the keyboard mapping changes. We update our symbols.
343  *
344  */
345 static void handle_mapping_notify(xcb_mapping_notify_event_t *event) {
346     /* We ignore errors — if the new keymap cannot be loaded it’s better if the
347      * screen stays locked and the user intervenes by using killall i3lock. */
348     (void)load_keymap();
349 }
350
351 /*
352  * Called when the properties on the root window change, e.g. when the screen
353  * resolution changes. If so we update the window to cover the whole screen
354  * and also redraw the image, if any.
355  *
356  */
357 void handle_screen_resize(void) {
358     xcb_get_geometry_cookie_t geomc;
359     xcb_get_geometry_reply_t *geom;
360     geomc = xcb_get_geometry(conn, screen->root);
361     if ((geom = xcb_get_geometry_reply(conn, geomc, 0)) == NULL)
362         return;
363
364     if (last_resolution[0] == geom->width &&
365         last_resolution[1] == geom->height) {
366         free(geom);
367         return;
368     }
369
370     last_resolution[0] = geom->width;
371     last_resolution[1] = geom->height;
372
373     free(geom);
374
375     redraw_screen();
376
377     uint32_t mask = XCB_CONFIG_WINDOW_WIDTH | XCB_CONFIG_WINDOW_HEIGHT;
378     xcb_configure_window(conn, win, mask, last_resolution);
379     xcb_flush(conn);
380
381     xinerama_query_screens();
382     redraw_screen();
383 }
384
385 /*
386  * Callback function for PAM. We only react on password request callbacks.
387  *
388  */
389 static int conv_callback(int num_msg, const struct pam_message **msg,
390                          struct pam_response **resp, void *appdata_ptr)
391 {
392     if (num_msg == 0)
393         return 1;
394
395     /* PAM expects an array of responses, one for each message */
396     if ((*resp = calloc(num_msg, sizeof(struct pam_response))) == NULL) {
397         perror("calloc");
398         return 1;
399     }
400
401     for (int c = 0; c < num_msg; c++) {
402         if (msg[c]->msg_style != PAM_PROMPT_ECHO_OFF &&
403             msg[c]->msg_style != PAM_PROMPT_ECHO_ON)
404             continue;
405
406         /* return code is currently not used but should be set to zero */
407         resp[c]->resp_retcode = 0;
408         if ((resp[c]->resp = strdup(password)) == NULL) {
409             perror("strdup");
410             return 1;
411         }
412     }
413
414     return 0;
415 }
416
417 /*
418  * This callback is only a dummy, see xcb_prepare_cb and xcb_check_cb.
419  * See also man libev(3): "ev_prepare" and "ev_check" - customise your event loop
420  *
421  */
422 static void xcb_got_event(EV_P_ struct ev_io *w, int revents) {
423     /* empty, because xcb_prepare_cb and xcb_check_cb are used */
424 }
425
426 /*
427  * Flush before blocking (and waiting for new events)
428  *
429  */
430 static void xcb_prepare_cb(EV_P_ ev_prepare *w, int revents) {
431     xcb_flush(conn);
432 }
433
434 /*
435  * Instead of polling the X connection socket we leave this to
436  * xcb_poll_for_event() which knows better than we can ever know.
437  *
438  */
439 static void xcb_check_cb(EV_P_ ev_check *w, int revents) {
440     xcb_generic_event_t *event;
441
442     while ((event = xcb_poll_for_event(conn)) != NULL) {
443         if (event->response_type == 0) {
444             xcb_generic_error_t *error = (xcb_generic_error_t*)event;
445             if (debug_mode)
446                 fprintf(stderr, "X11 Error received! sequence 0x%x, error_code = %d\n",
447                         error->sequence, error->error_code);
448             free(event);
449             continue;
450         }
451
452         /* Strip off the highest bit (set if the event is generated) */
453         int type = (event->response_type & 0x7F);
454         switch (type) {
455             case XCB_KEY_PRESS:
456                 handle_key_press((xcb_key_press_event_t*)event);
457                 break;
458
459             case XCB_KEY_RELEASE:
460                 handle_key_release((xcb_key_release_event_t*)event);
461
462                 /* If this was the backspace or escape key we are back at an
463                  * empty input, so turn off the screen if DPMS is enabled */
464                 if (dpms && input_position == 0)
465                     dpms_turn_off_screen(conn);
466
467                 break;
468
469             case XCB_VISIBILITY_NOTIFY:
470                 handle_visibility_notify((xcb_visibility_notify_event_t*)event);
471                 break;
472
473             case XCB_MAP_NOTIFY:
474                 if (!dont_fork) {
475                     /* After the first MapNotify, we never fork again. We don’t
476                      * expect to get another MapNotify, but better be sure… */
477                     dont_fork = true;
478
479                     /* In the parent process, we exit */
480                     if (fork() != 0)
481                         exit(0);
482                 }
483                 break;
484
485             case XCB_MAPPING_NOTIFY:
486                 handle_mapping_notify((xcb_mapping_notify_event_t*)event);
487                 break;
488
489             case XCB_CONFIGURE_NOTIFY:
490                 handle_screen_resize();
491                 break;
492         }
493
494         free(event);
495     }
496 }
497
498 int main(int argc, char *argv[]) {
499     char *username;
500     char *image_path = NULL;
501     int ret;
502     struct pam_conv conv = {conv_callback, NULL};
503     int curs_choice = CURS_NONE;
504     int o;
505     int optind = 0;
506     struct option longopts[] = {
507         {"version", no_argument, NULL, 'v'},
508         {"nofork", no_argument, NULL, 'n'},
509         {"beep", no_argument, NULL, 'b'},
510         {"dpms", no_argument, NULL, 'd'},
511         {"color", required_argument, NULL, 'c'},
512         {"pointer", required_argument, NULL , 'p'},
513         {"debug", no_argument, NULL, 0},
514         {"help", no_argument, NULL, 'h'},
515         {"no-unlock-indicator", no_argument, NULL, 'u'},
516         {"image", required_argument, NULL, 'i'},
517         {"tiling", no_argument, NULL, 't'},
518         {NULL, no_argument, NULL, 0}
519     };
520
521     if ((username = getenv("USER")) == NULL)
522         errx(1, "USER environment variable not set, please set it.\n");
523
524     while ((o = getopt_long(argc, argv, "hvnbdc:p:ui:t", longopts, &optind)) != -1) {
525         switch (o) {
526         case 'v':
527             errx(EXIT_SUCCESS, "version " VERSION " © 2010-2012 Michael Stapelberg");
528         case 'n':
529             dont_fork = true;
530             break;
531         case 'b':
532             beep = true;
533             break;
534         case 'd':
535             dpms = true;
536             break;
537         case 'c': {
538             char *arg = optarg;
539
540             /* Skip # if present */
541             if (arg[0] == '#')
542                 arg++;
543
544             if (strlen(arg) != 6 || sscanf(arg, "%06[0-9a-fA-F]", color) != 1)
545                 errx(1, "color is invalid, color must be given in 6-byte format: rrggbb\n");
546
547             break;
548         }
549         case 'u':
550             unlock_indicator = false;
551             break;
552         case 'i':
553             image_path = strdup(optarg);
554             break;
555         case 't':
556             tile = true;
557             break;
558         case 'p':
559             if (!strcmp(optarg, "win")) {
560                 curs_choice = CURS_WIN;
561             } else if (!strcmp(optarg, "default")) {
562                 curs_choice = CURS_DEFAULT;
563             } else {
564                 errx(1, "i3lock: Invalid pointer type given. Expected one of \"win\" or \"default\".\n");
565             }
566             break;
567         case 0:
568             if (strcmp(longopts[optind].name, "debug") == 0)
569                 debug_mode = true;
570             break;
571         default:
572             errx(1, "Syntax: i3lock [-v] [-n] [-b] [-d] [-c color] [-u] [-p win|default]"
573             " [-i image.png] [-t]"
574             );
575         }
576     }
577
578     /* We need (relatively) random numbers for highlighting a random part of
579      * the unlock indicator upon keypresses. */
580     srand(time(NULL));
581
582     /* Initialize PAM */
583     ret = pam_start("i3lock", username, &conv, &pam_handle);
584     if (ret != PAM_SUCCESS)
585         errx(EXIT_FAILURE, "PAM: %s", pam_strerror(pam_handle, ret));
586
587 /* Using mlock() as non-super-user seems only possible in Linux. Users of other
588  * operating systems should use encrypted swap/no swap (or remove the ifdef and
589  * run i3lock as super-user). */
590 #if defined(__linux__)
591     /* Lock the area where we store the password in memory, we don’t want it to
592      * be swapped to disk. Since Linux 2.6.9, this does not require any
593      * privileges, just enough bytes in the RLIMIT_MEMLOCK limit. */
594     if (mlock(password, sizeof(password)) != 0)
595         err(EXIT_FAILURE, "Could not lock page in memory, check RLIMIT_MEMLOCK");
596 #endif
597
598     /* Initialize connection to X11 */
599     if ((display = XOpenDisplay(NULL)) == NULL)
600         errx(EXIT_FAILURE, "Could not connect to X11, maybe you need to set DISPLAY?");
601     XSetEventQueueOwner(display, XCBOwnsEventQueue);
602     conn = XGetXCBConnection(display);
603
604     /* Double checking that connection is good and operatable with xcb */
605     if (xcb_connection_has_error(conn))
606         errx(EXIT_FAILURE, "Could not connect to X11, maybe you need to set DISPLAY?");
607
608     /* When we cannot initially load the keymap, we better exit */
609     if (!load_keymap())
610         errx(EXIT_FAILURE, "Could not load keymap");
611
612     xinerama_init();
613     xinerama_query_screens();
614
615     /* if DPMS is enabled, check if the X server really supports it */
616     if (dpms) {
617         xcb_dpms_capable_cookie_t dpmsc = xcb_dpms_capable(conn);
618         xcb_dpms_capable_reply_t *dpmsr;
619         if ((dpmsr = xcb_dpms_capable_reply(conn, dpmsc, NULL))) {
620             if (!dpmsr->capable) {
621                 if (debug_mode)
622                     fprintf(stderr, "Disabling DPMS, X server not DPMS capable\n");
623                 dpms = false;
624             }
625             free(dpmsr);
626         }
627     }
628
629     screen = xcb_setup_roots_iterator(xcb_get_setup(conn)).data;
630
631     last_resolution[0] = screen->width_in_pixels;
632     last_resolution[1] = screen->height_in_pixels;
633
634     xcb_change_window_attributes(conn, screen->root, XCB_CW_EVENT_MASK,
635             (uint32_t[]){ XCB_EVENT_MASK_STRUCTURE_NOTIFY });
636
637     if (image_path) {
638         /* Create a pixmap to render on, fill it with the background color */
639         img = cairo_image_surface_create_from_png(image_path);
640         /* In case loading failed, we just pretend no -i was specified. */
641         if (cairo_surface_status(img) != CAIRO_STATUS_SUCCESS) {
642             fprintf(stderr, "Could not load image \"%s\": cairo surface status %d\n",
643                     image_path, cairo_surface_status(img));
644             img = NULL;
645         }
646     }
647
648     /* Pixmap on which the image is rendered to (if any) */
649     xcb_pixmap_t bg_pixmap = draw_image(last_resolution);
650
651     /* open the fullscreen window, already with the correct pixmap in place */
652     win = open_fullscreen_window(conn, screen, color, bg_pixmap);
653     xcb_free_pixmap(conn, bg_pixmap);
654
655     cursor = create_cursor(conn, screen, win, curs_choice);
656
657     grab_pointer_and_keyboard(conn, screen, cursor);
658
659     if (dpms)
660         dpms_turn_off_screen(conn);
661
662     /* Initialize the libev event loop. */
663     main_loop = EV_DEFAULT;
664     if (main_loop == NULL)
665         errx(EXIT_FAILURE, "Could not initialize libev. Bad LIBEV_FLAGS?\n");
666
667     struct ev_io *xcb_watcher = calloc(sizeof(struct ev_io), 1);
668     struct ev_check *xcb_check = calloc(sizeof(struct ev_check), 1);
669     struct ev_prepare *xcb_prepare = calloc(sizeof(struct ev_prepare), 1);
670
671     ev_io_init(xcb_watcher, xcb_got_event, xcb_get_file_descriptor(conn), EV_READ);
672     ev_io_start(main_loop, xcb_watcher);
673
674     ev_check_init(xcb_check, xcb_check_cb);
675     ev_check_start(main_loop, xcb_check);
676
677     ev_prepare_init(xcb_prepare, xcb_prepare_cb);
678     ev_prepare_start(main_loop, xcb_prepare);
679
680     /* Invoke the event callback once to catch all the events which were
681      * received up until now. ev will only pick up new events (when the X11
682      * file descriptor becomes readable). */
683     ev_invoke(main_loop, xcb_check, 0);
684     ev_loop(main_loop, 0);
685 }