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
|
/* $OpenBSD: last.c,v 1.36 2009/10/27 23:59:39 deraadt Exp $ */
/* $NetBSD: last.c,v 1.6 1994/12/24 16:49:02 cgd Exp $ */
/*
* Copyright (c) 1987, 1993, 1994
* The Regents of the University of California. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include <sys/param.h>
#include <sys/stat.h>
#include <ctype.h>
#include <err.h>
#include <fcntl.h>
#include <paths.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <tzfile.h>
#include <unistd.h>
#include <utmp.h>
#define NO 0 /* false/no */
#define YES 1 /* true/yes */
#define ATOI2(ar) ((ar)[0] - '0') * 10 + ((ar)[1] - '0'); (ar) += 2;
static struct utmp buf[1024]; /* utmp read buffer */
struct arg {
char *name; /* argument */
#define HOST_TYPE -2
#define TTY_TYPE -3
#define USER_TYPE -4
int type; /* type of arg */
struct arg *next; /* linked list pointer */
} *arglist;
struct ttytab {
time_t logout; /* log out time */
char tty[UT_LINESIZE + 1]; /* terminal name */
struct ttytab*next; /* linked list pointer */
} *ttylist;
static time_t currentout; /* current logout value */
static long maxrec = -1; /* records to display */
static char *file = _PATH_WTMP; /* wtmp file */
static int fulltime = 0; /* Display seconds? */
static time_t snaptime = 0; /* report only at this time */
static int calculate = 0;
static int seconds = 0;
void addarg(int, char *);
struct ttytab *addtty(char *);
void hostconv(char *);
void onintr(int);
char *ttyconv(char *);
time_t dateconv(char *);
int want(struct utmp *, int);
void wtmp(void);
void checkargs(void);
void usage(void);
#define NAME_WIDTH 9
#define HOST_WIDTH 24
int
main(int argc, char *argv[])
{
const char *errstr;
int ch, lastch = '\0', newarg = 1, prevoptind = 1;
while ((ch = getopt(argc, argv, "0123456789cf:h:n:st:d:T")) != -1) {
switch (ch) {
case '0': case '1': case '2': case '3': case '4':
case '5': case '6': case '7': case '8': case '9':
/*
* kludge: last was originally designed to take
* a number after a dash.
*/
if (newarg || !isdigit(lastch))
maxrec = 0;
else if (maxrec > INT_MAX / 10)
usage();
maxrec = (maxrec * 10) + (ch - '0');
break;
case 'c':
calculate++;
break;
case 'f':
file = optarg;
break;
case 'h':
hostconv(optarg);
addarg(HOST_TYPE, optarg);
break;
case 'n':
maxrec = strtonum(optarg, 0, LONG_MAX, &errstr);
if (errstr != NULL)
errx(1, "number of lines is %s: %s", errstr,
optarg);
if (maxrec == 0)
exit(0);
break;
case 's':
seconds++;
break;
case 't':
addarg(TTY_TYPE, ttyconv(optarg));
break;
case 'd':
snaptime = dateconv(optarg);
break;
case 'T':
fulltime = 1;
break;
default:
usage();
}
lastch = ch;
newarg = optind != prevoptind;
prevoptind = optind;
}
if (maxrec == 0)
exit(0);
if (argc) {
setlinebuf(stdout);
for (argv += optind; *argv; ++argv) {
#define COMPATIBILITY
#ifdef COMPATIBILITY
/* code to allow "last p5" to work */
addarg(TTY_TYPE, ttyconv(*argv));
#endif
addarg(USER_TYPE, *argv);
}
}
checkargs();
wtmp();
exit(0);
}
/*
* if snaptime is set, print warning if usernames, or -t or -h
* flags are also provided
*/
void
checkargs(void)
{
int ttyflag = 0;
struct arg *step;
if (!snaptime || !arglist)
return;
for (step = arglist; step; step = step->next)
switch (step->type) {
case HOST_TYPE:
(void)fprintf(stderr,
"Warning: Ignoring hostname flag\n");
break;
case TTY_TYPE:
if (!ttyflag) { /* don't print this twice */
(void)fprintf(stderr,
"Warning: Ignoring tty flag\n");
ttyflag = 1;
}
break;
case USER_TYPE:
(void)fprintf(stderr,
"Warning: Ignoring username[s]\n");
break;
default:
break;
/* PRINT NOTHING */
}
}
/*
* read through the wtmp file
*/
void
wtmp(void)
{
time_t delta, total = 0;
int timesize, wfd, snapfound = 0;
char *ct, *crmsg, tim[40];
struct utmp *bp;
struct stat stb;
ssize_t bytes;
off_t bl;
struct ttytab *T;
if ((wfd = open(file, O_RDONLY, 0)) < 0 || fstat(wfd, &stb) == -1)
err(1, "%s", file);
bl = (stb.st_size + sizeof(buf) - 1) / sizeof(buf);
if (fulltime)
timesize = 8; /* HH:MM:SS */
else
timesize = 5; /* HH:MM */
(void)time(&buf[0].ut_time);
(void)signal(SIGINT, onintr);
(void)signal(SIGQUIT, onintr);
while (--bl >= 0) {
if (lseek(wfd, bl * sizeof(buf), SEEK_SET) == -1 ||
(bytes = read(wfd, buf, sizeof(buf))) == -1)
err(1, "%s", file);
for (bp = &buf[bytes / sizeof(buf[0]) - 1]; bp >= buf; --bp) {
/*
* if the terminal line is '~', the machine stopped.
* see utmp(5) for more info.
*/
if (bp->ut_line[0] == '~' && !bp->ut_line[1]) {
/* everybody just logged out */
for (T = ttylist; T; T = T->next)
T->logout = -bp->ut_time;
currentout = -bp->ut_time;
crmsg = strncmp(bp->ut_name, "shutdown",
UT_NAMESIZE) ? "crash" : "shutdown";
/*
* if we're in snapshot mode, we want to
* exit if this shutdown/reboot appears
* while we we are tracking the active
* range
*/
if (snaptime && snapfound) {
close(wfd);
return;
}
/*
* don't print shutdown/reboot entries
* unless flagged for
*/
if (want(bp, NO)) {
if (seconds) {
snprintf(tim, sizeof tim, "%ld",
(long)bp->ut_time);
} else {
ct = ctime(&bp->ut_time);
snprintf(tim, sizeof tim,
"%10.10s %*.*s", ct,
timesize, timesize, ct + 11);
}
printf("%-*.*s %-*.*s %-*.*s %s \n",
NAME_WIDTH, UT_NAMESIZE, bp->ut_name,
UT_LINESIZE, UT_LINESIZE, bp->ut_line,
HOST_WIDTH, UT_HOSTSIZE, bp->ut_host,
tim);
if (maxrec != -1 && !--maxrec) {
close(wfd);
return;
}
}
continue;
}
/*
* if the line is '{' or '|', date got set; see
* utmp(5) for more info.
*/
if ((bp->ut_line[0] == '{' || bp->ut_line[0] == '|') &&
!bp->ut_line[1]) {
if (want(bp, NO)) {
if (seconds) {
snprintf(tim, sizeof tim, "%ld",
(long)bp->ut_time);
} else {
ct = ctime(&bp->ut_time);
snprintf(tim, sizeof tim,
"%10.10s %*.*s", ct,
timesize, timesize, ct + 11);
}
printf("%-*.*s %-*.*s %-*.*s %s \n",
NAME_WIDTH, UT_NAMESIZE, bp->ut_name,
UT_LINESIZE, UT_LINESIZE, bp->ut_line,
HOST_WIDTH, UT_HOSTSIZE, bp->ut_host,
tim);
if (maxrec && !--maxrec) {
close(wfd);
return;
}
}
continue;
}
/* find associated tty */
for (T = ttylist;; T = T->next) {
if (!T) {
/* add new one */
T = addtty(bp->ut_line);
break;
}
if (!strncmp(T->tty, bp->ut_line, UT_LINESIZE))
break;
}
/*
* print record if not in snapshot mode and wanted
* or in snapshot mode and in snapshot range
*/
if (bp->ut_name[0] &&
((want(bp, YES)) || (bp->ut_time < snaptime &&
(T->logout > snaptime || !T->logout ||
T->logout < 0)))) {
snapfound = 1;
if (seconds) {
snprintf(tim, sizeof tim, "%ld",
(long)bp->ut_time);
} else {
ct = ctime(&bp->ut_time);
snprintf(tim, sizeof tim,
"%10.10s %*.*s", ct,
timesize, timesize, ct + 11);
}
printf("%-*.*s %-*.*s %-*.*s %s ",
NAME_WIDTH, UT_NAMESIZE, bp->ut_name,
UT_LINESIZE, UT_LINESIZE, bp->ut_line,
HOST_WIDTH, UT_HOSTSIZE, bp->ut_host,
tim);
if (!T->logout)
puts(" still logged in");
else {
if (T->logout < 0) {
T->logout = -T->logout;
printf("- %s", crmsg);
} else {
if (seconds)
printf("- %ld",
(long)T->logout);
else
printf("- %*.*s",
timesize, timesize,
ctime(&T->logout)+11);
}
delta = T->logout - bp->ut_time;
if (seconds)
printf(" (%ld)\n", (long)delta);
else {
if (delta < SECSPERDAY)
printf(" (%*.*s)\n",
timesize, timesize,
asctime(gmtime(&delta))+11);
else
printf(" (%ld+%*.*s)\n",
delta / SECSPERDAY,
timesize, timesize,
asctime(gmtime(&delta))+11);
}
if (calculate)
total += delta;
}
if (maxrec != -1 && !--maxrec) {
close(wfd);
return;
}
}
T->logout = bp->ut_time;
}
}
close(wfd);
if (calculate) {
if ((total / SECSPERDAY) > 0) {
int days = (total / SECSPERDAY);
total -= (days * SECSPERDAY);
printf("\nTotal time: %d days, %*.*s\n",
days, timesize, timesize,
asctime(gmtime(&total))+11);
} else
printf("\nTotal time: %*.*s\n",
timesize, timesize,
asctime(gmtime(&total))+11);
}
ct = ctime(&buf[0].ut_time);
printf("\nwtmp begins %10.10s %*.*s %4.4s\n", ct, timesize, timesize,
ct + 11, ct + 20);
}
/*
* see if want this entry
*/
int
want(struct utmp *bp, int check)
{
struct arg *step;
if (check) {
/*
* when uucp and ftp log in over a network, the entry in
* the utmp file is the name plus their process id. See
* etc/ftpd.c and usr.bin/uucp/uucpd.c for more information.
*/
if (!strncmp(bp->ut_line, "ftp", sizeof("ftp") - 1))
bp->ut_line[3] = '\0';
else if (!strncmp(bp->ut_line, "uucp", sizeof("uucp") - 1))
bp->ut_line[4] = '\0';
}
if (snaptime) /* if snaptime is set, return NO */
return (NO);
if (!arglist)
return (YES);
for (step = arglist; step; step = step->next)
switch (step->type) {
case HOST_TYPE:
if (!strncasecmp(step->name, bp->ut_host, UT_HOSTSIZE))
return (YES);
break;
case TTY_TYPE:
if (!strncmp(step->name, bp->ut_line, UT_LINESIZE))
return (YES);
break;
case USER_TYPE:
if (!strncmp(step->name, bp->ut_name, UT_NAMESIZE))
return (YES);
break;
}
return (NO);
}
/*
* add an entry to a linked list of arguments
*/
void
addarg(int type, char *arg)
{
struct arg *cur;
if (!(cur = (struct arg *)malloc((u_int)sizeof(struct arg))))
err(1, "malloc failure");
cur->next = arglist;
cur->type = type;
cur->name = arg;
arglist = cur;
}
/*
* add an entry to a linked list of ttys
*/
struct ttytab *
addtty(char *ttyname)
{
struct ttytab *cur;
if (!(cur = (struct ttytab *)malloc((u_int)sizeof(struct ttytab))))
err(1, "malloc failure");
cur->next = ttylist;
cur->logout = currentout;
memmove(cur->tty, ttyname, UT_LINESIZE);
return (ttylist = cur);
}
/*
* convert the hostname to search pattern; if the supplied host name
* has a domain attached that is the same as the current domain, rip
* off the domain suffix since that's what login(1) does.
*/
void
hostconv(char *arg)
{
static char *hostdot, name[MAXHOSTNAMELEN];
static int first = 1;
char *argdot;
if (!(argdot = strchr(arg, '.')))
return;
if (first) {
first = 0;
if (gethostname(name, sizeof(name)))
err(1, "gethostname");
hostdot = strchr(name, '.');
}
if (hostdot && !strcasecmp(hostdot, argdot))
*argdot = '\0';
}
/*
* convert tty to correct name.
*/
char *
ttyconv(char *arg)
{
size_t len = 8;
char *mval;
/*
* kludge -- we assume that all tty's end with
* a two character suffix.
*/
if (strlen(arg) == 2) {
/* either 6 for "ttyxx" or 8 for "console" */
if (!(mval = malloc(len)))
err(1, "malloc failure");
if (!strcmp(arg, "co"))
(void)strlcpy(mval, "console", len);
else
snprintf(mval, len, "tty%s", arg);
return (mval);
}
if (!strncmp(arg, _PATH_DEV, sizeof(_PATH_DEV) - 1))
return (arg + 5);
return (arg);
}
/*
* Convert the snapshot time in command line given in the format
* [[[CC]YY]MMDD]hhmm[.SS]] to a time_t.
* Derived from atime_arg1() in usr.bin/touch/touch.c
*/
time_t
dateconv(char *arg)
{
time_t timet;
struct tm *t;
int yearset;
char *p;
/* Start with the current time. */
if (time(&timet) < 0)
err(1, "time");
if ((t = localtime(&timet)) == NULL)
err(1, "localtime");
/* [[[CC]YY]MMDD]hhmm[.SS] */
if ((p = strchr(arg, '.')) == NULL)
t->tm_sec = 0; /* Seconds defaults to 0. */
else {
if (strlen(p + 1) != 2)
goto terr;
*p++ = '\0';
t->tm_sec = ATOI2(p);
}
yearset = 0;
switch (strlen(arg)) {
case 12: /* CCYYMMDDhhmm */
t->tm_year = ATOI2(arg);
t->tm_year *= 100;
yearset = 1;
/* FALLTHROUGH */
case 10: /* YYMMDDhhmm */
if (yearset) {
yearset = ATOI2(arg);
t->tm_year += yearset;
} else {
yearset = ATOI2(arg);
if (yearset < 69)
t->tm_year = yearset + 2000;
else
t->tm_year = yearset + 1900;
}
t->tm_year -= 1900; /* Convert to UNIX time. */
/* FALLTHROUGH */
case 8: /* MMDDhhmm */
t->tm_mon = ATOI2(arg);
--t->tm_mon; /* Convert from 01-12 to 00-11 */
t->tm_mday = ATOI2(arg);
t->tm_hour = ATOI2(arg);
t->tm_min = ATOI2(arg);
break;
case 4: /* hhmm */
t->tm_hour = ATOI2(arg);
t->tm_min = ATOI2(arg);
break;
default:
goto terr;
}
t->tm_isdst = -1; /* Figure out DST. */
timet = mktime(t);
if (timet == -1)
terr: errx(1, "out of range or illegal time specification: "
"[[[CC]YY]MMDD]hhmm[.SS]");
return (timet);
}
/*
* on interrupt, we inform the user how far we've gotten
*/
void
onintr(int signo)
{
char str[1024], *ct;
ct = ctime(&buf[0].ut_time); /* XXX signal race */
snprintf(str, sizeof str, "\ninterrupted %10.10s %8.8s \n",
ct, ct + 11);
write(STDOUT_FILENO, str, strlen(str));
if (signo == SIGINT)
_exit(1);
}
void
usage(void)
{
extern char *__progname;
fprintf(stderr,
"usage: %s [-csT] [-d date] [-f file] [-h host]"
" [-n number] [-t tty] [user ...]\n", __progname);
exit(1);
}
|