-
Notifications
You must be signed in to change notification settings - Fork 1
/
slock-pam.c
399 lines (327 loc) · 8.9 KB
/
slock-pam.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
/* See LICENSE file for license details. */
#define _XOPEN_SOURCE 500
#define PASSLEN 256
#include <ctype.h>
#include <errno.h>
#include <pwd.h>
#include <stdarg.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <time.h>
#include <unistd.h>
#include <security/pam_appl.h>
#include <sys/types.h>
#include <X11/extensions/Xrandr.h>
#include <X11/keysym.h>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include "util.h"
enum {
INIT,
INPUT,
EMPTY,
NUMCOLS
};
#include "config.h"
typedef struct {
int screen;
Window root, win;
Pixmap pmap;
unsigned long colors[NUMCOLS];
} Lock;
static Lock **locks;
static int nscreens;
static Bool rr;
static int rrevbase;
static int rrerrbase;
static void
die(const char *errstr, ...)
{
va_list ap;
va_start(ap, errstr);
vfprintf(stderr, errstr, ap);
va_end(ap);
exit(1);
}
static void
blank(Display *dpy, int color)
{
int screen;
for (screen = 0; screen < nscreens; ++screen) {
XSetWindowBackground(dpy,
locks[screen]->win,
locks[screen]->colors[color]);
XClearWindow(dpy, locks[screen]->win);
}
}
static void
readpw(Display *dpy, char *passwd)
{
char buf[32];
int num, screen;
unsigned int len, llen;
KeySym ksym;
XEvent ev;
len = llen = 0;
while (!XNextEvent(dpy, &ev)) {
if (ev.type == KeyPress) {
buf[0] = 0;
num = XLookupString(&ev.xkey, buf, sizeof buf, &ksym, 0);
if (IsKeypadKey(ksym)) {
if (ksym == XK_KP_Enter)
ksym = XK_Return;
else if (ksym >= XK_KP_0 && ksym <= XK_KP_9)
ksym = (ksym - XK_KP_0) + XK_0;
}
if (IsFunctionKey(ksym) ||
IsKeypadKey(ksym) ||
IsMiscFunctionKey(ksym) ||
IsPFKey(ksym) ||
IsPrivateKeypadKey(ksym))
continue;
switch (ksym) {
case XK_Return:
passwd[len] = 0;
return;
case XK_Escape:
explicit_bzero(passwd, len);
len = 0;
break;
case XK_BackSpace:
if (len)
passwd[len--] = 0;
break;
default:
if (num && !iscntrl((int) buf[0])
&& len + num < PASSLEN) {
memcpy(passwd + len, buf, num);
len += num;
passwd[len] = 0;
}
break;
}
if (llen == 0 && len != 0) {
blank(dpy, INPUT);
} else if (llen != 0 && len == 0) {
blank(dpy, EMPTY);
}
llen = len;
} else if (rr && ev.type == rrevbase + RRScreenChangeNotify) {
XRRScreenChangeNotifyEvent *rre =
(XRRScreenChangeNotifyEvent*) &ev;
for (screen = 0; screen < nscreens; ++screen) {
if (locks[screen]->win == rre->window) {
if (rre->rotation == RR_Rotate_90 ||
rre->rotation == RR_Rotate_270) {
XResizeWindow(dpy, locks[screen]->win,
rre->height, rre->width);
} else {
XResizeWindow(dpy, locks[screen]->win,
rre->width, rre->height);
}
XClearWindow(dpy, locks[screen]->win);
break;
}
}
} else {
for (screen = 0; screen < nscreens; ++screen)
XRaiseWindow(dpy, locks[screen]->win);
}
}
}
static int
pamconv(int num_msg, const struct pam_message **msg, struct pam_response **resp,
void *appdata_ptr)
{
int i;
*resp = (struct pam_response *) calloc(num_msg, sizeof(struct pam_response));
for (i = 0; i < num_msg; ++i) {
if (msg[i]->msg_style == PAM_PROMPT_ECHO_OFF) {
if ((resp[i]->resp = malloc(PASSLEN)) == NULL)
die("Not enough memory");
readpw((Display *) appdata_ptr, resp[i]->resp);
}
resp[i]->resp_retcode = 0;
}
return PAM_SUCCESS;
}
static void
unlockscreen(Display *dpy, Lock *lock)
{
if (dpy == NULL || lock == NULL)
return;
XFreeColors(dpy, DefaultColormap(dpy, lock->screen),
lock->colors, NUMCOLS, 0);
XFreePixmap(dpy, lock->pmap);
XDestroyWindow(dpy, lock->win);
free(lock);
}
static void
unlockscreens(Display *dpy, int nscreens)
{
int screen;
if (dpy == NULL || locks == NULL)
return;
XUngrabPointer(dpy, CurrentTime);
XUngrabKeyboard(dpy, CurrentTime);
for (screen = 0; screen < nscreens; ++screen)
unlockscreen(dpy, locks[screen]);
free(locks);
locks = NULL;
}
static Lock *
lockscreen(Display *dpy, int screen)
{
const struct timespec retry_interval = {0, 100000000};
char curs[] = {0, 0, 0, 0, 0, 0, 0, 0};
int i;
unsigned int tries;
int ptgrab, kbgrab;
Lock *lock;
XColor color, dummy;
XSetWindowAttributes wa;
Cursor invisible;
if (dpy == NULL || screen < 0)
return NULL;
lock = malloc(sizeof(Lock));
if (lock == NULL)
return NULL;
lock->screen = screen;
lock->root = RootWindow(dpy, lock->screen);
for (i = 0; i < NUMCOLS; ++i) {
XAllocNamedColor(dpy, DefaultColormap(dpy, lock->screen),
colorname[i], &color, &dummy);
lock->colors[i] = color.pixel;
}
wa.override_redirect = 1;
wa.background_pixel = lock->colors[INIT];
lock->win = XCreateWindow(dpy, lock->root, 0, 0,
DisplayWidth(dpy, lock->screen),
DisplayHeight(dpy, lock->screen),
0, DefaultDepth(dpy, lock->screen),
CopyFromParent,
DefaultVisual(dpy, lock->screen),
CWOverrideRedirect | CWBackPixel, &wa);
lock->pmap = XCreateBitmapFromData(dpy, lock->win, curs, 8, 8);
invisible = XCreatePixmapCursor(dpy, lock->pmap, lock->pmap, &color,
&color, 0, 0);
XDefineCursor(dpy, lock->win, invisible);
ptgrab = -1;
kbgrab = -1;
for (tries = 6; tries; --tries) {
const int flags = ButtonPressMask | ButtonReleaseMask | PointerMotionMask;
if (ptgrab != GrabSuccess)
ptgrab = XGrabPointer(dpy, lock->root, False, flags, GrabModeAsync,
GrabModeAsync, None, invisible, CurrentTime);
if (kbgrab != GrabSuccess)
kbgrab = XGrabKeyboard(dpy, lock->root, True, GrabModeAsync,
GrabModeAsync, CurrentTime);
if (ptgrab == GrabSuccess && kbgrab == GrabSuccess) {
XMapRaised(dpy, lock->win);
if (rr)
XRRSelectInput(dpy, lock->win, RRScreenChangeNotifyMask);
XSelectInput(dpy, lock->root, SubstructureNotifyMask);
return lock;
}
if ((ptgrab != AlreadyGrabbed && ptgrab != GrabSuccess)
|| (kbgrab != AlreadyGrabbed && kbgrab != GrabSuccess))
break;
nanosleep(&retry_interval, NULL);
}
if (kbgrab != GrabSuccess)
fprintf(stderr, "slock: unable to grab keyboard for screen %d\n", screen);
if (ptgrab != GrabSuccess)
fprintf(stderr, "slock: unable to grab mouse pointer for screen %d\n",
screen);
unlockscreen(dpy, lock);
return NULL;
}
static void
usage(void)
{
fprintf(stderr, "usage: slock-pam [-v] [cmd [arg ...]]\n");
}
int
main(int argc, char **argv)
{
pam_handle_t *pamh = NULL;
int pamret;
struct pam_conv conv = {0};
Display *dpy;
int screen;
if (argc == 2 && !strcmp("-v", argv[1]))
die("slock-pam, © 2006-2015 slock engineers\n");
if (argc == 2 && !strcmp("-h", argv[1])) {
usage();
exit(1);
}
/* Otherwise, if an argument is provided, assume it is a program to start
* after the screen is locked, which we execute below. */
if (!getpwuid(getuid()))
die("slock-pam: no passwd entry for you\n");
if (!(dpy = XOpenDisplay(NULL)))
die("slock-pam: cannot open display\n");
rr = XRRQueryExtension(dpy, &rrevbase, &rrerrbase);
/* Get the number of screens in display "dpy" and blank them all. */
nscreens = ScreenCount(dpy);
locks = calloc(nscreens, sizeof(Lock *));
if (locks == NULL) {
XCloseDisplay(dpy);
die("slock-pam: malloc: %s\n", strerror(errno));
}
int nlocks = 0;
for (screen = 0; screen < nscreens; ++screen) {
if ((locks[screen] = lockscreen(dpy, screen)) != NULL)
++nlocks;
else
break;
}
XSync(dpy, False);
/* Did we actually manage to lock everything? */
if (nlocks != nscreens) { /* nothing to protect */
unlockscreens(dpy, nlocks);
XCloseDisplay(dpy);
return 1;
}
/* The screen is locked. If an argument was provided, it should be a program
* to start at this point. */
if (argc >= 2) {
switch (fork()) {
case -1: /* Error */
die("fork %s failed: %s\n", argv[1], strerror(errno));
case 0: /* Child */
if (close(ConnectionNumber(dpy)) < 0)
die("slock: close: %s\n", strerror(errno));
execvp(argv[1], argv + 1);
die("execvp %s failed: %s\n", argv[1], strerror(errno));
default: /* Parent */
/* Nothing to do. */
;
}
}
conv.conv = pamconv;
conv.appdata_ptr = dpy;
/* Everything is now blank. Now wait for the correct password. */
pamret = pam_start(PAM_REALM, getenv("USER"), &conv, &pamh);
if (pamret != PAM_SUCCESS)
die("slock: pam_start failed: %s\n", pam_strerror(pamh, pamret));
for (;;) {
const struct timespec retry_interval = {0, 100000000};
pamret = pam_authenticate(pamh, 0);
if (pamret == PAM_SUCCESS)
break;
blank(dpy, EMPTY);
XBell(dpy, 100);
nanosleep(&retry_interval, NULL);
}
pamret = pam_end(pamh, pamret);
pamh = NULL;
if (pamret != PAM_SUCCESS)
fprintf(stderr, "slock: pam_end failed: %s\n",
pam_strerror(NULL, pamret));
/* Password ok, unlock everything and quit. */
unlockscreens(dpy, nscreens);
XCloseDisplay(dpy);
return 0;
}