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