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