blob: 7335ba11e2e51449bbe36fac307bafb36fde4945 [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 */
Manuel Novoa III cad53642003-03-19 09:13:01 +00009/* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org)
10 *
11 * Pretty much rewritten to fix numerous bugs and reduce realloc() calls.
12 * Bugs fixed (although I may have forgotten one or two... it was pretty bad)
13 * 1) mixing printf/write without fflush()ing stdout
14 * 2) no check that any open files are present
15 * 3) optstring had -q taking an arg
16 * 4) no error checking on write in some cases, and a warning even then
17 * 5) q and s interaction bug
18 * 6) no check for lseek error
19 * 7) lseek attempted when count==0 even if arg was +0 (from top)
20 */
Denys Vlasenkoaf3f4202016-11-23 14:46:56 +010021//config:config TAIL
Denys Vlasenko4eed2c62017-07-18 22:01:24 +020022//config: bool "tail (7.1 kb)"
Denys Vlasenkoaf3f4202016-11-23 14:46:56 +010023//config: default y
24//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020025//config: tail is used to print the last specified number of lines
26//config: from files.
Denys Vlasenkoaf3f4202016-11-23 14:46:56 +010027//config:
28//config:config FEATURE_FANCY_TAIL
Denys Vlasenkof5604222017-01-10 14:58:54 +010029//config: bool "Enable -q, -s, -v, and -F options"
Denys Vlasenkoaf3f4202016-11-23 14:46:56 +010030//config: default y
31//config: depends on TAIL
32//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020033//config: These options are provided by GNU tail, but
34//config: are not specified in the SUSv3 standard:
35//config: -q Never output headers giving file names
36//config: -s SEC Wait SEC seconds between reads with -f
37//config: -v Always output headers giving file names
38//config: -F Same as -f, but keep retrying
Denys Vlasenkoaf3f4202016-11-23 14:46:56 +010039
40//applet:IF_TAIL(APPLET(tail, BB_DIR_USR_BIN, BB_SUID_DROP))
Manuel Novoa III cad53642003-03-19 09:13:01 +000041
Denys Vlasenkoaf0255f2013-02-25 01:24:32 +010042//kbuild:lib-$(CONFIG_TAIL) += tail.o
Denys Vlasenkoaf0255f2013-02-25 01:24:32 +010043
Denys Vlasenkoaf3f4202016-11-23 14:46:56 +010044/* BB_AUDIT SUSv3 compliant (need fancy for -c) */
45/* BB_AUDIT GNU compatible -c, -q, and -v options in 'fancy' configuration. */
46/* http://www.opengroup.org/onlinepubs/007904975/utilities/tail.html */
47
Pere Orga34425382011-03-31 14:43:25 +020048//usage:#define tail_trivial_usage
49//usage: "[OPTIONS] [FILE]..."
50//usage:#define tail_full_usage "\n\n"
51//usage: "Print last 10 lines of each FILE (or stdin) to stdout.\n"
52//usage: "With more than one FILE, precede each with a filename header.\n"
Pere Orga34425382011-03-31 14:43:25 +020053//usage: "\n -f Print data as file grows"
Cristian Ionescu-Idbohrn1bdbf262014-01-09 20:00:58 +010054//usage: "\n -c [+]N[kbm] Print last N bytes"
Pere Orga34425382011-03-31 14:43:25 +020055//usage: "\n -n N[kbm] Print last N lines"
Denys Vlasenko3305c002013-02-25 07:24:44 +010056//usage: "\n -n +N[kbm] Start on Nth line and print the rest"
Pere Orga34425382011-03-31 14:43:25 +020057//usage: IF_FEATURE_FANCY_TAIL(
Pere Orga34425382011-03-31 14:43:25 +020058//usage: "\n -q Never print headers"
Cristian Ionescu-Idbohrn1bdbf262014-01-09 20:00:58 +010059//usage: "\n -s SECONDS Wait SECONDS between reads with -f"
Pere Orga34425382011-03-31 14:43:25 +020060//usage: "\n -v Always print headers"
Cristian Ionescu-Idbohrn1bdbf262014-01-09 20:00:58 +010061//usage: "\n -F Same as -f, but keep retrying"
Pere Orga34425382011-03-31 14:43:25 +020062//usage: "\n"
63//usage: "\nN may be suffixed by k (x1024), b (x512), or m (x1024^2)."
Pere Orga34425382011-03-31 14:43:25 +020064//usage: )
65//usage:
66//usage:#define tail_example_usage
67//usage: "$ tail -n 1 /etc/resolv.conf\n"
68//usage: "nameserver 10.0.0.1\n"
69
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000070#include "libbb.h"
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +020071#include "common_bufsiz.h"
Matt Kraai24ac0172000-12-18 21:38:57 +000072
Bernhard Reutner-Fischerd9c2d5f2007-04-04 20:29:15 +000073struct globals {
Denys Vlasenko9e933d92011-05-20 00:30:04 +020074 bool from_top;
75 bool exitcode;
Denys Vlasenko98a4c7c2010-02-04 15:00:15 +010076} FIX_ALIASING;
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +020077#define G (*(struct globals*)bb_common_bufsiz1)
Denys Vlasenko47cfbf32016-04-21 18:18:48 +020078#define INIT_G() do { setup_common_bufsiz(); } while (0)
Matt Kraai55bccf32001-01-05 02:57:53 +000079
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000080static void tail_xprint_header(const char *fmt, const char *filename)
81{
Denis Vlasenkoe31f7212006-12-22 16:06:16 +000082 if (fdprintf(STDOUT_FILENO, fmt, filename) < 0)
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000083 bb_perror_nomsg_and_die();
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000084}
85
Denys Vlasenkod87fcd42013-07-08 02:39:51 +020086static ssize_t tail_read(int fd, char *buf, size_t count)
Manuel Novoa III cad53642003-03-19 09:13:01 +000087{
88 ssize_t r;
89
Denis Vlasenko226002e2007-10-05 19:17:16 +000090 r = full_read(fd, buf, count);
Denis Vlasenkoe31f7212006-12-22 16:06:16 +000091 if (r < 0) {
Bernhard Reutner-Fischer1b9d7c92006-06-03 22:45:37 +000092 bb_perror_msg(bb_msg_read_error);
Denys Vlasenko9e933d92011-05-20 00:30:04 +020093 G.exitcode = EXIT_FAILURE;
Manuel Novoa III cad53642003-03-19 09:13:01 +000094 }
95
96 return r;
97}
98
Denys Vlasenkoea8b2522010-06-02 12:57:26 +020099#define header_fmt_str "\n==> %s <==\n"
Manuel Novoa III cad53642003-03-19 09:13:01 +0000100
Denis Vlasenkoac678ec2007-04-16 22:32:04 +0000101static unsigned eat_num(const char *p)
102{
Denis Vlasenko368a12e2007-10-02 10:17:56 +0000103 if (*p == '-')
104 p++;
105 else if (*p == '+') {
106 p++;
Denys Vlasenko9e933d92011-05-20 00:30:04 +0200107 G.from_top = 1;
Denis Vlasenko368a12e2007-10-02 10:17:56 +0000108 }
Denys Vlasenkoc72b43c2013-07-13 23:49:45 +0200109 return xatou_sfx(p, bkm_suffixes);
Bernhard Reutner-Fischer84d2d492007-01-24 21:38:10 +0000110}
111
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000112int tail_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Eric Andersen98bbd682000-07-31 17:05:58 +0000113int tail_main(int argc, char **argv)
Eric Andersenabc0f4f1999-12-08 23:19:36 +0000114{
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000115 unsigned count = 10;
Denis Vlasenko459903b2006-11-27 14:44:18 +0000116 unsigned sleep_period = 1;
Denis Vlasenko92c0b822007-05-08 17:27:17 +0000117 const char *str_c, *str_n;
Eric Andersenabc0f4f1999-12-08 23:19:36 +0000118
Manuel Novoa III cad53642003-03-19 09:13:01 +0000119 char *tailbuf;
120 size_t tailbufsize;
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200121 unsigned header_threshhold = 1;
122 unsigned nfiles;
123 int i, opt;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000124
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000125 int *fds;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000126 const char *fmt;
Bartosz Golaszewski64938012013-10-14 20:11:55 +0200127 int prev_fd;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000128
Denys Vlasenko16714242011-09-21 01:59:15 +0200129 INIT_G();
130
Denis Vlasenko08492072006-12-22 13:56:36 +0000131#if ENABLE_INCLUDE_SUSv2 || ENABLE_FEATURE_FANCY_TAIL
Manuel Novoa III cad53642003-03-19 09:13:01 +0000132 /* Allow legacy syntax of an initial numeric option without -n. */
Denis Vlasenko62a90cd2008-03-17 09:07:36 +0000133 if (argv[1] && (argv[1][0] == '+' || argv[1][0] == '-')
Denis Vlasenko459903b2006-11-27 14:44:18 +0000134 && isdigit(argv[1][1])
135 ) {
Denis Vlasenko3603cd22009-03-27 02:36:02 +0000136 count = eat_num(argv[1]);
Denis Vlasenko62a90cd2008-03-17 09:07:36 +0000137 argv++;
138 argc--;
Robert Griebl13c26fc2002-05-17 22:18:04 +0000139 }
Glenn L McGrath0bd02572005-12-11 03:09:05 +0000140#endif
Robert Griebl13c26fc2002-05-17 22:18:04 +0000141
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200142 /* -s NUM, -F imlies -f */
Denys Vlasenko22542ec2017-08-08 21:55:02 +0200143 opt = getopt32(argv, IF_FEATURE_FANCY_TAIL("^")
144 "fc:n:"IF_FEATURE_FANCY_TAIL("qs:+vF")
145 IF_FEATURE_FANCY_TAIL("\0" "Ff"),
146 &str_c, &str_n IF_FEATURE_FANCY_TAIL(,&sleep_period)
147 );
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000148#define FOLLOW (opt & 0x1)
149#define COUNT_BYTES (opt & 0x2)
150 //if (opt & 0x1) // -f
Bernhard Reutner-Fischer84d2d492007-01-24 21:38:10 +0000151 if (opt & 0x2) count = eat_num(str_c); // -c
152 if (opt & 0x4) count = eat_num(str_n); // -n
Bernhard Reutner-Fischer5816ccb2005-12-13 10:48:45 +0000153#if ENABLE_FEATURE_FANCY_TAIL
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200154 /* q: make it impossible for nfiles to be > header_threshhold */
155 if (opt & 0x8) header_threshhold = UINT_MAX; // -q
Denys Vlasenkoa43df642009-08-09 22:06:56 +0200156 //if (opt & 0x10) // -s
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000157 if (opt & 0x20) header_threshhold = 0; // -v
Denys Vlasenkoa43df642009-08-09 22:06:56 +0200158# define FOLLOW_RETRY (opt & 0x40)
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200159#else
Denys Vlasenkoa43df642009-08-09 22:06:56 +0200160# define FOLLOW_RETRY 0
Matt Kraai55bccf32001-01-05 02:57:53 +0000161#endif
Denis Vlasenko69107412006-12-21 00:43:06 +0000162 argc -= optind;
163 argv += optind;
Matt Kraai55bccf32001-01-05 02:57:53 +0000164
165 /* open all the files */
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200166 fds = xmalloc(sizeof(fds[0]) * (argc + 1));
Denis Vlasenko62a90cd2008-03-17 09:07:36 +0000167 if (!argv[0]) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000168 struct stat statbuf;
169
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200170 if (fstat(STDIN_FILENO, &statbuf) == 0
171 && S_ISFIFO(statbuf.st_mode)
172 ) {
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000173 opt &= ~1; /* clear FOLLOW */
Matt Kraai55bccf32001-01-05 02:57:53 +0000174 }
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200175 argv[0] = (char *) bb_msg_standard_input;
Matt Kraai55bccf32001-01-05 02:57:53 +0000176 }
Denis Vlasenko62a90cd2008-03-17 09:07:36 +0000177 nfiles = i = 0;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000178 do {
Denis Vlasenko62a90cd2008-03-17 09:07:36 +0000179 int fd = open_or_warn_stdin(argv[i]);
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200180 if (fd < 0 && !FOLLOW_RETRY) {
Denys Vlasenko9e933d92011-05-20 00:30:04 +0200181 G.exitcode = EXIT_FAILURE;
Bernhard Reutner-Fischerd9c2d5f2007-04-04 20:29:15 +0000182 continue;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000183 }
Denis Vlasenko62a90cd2008-03-17 09:07:36 +0000184 fds[nfiles] = fd;
Bernhard Reutner-Fischerd9c2d5f2007-04-04 20:29:15 +0000185 argv[nfiles++] = argv[i];
Manuel Novoa III cad53642003-03-19 09:13:01 +0000186 } while (++i < argc);
187
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000188 if (!nfiles)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000189 bb_error_msg_and_die("no files");
Manuel Novoa III cad53642003-03-19 09:13:01 +0000190
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000191 /* prepare the buffer */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000192 tailbufsize = BUFSIZ;
Denys Vlasenko9e933d92011-05-20 00:30:04 +0200193 if (!G.from_top && COUNT_BYTES) {
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000194 if (tailbufsize < count + BUFSIZ) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000195 tailbufsize = count + BUFSIZ;
196 }
197 }
Denys Vlasenko9e933d92011-05-20 00:30:04 +0200198 /* tail -c1024m REGULAR_FILE doesn't really need 1G mem block.
199 * (In fact, it doesn't need ANY memory). So delay allocation.
200 */
201 tailbuf = NULL;
Glenn L McGrath4ef5a842003-10-31 00:35:59 +0000202
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000203 /* tail the files */
Denys Vlasenko9e933d92011-05-20 00:30:04 +0200204
205 fmt = header_fmt_str + 1; /* skip leading newline in the header on the first output */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000206 i = 0;
207 do {
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200208 char *buf;
209 int taillen;
210 int newlines_seen;
211 unsigned seen;
212 int nread;
Denys Vlasenko79b021d2009-08-10 03:16:18 +0200213 int fd = fds[i];
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200214
Denys Vlasenko79b021d2009-08-10 03:16:18 +0200215 if (ENABLE_FEATURE_FANCY_TAIL && fd < 0)
Denys Vlasenko0851d122011-09-17 00:12:24 +0200216 continue; /* may happen with -F */
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200217
Manuel Novoa III cad53642003-03-19 09:13:01 +0000218 if (nfiles > header_threshhold) {
219 tail_xprint_header(fmt, argv[i]);
Denys Vlasenkoea8b2522010-06-02 12:57:26 +0200220 fmt = header_fmt_str;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000221 }
222
Denys Vlasenko9e933d92011-05-20 00:30:04 +0200223 if (!G.from_top) {
Denys Vlasenko79b021d2009-08-10 03:16:18 +0200224 off_t current = lseek(fd, 0, SEEK_END);
Denis Vlasenko69ca5a72008-03-23 03:28:40 +0000225 if (current > 0) {
Denys Vlasenko79b021d2009-08-10 03:16:18 +0200226 unsigned off;
227 if (COUNT_BYTES) {
228 /* Optimizing count-bytes case if the file is seekable.
229 * Beware of backing up too far.
230 * Also we exclude files with size 0 (because of /proc/xxx) */
231 if (count == 0)
232 continue; /* showing zero bytes is easy :) */
233 current -= count;
234 if (current < 0)
235 current = 0;
236 xlseek(fd, current, SEEK_SET);
237 bb_copyfd_size(fd, STDOUT_FILENO, count);
238 continue;
239 }
240#if 1 /* This is technically incorrect for *LONG* strings, but very useful */
241 /* Optimizing count-lines case if the file is seekable.
242 * We assume the lines are <64k.
243 * (Users complain that tail takes too long
244 * on multi-gigabyte files) */
245 off = (count | 0xf); /* for small counts, be more paranoid */
246 if (off > (INT_MAX / (64*1024)))
247 off = (INT_MAX / (64*1024));
248 current -= off * (64*1024);
Denis Vlasenko69ca5a72008-03-23 03:28:40 +0000249 if (current < 0)
250 current = 0;
Denys Vlasenko79b021d2009-08-10 03:16:18 +0200251 xlseek(fd, current, SEEK_SET);
252#endif
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000253 }
254 }
255
Denys Vlasenko9e933d92011-05-20 00:30:04 +0200256 if (!tailbuf)
257 tailbuf = xmalloc(tailbufsize);
258
Manuel Novoa III cad53642003-03-19 09:13:01 +0000259 buf = tailbuf;
260 taillen = 0;
Denys Vlasenkoa43df642009-08-09 22:06:56 +0200261 /* "We saw 1st line/byte".
Denys Vlasenko79b021d2009-08-10 03:16:18 +0200262 * Used only by +N code ("start from Nth", 1-based): */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000263 seen = 1;
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000264 newlines_seen = 0;
Denys Vlasenkod87fcd42013-07-08 02:39:51 +0200265 while ((nread = tail_read(fd, buf, tailbufsize - taillen)) > 0) {
Denys Vlasenko9e933d92011-05-20 00:30:04 +0200266 if (G.from_top) {
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200267 int nwrite = nread;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000268 if (seen < count) {
Denys Vlasenkoa43df642009-08-09 22:06:56 +0200269 /* We need to skip a few more bytes/lines */
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000270 if (COUNT_BYTES) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000271 nwrite -= (count - seen);
Denys Vlasenko0851d122011-09-17 00:12:24 +0200272 seen += nread;
Glenn L McGrath4ef5a842003-10-31 00:35:59 +0000273 } else {
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200274 char *s = buf;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000275 do {
276 --nwrite;
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000277 if (*s++ == '\n' && ++seen == count) {
Matt Kraai55bccf32001-01-05 02:57:53 +0000278 break;
279 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000280 } while (nwrite);
281 }
282 }
Denys Vlasenko6eaeb772010-03-12 22:16:25 +0100283 if (nwrite > 0)
284 xwrite(STDOUT_FILENO, buf + nread - nwrite, nwrite);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000285 } else if (count) {
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000286 if (COUNT_BYTES) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000287 taillen += nread;
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000288 if (taillen > (int)count) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000289 memmove(tailbuf, tailbuf + taillen - count, count);
290 taillen = count;
291 }
Glenn L McGrath4ef5a842003-10-31 00:35:59 +0000292 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000293 int k = nread;
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000294 int newlines_in_buf = 0;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000295
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000296 do { /* count '\n' in last read */
297 k--;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000298 if (buf[k] == '\n') {
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000299 newlines_in_buf++;
Matt Kraai55bccf32001-01-05 02:57:53 +0000300 }
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000301 } while (k);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000302
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000303 if (newlines_seen + newlines_in_buf < (int)count) {
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000304 newlines_seen += newlines_in_buf;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000305 taillen += nread;
Matt Kraai55bccf32001-01-05 02:57:53 +0000306 } else {
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000307 int extra = (buf[nread-1] != '\n');
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200308 char *s;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000309
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000310 k = newlines_seen + newlines_in_buf + extra - count;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000311 s = tailbuf;
312 while (k) {
313 if (*s == '\n') {
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000314 k--;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000315 }
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000316 s++;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000317 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000318 taillen += nread - (s - tailbuf);
319 memmove(tailbuf, s, taillen);
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000320 newlines_seen = count - extra;
Matt Kraai55bccf32001-01-05 02:57:53 +0000321 }
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000322 if (tailbufsize < (size_t)taillen + BUFSIZ) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000323 tailbufsize = taillen + BUFSIZ;
324 tailbuf = xrealloc(tailbuf, tailbufsize);
Matt Kraai55bccf32001-01-05 02:57:53 +0000325 }
Eric Andersend5fa3e32000-08-02 16:42:58 +0000326 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000327 buf = tailbuf + taillen;
Eric Andersend5fa3e32000-08-02 16:42:58 +0000328 }
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000329 } /* while (tail_read() > 0) */
Denys Vlasenko9e933d92011-05-20 00:30:04 +0200330 if (!G.from_top) {
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000331 xwrite(STDOUT_FILENO, tailbuf, taillen);
Matt Kraai55bccf32001-01-05 02:57:53 +0000332 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000333 } while (++i < nfiles);
Bartosz Golaszewski64938012013-10-14 20:11:55 +0200334 prev_fd = fds[i-1];
Manuel Novoa III cad53642003-03-19 09:13:01 +0000335
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200336 tailbuf = xrealloc(tailbuf, BUFSIZ);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000337
338 fmt = NULL;
Matt Kraai55bccf32001-01-05 02:57:53 +0000339
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000340 if (FOLLOW) while (1) {
Matt Kraai55bccf32001-01-05 02:57:53 +0000341 sleep(sleep_period);
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200342
Manuel Novoa III cad53642003-03-19 09:13:01 +0000343 i = 0;
344 do {
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200345 int nread;
346 const char *filename = argv[i];
347 int fd = fds[i];
348
349 if (FOLLOW_RETRY) {
350 struct stat sbuf, fsbuf;
351
352 if (fd < 0
353 || fstat(fd, &fsbuf) < 0
354 || stat(filename, &sbuf) < 0
355 || fsbuf.st_dev != sbuf.st_dev
356 || fsbuf.st_ino != sbuf.st_ino
357 ) {
358 int new_fd;
359
360 if (fd >= 0)
361 close(fd);
362 new_fd = open(filename, O_RDONLY);
363 if (new_fd >= 0) {
364 bb_error_msg("%s has %s; following end of new file",
365 filename, (fd < 0) ? "appeared" : "been replaced"
366 );
367 } else if (fd >= 0) {
368 bb_perror_msg("%s has become inaccessible", filename);
369 }
370 fds[i] = fd = new_fd;
371 }
372 }
373 if (ENABLE_FEATURE_FANCY_TAIL && fd < 0)
374 continue;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000375 if (nfiles > header_threshhold) {
Denys Vlasenkoea8b2522010-06-02 12:57:26 +0200376 fmt = header_fmt_str;
Matt Kraai55bccf32001-01-05 02:57:53 +0000377 }
Denys Vlasenkod87fcd42013-07-08 02:39:51 +0200378 for (;;) {
379 /* tail -f keeps following files even if they are truncated */
380 struct stat sbuf;
381 /* /proc files report zero st_size, don't lseek them */
382 if (fstat(fd, &sbuf) == 0 && sbuf.st_size > 0) {
383 off_t current = lseek(fd, 0, SEEK_CUR);
384 if (sbuf.st_size < current)
385 xlseek(fd, 0, SEEK_SET);
386 }
387
388 nread = tail_read(fd, tailbuf, BUFSIZ);
389 if (nread <= 0)
390 break;
Bartosz Golaszewski64938012013-10-14 20:11:55 +0200391 if (fmt && (fd != prev_fd)) {
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200392 tail_xprint_header(fmt, filename);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000393 fmt = NULL;
Bartosz Golaszewski64938012013-10-14 20:11:55 +0200394 prev_fd = fd;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000395 }
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200396 xwrite(STDOUT_FILENO, tailbuf, nread);
Matt Kraai55bccf32001-01-05 02:57:53 +0000397 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000398 } while (++i < nfiles);
Denys Vlasenko9e933d92011-05-20 00:30:04 +0200399 } /* while (1) */
400
Bernhard Reutner-Fischerd9c2d5f2007-04-04 20:29:15 +0000401 if (ENABLE_FEATURE_CLEAN_UP) {
402 free(fds);
Alexander Shishkin2348e092010-10-21 00:25:45 +0200403 free(tailbuf);
Bernhard Reutner-Fischerd9c2d5f2007-04-04 20:29:15 +0000404 }
Denys Vlasenko9e933d92011-05-20 00:30:04 +0200405 return G.exitcode;
Matt Kraai55bccf32001-01-05 02:57:53 +0000406}