blob: 6201eb023ba58397dc5c3a9463c49095a147d0e8 [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 Vlasenkob097a842018-12-28 03:20:17 +010022//config: bool "tail (6.8 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"
Denys Vlasenkob9258b82021-06-02 04:01:10 +020051//usage: "Print last 10 lines of FILEs (or stdin) to.\n"
Pere Orga34425382011-03-31 14:43:25 +020052//usage: "With more than one FILE, precede each with a filename header.\n"
Denys Vlasenkob9258b82021-06-02 04:01:10 +020053//usage: "\n -c [+]N[bkm] Print last N bytes"
54//usage: "\n -n N[bkm] Print last N lines"
55//usage: "\n -n +N[bkm] Start on Nth line and print the rest"
56//usage: "\n (b:*512 k:*1024 m:*1024^2)"
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"
59//usage: "\n -v Always print headers"
Denys Vlasenkob9258b82021-06-02 04:01:10 +020060//usage: )
61//usage: "\n -f Print data as file grows"
62//usage: IF_FEATURE_FANCY_TAIL(
Cristian Ionescu-Idbohrn1bdbf262014-01-09 20:00:58 +010063//usage: "\n -F Same as -f, but keep retrying"
Denys Vlasenkob9258b82021-06-02 04:01:10 +020064//usage: "\n -s SECONDS Wait SECONDS between reads with -f"
Pere Orga34425382011-03-31 14:43:25 +020065//usage: )
66//usage:
67//usage:#define tail_example_usage
68//usage: "$ tail -n 1 /etc/resolv.conf\n"
69//usage: "nameserver 10.0.0.1\n"
70
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000071#include "libbb.h"
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +020072#include "common_bufsiz.h"
Matt Kraai24ac0172000-12-18 21:38:57 +000073
Bernhard Reutner-Fischerd9c2d5f2007-04-04 20:29:15 +000074struct globals {
Denys Vlasenko9e933d92011-05-20 00:30:04 +020075 bool from_top;
76 bool exitcode;
Denys Vlasenko98a4c7c2010-02-04 15:00:15 +010077} FIX_ALIASING;
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +020078#define G (*(struct globals*)bb_common_bufsiz1)
Denys Vlasenko47cfbf32016-04-21 18:18:48 +020079#define INIT_G() do { setup_common_bufsiz(); } while (0)
Matt Kraai55bccf32001-01-05 02:57:53 +000080
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000081static void tail_xprint_header(const char *fmt, const char *filename)
82{
Denis Vlasenkoe31f7212006-12-22 16:06:16 +000083 if (fdprintf(STDOUT_FILENO, fmt, filename) < 0)
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000084 bb_perror_nomsg_and_die();
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000085}
86
Denys Vlasenkod87fcd42013-07-08 02:39:51 +020087static ssize_t tail_read(int fd, char *buf, size_t count)
Manuel Novoa III cad53642003-03-19 09:13:01 +000088{
89 ssize_t r;
90
Denis Vlasenko226002e2007-10-05 19:17:16 +000091 r = full_read(fd, buf, count);
Denis Vlasenkoe31f7212006-12-22 16:06:16 +000092 if (r < 0) {
James Byrne69374872019-07-02 11:35:03 +020093 bb_simple_perror_msg(bb_msg_read_error);
Denys Vlasenko9e933d92011-05-20 00:30:04 +020094 G.exitcode = EXIT_FAILURE;
Manuel Novoa III cad53642003-03-19 09:13:01 +000095 }
96
97 return r;
98}
99
Denys Vlasenkoea8b2522010-06-02 12:57:26 +0200100#define header_fmt_str "\n==> %s <==\n"
Manuel Novoa III cad53642003-03-19 09:13:01 +0000101
Denis Vlasenkoac678ec2007-04-16 22:32:04 +0000102static unsigned eat_num(const char *p)
103{
Denis Vlasenko368a12e2007-10-02 10:17:56 +0000104 if (*p == '-')
105 p++;
106 else if (*p == '+') {
107 p++;
Denys Vlasenko9e933d92011-05-20 00:30:04 +0200108 G.from_top = 1;
Denis Vlasenko368a12e2007-10-02 10:17:56 +0000109 }
Denys Vlasenkoc72b43c2013-07-13 23:49:45 +0200110 return xatou_sfx(p, bkm_suffixes);
Bernhard Reutner-Fischer84d2d492007-01-24 21:38:10 +0000111}
112
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000113int tail_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Eric Andersen98bbd682000-07-31 17:05:58 +0000114int tail_main(int argc, char **argv)
Eric Andersenabc0f4f1999-12-08 23:19:36 +0000115{
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000116 unsigned count = 10;
Denis Vlasenko459903b2006-11-27 14:44:18 +0000117 unsigned sleep_period = 1;
Denis Vlasenko92c0b822007-05-08 17:27:17 +0000118 const char *str_c, *str_n;
Eric Andersenabc0f4f1999-12-08 23:19:36 +0000119
Manuel Novoa III cad53642003-03-19 09:13:01 +0000120 char *tailbuf;
121 size_t tailbufsize;
Denys Vlasenkoe0ea1252021-06-02 04:11:40 +0200122 unsigned header_threshold = 1;
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200123 unsigned nfiles;
124 int i, opt;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000125
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000126 int *fds;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000127 const char *fmt;
Bartosz Golaszewski64938012013-10-14 20:11:55 +0200128 int prev_fd;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000129
Denys Vlasenko16714242011-09-21 01:59:15 +0200130 INIT_G();
131
Denis Vlasenko08492072006-12-22 13:56:36 +0000132#if ENABLE_INCLUDE_SUSv2 || ENABLE_FEATURE_FANCY_TAIL
Manuel Novoa III cad53642003-03-19 09:13:01 +0000133 /* Allow legacy syntax of an initial numeric option without -n. */
Denis Vlasenko62a90cd2008-03-17 09:07:36 +0000134 if (argv[1] && (argv[1][0] == '+' || argv[1][0] == '-')
Denis Vlasenko459903b2006-11-27 14:44:18 +0000135 && isdigit(argv[1][1])
136 ) {
Denis Vlasenko3603cd22009-03-27 02:36:02 +0000137 count = eat_num(argv[1]);
Denis Vlasenko62a90cd2008-03-17 09:07:36 +0000138 argv++;
139 argc--;
Robert Griebl13c26fc2002-05-17 22:18:04 +0000140 }
Glenn L McGrath0bd02572005-12-11 03:09:05 +0000141#endif
Robert Griebl13c26fc2002-05-17 22:18:04 +0000142
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200143 /* -s NUM, -F imlies -f */
Denys Vlasenko22542ec2017-08-08 21:55:02 +0200144 opt = getopt32(argv, IF_FEATURE_FANCY_TAIL("^")
145 "fc:n:"IF_FEATURE_FANCY_TAIL("qs:+vF")
146 IF_FEATURE_FANCY_TAIL("\0" "Ff"),
147 &str_c, &str_n IF_FEATURE_FANCY_TAIL(,&sleep_period)
148 );
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000149#define FOLLOW (opt & 0x1)
150#define COUNT_BYTES (opt & 0x2)
151 //if (opt & 0x1) // -f
Bernhard Reutner-Fischer84d2d492007-01-24 21:38:10 +0000152 if (opt & 0x2) count = eat_num(str_c); // -c
153 if (opt & 0x4) count = eat_num(str_n); // -n
Bernhard Reutner-Fischer5816ccb2005-12-13 10:48:45 +0000154#if ENABLE_FEATURE_FANCY_TAIL
Denys Vlasenkoe0ea1252021-06-02 04:11:40 +0200155 /* q: make it impossible for nfiles to be > header_threshold */
156 if (opt & 0x8) header_threshold = UINT_MAX; // -q
Denys Vlasenkoa43df642009-08-09 22:06:56 +0200157 //if (opt & 0x10) // -s
Denys Vlasenkoe0ea1252021-06-02 04:11:40 +0200158 if (opt & 0x20) header_threshold = 0; // -v
Denys Vlasenkoa43df642009-08-09 22:06:56 +0200159# define FOLLOW_RETRY (opt & 0x40)
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200160#else
Denys Vlasenkoa43df642009-08-09 22:06:56 +0200161# define FOLLOW_RETRY 0
Matt Kraai55bccf32001-01-05 02:57:53 +0000162#endif
Denis Vlasenko69107412006-12-21 00:43:06 +0000163 argc -= optind;
164 argv += optind;
Matt Kraai55bccf32001-01-05 02:57:53 +0000165
166 /* open all the files */
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200167 fds = xmalloc(sizeof(fds[0]) * (argc + 1));
Denis Vlasenko62a90cd2008-03-17 09:07:36 +0000168 if (!argv[0]) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000169 struct stat statbuf;
170
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200171 if (fstat(STDIN_FILENO, &statbuf) == 0
172 && S_ISFIFO(statbuf.st_mode)
173 ) {
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000174 opt &= ~1; /* clear FOLLOW */
Matt Kraai55bccf32001-01-05 02:57:53 +0000175 }
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200176 argv[0] = (char *) bb_msg_standard_input;
Matt Kraai55bccf32001-01-05 02:57:53 +0000177 }
Denis Vlasenko62a90cd2008-03-17 09:07:36 +0000178 nfiles = i = 0;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000179 do {
Denis Vlasenko62a90cd2008-03-17 09:07:36 +0000180 int fd = open_or_warn_stdin(argv[i]);
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200181 if (fd < 0 && !FOLLOW_RETRY) {
Denys Vlasenko9e933d92011-05-20 00:30:04 +0200182 G.exitcode = EXIT_FAILURE;
Bernhard Reutner-Fischerd9c2d5f2007-04-04 20:29:15 +0000183 continue;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000184 }
Denis Vlasenko62a90cd2008-03-17 09:07:36 +0000185 fds[nfiles] = fd;
Bernhard Reutner-Fischerd9c2d5f2007-04-04 20:29:15 +0000186 argv[nfiles++] = argv[i];
Manuel Novoa III cad53642003-03-19 09:13:01 +0000187 } while (++i < argc);
188
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000189 if (!nfiles)
James Byrne69374872019-07-02 11:35:03 +0200190 bb_simple_error_msg_and_die("no files");
Manuel Novoa III cad53642003-03-19 09:13:01 +0000191
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000192 /* prepare the buffer */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000193 tailbufsize = BUFSIZ;
Denys Vlasenko9e933d92011-05-20 00:30:04 +0200194 if (!G.from_top && COUNT_BYTES) {
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000195 if (tailbufsize < count + BUFSIZ) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000196 tailbufsize = count + BUFSIZ;
197 }
198 }
Denys Vlasenko9e933d92011-05-20 00:30:04 +0200199 /* tail -c1024m REGULAR_FILE doesn't really need 1G mem block.
200 * (In fact, it doesn't need ANY memory). So delay allocation.
201 */
202 tailbuf = NULL;
Glenn L McGrath4ef5a842003-10-31 00:35:59 +0000203
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000204 /* tail the files */
Denys Vlasenko9e933d92011-05-20 00:30:04 +0200205
206 fmt = header_fmt_str + 1; /* skip leading newline in the header on the first output */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000207 i = 0;
208 do {
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200209 char *buf;
210 int taillen;
211 int newlines_seen;
212 unsigned seen;
213 int nread;
Denys Vlasenko79b021d2009-08-10 03:16:18 +0200214 int fd = fds[i];
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200215
Denys Vlasenko79b021d2009-08-10 03:16:18 +0200216 if (ENABLE_FEATURE_FANCY_TAIL && fd < 0)
Denys Vlasenko0851d122011-09-17 00:12:24 +0200217 continue; /* may happen with -F */
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200218
Denys Vlasenkoe0ea1252021-06-02 04:11:40 +0200219 if (nfiles > header_threshold) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000220 tail_xprint_header(fmt, argv[i]);
Denys Vlasenkoea8b2522010-06-02 12:57:26 +0200221 fmt = header_fmt_str;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000222 }
223
Denys Vlasenko9e933d92011-05-20 00:30:04 +0200224 if (!G.from_top) {
Denys Vlasenko79b021d2009-08-10 03:16:18 +0200225 off_t current = lseek(fd, 0, SEEK_END);
Denis Vlasenko69ca5a72008-03-23 03:28:40 +0000226 if (current > 0) {
Denys Vlasenko79b021d2009-08-10 03:16:18 +0200227 unsigned off;
228 if (COUNT_BYTES) {
229 /* Optimizing count-bytes case if the file is seekable.
230 * Beware of backing up too far.
231 * Also we exclude files with size 0 (because of /proc/xxx) */
232 if (count == 0)
233 continue; /* showing zero bytes is easy :) */
234 current -= count;
235 if (current < 0)
236 current = 0;
237 xlseek(fd, current, SEEK_SET);
238 bb_copyfd_size(fd, STDOUT_FILENO, count);
239 continue;
240 }
241#if 1 /* This is technically incorrect for *LONG* strings, but very useful */
242 /* Optimizing count-lines case if the file is seekable.
243 * We assume the lines are <64k.
244 * (Users complain that tail takes too long
245 * on multi-gigabyte files) */
246 off = (count | 0xf); /* for small counts, be more paranoid */
247 if (off > (INT_MAX / (64*1024)))
248 off = (INT_MAX / (64*1024));
249 current -= off * (64*1024);
Denis Vlasenko69ca5a72008-03-23 03:28:40 +0000250 if (current < 0)
251 current = 0;
Denys Vlasenko79b021d2009-08-10 03:16:18 +0200252 xlseek(fd, current, SEEK_SET);
253#endif
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000254 }
255 }
256
Denys Vlasenko9e933d92011-05-20 00:30:04 +0200257 if (!tailbuf)
258 tailbuf = xmalloc(tailbufsize);
259
Manuel Novoa III cad53642003-03-19 09:13:01 +0000260 buf = tailbuf;
261 taillen = 0;
Denys Vlasenkoa43df642009-08-09 22:06:56 +0200262 /* "We saw 1st line/byte".
Denys Vlasenko79b021d2009-08-10 03:16:18 +0200263 * Used only by +N code ("start from Nth", 1-based): */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000264 seen = 1;
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000265 newlines_seen = 0;
Denys Vlasenkod87fcd42013-07-08 02:39:51 +0200266 while ((nread = tail_read(fd, buf, tailbufsize - taillen)) > 0) {
Denys Vlasenko9e933d92011-05-20 00:30:04 +0200267 if (G.from_top) {
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200268 int nwrite = nread;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000269 if (seen < count) {
Denys Vlasenkoa43df642009-08-09 22:06:56 +0200270 /* We need to skip a few more bytes/lines */
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000271 if (COUNT_BYTES) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000272 nwrite -= (count - seen);
Denys Vlasenko0851d122011-09-17 00:12:24 +0200273 seen += nread;
Glenn L McGrath4ef5a842003-10-31 00:35:59 +0000274 } else {
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200275 char *s = buf;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000276 do {
277 --nwrite;
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000278 if (*s++ == '\n' && ++seen == count) {
Matt Kraai55bccf32001-01-05 02:57:53 +0000279 break;
280 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000281 } while (nwrite);
282 }
283 }
Denys Vlasenko6eaeb772010-03-12 22:16:25 +0100284 if (nwrite > 0)
285 xwrite(STDOUT_FILENO, buf + nread - nwrite, nwrite);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000286 } else if (count) {
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000287 if (COUNT_BYTES) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000288 taillen += nread;
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000289 if (taillen > (int)count) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000290 memmove(tailbuf, tailbuf + taillen - count, count);
291 taillen = count;
292 }
Glenn L McGrath4ef5a842003-10-31 00:35:59 +0000293 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000294 int k = nread;
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000295 int newlines_in_buf = 0;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000296
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000297 do { /* count '\n' in last read */
298 k--;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000299 if (buf[k] == '\n') {
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000300 newlines_in_buf++;
Matt Kraai55bccf32001-01-05 02:57:53 +0000301 }
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000302 } while (k);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000303
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000304 if (newlines_seen + newlines_in_buf < (int)count) {
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000305 newlines_seen += newlines_in_buf;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000306 taillen += nread;
Matt Kraai55bccf32001-01-05 02:57:53 +0000307 } else {
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000308 int extra = (buf[nread-1] != '\n');
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200309 char *s;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000310
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000311 k = newlines_seen + newlines_in_buf + extra - count;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000312 s = tailbuf;
313 while (k) {
314 if (*s == '\n') {
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000315 k--;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000316 }
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000317 s++;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000318 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000319 taillen += nread - (s - tailbuf);
320 memmove(tailbuf, s, taillen);
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000321 newlines_seen = count - extra;
Matt Kraai55bccf32001-01-05 02:57:53 +0000322 }
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000323 if (tailbufsize < (size_t)taillen + BUFSIZ) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000324 tailbufsize = taillen + BUFSIZ;
325 tailbuf = xrealloc(tailbuf, tailbufsize);
Matt Kraai55bccf32001-01-05 02:57:53 +0000326 }
Eric Andersend5fa3e32000-08-02 16:42:58 +0000327 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000328 buf = tailbuf + taillen;
Eric Andersend5fa3e32000-08-02 16:42:58 +0000329 }
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000330 } /* while (tail_read() > 0) */
Denys Vlasenko9e933d92011-05-20 00:30:04 +0200331 if (!G.from_top) {
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000332 xwrite(STDOUT_FILENO, tailbuf, taillen);
Matt Kraai55bccf32001-01-05 02:57:53 +0000333 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000334 } while (++i < nfiles);
Bartosz Golaszewski64938012013-10-14 20:11:55 +0200335 prev_fd = fds[i-1];
Manuel Novoa III cad53642003-03-19 09:13:01 +0000336
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200337 tailbuf = xrealloc(tailbuf, BUFSIZ);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000338
339 fmt = NULL;
Matt Kraai55bccf32001-01-05 02:57:53 +0000340
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000341 if (FOLLOW) while (1) {
Matt Kraai55bccf32001-01-05 02:57:53 +0000342 sleep(sleep_period);
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200343
Manuel Novoa III cad53642003-03-19 09:13:01 +0000344 i = 0;
345 do {
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200346 int nread;
347 const char *filename = argv[i];
348 int fd = fds[i];
Denys Vlasenkof193aea2021-06-02 04:55:10 +0200349 int new_fd = -1;
350 struct stat sbuf;
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200351
352 if (FOLLOW_RETRY) {
Denys Vlasenkof193aea2021-06-02 04:55:10 +0200353 struct stat fsbuf;
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200354
355 if (fd < 0
356 || fstat(fd, &fsbuf) < 0
357 || stat(filename, &sbuf) < 0
358 || fsbuf.st_dev != sbuf.st_dev
359 || fsbuf.st_ino != sbuf.st_ino
360 ) {
Denys Vlasenkof193aea2021-06-02 04:55:10 +0200361 /* Looks like file has been created/renamed/deleted */
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200362 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 );
Denys Vlasenkof193aea2021-06-02 04:55:10 +0200367 if (fd < 0) {
368 /* No previously open fd for this file,
369 * start using new_fd immediately. */
370 fds[i] = fd = new_fd;
371 new_fd = -1;
372 }
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200373 } else if (fd >= 0) {
Denys Vlasenkof193aea2021-06-02 04:55:10 +0200374 bb_perror_msg("%s has been renamed or deleted", filename);
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200375 }
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200376 }
377 }
378 if (ENABLE_FEATURE_FANCY_TAIL && fd < 0)
379 continue;
Denys Vlasenkoe0ea1252021-06-02 04:11:40 +0200380 if (nfiles > header_threshold) {
Denys Vlasenkoea8b2522010-06-02 12:57:26 +0200381 fmt = header_fmt_str;
Matt Kraai55bccf32001-01-05 02:57:53 +0000382 }
Denys Vlasenkod87fcd42013-07-08 02:39:51 +0200383 for (;;) {
384 /* tail -f keeps following files even if they are truncated */
Denys Vlasenkod87fcd42013-07-08 02:39:51 +0200385 /* /proc files report zero st_size, don't lseek them */
Denys Vlasenkof193aea2021-06-02 04:55:10 +0200386 if (fstat(fd, &sbuf) == 0
387 /* && S_ISREG(sbuf.st_mode) TODO? */
388 && sbuf.st_size > 0
389 ) {
Denys Vlasenkod87fcd42013-07-08 02:39:51 +0200390 off_t current = lseek(fd, 0, SEEK_CUR);
Denys Vlasenkof193aea2021-06-02 04:55:10 +0200391 if (sbuf.st_size < current) {
392 //bb_perror_msg("%s: file truncated", filename); - says coreutils 8.32
Denys Vlasenkod87fcd42013-07-08 02:39:51 +0200393 xlseek(fd, 0, SEEK_SET);
Denys Vlasenkof193aea2021-06-02 04:55:10 +0200394 }
Denys Vlasenkod87fcd42013-07-08 02:39:51 +0200395 }
396
397 nread = tail_read(fd, tailbuf, BUFSIZ);
Denys Vlasenkof193aea2021-06-02 04:55:10 +0200398 if (nread <= 0) {
399 if (new_fd < 0)
400 break;
401 /* Switch to "tail -F"ing the new file */
402 xmove_fd(new_fd, fd);
403 new_fd = -1;
404 continue;
405 }
Bartosz Golaszewski64938012013-10-14 20:11:55 +0200406 if (fmt && (fd != prev_fd)) {
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200407 tail_xprint_header(fmt, filename);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000408 fmt = NULL;
Bartosz Golaszewski64938012013-10-14 20:11:55 +0200409 prev_fd = fd;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000410 }
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200411 xwrite(STDOUT_FILENO, tailbuf, nread);
Matt Kraai55bccf32001-01-05 02:57:53 +0000412 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000413 } while (++i < nfiles);
Denys Vlasenko9e933d92011-05-20 00:30:04 +0200414 } /* while (1) */
415
Bernhard Reutner-Fischerd9c2d5f2007-04-04 20:29:15 +0000416 if (ENABLE_FEATURE_CLEAN_UP) {
417 free(fds);
Alexander Shishkin2348e092010-10-21 00:25:45 +0200418 free(tailbuf);
Bernhard Reutner-Fischerd9c2d5f2007-04-04 20:29:15 +0000419 }
Denys Vlasenko9e933d92011-05-20 00:30:04 +0200420 return G.exitcode;
Matt Kraai55bccf32001-01-05 02:57:53 +0000421}