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