]> git.sur5r.net Git - i3/i3lock/blob - i3lock.c
add XK_KP_Enter as synonym for XK_Return
[i3/i3lock] / i3lock.c
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * © 2010 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 <xcb/xcb_keysyms.h>
18 #include <err.h>
19 #include <assert.h>
20 #include <security/pam_appl.h>
21 /* FIXME: can we get rid of this header? */
22 #include <X11/keysym.h>
23 #include <getopt.h>
24 #include <string.h>
25
26 #ifndef NOLIBCAIRO
27 #include <cairo.h>
28 #include <cairo/cairo-xcb.h>
29 #endif
30
31 #include "keysym2ucs.h"
32 #include "ucs2_to_utf8.h"
33 #include "xcb.h"
34 #include "cursors.h"
35
36 static xcb_connection_t *conn;
37 static xcb_key_symbols_t *symbols;
38 static xcb_screen_t *scr;
39 static pam_handle_t *pam_handle;
40 static int input_position = 0;
41 /* holds the password you enter (in UTF-8) */
42 static char password[512];
43 static bool modeswitch_active = false;
44 static int modeswitchmask;
45 static int numlockmask;
46 static bool beep = false;
47
48 #ifndef NOLIBCAIRO
49 static cairo_surface_t *img = NULL;
50 static cairo_t *ctx = NULL;
51 static bool tile = false;
52 #endif
53
54 static void input_done() {
55     if (input_position == 0)
56         return;
57
58     /* TODO: change cursor during authentication? */
59     if (pam_authenticate(pam_handle, 0) == PAM_SUCCESS) {
60         printf("successfully authenticated\n");
61         exit(0);
62     }
63
64     /* beep on authentication failure, if enabled */
65     if (beep) {
66         xcb_bell(conn, 100);
67         xcb_flush(conn);
68     }
69 }
70
71 /*
72  * Called when we should draw the image (if any).
73  *
74  */
75 static void handle_expose_event() {
76 #ifndef NOLIBCAIRO
77     if (!ctx)
78         return;
79
80     if (tile) {
81         /* create a pattern and fill a rectangle as big as the screen */
82         cairo_pattern_t *pattern;
83         pattern = cairo_pattern_create_for_surface(img);
84         cairo_set_source(ctx, pattern);
85         cairo_pattern_set_extend(pattern, CAIRO_EXTEND_REPEAT);
86         cairo_rectangle(ctx, 0, 0, scr->width_in_pixels, scr->height_in_pixels);
87         cairo_fill(ctx);
88     } else {
89         /* otherwise, just paint the image */
90         cairo_paint(ctx);
91     }
92 #endif
93     xcb_flush(conn);
94 }
95
96 /*
97  * Called when the user releases a key. We need to leave the Mode_switch
98  * state when the user releases the Mode_switch key.
99  *
100  */
101 static void handle_key_release(xcb_key_release_event_t *event) {
102     //printf("releasing %d, state raw = %d\n", event->detail, event->state);
103
104     /* fix state */
105     event->state &= ~numlockmask;
106
107     xcb_keysym_t sym = xcb_key_press_lookup_keysym(symbols, event, event->state);
108     if (sym == XK_Mode_switch) {
109         //printf("Mode switch disabled\n");
110         modeswitch_active = false;
111     }
112 }
113
114 /*
115  * Handle key presses. Fixes state, then looks up the key symbol for the
116  * given keycode, then looks up the key symbol (as UCS-2), converts it to
117  * UTF-8 and stores it in the password array.
118  *
119  */
120 static void handle_key_press(xcb_key_press_event_t *event) {
121     //printf("keypress %d, state raw = %d\n", event->detail, event->state);
122
123     xcb_keysym_t sym0, sym1, sym;
124     if (modeswitch_active) {
125         sym0 = xcb_key_press_lookup_keysym(symbols, event, 4);
126         sym1 = xcb_key_press_lookup_keysym(symbols, event, 5);
127     } else {
128         sym0 = xcb_key_press_lookup_keysym(symbols, event, 0);
129         sym1 = xcb_key_press_lookup_keysym(symbols, event, 1);
130     }
131     switch (sym0) {
132     case XK_Mode_switch:
133         //printf("Mode switch enabled\n");
134         modeswitch_active = true;
135         return;
136
137     case XK_Return:
138     case XK_KP_Enter:
139         input_done();
140     case XK_Escape:
141         input_position = 0;
142         password[input_position] = '\0';
143         return;
144
145     case XK_BackSpace:
146         if (input_position == 0)
147             return;
148
149         /* decrement input_position to point to the previous glyph */
150         u8_dec(password, &input_position);
151         password[input_position] = '\0';
152         //printf("new input position = %d, new password = %s\n", input_position, password);
153         return;
154     }
155
156     if ((input_position + 8) >= sizeof(password))
157         return;
158
159     if ((event->state & numlockmask) && xcb_is_keypad_key(sym1)) {
160         /* this key was a keypad key */
161         if ((event->state & XCB_MOD_MASK_SHIFT))
162             sym = sym0;
163         else sym = sym1;
164     } else {
165         if ((event->state & XCB_MOD_MASK_SHIFT))
166             sym = sym1;
167         else sym = sym0;
168     }
169
170 #if 0
171     /* FIXME: handle all of these? */
172     printf("is_keypad_key = %d\n", xcb_is_keypad_key(sym));
173     printf("is_private_keypad_key = %d\n", xcb_is_private_keypad_key(sym));
174     printf("xcb_is_cursor_key = %d\n", xcb_is_cursor_key(sym));
175     printf("xcb_is_pf_key = %d\n", xcb_is_pf_key(sym));
176     printf("xcb_is_function_key = %d\n", xcb_is_function_key(sym));
177     printf("xcb_is_misc_function_key = %d\n", xcb_is_misc_function_key(sym));
178     printf("xcb_is_modifier_key = %d\n", xcb_is_modifier_key(sym));
179 #endif
180
181     if (xcb_is_modifier_key(sym) || xcb_is_cursor_key(sym))
182             return;
183
184     //printf("sym = %c (%d)\n", sym, sym);
185
186     /* convert the keysym to UCS */
187     uint16_t ucs = keysym2ucs(sym);
188     if ((int16_t)ucs == -1) {
189             fprintf(stderr, "Keysym could not be converted to UCS, skipping\n");
190             return;
191     }
192
193     /* store the UCS in a string to convert it */
194     uint8_t inp[3] = {(ucs & 0xFF00) >> 8, (ucs & 0xFF), 0};
195
196     /* store it in the password array as UTF-8 */
197     input_position += convert_ucs_to_utf8((char*)inp, password + input_position);
198     password[input_position] = '\0';
199     //printf("current password = %s\n", password);
200 }
201
202 /*
203  * A visibility notify event will be received when the visibility (= can the
204  * user view the complete window) changes, so for example when a popup overlays
205  * some area of the i3lock window.
206  *
207  * In this case, we raise our window on top so that the popup (or whatever is
208  * hiding us) gets hidden.
209  *
210  */
211 void handle_visibility_notify(xcb_visibility_notify_event_t *event) {
212     printf("visibility notify (window 0x%08x, state %d)\n", event->window, event->state);
213     if (event->state != XCB_VISIBILITY_UNOBSCURED) {
214         printf("window is obscured (not fully visible), raising\n");
215         uint32_t values[] = { XCB_STACK_MODE_ABOVE };
216         xcb_configure_window(conn, event->window, XCB_CONFIG_WINDOW_STACK_MODE, values);
217         xcb_flush(conn);
218     }
219 }
220
221 /*
222  * Callback function for PAM. We only react on password request callbacks.
223  *
224  */
225 static int conv_callback(int num_msg, const struct pam_message **msg,
226                          struct pam_response **resp, void *appdata_ptr)
227 {
228     if (num_msg == 0)
229         return 1;
230
231     /* PAM expects an array of responses, one for each message */
232     if ((*resp = calloc(num_msg, sizeof(struct pam_message))) == NULL) {
233         perror("calloc");
234         return 1;
235     }
236
237     for (int c = 0; c < num_msg; c++) {
238         if (msg[c]->msg_style != PAM_PROMPT_ECHO_OFF &&
239             msg[c]->msg_style != PAM_PROMPT_ECHO_ON)
240             continue;
241
242         /* return code is currently not used but should be set to zero */
243         resp[c]->resp_retcode = 0;
244         if ((resp[c]->resp = strdup(password)) == NULL) {
245             perror("strdup");
246             return 1;
247         }
248     }
249
250     return 0;
251 }
252
253 int main(int argc, char *argv[]) {
254     bool dont_fork = false;
255     bool dpms = false;
256     char color[7] = "ffffff";
257     char *username;
258 #ifndef NOLIBCAIRO
259     char *image_path = NULL;
260 #endif
261     int ret;
262     struct pam_conv conv = {conv_callback, NULL};
263     int screen;
264     xcb_visualtype_t *vistype;
265     xcb_generic_event_t *event;
266     xcb_window_t win;
267     xcb_cursor_t cursor;
268     int curs_choice = CURS_NONE;
269     char o;
270     int optind = 0;
271     struct option longopts[] = {
272         {"version", no_argument, NULL, 'v'},
273         {"nofork", no_argument, NULL, 'n'},
274         {"beep", no_argument, NULL, 'b'},
275         {"dpms", no_argument, NULL, 'd'},
276         {"color", required_argument, NULL, 'c'},
277         {"pointer", required_argument, NULL , 'p'},
278 #ifndef NOLIBCAIRO
279         {"image", required_argument, NULL, 'i'},
280         {"tiling", no_argument, NULL, 't'},
281 #endif
282         {NULL, no_argument, NULL, 0}
283     };
284
285     if ((username = getenv("USER")) == NULL)
286         errx(1, "USER environment variable not set, please set it.\n");
287
288     while ((o = getopt_long(argc, argv, "vnbdc:p:"
289 #ifndef NOLIBCAIRO
290         "i:t"
291 #endif
292         , longopts, &optind)) != -1) {
293         switch (o) {
294         case 'v':
295             errx(EXIT_SUCCESS, "version " VERSION " © 2010 Michael Stapelberg\n");
296         case 'n':
297             dont_fork = true;
298             break;
299         case 'b':
300             beep = true;
301             break;
302         case 'd':
303             dpms = true;
304             break;
305         case 'c': {
306             char *arg = optarg;
307
308             /* Skip # if present */
309             if (arg[0] == '#')
310                 arg++;
311
312             if (strlen(arg) != 6 || sscanf(arg, "%06[0-9a-fA-F]", color) != 1)
313                 errx(1, "color is invalid, color must be given in 6-byte format: rrggbb\n");
314
315             break;
316         }
317 #ifndef NOLIBCAIRO
318         case 'i':
319             image_path = strdup(optarg);
320             break;
321         case 't':
322             tile = true;
323             break;
324 #endif
325         case 'p':
326             if (!strcmp(optarg, "win")) {
327                 curs_choice = CURS_WIN;
328             }
329             if (!strcmp(optarg, "default")) {
330                 curs_choice = CURS_DEFAULT;
331             }
332             break;
333         default:
334             errx(1, "i3lock: Unknown option. Syntax: i3lock [-v] [-n] [-b] [-d] [-c color] [-p win|default]"
335 #ifndef NOLIBCAIRO
336             " [-i image.png] [-t]"
337 #else
338             " (compiled with NOLIBCAIRO)"
339 #endif
340             "\n");
341         }
342     }
343
344     /* Initialize PAM */
345     ret = pam_start("i3lock", username, &conv, &pam_handle);
346     if (ret != PAM_SUCCESS)
347         errx(EXIT_FAILURE, "PAM: %s\n", pam_strerror(pam_handle, ret));
348
349     /* Initialize connection to X11 */
350     if ((conn = xcb_connect(NULL, &screen)) == NULL)
351         err(EXIT_FAILURE, "xcb_connect()");
352
353     if (!dont_fork) {
354         /* In the parent process, we exit */
355         if (fork() != 0)
356             return 0;
357     }
358
359     /* if DPMS is enabled, check if the X server really supports it */
360     if (dpms) {
361         xcb_dpms_capable_cookie_t dpmsc = xcb_dpms_capable(conn);
362         xcb_dpms_capable_reply_t *dpmsr;
363         if ((dpmsr = xcb_dpms_capable_reply(conn, dpmsc, NULL)) && !dpmsr->capable) {
364             fprintf(stderr, "Disabling DPMS, X server not DPMS capable\n");
365             dpms = false;
366         }
367     }
368
369     scr = xcb_setup_roots_iterator(xcb_get_setup(conn)).data;
370     vistype = get_root_visual_type(scr);
371
372     /* open the fullscreen window and flush immediately afterwards so that X11
373      * can generate an expose event while we load the PNG file (so that we are
374      * ready to handle the expose event immediately afterwards) */
375     win = open_fullscreen_window(conn, scr, color);
376
377     cursor = create_cursor(conn, scr, win, curs_choice);
378
379     grab_pointer_and_keyboard(conn, scr, cursor);
380
381     symbols = xcb_key_symbols_alloc(conn);
382     modeswitchmask = get_mod_mask(conn, symbols, XK_Mode_switch);
383     numlockmask = get_mod_mask(conn, symbols, XK_Num_Lock);
384
385 #ifndef NOLIBCAIRO
386     if (image_path)
387         img = cairo_image_surface_create_from_png(image_path);
388
389     if (img) {
390         /* Initialize cairo */
391         cairo_surface_t *output;
392         output = cairo_xcb_surface_create(conn, win, vistype,
393                  scr->width_in_pixels, scr->height_in_pixels);
394         ctx = cairo_create(output);
395         if (!tile)
396             cairo_set_source_surface(ctx, img, 0, 0);
397
398         handle_expose_event();
399     }
400 #endif
401
402     if (dpms)
403         dpms_turn_off_screen(conn);
404
405     while ((event = xcb_wait_for_event(conn))) {
406         if (event->response_type == 0)
407             errx(1, "XCB: Invalid event received");
408
409         /* Strip off the highest bit (set if the event is generated) */
410         int type = (event->response_type & 0x7F);
411
412         if (type == XCB_EXPOSE) {
413             handle_expose_event();
414             continue;
415         }
416
417         if (type == XCB_KEY_PRESS) {
418             handle_key_press((xcb_key_press_event_t*)event);
419             continue;
420         }
421
422         if (type == XCB_KEY_RELEASE) {
423             handle_key_release((xcb_key_release_event_t*)event);
424
425             /* If this was the backspace or escape key we are back at an
426              * empty input, so turn off the screen if DPMS is enabled */
427             if (dpms && input_position == 0)
428                 dpms_turn_off_screen(conn);
429
430             continue;
431         }
432
433         if (type == XCB_VISIBILITY_NOTIFY) {
434             handle_visibility_notify((xcb_visibility_notify_event_t*)event);
435             continue;
436         }
437
438         printf("WARNING: unhandled event of type %d\n", type);
439     }
440
441     return 0;
442 }