blob: 06a7169d9b5e444c7b790cfd6e1bb77b2cb60e4d [file] [log] [blame]
Eric Andersen27f64e12002-06-23 04:24:25 +00001/* vi: set sw=4 ts=4: */
"Robert P. J. Day"801ab142006-07-12 07:56:04 +00002
Eric Andersen27f64e12002-06-23 04:24:25 +00003/*
4 * vlock implementation for busybox
5 *
6 * Copyright (C) 2000 by spoon <spoon@ix.netcom.com>
7 * Written by spoon <spon@ix.netcom.com>
8 *
Bernhard Reutner-Fischerb1629b12006-05-19 19:29:19 +00009 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Eric Andersen27f64e12002-06-23 04:24:25 +000010 */
11
12/* Shoutz to Michael K. Johnson <johnsonm@redhat.com>, author of the
13 * original vlock. I snagged a bunch of his code to write this
14 * minimalistic vlock.
15 */
16/* Fixed by Erik Andersen to do passwords the tinylogin way...
17 * It now works with md5, sha1, etc passwords. */
18
Eric Andersen27f64e12002-06-23 04:24:25 +000019#include "busybox.h"
Rob Landleyd921b2e2006-08-03 15:41:12 +000020#include <sys/vt.h>
Eric Andersen27f64e12002-06-23 04:24:25 +000021
22static struct passwd *pw;
Eric Andersen27f64e12002-06-23 04:24:25 +000023static struct vt_mode ovtm;
24static struct termios oterm;
25static int vfd;
Rob Landley68eb9dd2005-12-19 02:50:10 +000026static unsigned long o_lock_all;
Eric Andersen27f64e12002-06-23 04:24:25 +000027
28static void release_vt(int signo)
29{
Bernhard Reutner-Fischer8a0a83d2006-11-27 13:58:18 +000030 ioctl(vfd, VT_RELDISP, !o_lock_all);
Eric Andersen27f64e12002-06-23 04:24:25 +000031}
32
33static void acquire_vt(int signo)
34{
35 ioctl(vfd, VT_RELDISP, VT_ACKACQ);
36}
37
38static void restore_terminal(void)
39{
40 ioctl(vfd, VT_SETMODE, &ovtm);
41 tcsetattr(STDIN_FILENO, TCSANOW, &oterm);
42}
43
Denis Vlasenko06af2162007-02-03 17:28:39 +000044int vlock_main(int argc, char **argv);
Rob Landleydfba7412006-03-06 20:47:33 +000045int vlock_main(int argc, char **argv)
Eric Andersen27f64e12002-06-23 04:24:25 +000046{
47 sigset_t sig;
48 struct sigaction sa;
49 struct vt_mode vtm;
Eric Andersen27f64e12002-06-23 04:24:25 +000050 struct termios term;
Bernhard Reutner-Fischer8a0a83d2006-11-27 13:58:18 +000051 uid_t uid = getuid();
52
53 pw = getpwuid(uid);
54 if (pw == NULL)
55 bb_error_msg_and_die("unknown uid %d", uid);
Eric Andersen27f64e12002-06-23 04:24:25 +000056
57 if (argc > 2) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000058 bb_show_usage();
Eric Andersen27f64e12002-06-23 04:24:25 +000059 }
60
Denis Vlasenko13858992006-10-08 12:49:22 +000061 o_lock_all = getopt32(argc, argv, "a");
Rob Landley68eb9dd2005-12-19 02:50:10 +000062
Rob Landleyd921b2e2006-08-03 15:41:12 +000063 vfd = xopen(CURRENT_TTY, O_RDWR);
Eric Andersen27f64e12002-06-23 04:24:25 +000064
65 if (ioctl(vfd, VT_GETMODE, &vtm) < 0) {
Rob Landley68eb9dd2005-12-19 02:50:10 +000066 bb_perror_msg_and_die("VT_GETMODE");
67 }
Eric Andersen27f64e12002-06-23 04:24:25 +000068
69 /* mask a bunch of signals */
70 sigprocmask(SIG_SETMASK, NULL, &sig);
71 sigdelset(&sig, SIGUSR1);
72 sigdelset(&sig, SIGUSR2);
73 sigaddset(&sig, SIGTSTP);
74 sigaddset(&sig, SIGTTIN);
75 sigaddset(&sig, SIGTTOU);
76 sigaddset(&sig, SIGHUP);
77 sigaddset(&sig, SIGCHLD);
78 sigaddset(&sig, SIGQUIT);
79 sigaddset(&sig, SIGINT);
80
81 sigemptyset(&(sa.sa_mask));
82 sa.sa_flags = SA_RESTART;
83 sa.sa_handler = release_vt;
84 sigaction(SIGUSR1, &sa, NULL);
85 sa.sa_handler = acquire_vt;
86 sigaction(SIGUSR2, &sa, NULL);
87
88 /* need to handle some signals so that we don't get killed by them */
89 sa.sa_handler = SIG_IGN;
90 sigaction(SIGHUP, &sa, NULL);
91 sigaction(SIGQUIT, &sa, NULL);
92 sigaction(SIGINT, &sa, NULL);
93 sigaction(SIGTSTP, &sa, NULL);
94
95 ovtm = vtm;
96 vtm.mode = VT_PROCESS;
97 vtm.relsig = SIGUSR1;
98 vtm.acqsig = SIGUSR2;
99 ioctl(vfd, VT_SETMODE, &vtm);
100
101 tcgetattr(STDIN_FILENO, &oterm);
102 term = oterm;
103 term.c_iflag &= ~BRKINT;
104 term.c_iflag |= IGNBRK;
105 term.c_lflag &= ~ISIG;
106 term.c_lflag &= ~(ECHO | ECHOCTL);
107 tcsetattr(STDIN_FILENO, TCSANOW, &term);
108
109 do {
Denis Vlasenkod9867322006-09-24 02:10:03 +0000110 printf("Virtual Console%s locked by %s.\n", (o_lock_all) ? "s" : "", pw->pw_name);
Denis Vlasenkoa36a6762006-09-23 13:11:49 +0000111 if (correct_password(pw)) {
Rob Landley68eb9dd2005-12-19 02:50:10 +0000112 break;
Eric Andersen27f64e12002-06-23 04:24:25 +0000113 }
Rob Landley84cb7672006-01-06 20:59:09 +0000114 bb_do_delay(FAIL_DELAY);
Denis Vlasenkoa36a6762006-09-23 13:11:49 +0000115 puts("Password incorrect");
Eric Andersen27f64e12002-06-23 04:24:25 +0000116 } while (1);
Rob Landley68eb9dd2005-12-19 02:50:10 +0000117 restore_terminal();
Bernhard Reutner-Fischerb8bb27c2006-11-30 14:53:51 +0000118 fflush_stdout_and_exit(0);
Eric Andersen27f64e12002-06-23 04:24:25 +0000119}