blob: ef1326c831d9f0c512d7789e4c7ac0b333d1f109 [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 *
Rob Landleyf8fd4db2006-01-30 01:30:39 +00007 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
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
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000027#include "libbb.h"
Eric Andersenabc0f4f1999-12-08 23:19:36 +000028
Matt Kraaia164c642001-02-05 17:50:03 +000029static const struct suffix_mult tail_suffixes[] = {
Matt Kraai24ac0172000-12-18 21:38:57 +000030 { "b", 512 },
31 { "k", 1024 },
Denis Vlasenkoe31f7212006-12-22 16:06:16 +000032 { "m", 1024*1024 },
Denis Vlasenkof8689632007-07-27 15:06:25 +000033 { }
Matt Kraai24ac0172000-12-18 21:38:57 +000034};
35
Bernhard Reutner-Fischerd9c2d5f2007-04-04 20:29:15 +000036struct globals {
37 bool status;
38};
39#define G (*(struct globals*)&bb_common_bufsiz1)
Matt Kraai55bccf32001-01-05 02:57:53 +000040
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000041static void tail_xprint_header(const char *fmt, const char *filename)
42{
Denis Vlasenkoe31f7212006-12-22 16:06:16 +000043 if (fdprintf(STDOUT_FILENO, fmt, filename) < 0)
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000044 bb_perror_nomsg_and_die();
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000045}
46
Manuel Novoa III cad53642003-03-19 09:13:01 +000047static ssize_t tail_read(int fd, char *buf, size_t count)
48{
49 ssize_t r;
Denis Vlasenko368a12e2007-10-02 10:17:56 +000050 off_t current;
Paul Fox49054342005-07-20 19:46:32 +000051 struct stat sbuf;
Manuel Novoa III cad53642003-03-19 09:13:01 +000052
Denis Vlasenko368a12e2007-10-02 10:17:56 +000053 /* (A good comment is missing here) */
54 current = lseek(fd, 0, SEEK_CUR);
55 /* /proc files report zero st_size, don't lseek them. */
56 if (fstat(fd, &sbuf) == 0 && sbuf.st_size)
57 if (sbuf.st_size < current)
58 lseek(fd, 0, SEEK_SET);
59
Denis Vlasenko226002e2007-10-05 19:17:16 +000060 r = full_read(fd, buf, count);
Denis Vlasenkoe31f7212006-12-22 16:06:16 +000061 if (r < 0) {
Bernhard Reutner-Fischer1b9d7c92006-06-03 22:45:37 +000062 bb_perror_msg(bb_msg_read_error);
Bernhard Reutner-Fischerd9c2d5f2007-04-04 20:29:15 +000063 G.status = EXIT_FAILURE;
Manuel Novoa III cad53642003-03-19 09:13:01 +000064 }
65
66 return r;
67}
68
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000069static const char header_fmt[] ALIGN1 = "\n==> %s <==\n";
Manuel Novoa III cad53642003-03-19 09:13:01 +000070
Denis Vlasenkoac678ec2007-04-16 22:32:04 +000071static unsigned eat_num(const char *p)
72{
Denis Vlasenko368a12e2007-10-02 10:17:56 +000073 if (*p == '-')
74 p++;
75 else if (*p == '+') {
76 p++;
Denis Vlasenkoe8419c92008-02-19 00:38:10 +000077 G.status = 1; /* mark that we saw "+" */
Denis Vlasenko368a12e2007-10-02 10:17:56 +000078 }
Bernhard Reutner-Fischer84d2d492007-01-24 21:38:10 +000079 return xatou_sfx(p, tail_suffixes);
80}
81
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000082int tail_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Eric Andersen98bbd682000-07-31 17:05:58 +000083int tail_main(int argc, char **argv)
Eric Andersenabc0f4f1999-12-08 23:19:36 +000084{
Denis Vlasenkoe31f7212006-12-22 16:06:16 +000085 unsigned count = 10;
Denis Vlasenko459903b2006-11-27 14:44:18 +000086 unsigned sleep_period = 1;
Bernhard Reutner-Fischer84d2d492007-01-24 21:38:10 +000087 bool from_top;
Denis Vlasenko92c0b822007-05-08 17:27:17 +000088 const char *str_c, *str_n;
Eric Andersenabc0f4f1999-12-08 23:19:36 +000089
Manuel Novoa III cad53642003-03-19 09:13:01 +000090 char *tailbuf;
91 size_t tailbufsize;
Eric Lammerts3b5a6642009-07-22 00:31:27 +020092 unsigned header_threshhold = 1;
93 unsigned nfiles;
94 int i, opt;
Manuel Novoa III cad53642003-03-19 09:13:01 +000095
Denis Vlasenkoe31f7212006-12-22 16:06:16 +000096 int *fds;
Manuel Novoa III cad53642003-03-19 09:13:01 +000097 const char *fmt;
98
Denis Vlasenko08492072006-12-22 13:56:36 +000099#if ENABLE_INCLUDE_SUSv2 || ENABLE_FEATURE_FANCY_TAIL
Manuel Novoa III cad53642003-03-19 09:13:01 +0000100 /* Allow legacy syntax of an initial numeric option without -n. */
Denis Vlasenko62a90cd2008-03-17 09:07:36 +0000101 if (argv[1] && (argv[1][0] == '+' || argv[1][0] == '-')
Denis Vlasenko459903b2006-11-27 14:44:18 +0000102 && isdigit(argv[1][1])
103 ) {
Denis Vlasenko3603cd22009-03-27 02:36:02 +0000104 count = eat_num(argv[1]);
Denis Vlasenko62a90cd2008-03-17 09:07:36 +0000105 argv++;
106 argc--;
Robert Griebl13c26fc2002-05-17 22:18:04 +0000107 }
Glenn L McGrath0bd02572005-12-11 03:09:05 +0000108#endif
Robert Griebl13c26fc2002-05-17 22:18:04 +0000109
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200110 /* -s NUM, -F imlies -f */
111 IF_FEATURE_FANCY_TAIL(opt_complementary = "s+:Ff";)
112 opt = getopt32(argv, "fc:n:" IF_FEATURE_FANCY_TAIL("qs:vF"),
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000113 &str_c, &str_n IF_FEATURE_FANCY_TAIL(,&sleep_period));
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000114#define FOLLOW (opt & 0x1)
115#define COUNT_BYTES (opt & 0x2)
116 //if (opt & 0x1) // -f
Bernhard Reutner-Fischer84d2d492007-01-24 21:38:10 +0000117 if (opt & 0x2) count = eat_num(str_c); // -c
118 if (opt & 0x4) count = eat_num(str_n); // -n
Bernhard Reutner-Fischer5816ccb2005-12-13 10:48:45 +0000119#if ENABLE_FEATURE_FANCY_TAIL
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200120 /* q: make it impossible for nfiles to be > header_threshhold */
121 if (opt & 0x8) header_threshhold = UINT_MAX; // -q
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000122 if (opt & 0x20) header_threshhold = 0; // -v
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200123#define FOLLOW_RETRY (opt & 0x40)
124#else
125#define FOLLOW_RETRY 0
Matt Kraai55bccf32001-01-05 02:57:53 +0000126#endif
Denis Vlasenko69107412006-12-21 00:43:06 +0000127 argc -= optind;
128 argv += optind;
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000129 from_top = G.status; /* 1 if there was "-c +N" or "-n +N" */
130 G.status = EXIT_SUCCESS;
Matt Kraai55bccf32001-01-05 02:57:53 +0000131
132 /* open all the files */
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200133 fds = xmalloc(sizeof(fds[0]) * (argc + 1));
Denis Vlasenko62a90cd2008-03-17 09:07:36 +0000134 if (!argv[0]) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000135 struct stat statbuf;
136
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200137 if (fstat(STDIN_FILENO, &statbuf) == 0
138 && S_ISFIFO(statbuf.st_mode)
139 ) {
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000140 opt &= ~1; /* clear FOLLOW */
Matt Kraai55bccf32001-01-05 02:57:53 +0000141 }
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200142 argv[0] = (char *) bb_msg_standard_input;
Matt Kraai55bccf32001-01-05 02:57:53 +0000143 }
Denis Vlasenko62a90cd2008-03-17 09:07:36 +0000144 nfiles = i = 0;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000145 do {
Denis Vlasenko62a90cd2008-03-17 09:07:36 +0000146 int fd = open_or_warn_stdin(argv[i]);
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200147 if (fd < 0 && !FOLLOW_RETRY) {
Bernhard Reutner-Fischerd9c2d5f2007-04-04 20:29:15 +0000148 G.status = EXIT_FAILURE;
149 continue;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000150 }
Denis Vlasenko62a90cd2008-03-17 09:07:36 +0000151 fds[nfiles] = fd;
Bernhard Reutner-Fischerd9c2d5f2007-04-04 20:29:15 +0000152 argv[nfiles++] = argv[i];
Manuel Novoa III cad53642003-03-19 09:13:01 +0000153 } while (++i < argc);
154
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000155 if (!nfiles)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000156 bb_error_msg_and_die("no files");
Manuel Novoa III cad53642003-03-19 09:13:01 +0000157
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000158 /* prepare the buffer */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000159 tailbufsize = BUFSIZ;
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000160 if (!from_top && COUNT_BYTES) {
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000161 if (tailbufsize < count + BUFSIZ) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000162 tailbufsize = count + BUFSIZ;
163 }
164 }
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000165 tailbuf = xmalloc(tailbufsize);
Glenn L McGrath4ef5a842003-10-31 00:35:59 +0000166
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000167 /* tail the files */
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200168 fmt = header_fmt + 1; /* skip header leading newline on first output */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000169 i = 0;
170 do {
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200171 char *buf;
172 int taillen;
173 int newlines_seen;
174 unsigned seen;
175 int nread;
176
177 if (ENABLE_FEATURE_FANCY_TAIL && fds[i] < 0)
178 continue; /* may happen with -E */
179
Manuel Novoa III cad53642003-03-19 09:13:01 +0000180 if (nfiles > header_threshhold) {
181 tail_xprint_header(fmt, argv[i]);
182 fmt = header_fmt;
183 }
184
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000185 /* Optimizing count-bytes case if the file is seekable.
186 * Beware of backing up too far.
187 * Also we exclude files with size 0 (because of /proc/xxx) */
Denis Vlasenko69ca5a72008-03-23 03:28:40 +0000188 if (COUNT_BYTES && !from_top) {
189 off_t current = lseek(fds[i], 0, SEEK_END);
190 if (current > 0) {
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000191 if (count == 0)
192 continue; /* showing zero lines is easy :) */
Denis Vlasenko69ca5a72008-03-23 03:28:40 +0000193 current -= count;
194 if (current < 0)
195 current = 0;
196 xlseek(fds[i], current, SEEK_SET);
197 bb_copyfd_size(fds[i], STDOUT_FILENO, count);
198 continue;
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000199 }
200 }
201
Manuel Novoa III cad53642003-03-19 09:13:01 +0000202 buf = tailbuf;
203 taillen = 0;
204 seen = 1;
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000205 newlines_seen = 0;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000206 while ((nread = tail_read(fds[i], buf, tailbufsize-taillen)) > 0) {
Matt Kraai55bccf32001-01-05 02:57:53 +0000207 if (from_top) {
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200208 int nwrite = nread;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000209 if (seen < count) {
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000210 if (COUNT_BYTES) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000211 nwrite -= (count - seen);
212 seen = count;
Glenn L McGrath4ef5a842003-10-31 00:35:59 +0000213 } else {
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200214 char *s = buf;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000215 do {
216 --nwrite;
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000217 if (*s++ == '\n' && ++seen == count) {
Matt Kraai55bccf32001-01-05 02:57:53 +0000218 break;
219 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000220 } while (nwrite);
221 }
222 }
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000223 xwrite(STDOUT_FILENO, buf + nread - nwrite, nwrite);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000224 } else if (count) {
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000225 if (COUNT_BYTES) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000226 taillen += nread;
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000227 if (taillen > (int)count) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000228 memmove(tailbuf, tailbuf + taillen - count, count);
229 taillen = count;
230 }
Glenn L McGrath4ef5a842003-10-31 00:35:59 +0000231 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000232 int k = nread;
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000233 int newlines_in_buf = 0;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000234
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000235 do { /* count '\n' in last read */
236 k--;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000237 if (buf[k] == '\n') {
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000238 newlines_in_buf++;
Matt Kraai55bccf32001-01-05 02:57:53 +0000239 }
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000240 } while (k);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000241
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000242 if (newlines_seen + newlines_in_buf < (int)count) {
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000243 newlines_seen += newlines_in_buf;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000244 taillen += nread;
Matt Kraai55bccf32001-01-05 02:57:53 +0000245 } else {
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000246 int extra = (buf[nread-1] != '\n');
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200247 char *s;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000248
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000249 k = newlines_seen + newlines_in_buf + extra - count;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000250 s = tailbuf;
251 while (k) {
252 if (*s == '\n') {
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000253 k--;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000254 }
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000255 s++;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000256 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000257 taillen += nread - (s - tailbuf);
258 memmove(tailbuf, s, taillen);
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000259 newlines_seen = count - extra;
Matt Kraai55bccf32001-01-05 02:57:53 +0000260 }
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000261 if (tailbufsize < (size_t)taillen + BUFSIZ) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000262 tailbufsize = taillen + BUFSIZ;
263 tailbuf = xrealloc(tailbuf, tailbufsize);
Matt Kraai55bccf32001-01-05 02:57:53 +0000264 }
Eric Andersend5fa3e32000-08-02 16:42:58 +0000265 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000266 buf = tailbuf + taillen;
Eric Andersend5fa3e32000-08-02 16:42:58 +0000267 }
Denis Vlasenkoe8419c92008-02-19 00:38:10 +0000268 } /* while (tail_read() > 0) */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000269 if (!from_top) {
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000270 xwrite(STDOUT_FILENO, tailbuf, taillen);
Matt Kraai55bccf32001-01-05 02:57:53 +0000271 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000272 } while (++i < nfiles);
273
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200274 tailbuf = xrealloc(tailbuf, BUFSIZ);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000275
276 fmt = NULL;
Matt Kraai55bccf32001-01-05 02:57:53 +0000277
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000278 if (FOLLOW) while (1) {
Matt Kraai55bccf32001-01-05 02:57:53 +0000279 sleep(sleep_period);
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200280
Manuel Novoa III cad53642003-03-19 09:13:01 +0000281 i = 0;
282 do {
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200283 int nread;
284 const char *filename = argv[i];
285 int fd = fds[i];
286
287 if (FOLLOW_RETRY) {
288 struct stat sbuf, fsbuf;
289
290 if (fd < 0
291 || fstat(fd, &fsbuf) < 0
292 || stat(filename, &sbuf) < 0
293 || fsbuf.st_dev != sbuf.st_dev
294 || fsbuf.st_ino != sbuf.st_ino
295 ) {
296 int new_fd;
297
298 if (fd >= 0)
299 close(fd);
300 new_fd = open(filename, O_RDONLY);
301 if (new_fd >= 0) {
302 bb_error_msg("%s has %s; following end of new file",
303 filename, (fd < 0) ? "appeared" : "been replaced"
304 );
305 } else if (fd >= 0) {
306 bb_perror_msg("%s has become inaccessible", filename);
307 }
308 fds[i] = fd = new_fd;
309 }
310 }
311 if (ENABLE_FEATURE_FANCY_TAIL && fd < 0)
312 continue;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000313 if (nfiles > header_threshhold) {
314 fmt = header_fmt;
Matt Kraai55bccf32001-01-05 02:57:53 +0000315 }
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200316 while ((nread = tail_read(fd, tailbuf, BUFSIZ)) > 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000317 if (fmt) {
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200318 tail_xprint_header(fmt, filename);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000319 fmt = NULL;
320 }
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200321 xwrite(STDOUT_FILENO, tailbuf, nread);
Matt Kraai55bccf32001-01-05 02:57:53 +0000322 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000323 } while (++i < nfiles);
Matt Kraai55bccf32001-01-05 02:57:53 +0000324 }
Bernhard Reutner-Fischerd9c2d5f2007-04-04 20:29:15 +0000325 if (ENABLE_FEATURE_CLEAN_UP) {
326 free(fds);
327 }
328 return G.status;
Matt Kraai55bccf32001-01-05 02:57:53 +0000329}