Home | History | Annotate | Line # | Download | only in last
last.c revision 1.7
      1  1.7  perry /*	$NetBSD: last.c,v 1.7 1997/07/17 02:36:56 perry Exp $	*/
      2  1.5    jtc 
      3  1.1    cgd /*
      4  1.5    jtc  * Copyright (c) 1987, 1993, 1994
      5  1.5    jtc  *	The Regents of the University of California.  All rights reserved.
      6  1.1    cgd  *
      7  1.1    cgd  * Redistribution and use in source and binary forms, with or without
      8  1.1    cgd  * modification, are permitted provided that the following conditions
      9  1.1    cgd  * are met:
     10  1.1    cgd  * 1. Redistributions of source code must retain the above copyright
     11  1.1    cgd  *    notice, this list of conditions and the following disclaimer.
     12  1.1    cgd  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.1    cgd  *    notice, this list of conditions and the following disclaimer in the
     14  1.1    cgd  *    documentation and/or other materials provided with the distribution.
     15  1.1    cgd  * 3. All advertising materials mentioning features or use of this software
     16  1.1    cgd  *    must display the following acknowledgement:
     17  1.1    cgd  *	This product includes software developed by the University of
     18  1.1    cgd  *	California, Berkeley and its contributors.
     19  1.1    cgd  * 4. Neither the name of the University nor the names of its contributors
     20  1.1    cgd  *    may be used to endorse or promote products derived from this software
     21  1.1    cgd  *    without specific prior written permission.
     22  1.1    cgd  *
     23  1.1    cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     24  1.1    cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     25  1.1    cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     26  1.1    cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     27  1.1    cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     28  1.1    cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     29  1.1    cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     30  1.1    cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     31  1.1    cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     32  1.1    cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     33  1.1    cgd  * SUCH DAMAGE.
     34  1.1    cgd  */
     35  1.1    cgd 
     36  1.1    cgd #ifndef lint
     37  1.5    jtc static char copyright[] =
     38  1.5    jtc "@(#) Copyright (c) 1987, 1993, 1994\n\
     39  1.5    jtc 	The Regents of the University of California.  All rights reserved.\n";
     40  1.1    cgd #endif /* not lint */
     41  1.1    cgd 
     42  1.1    cgd #ifndef lint
     43  1.5    jtc #if 0
     44  1.5    jtc static char sccsid[] = "@(#)last.c	8.2 (Berkeley) 4/2/94";
     45  1.5    jtc #endif
     46  1.7  perry static char rcsid[] = "$NetBSD: last.c,v 1.7 1997/07/17 02:36:56 perry Exp $";
     47  1.1    cgd #endif /* not lint */
     48  1.1    cgd 
     49  1.1    cgd #include <sys/param.h>
     50  1.1    cgd #include <sys/stat.h>
     51  1.5    jtc 
     52  1.5    jtc #include <err.h>
     53  1.5    jtc #include <fcntl.h>
     54  1.5    jtc #include <paths.h>
     55  1.1    cgd #include <signal.h>
     56  1.5    jtc #include <stdio.h>
     57  1.5    jtc #include <stdlib.h>
     58  1.5    jtc #include <string.h>
     59  1.1    cgd #include <time.h>
     60  1.5    jtc #include <tzfile.h>
     61  1.5    jtc #include <unistd.h>
     62  1.1    cgd #include <utmp.h>
     63  1.1    cgd 
     64  1.1    cgd #define	NO	0				/* false/no */
     65  1.1    cgd #define	YES	1				/* true/yes */
     66  1.1    cgd 
     67  1.1    cgd static struct utmp	buf[1024];		/* utmp read buffer */
     68  1.1    cgd 
     69  1.1    cgd typedef struct arg {
     70  1.1    cgd 	char	*name;				/* argument */
     71  1.1    cgd #define	HOST_TYPE	-2
     72  1.1    cgd #define	TTY_TYPE	-3
     73  1.1    cgd #define	USER_TYPE	-4
     74  1.1    cgd 	int	type;				/* type of arg */
     75  1.1    cgd 	struct arg	*next;			/* linked list pointer */
     76  1.1    cgd } ARG;
     77  1.1    cgd ARG	*arglist;				/* head of linked list */
     78  1.1    cgd 
     79  1.1    cgd typedef struct ttytab {
     80  1.6    cgd 	time_t	logout;				/* log out time */
     81  1.1    cgd 	char	tty[UT_LINESIZE + 1];		/* terminal name */
     82  1.1    cgd 	struct ttytab	*next;			/* linked list pointer */
     83  1.1    cgd } TTY;
     84  1.1    cgd TTY	*ttylist;				/* head of linked list */
     85  1.1    cgd 
     86  1.6    cgd static time_t	currentout;			/* current logout value */
     87  1.6    cgd static long	maxrec;				/* records to display */
     88  1.1    cgd static char	*file = _PATH_WTMP;		/* wtmp file */
     89  1.7  perry static int	fulltime = 0;                   /* Display seconds? */
     90  1.1    cgd 
     91  1.5    jtc void	 addarg __P((int, char *));
     92  1.5    jtc TTY	*addtty __P((char *));
     93  1.5    jtc void	 hostconv __P((char *));
     94  1.5    jtc void	 onintr __P((int));
     95  1.5    jtc char	*ttyconv __P((char *));
     96  1.5    jtc int	 want __P((struct utmp *, int));
     97  1.5    jtc void	 wtmp __P((void));
     98  1.5    jtc 
     99  1.5    jtc int
    100  1.1    cgd main(argc, argv)
    101  1.1    cgd 	int argc;
    102  1.5    jtc 	char *argv[];
    103  1.1    cgd {
    104  1.1    cgd 	extern int optind;
    105  1.1    cgd 	extern char *optarg;
    106  1.1    cgd 	int ch;
    107  1.5    jtc 	char *p;
    108  1.1    cgd 
    109  1.1    cgd 	maxrec = -1;
    110  1.7  perry 	while ((ch = getopt(argc, argv, "0123456789f:h:t:T")) != EOF)
    111  1.5    jtc 		switch (ch) {
    112  1.1    cgd 		case '0': case '1': case '2': case '3': case '4':
    113  1.1    cgd 		case '5': case '6': case '7': case '8': case '9':
    114  1.1    cgd 			/*
    115  1.1    cgd 			 * kludge: last was originally designed to take
    116  1.1    cgd 			 * a number after a dash.
    117  1.1    cgd 			 */
    118  1.1    cgd 			if (maxrec == -1) {
    119  1.1    cgd 				p = argv[optind - 1];
    120  1.1    cgd 				if (p[0] == '-' && p[1] == ch && !p[2])
    121  1.1    cgd 					maxrec = atol(++p);
    122  1.1    cgd 				else
    123  1.1    cgd 					maxrec = atol(argv[optind] + 1);
    124  1.1    cgd 				if (!maxrec)
    125  1.1    cgd 					exit(0);
    126  1.1    cgd 			}
    127  1.1    cgd 			break;
    128  1.1    cgd 		case 'f':
    129  1.1    cgd 			file = optarg;
    130  1.1    cgd 			break;
    131  1.1    cgd 		case 'h':
    132  1.1    cgd 			hostconv(optarg);
    133  1.1    cgd 			addarg(HOST_TYPE, optarg);
    134  1.1    cgd 			break;
    135  1.1    cgd 		case 't':
    136  1.1    cgd 			addarg(TTY_TYPE, ttyconv(optarg));
    137  1.1    cgd 			break;
    138  1.7  perry 		case 'T':
    139  1.7  perry 			fulltime = 1;
    140  1.7  perry 			break;
    141  1.1    cgd 		case '?':
    142  1.1    cgd 		default:
    143  1.5    jtc 			(void)fprintf(stderr,
    144  1.7  perry 	"usage: last [-#] [-f file] [-t tty] [-h hostname] [-T] [user ...]\n");
    145  1.1    cgd 			exit(1);
    146  1.1    cgd 		}
    147  1.1    cgd 
    148  1.1    cgd 	if (argc) {
    149  1.1    cgd 		setlinebuf(stdout);
    150  1.1    cgd 		for (argv += optind; *argv; ++argv) {
    151  1.1    cgd #define	COMPATIBILITY
    152  1.1    cgd #ifdef	COMPATIBILITY
    153  1.1    cgd 			/* code to allow "last p5" to work */
    154  1.1    cgd 			addarg(TTY_TYPE, ttyconv(*argv));
    155  1.1    cgd #endif
    156  1.1    cgd 			addarg(USER_TYPE, *argv);
    157  1.1    cgd 		}
    158  1.1    cgd 	}
    159  1.1    cgd 	wtmp();
    160  1.1    cgd 	exit(0);
    161  1.1    cgd }
    162  1.1    cgd 
    163  1.1    cgd /*
    164  1.1    cgd  * wtmp --
    165  1.1    cgd  *	read through the wtmp file
    166  1.1    cgd  */
    167  1.5    jtc void
    168  1.1    cgd wtmp()
    169  1.1    cgd {
    170  1.7  perry 	struct utmp	*bp;		/* current structure */
    171  1.7  perry 	TTY	*T;			/* tty list entry */
    172  1.7  perry 	struct stat	stb;		/* stat of file for size */
    173  1.7  perry 	time_t	bl, delta;		/* time difference */
    174  1.7  perry 	int	timesize;		/* how much of time string to print */
    175  1.1    cgd 	int	bytes, wfd;
    176  1.5    jtc 	char	*ct, *crmsg;
    177  1.5    jtc 
    178  1.5    jtc 	if ((wfd = open(file, O_RDONLY, 0)) < 0 || fstat(wfd, &stb) == -1)
    179  1.5    jtc 		err(1, "%s", file);
    180  1.1    cgd 	bl = (stb.st_size + sizeof(buf) - 1) / sizeof(buf);
    181  1.1    cgd 
    182  1.7  perry 	if (fulltime)
    183  1.7  perry 		timesize = 8;	/* HH:MM:SS */
    184  1.7  perry 	else
    185  1.7  perry 		timesize = 5;	/* HH:MM */
    186  1.7  perry 
    187  1.1    cgd 	(void)time(&buf[0].ut_time);
    188  1.1    cgd 	(void)signal(SIGINT, onintr);
    189  1.1    cgd 	(void)signal(SIGQUIT, onintr);
    190  1.1    cgd 
    191  1.1    cgd 	while (--bl >= 0) {
    192  1.5    jtc 		if (lseek(wfd, (off_t)(bl * sizeof(buf)), L_SET) == -1 ||
    193  1.5    jtc 		    (bytes = read(wfd, buf, sizeof(buf))) == -1)
    194  1.5    jtc 			err(1, "%s", file);
    195  1.1    cgd 		for (bp = &buf[bytes / sizeof(buf[0]) - 1]; bp >= buf; --bp) {
    196  1.1    cgd 			/*
    197  1.1    cgd 			 * if the terminal line is '~', the machine stopped.
    198  1.1    cgd 			 * see utmp(5) for more info.
    199  1.1    cgd 			 */
    200  1.1    cgd 			if (bp->ut_line[0] == '~' && !bp->ut_line[1]) {
    201  1.1    cgd 				/* everybody just logged out */
    202  1.1    cgd 				for (T = ttylist; T; T = T->next)
    203  1.1    cgd 					T->logout = -bp->ut_time;
    204  1.1    cgd 				currentout = -bp->ut_time;
    205  1.1    cgd 				crmsg = strncmp(bp->ut_name, "shutdown",
    206  1.1    cgd 				    UT_NAMESIZE) ? "crash" : "shutdown";
    207  1.1    cgd 				if (want(bp, NO)) {
    208  1.1    cgd 					ct = ctime(&bp->ut_time);
    209  1.7  perry 				printf("%-*.*s  %-*.*s %-*.*s %10.10s %*.*s \n",
    210  1.5    jtc 					    UT_NAMESIZE, UT_NAMESIZE,
    211  1.5    jtc 					    bp->ut_name, UT_LINESIZE,
    212  1.5    jtc 					    UT_LINESIZE, bp->ut_line,
    213  1.5    jtc 					    UT_HOSTSIZE, UT_HOSTSIZE,
    214  1.7  perry 					    bp->ut_host, ct, timesize,
    215  1.7  perry 				            timesize, ct + 11);
    216  1.1    cgd 					if (maxrec != -1 && !--maxrec)
    217  1.1    cgd 						return;
    218  1.1    cgd 				}
    219  1.1    cgd 				continue;
    220  1.1    cgd 			}
    221  1.1    cgd 			/*
    222  1.1    cgd 			 * if the line is '{' or '|', date got set; see
    223  1.1    cgd 			 * utmp(5) for more info.
    224  1.1    cgd 			 */
    225  1.1    cgd 			if ((bp->ut_line[0] == '{' || bp->ut_line[0] == '|')
    226  1.1    cgd 			    && !bp->ut_line[1]) {
    227  1.1    cgd 				if (want(bp, NO)) {
    228  1.1    cgd 					ct = ctime(&bp->ut_time);
    229  1.7  perry 				printf("%-*.*s  %-*.*s %-*.*s %10.10s %*.*s \n",
    230  1.5    jtc 				    UT_NAMESIZE, UT_NAMESIZE, bp->ut_name,
    231  1.5    jtc 				    UT_LINESIZE, UT_LINESIZE, bp->ut_line,
    232  1.5    jtc 				    UT_HOSTSIZE, UT_HOSTSIZE, bp->ut_host,
    233  1.7  perry 				    ct, timesize, timesize, ct + 11);
    234  1.1    cgd 					if (maxrec && !--maxrec)
    235  1.1    cgd 						return;
    236  1.1    cgd 				}
    237  1.1    cgd 				continue;
    238  1.1    cgd 			}
    239  1.1    cgd 			/* find associated tty */
    240  1.1    cgd 			for (T = ttylist;; T = T->next) {
    241  1.1    cgd 				if (!T) {
    242  1.1    cgd 					/* add new one */
    243  1.1    cgd 					T = addtty(bp->ut_line);
    244  1.1    cgd 					break;
    245  1.1    cgd 				}
    246  1.1    cgd 				if (!strncmp(T->tty, bp->ut_line, UT_LINESIZE))
    247  1.1    cgd 					break;
    248  1.1    cgd 			}
    249  1.1    cgd 			if (bp->ut_name[0] && want(bp, YES)) {
    250  1.1    cgd 				ct = ctime(&bp->ut_time);
    251  1.7  perry 				printf("%-*.*s  %-*.*s %-*.*s %10.10s %*.*s ",
    252  1.5    jtc 				UT_NAMESIZE, UT_NAMESIZE, bp->ut_name,
    253  1.5    jtc 				UT_LINESIZE, UT_LINESIZE, bp->ut_line,
    254  1.5    jtc 				UT_HOSTSIZE, UT_HOSTSIZE, bp->ut_host,
    255  1.7  perry 				ct, timesize, timesize, ct + 11);
    256  1.1    cgd 				if (!T->logout)
    257  1.1    cgd 					puts("  still logged in");
    258  1.1    cgd 				else {
    259  1.1    cgd 					if (T->logout < 0) {
    260  1.1    cgd 						T->logout = -T->logout;
    261  1.1    cgd 						printf("- %s", crmsg);
    262  1.1    cgd 					}
    263  1.1    cgd 					else
    264  1.7  perry 						printf("- %*.*s",
    265  1.7  perry 						    timesize, timesize,
    266  1.5    jtc 						    ctime(&T->logout)+11);
    267  1.1    cgd 					delta = T->logout - bp->ut_time;
    268  1.5    jtc 					if (delta < SECSPERDAY)
    269  1.7  perry 						printf("  (%*.*s)\n",
    270  1.7  perry 						    timesize, timesize,
    271  1.5    jtc 						    asctime(gmtime(&delta))+11);
    272  1.1    cgd 					else
    273  1.7  perry 						printf(" (%ld+%*.*s)\n",
    274  1.5    jtc 						    delta / SECSPERDAY,
    275  1.7  perry 						    timesize, timesize,
    276  1.5    jtc 						    asctime(gmtime(&delta))+11);
    277  1.1    cgd 				}
    278  1.1    cgd 				if (maxrec != -1 && !--maxrec)
    279  1.1    cgd 					return;
    280  1.1    cgd 			}
    281  1.1    cgd 			T->logout = bp->ut_time;
    282  1.1    cgd 		}
    283  1.1    cgd 	}
    284  1.1    cgd 	ct = ctime(&buf[0].ut_time);
    285  1.7  perry 	printf("\nwtmp begins %10.10s %*.*s \n", ct, timesize, timesize, ct + 11);
    286  1.1    cgd }
    287  1.1    cgd 
    288  1.1    cgd /*
    289  1.1    cgd  * want --
    290  1.1    cgd  *	see if want this entry
    291  1.1    cgd  */
    292  1.5    jtc int
    293  1.1    cgd want(bp, check)
    294  1.5    jtc 	struct utmp *bp;
    295  1.1    cgd 	int check;
    296  1.1    cgd {
    297  1.5    jtc 	ARG *step;
    298  1.1    cgd 
    299  1.1    cgd 	if (check)
    300  1.1    cgd 		/*
    301  1.1    cgd 		 * when uucp and ftp log in over a network, the entry in
    302  1.1    cgd 		 * the utmp file is the name plus their process id.  See
    303  1.1    cgd 		 * etc/ftpd.c and usr.bin/uucp/uucpd.c for more information.
    304  1.1    cgd 		 */
    305  1.1    cgd 		if (!strncmp(bp->ut_line, "ftp", sizeof("ftp") - 1))
    306  1.1    cgd 			bp->ut_line[3] = '\0';
    307  1.1    cgd 		else if (!strncmp(bp->ut_line, "uucp", sizeof("uucp") - 1))
    308  1.1    cgd 			bp->ut_line[4] = '\0';
    309  1.1    cgd 	if (!arglist)
    310  1.5    jtc 		return (YES);
    311  1.1    cgd 
    312  1.1    cgd 	for (step = arglist; step; step = step->next)
    313  1.1    cgd 		switch(step->type) {
    314  1.1    cgd 		case HOST_TYPE:
    315  1.1    cgd 			if (!strncasecmp(step->name, bp->ut_host, UT_HOSTSIZE))
    316  1.5    jtc 				return (YES);
    317  1.1    cgd 			break;
    318  1.1    cgd 		case TTY_TYPE:
    319  1.1    cgd 			if (!strncmp(step->name, bp->ut_line, UT_LINESIZE))
    320  1.5    jtc 				return (YES);
    321  1.1    cgd 			break;
    322  1.1    cgd 		case USER_TYPE:
    323  1.1    cgd 			if (!strncmp(step->name, bp->ut_name, UT_NAMESIZE))
    324  1.5    jtc 				return (YES);
    325  1.1    cgd 			break;
    326  1.1    cgd 	}
    327  1.5    jtc 	return (NO);
    328  1.1    cgd }
    329  1.1    cgd 
    330  1.1    cgd /*
    331  1.1    cgd  * addarg --
    332  1.1    cgd  *	add an entry to a linked list of arguments
    333  1.1    cgd  */
    334  1.5    jtc void
    335  1.1    cgd addarg(type, arg)
    336  1.1    cgd 	int type;
    337  1.1    cgd 	char *arg;
    338  1.1    cgd {
    339  1.5    jtc 	ARG *cur;
    340  1.1    cgd 
    341  1.5    jtc 	if (!(cur = (ARG *)malloc((u_int)sizeof(ARG))))
    342  1.5    jtc 		err(1, "malloc failure");
    343  1.1    cgd 	cur->next = arglist;
    344  1.1    cgd 	cur->type = type;
    345  1.1    cgd 	cur->name = arg;
    346  1.1    cgd 	arglist = cur;
    347  1.1    cgd }
    348  1.1    cgd 
    349  1.1    cgd /*
    350  1.1    cgd  * addtty --
    351  1.1    cgd  *	add an entry to a linked list of ttys
    352  1.1    cgd  */
    353  1.1    cgd TTY *
    354  1.1    cgd addtty(ttyname)
    355  1.1    cgd 	char *ttyname;
    356  1.1    cgd {
    357  1.5    jtc 	TTY *cur;
    358  1.1    cgd 
    359  1.5    jtc 	if (!(cur = (TTY *)malloc((u_int)sizeof(TTY))))
    360  1.5    jtc 		err(1, "malloc failure");
    361  1.1    cgd 	cur->next = ttylist;
    362  1.1    cgd 	cur->logout = currentout;
    363  1.5    jtc 	memmove(cur->tty, ttyname, UT_LINESIZE);
    364  1.5    jtc 	return (ttylist = cur);
    365  1.1    cgd }
    366  1.1    cgd 
    367  1.1    cgd /*
    368  1.1    cgd  * hostconv --
    369  1.1    cgd  *	convert the hostname to search pattern; if the supplied host name
    370  1.1    cgd  *	has a domain attached that is the same as the current domain, rip
    371  1.1    cgd  *	off the domain suffix since that's what login(1) does.
    372  1.1    cgd  */
    373  1.5    jtc void
    374  1.1    cgd hostconv(arg)
    375  1.1    cgd 	char *arg;
    376  1.1    cgd {
    377  1.1    cgd 	static int first = 1;
    378  1.1    cgd 	static char *hostdot, name[MAXHOSTNAMELEN];
    379  1.5    jtc 	char *argdot;
    380  1.1    cgd 
    381  1.5    jtc 	if (!(argdot = strchr(arg, '.')))
    382  1.1    cgd 		return;
    383  1.1    cgd 	if (first) {
    384  1.1    cgd 		first = 0;
    385  1.5    jtc 		if (gethostname(name, sizeof(name)))
    386  1.5    jtc 			err(1, "gethostname");
    387  1.5    jtc 		hostdot = strchr(name, '.');
    388  1.1    cgd 	}
    389  1.1    cgd 	if (hostdot && !strcasecmp(hostdot, argdot))
    390  1.1    cgd 		*argdot = '\0';
    391  1.1    cgd }
    392  1.1    cgd 
    393  1.1    cgd /*
    394  1.1    cgd  * ttyconv --
    395  1.1    cgd  *	convert tty to correct name.
    396  1.1    cgd  */
    397  1.1    cgd char *
    398  1.1    cgd ttyconv(arg)
    399  1.1    cgd 	char *arg;
    400  1.1    cgd {
    401  1.5    jtc 	char *mval;
    402  1.1    cgd 
    403  1.1    cgd 	/*
    404  1.1    cgd 	 * kludge -- we assume that all tty's end with
    405  1.1    cgd 	 * a two character suffix.
    406  1.1    cgd 	 */
    407  1.1    cgd 	if (strlen(arg) == 2) {
    408  1.1    cgd 		/* either 6 for "ttyxx" or 8 for "console" */
    409  1.5    jtc 		if (!(mval = malloc((u_int)8)))
    410  1.5    jtc 			err(1, "malloc failure");
    411  1.1    cgd 		if (!strcmp(arg, "co"))
    412  1.1    cgd 			(void)strcpy(mval, "console");
    413  1.1    cgd 		else {
    414  1.1    cgd 			(void)strcpy(mval, "tty");
    415  1.1    cgd 			(void)strcpy(mval + 3, arg);
    416  1.1    cgd 		}
    417  1.5    jtc 		return (mval);
    418  1.1    cgd 	}
    419  1.1    cgd 	if (!strncmp(arg, _PATH_DEV, sizeof(_PATH_DEV) - 1))
    420  1.5    jtc 		return (arg + 5);
    421  1.5    jtc 	return (arg);
    422  1.1    cgd }
    423  1.1    cgd 
    424  1.1    cgd /*
    425  1.1    cgd  * onintr --
    426  1.1    cgd  *	on interrupt, we inform the user how far we've gotten
    427  1.1    cgd  */
    428  1.1    cgd void
    429  1.1    cgd onintr(signo)
    430  1.1    cgd 	int signo;
    431  1.1    cgd {
    432  1.5    jtc 	char *ct;
    433  1.1    cgd 
    434  1.1    cgd 	ct = ctime(&buf[0].ut_time);
    435  1.7  perry 	printf("\ninterrupted %10.10s %8.8s \n", ct, ct + 11);
    436  1.1    cgd 	if (signo == SIGINT)
    437  1.1    cgd 		exit(1);
    438  1.1    cgd 	(void)fflush(stdout);			/* fix required for rsh */
    439  1.1    cgd }
    440