blob: 52bacb7ed10e44fd4d2e6f01b169dc626d7c4461 [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
Eric Andersencbe31da2001-02-20 06:14:08 +000027#include "busybox.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 },
Matt Kraai24ac0172000-12-18 21:38:57 +000033 { NULL, 0 }
34};
35
Rob Landleyf8fd4db2006-01-30 01:30:39 +000036static int status;
Matt Kraai55bccf32001-01-05 02:57:53 +000037
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000038static void tail_xprint_header(const char *fmt, const char *filename)
39{
Denis Vlasenkoe31f7212006-12-22 16:06:16 +000040 if (fdprintf(STDOUT_FILENO, fmt, filename) < 0)
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000041 bb_perror_nomsg_and_die();
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000042}
43
Manuel Novoa III cad53642003-03-19 09:13:01 +000044static ssize_t tail_read(int fd, char *buf, size_t count)
45{
46 ssize_t r;
Denis Vlasenkoe31f7212006-12-22 16:06:16 +000047 off_t current, end;
Paul Fox49054342005-07-20 19:46:32 +000048 struct stat sbuf;
Manuel Novoa III cad53642003-03-19 09:13:01 +000049
Mike Frysingerdbc049f2005-07-26 22:57:51 +000050 end = current = lseek(fd, 0, SEEK_CUR);
51 if (!fstat(fd, &sbuf))
52 end = sbuf.st_size;
Rob Landley58a651b2005-08-13 00:35:00 +000053 lseek(fd, end < current ? 0 : current, SEEK_SET);
Denis Vlasenkoe31f7212006-12-22 16:06:16 +000054 r = safe_read(fd, buf, count);
55 if (r < 0) {
Bernhard Reutner-Fischer1b9d7c92006-06-03 22:45:37 +000056 bb_perror_msg(bb_msg_read_error);
Manuel Novoa III cad53642003-03-19 09:13:01 +000057 status = EXIT_FAILURE;
58 }
59
60 return r;
61}
62
Manuel Novoa III cad53642003-03-19 09:13:01 +000063static const char header_fmt[] = "\n==> %s <==\n";
64
Bernhard Reutner-Fischer84d2d492007-01-24 21:38:10 +000065static unsigned eat_num(const char *p) {
66 if (*p == '-') p++;
67 else if (*p == '+') { p++; status = 1; }
68 return xatou_sfx(p, tail_suffixes);
69}
70
Denis Vlasenko06af2162007-02-03 17:28:39 +000071int tail_main(int argc, char **argv);
Eric Andersen98bbd682000-07-31 17:05:58 +000072int tail_main(int argc, char **argv)
Eric Andersenabc0f4f1999-12-08 23:19:36 +000073{
Denis Vlasenkoe31f7212006-12-22 16:06:16 +000074 unsigned count = 10;
Denis Vlasenko459903b2006-11-27 14:44:18 +000075 unsigned sleep_period = 1;
Bernhard Reutner-Fischer84d2d492007-01-24 21:38:10 +000076 bool from_top;
Manuel Novoa III cad53642003-03-19 09:13:01 +000077 int header_threshhold = 1;
Denis Vlasenkoe31f7212006-12-22 16:06:16 +000078 const char *str_c, *str_n, *str_s;
Eric Andersenabc0f4f1999-12-08 23:19:36 +000079
Manuel Novoa III cad53642003-03-19 09:13:01 +000080 char *tailbuf;
81 size_t tailbufsize;
82 int taillen = 0;
83 int newline = 0;
Denis Vlasenkoe31f7212006-12-22 16:06:16 +000084 int nfiles, nread, nwrite, seen, i, opt;
Manuel Novoa III cad53642003-03-19 09:13:01 +000085
Denis Vlasenkoe31f7212006-12-22 16:06:16 +000086 int *fds;
Manuel Novoa III cad53642003-03-19 09:13:01 +000087 char *s, *buf;
88 const char *fmt;
89
Denis Vlasenko08492072006-12-22 13:56:36 +000090#if ENABLE_INCLUDE_SUSv2 || ENABLE_FEATURE_FANCY_TAIL
Manuel Novoa III cad53642003-03-19 09:13:01 +000091 /* Allow legacy syntax of an initial numeric option without -n. */
Denis Vlasenko459903b2006-11-27 14:44:18 +000092 if (argc >= 2 && (argv[1][0] == '+' || argv[1][0] == '-')
93 && isdigit(argv[1][1])
94 ) {
Denis Vlasenkoa41fdf32007-01-29 22:51:00 +000095 argv[0] = (char*)"-n";
Denis Vlasenkoe31f7212006-12-22 16:06:16 +000096 argv--;
97 argc++;
Robert Griebl13c26fc2002-05-17 22:18:04 +000098 }
Glenn L McGrath0bd02572005-12-11 03:09:05 +000099#endif
Robert Griebl13c26fc2002-05-17 22:18:04 +0000100
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000101 opt = getopt32(argc, argv, "fc:n:" USE_FEATURE_FANCY_TAIL("qs:v"), &str_c, &str_n, &str_s);
102#define FOLLOW (opt & 0x1)
103#define COUNT_BYTES (opt & 0x2)
104 //if (opt & 0x1) // -f
Bernhard Reutner-Fischer84d2d492007-01-24 21:38:10 +0000105 if (opt & 0x2) count = eat_num(str_c); // -c
106 if (opt & 0x4) count = eat_num(str_n); // -n
Bernhard Reutner-Fischer5816ccb2005-12-13 10:48:45 +0000107#if ENABLE_FEATURE_FANCY_TAIL
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000108 if (opt & 0x8) header_threshhold = INT_MAX; // -q
109 if (opt & 0x10) sleep_period = xatou(str_s); // -s
110 if (opt & 0x20) header_threshhold = 0; // -v
Matt Kraai55bccf32001-01-05 02:57:53 +0000111#endif
Denis Vlasenko69107412006-12-21 00:43:06 +0000112 argc -= optind;
113 argv += optind;
Bernhard Reutner-Fischer84d2d492007-01-24 21:38:10 +0000114 from_top = status;
Matt Kraai55bccf32001-01-05 02:57:53 +0000115
116 /* open all the files */
Denis Vlasenko69107412006-12-21 00:43:06 +0000117 fds = xmalloc(sizeof(int) * (argc + 1));
Bernhard Reutner-Fischer84d2d492007-01-24 21:38:10 +0000118 status = nfiles = i = 0;
Denis Vlasenko69107412006-12-21 00:43:06 +0000119 if (argc == 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000120 struct stat statbuf;
121
122 if (!fstat(STDIN_FILENO, &statbuf) && S_ISFIFO(statbuf.st_mode)) {
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000123 opt &= ~1; /* clear FOLLOW */
Matt Kraai55bccf32001-01-05 02:57:53 +0000124 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000125 *argv = (char *) bb_msg_standard_input;
126 goto DO_STDIN;
Matt Kraai55bccf32001-01-05 02:57:53 +0000127 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000128
129 do {
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000130 if (NOT_LONE_DASH(argv[i])) {
131 fds[nfiles] = open(argv[i], O_RDONLY);
132 if (fds[nfiles] < 0) {
133 bb_perror_msg("%s", argv[i]);
134 status = EXIT_FAILURE;
135 continue;
136 }
137 } else {
138 DO_STDIN: /* "-" */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000139 fds[nfiles] = STDIN_FILENO;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000140 }
141 argv[nfiles] = argv[i];
142 ++nfiles;
143 } while (++i < argc);
144
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000145 if (!nfiles)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000146 bb_error_msg_and_die("no files");
Manuel Novoa III cad53642003-03-19 09:13:01 +0000147
148 tailbufsize = BUFSIZ;
Glenn L McGrath4ef5a842003-10-31 00:35:59 +0000149
Matt Kraai55bccf32001-01-05 02:57:53 +0000150 /* tail the files */
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000151 if (!from_top && COUNT_BYTES) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000152 if (tailbufsize < count) {
153 tailbufsize = count + BUFSIZ;
154 }
155 }
Glenn L McGrath4ef5a842003-10-31 00:35:59 +0000156
Manuel Novoa III cad53642003-03-19 09:13:01 +0000157 buf = tailbuf = xmalloc(tailbufsize);
Matt Kraai55bccf32001-01-05 02:57:53 +0000158
Manuel Novoa III cad53642003-03-19 09:13:01 +0000159 fmt = header_fmt + 1; /* Skip header leading newline on first output. */
160 i = 0;
161 do {
162 /* Be careful. It would be possible to optimize the count-bytes
163 * case if the file is seekable. If you do though, remember that
164 * starting file position may not be the beginning of the file.
165 * Beware of backing up too far. See example in wc.c.
166 */
Denis Vlasenkoace35ee2007-01-02 16:32:16 +0000167 if (!(count | from_top) && lseek(fds[i], 0, SEEK_END) >= 0) {
Eric Andersence98c192001-06-26 15:07:08 +0000168 continue;
169 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000170
171 if (nfiles > header_threshhold) {
172 tail_xprint_header(fmt, argv[i]);
173 fmt = header_fmt;
174 }
175
176 buf = tailbuf;
177 taillen = 0;
178 seen = 1;
Glenn L McGrathf86391e2004-09-30 00:24:21 +0000179 newline = 0;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000180
181 while ((nread = tail_read(fds[i], buf, tailbufsize-taillen)) > 0) {
Matt Kraai55bccf32001-01-05 02:57:53 +0000182 if (from_top) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000183 nwrite = nread;
184 if (seen < count) {
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000185 if (COUNT_BYTES) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000186 nwrite -= (count - seen);
187 seen = count;
Glenn L McGrath4ef5a842003-10-31 00:35:59 +0000188 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000189 s = buf;
190 do {
191 --nwrite;
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000192 if (*s++ == '\n' && ++seen == count) {
Matt Kraai55bccf32001-01-05 02:57:53 +0000193 break;
194 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000195 } while (nwrite);
196 }
197 }
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000198 xwrite(STDOUT_FILENO, buf + nread - nwrite, nwrite);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000199 } else if (count) {
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000200 if (COUNT_BYTES) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000201 taillen += nread;
202 if (taillen > count) {
203 memmove(tailbuf, tailbuf + taillen - count, count);
204 taillen = count;
205 }
Glenn L McGrath4ef5a842003-10-31 00:35:59 +0000206 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000207 int k = nread;
208 int nbuf = 0;
209
210 while (k) {
211 --k;
212 if (buf[k] == '\n') {
213 ++nbuf;
Matt Kraai55bccf32001-01-05 02:57:53 +0000214 }
215 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000216
217 if (newline + nbuf < count) {
218 newline += nbuf;
219 taillen += nread;
220
Matt Kraai55bccf32001-01-05 02:57:53 +0000221 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000222 int extra = 0;
223 if (buf[nread-1] != '\n') {
224 extra = 1;
225 }
226
227 k = newline + nbuf + extra - count;
228 s = tailbuf;
229 while (k) {
230 if (*s == '\n') {
231 --k;
232 }
233 ++s;
234 }
235
236 taillen += nread - (s - tailbuf);
237 memmove(tailbuf, s, taillen);
238 newline = count - extra;
Matt Kraai55bccf32001-01-05 02:57:53 +0000239 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000240 if (tailbufsize < taillen + BUFSIZ) {
241 tailbufsize = taillen + BUFSIZ;
242 tailbuf = xrealloc(tailbuf, tailbufsize);
Matt Kraai55bccf32001-01-05 02:57:53 +0000243 }
Eric Andersend5fa3e32000-08-02 16:42:58 +0000244 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000245 buf = tailbuf + taillen;
Eric Andersend5fa3e32000-08-02 16:42:58 +0000246 }
247 }
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000248
Manuel Novoa III cad53642003-03-19 09:13:01 +0000249 if (!from_top) {
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000250 xwrite(STDOUT_FILENO, tailbuf, taillen);
Matt Kraai55bccf32001-01-05 02:57:53 +0000251 }
252
253 taillen = 0;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000254 } while (++i < nfiles);
255
256 buf = xrealloc(tailbuf, BUFSIZ);
257
258 fmt = NULL;
Matt Kraai55bccf32001-01-05 02:57:53 +0000259
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000260 if (FOLLOW) while (1) {
Matt Kraai55bccf32001-01-05 02:57:53 +0000261 sleep(sleep_period);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000262 i = 0;
263 do {
264 if (nfiles > header_threshhold) {
265 fmt = header_fmt;
Matt Kraai55bccf32001-01-05 02:57:53 +0000266 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000267 while ((nread = tail_read(fds[i], buf, sizeof(buf))) > 0) {
268 if (fmt) {
269 tail_xprint_header(fmt, argv[i]);
270 fmt = NULL;
271 }
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000272 xwrite(STDOUT_FILENO, buf, nread);
Matt Kraai55bccf32001-01-05 02:57:53 +0000273 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000274 } while (++i < nfiles);
Matt Kraai55bccf32001-01-05 02:57:53 +0000275 }
276
277 return status;
278}