]> git.sur5r.net Git - i3/i3lock/blob - i3lock.c
Bugfix: Copy the color depth from parent (root) window instead of hardcoding to 24...
[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
257         /* Hide the unlock indicator after a bit if the password buffer is
258          * empty. */
259         start_clear_indicator_timeout();
260         unlock_state = STATE_BACKSPACE_ACTIVE;
261         redraw_screen();
262         unlock_state = STATE_KEY_PRESSED;
263         return;
264
265     case XK_BackSpace:
266         if (input_position == 0)
267             return;
268
269         /* decrement input_position to point to the previous glyph */
270         u8_dec(password, &input_position);
271         password[input_position] = '\0';
272
273         /* Hide the unlock indicator after a bit if the password buffer is
274          * empty. */
275         start_clear_indicator_timeout();
276         unlock_state = STATE_BACKSPACE_ACTIVE;
277         redraw_screen();
278         unlock_state = STATE_KEY_PRESSED;
279         return;
280     }
281
282     if ((input_position + 8) >= sizeof(password))
283         return;
284
285     if ((event->state & numlockmask) && xcb_is_keypad_key(sym1)) {
286         /* this key was a keypad key */
287         if ((event->state & XCB_MOD_MASK_SHIFT))
288             sym = sym0;
289         else sym = sym1;
290     } else {
291         if ((event->state & XCB_MOD_MASK_SHIFT))
292             sym = sym1;
293         else sym = sym0;
294     }
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 (xcb_is_modifier_key(sym) || xcb_is_cursor_key(sym))
308         return;
309
310     DEBUG("resolved to keysym = %c (%d)\n", sym, sym);
311
312     /* convert the keysym to UCS */
313     uint16_t ucs = keysym2ucs(sym);
314     if ((int16_t)ucs == -1) {
315         fprintf(stderr, "Keysym could not be converted to UCS, skipping\n");
316         return;
317     }
318
319     /* store the UCS in a string to convert it */
320     uint8_t inp[3] = {(ucs & 0xFF00) >> 8, (ucs & 0xFF), 0};
321     DEBUG("input part = %s\n", inp);
322
323     /* store it in the password array as UTF-8 */
324     input_position += convert_ucs_to_utf8((char*)inp, password + input_position);
325     password[input_position] = '\0';
326     DEBUG("current password = %s\n", password);
327
328     unlock_state = STATE_KEY_ACTIVE;
329     redraw_screen();
330     unlock_state = STATE_KEY_PRESSED;
331
332     struct ev_timer *timeout = calloc(sizeof(struct ev_timer), 1);
333     if (timeout) {
334         ev_timer_init(timeout, redraw_timeout, 0.25, 0.);
335         ev_timer_start(main_loop, timeout);
336     }
337
338     stop_clear_indicator_timeout();
339 }
340
341 /*
342  * A visibility notify event will be received when the visibility (= can the
343  * user view the complete window) changes, so for example when a popup overlays
344  * some area of the i3lock window.
345  *
346  * In this case, we raise our window on top so that the popup (or whatever is
347  * hiding us) gets hidden.
348  *
349  */
350 static void handle_visibility_notify(xcb_visibility_notify_event_t *event) {
351     if (event->state != XCB_VISIBILITY_UNOBSCURED) {
352         uint32_t values[] = { XCB_STACK_MODE_ABOVE };
353         xcb_configure_window(conn, event->window, XCB_CONFIG_WINDOW_STACK_MODE, values);
354         xcb_flush(conn);
355     }
356 }
357
358 /*
359  * Called when the keyboard mapping changes. We update our symbols.
360  *
361  */
362 static void handle_mapping_notify(xcb_mapping_notify_event_t *event) {
363     xcb_refresh_keyboard_mapping(symbols, event);
364
365     numlockmask = get_mod_mask(conn, symbols, XK_Num_Lock);
366 }
367
368 /*
369  * Called when the properties on the root window change, e.g. when the screen
370  * resolution changes. If so we update the window to cover the whole screen
371  * and also redraw the image, if any.
372  *
373  */
374 void handle_screen_resize() {
375     xcb_get_geometry_cookie_t geomc;
376     xcb_get_geometry_reply_t *geom;
377     geomc = xcb_get_geometry(conn, screen->root);
378     if ((geom = xcb_get_geometry_reply(conn, geomc, 0)) == NULL)
379         return;
380
381     if (last_resolution[0] == geom->width &&
382         last_resolution[1] == geom->height) {
383         free(geom);
384         return;
385     }
386
387     last_resolution[0] = geom->width;
388     last_resolution[1] = geom->height;
389
390     free(geom);
391
392 #ifndef NOLIBCAIRO
393     redraw_screen();
394 #endif
395
396     uint32_t mask = XCB_CONFIG_WINDOW_WIDTH | XCB_CONFIG_WINDOW_HEIGHT;
397     xcb_configure_window(conn, win, mask, last_resolution);
398     xcb_flush(conn);
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_message))) == 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             fprintf(stderr, "X11 Error received! sequence 0x%x, error_code = %d\n",
462                     error->sequence, error->error_code);
463             free(event);
464             continue;
465         }
466
467         /* Strip off the highest bit (set if the event is generated) */
468         int type = (event->response_type & 0x7F);
469         switch (type) {
470             case XCB_KEY_PRESS:
471                 handle_key_press((xcb_key_press_event_t*)event);
472                 break;
473
474             case XCB_KEY_RELEASE:
475                 handle_key_release((xcb_key_release_event_t*)event);
476
477                 /* If this was the backspace or escape key we are back at an
478                  * empty input, so turn off the screen if DPMS is enabled */
479                 if (dpms && input_position == 0)
480                     dpms_turn_off_screen(conn);
481
482                 break;
483
484             case XCB_VISIBILITY_NOTIFY:
485                 handle_visibility_notify((xcb_visibility_notify_event_t*)event);
486                 break;
487
488             case XCB_MAP_NOTIFY:
489                 if (!dont_fork) {
490                     /* After the first MapNotify, we never fork again. We don’t
491                      * expect to get another MapNotify, but better be sure… */
492                     dont_fork = true;
493
494                     /* In the parent process, we exit */
495                     if (fork() != 0)
496                         exit(0);
497                 }
498                 break;
499
500             case XCB_MAPPING_NOTIFY:
501                 handle_mapping_notify((xcb_mapping_notify_event_t*)event);
502                 break;
503
504             case XCB_CONFIGURE_NOTIFY:
505                 handle_screen_resize();
506                 break;
507         }
508
509         free(event);
510     }
511 }
512
513 int main(int argc, char *argv[]) {
514     char *username;
515 #ifndef NOLIBCAIRO
516     char *image_path = NULL;
517 #endif
518     int ret;
519     struct pam_conv conv = {conv_callback, NULL};
520     int nscreen;
521     int curs_choice = CURS_NONE;
522     char 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 #ifndef NOLIBCAIRO
535         {"image", required_argument, NULL, 'i'},
536         {"tiling", no_argument, NULL, 't'},
537 #endif
538         {NULL, no_argument, NULL, 0}
539     };
540
541     if ((username = getenv("USER")) == NULL)
542         errx(1, "USER environment variable not set, please set it.\n");
543
544     while ((o = getopt_long(argc, argv, "hvnbdc:p:u"
545 #ifndef NOLIBCAIRO
546         "i:t"
547 #endif
548         , 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, color must be given in 6-byte format: rrggbb\n");
570
571             break;
572         }
573         case 'u':
574             unlock_indicator = false;
575             break;
576 #ifndef NOLIBCAIRO
577         case 'i':
578             image_path = strdup(optarg);
579             break;
580         case 't':
581             tile = true;
582             break;
583 #endif
584         case 'p':
585             if (!strcmp(optarg, "win")) {
586                 curs_choice = CURS_WIN;
587             } else if (!strcmp(optarg, "default")) {
588                 curs_choice = CURS_DEFAULT;
589             } else {
590                 errx(1, "i3lock: Invalid pointer type given. Expected one of \"win\" or \"default\".\n");
591             }
592             break;
593         case 0:
594             if (strcmp(longopts[optind].name, "debug") == 0)
595                 debug_mode = true;
596             break;
597         default:
598             errx(1, "Syntax: i3lock [-v] [-n] [-b] [-d] [-c color] [-u] [-p win|default]"
599 #ifndef NOLIBCAIRO
600             " [-i image.png] [-t]"
601 #else
602             " (compiled with NOLIBCAIRO)"
603 #endif
604             );
605         }
606     }
607
608     /* We need (relatively) random numbers for highlighting a random part of
609      * the unlock indicator upon keypresses. */
610     srand(time(NULL));
611
612     /* Initialize PAM */
613     ret = pam_start("i3lock", username, &conv, &pam_handle);
614     if (ret != PAM_SUCCESS)
615         errx(EXIT_FAILURE, "PAM: %s", pam_strerror(pam_handle, ret));
616
617     /* Lock the area where we store the password in memory, we don’t want it to
618      * be swapped to disk. Since Linux 2.6.9, this does not require any
619      * privileges, just enough bytes in the RLIMIT_MEMLOCK limit. */
620     if (mlock(password, sizeof(password)) != 0)
621         err(EXIT_FAILURE, "Could not lock page in memory, check RLIMIT_MEMLOCK");
622
623     /* Initialize connection to X11 */
624     if ((conn = xcb_connect(NULL, &nscreen)) == NULL ||
625         xcb_connection_has_error(conn))
626         errx(EXIT_FAILURE, "Could not connect to X11, maybe you need to set DISPLAY?");
627
628     xinerama_init();
629     xinerama_query_screens();
630
631     /* if DPMS is enabled, check if the X server really supports it */
632     if (dpms) {
633         xcb_dpms_capable_cookie_t dpmsc = xcb_dpms_capable(conn);
634         xcb_dpms_capable_reply_t *dpmsr;
635         if ((dpmsr = xcb_dpms_capable_reply(conn, dpmsc, NULL))) {
636             if (!dpmsr->capable) {
637                 fprintf(stderr, "Disabling DPMS, X server not DPMS capable\n");
638                 dpms = false;
639             }
640             free(dpmsr);
641         }
642     }
643
644     screen = xcb_setup_roots_iterator(xcb_get_setup(conn)).data;
645
646     last_resolution[0] = screen->width_in_pixels;
647     last_resolution[1] = screen->height_in_pixels;
648
649
650 #ifndef NOLIBCAIRO
651     if (image_path) {
652         /* Create a pixmap to render on, fill it with the background color */
653         img = cairo_image_surface_create_from_png(image_path);
654     }
655 #endif
656
657     /* Pixmap on which the image is rendered to (if any) */
658     xcb_pixmap_t bg_pixmap = draw_image(last_resolution);
659
660     /* open the fullscreen window, already with the correct pixmap in place */
661     win = open_fullscreen_window(conn, screen, color, bg_pixmap);
662     xcb_free_pixmap(conn, bg_pixmap);
663
664     cursor = create_cursor(conn, screen, win, curs_choice);
665
666     grab_pointer_and_keyboard(conn, screen, cursor);
667
668     symbols = xcb_key_symbols_alloc(conn);
669     numlockmask = get_mod_mask(conn, symbols, XK_Num_Lock);
670
671     if (dpms)
672         dpms_turn_off_screen(conn);
673
674     /* Initialize the libev event loop. */
675     main_loop = EV_DEFAULT;
676     if (main_loop == NULL)
677         errx(EXIT_FAILURE, "Could not initialize libev. Bad LIBEV_FLAGS?\n");
678
679     struct ev_io *xcb_watcher = calloc(sizeof(struct ev_io), 1);
680     struct ev_check *xcb_check = calloc(sizeof(struct ev_check), 1);
681     struct ev_prepare *xcb_prepare = calloc(sizeof(struct ev_prepare), 1);
682
683     ev_io_init(xcb_watcher, xcb_got_event, xcb_get_file_descriptor(conn), EV_READ);
684     ev_io_start(main_loop, xcb_watcher);
685
686     ev_check_init(xcb_check, xcb_check_cb);
687     ev_check_start(main_loop, xcb_check);
688
689     ev_prepare_init(xcb_prepare, xcb_prepare_cb);
690     ev_prepare_start(main_loop, xcb_prepare);
691
692     /* Invoke the event callback once to catch all the events which were
693      * received up until now. ev will only pick up new events (when the X11
694      * file descriptor becomes readable). */
695     ev_invoke(main_loop, xcb_check, 0);
696     ev_loop(main_loop, 0);
697 }