blob: 0e124436069815ab3c18dc503ecb746658a33d9e [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
maxwen27116ba2015-08-14 21:41:28 +020027//kbuild:lib-$(CONFIG_TAIL) += tail.o
28
Pere Orga34425382011-03-31 14:43:25 +020029//usage:#define tail_trivial_usage
30//usage: "[OPTIONS] [FILE]..."
31//usage:#define tail_full_usage "\n\n"
32//usage: "Print last 10 lines of each FILE (or stdin) to stdout.\n"
33//usage: "With more than one FILE, precede each with a filename header.\n"
Pere Orga34425382011-03-31 14:43:25 +020034//usage: "\n -f Print data as file grows"
35//usage: IF_FEATURE_FANCY_TAIL(
36//usage: "\n -s SECONDS Wait SECONDS between reads with -f"
37//usage: )
38//usage: "\n -n N[kbm] Print last N lines"
maxwen27116ba2015-08-14 21:41:28 +020039//usage: "\n -n +N[kbm] Start on Nth line and print the rest"
Pere Orga34425382011-03-31 14:43:25 +020040//usage: IF_FEATURE_FANCY_TAIL(
maxwen27116ba2015-08-14 21:41:28 +020041//usage: "\n -c [+]N[kbm] Print last N bytes"
Pere Orga34425382011-03-31 14:43:25 +020042//usage: "\n -q Never print headers"
43//usage: "\n -v Always print headers"
44//usage: "\n"
45//usage: "\nN may be suffixed by k (x1024), b (x512), or m (x1024^2)."
Pere Orga34425382011-03-31 14:43:25 +020046//usage: )
47//usage:
48//usage:#define tail_example_usage
49//usage: "$ tail -n 1 /etc/resolv.conf\n"
50//usage: "nameserver 10.0.0.1\n"
51
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000052#include "libbb.h"
Eric Andersenabc0f4f1999-12-08 23:19:36 +000053
Bernhard Reutner-Fischerd9c2d5f2007-04-04 20:29:15 +000054struct globals {
Denys Vlasenko9e933d92011-05-20 00:30:04 +020055 bool from_top;
56 bool exitcode;
Denys Vlasenko98a4c7c2010-02-04 15:00:15 +010057} FIX_ALIASING;
Bernhard Reutner-Fischerd9c2d5f2007-04-04 20:29:15 +000058#define G (*(struct globals*)&bb_common_bufsiz1)
Tanguy Pruvot8a6c2c22012-04-28 00:24:09 +020059#define INIT_G() do { } while (0)
Matt Kraai55bccf32001-01-05 02:57:53 +000060
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000061static void tail_xprint_header(const char *fmt, const char *filename)
62{
Denis Vlasenkoe31f7212006-12-22 16:06:16 +000063 if (fdprintf(STDOUT_FILENO, fmt, filename) < 0)
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000064 bb_perror_nomsg_and_die();
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000065}
66
Manuel Novoa III cad53642003-03-19 09:13:01 +000067static ssize_t tail_read(int fd, char *buf, size_t count)
68{
69 ssize_t r;
Denis Vlasenko368a12e2007-10-02 10:17:56 +000070
Denis Vlasenko226002e2007-10-05 19:17:16 +000071 r = full_read(fd, buf, count);
Denis Vlasenkoe31f7212006-12-22 16:06:16 +000072 if (r < 0) {
Tanguy Pruvotf7ae0a22011-07-04 05:30:48 +020073 bb_perror_msg(bb_msg_read_error);
Denys Vlasenko9e933d92011-05-20 00:30:04 +020074 G.exitcode = EXIT_FAILURE;
Manuel Novoa III cad53642003-03-19 09:13:01 +000075 }
76
77 return r;
78}
79
Denys Vlasenkoea8b2522010-06-02 12:57:26 +020080#define header_fmt_str "\n==> %s <==\n"
Manuel Novoa III cad53642003-03-19 09:13:01 +000081
Denis Vlasenkoac678ec2007-04-16 22:32:04 +000082static unsigned eat_num(const char *p)
83{
Denis Vlasenko368a12e2007-10-02 10:17:56 +000084 if (*p == '-')
85 p++;
86 else if (*p == '+') {
87 p++;
Denys Vlasenko9e933d92011-05-20 00:30:04 +020088 G.from_top = 1;
Denis Vlasenko368a12e2007-10-02 10:17:56 +000089 }
maxwen27116ba2015-08-14 21:41:28 +020090 return xatou_sfx(p, bkm_suffixes);
Bernhard Reutner-Fischer84d2d492007-01-24 21:38:10 +000091}
92
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000093int tail_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Eric Andersen98bbd682000-07-31 17:05:58 +000094int tail_main(int argc, char **argv)
Eric Andersenabc0f4f1999-12-08 23:19:36 +000095{
Denis Vlasenkoe31f7212006-12-22 16:06:16 +000096 unsigned count = 10;
Denis Vlasenko459903b2006-11-27 14:44:18 +000097 unsigned sleep_period = 1;
Denis Vlasenko92c0b822007-05-08 17:27:17 +000098 const char *str_c, *str_n;
Eric Andersenabc0f4f1999-12-08 23:19:36 +000099
Manuel Novoa III cad53642003-03-19 09:13:01 +0000100 char *tailbuf;
101 size_t tailbufsize;
Tanguy Pruvot6fef6a32012-05-05 15:26:43 +0200102 int header_threshhold = 1;
103 int nfiles;
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200104 int i, opt;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000105
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000106 int *fds;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000107 const char *fmt;
maxwen27116ba2015-08-14 21:41:28 +0200108 int prev_fd;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000109
Tanguy Pruvot8a6c2c22012-04-28 00:24:09 +0200110 INIT_G();
111
Denis Vlasenko08492072006-12-22 13:56:36 +0000112#if ENABLE_INCLUDE_SUSv2 || ENABLE_FEATURE_FANCY_TAIL
Manuel Novoa III cad53642003-03-19 09:13:01 +0000113 /* Allow legacy syntax of an initial numeric option without -n. */
Denis Vlasenko62a90cd2008-03-17 09:07:36 +0000114 if (argv[1] && (argv[1][0] == '+' || argv[1][0] == '-')
Denis Vlasenko459903b2006-11-27 14:44:18 +0000115 && isdigit(argv[1][1])
116 ) {
Denis Vlasenko3603cd22009-03-27 02:36:02 +0000117 count = eat_num(argv[1]);
Denis Vlasenko62a90cd2008-03-17 09:07:36 +0000118 argv++;
119 argc--;
Robert Griebl13c26fc2002-05-17 22:18:04 +0000120 }
Glenn L McGrath0bd02572005-12-11 03:09:05 +0000121#endif
Robert Griebl13c26fc2002-05-17 22:18:04 +0000122
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200123 /* -s NUM, -F imlies -f */
124 IF_FEATURE_FANCY_TAIL(opt_complementary = "s+:Ff";)
125 opt = getopt32(argv, "fc:n:" IF_FEATURE_FANCY_TAIL("qs:vF"),
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000126 &str_c, &str_n IF_FEATURE_FANCY_TAIL(,&sleep_period));
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000127#define FOLLOW (opt & 0x1)
128#define COUNT_BYTES (opt & 0x2)
129 //if (opt & 0x1) // -f
Bernhard Reutner-Fischer84d2d492007-01-24 21:38:10 +0000130 if (opt & 0x2) count = eat_num(str_c); // -c
131 if (opt & 0x4) count = eat_num(str_n); // -n
Bernhard Reutner-Fischer5816ccb2005-12-13 10:48:45 +0000132#if ENABLE_FEATURE_FANCY_TAIL
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200133 /* q: make it impossible for nfiles to be > header_threshhold */
134 if (opt & 0x8) header_threshhold = UINT_MAX; // -q
Denys Vlasenkoa43df642009-08-09 22:06:56 +0200135 //if (opt & 0x10) // -s
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000136 if (opt & 0x20) header_threshhold = 0; // -v
Denys Vlasenkoa43df642009-08-09 22:06:56 +0200137# define FOLLOW_RETRY (opt & 0x40)
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200138#else
Denys Vlasenkoa43df642009-08-09 22:06:56 +0200139# define FOLLOW_RETRY 0
Matt Kraai55bccf32001-01-05 02:57:53 +0000140#endif
Denis Vlasenko69107412006-12-21 00:43:06 +0000141 argc -= optind;
142 argv += optind;
Matt Kraai55bccf32001-01-05 02:57:53 +0000143
144 /* open all the files */
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200145 fds = xmalloc(sizeof(fds[0]) * (argc + 1));
Denis Vlasenko62a90cd2008-03-17 09:07:36 +0000146 if (!argv[0]) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000147 struct stat statbuf;
148
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200149 if (fstat(STDIN_FILENO, &statbuf) == 0
150 && S_ISFIFO(statbuf.st_mode)
151 ) {
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000152 opt &= ~1; /* clear FOLLOW */
Matt Kraai55bccf32001-01-05 02:57:53 +0000153 }
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200154 argv[0] = (char *) bb_msg_standard_input;
Matt Kraai55bccf32001-01-05 02:57:53 +0000155 }
Denis Vlasenko62a90cd2008-03-17 09:07:36 +0000156 nfiles = i = 0;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000157 do {
Denis Vlasenko62a90cd2008-03-17 09:07:36 +0000158 int fd = open_or_warn_stdin(argv[i]);
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200159 if (fd < 0 && !FOLLOW_RETRY) {
Denys Vlasenko9e933d92011-05-20 00:30:04 +0200160 G.exitcode = EXIT_FAILURE;
Bernhard Reutner-Fischerd9c2d5f2007-04-04 20:29:15 +0000161 continue;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000162 }
Denis Vlasenko62a90cd2008-03-17 09:07:36 +0000163 fds[nfiles] = fd;
Bernhard Reutner-Fischerd9c2d5f2007-04-04 20:29:15 +0000164 argv[nfiles++] = argv[i];
Manuel Novoa III cad53642003-03-19 09:13:01 +0000165 } while (++i < argc);
166
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000167 if (!nfiles)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000168 bb_error_msg_and_die("no files");
Manuel Novoa III cad53642003-03-19 09:13:01 +0000169
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000170 /* prepare the buffer */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000171 tailbufsize = BUFSIZ;
Denys Vlasenko9e933d92011-05-20 00:30:04 +0200172 if (!G.from_top && COUNT_BYTES) {
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000173 if (tailbufsize < count + BUFSIZ) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000174 tailbufsize = count + BUFSIZ;
175 }
176 }
Denys Vlasenko9e933d92011-05-20 00:30:04 +0200177 /* tail -c1024m REGULAR_FILE doesn't really need 1G mem block.
178 * (In fact, it doesn't need ANY memory). So delay allocation.
179 */
180 tailbuf = NULL;
Glenn L McGrath4ef5a842003-10-31 00:35:59 +0000181
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000182 /* tail the files */
Denys Vlasenko9e933d92011-05-20 00:30:04 +0200183
184 fmt = header_fmt_str + 1; /* skip leading newline in the header on the first output */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000185 i = 0;
186 do {
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200187 char *buf;
188 int taillen;
189 int newlines_seen;
190 unsigned seen;
191 int nread;
Denys Vlasenko79b021d2009-08-10 03:16:18 +0200192 int fd = fds[i];
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200193
Denys Vlasenko79b021d2009-08-10 03:16:18 +0200194 if (ENABLE_FEATURE_FANCY_TAIL && fd < 0)
Tanguy Pruvot29d8ebe2011-10-29 15:15:34 +0200195 continue; /* may happen with -F */
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200196
Manuel Novoa III cad53642003-03-19 09:13:01 +0000197 if (nfiles > header_threshhold) {
198 tail_xprint_header(fmt, argv[i]);
Denys Vlasenkoea8b2522010-06-02 12:57:26 +0200199 fmt = header_fmt_str;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000200 }
201
Denys Vlasenko9e933d92011-05-20 00:30:04 +0200202 if (!G.from_top) {
Denys Vlasenko79b021d2009-08-10 03:16:18 +0200203 off_t current = lseek(fd, 0, SEEK_END);
Denis Vlasenko69ca5a72008-03-23 03:28:40 +0000204 if (current > 0) {
Denys Vlasenko79b021d2009-08-10 03:16:18 +0200205 unsigned off;
206 if (COUNT_BYTES) {
207 /* Optimizing count-bytes case if the file is seekable.
208 * Beware of backing up too far.
209 * Also we exclude files with size 0 (because of /proc/xxx) */
210 if (count == 0)
211 continue; /* showing zero bytes is easy :) */
212 current -= count;
213 if (current < 0)
214 current = 0;
215 xlseek(fd, current, SEEK_SET);
216 bb_copyfd_size(fd, STDOUT_FILENO, count);
217 continue;
218 }
219#if 1 /* This is technically incorrect for *LONG* strings, but very useful */
220 /* Optimizing count-lines case if the file is seekable.
221 * We assume the lines are <64k.
222 * (Users complain that tail takes too long
223 * on multi-gigabyte files) */
224 off = (count | 0xf); /* for small counts, be more paranoid */
225 if (off > (INT_MAX / (64*1024)))
226 off = (INT_MAX / (64*1024));
227 current -= off * (64*1024);
Denis Vlasenko69ca5a72008-03-23 03:28:40 +0000228 if (current < 0)
229 current = 0;
Denys Vlasenko79b021d2009-08-10 03:16:18 +0200230 xlseek(fd, current, SEEK_SET);
231#endif
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000232 }
233 }
234
Denys Vlasenko9e933d92011-05-20 00:30:04 +0200235 if (!tailbuf)
236 tailbuf = xmalloc(tailbufsize);
237
Manuel Novoa III cad53642003-03-19 09:13:01 +0000238 buf = tailbuf;
239 taillen = 0;
Denys Vlasenkoa43df642009-08-09 22:06:56 +0200240 /* "We saw 1st line/byte".
Denys Vlasenko79b021d2009-08-10 03:16:18 +0200241 * Used only by +N code ("start from Nth", 1-based): */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000242 seen = 1;
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000243 newlines_seen = 0;
Tanguy Pruvot29d8ebe2011-10-29 15:15:34 +0200244 while ((nread = tail_read(fd, buf, tailbufsize - taillen)) > 0) {
Denys Vlasenko9e933d92011-05-20 00:30:04 +0200245 if (G.from_top) {
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200246 int nwrite = nread;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000247 if (seen < count) {
Denys Vlasenkoa43df642009-08-09 22:06:56 +0200248 /* We need to skip a few more bytes/lines */
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000249 if (COUNT_BYTES) {
Tanguy Pruvot29d8ebe2011-10-29 15:15:34 +0200250 nwrite -= (count - seen);
251 seen += nread;
Glenn L McGrath4ef5a842003-10-31 00:35:59 +0000252 } else {
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200253 char *s = buf;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000254 do {
255 --nwrite;
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000256 if (*s++ == '\n' && ++seen == count) {
Matt Kraai55bccf32001-01-05 02:57:53 +0000257 break;
258 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000259 } while (nwrite);
260 }
261 }
Denys Vlasenko6eaeb772010-03-12 22:16:25 +0100262 if (nwrite > 0)
263 xwrite(STDOUT_FILENO, buf + nread - nwrite, nwrite);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000264 } else if (count) {
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000265 if (COUNT_BYTES) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000266 taillen += nread;
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000267 if (taillen > (int)count) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000268 memmove(tailbuf, tailbuf + taillen - count, count);
269 taillen = count;
270 }
Glenn L McGrath4ef5a842003-10-31 00:35:59 +0000271 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000272 int k = nread;
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000273 int newlines_in_buf = 0;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000274
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000275 do { /* count '\n' in last read */
276 k--;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000277 if (buf[k] == '\n') {
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000278 newlines_in_buf++;
Matt Kraai55bccf32001-01-05 02:57:53 +0000279 }
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000280 } while (k);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000281
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000282 if (newlines_seen + newlines_in_buf < (int)count) {
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000283 newlines_seen += newlines_in_buf;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000284 taillen += nread;
Matt Kraai55bccf32001-01-05 02:57:53 +0000285 } else {
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000286 int extra = (buf[nread-1] != '\n');
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200287 char *s;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000288
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000289 k = newlines_seen + newlines_in_buf + extra - count;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000290 s = tailbuf;
291 while (k) {
292 if (*s == '\n') {
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000293 k--;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000294 }
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000295 s++;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000296 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000297 taillen += nread - (s - tailbuf);
298 memmove(tailbuf, s, taillen);
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000299 newlines_seen = count - extra;
Matt Kraai55bccf32001-01-05 02:57:53 +0000300 }
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000301 if (tailbufsize < (size_t)taillen + BUFSIZ) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000302 tailbufsize = taillen + BUFSIZ;
303 tailbuf = xrealloc(tailbuf, tailbufsize);
Matt Kraai55bccf32001-01-05 02:57:53 +0000304 }
Eric Andersend5fa3e32000-08-02 16:42:58 +0000305 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000306 buf = tailbuf + taillen;
Eric Andersend5fa3e32000-08-02 16:42:58 +0000307 }
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000308 } /* while (tail_read() > 0) */
Denys Vlasenko9e933d92011-05-20 00:30:04 +0200309 if (!G.from_top) {
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000310 xwrite(STDOUT_FILENO, tailbuf, taillen);
Matt Kraai55bccf32001-01-05 02:57:53 +0000311 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000312 } while (++i < nfiles);
maxwen27116ba2015-08-14 21:41:28 +0200313 prev_fd = fds[i-1];
Manuel Novoa III cad53642003-03-19 09:13:01 +0000314
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200315 tailbuf = xrealloc(tailbuf, BUFSIZ);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000316
317 fmt = NULL;
Matt Kraai55bccf32001-01-05 02:57:53 +0000318
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000319 if (FOLLOW) while (1) {
Matt Kraai55bccf32001-01-05 02:57:53 +0000320 sleep(sleep_period);
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200321
Manuel Novoa III cad53642003-03-19 09:13:01 +0000322 i = 0;
323 do {
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200324 int nread;
325 const char *filename = argv[i];
326 int fd = fds[i];
327
328 if (FOLLOW_RETRY) {
329 struct stat sbuf, fsbuf;
330
331 if (fd < 0
332 || fstat(fd, &fsbuf) < 0
333 || stat(filename, &sbuf) < 0
334 || fsbuf.st_dev != sbuf.st_dev
335 || fsbuf.st_ino != sbuf.st_ino
336 ) {
337 int new_fd;
338
339 if (fd >= 0)
340 close(fd);
341 new_fd = open(filename, O_RDONLY);
342 if (new_fd >= 0) {
343 bb_error_msg("%s has %s; following end of new file",
344 filename, (fd < 0) ? "appeared" : "been replaced"
345 );
346 } else if (fd >= 0) {
347 bb_perror_msg("%s has become inaccessible", filename);
348 }
349 fds[i] = fd = new_fd;
350 }
351 }
352 if (ENABLE_FEATURE_FANCY_TAIL && fd < 0)
353 continue;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000354 if (nfiles > header_threshhold) {
Denys Vlasenkoea8b2522010-06-02 12:57:26 +0200355 fmt = header_fmt_str;
Matt Kraai55bccf32001-01-05 02:57:53 +0000356 }
maxwen27116ba2015-08-14 21:41:28 +0200357 for (;;) {
358 /* tail -f keeps following files even if they are truncated */
359 struct stat sbuf;
360 /* /proc files report zero st_size, don't lseek them */
361 if (fstat(fd, &sbuf) == 0 && sbuf.st_size > 0) {
362 off_t current = lseek(fd, 0, SEEK_CUR);
363 if (sbuf.st_size < current)
364 xlseek(fd, 0, SEEK_SET);
365 }
366
367 nread = tail_read(fd, tailbuf, BUFSIZ);
368 if (nread <= 0)
369 break;
370 if (fmt && (fd != prev_fd)) {
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200371 tail_xprint_header(fmt, filename);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000372 fmt = NULL;
maxwen27116ba2015-08-14 21:41:28 +0200373 prev_fd = fd;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000374 }
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}