Xinqi Bao's Git

grab on the slock window instead on the root window
[slock.git] / slock.c
1 /* (C)opyright MMVI-MMVII Anselm R. Garbe <garbeam at gmail dot com>
2 * See LICENSE file for license details.
3 */
4 #define _XOPEN_SOURCE 500
5 #if HAVE_SHADOW_H
6 #include <shadow.h>
7 #endif
8
9 #include <ctype.h>
10 #include <pwd.h>
11 #include <stdlib.h>
12 #include <stdio.h>
13 #include <string.h>
14 #include <unistd.h>
15 #include <sys/types.h>
16 #include <X11/keysym.h>
17 #include <X11/Xlib.h>
18 #include <X11/Xutil.h>
19
20 const char *
21 get_password() { /* only run as root */
22 const char *rval;
23 struct passwd *pw;
24
25 if(geteuid() != 0) {
26 fputs("slock: cannot retrieve password entry (make sure to suid slock)\n", stderr);
27 exit(EXIT_FAILURE);
28 }
29 pw = getpwuid(getuid());
30 endpwent();
31 rval = pw->pw_passwd;
32
33 #if HAVE_SHADOW_H
34 {
35 struct spwd *sp;
36 sp = getspnam(getenv("USER"));
37 endspent();
38 rval = sp->sp_pwdp;
39 }
40 #endif
41 /* drop privileges */
42 if(setgid(pw->pw_gid) < 0 || setuid(pw->pw_uid) < 0) {
43 fputs("slock: cannot drop privileges\n",stdout);
44 exit(EXIT_FAILURE);
45 }
46 return rval;
47 }
48
49 int
50 main(int argc, char **argv) {
51 char curs[] = {0, 0, 0, 0, 0, 0, 0, 0};
52 char buf[32], passwd[256];
53 int num, screen;
54 const char *pws;
55 unsigned int len;
56 Bool running = True;
57 Cursor invisible;
58 Display *dpy;
59 KeySym ksym;
60 Pixmap pmap;
61 Window root, w;
62 XColor black, dummy;
63 XEvent ev;
64 XSetWindowAttributes wa;
65
66 if((argc > 1) && !strncmp(argv[1], "-v", 3)) {
67 fputs("slock-"VERSION", (C)opyright MMVI Anselm R. Garbe\n", stdout);
68 exit(EXIT_SUCCESS);
69 }
70 pws = get_password();
71 if(!(dpy = XOpenDisplay(0))) {
72 fputs("slock: cannot open display\n", stderr);
73 exit(EXIT_FAILURE);
74 }
75 screen = DefaultScreen(dpy);
76 root = RootWindow(dpy, screen);
77
78 /* init */
79 wa.override_redirect = 1;
80 wa.background_pixel = BlackPixel(dpy, screen);
81 w = XCreateWindow(dpy, root, 0, 0, DisplayWidth(dpy, screen), DisplayHeight(dpy, screen),
82 0, DefaultDepth(dpy, screen), CopyFromParent,
83 DefaultVisual(dpy, screen), CWOverrideRedirect | CWBackPixel, &wa);
84
85 XAllocNamedColor(dpy, DefaultColormap(dpy, screen), "black", &black, &dummy);
86 pmap = XCreateBitmapFromData(dpy, w, curs, 8, 8);
87 invisible = XCreatePixmapCursor(dpy, pmap, pmap, &black, &black, 0, 0);
88 XDefineCursor(dpy, w, invisible);
89 XMapRaised(dpy, w);
90 for(len = 1000; len; len--) {
91 if(XGrabPointer(dpy, w, False, ButtonPressMask | ButtonReleaseMask | PointerMotionMask,
92 GrabModeAsync, GrabModeSync, None, invisible, CurrentTime) == GrabSuccess)
93 break;
94 usleep(1000);
95 }
96 if((running = running && (len > 0))) {
97 for(len = 1000; len; len--) {
98 if(XGrabKeyboard(dpy, w, True, GrabModeAsync, GrabModeAsync, CurrentTime)
99 == GrabSuccess)
100 break;
101 usleep(1000);
102 }
103 running = (len > 0);
104 }
105 len = 0;
106 XSync(dpy, False);
107
108 /* main event loop */
109 while(running && !XNextEvent(dpy, &ev))
110 if(ev.type == KeyPress) {
111 buf[0] = 0;
112 num = XLookupString(&ev.xkey, buf, sizeof buf, &ksym, 0);
113 if(IsFunctionKey(ksym) || IsKeypadKey(ksym)
114 || IsMiscFunctionKey(ksym) || IsPFKey(ksym)
115 || IsPrivateKeypadKey(ksym))
116 continue;
117 switch(ksym) {
118 case XK_Return:
119 passwd[len] = 0;
120 if((running = strcmp(crypt(passwd, pws), pws)) != 0)
121 XBell(dpy, 100);
122 len = 0;
123 break;
124 case XK_Escape:
125 len = 0;
126 break;
127 case XK_BackSpace:
128 if(len)
129 --len;
130 break;
131 default:
132 if(num && !iscntrl((int) buf[0]) && (len + num < sizeof passwd)) {
133 memcpy(passwd + len, buf, num);
134 len += num;
135 }
136 break;
137 }
138 }
139 XUngrabPointer(dpy, CurrentTime);
140 XFreePixmap(dpy, pmap);
141 XDestroyWindow(dpy, w);
142 XCloseDisplay(dpy);
143 return 0;
144 }