2000-02-08 19:58:47 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
2001-01-05 02:57:53 +00:00
|
|
|
/*
|
|
|
|
* Mini tail implementation for busybox
|
|
|
|
*
|
|
|
|
* Copyright (C) 2001 by Matt Kraai <kraai@alumni.carnegiemellon.edu>
|
|
|
|
*
|
2010-08-16 18:14:46 +00:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
2001-01-05 02:57:53 +00:00
|
|
|
*/
|
2000-01-25 18:13:53 +00:00
|
|
|
|
2003-03-19 09:13:01 +00:00
|
|
|
/* BB_AUDIT SUSv3 compliant (need fancy for -c) */
|
|
|
|
/* BB_AUDIT GNU compatible -c, -q, and -v options in 'fancy' configuration. */
|
|
|
|
/* http://www.opengroup.org/onlinepubs/007904975/utilities/tail.html */
|
2000-01-25 18:13:53 +00:00
|
|
|
|
2003-03-19 09:13:01 +00:00
|
|
|
/* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org)
|
|
|
|
*
|
|
|
|
* Pretty much rewritten to fix numerous bugs and reduce realloc() calls.
|
|
|
|
* Bugs fixed (although I may have forgotten one or two... it was pretty bad)
|
|
|
|
* 1) mixing printf/write without fflush()ing stdout
|
|
|
|
* 2) no check that any open files are present
|
|
|
|
* 3) optstring had -q taking an arg
|
|
|
|
* 4) no error checking on write in some cases, and a warning even then
|
|
|
|
* 5) q and s interaction bug
|
|
|
|
* 6) no check for lseek error
|
|
|
|
* 7) lseek attempted when count==0 even if arg was +0 (from top)
|
|
|
|
*/
|
|
|
|
|
2011-03-31 12:43:25 +00:00
|
|
|
//usage:#define tail_trivial_usage
|
|
|
|
//usage: "[OPTIONS] [FILE]..."
|
|
|
|
//usage:#define tail_full_usage "\n\n"
|
|
|
|
//usage: "Print last 10 lines of each FILE (or stdin) to stdout.\n"
|
|
|
|
//usage: "With more than one FILE, precede each with a filename header.\n"
|
|
|
|
//usage: "\n -f Print data as file grows"
|
|
|
|
//usage: IF_FEATURE_FANCY_TAIL(
|
|
|
|
//usage: "\n -s SECONDS Wait SECONDS between reads with -f"
|
|
|
|
//usage: )
|
|
|
|
//usage: "\n -n N[kbm] Print last N lines"
|
|
|
|
//usage: IF_FEATURE_FANCY_TAIL(
|
|
|
|
//usage: "\n -c N[kbm] Print last N bytes"
|
|
|
|
//usage: "\n -q Never print headers"
|
|
|
|
//usage: "\n -v Always print headers"
|
|
|
|
//usage: "\n"
|
|
|
|
//usage: "\nN may be suffixed by k (x1024), b (x512), or m (x1024^2)."
|
|
|
|
//usage: "\nIf N starts with a '+', output begins with the Nth item from the start"
|
|
|
|
//usage: "\nof each file, not from the end."
|
|
|
|
//usage: )
|
|
|
|
//usage:
|
|
|
|
//usage:#define tail_example_usage
|
|
|
|
//usage: "$ tail -n 1 /etc/resolv.conf\n"
|
|
|
|
//usage: "nameserver 10.0.0.1\n"
|
|
|
|
|
2007-05-26 19:00:18 +00:00
|
|
|
#include "libbb.h"
|
2000-01-25 18:13:53 +00:00
|
|
|
|
2001-02-05 17:50:03 +00:00
|
|
|
static const struct suffix_mult tail_suffixes[] = {
|
2000-12-18 21:38:57 +00:00
|
|
|
{ "b", 512 },
|
|
|
|
{ "k", 1024 },
|
2006-12-22 16:06:16 +00:00
|
|
|
{ "m", 1024*1024 },
|
2009-09-06 10:47:55 +00:00
|
|
|
{ "", 0 }
|
2000-12-18 21:38:57 +00:00
|
|
|
};
|
|
|
|
|
2007-04-04 20:29:15 +00:00
|
|
|
struct globals {
|
2011-05-19 22:30:04 +00:00
|
|
|
bool from_top;
|
|
|
|
bool exitcode;
|
2010-02-04 14:00:15 +00:00
|
|
|
} FIX_ALIASING;
|
2007-04-04 20:29:15 +00:00
|
|
|
#define G (*(struct globals*)&bb_common_bufsiz1)
|
2001-01-05 02:57:53 +00:00
|
|
|
|
2006-08-28 23:31:54 +00:00
|
|
|
static void tail_xprint_header(const char *fmt, const char *filename)
|
1999-12-08 23:19:36 +00:00
|
|
|
{
|
2006-12-22 16:06:16 +00:00
|
|
|
if (fdprintf(STDOUT_FILENO, fmt, filename) < 0)
|
2003-03-19 09:13:01 +00:00
|
|
|
bb_perror_nomsg_and_die();
|
1999-12-08 23:19:36 +00:00
|
|
|
}
|
|
|
|
|
2003-03-19 09:13:01 +00:00
|
|
|
static ssize_t tail_read(int fd, char *buf, size_t count)
|
1999-12-08 23:19:36 +00:00
|
|
|
{
|
2003-03-19 09:13:01 +00:00
|
|
|
ssize_t r;
|
2007-10-02 10:17:56 +00:00
|
|
|
off_t current;
|
2005-07-20 19:46:32 +00:00
|
|
|
struct stat sbuf;
|
2003-03-19 09:13:01 +00:00
|
|
|
|
2007-10-02 10:17:56 +00:00
|
|
|
/* /proc files report zero st_size, don't lseek them. */
|
2009-08-10 01:16:18 +00:00
|
|
|
if (fstat(fd, &sbuf) == 0 && sbuf.st_size > 0) {
|
2009-08-09 20:06:56 +00:00
|
|
|
current = lseek(fd, 0, SEEK_CUR);
|
2007-10-02 10:17:56 +00:00
|
|
|
if (sbuf.st_size < current)
|
2009-08-10 01:16:18 +00:00
|
|
|
xlseek(fd, 0, SEEK_SET);
|
2009-08-09 20:06:56 +00:00
|
|
|
}
|
2007-10-02 10:17:56 +00:00
|
|
|
|
2007-10-05 19:17:16 +00:00
|
|
|
r = full_read(fd, buf, count);
|
2006-12-22 16:06:16 +00:00
|
|
|
if (r < 0) {
|
2006-06-03 22:45:37 +00:00
|
|
|
bb_perror_msg(bb_msg_read_error);
|
2011-05-19 22:30:04 +00:00
|
|
|
G.exitcode = EXIT_FAILURE;
|
2002-05-17 22:18:04 +00:00
|
|
|
}
|
|
|
|
|
2003-03-19 09:13:01 +00:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2010-06-02 10:57:26 +00:00
|
|
|
#define header_fmt_str "\n==> %s <==\n"
|
2003-03-19 09:13:01 +00:00
|
|
|
|
2007-04-16 22:32:04 +00:00
|
|
|
static unsigned eat_num(const char *p)
|
|
|
|
{
|
2007-10-02 10:17:56 +00:00
|
|
|
if (*p == '-')
|
|
|
|
p++;
|
|
|
|
else if (*p == '+') {
|
|
|
|
p++;
|
2011-05-19 22:30:04 +00:00
|
|
|
G.from_top = 1;
|
2007-10-02 10:17:56 +00:00
|
|
|
}
|
2007-01-24 21:38:10 +00:00
|
|
|
return xatou_sfx(p, tail_suffixes);
|
|
|
|
}
|
|
|
|
|
2007-10-11 10:05:36 +00:00
|
|
|
int tail_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2003-03-19 09:13:01 +00:00
|
|
|
int tail_main(int argc, char **argv)
|
|
|
|
{
|
2006-12-22 16:06:16 +00:00
|
|
|
unsigned count = 10;
|
2006-11-27 14:44:18 +00:00
|
|
|
unsigned sleep_period = 1;
|
2007-05-08 17:27:17 +00:00
|
|
|
const char *str_c, *str_n;
|
2003-03-19 09:13:01 +00:00
|
|
|
|
|
|
|
char *tailbuf;
|
|
|
|
size_t tailbufsize;
|
2009-07-21 22:31:27 +00:00
|
|
|
unsigned header_threshhold = 1;
|
|
|
|
unsigned nfiles;
|
|
|
|
int i, opt;
|
2003-03-19 09:13:01 +00:00
|
|
|
|
2006-12-22 16:06:16 +00:00
|
|
|
int *fds;
|
2003-03-19 09:13:01 +00:00
|
|
|
const char *fmt;
|
|
|
|
|
2006-12-22 13:56:36 +00:00
|
|
|
#if ENABLE_INCLUDE_SUSv2 || ENABLE_FEATURE_FANCY_TAIL
|
2003-03-19 09:13:01 +00:00
|
|
|
/* Allow legacy syntax of an initial numeric option without -n. */
|
2008-03-17 09:07:36 +00:00
|
|
|
if (argv[1] && (argv[1][0] == '+' || argv[1][0] == '-')
|
2006-11-27 14:44:18 +00:00
|
|
|
&& isdigit(argv[1][1])
|
|
|
|
) {
|
2009-03-27 02:36:02 +00:00
|
|
|
count = eat_num(argv[1]);
|
2008-03-17 09:07:36 +00:00
|
|
|
argv++;
|
|
|
|
argc--;
|
2003-03-19 09:13:01 +00:00
|
|
|
}
|
2005-12-11 03:09:05 +00:00
|
|
|
#endif
|
2003-03-19 09:13:01 +00:00
|
|
|
|
2009-07-21 22:31:27 +00:00
|
|
|
/* -s NUM, -F imlies -f */
|
|
|
|
IF_FEATURE_FANCY_TAIL(opt_complementary = "s+:Ff";)
|
|
|
|
opt = getopt32(argv, "fc:n:" IF_FEATURE_FANCY_TAIL("qs:vF"),
|
2009-04-21 11:09:40 +00:00
|
|
|
&str_c, &str_n IF_FEATURE_FANCY_TAIL(,&sleep_period));
|
2006-12-22 16:06:16 +00:00
|
|
|
#define FOLLOW (opt & 0x1)
|
|
|
|
#define COUNT_BYTES (opt & 0x2)
|
|
|
|
//if (opt & 0x1) // -f
|
2007-01-24 21:38:10 +00:00
|
|
|
if (opt & 0x2) count = eat_num(str_c); // -c
|
|
|
|
if (opt & 0x4) count = eat_num(str_n); // -n
|
2005-12-13 10:48:45 +00:00
|
|
|
#if ENABLE_FEATURE_FANCY_TAIL
|
2009-07-21 22:31:27 +00:00
|
|
|
/* q: make it impossible for nfiles to be > header_threshhold */
|
|
|
|
if (opt & 0x8) header_threshhold = UINT_MAX; // -q
|
2009-08-09 20:06:56 +00:00
|
|
|
//if (opt & 0x10) // -s
|
2006-12-22 16:06:16 +00:00
|
|
|
if (opt & 0x20) header_threshhold = 0; // -v
|
2009-08-09 20:06:56 +00:00
|
|
|
# define FOLLOW_RETRY (opt & 0x40)
|
2009-07-21 22:31:27 +00:00
|
|
|
#else
|
2009-08-09 20:06:56 +00:00
|
|
|
# define FOLLOW_RETRY 0
|
2001-01-05 02:57:53 +00:00
|
|
|
#endif
|
2006-12-21 00:43:06 +00:00
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
2001-01-05 02:57:53 +00:00
|
|
|
|
|
|
|
/* open all the files */
|
2009-07-21 22:31:27 +00:00
|
|
|
fds = xmalloc(sizeof(fds[0]) * (argc + 1));
|
2008-03-17 09:07:36 +00:00
|
|
|
if (!argv[0]) {
|
2003-03-19 09:13:01 +00:00
|
|
|
struct stat statbuf;
|
|
|
|
|
2009-07-21 22:31:27 +00:00
|
|
|
if (fstat(STDIN_FILENO, &statbuf) == 0
|
|
|
|
&& S_ISFIFO(statbuf.st_mode)
|
|
|
|
) {
|
2006-12-22 16:06:16 +00:00
|
|
|
opt &= ~1; /* clear FOLLOW */
|
2000-08-02 16:42:58 +00:00
|
|
|
}
|
2009-07-21 22:31:27 +00:00
|
|
|
argv[0] = (char *) bb_msg_standard_input;
|
2003-03-19 09:13:01 +00:00
|
|
|
}
|
2008-03-17 09:07:36 +00:00
|
|
|
nfiles = i = 0;
|
2003-03-19 09:13:01 +00:00
|
|
|
do {
|
2008-03-17 09:07:36 +00:00
|
|
|
int fd = open_or_warn_stdin(argv[i]);
|
2009-07-21 22:31:27 +00:00
|
|
|
if (fd < 0 && !FOLLOW_RETRY) {
|
2011-05-19 22:30:04 +00:00
|
|
|
G.exitcode = EXIT_FAILURE;
|
2007-04-04 20:29:15 +00:00
|
|
|
continue;
|
2003-03-19 09:13:01 +00:00
|
|
|
}
|
2008-03-17 09:07:36 +00:00
|
|
|
fds[nfiles] = fd;
|
2007-04-04 20:29:15 +00:00
|
|
|
argv[nfiles++] = argv[i];
|
2003-03-19 09:13:01 +00:00
|
|
|
} while (++i < argc);
|
|
|
|
|
2006-12-22 16:06:16 +00:00
|
|
|
if (!nfiles)
|
2003-03-19 09:13:01 +00:00
|
|
|
bb_error_msg_and_die("no files");
|
|
|
|
|
2008-02-19 00:38:10 +00:00
|
|
|
/* prepare the buffer */
|
2003-03-19 09:13:01 +00:00
|
|
|
tailbufsize = BUFSIZ;
|
2011-05-19 22:30:04 +00:00
|
|
|
if (!G.from_top && COUNT_BYTES) {
|
2008-02-19 00:38:10 +00:00
|
|
|
if (tailbufsize < count + BUFSIZ) {
|
2003-03-19 09:13:01 +00:00
|
|
|
tailbufsize = count + BUFSIZ;
|
|
|
|
}
|
|
|
|
}
|
2011-05-19 22:30:04 +00:00
|
|
|
/* tail -c1024m REGULAR_FILE doesn't really need 1G mem block.
|
|
|
|
* (In fact, it doesn't need ANY memory). So delay allocation.
|
|
|
|
*/
|
|
|
|
tailbuf = NULL;
|
2003-10-31 00:35:59 +00:00
|
|
|
|
2008-02-19 00:38:10 +00:00
|
|
|
/* tail the files */
|
2011-05-19 22:30:04 +00:00
|
|
|
|
|
|
|
fmt = header_fmt_str + 1; /* skip leading newline in the header on the first output */
|
2003-03-19 09:13:01 +00:00
|
|
|
i = 0;
|
|
|
|
do {
|
2009-07-21 22:31:27 +00:00
|
|
|
char *buf;
|
|
|
|
int taillen;
|
|
|
|
int newlines_seen;
|
|
|
|
unsigned seen;
|
|
|
|
int nread;
|
2009-08-10 01:16:18 +00:00
|
|
|
int fd = fds[i];
|
2009-07-21 22:31:27 +00:00
|
|
|
|
2009-08-10 01:16:18 +00:00
|
|
|
if (ENABLE_FEATURE_FANCY_TAIL && fd < 0)
|
2009-07-21 22:31:27 +00:00
|
|
|
continue; /* may happen with -E */
|
|
|
|
|
2003-03-19 09:13:01 +00:00
|
|
|
if (nfiles > header_threshhold) {
|
|
|
|
tail_xprint_header(fmt, argv[i]);
|
2010-06-02 10:57:26 +00:00
|
|
|
fmt = header_fmt_str;
|
2003-03-19 09:13:01 +00:00
|
|
|
}
|
|
|
|
|
2011-05-19 22:30:04 +00:00
|
|
|
if (!G.from_top) {
|
2009-08-10 01:16:18 +00:00
|
|
|
off_t current = lseek(fd, 0, SEEK_END);
|
2008-03-23 03:28:40 +00:00
|
|
|
if (current > 0) {
|
2009-08-10 01:16:18 +00:00
|
|
|
unsigned off;
|
|
|
|
if (COUNT_BYTES) {
|
|
|
|
/* Optimizing count-bytes case if the file is seekable.
|
|
|
|
* Beware of backing up too far.
|
|
|
|
* Also we exclude files with size 0 (because of /proc/xxx) */
|
|
|
|
if (count == 0)
|
|
|
|
continue; /* showing zero bytes is easy :) */
|
|
|
|
current -= count;
|
|
|
|
if (current < 0)
|
|
|
|
current = 0;
|
|
|
|
xlseek(fd, current, SEEK_SET);
|
|
|
|
bb_copyfd_size(fd, STDOUT_FILENO, count);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
#if 1 /* This is technically incorrect for *LONG* strings, but very useful */
|
|
|
|
/* Optimizing count-lines case if the file is seekable.
|
|
|
|
* We assume the lines are <64k.
|
|
|
|
* (Users complain that tail takes too long
|
|
|
|
* on multi-gigabyte files) */
|
|
|
|
off = (count | 0xf); /* for small counts, be more paranoid */
|
|
|
|
if (off > (INT_MAX / (64*1024)))
|
|
|
|
off = (INT_MAX / (64*1024));
|
|
|
|
current -= off * (64*1024);
|
2008-03-23 03:28:40 +00:00
|
|
|
if (current < 0)
|
|
|
|
current = 0;
|
2009-08-10 01:16:18 +00:00
|
|
|
xlseek(fd, current, SEEK_SET);
|
|
|
|
#endif
|
2008-02-19 00:38:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-05-19 22:30:04 +00:00
|
|
|
if (!tailbuf)
|
|
|
|
tailbuf = xmalloc(tailbufsize);
|
|
|
|
|
2003-03-19 09:13:01 +00:00
|
|
|
buf = tailbuf;
|
|
|
|
taillen = 0;
|
2009-08-09 20:06:56 +00:00
|
|
|
/* "We saw 1st line/byte".
|
2009-08-10 01:16:18 +00:00
|
|
|
* Used only by +N code ("start from Nth", 1-based): */
|
2003-03-19 09:13:01 +00:00
|
|
|
seen = 1;
|
2008-02-19 00:38:10 +00:00
|
|
|
newlines_seen = 0;
|
2009-08-10 01:16:18 +00:00
|
|
|
while ((nread = tail_read(fd, buf, tailbufsize-taillen)) > 0) {
|
2011-05-19 22:30:04 +00:00
|
|
|
if (G.from_top) {
|
2009-07-21 22:31:27 +00:00
|
|
|
int nwrite = nread;
|
2003-03-19 09:13:01 +00:00
|
|
|
if (seen < count) {
|
2009-08-09 20:06:56 +00:00
|
|
|
/* We need to skip a few more bytes/lines */
|
2006-12-22 16:06:16 +00:00
|
|
|
if (COUNT_BYTES) {
|
2003-03-19 09:13:01 +00:00
|
|
|
nwrite -= (count - seen);
|
|
|
|
seen = count;
|
2003-10-31 00:35:59 +00:00
|
|
|
} else {
|
2009-07-21 22:31:27 +00:00
|
|
|
char *s = buf;
|
2003-03-19 09:13:01 +00:00
|
|
|
do {
|
|
|
|
--nwrite;
|
2006-12-22 16:06:16 +00:00
|
|
|
if (*s++ == '\n' && ++seen == count) {
|
2001-01-05 02:57:53 +00:00
|
|
|
break;
|
|
|
|
}
|
2003-03-19 09:13:01 +00:00
|
|
|
} while (nwrite);
|
2001-01-05 02:57:53 +00:00
|
|
|
}
|
|
|
|
}
|
2010-03-12 21:16:25 +00:00
|
|
|
if (nwrite > 0)
|
|
|
|
xwrite(STDOUT_FILENO, buf + nread - nwrite, nwrite);
|
2003-03-19 09:13:01 +00:00
|
|
|
} else if (count) {
|
2006-12-22 16:06:16 +00:00
|
|
|
if (COUNT_BYTES) {
|
2003-03-19 09:13:01 +00:00
|
|
|
taillen += nread;
|
2008-05-13 02:27:31 +00:00
|
|
|
if (taillen > (int)count) {
|
2003-03-19 09:13:01 +00:00
|
|
|
memmove(tailbuf, tailbuf + taillen - count, count);
|
|
|
|
taillen = count;
|
2001-01-05 02:57:53 +00:00
|
|
|
}
|
2003-10-31 00:35:59 +00:00
|
|
|
} else {
|
2003-03-19 09:13:01 +00:00
|
|
|
int k = nread;
|
2008-02-19 00:38:10 +00:00
|
|
|
int newlines_in_buf = 0;
|
2003-03-19 09:13:01 +00:00
|
|
|
|
2008-02-19 00:38:10 +00:00
|
|
|
do { /* count '\n' in last read */
|
|
|
|
k--;
|
2003-03-19 09:13:01 +00:00
|
|
|
if (buf[k] == '\n') {
|
2008-02-19 00:38:10 +00:00
|
|
|
newlines_in_buf++;
|
2003-03-19 09:13:01 +00:00
|
|
|
}
|
2008-02-19 00:38:10 +00:00
|
|
|
} while (k);
|
2001-01-05 02:57:53 +00:00
|
|
|
|
2008-05-13 02:27:31 +00:00
|
|
|
if (newlines_seen + newlines_in_buf < (int)count) {
|
2008-02-19 00:38:10 +00:00
|
|
|
newlines_seen += newlines_in_buf;
|
2003-03-19 09:13:01 +00:00
|
|
|
taillen += nread;
|
|
|
|
} else {
|
2008-02-19 00:38:10 +00:00
|
|
|
int extra = (buf[nread-1] != '\n');
|
2009-07-21 22:31:27 +00:00
|
|
|
char *s;
|
2003-03-19 09:13:01 +00:00
|
|
|
|
2008-02-19 00:38:10 +00:00
|
|
|
k = newlines_seen + newlines_in_buf + extra - count;
|
2003-03-19 09:13:01 +00:00
|
|
|
s = tailbuf;
|
|
|
|
while (k) {
|
|
|
|
if (*s == '\n') {
|
2008-02-19 00:38:10 +00:00
|
|
|
k--;
|
2003-03-19 09:13:01 +00:00
|
|
|
}
|
2008-02-19 00:38:10 +00:00
|
|
|
s++;
|
2003-03-19 09:13:01 +00:00
|
|
|
}
|
|
|
|
taillen += nread - (s - tailbuf);
|
|
|
|
memmove(tailbuf, s, taillen);
|
2008-02-19 00:38:10 +00:00
|
|
|
newlines_seen = count - extra;
|
2003-03-19 09:13:01 +00:00
|
|
|
}
|
2008-05-13 02:27:31 +00:00
|
|
|
if (tailbufsize < (size_t)taillen + BUFSIZ) {
|
2003-03-19 09:13:01 +00:00
|
|
|
tailbufsize = taillen + BUFSIZ;
|
|
|
|
tailbuf = xrealloc(tailbuf, tailbufsize);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
buf = tailbuf + taillen;
|
2000-08-02 16:42:58 +00:00
|
|
|
}
|
2008-02-19 00:38:10 +00:00
|
|
|
} /* while (tail_read() > 0) */
|
2011-05-19 22:30:04 +00:00
|
|
|
if (!G.from_top) {
|
2006-12-22 16:06:16 +00:00
|
|
|
xwrite(STDOUT_FILENO, tailbuf, taillen);
|
2001-01-05 02:57:53 +00:00
|
|
|
}
|
2003-03-19 09:13:01 +00:00
|
|
|
} while (++i < nfiles);
|
2001-01-05 02:57:53 +00:00
|
|
|
|
2009-07-21 22:31:27 +00:00
|
|
|
tailbuf = xrealloc(tailbuf, BUFSIZ);
|
2001-01-05 02:57:53 +00:00
|
|
|
|
2003-03-19 09:13:01 +00:00
|
|
|
fmt = NULL;
|
2001-01-05 02:57:53 +00:00
|
|
|
|
2006-12-22 16:06:16 +00:00
|
|
|
if (FOLLOW) while (1) {
|
2003-03-19 09:13:01 +00:00
|
|
|
sleep(sleep_period);
|
2009-07-21 22:31:27 +00:00
|
|
|
|
2003-03-19 09:13:01 +00:00
|
|
|
i = 0;
|
|
|
|
do {
|
2009-07-21 22:31:27 +00:00
|
|
|
int nread;
|
|
|
|
const char *filename = argv[i];
|
|
|
|
int fd = fds[i];
|
|
|
|
|
|
|
|
if (FOLLOW_RETRY) {
|
|
|
|
struct stat sbuf, fsbuf;
|
|
|
|
|
|
|
|
if (fd < 0
|
|
|
|
|| fstat(fd, &fsbuf) < 0
|
|
|
|
|| stat(filename, &sbuf) < 0
|
|
|
|
|| fsbuf.st_dev != sbuf.st_dev
|
|
|
|
|| fsbuf.st_ino != sbuf.st_ino
|
|
|
|
) {
|
|
|
|
int new_fd;
|
|
|
|
|
|
|
|
if (fd >= 0)
|
|
|
|
close(fd);
|
|
|
|
new_fd = open(filename, O_RDONLY);
|
|
|
|
if (new_fd >= 0) {
|
|
|
|
bb_error_msg("%s has %s; following end of new file",
|
|
|
|
filename, (fd < 0) ? "appeared" : "been replaced"
|
|
|
|
);
|
|
|
|
} else if (fd >= 0) {
|
|
|
|
bb_perror_msg("%s has become inaccessible", filename);
|
|
|
|
}
|
|
|
|
fds[i] = fd = new_fd;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (ENABLE_FEATURE_FANCY_TAIL && fd < 0)
|
|
|
|
continue;
|
2003-03-19 09:13:01 +00:00
|
|
|
if (nfiles > header_threshhold) {
|
2010-06-02 10:57:26 +00:00
|
|
|
fmt = header_fmt_str;
|
2001-01-05 02:57:53 +00:00
|
|
|
}
|
2009-07-21 22:31:27 +00:00
|
|
|
while ((nread = tail_read(fd, tailbuf, BUFSIZ)) > 0) {
|
2003-03-19 09:13:01 +00:00
|
|
|
if (fmt) {
|
2009-07-21 22:31:27 +00:00
|
|
|
tail_xprint_header(fmt, filename);
|
2003-03-19 09:13:01 +00:00
|
|
|
fmt = NULL;
|
|
|
|
}
|
2009-07-21 22:31:27 +00:00
|
|
|
xwrite(STDOUT_FILENO, tailbuf, nread);
|
2000-08-02 16:42:58 +00:00
|
|
|
}
|
2003-03-19 09:13:01 +00:00
|
|
|
} while (++i < nfiles);
|
2011-05-19 22:30:04 +00:00
|
|
|
} /* while (1) */
|
|
|
|
|
2007-04-04 20:29:15 +00:00
|
|
|
if (ENABLE_FEATURE_CLEAN_UP) {
|
|
|
|
free(fds);
|
2010-10-20 22:25:45 +00:00
|
|
|
free(tailbuf);
|
2007-04-04 20:29:15 +00:00
|
|
|
}
|
2011-05-19 22:30:04 +00:00
|
|
|
return G.exitcode;
|
2001-01-05 02:57:53 +00:00
|
|
|
}
|