]> git.sur5r.net Git - i3/i3lock/blob - i3lock.c
Ignore empty passwd after repeated Enter keypress
[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     ev_timer_stop(main_loop, clear_pam_wrong_timeout);
233     free(clear_pam_wrong_timeout);
234     clear_pam_wrong_timeout = NULL;
235 }
236
237 static void clear_indicator_cb(EV_P_ ev_timer *w, int revents) {
238     clear_indicator();
239     STOP_TIMER(clear_indicator_timeout);
240 }
241
242 static void clear_input(void) {
243     input_position = 0;
244     clear_password_memory();
245     password[input_position] = '\0';
246
247     /* Hide the unlock indicator after a bit if the password buffer is
248      * empty. */
249     START_TIMER(clear_indicator_timeout, 1.0, clear_indicator_cb);
250     unlock_state = STATE_BACKSPACE_ACTIVE;
251     redraw_screen();
252     unlock_state = STATE_KEY_PRESSED;
253 }
254
255 static void turn_off_monitors_cb(EV_P_ ev_timer *w, int revents) {
256     if (input_position == 0)
257         turn_monitors_off();
258
259     STOP_TIMER(dpms_timeout);
260 }
261
262 static void discard_passwd_cb(EV_P_ ev_timer *w, int revents) {
263     clear_input();
264     turn_monitors_off();
265     STOP_TIMER(discard_passwd_timeout);
266 }
267
268 static void input_done(void) {
269     if (clear_pam_wrong_timeout) {
270         ev_timer_stop(main_loop, clear_pam_wrong_timeout);
271         free(clear_pam_wrong_timeout);
272         clear_pam_wrong_timeout = NULL;
273     }
274
275     pam_state = STATE_PAM_VERIFY;
276     redraw_screen();
277
278     if (pam_authenticate(pam_handle, 0) == PAM_SUCCESS) {
279         DEBUG("successfully authenticated\n");
280         clear_password_memory();
281         /* Turn the screen on, as it may have been turned off
282          * on release of the 'enter' key. */
283         turn_monitors_on();
284         exit(0);
285     }
286
287     if (debug_mode)
288         fprintf(stderr, "Authentication failure\n");
289
290     pam_state = STATE_PAM_WRONG;
291     clear_input();
292     redraw_screen();
293
294     /* Clear this state after 2 seconds (unless the user enters another
295      * password during that time). */
296     ev_now_update(main_loop);
297     if ((clear_pam_wrong_timeout = calloc(sizeof(struct ev_timer), 1))) {
298         ev_timer_init(clear_pam_wrong_timeout, clear_pam_wrong, 2.0, 0.);
299         ev_timer_start(main_loop, clear_pam_wrong_timeout);
300     }
301
302     /* Cancel the clear_indicator_timeout, it would hide the unlock indicator
303      * too early. */
304     STOP_TIMER(clear_indicator_timeout);
305
306     /* beep on authentication failure, if enabled */
307     if (beep) {
308         xcb_bell(conn, 100);
309         xcb_flush(conn);
310     }
311 }
312
313 /*
314  * Called when the user releases a key. We need to leave the Mode_switch
315  * state when the user releases the Mode_switch key.
316  *
317  */
318 static void handle_key_release(xcb_key_release_event_t *event) {
319     xkb_state_update_key(xkb_state, event->detail, XKB_KEY_UP);
320 }
321
322 static void redraw_timeout(EV_P_ ev_timer *w, int revents) {
323     redraw_screen();
324
325     ev_timer_stop(main_loop, w);
326     free(w);
327 }
328
329 static bool skip_without_validation(void) {
330     if (input_position != 0)
331         return false;
332
333     if (skip_repeated_empty_password || ignore_empty_password)
334         return true;
335
336     return false;
337 }
338
339 /*
340  * Handle key presses. Fixes state, then looks up the key symbol for the
341  * given keycode, then looks up the key symbol (as UCS-2), converts it to
342  * UTF-8 and stores it in the password array.
343  *
344  */
345 static void handle_key_press(xcb_key_press_event_t *event) {
346     xkb_keysym_t ksym;
347     char buffer[128];
348     int n;
349     bool ctrl;
350
351     ksym = xkb_state_key_get_one_sym(xkb_state, event->detail);
352     ctrl = xkb_state_mod_name_is_active(xkb_state, "Control", XKB_STATE_MODS_DEPRESSED);
353     xkb_state_update_key(xkb_state, event->detail, XKB_KEY_DOWN);
354
355     /* The buffer will be null-terminated, so n >= 2 for 1 actual character. */
356     memset(buffer, '\0', sizeof(buffer));
357     n = xkb_keysym_to_utf8(ksym, buffer, sizeof(buffer));
358
359     switch (ksym) {
360     case XKB_KEY_Return:
361     case XKB_KEY_KP_Enter:
362     case XKB_KEY_XF86ScreenSaver:
363         if (skip_without_validation()) {
364             clear_input();
365             return;
366         }
367         password[input_position] = '\0';
368         unlock_state = STATE_KEY_PRESSED;
369         redraw_screen();
370         input_done();
371         skip_repeated_empty_password = true;
372         return;
373     default:
374         skip_repeated_empty_password = false;
375     }
376
377     switch (ksym) {
378     case XKB_KEY_u:
379         if (ctrl) {
380             DEBUG("C-u pressed\n");
381             clear_input();
382             return;
383         }
384         break;
385
386     case XKB_KEY_Escape:
387         clear_input();
388         return;
389
390     case XKB_KEY_BackSpace:
391         if (input_position == 0)
392             return;
393
394         /* decrement input_position to point to the previous glyph */
395         u8_dec(password, &input_position);
396         password[input_position] = '\0';
397
398         /* Hide the unlock indicator after a bit if the password buffer is
399          * empty. */
400         START_TIMER(clear_indicator_timeout, 1.0, clear_indicator_cb);
401         unlock_state = STATE_BACKSPACE_ACTIVE;
402         redraw_screen();
403         unlock_state = STATE_KEY_PRESSED;
404         return;
405     }
406
407     if ((input_position + 8) >= sizeof(password))
408         return;
409
410 #if 0
411     /* FIXME: handle all of these? */
412     printf("is_keypad_key = %d\n", xcb_is_keypad_key(sym));
413     printf("is_private_keypad_key = %d\n", xcb_is_private_keypad_key(sym));
414     printf("xcb_is_cursor_key = %d\n", xcb_is_cursor_key(sym));
415     printf("xcb_is_pf_key = %d\n", xcb_is_pf_key(sym));
416     printf("xcb_is_function_key = %d\n", xcb_is_function_key(sym));
417     printf("xcb_is_misc_function_key = %d\n", xcb_is_misc_function_key(sym));
418     printf("xcb_is_modifier_key = %d\n", xcb_is_modifier_key(sym));
419 #endif
420
421     if (n < 2)
422         return;
423
424     /* store it in the password array as UTF-8 */
425     memcpy(password+input_position, buffer, n-1);
426     input_position += n-1;
427     DEBUG("current password = %.*s\n", input_position, password);
428
429     unlock_state = STATE_KEY_ACTIVE;
430     redraw_screen();
431     unlock_state = STATE_KEY_PRESSED;
432
433     struct ev_timer *timeout = calloc(sizeof(struct ev_timer), 1);
434     if (timeout) {
435         ev_timer_init(timeout, redraw_timeout, 0.25, 0.);
436         ev_timer_start(main_loop, timeout);
437     }
438
439     STOP_TIMER(clear_indicator_timeout);
440     START_TIMER(discard_passwd_timeout, TSTAMP_N_MINS(3), discard_passwd_cb);
441 }
442
443 /*
444  * A visibility notify event will be received when the visibility (= can the
445  * user view the complete window) changes, so for example when a popup overlays
446  * some area of the i3lock window.
447  *
448  * In this case, we raise our window on top so that the popup (or whatever is
449  * hiding us) gets hidden.
450  *
451  */
452 static void handle_visibility_notify(xcb_connection_t *conn,
453     xcb_visibility_notify_event_t *event) {
454     if (event->state != XCB_VISIBILITY_UNOBSCURED) {
455         uint32_t values[] = { XCB_STACK_MODE_ABOVE };
456         xcb_configure_window(conn, event->window, XCB_CONFIG_WINDOW_STACK_MODE, values);
457         xcb_flush(conn);
458     }
459 }
460
461 /*
462  * Called when the keyboard mapping changes. We update our symbols.
463  *
464  */
465 static void handle_mapping_notify(xcb_mapping_notify_event_t *event) {
466     /* We ignore errors — if the new keymap cannot be loaded it’s better if the
467      * screen stays locked and the user intervenes by using killall i3lock. */
468     (void)load_keymap();
469 }
470
471 /*
472  * Called when the properties on the root window change, e.g. when the screen
473  * resolution changes. If so we update the window to cover the whole screen
474  * and also redraw the image, if any.
475  *
476  */
477 void handle_screen_resize(void) {
478     xcb_get_geometry_cookie_t geomc;
479     xcb_get_geometry_reply_t *geom;
480     geomc = xcb_get_geometry(conn, screen->root);
481     if ((geom = xcb_get_geometry_reply(conn, geomc, 0)) == NULL)
482         return;
483
484     if (last_resolution[0] == geom->width &&
485         last_resolution[1] == geom->height) {
486         free(geom);
487         return;
488     }
489
490     last_resolution[0] = geom->width;
491     last_resolution[1] = geom->height;
492
493     free(geom);
494
495     redraw_screen();
496
497     uint32_t mask = XCB_CONFIG_WINDOW_WIDTH | XCB_CONFIG_WINDOW_HEIGHT;
498     xcb_configure_window(conn, win, mask, last_resolution);
499     xcb_flush(conn);
500
501     xinerama_query_screens();
502     redraw_screen();
503 }
504
505 /*
506  * Callback function for PAM. We only react on password request callbacks.
507  *
508  */
509 static int conv_callback(int num_msg, const struct pam_message **msg,
510                          struct pam_response **resp, void *appdata_ptr)
511 {
512     if (num_msg == 0)
513         return 1;
514
515     /* PAM expects an array of responses, one for each message */
516     if ((*resp = calloc(num_msg, sizeof(struct pam_response))) == NULL) {
517         perror("calloc");
518         return 1;
519     }
520
521     for (int c = 0; c < num_msg; c++) {
522         if (msg[c]->msg_style != PAM_PROMPT_ECHO_OFF &&
523             msg[c]->msg_style != PAM_PROMPT_ECHO_ON)
524             continue;
525
526         /* return code is currently not used but should be set to zero */
527         resp[c]->resp_retcode = 0;
528         if ((resp[c]->resp = strdup(password)) == NULL) {
529             perror("strdup");
530             return 1;
531         }
532     }
533
534     return 0;
535 }
536
537 /*
538  * This callback is only a dummy, see xcb_prepare_cb and xcb_check_cb.
539  * See also man libev(3): "ev_prepare" and "ev_check" - customise your event loop
540  *
541  */
542 static void xcb_got_event(EV_P_ struct ev_io *w, int revents) {
543     /* empty, because xcb_prepare_cb and xcb_check_cb are used */
544 }
545
546 /*
547  * Flush before blocking (and waiting for new events)
548  *
549  */
550 static void xcb_prepare_cb(EV_P_ ev_prepare *w, int revents) {
551     xcb_flush(conn);
552 }
553
554 /*
555  * Instead of polling the X connection socket we leave this to
556  * xcb_poll_for_event() which knows better than we can ever know.
557  *
558  */
559 static void xcb_check_cb(EV_P_ ev_check *w, int revents) {
560     xcb_generic_event_t *event;
561
562     while ((event = xcb_poll_for_event(conn)) != NULL) {
563         if (event->response_type == 0) {
564             xcb_generic_error_t *error = (xcb_generic_error_t*)event;
565             if (debug_mode)
566                 fprintf(stderr, "X11 Error received! sequence 0x%x, error_code = %d\n",
567                         error->sequence, error->error_code);
568             free(event);
569             continue;
570         }
571
572         /* Strip off the highest bit (set if the event is generated) */
573         int type = (event->response_type & 0x7F);
574         switch (type) {
575             case XCB_KEY_PRESS:
576                 handle_key_press((xcb_key_press_event_t*)event);
577                 break;
578
579             case XCB_KEY_RELEASE:
580                 handle_key_release((xcb_key_release_event_t*)event);
581
582                 /* If this was the backspace or escape key we are back at an
583                  * empty input, so turn off the screen if DPMS is enabled, but
584                  * only do that after some timeout: maybe user mistyped and
585                  * will type again right away */
586                 START_TIMER(dpms_timeout, TSTAMP_N_SECS(inactivity_timeout),
587                             turn_off_monitors_cb);
588                 break;
589
590             case XCB_VISIBILITY_NOTIFY:
591                 handle_visibility_notify(conn, (xcb_visibility_notify_event_t*)event);
592                 break;
593
594             case XCB_MAP_NOTIFY:
595                 if (!dont_fork) {
596                     /* After the first MapNotify, we never fork again. We don’t
597                      * expect to get another MapNotify, but better be sure… */
598                     dont_fork = true;
599
600                     /* In the parent process, we exit */
601                     if (fork() != 0)
602                         exit(0);
603
604                     ev_loop_fork(EV_DEFAULT);
605                 }
606                 break;
607
608             case XCB_MAPPING_NOTIFY:
609                 handle_mapping_notify((xcb_mapping_notify_event_t*)event);
610                 break;
611
612             case XCB_CONFIGURE_NOTIFY:
613                 handle_screen_resize();
614                 break;
615         }
616
617         free(event);
618     }
619 }
620
621 /*
622  * This function is called from a fork()ed child and will raise the i3lock
623  * window when the window is obscured, even when the main i3lock process is
624  * blocked due to PAM.
625  *
626  */
627 static void raise_loop(xcb_window_t window) {
628     xcb_connection_t *conn;
629     xcb_generic_event_t *event;
630     int screens;
631
632     if ((conn = xcb_connect(NULL, &screens)) == NULL ||
633         xcb_connection_has_error(conn))
634         errx(EXIT_FAILURE, "Cannot open display\n");
635
636     /* We need to know about the window being obscured or getting destroyed. */
637     xcb_change_window_attributes(conn, window, XCB_CW_EVENT_MASK,
638         (uint32_t[]){
639             XCB_EVENT_MASK_VISIBILITY_CHANGE |
640             XCB_EVENT_MASK_STRUCTURE_NOTIFY
641         });
642     xcb_flush(conn);
643
644     DEBUG("Watching window 0x%08x\n", window);
645     while ((event = xcb_wait_for_event(conn)) != NULL) {
646         if (event->response_type == 0) {
647             xcb_generic_error_t *error = (xcb_generic_error_t*)event;
648             DEBUG("X11 Error received! sequence 0x%x, error_code = %d\n",
649                  error->sequence, error->error_code);
650             free(event);
651             continue;
652         }
653         /* Strip off the highest bit (set if the event is generated) */
654         int type = (event->response_type & 0x7F);
655         DEBUG("Read event of type %d\n", type);
656         switch (type) {
657             case XCB_VISIBILITY_NOTIFY:
658                 handle_visibility_notify(conn, (xcb_visibility_notify_event_t*)event);
659                 break;
660             case XCB_UNMAP_NOTIFY:
661                 DEBUG("UnmapNotify for 0x%08x\n", (((xcb_unmap_notify_event_t*)event)->window));
662                 if (((xcb_unmap_notify_event_t*)event)->window == window)
663                     exit(EXIT_SUCCESS);
664                 break;
665             case XCB_DESTROY_NOTIFY:
666                 DEBUG("DestroyNotify for 0x%08x\n", (((xcb_destroy_notify_event_t*)event)->window));
667                 if (((xcb_destroy_notify_event_t*)event)->window == window)
668                     exit(EXIT_SUCCESS);
669                 break;
670             default:
671                 DEBUG("Unhandled event type %d\n", type);
672                 break;
673         }
674         free(event);
675     }
676 }
677
678 int main(int argc, char *argv[]) {
679     char *username;
680     char *image_path = NULL;
681     int ret;
682     struct pam_conv conv = {conv_callback, NULL};
683     int curs_choice = CURS_NONE;
684     int o;
685     int optind = 0;
686     struct option longopts[] = {
687         {"version", no_argument, NULL, 'v'},
688         {"nofork", no_argument, NULL, 'n'},
689         {"beep", no_argument, NULL, 'b'},
690         {"dpms", no_argument, NULL, 'd'},
691         {"color", required_argument, NULL, 'c'},
692         {"pointer", required_argument, NULL , 'p'},
693         {"debug", no_argument, NULL, 0},
694         {"help", no_argument, NULL, 'h'},
695         {"no-unlock-indicator", no_argument, NULL, 'u'},
696         {"image", required_argument, NULL, 'i'},
697         {"tiling", no_argument, NULL, 't'},
698         {"ignore-empty-password", no_argument, NULL, 'e'},
699         {"inactivity-timeout", required_argument, NULL, 'I'},
700         {NULL, no_argument, NULL, 0}
701     };
702
703     if ((username = getenv("USER")) == NULL)
704         errx(EXIT_FAILURE, "USER environment variable not set, please set it.\n");
705
706     char *optstring = "hvnbdc:p:ui:teI:";
707     while ((o = getopt_long(argc, argv, optstring, longopts, &optind)) != -1) {
708         switch (o) {
709         case 'v':
710             errx(EXIT_SUCCESS, "version " VERSION " © 2010-2012 Michael Stapelberg");
711         case 'n':
712             dont_fork = true;
713             break;
714         case 'b':
715             beep = true;
716             break;
717         case 'd':
718             dpms = true;
719             break;
720         case 'I': {
721             int time = 0;
722             if (sscanf(optarg, "%d", &time) != 1 || time < 0)
723                 errx(EXIT_FAILURE, "invalid timeout, it must be a positive integer\n");
724             inactivity_timeout = time;
725             break;
726         }
727         case 'c': {
728             char *arg = optarg;
729
730             /* Skip # if present */
731             if (arg[0] == '#')
732                 arg++;
733
734             if (strlen(arg) != 6 || sscanf(arg, "%06[0-9a-fA-F]", color) != 1)
735                 errx(EXIT_FAILURE, "color is invalid, it must be given in 3-byte hexadecimal format: rrggbb\n");
736
737             break;
738         }
739         case 'u':
740             unlock_indicator = false;
741             break;
742         case 'i':
743             image_path = strdup(optarg);
744             break;
745         case 't':
746             tile = true;
747             break;
748         case 'p':
749             if (!strcmp(optarg, "win")) {
750                 curs_choice = CURS_WIN;
751             } else if (!strcmp(optarg, "default")) {
752                 curs_choice = CURS_DEFAULT;
753             } else {
754                 errx(EXIT_FAILURE, "i3lock: Invalid pointer type given. Expected one of \"win\" or \"default\".\n");
755             }
756             break;
757         case 'e':
758             ignore_empty_password = true;
759             break;
760         case 0:
761             if (strcmp(longopts[optind].name, "debug") == 0)
762                 debug_mode = true;
763             break;
764         default:
765             errx(EXIT_FAILURE, "Syntax: i3lock [-v] [-n] [-b] [-d] [-c color] [-u] [-p win|default]"
766             " [-i image.png] [-t] [-e] [-I]"
767             );
768         }
769     }
770
771     /* We need (relatively) random numbers for highlighting a random part of
772      * the unlock indicator upon keypresses. */
773     srand(time(NULL));
774
775     /* Initialize PAM */
776     ret = pam_start("i3lock", username, &conv, &pam_handle);
777     if (ret != PAM_SUCCESS)
778         errx(EXIT_FAILURE, "PAM: %s", pam_strerror(pam_handle, ret));
779
780 /* Using mlock() as non-super-user seems only possible in Linux. Users of other
781  * operating systems should use encrypted swap/no swap (or remove the ifdef and
782  * run i3lock as super-user). */
783 #if defined(__linux__)
784     /* Lock the area where we store the password in memory, we don’t want it to
785      * be swapped to disk. Since Linux 2.6.9, this does not require any
786      * privileges, just enough bytes in the RLIMIT_MEMLOCK limit. */
787     if (mlock(password, sizeof(password)) != 0)
788         err(EXIT_FAILURE, "Could not lock page in memory, check RLIMIT_MEMLOCK");
789 #endif
790
791     /* Initialize connection to X11 */
792     if ((display = XOpenDisplay(NULL)) == NULL)
793         errx(EXIT_FAILURE, "Could not connect to X11, maybe you need to set DISPLAY?");
794     XSetEventQueueOwner(display, XCBOwnsEventQueue);
795     conn = XGetXCBConnection(display);
796
797     /* Double checking that connection is good and operatable with xcb */
798     if (xcb_connection_has_error(conn))
799         errx(EXIT_FAILURE, "Could not connect to X11, maybe you need to set DISPLAY?");
800
801     /* When we cannot initially load the keymap, we better exit */
802     if (!load_keymap())
803         errx(EXIT_FAILURE, "Could not load keymap");
804
805     xinerama_init();
806     xinerama_query_screens();
807
808     /* if DPMS is enabled, check if the X server really supports it */
809     if (dpms) {
810         xcb_dpms_capable_cookie_t dpmsc = xcb_dpms_capable(conn);
811         xcb_dpms_capable_reply_t *dpmsr;
812         if ((dpmsr = xcb_dpms_capable_reply(conn, dpmsc, NULL))) {
813             if (!dpmsr->capable) {
814                 if (debug_mode)
815                     fprintf(stderr, "Disabling DPMS, X server not DPMS capable\n");
816                 dpms = false;
817             }
818             free(dpmsr);
819         }
820     }
821
822     screen = xcb_setup_roots_iterator(xcb_get_setup(conn)).data;
823
824     last_resolution[0] = screen->width_in_pixels;
825     last_resolution[1] = screen->height_in_pixels;
826
827     xcb_change_window_attributes(conn, screen->root, XCB_CW_EVENT_MASK,
828             (uint32_t[]){ XCB_EVENT_MASK_STRUCTURE_NOTIFY });
829
830     if (image_path) {
831         /* Create a pixmap to render on, fill it with the background color */
832         img = cairo_image_surface_create_from_png(image_path);
833         /* In case loading failed, we just pretend no -i was specified. */
834         if (cairo_surface_status(img) != CAIRO_STATUS_SUCCESS) {
835             fprintf(stderr, "Could not load image \"%s\": %s\n",
836                     image_path, cairo_status_to_string(cairo_surface_status(img)));
837             img = NULL;
838         }
839     }
840
841     /* Pixmap on which the image is rendered to (if any) */
842     xcb_pixmap_t bg_pixmap = draw_image(last_resolution);
843
844     /* open the fullscreen window, already with the correct pixmap in place */
845     win = open_fullscreen_window(conn, screen, color, bg_pixmap);
846     xcb_free_pixmap(conn, bg_pixmap);
847
848     pid_t pid = fork();
849     /* The pid == -1 case is intentionally ignored here:
850      * While the child process is useful for preventing other windows from
851      * popping up while i3lock blocks, it is not critical. */
852     if (pid == 0) {
853         /* Child */
854         close(xcb_get_file_descriptor(conn));
855         raise_loop(win);
856         exit(EXIT_SUCCESS);
857     }
858
859     cursor = create_cursor(conn, screen, win, curs_choice);
860
861     grab_pointer_and_keyboard(conn, screen, cursor);
862     /* Load the keymap again to sync the current modifier state. Since we first
863      * loaded the keymap, there might have been changes, but starting from now,
864      * we should get all key presses/releases due to having grabbed the
865      * keyboard. */
866     (void)load_keymap();
867
868     turn_monitors_off();
869
870     /* Initialize the libev event loop. */
871     main_loop = EV_DEFAULT;
872     if (main_loop == NULL)
873         errx(EXIT_FAILURE, "Could not initialize libev. Bad LIBEV_FLAGS?\n");
874
875     struct ev_io *xcb_watcher = calloc(sizeof(struct ev_io), 1);
876     struct ev_check *xcb_check = calloc(sizeof(struct ev_check), 1);
877     struct ev_prepare *xcb_prepare = calloc(sizeof(struct ev_prepare), 1);
878
879     ev_io_init(xcb_watcher, xcb_got_event, xcb_get_file_descriptor(conn), EV_READ);
880     ev_io_start(main_loop, xcb_watcher);
881
882     ev_check_init(xcb_check, xcb_check_cb);
883     ev_check_start(main_loop, xcb_check);
884
885     ev_prepare_init(xcb_prepare, xcb_prepare_cb);
886     ev_prepare_start(main_loop, xcb_prepare);
887
888     /* Invoke the event callback once to catch all the events which were
889      * received up until now. ev will only pick up new events (when the X11
890      * file descriptor becomes readable). */
891     ev_invoke(main_loop, xcb_check, 0);
892     ev_loop(main_loop, 0);
893 }