2008-04-08 11:55:46 +03:00
|
|
|
/* See LICENSE file for license details. */
|
2006-10-12 10:33:38 +03:00
|
|
|
#define _XOPEN_SOURCE 500
|
2006-10-31 09:43:25 +02:00
|
|
|
#if HAVE_SHADOW_H
|
|
|
|
#include <shadow.h>
|
|
|
|
#endif
|
2006-10-12 09:11:08 +03:00
|
|
|
|
2006-10-12 10:33:38 +03:00
|
|
|
#include <ctype.h>
|
2009-11-26 14:53:26 +02:00
|
|
|
#include <errno.h>
|
2006-10-31 09:35:54 +02:00
|
|
|
#include <pwd.h>
|
2007-11-24 22:17:32 +02:00
|
|
|
#include <stdarg.h>
|
2006-10-11 13:35:21 +03:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/types.h>
|
2015-02-26 00:06:45 +02:00
|
|
|
#include <X11/extensions/Xrandr.h>
|
2006-10-11 13:35:21 +03:00
|
|
|
#include <X11/keysym.h>
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <X11/Xutil.h>
|
2008-02-22 12:13:12 +02:00
|
|
|
|
|
|
|
#if HAVE_BSD_AUTH
|
|
|
|
#include <login_cap.h>
|
|
|
|
#include <bsd_auth.h>
|
|
|
|
#endif
|
2006-10-11 13:35:21 +03:00
|
|
|
|
2016-08-22 01:25:21 +03:00
|
|
|
#include "arg.h"
|
2016-07-31 14:43:00 +03:00
|
|
|
#include "util.h"
|
|
|
|
|
2016-08-22 01:25:21 +03:00
|
|
|
char *argv0;
|
|
|
|
|
2015-02-12 00:56:35 +02:00
|
|
|
enum {
|
|
|
|
INIT,
|
|
|
|
INPUT,
|
2015-05-06 19:18:50 +03:00
|
|
|
FAILED,
|
2015-02-12 00:56:35 +02:00
|
|
|
NUMCOLS
|
|
|
|
};
|
|
|
|
|
2014-12-22 12:16:26 +02:00
|
|
|
#include "config.h"
|
|
|
|
|
2012-02-05 17:38:58 +02:00
|
|
|
typedef struct {
|
2009-11-26 14:53:26 +02:00
|
|
|
int screen;
|
2012-02-05 17:38:58 +02:00
|
|
|
Window root, win;
|
2009-11-26 14:53:26 +02:00
|
|
|
Pixmap pmap;
|
2015-02-12 00:56:35 +02:00
|
|
|
unsigned long colors[NUMCOLS];
|
2012-02-05 17:38:58 +02:00
|
|
|
} Lock;
|
2009-11-26 14:53:26 +02:00
|
|
|
|
2012-02-05 17:38:58 +02:00
|
|
|
static Lock **locks;
|
|
|
|
static int nscreens;
|
|
|
|
static Bool running = True;
|
2015-05-06 19:18:50 +03:00
|
|
|
static Bool failure = False;
|
2015-02-26 00:06:45 +02:00
|
|
|
static Bool rr;
|
|
|
|
static int rrevbase;
|
|
|
|
static int rrerrbase;
|
2009-11-26 14:53:26 +02:00
|
|
|
|
2008-07-29 21:14:53 +03:00
|
|
|
static void
|
2015-01-27 23:16:52 +02:00
|
|
|
die(const char *errstr, ...)
|
|
|
|
{
|
2007-11-24 22:17:32 +02:00
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, errstr);
|
|
|
|
vfprintf(stderr, errstr, ap);
|
|
|
|
va_end(ap);
|
2015-01-27 23:16:52 +02:00
|
|
|
exit(1);
|
2007-11-24 22:17:32 +02:00
|
|
|
}
|
|
|
|
|
2013-08-02 23:11:18 +03:00
|
|
|
#ifdef __linux__
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
|
|
|
static void
|
2015-01-27 23:16:52 +02:00
|
|
|
dontkillme(void)
|
|
|
|
{
|
2013-08-02 23:11:18 +03:00
|
|
|
int fd;
|
|
|
|
|
|
|
|
fd = open("/proc/self/oom_score_adj", O_WRONLY);
|
2016-02-14 02:28:37 +02:00
|
|
|
if (fd < 0 && errno == ENOENT) {
|
2013-08-02 23:11:18 +03:00
|
|
|
return;
|
2016-02-14 02:28:37 +02:00
|
|
|
}
|
|
|
|
if (fd < 0 || write(fd, "-1000\n", (sizeof("-1000\n") - 1)) !=
|
|
|
|
(sizeof("-1000\n") - 1) || close(fd) != 0) {
|
|
|
|
die("can't tame the oom-killer. is suid or sgid set?\n");
|
|
|
|
}
|
2013-08-02 23:11:18 +03:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-02-22 12:13:12 +02:00
|
|
|
#ifndef HAVE_BSD_AUTH
|
2015-01-27 23:16:52 +02:00
|
|
|
/* only run as root */
|
2008-07-29 21:14:53 +03:00
|
|
|
static const char *
|
2015-01-27 23:16:52 +02:00
|
|
|
getpw(void)
|
|
|
|
{
|
2006-10-31 09:35:54 +02:00
|
|
|
const char *rval;
|
|
|
|
struct passwd *pw;
|
|
|
|
|
2013-11-14 13:24:08 +02:00
|
|
|
errno = 0;
|
2016-01-16 13:38:36 +02:00
|
|
|
if (!(pw = getpwuid(getuid()))) {
|
2014-07-09 16:40:49 +03:00
|
|
|
if (errno)
|
2016-02-14 03:13:54 +02:00
|
|
|
die("getpwuid: %s\n", strerror(errno));
|
2014-07-09 16:40:49 +03:00
|
|
|
else
|
2016-02-14 03:13:54 +02:00
|
|
|
die("cannot retrieve password entry\n");
|
2014-07-09 16:40:49 +03:00
|
|
|
}
|
2016-01-16 13:38:36 +02:00
|
|
|
rval = pw->pw_passwd;
|
2006-10-31 09:35:54 +02:00
|
|
|
|
|
|
|
#if HAVE_SHADOW_H
|
2014-06-03 20:19:10 +03:00
|
|
|
if (rval[0] == 'x' && rval[1] == '\0') {
|
2006-10-31 09:35:54 +02:00
|
|
|
struct spwd *sp;
|
2016-01-16 13:38:36 +02:00
|
|
|
if (!(sp = getspnam(getenv("USER"))))
|
2016-02-14 03:13:54 +02:00
|
|
|
die("cannot retrieve shadow entry (make sure to suid or sgid slock)\n");
|
2006-10-31 09:35:54 +02:00
|
|
|
rval = sp->sp_pwdp;
|
|
|
|
}
|
|
|
|
#endif
|
2008-02-22 12:13:12 +02:00
|
|
|
|
2006-10-31 09:35:54 +02:00
|
|
|
/* drop privileges */
|
2015-01-27 23:16:52 +02:00
|
|
|
if (geteuid() == 0 &&
|
|
|
|
((getegid() != pw->pw_gid && setgid(pw->pw_gid) < 0) || setuid(pw->pw_uid) < 0))
|
2016-02-14 03:13:54 +02:00
|
|
|
die("cannot drop privileges\n");
|
2006-10-31 09:35:54 +02:00
|
|
|
return rval;
|
|
|
|
}
|
2008-02-22 12:13:12 +02:00
|
|
|
#endif
|
2006-10-31 09:35:54 +02:00
|
|
|
|
2009-11-26 14:53:26 +02:00
|
|
|
static void
|
|
|
|
#ifdef HAVE_BSD_AUTH
|
2012-01-22 19:58:10 +02:00
|
|
|
readpw(Display *dpy)
|
2009-11-26 14:53:26 +02:00
|
|
|
#else
|
2012-01-22 19:58:10 +02:00
|
|
|
readpw(Display *dpy, const char *pws)
|
2009-11-26 14:53:26 +02:00
|
|
|
#endif
|
|
|
|
{
|
2006-10-11 13:35:21 +03:00
|
|
|
char buf[32], passwd[256];
|
2012-02-05 17:38:58 +02:00
|
|
|
int num, screen;
|
2015-05-08 18:10:15 +03:00
|
|
|
unsigned int len, color;
|
2006-10-11 18:04:04 +03:00
|
|
|
KeySym ksym;
|
2006-10-11 13:35:21 +03:00
|
|
|
XEvent ev;
|
2015-05-08 18:10:15 +03:00
|
|
|
static int oldc = INIT;
|
2006-10-11 13:35:21 +03:00
|
|
|
|
2015-05-08 18:10:15 +03:00
|
|
|
len = 0;
|
2009-11-26 14:53:26 +02:00
|
|
|
running = True;
|
2006-10-11 14:33:04 +03:00
|
|
|
|
2009-11-26 14:53:26 +02:00
|
|
|
/* As "slock" stands for "Simple X display locker", the DPMS settings
|
|
|
|
* had been removed and you can set it with "xset" or some other
|
|
|
|
* utility. This way the user can easily set a customized DPMS
|
|
|
|
* timeout. */
|
2015-01-27 23:16:52 +02:00
|
|
|
while (running && !XNextEvent(dpy, &ev)) {
|
|
|
|
if (ev.type == KeyPress) {
|
2016-07-31 14:43:00 +03:00
|
|
|
explicit_bzero(&buf, sizeof(buf));
|
2015-05-08 17:43:13 +03:00
|
|
|
num = XLookupString(&ev.xkey, buf, sizeof(buf), &ksym, 0);
|
2015-01-27 23:16:52 +02:00
|
|
|
if (IsKeypadKey(ksym)) {
|
|
|
|
if (ksym == XK_KP_Enter)
|
2008-04-08 11:55:46 +03:00
|
|
|
ksym = XK_Return;
|
2015-01-27 23:16:52 +02:00
|
|
|
else if (ksym >= XK_KP_0 && ksym <= XK_KP_9)
|
2008-04-08 11:55:46 +03:00
|
|
|
ksym = (ksym - XK_KP_0) + XK_0;
|
2008-07-29 21:14:53 +03:00
|
|
|
}
|
2015-01-27 23:16:52 +02:00
|
|
|
if (IsFunctionKey(ksym) ||
|
|
|
|
IsKeypadKey(ksym) ||
|
|
|
|
IsMiscFunctionKey(ksym) ||
|
|
|
|
IsPFKey(ksym) ||
|
|
|
|
IsPrivateKeypadKey(ksym))
|
2006-10-11 13:35:21 +03:00
|
|
|
continue;
|
2015-01-27 23:16:52 +02:00
|
|
|
switch (ksym) {
|
2006-10-11 13:35:21 +03:00
|
|
|
case XK_Return:
|
2006-10-31 09:35:54 +02:00
|
|
|
passwd[len] = 0;
|
2008-02-22 12:13:12 +02:00
|
|
|
#ifdef HAVE_BSD_AUTH
|
|
|
|
running = !auth_userokay(getlogin(), NULL, "auth-xlock", passwd);
|
|
|
|
#else
|
2013-08-02 23:11:18 +03:00
|
|
|
running = !!strcmp(crypt(passwd, pws), pws);
|
2008-02-22 12:13:12 +02:00
|
|
|
#endif
|
2015-05-06 19:18:50 +03:00
|
|
|
if (running) {
|
2006-10-11 14:33:04 +03:00
|
|
|
XBell(dpy, 100);
|
2015-05-06 19:18:50 +03:00
|
|
|
failure = True;
|
|
|
|
}
|
2016-07-31 14:43:00 +03:00
|
|
|
explicit_bzero(&passwd, sizeof(passwd));
|
2006-10-31 09:35:54 +02:00
|
|
|
len = 0;
|
2006-10-11 13:35:21 +03:00
|
|
|
break;
|
|
|
|
case XK_Escape:
|
2016-07-31 14:43:00 +03:00
|
|
|
explicit_bzero(&passwd, sizeof(passwd));
|
2006-10-31 09:35:54 +02:00
|
|
|
len = 0;
|
2006-10-11 13:35:21 +03:00
|
|
|
break;
|
|
|
|
case XK_BackSpace:
|
2015-01-27 23:16:52 +02:00
|
|
|
if (len)
|
2016-07-31 14:43:00 +03:00
|
|
|
passwd[len--] = 0;
|
2006-10-11 13:35:21 +03:00
|
|
|
break;
|
|
|
|
default:
|
2016-01-16 13:38:36 +02:00
|
|
|
if (num && !iscntrl((int)buf[0]) && (len + num < sizeof(passwd))) {
|
2006-10-31 09:43:25 +02:00
|
|
|
memcpy(passwd + len, buf, num);
|
2006-10-31 09:35:54 +02:00
|
|
|
len += num;
|
2006-10-11 13:35:21 +03:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2015-05-08 18:10:15 +03:00
|
|
|
color = len ? INPUT : (failure || failonclear ? FAILED : INIT);
|
2015-08-27 07:16:25 +03:00
|
|
|
if (running && oldc != color) {
|
2015-01-27 23:16:52 +02:00
|
|
|
for (screen = 0; screen < nscreens; screen++) {
|
2015-05-08 18:10:15 +03:00
|
|
|
XSetWindowBackground(dpy, locks[screen]->win, locks[screen]->colors[color]);
|
2012-03-17 19:03:25 +02:00
|
|
|
XClearWindow(dpy, locks[screen]->win);
|
|
|
|
}
|
2015-05-08 18:10:15 +03:00
|
|
|
oldc = color;
|
2012-03-17 19:03:25 +02:00
|
|
|
}
|
2015-02-26 00:06:45 +02:00
|
|
|
} else if (rr && ev.type == rrevbase + RRScreenChangeNotify) {
|
|
|
|
XRRScreenChangeNotifyEvent *rre = (XRRScreenChangeNotifyEvent*)&ev;
|
|
|
|
for (screen = 0; screen < nscreens; screen++) {
|
|
|
|
if (locks[screen]->win == rre->window) {
|
|
|
|
XResizeWindow(dpy, locks[screen]->win, rre->width, rre->height);
|
|
|
|
XClearWindow(dpy, locks[screen]->win);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else for (screen = 0; screen < nscreens; screen++)
|
2012-02-05 17:41:31 +02:00
|
|
|
XRaiseWindow(dpy, locks[screen]->win);
|
2008-02-22 12:13:12 +02:00
|
|
|
}
|
2009-11-26 14:53:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2015-01-27 23:16:52 +02:00
|
|
|
unlockscreen(Display *dpy, Lock *lock)
|
|
|
|
{
|
2012-02-05 17:38:58 +02:00
|
|
|
if(dpy == NULL || lock == NULL)
|
2009-11-26 14:53:26 +02:00
|
|
|
return;
|
|
|
|
|
2006-10-16 13:59:37 +03:00
|
|
|
XUngrabPointer(dpy, CurrentTime);
|
2015-02-12 00:56:35 +02:00
|
|
|
XFreeColors(dpy, DefaultColormap(dpy, lock->screen), lock->colors, NUMCOLS, 0);
|
2009-11-26 14:53:26 +02:00
|
|
|
XFreePixmap(dpy, lock->pmap);
|
2012-02-05 17:38:58 +02:00
|
|
|
XDestroyWindow(dpy, lock->win);
|
2009-11-26 14:53:26 +02:00
|
|
|
|
|
|
|
free(lock);
|
|
|
|
}
|
|
|
|
|
2012-02-05 17:38:58 +02:00
|
|
|
static Lock *
|
2015-01-27 23:16:52 +02:00
|
|
|
lockscreen(Display *dpy, int screen)
|
|
|
|
{
|
2009-11-26 14:53:26 +02:00
|
|
|
char curs[] = {0, 0, 0, 0, 0, 0, 0, 0};
|
|
|
|
unsigned int len;
|
2015-02-12 00:56:35 +02:00
|
|
|
int i;
|
2012-02-05 17:38:58 +02:00
|
|
|
Lock *lock;
|
2012-03-17 19:03:25 +02:00
|
|
|
XColor color, dummy;
|
2009-11-26 14:53:26 +02:00
|
|
|
XSetWindowAttributes wa;
|
|
|
|
Cursor invisible;
|
|
|
|
|
2016-01-18 17:49:15 +02:00
|
|
|
if (!running || dpy == NULL || screen < 0 || !(lock = malloc(sizeof(Lock))))
|
2009-11-26 14:53:26 +02:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
lock->screen = screen;
|
|
|
|
lock->root = RootWindow(dpy, lock->screen);
|
|
|
|
|
2015-02-12 00:56:35 +02:00
|
|
|
for (i = 0; i < NUMCOLS; i++) {
|
|
|
|
XAllocNamedColor(dpy, DefaultColormap(dpy, lock->screen), colorname[i], &color, &dummy);
|
|
|
|
lock->colors[i] = color.pixel;
|
|
|
|
}
|
|
|
|
|
2009-11-26 14:53:26 +02:00
|
|
|
/* init */
|
|
|
|
wa.override_redirect = 1;
|
2015-02-12 00:56:35 +02:00
|
|
|
wa.background_pixel = lock->colors[INIT];
|
2012-02-05 17:38:58 +02:00
|
|
|
lock->win = XCreateWindow(dpy, lock->root, 0, 0, DisplayWidth(dpy, lock->screen), DisplayHeight(dpy, lock->screen),
|
2015-01-27 23:16:52 +02:00
|
|
|
0, DefaultDepth(dpy, lock->screen), CopyFromParent,
|
|
|
|
DefaultVisual(dpy, lock->screen), CWOverrideRedirect | CWBackPixel, &wa);
|
2012-02-05 17:38:58 +02:00
|
|
|
lock->pmap = XCreateBitmapFromData(dpy, lock->win, curs, 8, 8);
|
2012-03-17 19:03:25 +02:00
|
|
|
invisible = XCreatePixmapCursor(dpy, lock->pmap, lock->pmap, &color, &color, 0, 0);
|
2012-02-05 17:38:58 +02:00
|
|
|
XDefineCursor(dpy, lock->win, invisible);
|
|
|
|
XMapRaised(dpy, lock->win);
|
2015-02-26 00:06:45 +02:00
|
|
|
if (rr)
|
|
|
|
XRRSelectInput(dpy, lock->win, RRScreenChangeNotifyMask);
|
2016-01-18 17:49:15 +02:00
|
|
|
|
|
|
|
/* Try to grab mouse pointer *and* keyboard, else fail the lock */
|
2015-01-27 23:16:52 +02:00
|
|
|
for (len = 1000; len; len--) {
|
|
|
|
if (XGrabPointer(dpy, lock->root, False, ButtonPressMask | ButtonReleaseMask | PointerMotionMask,
|
|
|
|
GrabModeAsync, GrabModeAsync, None, invisible, CurrentTime) == GrabSuccess)
|
2009-11-26 14:53:26 +02:00
|
|
|
break;
|
|
|
|
usleep(1000);
|
|
|
|
}
|
2016-01-18 17:49:15 +02:00
|
|
|
if (!len) {
|
2016-02-15 15:00:56 +02:00
|
|
|
fprintf(stderr, "slock: unable to grab mouse pointer for screen %d\n", screen);
|
2016-01-18 17:49:15 +02:00
|
|
|
} else {
|
2015-01-27 23:16:52 +02:00
|
|
|
for (len = 1000; len; len--) {
|
2016-01-18 17:49:15 +02:00
|
|
|
if (XGrabKeyboard(dpy, lock->root, True, GrabModeAsync, GrabModeAsync, CurrentTime) == GrabSuccess) {
|
|
|
|
/* everything fine, we grabbed both inputs */
|
|
|
|
XSelectInput(dpy, lock->root, SubstructureNotifyMask);
|
|
|
|
return lock;
|
|
|
|
}
|
2009-11-26 14:53:26 +02:00
|
|
|
usleep(1000);
|
|
|
|
}
|
2016-02-15 15:00:56 +02:00
|
|
|
fprintf(stderr, "slock: unable to grab keyboard for screen %d\n", screen);
|
2009-11-26 14:53:26 +02:00
|
|
|
}
|
2016-01-18 17:49:15 +02:00
|
|
|
/* grabbing one of the inputs failed */
|
|
|
|
running = 0;
|
|
|
|
unlockscreen(dpy, lock);
|
|
|
|
return NULL;
|
2009-11-26 14:53:26 +02:00
|
|
|
}
|
|
|
|
|
2016-02-15 15:15:45 +02:00
|
|
|
static void
|
|
|
|
usage(void)
|
2016-02-14 02:48:48 +02:00
|
|
|
{
|
2016-08-22 01:25:21 +03:00
|
|
|
die("usage: slock [-v | cmd [arg ...]]\n");
|
2016-02-15 15:15:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char **argv) {
|
2009-11-26 14:53:26 +02:00
|
|
|
#ifndef HAVE_BSD_AUTH
|
|
|
|
const char *pws;
|
|
|
|
#endif
|
|
|
|
Display *dpy;
|
2016-08-22 01:25:21 +03:00
|
|
|
int s, nlocks;
|
2009-11-26 14:53:26 +02:00
|
|
|
|
2016-08-22 01:25:21 +03:00
|
|
|
ARGBEGIN {
|
|
|
|
case 'v':
|
|
|
|
fprintf(stderr, "slock-"VERSION"\n");
|
|
|
|
return 0;
|
|
|
|
default:
|
2016-02-15 15:15:45 +02:00
|
|
|
usage();
|
2016-08-22 01:25:21 +03:00
|
|
|
} ARGEND
|
2016-02-15 15:15:45 +02:00
|
|
|
|
2013-08-02 23:11:18 +03:00
|
|
|
#ifdef __linux__
|
|
|
|
dontkillme();
|
|
|
|
#endif
|
|
|
|
|
2016-08-22 01:25:21 +03:00
|
|
|
/* Check if the current user has a password entry */
|
|
|
|
errno = 0;
|
|
|
|
if (!getpwuid(getuid())) {
|
|
|
|
if (errno == 0)
|
|
|
|
die("slock: no password entry for current user\n");
|
|
|
|
else
|
|
|
|
die("slock: getpwuid: %s\n", strerror(errno));
|
|
|
|
}
|
2011-04-21 11:22:47 +03:00
|
|
|
|
2009-11-26 14:53:26 +02:00
|
|
|
#ifndef HAVE_BSD_AUTH
|
2012-01-22 19:58:10 +02:00
|
|
|
pws = getpw();
|
2009-11-26 14:53:26 +02:00
|
|
|
#endif
|
|
|
|
|
2016-08-22 01:25:21 +03:00
|
|
|
if (!(dpy = XOpenDisplay(NULL)))
|
|
|
|
die("slock: cannot open display\n");
|
|
|
|
|
|
|
|
/* check for Xrandr support */
|
2015-02-26 00:06:45 +02:00
|
|
|
rr = XRRQueryExtension(dpy, &rrevbase, &rrerrbase);
|
2016-08-22 01:25:21 +03:00
|
|
|
|
|
|
|
/* get number of screens in display "dpy" and blank them */
|
2009-11-26 14:53:26 +02:00
|
|
|
nscreens = ScreenCount(dpy);
|
2016-08-22 01:25:21 +03:00
|
|
|
if (!(locks = malloc(sizeof(Lock *) * nscreens))) {
|
|
|
|
XCloseDisplay(dpy);
|
|
|
|
die("slock: out of memory\n");
|
|
|
|
}
|
|
|
|
for (nlocks = 0, s = 0; s < nscreens; s++) {
|
|
|
|
if ((locks[s] = lockscreen(dpy, s)) != NULL)
|
2012-08-02 22:54:18 +03:00
|
|
|
nlocks++;
|
|
|
|
}
|
2016-08-22 01:25:21 +03:00
|
|
|
XSync(dpy, 0);
|
2009-11-26 14:53:26 +02:00
|
|
|
|
2016-08-22 01:25:21 +03:00
|
|
|
/* did we actually manage to lock anything? */
|
|
|
|
if (nlocks == 0) {
|
|
|
|
/* nothing to protect */
|
2012-08-02 22:54:18 +03:00
|
|
|
free(locks);
|
|
|
|
XCloseDisplay(dpy);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2016-08-22 01:25:21 +03:00
|
|
|
/* run post-lock command */
|
|
|
|
if (argc > 0) {
|
|
|
|
switch (fork()) {
|
|
|
|
case -1:
|
|
|
|
free(locks);
|
|
|
|
XCloseDisplay(dpy);
|
|
|
|
die("slock: fork failed: %s\n", strerror(errno));
|
|
|
|
case 0:
|
|
|
|
if (close(ConnectionNumber(dpy)) < 0)
|
|
|
|
die("slock: close: %s\n", strerror(errno));
|
|
|
|
execvp(argv[0], argv);
|
|
|
|
fprintf(stderr, "slock: execvp %s: %s\n", argv[0],
|
|
|
|
strerror(errno));
|
|
|
|
_exit(1);
|
|
|
|
}
|
2015-12-26 14:13:25 +02:00
|
|
|
}
|
|
|
|
|
2016-08-22 01:25:21 +03:00
|
|
|
/* everything is now blank. Wait for the correct password */
|
2009-11-26 14:53:26 +02:00
|
|
|
#ifdef HAVE_BSD_AUTH
|
2012-01-22 19:58:10 +02:00
|
|
|
readpw(dpy);
|
2009-11-26 14:53:26 +02:00
|
|
|
#else
|
2012-01-22 19:58:10 +02:00
|
|
|
readpw(dpy, pws);
|
2009-11-26 14:53:26 +02:00
|
|
|
#endif
|
|
|
|
|
2016-08-22 01:25:21 +03:00
|
|
|
/* password ok, unlock everything and quit */
|
|
|
|
for (s = 0; s < nscreens; s++)
|
|
|
|
unlockscreen(dpy, locks[s]);
|
2009-11-26 14:53:26 +02:00
|
|
|
|
|
|
|
free(locks);
|
2006-10-11 13:35:21 +03:00
|
|
|
XCloseDisplay(dpy);
|
2009-11-26 14:53:26 +02:00
|
|
|
|
2006-10-11 13:35:21 +03:00
|
|
|
return 0;
|
|
|
|
}
|