blob: b376ec863f0cbfb9fc6d3405dde1e00be6f779fc [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Matt Kraai55bccf32001-01-05 02:57:53 +00002/*
3 * Mini tail implementation for busybox
4 *
Matt Kraai55bccf32001-01-05 02:57:53 +00005 * Copyright (C) 2001 by Matt Kraai <kraai@alumni.carnegiemellon.edu>
6 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02007 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Erik Andersen3fe39dc2000-01-25 18:13:53 +00008 */
Matt Kraai55bccf32001-01-05 02:57:53 +00009
Manuel Novoa III cad53642003-03-19 09:13:01 +000010/* BB_AUDIT SUSv3 compliant (need fancy for -c) */
11/* BB_AUDIT GNU compatible -c, -q, and -v options in 'fancy' configuration. */
12/* http://www.opengroup.org/onlinepubs/007904975/utilities/tail.html */
Eric Andersenabc0f4f1999-12-08 23:19:36 +000013
Manuel Novoa III cad53642003-03-19 09:13:01 +000014/* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org)
15 *
16 * Pretty much rewritten to fix numerous bugs and reduce realloc() calls.
17 * Bugs fixed (although I may have forgotten one or two... it was pretty bad)
18 * 1) mixing printf/write without fflush()ing stdout
19 * 2) no check that any open files are present
20 * 3) optstring had -q taking an arg
21 * 4) no error checking on write in some cases, and a warning even then
22 * 5) q and s interaction bug
23 * 6) no check for lseek error
24 * 7) lseek attempted when count==0 even if arg was +0 (from top)
25 */
26
Pere Orga34425382011-03-31 14:43:25 +020027//usage:#define tail_trivial_usage
28//usage: "[OPTIONS] [FILE]..."
29//usage:#define tail_full_usage "\n\n"
30//usage: "Print last 10 lines of each FILE (or stdin) to stdout.\n"
31//usage: "With more than one FILE, precede each with a filename header.\n"
Pere Orga34425382011-03-31 14:43:25 +020032//usage: "\n -f Print data as file grows"
33//usage: IF_FEATURE_FANCY_TAIL(
34//usage: "\n -s SECONDS Wait SECONDS between reads with -f"
35//usage: )
36//usage: "\n -n N[kbm] Print last N lines"
37//usage: IF_FEATURE_FANCY_TAIL(
38//usage: "\n -c N[kbm] Print last N bytes"
39//usage: "\n -q Never print headers"
40//usage: "\n -v Always print headers"
41//usage: "\n"
42//usage: "\nN may be suffixed by k (x1024), b (x512), or m (x1024^2)."
43//usage: "\nIf N starts with a '+', output begins with the Nth item from the start"
44//usage: "\nof each file, not from the end."
45//usage: )
46//usage:
47//usage:#define tail_example_usage
48//usage: "$ tail -n 1 /etc/resolv.conf\n"
49//usage: "nameserver 10.0.0.1\n"
50
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000051#include "libbb.h"
Eric Andersenabc0f4f1999-12-08 23:19:36 +000052
Matt Kraaia164c642001-02-05 17:50:03 +000053static const struct suffix_mult tail_suffixes[] = {
Matt Kraai24ac0172000-12-18 21:38:57 +000054 { "b", 512 },
55 { "k", 1024 },
Denis Vlasenkoe31f7212006-12-22 16:06:16 +000056 { "m", 1024*1024 },
Denys Vlasenko043b1e52009-09-06 12:47:55 +020057 { "", 0 }
Matt Kraai24ac0172000-12-18 21:38:57 +000058};
59
Bernhard Reutner-Fischerd9c2d5f2007-04-04 20:29:15 +000060struct globals {
Denys Vlasenko9e933d92011-05-20 00:30:04 +020061 bool from_top;
62 bool exitcode;
Denys Vlasenko98a4c7c2010-02-04 15:00:15 +010063} FIX_ALIASING;
Bernhard Reutner-Fischerd9c2d5f2007-04-04 20:29:15 +000064#define G (*(struct globals*)&bb_common_bufsiz1)
Denys Vlasenko16714242011-09-21 01:59:15 +020065#define INIT_G() do { } while (0)
Matt Kraai55bccf32001-01-05 02:57:53 +000066
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000067static void tail_xprint_header(const char *fmt, const char *filename)
68{
Denis Vlasenkoe31f7212006-12-22 16:06:16 +000069 if (fdprintf(STDOUT_FILENO, fmt, filename) < 0)
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000070 bb_perror_nomsg_and_die();
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000071}
72
Manuel Novoa III cad53642003-03-19 09:13:01 +000073static ssize_t tail_read(int fd, char *buf, size_t count)
74{
75 ssize_t r;
Denis Vlasenko368a12e2007-10-02 10:17:56 +000076 off_t current;
Paul Fox49054342005-07-20 19:46:32 +000077 struct stat sbuf;
Manuel Novoa III cad53642003-03-19 09:13:01 +000078
Denis Vlasenko368a12e2007-10-02 10:17:56 +000079 /* /proc files report zero st_size, don't lseek them. */
Denys Vlasenko79b021d2009-08-10 03:16:18 +020080 if (fstat(fd, &sbuf) == 0 && sbuf.st_size > 0) {
Denys Vlasenkoa43df642009-08-09 22:06:56 +020081 current = lseek(fd, 0, SEEK_CUR);
Denis Vlasenko368a12e2007-10-02 10:17:56 +000082 if (sbuf.st_size < current)
Denys Vlasenko79b021d2009-08-10 03:16:18 +020083 xlseek(fd, 0, SEEK_SET);
Denys Vlasenkoa43df642009-08-09 22:06:56 +020084 }
Denis Vlasenko368a12e2007-10-02 10:17:56 +000085
Denis Vlasenko226002e2007-10-05 19:17:16 +000086 r = full_read(fd, buf, count);
Denis Vlasenkoe31f7212006-12-22 16:06:16 +000087 if (r < 0) {
Bernhard Reutner-Fischer1b9d7c92006-06-03 22:45:37 +000088 bb_perror_msg(bb_msg_read_error);
Denys Vlasenko9e933d92011-05-20 00:30:04 +020089 G.exitcode = EXIT_FAILURE;
Manuel Novoa III cad53642003-03-19 09:13:01 +000090 }
91
92 return r;
93}
94
Denys Vlasenkoea8b2522010-06-02 12:57:26 +020095#define header_fmt_str "\n==> %s <==\n"
Manuel Novoa III cad53642003-03-19 09:13:01 +000096
Denis Vlasenkoac678ec2007-04-16 22:32:04 +000097static unsigned eat_num(const char *p)
98{
Denis Vlasenko368a12e2007-10-02 10:17:56 +000099 if (*p == '-')
100 p++;
101 else if (*p == '+') {
102 p++;
Denys Vlasenko9e933d92011-05-20 00:30:04 +0200103 G.from_top = 1;
Denis Vlasenko368a12e2007-10-02 10:17:56 +0000104 }
Bernhard Reutner-Fischer84d2d492007-01-24 21:38:10 +0000105 return xatou_sfx(p, tail_suffixes);
106}
107
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000108int tail_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Eric Andersen98bbd682000-07-31 17:05:58 +0000109int tail_main(int argc, char **argv)
Eric Andersenabc0f4f1999-12-08 23:19:36 +0000110{
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000111 unsigned count = 10;
Denis Vlasenko459903b2006-11-27 14:44:18 +0000112 unsigned sleep_period = 1;
Denis Vlasenko92c0b822007-05-08 17:27:17 +0000113 const char *str_c, *str_n;
Eric Andersenabc0f4f1999-12-08 23:19:36 +0000114
Manuel Novoa III cad53642003-03-19 09:13:01 +0000115 char *tailbuf;
116 size_t tailbufsize;
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200117 unsigned header_threshhold = 1;
118 unsigned nfiles;
119 int i, opt;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000120
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000121 int *fds;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000122 const char *fmt;
123
Denys Vlasenko16714242011-09-21 01:59:15 +0200124 INIT_G();
125
Denis Vlasenko08492072006-12-22 13:56:36 +0000126#if ENABLE_INCLUDE_SUSv2 || ENABLE_FEATURE_FANCY_TAIL
Manuel Novoa III cad53642003-03-19 09:13:01 +0000127 /* Allow legacy syntax of an initial numeric option without -n. */
Denis Vlasenko62a90cd2008-03-17 09:07:36 +0000128 if (argv[1] && (argv[1][0] == '+' || argv[1][0] == '-')
Denis Vlasenko459903b2006-11-27 14:44:18 +0000129 && isdigit(argv[1][1])
130 ) {
Denis Vlasenko3603cd22009-03-27 02:36:02 +0000131 count = eat_num(argv[1]);
Denis Vlasenko62a90cd2008-03-17 09:07:36 +0000132 argv++;
133 argc--;
Robert Griebl13c26fc2002-05-17 22:18:04 +0000134 }
Glenn L McGrath0bd02572005-12-11 03:09:05 +0000135#endif
Robert Griebl13c26fc2002-05-17 22:18:04 +0000136
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200137 /* -s NUM, -F imlies -f */
138 IF_FEATURE_FANCY_TAIL(opt_complementary = "s+:Ff";)
139 opt = getopt32(argv, "fc:n:" IF_FEATURE_FANCY_TAIL("qs:vF"),
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000140 &str_c, &str_n IF_FEATURE_FANCY_TAIL(,&sleep_period));
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000141#define FOLLOW (opt & 0x1)
142#define COUNT_BYTES (opt & 0x2)
143 //if (opt & 0x1) // -f
Bernhard Reutner-Fischer84d2d492007-01-24 21:38:10 +0000144 if (opt & 0x2) count = eat_num(str_c); // -c
145 if (opt & 0x4) count = eat_num(str_n); // -n
Bernhard Reutner-Fischer5816ccb2005-12-13 10:48:45 +0000146#if ENABLE_FEATURE_FANCY_TAIL
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200147 /* q: make it impossible for nfiles to be > header_threshhold */
148 if (opt & 0x8) header_threshhold = UINT_MAX; // -q
Denys Vlasenkoa43df642009-08-09 22:06:56 +0200149 //if (opt & 0x10) // -s
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000150 if (opt & 0x20) header_threshhold = 0; // -v
Denys Vlasenkoa43df642009-08-09 22:06:56 +0200151# define FOLLOW_RETRY (opt & 0x40)
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200152#else
Denys Vlasenkoa43df642009-08-09 22:06:56 +0200153# define FOLLOW_RETRY 0
Matt Kraai55bccf32001-01-05 02:57:53 +0000154#endif
Denis Vlasenko69107412006-12-21 00:43:06 +0000155 argc -= optind;
156 argv += optind;
Matt Kraai55bccf32001-01-05 02:57:53 +0000157
158 /* open all the files */
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200159 fds = xmalloc(sizeof(fds[0]) * (argc + 1));
Denis Vlasenko62a90cd2008-03-17 09:07:36 +0000160 if (!argv[0]) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000161 struct stat statbuf;
162
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200163 if (fstat(STDIN_FILENO, &statbuf) == 0
164 && S_ISFIFO(statbuf.st_mode)
165 ) {
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000166 opt &= ~1; /* clear FOLLOW */
Matt Kraai55bccf32001-01-05 02:57:53 +0000167 }
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200168 argv[0] = (char *) bb_msg_standard_input;
Matt Kraai55bccf32001-01-05 02:57:53 +0000169 }
Denis Vlasenko62a90cd2008-03-17 09:07:36 +0000170 nfiles = i = 0;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000171 do {
Denis Vlasenko62a90cd2008-03-17 09:07:36 +0000172 int fd = open_or_warn_stdin(argv[i]);
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200173 if (fd < 0 && !FOLLOW_RETRY) {
Denys Vlasenko9e933d92011-05-20 00:30:04 +0200174 G.exitcode = EXIT_FAILURE;
Bernhard Reutner-Fischerd9c2d5f2007-04-04 20:29:15 +0000175 continue;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000176 }
Denis Vlasenko62a90cd2008-03-17 09:07:36 +0000177 fds[nfiles] = fd;
Bernhard Reutner-Fischerd9c2d5f2007-04-04 20:29:15 +0000178 argv[nfiles++] = argv[i];
Manuel Novoa III cad53642003-03-19 09:13:01 +0000179 } while (++i < argc);
180
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000181 if (!nfiles)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000182 bb_error_msg_and_die("no files");
Manuel Novoa III cad53642003-03-19 09:13:01 +0000183
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000184 /* prepare the buffer */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000185 tailbufsize = BUFSIZ;
Denys Vlasenko9e933d92011-05-20 00:30:04 +0200186 if (!G.from_top && COUNT_BYTES) {
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000187 if (tailbufsize < count + BUFSIZ) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000188 tailbufsize = count + BUFSIZ;
189 }
190 }
Denys Vlasenko9e933d92011-05-20 00:30:04 +0200191 /* tail -c1024m REGULAR_FILE doesn't really need 1G mem block.
192 * (In fact, it doesn't need ANY memory). So delay allocation.
193 */
194 tailbuf = NULL;
Glenn L McGrath4ef5a842003-10-31 00:35:59 +0000195
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000196 /* tail the files */
Denys Vlasenko9e933d92011-05-20 00:30:04 +0200197
198 fmt = header_fmt_str + 1; /* skip leading newline in the header on the first output */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000199 i = 0;
200 do {
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200201 char *buf;
202 int taillen;
203 int newlines_seen;
204 unsigned seen;
205 int nread;
Denys Vlasenko79b021d2009-08-10 03:16:18 +0200206 int fd = fds[i];
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200207
Denys Vlasenko79b021d2009-08-10 03:16:18 +0200208 if (ENABLE_FEATURE_FANCY_TAIL && fd < 0)
Denys Vlasenko0851d122011-09-17 00:12:24 +0200209 continue; /* may happen with -F */
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200210
Manuel Novoa III cad53642003-03-19 09:13:01 +0000211 if (nfiles > header_threshhold) {
212 tail_xprint_header(fmt, argv[i]);
Denys Vlasenkoea8b2522010-06-02 12:57:26 +0200213 fmt = header_fmt_str;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000214 }
215
Denys Vlasenko9e933d92011-05-20 00:30:04 +0200216 if (!G.from_top) {
Denys Vlasenko79b021d2009-08-10 03:16:18 +0200217 off_t current = lseek(fd, 0, SEEK_END);
Denis Vlasenko69ca5a72008-03-23 03:28:40 +0000218 if (current > 0) {
Denys Vlasenko79b021d2009-08-10 03:16:18 +0200219 unsigned off;
220 if (COUNT_BYTES) {
221 /* Optimizing count-bytes case if the file is seekable.
222 * Beware of backing up too far.
223 * Also we exclude files with size 0 (because of /proc/xxx) */
224 if (count == 0)
225 continue; /* showing zero bytes is easy :) */
226 current -= count;
227 if (current < 0)
228 current = 0;
229 xlseek(fd, current, SEEK_SET);
230 bb_copyfd_size(fd, STDOUT_FILENO, count);
231 continue;
232 }
233#if 1 /* This is technically incorrect for *LONG* strings, but very useful */
234 /* Optimizing count-lines case if the file is seekable.
235 * We assume the lines are <64k.
236 * (Users complain that tail takes too long
237 * on multi-gigabyte files) */
238 off = (count | 0xf); /* for small counts, be more paranoid */
239 if (off > (INT_MAX / (64*1024)))
240 off = (INT_MAX / (64*1024));
241 current -= off * (64*1024);
Denis Vlasenko69ca5a72008-03-23 03:28:40 +0000242 if (current < 0)
243 current = 0;
Denys Vlasenko79b021d2009-08-10 03:16:18 +0200244 xlseek(fd, current, SEEK_SET);
245#endif
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000246 }
247 }
248
Denys Vlasenko9e933d92011-05-20 00:30:04 +0200249 if (!tailbuf)
250 tailbuf = xmalloc(tailbufsize);
251
Manuel Novoa III cad53642003-03-19 09:13:01 +0000252 buf = tailbuf;
253 taillen = 0;
Denys Vlasenkoa43df642009-08-09 22:06:56 +0200254 /* "We saw 1st line/byte".
Denys Vlasenko79b021d2009-08-10 03:16:18 +0200255 * Used only by +N code ("start from Nth", 1-based): */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000256 seen = 1;
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000257 newlines_seen = 0;
Denys Vlasenko0851d122011-09-17 00:12:24 +0200258 while ((nread = tail_read(fd, buf, tailbufsize - taillen)) > 0) {
Denys Vlasenko9e933d92011-05-20 00:30:04 +0200259 if (G.from_top) {
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200260 int nwrite = nread;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000261 if (seen < count) {
Denys Vlasenkoa43df642009-08-09 22:06:56 +0200262 /* We need to skip a few more bytes/lines */
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000263 if (COUNT_BYTES) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000264 nwrite -= (count - seen);
Denys Vlasenko0851d122011-09-17 00:12:24 +0200265 seen += nread;
Glenn L McGrath4ef5a842003-10-31 00:35:59 +0000266 } else {
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200267 char *s = buf;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000268 do {
269 --nwrite;
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000270 if (*s++ == '\n' && ++seen == count) {
Matt Kraai55bccf32001-01-05 02:57:53 +0000271 break;
272 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000273 } while (nwrite);
274 }
275 }
Denys Vlasenko6eaeb772010-03-12 22:16:25 +0100276 if (nwrite > 0)
277 xwrite(STDOUT_FILENO, buf + nread - nwrite, nwrite);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000278 } else if (count) {
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000279 if (COUNT_BYTES) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000280 taillen += nread;
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000281 if (taillen > (int)count) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000282 memmove(tailbuf, tailbuf + taillen - count, count);
283 taillen = count;
284 }
Glenn L McGrath4ef5a842003-10-31 00:35:59 +0000285 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000286 int k = nread;
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000287 int newlines_in_buf = 0;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000288
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000289 do { /* count '\n' in last read */
290 k--;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000291 if (buf[k] == '\n') {
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000292 newlines_in_buf++;
Matt Kraai55bccf32001-01-05 02:57:53 +0000293 }
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000294 } while (k);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000295
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000296 if (newlines_seen + newlines_in_buf < (int)count) {
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000297 newlines_seen += newlines_in_buf;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000298 taillen += nread;
Matt Kraai55bccf32001-01-05 02:57:53 +0000299 } else {
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000300 int extra = (buf[nread-1] != '\n');
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200301 char *s;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000302
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000303 k = newlines_seen + newlines_in_buf + extra - count;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000304 s = tailbuf;
305 while (k) {
306 if (*s == '\n') {
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000307 k--;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000308 }
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000309 s++;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000310 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000311 taillen += nread - (s - tailbuf);
312 memmove(tailbuf, s, taillen);
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000313 newlines_seen = count - extra;
Matt Kraai55bccf32001-01-05 02:57:53 +0000314 }
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000315 if (tailbufsize < (size_t)taillen + BUFSIZ) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000316 tailbufsize = taillen + BUFSIZ;
317 tailbuf = xrealloc(tailbuf, tailbufsize);
Matt Kraai55bccf32001-01-05 02:57:53 +0000318 }
Eric Andersend5fa3e32000-08-02 16:42:58 +0000319 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000320 buf = tailbuf + taillen;
Eric Andersend5fa3e32000-08-02 16:42:58 +0000321 }
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000322 } /* while (tail_read() > 0) */
Denys Vlasenko9e933d92011-05-20 00:30:04 +0200323 if (!G.from_top) {
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000324 xwrite(STDOUT_FILENO, tailbuf, taillen);
Matt Kraai55bccf32001-01-05 02:57:53 +0000325 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000326 } while (++i < nfiles);
327
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200328 tailbuf = xrealloc(tailbuf, BUFSIZ);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000329
330 fmt = NULL;
Matt Kraai55bccf32001-01-05 02:57:53 +0000331
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000332 if (FOLLOW) while (1) {
Matt Kraai55bccf32001-01-05 02:57:53 +0000333 sleep(sleep_period);
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200334
Manuel Novoa III cad53642003-03-19 09:13:01 +0000335 i = 0;
336 do {
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200337 int nread;
338 const char *filename = argv[i];
339 int fd = fds[i];
340
341 if (FOLLOW_RETRY) {
342 struct stat sbuf, fsbuf;
343
344 if (fd < 0
345 || fstat(fd, &fsbuf) < 0
346 || stat(filename, &sbuf) < 0
347 || fsbuf.st_dev != sbuf.st_dev
348 || fsbuf.st_ino != sbuf.st_ino
349 ) {
350 int new_fd;
351
352 if (fd >= 0)
353 close(fd);
354 new_fd = open(filename, O_RDONLY);
355 if (new_fd >= 0) {
356 bb_error_msg("%s has %s; following end of new file",
357 filename, (fd < 0) ? "appeared" : "been replaced"
358 );
359 } else if (fd >= 0) {
360 bb_perror_msg("%s has become inaccessible", filename);
361 }
362 fds[i] = fd = new_fd;
363 }
364 }
365 if (ENABLE_FEATURE_FANCY_TAIL && fd < 0)
366 continue;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000367 if (nfiles > header_threshhold) {
Denys Vlasenkoea8b2522010-06-02 12:57:26 +0200368 fmt = header_fmt_str;
Matt Kraai55bccf32001-01-05 02:57:53 +0000369 }
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200370 while ((nread = tail_read(fd, tailbuf, BUFSIZ)) > 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000371 if (fmt) {
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200372 tail_xprint_header(fmt, filename);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000373 fmt = NULL;
374 }
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200375 xwrite(STDOUT_FILENO, tailbuf, nread);
Matt Kraai55bccf32001-01-05 02:57:53 +0000376 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000377 } while (++i < nfiles);
Denys Vlasenko9e933d92011-05-20 00:30:04 +0200378 } /* while (1) */
379
Bernhard Reutner-Fischerd9c2d5f2007-04-04 20:29:15 +0000380 if (ENABLE_FEATURE_CLEAN_UP) {
381 free(fds);
Alexander Shishkin2348e092010-10-21 00:25:45 +0200382 free(tailbuf);
Bernhard Reutner-Fischerd9c2d5f2007-04-04 20:29:15 +0000383 }
Denys Vlasenko9e933d92011-05-20 00:30:04 +0200384 return G.exitcode;
Matt Kraai55bccf32001-01-05 02:57:53 +0000385}