]> git.sur5r.net Git - i3/i3lock/blob - i3lock.c
draw the unlock indicator in the middle of every screen
[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 <xcb/xcb_keysyms.h>
18 #include <err.h>
19 #include <assert.h>
20 #include <security/pam_appl.h>
21 /* FIXME: can we get rid of this header? */
22 #include <X11/keysym.h>
23 #include <getopt.h>
24 #include <string.h>
25 #include <ev.h>
26 #include <sys/mman.h>
27
28
29 #ifndef NOLIBCAIRO
30 #include <cairo.h>
31 #include <cairo/cairo-xcb.h>
32 #endif
33
34 #include "keysym2ucs.h"
35 #include "ucs2_to_utf8.h"
36 #include "xcb.h"
37 #include "cursors.h"
38 #include "unlock_indicator.h"
39 #include "xinerama.h"
40
41 char color[7] = "ffffff";
42 uint32_t last_resolution[2];
43 xcb_window_t win;
44 static xcb_cursor_t cursor;
45 static xcb_key_symbols_t *symbols;
46 static pam_handle_t *pam_handle;
47 int input_position = 0;
48 /* Holds the password you enter (in UTF-8). */
49 static char password[512];
50 static bool modeswitch_active = false;
51 static bool iso_level3_shift_active = false;
52 static bool iso_level5_shift_active = false;
53 static int numlockmask;
54 static bool beep = false;
55 static bool debug_mode = false;
56 static bool dpms = false;
57 bool unlock_indicator = true;
58 static bool dont_fork = false;
59 struct ev_loop *main_loop;
60 static struct ev_timer *clear_pam_wrong_timeout;
61 extern unlock_state_t unlock_state;
62 extern pam_state_t pam_state;
63
64 #define DEBUG(fmt, ...) do { \
65     if (debug_mode) \
66         printf("[i3lock-debug] " fmt, ##__VA_ARGS__); \
67 } while (0)
68
69 #ifndef NOLIBCAIRO
70 cairo_surface_t *img = NULL;
71 bool tile = false;
72 #endif
73
74 /*
75  * Clears the memory which stored the password to be a bit safer against
76  * cold-boot attacks.
77  *
78  */
79 static void clear_password_memory() {
80     /* A volatile pointer to the password buffer to prevent the compiler from
81      * optimizing this out. */
82     volatile char *vpassword = password;
83     for (int c = 0; c < sizeof(password); c++)
84         /* We store a non-random pattern which consists of the (irrelevant)
85          * index plus (!) the value of the beep variable. This prevents the
86          * compiler from optimizing the calls away, since the value of 'beep'
87          * is not known at compile-time. */
88         vpassword[c] = c + (int)beep;
89 }
90
91
92 /*
93  * Resets pam_state to STATE_PAM_IDLE 2 seconds after an unsuccesful
94  * authentication event.
95  *
96  */
97 static void clear_pam_wrong(EV_P_ ev_timer *w, int revents) {
98     DEBUG("clearing pam wrong\n");
99     pam_state = STATE_PAM_IDLE;
100     unlock_state = STATE_STARTED;
101     redraw_screen();
102
103     /* Now free this timeout. */
104     ev_timer_stop(main_loop, clear_pam_wrong_timeout);
105     free(clear_pam_wrong_timeout);
106     clear_pam_wrong_timeout = NULL;
107 }
108
109 static void input_done() {
110     if (input_position == 0)
111         return;
112
113     if (clear_pam_wrong_timeout) {
114         ev_timer_stop(main_loop, clear_pam_wrong_timeout);
115         free(clear_pam_wrong_timeout);
116         clear_pam_wrong_timeout = NULL;
117     }
118
119     pam_state = STATE_PAM_VERIFY;
120     redraw_screen();
121
122     if (pam_authenticate(pam_handle, 0) == PAM_SUCCESS) {
123         printf("successfully authenticated\n");
124         clear_password_memory();
125         exit(0);
126     }
127
128     fprintf(stderr, "Authentication failure\n");
129
130     pam_state = STATE_PAM_WRONG;
131     redraw_screen();
132
133     /* Clear this state after 2 seconds (unless the user enters another
134      * password during that time). */
135     ev_now_update(main_loop);
136     if ((clear_pam_wrong_timeout = calloc(sizeof(struct ev_timer), 1))) {
137         ev_timer_init(clear_pam_wrong_timeout, clear_pam_wrong, 2.0, 0.);
138         ev_timer_start(main_loop, clear_pam_wrong_timeout);
139     }
140
141     /* Cancel the clear_indicator_timeout, it would hide the unlock indicator
142      * too early. */
143     stop_clear_indicator_timeout();
144
145     /* beep on authentication failure, if enabled */
146     if (beep) {
147         xcb_bell(conn, 100);
148         xcb_flush(conn);
149     }
150 }
151
152 /*
153  * Called when the user releases a key. We need to leave the Mode_switch
154  * state when the user releases the Mode_switch key.
155  *
156  */
157 static void handle_key_release(xcb_key_release_event_t *event) {
158     DEBUG("releasing key %d, state raw = %d, modeswitch_active = %d, iso_level3_shift_active = %d, iso_level5_shift_active = %d\n",
159           event->detail, event->state, modeswitch_active, iso_level3_shift_active, iso_level5_shift_active);
160
161     /* We don’t care about the column here and just use the first symbol. Since
162      * we only check for Mode_switch and ISO_Level3_Shift, this *should* work.
163      * Also, if we would use the current column, we would look in the wrong
164      * place. */
165     xcb_keysym_t sym = xcb_key_press_lookup_keysym(symbols, event, 0);
166     if (sym == XK_Mode_switch) {
167         //printf("Mode switch disabled\n");
168         modeswitch_active = false;
169     } else if (sym == XK_ISO_Level3_Shift) {
170         iso_level3_shift_active = false;
171     } else if (sym == XK_ISO_Level5_Shift) {
172         iso_level5_shift_active = false;
173     }
174     DEBUG("release done. modeswitch_active = %d, iso_level3_shift_active = %d, iso_level5_shift_active = %d\n",
175           modeswitch_active, iso_level3_shift_active, iso_level5_shift_active);
176 }
177
178 static void redraw_timeout(EV_P_ ev_timer *w, int revents) {
179     redraw_screen();
180
181     ev_timer_stop(main_loop, w);
182     free(w);
183 }
184
185 /*
186  * Handle key presses. Fixes state, then looks up the key symbol for the
187  * given keycode, then looks up the key symbol (as UCS-2), converts it to
188  * UTF-8 and stores it in the password array.
189  *
190  */
191 static void handle_key_press(xcb_key_press_event_t *event) {
192     DEBUG("keypress %d, state raw = %d, modeswitch_active = %d, iso_level3_shift_active = %d\n",
193           event->detail, event->state, modeswitch_active, iso_level3_shift_active);
194
195     xcb_keysym_t sym0, sym1, sym;
196     /* For each keycode, there is a list of symbols. The list could look like this:
197      * $ xmodmap -pke | grep 'keycode  38'
198      * keycode  38 = a A adiaeresis Adiaeresis o O
199      * In non-X11 terminology, the symbols for the keycode 38 (the key labeled
200      * with "a" on my keyboard) are "a A ä Ä o O".
201      * Another form to display the same information is using xkbcomp:
202      * $ xkbcomp $DISPLAY /tmp/xkb.dump
203      * Then open /tmp/xkb.dump and search for '\<a\>' (in VIM regexp-language):
204      *
205      * symbols[Group1]= [               a,               A,               o,               O ],
206      * symbols[Group2]= [      adiaeresis,      Adiaeresis ]
207      *
208      * So there are two *groups*, one containing 'a A' and one containing 'ä
209      * Ä'. You can use Mode_switch to switch between these groups. You can use
210      * ISO_Level3_Shift to reach the 'o O' part of the first group (it’s the
211      * same group, just an even higher shift level).
212      *
213      * So, using the "logical" XKB information, the following lookup will be
214      * performed:
215      *
216      * Neither Mode_switch nor ISO_Level3_Shift active: group 1, column 0 and 1
217      * Mode_switch active: group 2, column 0 and 1
218      * ISO_Level3_Shift active: group 1, column 2 and 3
219      *
220      * Using the column index which xcb_key_press_lookup_keysym uses (and
221      * xmodmap prints out), the following lookup will be performed:
222      *
223      * Neither Mode_switch nor ISO_Level3_Shift active: column 0 and 1
224      * Mode_switch active: column 2 and 3
225      * ISO_Level3_Shift active: column 4 and 5
226      */
227     int base_column = 0;
228     if (modeswitch_active)
229         base_column = 2;
230     if (iso_level3_shift_active)
231         base_column = 4;
232     if (iso_level5_shift_active)
233         base_column = 6;
234     sym0 = xcb_key_press_lookup_keysym(symbols, event, base_column);
235     sym1 = xcb_key_press_lookup_keysym(symbols, event, base_column + 1);
236     switch (sym0) {
237     case XK_Mode_switch:
238         DEBUG("Mode switch enabled\n");
239         modeswitch_active = true;
240         return;
241     case XK_ISO_Level3_Shift:
242         DEBUG("ISO_Level3_Shift enabled\n");
243         iso_level3_shift_active = true;
244         return;
245     case XK_ISO_Level5_Shift:
246         DEBUG("ISO_Level5_Shift enabled\n");
247         iso_level5_shift_active = true;
248         return;
249     case XK_Return:
250     case XK_KP_Enter:
251         input_done();
252     case XK_Escape:
253         input_position = 0;
254         clear_password_memory();
255         password[input_position] = '\0';
256         return;
257
258     case XK_BackSpace:
259         if (input_position == 0)
260             return;
261
262         /* decrement input_position to point to the previous glyph */
263         u8_dec(password, &input_position);
264         password[input_position] = '\0';
265
266         /* Clear this state after 2 seconds (unless the user enters another
267          * password during that time). */
268         start_clear_indicator_timeout();
269         unlock_state = STATE_BACKSPACE_ACTIVE;
270         redraw_screen();
271         unlock_state = STATE_KEY_PRESSED;
272         //printf("new input position = %d, new password = %s\n", input_position, password);
273         return;
274     }
275
276     if ((input_position + 8) >= sizeof(password))
277         return;
278
279     if ((event->state & numlockmask) && xcb_is_keypad_key(sym1)) {
280         /* this key was a keypad key */
281         if ((event->state & XCB_MOD_MASK_SHIFT))
282             sym = sym0;
283         else sym = sym1;
284     } else {
285         if ((event->state & XCB_MOD_MASK_SHIFT))
286             sym = sym1;
287         else sym = sym0;
288     }
289
290 #if 0
291     /* FIXME: handle all of these? */
292     printf("is_keypad_key = %d\n", xcb_is_keypad_key(sym));
293     printf("is_private_keypad_key = %d\n", xcb_is_private_keypad_key(sym));
294     printf("xcb_is_cursor_key = %d\n", xcb_is_cursor_key(sym));
295     printf("xcb_is_pf_key = %d\n", xcb_is_pf_key(sym));
296     printf("xcb_is_function_key = %d\n", xcb_is_function_key(sym));
297     printf("xcb_is_misc_function_key = %d\n", xcb_is_misc_function_key(sym));
298     printf("xcb_is_modifier_key = %d\n", xcb_is_modifier_key(sym));
299 #endif
300
301     if (xcb_is_modifier_key(sym) || xcb_is_cursor_key(sym))
302         return;
303
304     DEBUG("resolved to keysym = %c (%d)\n", sym, sym);
305
306     /* convert the keysym to UCS */
307     uint16_t ucs = keysym2ucs(sym);
308     if ((int16_t)ucs == -1) {
309         fprintf(stderr, "Keysym could not be converted to UCS, skipping\n");
310         return;
311     }
312
313     /* store the UCS in a string to convert it */
314     uint8_t inp[3] = {(ucs & 0xFF00) >> 8, (ucs & 0xFF), 0};
315     DEBUG("input part = %s\n", inp);
316
317     /* store it in the password array as UTF-8 */
318     input_position += convert_ucs_to_utf8((char*)inp, password + input_position);
319     password[input_position] = '\0';
320     DEBUG("current password = %s\n", password);
321
322     unlock_state = STATE_KEY_ACTIVE;
323     redraw_screen();
324     unlock_state = STATE_KEY_PRESSED;
325
326     struct ev_timer *timeout = calloc(sizeof(struct ev_timer), 1);
327     if (timeout) {
328         ev_timer_init(timeout, redraw_timeout, 0.25, 0.);
329         ev_timer_start(main_loop, timeout);
330     }
331
332     stop_clear_indicator_timeout();
333 }
334
335 /*
336  * A visibility notify event will be received when the visibility (= can the
337  * user view the complete window) changes, so for example when a popup overlays
338  * some area of the i3lock window.
339  *
340  * In this case, we raise our window on top so that the popup (or whatever is
341  * hiding us) gets hidden.
342  *
343  */
344 static void handle_visibility_notify(xcb_visibility_notify_event_t *event) {
345     if (event->state != XCB_VISIBILITY_UNOBSCURED) {
346         uint32_t values[] = { XCB_STACK_MODE_ABOVE };
347         xcb_configure_window(conn, event->window, XCB_CONFIG_WINDOW_STACK_MODE, values);
348         xcb_flush(conn);
349     }
350 }
351
352 /*
353  * Called when the keyboard mapping changes. We update our symbols.
354  *
355  */
356 static void handle_mapping_notify(xcb_mapping_notify_event_t *event) {
357     xcb_refresh_keyboard_mapping(symbols, event);
358
359     numlockmask = get_mod_mask(conn, symbols, XK_Num_Lock);
360 }
361
362 /*
363  * Called when the properties on the root window change, e.g. when the screen
364  * resolution changes. If so we update the window to cover the whole screen
365  * and also redraw the image, if any.
366  *
367  */
368 void handle_screen_resize() {
369     xcb_get_geometry_cookie_t geomc;
370     xcb_get_geometry_reply_t *geom;
371     geomc = xcb_get_geometry(conn, screen->root);
372     if ((geom = xcb_get_geometry_reply(conn, geomc, 0)) == NULL)
373         return;
374
375     if (last_resolution[0] == geom->width &&
376         last_resolution[1] == geom->height) {
377         free(geom);
378         return;
379     }
380
381     last_resolution[0] = geom->width;
382     last_resolution[1] = geom->height;
383
384     free(geom);
385
386 #ifndef NOLIBCAIRO
387     redraw_screen();
388 #endif
389
390     uint32_t mask = XCB_CONFIG_WINDOW_WIDTH | XCB_CONFIG_WINDOW_HEIGHT;
391     xcb_configure_window(conn, win, mask, last_resolution);
392     xcb_flush(conn);
393 }
394
395 /*
396  * Callback function for PAM. We only react on password request callbacks.
397  *
398  */
399 static int conv_callback(int num_msg, const struct pam_message **msg,
400                          struct pam_response **resp, void *appdata_ptr)
401 {
402     if (num_msg == 0)
403         return 1;
404
405     /* PAM expects an array of responses, one for each message */
406     if ((*resp = calloc(num_msg, sizeof(struct pam_message))) == NULL) {
407         perror("calloc");
408         return 1;
409     }
410
411     for (int c = 0; c < num_msg; c++) {
412         if (msg[c]->msg_style != PAM_PROMPT_ECHO_OFF &&
413             msg[c]->msg_style != PAM_PROMPT_ECHO_ON)
414             continue;
415
416         /* return code is currently not used but should be set to zero */
417         resp[c]->resp_retcode = 0;
418         if ((resp[c]->resp = strdup(password)) == NULL) {
419             perror("strdup");
420             return 1;
421         }
422     }
423
424     return 0;
425 }
426
427 /*
428  * This callback is only a dummy, see xcb_prepare_cb and xcb_check_cb.
429  * See also man libev(3): "ev_prepare" and "ev_check" - customise your event loop
430  *
431  */
432 static void xcb_got_event(EV_P_ struct ev_io *w, int revents) {
433     /* empty, because xcb_prepare_cb and xcb_check_cb are used */
434 }
435
436 /*
437  * Flush before blocking (and waiting for new events)
438  *
439  */
440 static void xcb_prepare_cb(EV_P_ ev_prepare *w, int revents) {
441     xcb_flush(conn);
442 }
443
444 /*
445  * Instead of polling the X connection socket we leave this to
446  * xcb_poll_for_event() which knows better than we can ever know.
447  *
448  */
449 static void xcb_check_cb(EV_P_ ev_check *w, int revents) {
450     xcb_generic_event_t *event;
451
452     while ((event = xcb_poll_for_event(conn)) != NULL) {
453         if (event->response_type == 0) {
454             xcb_generic_error_t *error = (xcb_generic_error_t*)event;
455             fprintf(stderr, "X11 Error received! sequence 0x%x, error_code = %d\n",
456                     error->sequence, error->error_code);
457             free(event);
458             continue;
459         }
460
461         /* Strip off the highest bit (set if the event is generated) */
462         int type = (event->response_type & 0x7F);
463         switch (type) {
464             case XCB_KEY_PRESS:
465                 handle_key_press((xcb_key_press_event_t*)event);
466                 break;
467
468             case XCB_KEY_RELEASE:
469                 handle_key_release((xcb_key_release_event_t*)event);
470
471                 /* If this was the backspace or escape key we are back at an
472                  * empty input, so turn off the screen if DPMS is enabled */
473                 if (dpms && input_position == 0)
474                     dpms_turn_off_screen(conn);
475
476                 break;
477
478             case XCB_VISIBILITY_NOTIFY:
479                 handle_visibility_notify((xcb_visibility_notify_event_t*)event);
480                 break;
481
482             case XCB_MAP_NOTIFY:
483                 if (!dont_fork) {
484                     /* After the first MapNotify, we never fork again. We don’t
485                      * expect to get another MapNotify, but better be sure… */
486                     dont_fork = true;
487
488                     /* In the parent process, we exit */
489                     if (fork() != 0)
490                         exit(0);
491                 }
492                 break;
493
494             case XCB_MAPPING_NOTIFY:
495                 handle_mapping_notify((xcb_mapping_notify_event_t*)event);
496                 break;
497
498             case XCB_CONFIGURE_NOTIFY:
499                 handle_screen_resize();
500                 break;
501         }
502
503         free(event);
504     }
505 }
506
507 int main(int argc, char *argv[]) {
508     char *username;
509 #ifndef NOLIBCAIRO
510     char *image_path = NULL;
511 #endif
512     int ret;
513     struct pam_conv conv = {conv_callback, NULL};
514     int nscreen;
515     int curs_choice = CURS_NONE;
516     char o;
517     int optind = 0;
518     struct option longopts[] = {
519         {"version", no_argument, NULL, 'v'},
520         {"nofork", no_argument, NULL, 'n'},
521         {"beep", no_argument, NULL, 'b'},
522         {"dpms", no_argument, NULL, 'd'},
523         {"color", required_argument, NULL, 'c'},
524         {"pointer", required_argument, NULL , 'p'},
525         {"debug", no_argument, NULL, 0},
526         {"help", no_argument, NULL, 'h'},
527         {"no-unlock-indicator", no_argument, NULL, 'u'},
528 #ifndef NOLIBCAIRO
529         {"image", required_argument, NULL, 'i'},
530         {"tiling", no_argument, NULL, 't'},
531 #endif
532         {NULL, no_argument, NULL, 0}
533     };
534
535     if ((username = getenv("USER")) == NULL)
536         errx(1, "USER environment variable not set, please set it.\n");
537
538     while ((o = getopt_long(argc, argv, "hvnbdc:p:u"
539 #ifndef NOLIBCAIRO
540         "i:t"
541 #endif
542         , 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, color must be given in 6-byte format: rrggbb\n");
564
565             break;
566         }
567         case 'u':
568             unlock_indicator = false;
569             break;
570 #ifndef NOLIBCAIRO
571         case 'i':
572             image_path = strdup(optarg);
573             break;
574         case 't':
575             tile = true;
576             break;
577 #endif
578         case 'p':
579             if (!strcmp(optarg, "win")) {
580                 curs_choice = CURS_WIN;
581             } else if (!strcmp(optarg, "default")) {
582                 curs_choice = CURS_DEFAULT;
583             } else {
584                 errx(1, "i3lock: Invalid pointer type given. Expected one of \"win\" or \"default\".\n");
585             }
586             break;
587         case 0:
588             if (strcmp(longopts[optind].name, "debug") == 0)
589                 debug_mode = true;
590             break;
591         default:
592             errx(1, "Syntax: i3lock [-v] [-n] [-b] [-d] [-c color] [-u] [-p win|default]"
593 #ifndef NOLIBCAIRO
594             " [-i image.png] [-t]"
595 #else
596             " (compiled with NOLIBCAIRO)"
597 #endif
598             );
599         }
600     }
601
602     /* We need (relatively) random numbers for highlighting a random part of
603      * the unlock indicator upon keypresses. */
604     srand(time(NULL));
605
606     /* Initialize PAM */
607     ret = pam_start("i3lock", username, &conv, &pam_handle);
608     if (ret != PAM_SUCCESS)
609         errx(EXIT_FAILURE, "PAM: %s", pam_strerror(pam_handle, ret));
610
611     /* Lock the area where we store the password in memory, we don’t want it to
612      * be swapped to disk. Since Linux 2.6.9, this does not require any
613      * privileges, just enough bytes in the RLIMIT_MEMLOCK limit. */
614     if (mlock(password, sizeof(password)) != 0)
615         err(EXIT_FAILURE, "Could not lock page in memory, check RLIMIT_MEMLOCK");
616
617     /* Initialize connection to X11 */
618     if ((conn = xcb_connect(NULL, &nscreen)) == NULL ||
619         xcb_connection_has_error(conn))
620         errx(EXIT_FAILURE, "Could not connect to X11, maybe you need to set DISPLAY?");
621
622     xinerama_init();
623     xinerama_query_screens();
624
625     /* if DPMS is enabled, check if the X server really supports it */
626     if (dpms) {
627         xcb_dpms_capable_cookie_t dpmsc = xcb_dpms_capable(conn);
628         xcb_dpms_capable_reply_t *dpmsr;
629         if ((dpmsr = xcb_dpms_capable_reply(conn, dpmsc, NULL))) {
630             if (!dpmsr->capable) {
631                 fprintf(stderr, "Disabling DPMS, X server not DPMS capable\n");
632                 dpms = false;
633             }
634             free(dpmsr);
635         }
636     }
637
638     screen = xcb_setup_roots_iterator(xcb_get_setup(conn)).data;
639
640     last_resolution[0] = screen->width_in_pixels;
641     last_resolution[1] = screen->height_in_pixels;
642
643
644 #ifndef NOLIBCAIRO
645     if (image_path) {
646         /* Create a pixmap to render on, fill it with the background color */
647         img = cairo_image_surface_create_from_png(image_path);
648     }
649 #endif
650
651     /* Pixmap on which the image is rendered to (if any) */
652     xcb_pixmap_t bg_pixmap = draw_image(last_resolution);
653
654     /* open the fullscreen window, already with the correct pixmap in place */
655     win = open_fullscreen_window(conn, screen, color, bg_pixmap);
656     xcb_free_pixmap(conn, bg_pixmap);
657
658     cursor = create_cursor(conn, screen, win, curs_choice);
659
660     grab_pointer_and_keyboard(conn, screen, cursor);
661
662     symbols = xcb_key_symbols_alloc(conn);
663     numlockmask = get_mod_mask(conn, symbols, XK_Num_Lock);
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     xcb_flush(conn);
687     ev_loop(main_loop, 0);
688 }