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