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