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