-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtlock.c
More file actions
825 lines (680 loc) · 16.8 KB
/
tlock.c
File metadata and controls
825 lines (680 loc) · 16.8 KB
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
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
// See LICENSE file for license details.
#define _XOPEN_SOURCE 500
#define _GNU_SOURCE
#define CMD_LENGTH 500
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <errno.h>
#include <pwd.h>
#include <unistd.h>
#include <dirent.h>
#include <stdarg.h>
#include <sys/stat.h>
#include <X11/Xutil.h>
#include <X11/Xatom.h>
#if HAVE_SHADOW_H
#include <shadow.h>
#endif
#if HAVE_BSD_AUTH
#include <login_cap.h>
#include <bsd_auth.h>
#endif
// Import configuration.
#include "config.h"
char program_name[6] = "tlock";
char pw_file[256];
char *g_pw = NULL;
int lock_tries = 0;
typedef struct {
int screen;
Window root, win;
Pixmap pmap;
unsigned long colors[2];
} Lock;
static Lock **locks;
static int nscreens;
static int running = 1;
static void die(const char *errstr, ...) {
va_list ap;
va_start(ap, errstr);
vfprintf(stderr, errstr, ap);
va_end(ap);
exit(EXIT_FAILURE);
}
#ifdef __linux__
#include <fcntl.h>
static void dontkillme(void) {
errno = 0;
int fd = open("/proc/self/oom_score_adj", O_WRONLY);
if (fd < 0 && errno == ENOENT)
return;
if (fd < 0)
goto error;
if (write(fd, "-1000\n", 6) != 6) {
close(fd);
goto error;
}
if (close(fd) != 0)
goto error;
return;
error:
fprintf(stderr, "cannot disable the OOM killer for this process\n");
fprintf(stderr, "trying with sudo.\n");
pid_t pid = getpid();
char cmd[CMD_LENGTH];
int r = snprintf(
cmd,
CMD_LENGTH,
"echo -1000 | sudo -n tee /proc/%u/oom_score_adj > /dev/null 2>& 1",
(unsigned int)pid
);
if (r >= 0 && r < CMD_LENGTH)
system(cmd);
}
#endif
/* Disable ALT+SYSRQ and CTRL+ALT+Backspace
* Prevents ALT+SYSRQ+k'ing our process. */
static void disable_kill(void) {
#if POWEROFF
// /usr/bin/tee /proc/sys/kernel/SYSRQ,/usr/bin/tee /proc/SYSRQ-trigger
// system("echo 1 | sudo -n tee /proc/sys/kernel/SYSRQ > /dev/null");
// system("echo o | sudo -n tee /proc/SYSRQ-trigger > /dev/null");
system("echo 0 | sudo -n tee /proc/sys/kernel/SYSRQ > /dev/null 2>& 1 &");
#if DISABLE_ZAP
// Disable CTRL+ALT+Backspace
system("setxkbmap -option &");
#endif
#else
return;
#endif
}
/* Poweroff if in danger */
static void poweroff(void) {
#if POWEROFF
// Needs sudo privileges - alter your /etc/sudoers file:
// systemd: [username] [hostname] =NOPASSWD: /usr/bin/systemctl poweroff
// sysvinit: [username] [hostname] =NOPASSWD: /usr/bin/shutdown -h now
system("sudo -n systemctl poweroff 2> /dev/null");
system("sudo -n shutdown -h now 2> /dev/null");
#else
return;
#endif
}
/* Take a webcam shot of whoever is tampering with our
* machine. */
static int webcam_shot(int async) {
#if WEBCAM_SHOT
char cmd[CMD_LENGTH];
int r = snprintf(
cmd,
CMD_LENGTH,
"ffmpeg -y -loglevel quiet -f video4linux2 -i /dev/video0"
" -frames:v 1 -f image2 %s/%s.jpg%s",
getenv("HOME"),
program_name,
async ? " &" : ""
);
if (r < 0 || r >= CMD_LENGTH)
return 0;
system(cmd);
return 1;
#else
return 0;
#endif
}
#if AUDIO_FILE
static int play_beep(int async) {
#else
static int play_beep() {
#endif
#if PLAY_AUDIO
char cmd[CMD_LENGTH];
int r = snprintf(
cmd,
CMD_LENGTH,
#if AUDIO_FILE
"aplay %s/%s/%s.wav 2> /dev/null%s",
getenv("HOME"),
CONFIG_DIR,
AUDIO_FILE,
async ? " &" : ""
#else
"play -n synth 0.1 sine %d vol 0.1 2> /dev/null",
NOTE
#endif
);
if (r >= 0 && r < CMD_LENGTH)
system(cmd);
return 1;
#else
return 0;
#endif
}
/* Print text to screen. */
static void write_message(Display *display, Window win, int screen) {
int len, line_len, width, height, i, j, k, tab_replace, tab_size;
XGCValues gr_values;
XFontStruct *fontinfo;
XColor color, dummy;
GC gc;
fontinfo = XLoadQueryFont(display, FONT_NAME);
if (!fontinfo) return;
tab_size = 8 * XTextWidth(fontinfo, " ", 1);
XAllocNamedColor(display,
DefaultColormap(display, screen),
FONT_COLOR, &color, &dummy);
gr_values.font = fontinfo->fid;
gr_values.foreground = color.pixel;
gc=XCreateGC(display,win,GCFont+GCForeground, &gr_values);
len = strlen(PRINT_MSG);
// Max line length
line_len = 0;
k = 0;
for (i = j = 0; i < len; i++) {
if (PRINT_MSG[i] == '\n') {
if (i - j > line_len)
line_len = i - j;
k++;
i++;
j = i;
}
}
// If there is only one line
if (line_len == 0)
line_len = len;
height = DisplayHeight(display, screen)*3/7 - (k*20)/3;
width = (DisplayWidth(display, screen) - XTextWidth(fontinfo, PRINT_MSG, line_len))/2;
// Look for newlines and print text in between them.
for (i = j = k = 0; i <= len; i++) {
// i == len is a special case for last line
if (i == len || PRINT_MSG[i] == '\n') {
tab_replace = 0;
while (PRINT_MSG[j] == '\t' && j < i) {
tab_replace++;
j++;
}
XDrawString(display, win, gc, width + tab_size*tab_replace, height + 20*k, PRINT_MSG + j, i - j);
while (i < len && PRINT_MSG[i] == '\n') {
i++;
j = i;
k++;
}
}
}
}
/* Create lock screen window. */
void create_lock_screen(
Display *display, unsigned int color
) {
int screen;
for (screen = 0; screen < nscreens; screen++) {
XSetWindowBackground(
display,
locks[screen]->win,
locks[screen]->colors[color]
);
XClearWindow(display, locks[screen]->win);
write_message(display, locks[screen]->win, screen);
}
}
#ifndef HAVE_BSD_AUTH
static const char *gethash(void) {
const char *hash;
struct passwd *pw;
if (g_pw)
return g_pw;
// Fetch password entry for current user.
errno = 0;
if (!(pw = getpwuid(getuid()))) {
if (errno)
die("%s: getpwuid: %s\n",
program_name, strerror(errno));
else
die("%s: cannot retrieve password entry\n",
program_name);
}
endpwent();
hash = pw->pw_passwd;
#if HAVE_SHADOW_H
if (hash[0] == 'x' && hash[1] == '\0') {
struct spwd *sp;
sp = getspnam(getenv("USER"));
if (!sp)
die("%s: getspnam: cannot retrieve shadow entry. "
"make sure to suid or sgid %s.\n",
program_name, program_name);
endspent();
hash = sp->sp_pwdp;
}
#endif
// Drop privileges
if (geteuid() == 0) {
if (!(getegid() != pw->pw_gid &&
setgid(pw->pw_gid) < 0)) {
if (setuid(pw->pw_uid) < 0)
die("%s: cannot drop privileges\n", program_name);
}
}
return hash;
}
#endif
int read_pw_file(void) {
#ifndef PASSWD
return 0;
#else
char pw_dir[255];
int res = snprintf(
pw_dir,
sizeof(pw_dir),
#if USE_HOME_PATH
"%s/%s",
getenv("HOME"),
#else
"%s",
#endif
CONFIG_DIR
);
if (res < 0 || res >= sizeof(pw_dir))
return 0;
DIR* dir = opendir(pw_dir);
if (dir) { // Directory exists
closedir(dir);
} else { // Can't access config directory
fprintf(stderr, "%s: error: can't access %s directory\n"
"warning: defaulting to shadow file.\n",
program_name, program_name);
return 0;
}
res = snprintf(
pw_file,
sizeof(pw_file),
"%s/%s",
pw_dir,
PASSWD
);
if (res < 0 || res >= sizeof(pw_file))
return 0;
if (access(pw_file, F_OK) != 0) { // Can't access passwd file
fprintf(stderr, "%s: error: can't access passwd file\n"
"warning: defaulting to shadow file.\n",
program_name);
return 0;
}
return 1;
#endif
}
static void
#ifdef HAVE_BSD_AUTH
readpw(Display *display)
#else
readpw(Display *display, const char *pws)
#endif
{
char buf[32], passwd[256];
int num, screen;
unsigned int len = 0;
#if COLORS
unsigned int llen = 0;
#endif
KeySym ksym;
XEvent ev;
running = 1;
// The DPMS settings have been removed and you can set
// them with "xset" or something. This way you can
// easily set a customized DPMS timeout.
while (running && !XNextEvent(display, &ev)) {
if (ev.type != KeyPress) {
for (screen = 0; screen < nscreens; screen++)
XRaiseWindow(display, locks[screen]->win);
continue;
}
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;
if (read_pw_file()) {
FILE * fp;
size_t tlen = 0;
fp = fopen(pw_file, "r");
if (fp == NULL) {
fprintf(stderr, "%s: error: can't read passwd file\n"
"warning: defaulting to shadow file.\n",
program_name);
} else {
// While newline and not passwd.
while ((getline(&g_pw, &tlen, fp)) != -1) {
g_pw[strcspn(g_pw, "\r\n")] = 0;
if (!(running = (strcmp(passwd, g_pw) != 0)))
break;
}
}
fclose(fp);
}
if (!g_pw) {
#ifdef HAVE_BSD_AUTH
running = !auth_userokay(getlogin(), NULL, "auth-xlock", passwd);
#else
char *crypt(const char *key, const char *salt);
running = strcmp(crypt(passwd, pws), pws) != 0;
#endif
}
if (running) {
XBell(display, 100);
lock_tries++;
#if MAX_ATTEMPTS
// Actions to take after too many tries.
if (MAX_ATTEMPTS && lock_tries > MAX_ATTEMPTS) {
// Disable ALT+SYSRQ and CTRL+ALT+Backspace
disable_kill();
// Take a webcam shot and wait for execution.
webcam_shot(0);
// Immediately poweroff.
poweroff();
#if LOCK_FOREVER
// If we fail, loop forever.
for (;;)
sleep(1);
#endif
} else {
// Take an async webcam shot if enabled.
webcam_shot(1);
}
#endif
// Play a sound after at least 1 bad password.
if (lock_tries > 0) {
play_beep(0);
}
}
len = 0;
break;
}
case XK_Escape: {
len = 0;
break;
}
case XK_Delete:
case XK_BackSpace: {
if (len)
len -= 1;
break;
}
case XK_Alt_L:
case XK_Alt_R:
case XK_Control_L:
case XK_Control_R:
case XK_Meta_L:
case XK_Meta_R:
case XK_Super_L:
case XK_Super_R:
case XK_F1:
case XK_F2:
case XK_F3:
case XK_F4:
case XK_F5:
case XK_F6:
case XK_F7:
case XK_F8:
case XK_F9:
case XK_F10:
case XK_F11:
case XK_F12:
case XK_F13: {
// Disable ALT+SYSRQ and CTRL+ALT+Backspace.
disable_kill();
// Take a webcam shot of whoever
// is tampering with our machine.
webcam_shot(0);
// Immediately poweroff:
poweroff();
#if LOCK_FOREVER
// If we fail, loop forever.
for (;;)
sleep(1);
#endif
break;
}
default: {
if (num && !iscntrl((int)buf[0]) && (len + num < sizeof(passwd))) {
memcpy(passwd + len, buf, num);
len += num;
}
break;
}
}
#if COLORS
if (llen == 0 && len != 0) {
create_lock_screen(display, 1);
} else if (llen != 0 && len == 0) {
create_lock_screen(display, 0);
}
llen = len;
#endif
}
}
static void unlockscreen(Display *display, Lock *lock) {
if (display == NULL || lock == NULL)
return;
XUngrabPointer(display, CurrentTime);
XFreeColors(display, DefaultColormap(display, lock->screen), lock->colors, 2, 0);
#if HIDE_CURSOR
XFreePixmap(display, lock->pmap);
#endif
XDestroyWindow(display, lock->win);
free(lock);
}
static Lock *lockscreen(Display *display, int screen) {
unsigned int len;
Lock *lock;
XSetWindowAttributes wa;
if (display == NULL || screen < 0)
return NULL;
lock = malloc(sizeof(Lock));
if (lock == NULL)
return NULL;
lock->screen = screen;
lock->root = RootWindow(display, lock->screen);
#if TRANSPARENCY
XVisualInfo vi;
XMatchVisualInfo(display, DefaultScreen(display), 32, TrueColor, &vi);
wa.colormap = XCreateColormap(
display,
DefaultRootWindow(display),
vi.visual,
AllocNone
);
#endif
// init
wa.override_redirect = 1;
#if TRANSPARENCY
wa.border_pixel = 0;
wa.background_pixel = 0xaa000000;
#else
wa.background_pixel = BlackPixel(display, lock->screen);
#endif
#if TRANSPARENCY
int field = CWOverrideRedirect | CWBackPixel | CWColormap | CWBorderPixel;
lock->win = XCreateWindow(
display,
lock->root,
0,
0,
DisplayWidth(display, lock->screen),
DisplayHeight(display, lock->screen),
0,
vi.depth,
CopyFromParent,
vi.visual,
field,
&wa
);
#else
int field = CWOverrideRedirect | CWBackPixel;
lock->win = XCreateWindow(
display,
lock->root,
0,
0,
DisplayWidth(display, lock->screen),
DisplayHeight(display, lock->screen),
0,
DefaultDepth(display, lock->screen),
CopyFromParent,
DefaultVisual(display, lock->screen),
field,
&wa
);
#endif
Atom name_atom = XA_WM_NAME;
XTextProperty name_prop = { (unsigned char *)program_name, name_atom, 8, 5 };
XSetWMName(display, lock->win, &name_prop);
XClassHint *hint = XAllocClassHint();
if (hint) {
hint->res_name = program_name;
hint->res_class = program_name;
XSetClassHint(display, lock->win, hint);
XFree(hint);
}
XColor color, dummy;
char curs[] = {0, 0, 0, 0, 0, 0, 0, 0};
int cmap = DefaultColormap(display, lock->screen);
#if COLORS
XAllocNamedColor(display, cmap, ACTIVE_COLOR, &color, &dummy);
lock->colors[1] = color.pixel;
XAllocNamedColor(display, cmap, LOCKED_COLOR, &color, &dummy);
lock->colors[0] = color.pixel;
#endif
// Cursor
Cursor locked_cursor = None;
#if HIDE_CURSOR
XAllocNamedColor(display, cmap, CURSOR_COLOR, &color, &dummy);
lock->pmap = XCreateBitmapFromData(display, lock->win, curs, 8, 8);
locked_cursor = XCreatePixmapCursor(
display, lock->pmap, lock->pmap, &color, &color, 0, 0);
XDefineCursor(display, lock->win, locked_cursor);
#endif
XMapRaised(display, lock->win);
for (len = 1000; len > 0; len--) {
int field = ButtonPressMask | ButtonReleaseMask | PointerMotionMask;
int grab = XGrabPointer(
display,
lock->root,
False,
field,
GrabModeAsync,
GrabModeAsync,
None,
locked_cursor,
CurrentTime
);
if (grab == GrabSuccess)
break;
usleep(1000);
}
if (running && (len > 0)) {
for (len = 1000; len; len--) {
int grab = XGrabKeyboard(
display,
lock->root,
True,
GrabModeAsync,
GrabModeAsync,
CurrentTime
);
if (grab == GrabSuccess)
break;
usleep(1000);
}
}
running &= (len > 0);
if (!running) {
unlockscreen(display, lock);
lock = NULL;
} else {
XSelectInput(display, lock->root, SubstructureNotifyMask);
}
return lock;
}
/* Print usage and exit. */
static void usage(void) {
fprintf(stderr, "usage: %s [-v]\n", program_name);
exit(0);
}
/* Lock screen until the correct password is entered. */
int main(int argc, char **argv) {
#ifndef HAVE_BSD_AUTH
const char *pws;
#endif
Display *display;
int screen;
#ifdef QUIET_MODE
freopen("/dev/null", "a", stdout);
freopen("/dev/null", "a", stderr);
#endif
if ((argc >= 2) && strcmp(argv[1], "-v") == 0) {
die("%s-%s\n© 2023 cherry-noize\n",
program_name, VERSION);
} else if (argc != 1) {
usage();
}
#ifdef __linux__
dontkillme();
#endif
if (!g_pw && !getpwuid(getuid()))
die("%s: no passwd entry found\n", program_name);
#ifndef HAVE_BSD_AUTH
pws = gethash();
#endif
display = XOpenDisplay(0);
if (!display)
die("%s: cannot open display\n", program_name);
// Get the number of screens in display "display" and blank
// them all.
nscreens = ScreenCount(display);
errno = 0;
locks = malloc(sizeof(Lock *) * nscreens);
if (locks == NULL)
die("%s: malloc: %s\n",
program_name, strerror(errno));
int nlocks = 0;
for (screen = 0; screen < nscreens; screen++) {
locks[screen] = lockscreen(display, screen);
if (locks[screen] != NULL)
nlocks++;
}
create_lock_screen(display, 0);
XSync(display, False);
// Did we actually manage to lock something?
if (nlocks == 0) { // Nothing to protect
free(locks);
XCloseDisplay(display);
return 1;
}
// Screen locked. Wait for correct password.
#ifdef HAVE_BSD_AUTH
readpw(display);
#else
readpw(display, pws);
#endif
// Password ok, unlock everything and quit.
for (screen = 0; screen < nscreens; screen++)
unlockscreen(display, locks[screen]);
free(locks);
XCloseDisplay(display);
return 0;
}