2001-11-24 05:30:17 +03:00
|
|
|
/* $NetBSD: forward.c,v 1.18 2001/11/24 02:30:17 explorer Exp $ */
|
1994-11-23 10:41:55 +03:00
|
|
|
|
1993-04-30 12:04:52 +04:00
|
|
|
/*-
|
1994-11-23 10:41:55 +03:00
|
|
|
* Copyright (c) 1991, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
1993-04-30 12:04:52 +04:00
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* Edward Sze-Tyan Wang.
|
|
|
|
*
|
|
|
|
* 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. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 4. 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.
|
|
|
|
*/
|
|
|
|
|
1997-10-20 03:45:08 +04:00
|
|
|
#include <sys/cdefs.h>
|
1993-04-30 12:04:52 +04:00
|
|
|
#ifndef lint
|
1994-11-23 10:41:55 +03:00
|
|
|
#if 0
|
|
|
|
static char sccsid[] = "@(#)forward.c 8.1 (Berkeley) 6/6/93";
|
|
|
|
#endif
|
2001-11-24 05:30:17 +03:00
|
|
|
__RCSID("$NetBSD: forward.c,v 1.18 2001/11/24 02:30:17 explorer Exp $");
|
1993-04-30 12:04:52 +04:00
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/mman.h>
|
1994-11-23 10:41:55 +03:00
|
|
|
|
|
|
|
#include <limits.h>
|
1993-04-30 12:04:52 +04:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include "extern.h"
|
|
|
|
|
1999-07-21 10:38:49 +04:00
|
|
|
static int rlines __P((FILE *, long, struct stat *));
|
1993-04-30 12:04:52 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* forward -- display the file, from an offset, forward.
|
|
|
|
*
|
|
|
|
* There are eight separate cases for this -- regular and non-regular
|
|
|
|
* files, by bytes or lines and from the beginning or end of the file.
|
|
|
|
*
|
|
|
|
* FBYTES byte offset from the beginning of the file
|
|
|
|
* REG seek
|
|
|
|
* NOREG read, counting bytes
|
|
|
|
*
|
|
|
|
* FLINES line offset from the beginning of the file
|
|
|
|
* REG read, counting lines
|
|
|
|
* NOREG read, counting lines
|
|
|
|
*
|
|
|
|
* RBYTES byte offset from the end of the file
|
|
|
|
* REG seek
|
|
|
|
* NOREG cyclically read characters into a wrap-around buffer
|
|
|
|
*
|
|
|
|
* RLINES
|
|
|
|
* REG mmap the file and step back until reach the correct offset.
|
|
|
|
* NOREG cyclically read lines into a wrap-around array of buffers
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
forward(fp, style, off, sbp)
|
|
|
|
FILE *fp;
|
|
|
|
enum STYLE style;
|
|
|
|
long off;
|
|
|
|
struct stat *sbp;
|
|
|
|
{
|
1997-10-20 03:45:08 +04:00
|
|
|
int ch;
|
1993-04-30 12:04:52 +04:00
|
|
|
struct timeval second;
|
1998-02-10 01:39:41 +03:00
|
|
|
int dostat = 0;
|
|
|
|
struct stat statbuf;
|
|
|
|
off_t lastsize = 0;
|
|
|
|
dev_t lastdev;
|
|
|
|
ino_t lastino;
|
|
|
|
|
|
|
|
/* Keep track of file's previous incarnation. */
|
|
|
|
lastdev = sbp->st_dev;
|
|
|
|
lastino = sbp->st_ino;
|
1993-04-30 12:04:52 +04:00
|
|
|
|
|
|
|
switch(style) {
|
|
|
|
case FBYTES:
|
|
|
|
if (off == 0)
|
|
|
|
break;
|
|
|
|
if (S_ISREG(sbp->st_mode)) {
|
|
|
|
if (sbp->st_size < off)
|
|
|
|
off = sbp->st_size;
|
1994-11-23 10:41:55 +03:00
|
|
|
if (fseek(fp, off, SEEK_SET) == -1) {
|
1993-04-30 12:04:52 +04:00
|
|
|
ierr();
|
1994-11-23 10:41:55 +03:00
|
|
|
return;
|
|
|
|
}
|
1993-04-30 12:04:52 +04:00
|
|
|
} else while (off--)
|
|
|
|
if ((ch = getc(fp)) == EOF) {
|
1994-11-23 10:41:55 +03:00
|
|
|
if (ferror(fp)) {
|
1993-04-30 12:04:52 +04:00
|
|
|
ierr();
|
1994-11-23 10:41:55 +03:00
|
|
|
return;
|
1993-04-30 12:04:52 +04:00
|
|
|
}
|
1994-11-23 10:41:55 +03:00
|
|
|
break;
|
|
|
|
}
|
1993-04-30 12:04:52 +04:00
|
|
|
break;
|
|
|
|
case FLINES:
|
|
|
|
if (off == 0)
|
|
|
|
break;
|
|
|
|
for (;;) {
|
|
|
|
if ((ch = getc(fp)) == EOF) {
|
1994-11-23 10:41:55 +03:00
|
|
|
if (ferror(fp)) {
|
1993-04-30 12:04:52 +04:00
|
|
|
ierr();
|
1994-11-23 10:41:55 +03:00
|
|
|
return;
|
|
|
|
}
|
1993-04-30 12:04:52 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (ch == '\n' && !--off)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case RBYTES:
|
|
|
|
if (S_ISREG(sbp->st_mode)) {
|
|
|
|
if (sbp->st_size >= off &&
|
1994-11-23 10:41:55 +03:00
|
|
|
fseek(fp, -off, SEEK_END) == -1) {
|
1993-04-30 12:04:52 +04:00
|
|
|
ierr();
|
1994-11-23 10:41:55 +03:00
|
|
|
return;
|
|
|
|
}
|
1993-04-30 12:04:52 +04:00
|
|
|
} else if (off == 0) {
|
|
|
|
while (getc(fp) != EOF);
|
1994-11-23 10:41:55 +03:00
|
|
|
if (ferror(fp)) {
|
1993-04-30 12:04:52 +04:00
|
|
|
ierr();
|
1994-11-23 10:41:55 +03:00
|
|
|
return;
|
|
|
|
}
|
1999-07-21 10:38:49 +04:00
|
|
|
} else {
|
|
|
|
if (bytes(fp, off))
|
|
|
|
return;
|
|
|
|
}
|
1993-04-30 12:04:52 +04:00
|
|
|
break;
|
|
|
|
case RLINES:
|
1998-11-03 17:26:45 +03:00
|
|
|
if (S_ISREG(sbp->st_mode)) {
|
1993-04-30 12:04:52 +04:00
|
|
|
if (!off) {
|
1994-11-23 10:41:55 +03:00
|
|
|
if (fseek(fp, 0L, SEEK_END) == -1) {
|
1993-04-30 12:04:52 +04:00
|
|
|
ierr();
|
1994-11-23 10:41:55 +03:00
|
|
|
return;
|
|
|
|
}
|
1999-07-21 10:38:49 +04:00
|
|
|
} else {
|
|
|
|
if (rlines(fp, off, sbp))
|
|
|
|
return;
|
|
|
|
}
|
1998-12-20 01:27:54 +03:00
|
|
|
} else if (off == 0) {
|
1993-04-30 12:04:52 +04:00
|
|
|
while (getc(fp) != EOF);
|
1994-11-23 10:41:55 +03:00
|
|
|
if (ferror(fp)) {
|
1993-04-30 12:04:52 +04:00
|
|
|
ierr();
|
1994-11-23 10:41:55 +03:00
|
|
|
return;
|
|
|
|
}
|
1999-07-21 10:38:49 +04:00
|
|
|
} else {
|
|
|
|
if (lines(fp, off))
|
|
|
|
return;
|
|
|
|
}
|
1993-04-30 12:04:52 +04:00
|
|
|
break;
|
1997-10-20 03:45:08 +04:00
|
|
|
default:
|
|
|
|
break;
|
1993-04-30 12:04:52 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
for (;;) {
|
1998-02-10 01:39:41 +03:00
|
|
|
while ((ch = getc(fp)) != EOF) {
|
1993-04-30 12:04:52 +04:00
|
|
|
if (putchar(ch) == EOF)
|
|
|
|
oerr();
|
1998-02-10 01:39:41 +03:00
|
|
|
}
|
1994-11-23 10:41:55 +03:00
|
|
|
if (ferror(fp)) {
|
1993-04-30 12:04:52 +04:00
|
|
|
ierr();
|
1994-11-23 10:41:55 +03:00
|
|
|
return;
|
|
|
|
}
|
1993-04-30 12:04:52 +04:00
|
|
|
(void)fflush(stdout);
|
|
|
|
if (!fflag)
|
|
|
|
break;
|
1996-02-13 19:49:10 +03:00
|
|
|
/*
|
|
|
|
* We pause for one second after displaying any data that has
|
|
|
|
* accumulated since we read the file. Since sleep(3) takes
|
|
|
|
* eight system calls, use select() instead.
|
|
|
|
*/
|
|
|
|
second.tv_sec = 1;
|
|
|
|
second.tv_usec = 0;
|
|
|
|
if (select(0, NULL, NULL, NULL, &second) == -1)
|
1994-11-23 10:41:55 +03:00
|
|
|
err(1, "select: %s", strerror(errno));
|
1993-04-30 12:04:52 +04:00
|
|
|
clearerr(fp);
|
1998-02-10 01:39:41 +03:00
|
|
|
|
|
|
|
if (fflag == 1)
|
|
|
|
continue;
|
|
|
|
/*
|
|
|
|
* We restat the original filename every five seconds. If
|
|
|
|
* the size is ever smaller than the last time we read it,
|
|
|
|
* the file has probably been truncated; if the inode or
|
|
|
|
* or device number are different, it has been rotated.
|
|
|
|
* This causes us to close it, reopen it, and continue
|
|
|
|
* the tail -f. If stat returns an error (say, because
|
|
|
|
* the file has been removed), just continue with what
|
|
|
|
* we've got open now.
|
|
|
|
*/
|
|
|
|
if (dostat > 0) {
|
|
|
|
dostat -= 1;
|
|
|
|
} else {
|
|
|
|
dostat = 5;
|
|
|
|
if (stat(fname, &statbuf) == 0) {
|
|
|
|
if (statbuf.st_dev != lastdev ||
|
|
|
|
statbuf.st_ino != lastino ||
|
|
|
|
statbuf.st_size < lastsize) {
|
|
|
|
lastdev = statbuf.st_dev;
|
|
|
|
lastino = statbuf.st_ino;
|
|
|
|
lastsize = 0;
|
|
|
|
fclose(fp);
|
|
|
|
if ((fp = fopen(fname, "r")) == NULL)
|
|
|
|
err(1, "can't reopen %s: %s",
|
|
|
|
fname, strerror(errno));
|
|
|
|
} else {
|
|
|
|
lastsize = statbuf.st_size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1993-04-30 12:04:52 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* rlines -- display the last offset lines of the file.
|
1999-07-21 10:38:49 +04:00
|
|
|
*
|
|
|
|
* Non-zero return means than a (non-fatal) error occurred.
|
1993-04-30 12:04:52 +04:00
|
|
|
*/
|
1999-07-21 10:38:49 +04:00
|
|
|
static int
|
1993-04-30 12:04:52 +04:00
|
|
|
rlines(fp, off, sbp)
|
|
|
|
FILE *fp;
|
|
|
|
long off;
|
|
|
|
struct stat *sbp;
|
|
|
|
{
|
2001-11-21 09:47:07 +03:00
|
|
|
off_t file_size;
|
|
|
|
off_t file_remaining;
|
1997-10-20 03:45:08 +04:00
|
|
|
char *p;
|
1994-11-23 10:11:00 +03:00
|
|
|
char *start;
|
2001-11-21 09:47:07 +03:00
|
|
|
off_t mmap_size;
|
|
|
|
off_t mmap_offset;
|
|
|
|
off_t mmap_remaining;
|
1993-04-30 12:04:52 +04:00
|
|
|
|
2001-11-21 09:47:07 +03:00
|
|
|
#define MMAP_MAXSIZE (10 * 1024 * 1024)
|
|
|
|
|
|
|
|
if (!(file_size = sbp->st_size))
|
1999-07-21 10:38:49 +04:00
|
|
|
return (0);
|
2001-11-21 09:47:07 +03:00
|
|
|
file_remaining = file_size;
|
1993-04-30 12:04:52 +04:00
|
|
|
|
2001-11-24 05:30:17 +03:00
|
|
|
if (file_remaining > MMAP_MAXSIZE) {
|
2001-11-21 09:47:07 +03:00
|
|
|
mmap_size = MMAP_MAXSIZE;
|
2001-11-24 05:30:17 +03:00
|
|
|
mmap_offset = file_remaining - MMAP_MAXSIZE;
|
2001-11-21 09:47:07 +03:00
|
|
|
} else {
|
2001-11-24 05:30:17 +03:00
|
|
|
mmap_size = file_remaining;
|
2001-11-21 09:47:07 +03:00
|
|
|
mmap_offset = 0;
|
1994-11-23 10:41:55 +03:00
|
|
|
}
|
|
|
|
|
2001-11-21 09:47:07 +03:00
|
|
|
while (off) {
|
|
|
|
start = mmap(NULL, (size_t)mmap_size, PROT_READ,
|
|
|
|
MAP_FILE|MAP_SHARED, fileno(fp), mmap_offset);
|
|
|
|
if (start == MAP_FAILED) {
|
|
|
|
err(0, "%s: %s", fname, strerror(EFBIG));
|
|
|
|
return (1);
|
|
|
|
}
|
1993-04-30 12:04:52 +04:00
|
|
|
|
2001-11-21 09:47:07 +03:00
|
|
|
mmap_remaining = mmap_size;
|
|
|
|
/* Last char is special, ignore whether newline or not. */
|
|
|
|
for (p = start + mmap_remaining - 1 ; --mmap_remaining ; )
|
|
|
|
if (*--p == '\n' && !--off) {
|
|
|
|
++p;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
file_remaining -= mmap_size - mmap_remaining;
|
|
|
|
|
|
|
|
if (off == 0)
|
1993-04-30 12:04:52 +04:00
|
|
|
break;
|
2001-11-21 09:47:07 +03:00
|
|
|
|
2001-11-24 05:30:17 +03:00
|
|
|
if (file_remaining == 0)
|
|
|
|
break;
|
|
|
|
|
2001-11-21 09:47:07 +03:00
|
|
|
if (munmap(start, mmap_size)) {
|
|
|
|
err(0, "%s: %s", fname, strerror(errno));
|
|
|
|
return (1);
|
1993-04-30 12:04:52 +04:00
|
|
|
}
|
|
|
|
|
2001-11-21 09:47:07 +03:00
|
|
|
if (mmap_offset >= MMAP_MAXSIZE) {
|
|
|
|
mmap_offset -= MMAP_MAXSIZE;
|
|
|
|
} else {
|
|
|
|
mmap_offset = 0;
|
|
|
|
mmap_size = file_remaining;
|
|
|
|
}
|
1994-11-23 10:41:55 +03:00
|
|
|
}
|
2001-11-21 09:47:07 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Output the (perhaps partial) data in this mmap'd block.
|
|
|
|
*/
|
|
|
|
WR(p, mmap_size - mmap_remaining);
|
|
|
|
file_remaining += mmap_size - mmap_remaining;
|
|
|
|
if (munmap(start, mmap_size)) {
|
1994-11-23 10:41:55 +03:00
|
|
|
err(0, "%s: %s", fname, strerror(errno));
|
1999-07-21 10:38:49 +04:00
|
|
|
return (1);
|
1994-11-23 10:11:00 +03:00
|
|
|
}
|
2001-11-21 09:47:07 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Set the file pointer to reflect the length displayed.
|
|
|
|
* This will cause the caller to redisplay the data if/when
|
|
|
|
* needed.
|
|
|
|
*/
|
|
|
|
if (fseeko(fp, file_remaining, SEEK_SET) == -1) {
|
|
|
|
ierr();
|
|
|
|
return (1);
|
|
|
|
}
|
1999-07-21 10:38:49 +04:00
|
|
|
return (0);
|
1993-04-30 12:04:52 +04:00
|
|
|
}
|