]> CyberLeo.Net >> Repos - FreeBSD/stable/8.git/blob - usr.bin/lock/lock.c
Correct the format specifier for shm_size. shm_size is a size_t unlike
[FreeBSD/stable/8.git] / usr.bin / lock / lock.c
1 /*
2  * Copyright (c) 1980, 1987, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * Bob Toxen.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. All advertising materials mentioning features or use of this software
17  *    must display the following acknowledgement:
18  *      This product includes software developed by the University of
19  *      California, Berkeley and its contributors.
20  * 4. Neither the name of the University nor the names of its contributors
21  *    may be used to endorse or promote products derived from this software
22  *    without specific prior written permission.
23  *
24  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34  * SUCH DAMAGE.
35  */
36
37 #ifndef lint
38 static const char copyright[] =
39 "@(#) Copyright (c) 1980, 1987, 1993\n\
40         The Regents of the University of California.  All rights reserved.\n";
41 #endif /* not lint */
42
43 #ifndef lint
44 #if 0
45 static char sccsid[] = "@(#)lock.c      8.1 (Berkeley) 6/6/93";
46 #endif
47 #endif /* not lint */
48 #include <sys/cdefs.h>
49 __FBSDID("$FreeBSD$");
50
51 /*
52  * Lock a terminal up until the given key is entered or the given
53  * interval times out.
54  *
55  * Timeout interval is by default TIMEOUT, it can be changed with
56  * an argument of the form -time where time is in minutes
57  */
58
59 #include <sys/param.h>
60 #include <sys/stat.h>
61 #include <sys/time.h>
62 #include <sys/signal.h>
63 #include <sys/consio.h>
64 #include <err.h>
65 #include <ctype.h>
66 #include <errno.h>
67 #include <paths.h>
68 #include <pwd.h>
69 #include <stdio.h>
70 #include <stdlib.h>
71 #include <string.h>
72 #include <syslog.h>
73 #include <termios.h>
74 #include <unistd.h>
75
76 #define TIMEOUT 15
77
78 void quit(int);
79 void bye(int);
80 void hi(int);
81 static void usage(void);
82
83 struct timeval  timeout;
84 struct timeval  zerotime;
85 struct termios  tty, ntty;
86 long    nexttime;                       /* keep the timeout time */
87 int            no_timeout;                     /* lock terminal forever */
88 int     vtyunlock;                      /* Unlock flag and code. */
89
90 /*ARGSUSED*/
91 int
92 main(int argc, char **argv)
93 {
94         struct passwd *pw;
95         struct timeval timval;
96         time_t timval_sec;
97         struct itimerval ntimer, otimer;
98         struct tm *timp;
99         int ch, failures, sectimeout, usemine, vtylock;
100         char *ap, *mypw, *ttynam, *tzn;
101         char hostname[MAXHOSTNAMELEN], s[BUFSIZ], s1[BUFSIZ];
102
103         openlog("lock", LOG_ODELAY, LOG_AUTH);
104
105         sectimeout = TIMEOUT;
106         pw = NULL;
107         mypw = NULL;
108         usemine = 0;
109         no_timeout = 0;
110         vtylock = 0;
111         while ((ch = getopt(argc, argv, "npt:v")) != -1)
112                 switch((char)ch) {
113                 case 't':
114                         if ((sectimeout = atoi(optarg)) <= 0)
115                                 errx(1, "illegal timeout value");
116                         break;
117                 case 'p':
118                         usemine = 1;
119                         if (!(pw = getpwuid(getuid())))
120                                 errx(1, "unknown uid %d", getuid());
121                         mypw = strdup(pw->pw_passwd);
122                         break;
123                 case 'n':
124                         no_timeout = 1;
125                         break;
126                 case 'v':
127                         vtylock = 1;
128                         break;
129                 case '?':
130                 default:
131                         usage();
132                 }
133         timeout.tv_sec = sectimeout * 60;
134
135         setuid(getuid());               /* discard privs */
136
137         if (tcgetattr(0, &tty))         /* get information for header */
138                 exit(1);
139         gethostname(hostname, sizeof(hostname));
140         if (!(ttynam = ttyname(0)))
141                 errx(1, "not a terminal?");
142         if (strncmp(ttynam, _PATH_DEV, strlen(_PATH_DEV)) == 0)
143                 ttynam += strlen(_PATH_DEV);
144         if (gettimeofday(&timval, (struct timezone *)NULL))
145                 err(1, "gettimeofday");
146         nexttime = timval.tv_sec + (sectimeout * 60);
147         timval_sec = timval.tv_sec;
148         timp = localtime(&timval_sec);
149         ap = asctime(timp);
150         tzn = timp->tm_zone;
151
152         (void)signal(SIGINT, quit);
153         (void)signal(SIGQUIT, quit);
154         ntty = tty; ntty.c_lflag &= ~ECHO;
155         (void)tcsetattr(0, TCSADRAIN|TCSASOFT, &ntty);
156
157         if (!mypw) {
158                 /* get key and check again */
159                 (void)printf("Key: ");
160                 if (!fgets(s, sizeof(s), stdin) || *s == '\n')
161                         quit(0);
162                 (void)printf("\nAgain: ");
163                 /*
164                  * Don't need EOF test here, if we get EOF, then s1 != s
165                  * and the right things will happen.
166                  */
167                 (void)fgets(s1, sizeof(s1), stdin);
168                 (void)putchar('\n');
169                 if (strcmp(s1, s)) {
170                         (void)printf("\07lock: passwords didn't match.\n");
171                         (void)tcsetattr(0, TCSADRAIN|TCSASOFT, &tty);
172                         exit(1);
173                 }
174                 s[0] = '\0';
175                 mypw = s1;
176         }
177
178         /* set signal handlers */
179         (void)signal(SIGINT, hi);
180         (void)signal(SIGQUIT, hi);
181         (void)signal(SIGTSTP, hi);
182         (void)signal(SIGALRM, bye);
183
184         ntimer.it_interval = zerotime;
185         ntimer.it_value = timeout;
186         if (!no_timeout)
187                 setitimer(ITIMER_REAL, &ntimer, &otimer);
188         if (vtylock) {
189                 /*
190                  * If this failed, we want to err out; warn isn't good
191                  * enough, since we don't want the user to think that
192                  * everything is nice and locked because they got a
193                  * "Key:" prompt.
194                  */
195                 if (ioctl(0, VT_LOCKSWITCH, &vtylock) == -1) {
196                         (void)tcsetattr(0, TCSADRAIN|TCSASOFT, &tty);
197                         err(1, "locking vty");
198                 }
199                 vtyunlock = 0x2;
200         }
201
202         /* header info */
203         if (pw != NULL)
204                 (void)printf("lock: %s using %s on %s.", pw->pw_name,
205                     ttynam, hostname);
206         else
207                 (void)printf("lock: %s on %s.", ttynam, hostname);
208         if (no_timeout)
209                 (void)printf(" no timeout.");
210         else
211                 (void)printf(" timeout in %d minute%s.", sectimeout,
212                     sectimeout != 1 ? "s" : "");
213         if (vtylock)
214                 (void)printf(" vty locked.");
215         (void)printf("\ntime now is %.20s%s%s", ap, tzn, ap + 19);
216
217         failures = 0;
218
219         for (;;) {
220                 (void)printf("Key: ");
221                 if (!fgets(s, sizeof(s), stdin)) {
222                         clearerr(stdin);
223                         hi(0);
224                         goto tryagain;
225                 }
226                 if (usemine) {
227                         s[strlen(s) - 1] = '\0';
228                         if (!strcmp(mypw, crypt(s, mypw)))
229                                 break;
230                 }
231                 else if (!strcmp(s, s1))
232                         break;
233                 (void)printf("\07\n");
234                 failures++;
235                 if (getuid() == 0)
236                     syslog(LOG_NOTICE, "%d ROOT UNLOCK FAILURE%s (%s on %s)",
237                         failures, failures > 1 ? "S": "", ttynam, hostname);
238 tryagain:
239                 if (tcgetattr(0, &ntty) && (errno != EINTR))
240                         exit(1);
241                 sleep(1);               /* to discourage guessing */
242         }
243         if (getuid() == 0)
244                 syslog(LOG_NOTICE, "ROOT UNLOCK ON hostname %s port %s",
245                     hostname, ttynam);
246         quit(0);
247         return(0); /* not reached */
248 }
249
250
251 static void
252 usage(void)
253 {
254         (void)fprintf(stderr, "usage: lock [-npv] [-t timeout]\n");
255         exit(1);
256 }
257
258 void
259 hi(int signo __unused)
260 {
261         struct timeval timval;
262
263         if (!gettimeofday(&timval, (struct timezone *)NULL)) {
264                 (void)printf("lock: type in the unlock key. ");
265                 if (no_timeout) {
266                         (void)putchar('\n');
267                 } else {
268                         (void)printf("timeout in %ld:%ld minutes\n",
269                             (nexttime - timval.tv_sec) / 60,
270                             (nexttime - timval.tv_sec) % 60);
271                 }
272         }
273 }
274
275 void
276 quit(int signo __unused)
277 {
278         (void)putchar('\n');
279         (void)tcsetattr(0, TCSADRAIN|TCSASOFT, &tty);
280         if (vtyunlock)
281                 (void)ioctl(0, VT_LOCKSWITCH, &vtyunlock);
282         exit(0);
283 }
284
285 void
286 bye(int signo __unused)
287 {
288         if (!no_timeout) {
289                 (void)tcsetattr(0, TCSADRAIN|TCSASOFT, &tty);
290                 if (vtyunlock)
291                         (void)ioctl(0, VT_LOCKSWITCH, &vtyunlock);
292                 (void)printf("lock: timeout\n");
293                 exit(1);
294         }
295 }