2 * Copyright (c) 1987, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 4. Neither the name of the University nor the names of its contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 static const char copyright
[] =
32 "@(#) Copyright (c) 1987, 1993, 1994\n\
33 The Regents of the University of California. All rights reserved.\n";
37 static const char sccsid
[] = "@(#)last.c 8.2 (Berkeley) 4/2/94";
39 #include <sys/cdefs.h>
40 __FBSDID("$FreeBSD$");
42 #include <sys/param.h>
59 #include <sys/queue.h>
61 #define NO 0 /* false/no */
62 #define YES 1 /* true/yes */
63 #define ATOI2(ar) ((ar)[0] - '0') * 10 + ((ar)[1] - '0'); (ar) += 2;
66 char *name
; /* argument */
67 #define REBOOT_TYPE -1
71 int type
; /* type of arg */
72 struct arg
*next
; /* linked list pointer */
74 static ARG
*arglist
; /* head of linked list */
76 static SLIST_HEAD(, idtab
) idlist
;
79 time_t logout
; /* log out time */
80 char id
[sizeof ((struct utmpx
*)0)->ut_id
]; /* identifier */
81 SLIST_ENTRY(idtab
) list
;
84 static const char *crmsg
; /* cause of last reboot */
85 static time_t currentout
; /* current logout value */
86 static long maxrec
; /* records to display */
87 static const char *file
= NULL
; /* utx.log file */
88 static int sflag
= 0; /* show delta in seconds */
89 static int width
= 5; /* show seconds in delta */
90 static int yflag
; /* show year */
92 static int snapfound
= 0; /* found snapshot entry? */
93 static time_t snaptime
; /* if != 0, we will only
94 * report users logged in
95 * at this snapshot time
98 static void addarg(int, char *);
99 static time_t dateconv(char *);
100 static void doentry(struct utmpx
*);
101 static void hostconv(char *);
102 static void printentry(struct utmpx
*, struct idtab
*);
103 static char *ttyconv(char *);
104 static int want(struct utmpx
*);
105 static void usage(void);
106 static void wtmp(void);
111 (void)fprintf(stderr
,
112 "usage: last [-swy] [-d [[CC]YY][MMDD]hhmm[.SS]] [-f file] [-h host]\n"
113 " [-n maxrec] [-t tty] [user ...]\n");
118 main(int argc
, char *argv
[])
123 (void) setlocale(LC_TIME
, "");
124 d_first
= (*nl_langinfo(D_MD_ORDER
) == 'd');
128 while ((ch
= getopt(argc
, argv
, "0123456789d:f:h:n:st:wy")) != -1)
130 case '0': case '1': case '2': case '3': case '4':
131 case '5': case '6': case '7': case '8': case '9':
133 * kludge: last was originally designed to take
134 * a number after a dash.
137 p
= strchr(argv
[optind
- 1], ch
);
139 p
= strchr(argv
[optind
], ch
);
146 snaptime
= dateconv(optarg
);
153 addarg(HOST_TYPE
, optarg
);
157 maxrec
= strtol(optarg
, &p
, 10);
158 if (p
== optarg
|| *p
!= '\0' || errno
!= 0 ||
160 errx(1, "%s: bad line count", optarg
);
163 sflag
++; /* Show delta as seconds */
166 addarg(TTY_TYPE
, ttyconv(optarg
));
179 if (sflag
&& width
== 8) usage();
183 for (argv
+= optind
; *argv
; ++argv
) {
184 if (strcmp(*argv
, "reboot") == 0)
185 addarg(REBOOT_TYPE
, *argv
);
186 #define COMPATIBILITY
188 /* code to allow "last p5" to work */
189 addarg(TTY_TYPE
, ttyconv(*argv
));
191 addarg(USER_TYPE
, *argv
);
200 * read through the utx.log file
205 struct utmpx
*buf
= NULL
;
207 static unsigned int amount
= 0;
215 /* Load the last entries from the file. */
216 if (setutxdb(UTXDB_LOG
, file
) != 0)
218 while ((ut
= getutxent()) != NULL
) {
219 if (amount
% 128 == 0) {
220 buf
= realloc(buf
, (amount
+ 128) * sizeof *ut
);
224 memcpy(&buf
[amount
++], ut
, sizeof *ut
);
225 if (t
> ut
->ut_tv
.tv_sec
)
226 t
= ut
->ut_tv
.tv_sec
;
230 /* Display them in reverse order. */
232 doentry(&buf
[--amount
]);
235 (void) strftime(ct
, sizeof(ct
), "%+", tm
);
236 printf("\n%s begins %s\n", ((file
== NULL
) ? "utx.log" : file
), ct
);
241 * process a single utx.log entry
244 doentry(struct utmpx
*bp
)
248 /* the machine stopped */
249 if (bp
->ut_type
== BOOT_TIME
|| bp
->ut_type
== SHUTDOWN_TIME
) {
250 /* everybody just logged out */
251 while ((tt
= SLIST_FIRST(&idlist
)) != NULL
) {
252 SLIST_REMOVE_HEAD(&idlist
, list
);
255 currentout
= -bp
->ut_tv
.tv_sec
;
256 crmsg
= bp
->ut_type
!= SHUTDOWN_TIME
?
257 "crash" : "shutdown";
259 * if we're in snapshot mode, we want to exit if this
260 * shutdown/reboot appears while we we are tracking the
263 if (snaptime
&& snapfound
)
266 * don't print shutdown/reboot entries unless flagged for
268 if (!snaptime
&& want(bp
))
269 printentry(bp
, NULL
);
273 if (bp
->ut_type
== OLD_TIME
|| bp
->ut_type
== NEW_TIME
) {
274 if (want(bp
) && !snaptime
)
275 printentry(bp
, NULL
);
279 if (bp
->ut_type
!= USER_PROCESS
&& bp
->ut_type
!= DEAD_PROCESS
)
282 /* find associated identifier */
283 SLIST_FOREACH(tt
, &idlist
, list
)
284 if (!memcmp(tt
->id
, bp
->ut_id
, sizeof bp
->ut_id
))
289 tt
= malloc(sizeof(struct idtab
));
291 errx(1, "malloc failure");
292 tt
->logout
= currentout
;
293 memcpy(tt
->id
, bp
->ut_id
, sizeof bp
->ut_id
);
294 SLIST_INSERT_HEAD(&idlist
, tt
, list
);
298 * print record if not in snapshot mode and wanted
299 * or in snapshot mode and in snapshot range
301 if (bp
->ut_type
== USER_PROCESS
&& (want(bp
) ||
302 (bp
->ut_tv
.tv_sec
< snaptime
&&
303 (tt
->logout
> snaptime
|| tt
->logout
< 1)))) {
307 tt
->logout
= bp
->ut_tv
.tv_sec
;
314 * If `tt' is non-NULL, use it and `crmsg' to print the logout time or
315 * logout type (crash/shutdown) as appropriate.
318 printentry(struct utmpx
*bp
, struct idtab
*tt
)
322 time_t delta
; /* time difference */
325 if (maxrec
!= -1 && !maxrec
--)
327 t
= bp
->ut_tv
.tv_sec
;
329 (void) strftime(ct
, sizeof(ct
), d_first
?
330 (yflag
? "%a %e %b %Y %R" : "%a %e %b %R") :
331 (yflag
? "%a %b %e %Y %R" : "%a %b %e %R"), tm
);
332 switch (bp
->ut_type
) {
334 printf("%-42s", "boot time");
337 printf("%-42s", "shutdown time");
340 printf("%-42s", "old time");
343 printf("%-42s", "new time");
346 printf("%-10s %-8s %-22.22s",
347 bp
->ut_user
, bp
->ut_line
, bp
->ut_host
);
350 printf(" %s%c", ct
, tt
== NULL
? '\n' : ' ');
354 puts(" still logged in");
357 if (tt
->logout
< 0) {
358 tt
->logout
= -tt
->logout
;
359 printf("- %s", crmsg
);
361 tm
= localtime(&tt
->logout
);
362 (void) strftime(ct
, sizeof(ct
), "%R", tm
);
365 delta
= tt
->logout
- bp
->ut_tv
.tv_sec
;
367 printf(" (%8ld)\n", (long)delta
);
370 (void) strftime(ct
, sizeof(ct
), width
>= 8 ? "%T" : "%R", tm
);
372 printf(" (%s)\n", ct
);
374 printf(" (%ld+%s)\n", (long)delta
/ 86400, ct
);
380 * see if want this entry
383 want(struct utmpx
*bp
)
393 for (step
= arglist
; step
; step
= step
->next
)
396 if (bp
->ut_type
== BOOT_TIME
||
397 bp
->ut_type
== SHUTDOWN_TIME
)
401 if (!strcasecmp(step
->name
, bp
->ut_host
))
405 if (!strcmp(step
->name
, bp
->ut_line
))
409 if (!strcmp(step
->name
, bp
->ut_user
))
418 * add an entry to a linked list of arguments
421 addarg(int type
, char *arg
)
425 if ((cur
= malloc(sizeof(ARG
))) == NULL
)
426 errx(1, "malloc failure");
435 * convert the hostname to search pattern; if the supplied host name
436 * has a domain attached that is the same as the current domain, rip
437 * off the domain suffix since that's what login(1) does.
442 static int first
= 1;
443 static char *hostdot
, name
[MAXHOSTNAMELEN
];
446 if (!(argdot
= strchr(arg
, '.')))
450 if (gethostname(name
, sizeof(name
)))
451 err(1, "gethostname");
452 hostdot
= strchr(name
, '.');
454 if (hostdot
&& !strcasecmp(hostdot
, argdot
))
460 * convert tty to correct name.
468 * kludge -- we assume that all tty's end with
469 * a two character suffix.
471 if (strlen(arg
) == 2) {
472 /* either 6 for "ttyxx" or 8 for "console" */
473 if ((mval
= malloc(8)) == NULL
)
474 errx(1, "malloc failure");
475 if (!strcmp(arg
, "co"))
476 (void)strcpy(mval
, "console");
478 (void)strcpy(mval
, "tty");
479 (void)strcpy(mval
+ 3, arg
);
483 if (!strncmp(arg
, _PATH_DEV
, sizeof(_PATH_DEV
) - 1))
490 * Convert the snapshot time in command line given in the format
491 * [[CC]YY]MMDDhhmm[.SS]] to a time_t.
492 * Derived from atime_arg1() in usr.bin/touch/touch.c
502 /* Start with the current time. */
503 if (time(&timet
) < 0)
505 if ((t
= localtime(&timet
)) == NULL
)
508 /* [[CC]YY]MMDDhhmm[.SS] */
509 if ((p
= strchr(arg
, '.')) == NULL
)
510 t
->tm_sec
= 0; /* Seconds defaults to 0. */
512 if (strlen(p
+ 1) != 2)
515 t
->tm_sec
= ATOI2(p
);
519 switch (strlen(arg
)) {
520 case 12: /* CCYYMMDDhhmm */
521 t
->tm_year
= ATOI2(arg
);
525 case 10: /* YYMMDDhhmm */
527 yearset
= ATOI2(arg
);
528 t
->tm_year
+= yearset
;
530 yearset
= ATOI2(arg
);
532 t
->tm_year
= yearset
+ 2000;
534 t
->tm_year
= yearset
+ 1900;
536 t
->tm_year
-= 1900; /* Convert to UNIX time. */
538 case 8: /* MMDDhhmm */
539 t
->tm_mon
= ATOI2(arg
);
540 --t
->tm_mon
; /* Convert from 01-12 to 00-11 */
541 t
->tm_mday
= ATOI2(arg
);
542 t
->tm_hour
= ATOI2(arg
);
543 t
->tm_min
= ATOI2(arg
);
546 t
->tm_hour
= ATOI2(arg
);
547 t
->tm_min
= ATOI2(arg
);
552 t
->tm_isdst
= -1; /* Figure out DST. */
556 "out of range or illegal time specification: [[CC]YY]MMDDhhmm[.SS]");