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