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>
|
|
|
|
*
|
2006-01-30 01:30:39 +00:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
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)
|
|
|
|
*/
|
|
|
|
|
2001-02-20 06:14:08 +00:00
|
|
|
#include "busybox.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 },
|
2000-12-18 21:38:57 +00:00
|
|
|
{ NULL, 0 }
|
|
|
|
};
|
|
|
|
|
2006-01-30 01:30:39 +00:00
|
|
|
static int status;
|
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;
|
2006-12-22 16:06:16 +00:00
|
|
|
off_t current, end;
|
2005-07-20 19:46:32 +00:00
|
|
|
struct stat sbuf;
|
2003-03-19 09:13:01 +00:00
|
|
|
|
2005-07-26 22:57:51 +00:00
|
|
|
end = current = lseek(fd, 0, SEEK_CUR);
|
|
|
|
if (!fstat(fd, &sbuf))
|
|
|
|
end = sbuf.st_size;
|
2005-08-13 00:35:00 +00:00
|
|
|
lseek(fd, end < current ? 0 : current, SEEK_SET);
|
2006-12-22 16:06:16 +00:00
|
|
|
r = safe_read(fd, buf, count);
|
|
|
|
if (r < 0) {
|
2006-06-03 22:45:37 +00:00
|
|
|
bb_perror_msg(bb_msg_read_error);
|
2003-03-19 09:13:01 +00:00
|
|
|
status = EXIT_FAILURE;
|
2002-05-17 22:18:04 +00:00
|
|
|
}
|
|
|
|
|
2003-03-19 09:13:01 +00:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char header_fmt[] = "\n==> %s <==\n";
|
|
|
|
|
|
|
|
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;
|
2003-03-19 09:13:01 +00:00
|
|
|
int from_top = 0;
|
|
|
|
int header_threshhold = 1;
|
2006-12-22 16:06:16 +00:00
|
|
|
const char *str_c, *str_n, *str_s;
|
2003-03-19 09:13:01 +00:00
|
|
|
|
|
|
|
char *tailbuf;
|
|
|
|
size_t tailbufsize;
|
|
|
|
int taillen = 0;
|
|
|
|
int newline = 0;
|
2006-12-22 16:06:16 +00:00
|
|
|
int nfiles, nread, nwrite, seen, 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
|
|
|
char *s, *buf;
|
|
|
|
const char *fmt;
|
|
|
|
|
2006-12-22 16:06:16 +00:00
|
|
|
void eat_num(const char *p) {
|
|
|
|
if (*p == '-') p++;
|
|
|
|
else if (*p == '+') { p++; from_top = 1; }
|
|
|
|
count = xatou_sfx(p, tail_suffixes);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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. */
|
2006-11-27 14:44:18 +00:00
|
|
|
if (argc >= 2 && (argv[1][0] == '+' || argv[1][0] == '-')
|
|
|
|
&& isdigit(argv[1][1])
|
|
|
|
) {
|
2006-12-22 16:06:16 +00:00
|
|
|
argv[0] = "-n";
|
|
|
|
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
|
|
|
|
2006-12-22 16:06:16 +00:00
|
|
|
opt = getopt32(argc, argv, "fc:n:" USE_FEATURE_FANCY_TAIL("qs:v"), &str_c, &str_n, &str_s);
|
|
|
|
#define FOLLOW (opt & 0x1)
|
|
|
|
#define COUNT_BYTES (opt & 0x2)
|
|
|
|
//if (opt & 0x1) // -f
|
|
|
|
if (opt & 0x2) eat_num(str_c); // -c
|
|
|
|
if (opt & 0x4) eat_num(str_n); // -n
|
2005-12-13 10:48:45 +00:00
|
|
|
#if ENABLE_FEATURE_FANCY_TAIL
|
2006-12-22 16:06:16 +00:00
|
|
|
if (opt & 0x8) header_threshhold = INT_MAX; // -q
|
|
|
|
if (opt & 0x10) sleep_period = xatou(str_s); // -s
|
|
|
|
if (opt & 0x20) header_threshhold = 0; // -v
|
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 */
|
2006-12-21 00:43:06 +00:00
|
|
|
fds = xmalloc(sizeof(int) * (argc + 1));
|
2003-03-19 09:13:01 +00:00
|
|
|
nfiles = i = 0;
|
2006-12-21 00:43:06 +00:00
|
|
|
if (argc == 0) {
|
2003-03-19 09:13:01 +00:00
|
|
|
struct stat statbuf;
|
|
|
|
|
|
|
|
if (!fstat(STDIN_FILENO, &statbuf) && 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
|
|
|
}
|
2003-03-19 09:13:01 +00:00
|
|
|
*argv = (char *) bb_msg_standard_input;
|
|
|
|
goto DO_STDIN;
|
|
|
|
}
|
|
|
|
|
|
|
|
do {
|
2006-12-22 16:06:16 +00:00
|
|
|
if (NOT_LONE_DASH(argv[i])) {
|
|
|
|
fds[nfiles] = open(argv[i], O_RDONLY);
|
|
|
|
if (fds[nfiles] < 0) {
|
|
|
|
bb_perror_msg("%s", argv[i]);
|
|
|
|
status = EXIT_FAILURE;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
DO_STDIN: /* "-" */
|
2003-03-19 09:13:01 +00:00
|
|
|
fds[nfiles] = STDIN_FILENO;
|
|
|
|
}
|
|
|
|
argv[nfiles] = argv[i];
|
|
|
|
++nfiles;
|
|
|
|
} 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");
|
|
|
|
|
|
|
|
tailbufsize = BUFSIZ;
|
2003-10-31 00:35:59 +00:00
|
|
|
|
2001-01-05 02:57:53 +00:00
|
|
|
/* tail the files */
|
2006-12-22 16:06:16 +00:00
|
|
|
if (!from_top && COUNT_BYTES) {
|
2003-03-19 09:13:01 +00:00
|
|
|
if (tailbufsize < count) {
|
|
|
|
tailbufsize = count + BUFSIZ;
|
|
|
|
}
|
|
|
|
}
|
2003-10-31 00:35:59 +00:00
|
|
|
|
2003-03-19 09:13:01 +00:00
|
|
|
buf = tailbuf = xmalloc(tailbufsize);
|
2000-08-02 16:42:58 +00:00
|
|
|
|
2003-03-19 09:13:01 +00:00
|
|
|
fmt = header_fmt + 1; /* Skip header leading newline on first output. */
|
|
|
|
i = 0;
|
|
|
|
do {
|
|
|
|
/* Be careful. It would be possible to optimize the count-bytes
|
|
|
|
* case if the file is seekable. If you do though, remember that
|
|
|
|
* starting file position may not be the beginning of the file.
|
|
|
|
* Beware of backing up too far. See example in wc.c.
|
|
|
|
*/
|
2007-01-02 16:32:16 +00:00
|
|
|
if (!(count | from_top) && lseek(fds[i], 0, SEEK_END) >= 0) {
|
2001-06-26 15:07:08 +00:00
|
|
|
continue;
|
|
|
|
}
|
2003-03-19 09:13:01 +00:00
|
|
|
|
|
|
|
if (nfiles > header_threshhold) {
|
|
|
|
tail_xprint_header(fmt, argv[i]);
|
|
|
|
fmt = header_fmt;
|
|
|
|
}
|
|
|
|
|
|
|
|
buf = tailbuf;
|
|
|
|
taillen = 0;
|
|
|
|
seen = 1;
|
2004-09-30 00:24:21 +00:00
|
|
|
newline = 0;
|
2003-03-19 09:13:01 +00:00
|
|
|
|
|
|
|
while ((nread = tail_read(fds[i], buf, tailbufsize-taillen)) > 0) {
|
2001-01-05 02:57:53 +00:00
|
|
|
if (from_top) {
|
2003-03-19 09:13:01 +00:00
|
|
|
nwrite = nread;
|
|
|
|
if (seen < count) {
|
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 {
|
2003-03-19 09:13:01 +00:00
|
|
|
s = buf;
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
2006-12-22 16:06:16 +00:00
|
|
|
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;
|
|
|
|
if (taillen > count) {
|
|
|
|
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;
|
|
|
|
int nbuf = 0;
|
|
|
|
|
|
|
|
while (k) {
|
|
|
|
--k;
|
|
|
|
if (buf[k] == '\n') {
|
|
|
|
++nbuf;
|
|
|
|
}
|
2001-01-05 02:57:53 +00:00
|
|
|
}
|
|
|
|
|
2003-03-19 09:13:01 +00:00
|
|
|
if (newline + nbuf < count) {
|
|
|
|
newline += nbuf;
|
|
|
|
taillen += nread;
|
2001-01-05 02:57:53 +00:00
|
|
|
|
2003-03-19 09:13:01 +00:00
|
|
|
} else {
|
|
|
|
int extra = 0;
|
|
|
|
if (buf[nread-1] != '\n') {
|
|
|
|
extra = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
k = newline + nbuf + extra - count;
|
|
|
|
s = tailbuf;
|
|
|
|
while (k) {
|
|
|
|
if (*s == '\n') {
|
|
|
|
--k;
|
|
|
|
}
|
|
|
|
++s;
|
|
|
|
}
|
|
|
|
|
|
|
|
taillen += nread - (s - tailbuf);
|
|
|
|
memmove(tailbuf, s, taillen);
|
|
|
|
newline = count - extra;
|
|
|
|
}
|
|
|
|
if (tailbufsize < taillen + BUFSIZ) {
|
|
|
|
tailbufsize = taillen + BUFSIZ;
|
|
|
|
tailbuf = xrealloc(tailbuf, tailbufsize);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
buf = tailbuf + taillen;
|
2000-08-02 16:42:58 +00:00
|
|
|
}
|
|
|
|
}
|
2001-01-05 02:57:53 +00:00
|
|
|
|
2003-03-19 09:13:01 +00:00
|
|
|
if (!from_top) {
|
2006-12-22 16:06:16 +00:00
|
|
|
xwrite(STDOUT_FILENO, tailbuf, taillen);
|
2001-01-05 02:57:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
taillen = 0;
|
2003-03-19 09:13:01 +00:00
|
|
|
} while (++i < nfiles);
|
2001-01-05 02:57:53 +00:00
|
|
|
|
2003-03-19 09:13:01 +00:00
|
|
|
buf = 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);
|
|
|
|
i = 0;
|
|
|
|
do {
|
|
|
|
if (nfiles > header_threshhold) {
|
|
|
|
fmt = header_fmt;
|
2001-01-05 02:57:53 +00:00
|
|
|
}
|
2003-03-19 09:13:01 +00:00
|
|
|
while ((nread = tail_read(fds[i], buf, sizeof(buf))) > 0) {
|
|
|
|
if (fmt) {
|
|
|
|
tail_xprint_header(fmt, argv[i]);
|
|
|
|
fmt = NULL;
|
|
|
|
}
|
2006-12-22 16:06:16 +00:00
|
|
|
xwrite(STDOUT_FILENO, buf, nread);
|
2000-08-02 16:42:58 +00:00
|
|
|
}
|
2003-03-19 09:13:01 +00:00
|
|
|
} while (++i < nfiles);
|
2000-08-02 16:42:58 +00:00
|
|
|
}
|
2000-01-25 18:13:53 +00:00
|
|
|
|
2001-01-05 02:57:53 +00:00
|
|
|
return status;
|
|
|
|
}
|