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