Home | History | Annotate | Line # | Download | only in last
want.c revision 1.11
      1  1.11     lukem /*	$NetBSD: want.c,v 1.11 2007/10/05 07:27:42 lukem Exp $	*/
      2   1.1  christos 
      3   1.1  christos /*
      4   1.1  christos  * Copyright (c) 1987, 1993, 1994
      5   1.1  christos  *	The Regents of the University of California.  All rights reserved.
      6   1.1  christos  *
      7   1.1  christos  * Redistribution and use in source and binary forms, with or without
      8   1.1  christos  * modification, are permitted provided that the following conditions
      9   1.1  christos  * are met:
     10   1.1  christos  * 1. Redistributions of source code must retain the above copyright
     11   1.1  christos  *    notice, this list of conditions and the following disclaimer.
     12   1.1  christos  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1  christos  *    notice, this list of conditions and the following disclaimer in the
     14   1.1  christos  *    documentation and/or other materials provided with the distribution.
     15   1.2       agc  * 3. Neither the name of the University nor the names of its contributors
     16   1.1  christos  *    may be used to endorse or promote products derived from this software
     17   1.1  christos  *    without specific prior written permission.
     18   1.1  christos  *
     19   1.1  christos  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     20   1.1  christos  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     21   1.1  christos  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     22   1.1  christos  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     23   1.1  christos  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     24   1.1  christos  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     25   1.1  christos  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     26   1.1  christos  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     27   1.1  christos  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     28   1.1  christos  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     29   1.1  christos  * SUCH DAMAGE.
     30   1.1  christos  */
     31   1.1  christos static struct utmp *buf;
     32   1.1  christos 
     33   1.1  christos static void onintr(int);
     34   1.1  christos static int want(struct utmp *, int);
     35   1.5  christos static const char *gethost(struct utmp *, const char *, int);
     36   1.3  christos 
     37   1.3  christos static const char *
     38   1.5  christos /*ARGSUSED*/
     39   1.5  christos gethost(struct utmp *ut, const char *host, int numeric)
     40   1.3  christos {
     41   1.3  christos #if FIRSTVALID == 0
     42   1.5  christos 	return numeric ? "" : host;
     43   1.3  christos #else
     44   1.3  christos 	if (numeric) {
     45   1.3  christos 		static char buf[512];
     46   1.4  christos 		buf[0] = '\0';
     47   1.4  christos 		(void)sockaddr_snprintf(buf, sizeof(buf), "%a",
     48   1.4  christos 		    (struct sockaddr *)&ut->ut_ss);
     49   1.3  christos 		return buf;
     50   1.3  christos 	} else
     51   1.5  christos 		return host;
     52   1.3  christos #endif
     53   1.3  christos }
     54   1.1  christos 
     55   1.5  christos #define NULTERM(what) \
     56   1.5  christos 	if (check ## what) \
     57   1.5  christos 		(void)strlcpy(what ## p = what ## buf, bp->ut_ ## what, \
     58   1.5  christos 		    sizeof(what ## buf)); \
     59   1.5  christos 	else \
     60   1.5  christos 		what ## p = bp->ut_ ## what
     61   1.5  christos 
     62   1.1  christos /*
     63   1.1  christos  * wtmp --
     64   1.1  christos  *	read through the wtmp file
     65   1.1  christos  */
     66   1.1  christos void
     67   1.3  christos wtmp(const char *file, int namesz, int linesz, int hostsz, int numeric)
     68   1.1  christos {
     69   1.1  christos 	struct utmp	*bp;		/* current structure */
     70   1.1  christos 	TTY	*T;			/* tty list entry */
     71   1.1  christos 	struct stat	stb;		/* stat of file for sz */
     72   1.8    cbiere 	off_t	offset;
     73   1.8    cbiere 	int	wfd;
     74   1.1  christos 	char	*ct, *crmsg;
     75   1.1  christos 	size_t  len = sizeof(*buf) * MAXUTMP;
     76   1.5  christos 	char namebuf[sizeof(bp->ut_name) + 1], *namep;
     77   1.5  christos 	char linebuf[sizeof(bp->ut_line) + 1], *linep;
     78   1.5  christos 	char hostbuf[sizeof(bp->ut_host) + 1], *hostp;
     79   1.5  christos 	int checkname = namesz > sizeof(bp->ut_name);
     80   1.5  christos 	int checkline = linesz > sizeof(bp->ut_line);
     81   1.5  christos 	int checkhost = hostsz > sizeof(bp->ut_host);
     82   1.1  christos 
     83   1.1  christos 	if ((buf = malloc(len)) == NULL)
     84   1.8    cbiere 		err(EXIT_FAILURE, "Cannot allocate utmp buffer");
     85   1.1  christos 
     86   1.1  christos 	crmsg = NULL;
     87   1.1  christos 
     88   1.7     pooka 	if (!strcmp(file, "-")) {
     89   1.8    cbiere 		wfd = STDIN_FILENO;
     90   1.8    cbiere 		file = "<stdin>";
     91   1.8    cbiere 	} else if ((wfd = open(file, O_RDONLY, 0)) < 0) {
     92   1.8    cbiere 		err(EXIT_FAILURE, "%s", file);
     93   1.8    cbiere 	}
     94   1.8    cbiere 
     95   1.8    cbiere 	if (lseek(wfd, 0, SEEK_CUR) < 0) {
     96  1.10    cbiere 		const char *dir;
     97  1.10    cbiere 		char *tfile;
     98   1.8    cbiere 		int tempfd;
     99   1.8    cbiere 		ssize_t tlen;
    100   1.8    cbiere 
    101   1.8    cbiere 		if (ESPIPE != errno) {
    102   1.8    cbiere 			err(EXIT_FAILURE, "lseek");
    103   1.8    cbiere 		}
    104  1.10    cbiere 		dir = getenv("TMPDIR");
    105  1.10    cbiere 		if (asprintf(&tfile, "%s/last.XXXXXX", dir ? dir : _PATH_TMP) == -1)
    106  1.10    cbiere 			err(EXIT_FAILURE, "asprintf");
    107   1.8    cbiere 		tempfd = mkstemp(tfile);
    108   1.8    cbiere 		if (tempfd < 0) {
    109   1.8    cbiere 			err(EXIT_FAILURE, "mkstemp");
    110   1.8    cbiere 		}
    111   1.8    cbiere 		unlink(tfile);
    112   1.8    cbiere 		for (;;) {
    113   1.8    cbiere 		   	tlen = read(wfd, buf, len);
    114   1.8    cbiere 			if (tlen < 0) {
    115   1.8    cbiere 				err(1, "%s: read", file);
    116   1.7     pooka 			}
    117   1.8    cbiere 			if (tlen == 0) {
    118   1.8    cbiere 				break;
    119   1.8    cbiere 			}
    120   1.8    cbiere 			if (write(tempfd, buf, tlen) != tlen) {
    121   1.8    cbiere 				err(1, "%s: write", tfile);
    122   1.7     pooka 			}
    123   1.7     pooka 		}
    124   1.8    cbiere 		wfd = tempfd;
    125   1.7     pooka 	}
    126   1.7     pooka 
    127   1.7     pooka 	if (fstat(wfd, &stb) == -1)
    128   1.8    cbiere 		err(EXIT_FAILURE, "%s: fstat", file);
    129   1.8    cbiere 	if (!S_ISREG(stb.st_mode))
    130   1.8    cbiere 		errx(EXIT_FAILURE, "%s: Not a regular file", file);
    131   1.1  christos 
    132   1.1  christos 	buf[FIRSTVALID].ut_timefld = time(NULL);
    133   1.1  christos 	(void)signal(SIGINT, onintr);
    134   1.1  christos 	(void)signal(SIGQUIT, onintr);
    135   1.1  christos 
    136   1.8    cbiere 	offset = stb.st_size;
    137   1.8    cbiere 	/* Ignore trailing garbage or partial record */
    138   1.8    cbiere 	offset -= offset % (off_t) sizeof(*buf);
    139   1.8    cbiere 
    140   1.8    cbiere 	while (offset >= (off_t) sizeof(*buf)) {
    141   1.9    cbiere 		ssize_t ret, i;
    142   1.8    cbiere 		size_t size;
    143   1.8    cbiere 
    144   1.8    cbiere 		size = MIN(len, offset);
    145   1.8    cbiere 		offset -= size; /* Always a multiple of sizeof(*buf) */
    146   1.8    cbiere 		ret = pread(wfd, buf, size, offset);
    147   1.8    cbiere 		if (ret < 0) {
    148   1.8    cbiere 			err(EXIT_FAILURE, "%s: pread", file);
    149   1.8    cbiere 		} else if ((size_t) ret < size) {
    150   1.8    cbiere 			err(EXIT_FAILURE, "%s: Unexpected end of file", file);
    151   1.8    cbiere 		}
    152   1.9    cbiere 
    153   1.9    cbiere 		for (i = ret / sizeof(*buf) - 1; i >= 0; i--) {
    154   1.9    cbiere 			bp = &buf[i];
    155   1.9    cbiere 
    156   1.5  christos 			NULTERM(name);
    157   1.5  christos 			NULTERM(line);
    158   1.5  christos 			NULTERM(host);
    159   1.1  christos 			/*
    160   1.1  christos 			 * if the terminal line is '~', the machine stopped.
    161   1.1  christos 			 * see utmp(5) for more info.
    162   1.1  christos 			 */
    163   1.5  christos 			if (linep[0] == '~' && !linep[1]) {
    164   1.1  christos 				/* everybody just logged out */
    165   1.1  christos 				for (T = ttylist; T; T = T->next)
    166   1.1  christos 					T->logout = -bp->ut_timefld;
    167   1.1  christos 				currentout = -bp->ut_timefld;
    168   1.5  christos 				crmsg = strncmp(namep, "shutdown",
    169   1.1  christos 				    namesz) ? "crash" : "shutdown";
    170   1.1  christos 				if (want(bp, NO)) {
    171   1.1  christos 					ct = fmttime(bp->ut_timefld, fulltime);
    172   1.1  christos 					printf("%-*.*s  %-*.*s %-*.*s %s\n",
    173   1.5  christos 					    namesz, namesz, namep,
    174   1.5  christos 					    linesz, linesz, linep,
    175   1.3  christos 					    hostsz, hostsz,
    176   1.5  christos 					    gethost(bp, hostp, numeric), ct);
    177   1.1  christos 					if (maxrec != -1 && !--maxrec)
    178   1.1  christos 						return;
    179   1.1  christos 				}
    180   1.1  christos 				continue;
    181   1.1  christos 			}
    182   1.1  christos 			/*
    183   1.1  christos 			 * if the line is '{' or '|', date got set; see
    184   1.1  christos 			 * utmp(5) for more info.
    185   1.1  christos 			 */
    186   1.5  christos 			if ((linep[0] == '{' || linep[0] == '|') && !linep[1]) {
    187   1.1  christos 				if (want(bp, NO)) {
    188   1.1  christos 					ct = fmttime(bp->ut_timefld, fulltime);
    189   1.6  ginsbach 					printf("%-*.*s  %-*.*s %-*.*s %s\n",
    190   1.6  ginsbach 					    namesz, namesz, namep,
    191   1.6  ginsbach 					    linesz, linesz, linep,
    192   1.6  ginsbach 					    hostsz, hostsz,
    193   1.6  ginsbach 					    gethost(bp, hostp, numeric),
    194   1.6  ginsbach 					    ct);
    195   1.1  christos 					if (maxrec && !--maxrec)
    196   1.1  christos 						return;
    197   1.1  christos 				}
    198   1.1  christos 				continue;
    199   1.1  christos 			}
    200   1.1  christos 			/* find associated tty */
    201   1.1  christos 			for (T = ttylist;; T = T->next) {
    202   1.1  christos 				if (!T) {
    203   1.1  christos 					/* add new one */
    204   1.5  christos 					T = addtty(linep);
    205   1.1  christos 					break;
    206   1.1  christos 				}
    207   1.5  christos 				if (!strncmp(T->tty, linep, LINESIZE))
    208   1.1  christos 					break;
    209   1.1  christos 			}
    210   1.1  christos 			if (TYPE(bp) == SIGNATURE)
    211   1.1  christos 				continue;
    212   1.5  christos 			if (namep[0] && want(bp, YES)) {
    213   1.1  christos 				ct = fmttime(bp->ut_timefld, fulltime);
    214   1.1  christos 				printf("%-*.*s  %-*.*s %-*.*s %s ",
    215   1.5  christos 				    namesz, namesz, namep,
    216   1.5  christos 				    linesz, linesz, linep,
    217   1.3  christos 				    hostsz, hostsz,
    218   1.5  christos 				    gethost(bp, hostp, numeric),
    219   1.1  christos 				    ct);
    220   1.1  christos 				if (!T->logout)
    221   1.1  christos 					puts("  still logged in");
    222   1.1  christos 				else {
    223   1.8    cbiere 					time_t	delta;			/* time difference */
    224   1.8    cbiere 
    225   1.1  christos 					if (T->logout < 0) {
    226   1.1  christos 						T->logout = -T->logout;
    227   1.1  christos 						printf("- %s", crmsg);
    228   1.1  christos 					}
    229   1.1  christos 					else
    230   1.1  christos 						printf("- %s",
    231   1.1  christos 						    fmttime(T->logout,
    232   1.1  christos 						    fulltime | TIMEONLY));
    233   1.1  christos 					delta = T->logout - bp->ut_timefld;
    234   1.1  christos 					if (delta < SECSPERDAY)
    235   1.1  christos 						printf("  (%s)\n",
    236   1.1  christos 						    fmttime(delta,
    237   1.1  christos 						    fulltime | TIMEONLY | GMT));
    238   1.1  christos 					else
    239   1.1  christos 						printf(" (%ld+%s)\n",
    240   1.1  christos 						    delta / SECSPERDAY,
    241   1.1  christos 						    fmttime(delta,
    242   1.1  christos 						    fulltime | TIMEONLY | GMT));
    243   1.1  christos 				}
    244   1.1  christos 				if (maxrec != -1 && !--maxrec)
    245   1.1  christos 					return;
    246   1.1  christos 			}
    247   1.1  christos 			T->logout = bp->ut_timefld;
    248   1.1  christos 		}
    249   1.1  christos 	}
    250   1.1  christos 	fulltime = 1;	/* show full time */
    251   1.1  christos 	crmsg = fmttime(buf[FIRSTVALID].ut_timefld, FULLTIME);
    252   1.1  christos 	if ((ct = strrchr(file, '/')) != NULL)
    253   1.1  christos 		ct++;
    254   1.1  christos 	printf("\n%s begins %s\n", ct ? ct : file, crmsg);
    255   1.1  christos }
    256   1.1  christos 
    257   1.1  christos /*
    258   1.1  christos  * want --
    259   1.1  christos  *	see if want this entry
    260   1.1  christos  */
    261   1.1  christos static int
    262   1.1  christos want(struct utmp *bp, int check)
    263   1.1  christos {
    264   1.1  christos 	ARG *step;
    265   1.1  christos 
    266   1.1  christos 	if (check) {
    267   1.1  christos 		/*
    268   1.1  christos 		 * when uucp and ftp log in over a network, the entry in
    269   1.1  christos 		 * the utmp file is the name plus their process id.  See
    270   1.1  christos 		 * etc/ftpd.c and usr.bin/uucp/uucpd.c for more information.
    271   1.1  christos 		 */
    272   1.1  christos 		if (!strncmp(bp->ut_line, "ftp", sizeof("ftp") - 1))
    273   1.1  christos 			bp->ut_line[3] = '\0';
    274   1.1  christos 		else if (!strncmp(bp->ut_line, "uucp", sizeof("uucp") - 1))
    275   1.1  christos 			bp->ut_line[4] = '\0';
    276   1.1  christos 	}
    277   1.1  christos 	if (!arglist)
    278   1.1  christos 		return (YES);
    279   1.1  christos 
    280   1.1  christos 	for (step = arglist; step; step = step->next)
    281   1.1  christos 		switch(step->type) {
    282   1.1  christos 		case HOST_TYPE:
    283   1.1  christos 			if (!strncasecmp(step->name, bp->ut_host, HOSTSIZE))
    284   1.1  christos 				return (YES);
    285   1.1  christos 			break;
    286   1.1  christos 		case TTY_TYPE:
    287   1.1  christos 			if (!strncmp(step->name, bp->ut_line, LINESIZE))
    288   1.1  christos 				return (YES);
    289   1.1  christos 			break;
    290   1.1  christos 		case USER_TYPE:
    291   1.1  christos 			if (!strncmp(step->name, bp->ut_name, NAMESIZE))
    292   1.1  christos 				return (YES);
    293   1.1  christos 			break;
    294   1.1  christos 	}
    295   1.1  christos 	return (NO);
    296   1.1  christos }
    297   1.1  christos 
    298   1.1  christos /*
    299   1.1  christos  * onintr --
    300   1.1  christos  *	on interrupt, we inform the user how far we've gotten
    301   1.1  christos  */
    302   1.1  christos static void
    303   1.1  christos onintr(int signo)
    304   1.1  christos {
    305   1.8    cbiere 	/* FIXME: None of this is allowed in a signal handler */
    306   1.1  christos 	printf("\ninterrupted %s\n", fmttime(buf[FIRSTVALID].ut_timefld,
    307   1.1  christos 	    FULLTIME));
    308  1.11     lukem 	if (signo == SIGINT) {
    309  1.11     lukem 		(void)raise_default_signal(signo);
    310   1.8    cbiere 		exit(EXIT_FAILURE);
    311  1.11     lukem 	}
    312   1.1  christos 	(void)fflush(stdout);		/* fix required for rsh */
    313   1.1  christos }
    314