blob: e0d21ed3446a49f3f659233f5a5ee88139ea68b8 [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 },
Matt Kraai24ac0172000-12-18 21:38:57 +000033 { NULL, 0 }
34};
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 Vlasenkoe31f7212006-12-22 16:06:16 +000050 off_t current, end;
Paul Fox49054342005-07-20 19:46:32 +000051 struct stat sbuf;
Manuel Novoa III cad53642003-03-19 09:13:01 +000052
Mike Frysingerdbc049f2005-07-26 22:57:51 +000053 end = current = lseek(fd, 0, SEEK_CUR);
54 if (!fstat(fd, &sbuf))
55 end = sbuf.st_size;
Rob Landley58a651b2005-08-13 00:35:00 +000056 lseek(fd, end < current ? 0 : current, SEEK_SET);
Denis Vlasenkoe31f7212006-12-22 16:06:16 +000057 r = safe_read(fd, buf, count);
58 if (r < 0) {
Bernhard Reutner-Fischer1b9d7c92006-06-03 22:45:37 +000059 bb_perror_msg(bb_msg_read_error);
Bernhard Reutner-Fischerd9c2d5f2007-04-04 20:29:15 +000060 G.status = EXIT_FAILURE;
Manuel Novoa III cad53642003-03-19 09:13:01 +000061 }
62
63 return r;
64}
65
Manuel Novoa III cad53642003-03-19 09:13:01 +000066static const char header_fmt[] = "\n==> %s <==\n";
67
Denis Vlasenkoac678ec2007-04-16 22:32:04 +000068static unsigned eat_num(const char *p)
69{
Bernhard Reutner-Fischer84d2d492007-01-24 21:38:10 +000070 if (*p == '-') p++;
Bernhard Reutner-Fischerd9c2d5f2007-04-04 20:29:15 +000071 else if (*p == '+') { p++; G.status = EXIT_FAILURE; }
Bernhard Reutner-Fischer84d2d492007-01-24 21:38:10 +000072 return xatou_sfx(p, tail_suffixes);
73}
74
Denis Vlasenko06af2162007-02-03 17:28:39 +000075int tail_main(int argc, char **argv);
Eric Andersen98bbd682000-07-31 17:05:58 +000076int tail_main(int argc, char **argv)
Eric Andersenabc0f4f1999-12-08 23:19:36 +000077{
Denis Vlasenkoe31f7212006-12-22 16:06:16 +000078 unsigned count = 10;
Denis Vlasenko459903b2006-11-27 14:44:18 +000079 unsigned sleep_period = 1;
Bernhard Reutner-Fischer84d2d492007-01-24 21:38:10 +000080 bool from_top;
Manuel Novoa III cad53642003-03-19 09:13:01 +000081 int header_threshhold = 1;
Denis Vlasenko92c0b822007-05-08 17:27:17 +000082 const char *str_c, *str_n;
83 USE_FEATURE_FANCY_TAIL(const char *str_s;)
Eric Andersenabc0f4f1999-12-08 23:19:36 +000084
Manuel Novoa III cad53642003-03-19 09:13:01 +000085 char *tailbuf;
86 size_t tailbufsize;
87 int taillen = 0;
88 int newline = 0;
Denis Vlasenkoe31f7212006-12-22 16:06:16 +000089 int nfiles, nread, nwrite, seen, i, opt;
Manuel Novoa III cad53642003-03-19 09:13:01 +000090
Denis Vlasenkoe31f7212006-12-22 16:06:16 +000091 int *fds;
Manuel Novoa III cad53642003-03-19 09:13:01 +000092 char *s, *buf;
93 const char *fmt;
94
Denis Vlasenko08492072006-12-22 13:56:36 +000095#if ENABLE_INCLUDE_SUSv2 || ENABLE_FEATURE_FANCY_TAIL
Manuel Novoa III cad53642003-03-19 09:13:01 +000096 /* Allow legacy syntax of an initial numeric option without -n. */
Denis Vlasenko459903b2006-11-27 14:44:18 +000097 if (argc >= 2 && (argv[1][0] == '+' || argv[1][0] == '-')
98 && isdigit(argv[1][1])
99 ) {
Denis Vlasenko92c0b822007-05-08 17:27:17 +0000100 /* replacing arg[0] with "-n" can segfault, so... */
101 argv[1] = xasprintf("-n%s", argv[1]);
102#if 0 /* If we ever decide to make tail NOFORK */
103 char *s = alloca(strlen(argv[1]) + 3);
104 sprintf(s, "-n%s", argv[1]);
105 argv[1] = s;
106#endif
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
Denis Vlasenko92c0b822007-05-08 17:27:17 +0000110 opt = getopt32(argc, argv, "fc:n:" USE_FEATURE_FANCY_TAIL("qs:v"),
111 &str_c, &str_n USE_FEATURE_FANCY_TAIL(,&str_s));
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000112#define FOLLOW (opt & 0x1)
113#define COUNT_BYTES (opt & 0x2)
114 //if (opt & 0x1) // -f
Bernhard Reutner-Fischer84d2d492007-01-24 21:38:10 +0000115 if (opt & 0x2) count = eat_num(str_c); // -c
116 if (opt & 0x4) count = eat_num(str_n); // -n
Bernhard Reutner-Fischer5816ccb2005-12-13 10:48:45 +0000117#if ENABLE_FEATURE_FANCY_TAIL
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000118 if (opt & 0x8) header_threshhold = INT_MAX; // -q
119 if (opt & 0x10) sleep_period = xatou(str_s); // -s
120 if (opt & 0x20) header_threshhold = 0; // -v
Matt Kraai55bccf32001-01-05 02:57:53 +0000121#endif
Denis Vlasenko69107412006-12-21 00:43:06 +0000122 argc -= optind;
123 argv += optind;
Bernhard Reutner-Fischerd9c2d5f2007-04-04 20:29:15 +0000124 from_top = G.status;
Matt Kraai55bccf32001-01-05 02:57:53 +0000125
126 /* open all the files */
Denis Vlasenko69107412006-12-21 00:43:06 +0000127 fds = xmalloc(sizeof(int) * (argc + 1));
Bernhard Reutner-Fischerd9c2d5f2007-04-04 20:29:15 +0000128 nfiles = i = 0;
129 G.status = EXIT_SUCCESS;
Denis Vlasenko69107412006-12-21 00:43:06 +0000130 if (argc == 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000131 struct stat statbuf;
132
133 if (!fstat(STDIN_FILENO, &statbuf) && S_ISFIFO(statbuf.st_mode)) {
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000134 opt &= ~1; /* clear FOLLOW */
Matt Kraai55bccf32001-01-05 02:57:53 +0000135 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000136 *argv = (char *) bb_msg_standard_input;
Matt Kraai55bccf32001-01-05 02:57:53 +0000137 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000138 do {
Bernhard Reutner-Fischerd9c2d5f2007-04-04 20:29:15 +0000139 FILE* fil = fopen_or_warn_stdin(argv[i]);
140 if (!fil) {
141 G.status = EXIT_FAILURE;
142 continue;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000143 }
Bernhard Reutner-Fischerd9c2d5f2007-04-04 20:29:15 +0000144 fds[nfiles] = fileno(fil);
145 argv[nfiles++] = argv[i];
Manuel Novoa III cad53642003-03-19 09:13:01 +0000146 } while (++i < argc);
147
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000148 if (!nfiles)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000149 bb_error_msg_and_die("no files");
Manuel Novoa III cad53642003-03-19 09:13:01 +0000150
151 tailbufsize = BUFSIZ;
Glenn L McGrath4ef5a842003-10-31 00:35:59 +0000152
Matt Kraai55bccf32001-01-05 02:57:53 +0000153 /* tail the files */
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000154 if (!from_top && COUNT_BYTES) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000155 if (tailbufsize < count) {
156 tailbufsize = count + BUFSIZ;
157 }
158 }
Glenn L McGrath4ef5a842003-10-31 00:35:59 +0000159
Manuel Novoa III cad53642003-03-19 09:13:01 +0000160 buf = tailbuf = xmalloc(tailbufsize);
Matt Kraai55bccf32001-01-05 02:57:53 +0000161
Manuel Novoa III cad53642003-03-19 09:13:01 +0000162 fmt = header_fmt + 1; /* Skip header leading newline on first output. */
163 i = 0;
164 do {
165 /* Be careful. It would be possible to optimize the count-bytes
166 * case if the file is seekable. If you do though, remember that
167 * starting file position may not be the beginning of the file.
168 * Beware of backing up too far. See example in wc.c.
169 */
Denis Vlasenkoace35ee2007-01-02 16:32:16 +0000170 if (!(count | from_top) && lseek(fds[i], 0, SEEK_END) >= 0) {
Eric Andersence98c192001-06-26 15:07:08 +0000171 continue;
172 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000173
174 if (nfiles > header_threshhold) {
175 tail_xprint_header(fmt, argv[i]);
176 fmt = header_fmt;
177 }
178
179 buf = tailbuf;
180 taillen = 0;
181 seen = 1;
Glenn L McGrathf86391e2004-09-30 00:24:21 +0000182 newline = 0;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000183
184 while ((nread = tail_read(fds[i], buf, tailbufsize-taillen)) > 0) {
Matt Kraai55bccf32001-01-05 02:57:53 +0000185 if (from_top) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000186 nwrite = nread;
187 if (seen < count) {
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000188 if (COUNT_BYTES) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000189 nwrite -= (count - seen);
190 seen = count;
Glenn L McGrath4ef5a842003-10-31 00:35:59 +0000191 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000192 s = buf;
193 do {
194 --nwrite;
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000195 if (*s++ == '\n' && ++seen == count) {
Matt Kraai55bccf32001-01-05 02:57:53 +0000196 break;
197 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000198 } while (nwrite);
199 }
200 }
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000201 xwrite(STDOUT_FILENO, buf + nread - nwrite, nwrite);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000202 } else if (count) {
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000203 if (COUNT_BYTES) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000204 taillen += nread;
205 if (taillen > count) {
206 memmove(tailbuf, tailbuf + taillen - count, count);
207 taillen = count;
208 }
Glenn L McGrath4ef5a842003-10-31 00:35:59 +0000209 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000210 int k = nread;
211 int nbuf = 0;
212
213 while (k) {
214 --k;
215 if (buf[k] == '\n') {
216 ++nbuf;
Matt Kraai55bccf32001-01-05 02:57:53 +0000217 }
218 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000219
220 if (newline + nbuf < count) {
221 newline += nbuf;
222 taillen += nread;
Matt Kraai55bccf32001-01-05 02:57:53 +0000223 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000224 int extra = 0;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000225
Bernhard Reutner-Fischerd9c2d5f2007-04-04 20:29:15 +0000226 if (buf[nread-1] != '\n')
227 extra = 1;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000228 k = newline + nbuf + extra - count;
229 s = tailbuf;
230 while (k) {
231 if (*s == '\n') {
232 --k;
233 }
234 ++s;
235 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000236 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 }
Bernhard Reutner-Fischerd9c2d5f2007-04-04 20:29:15 +0000276 if (ENABLE_FEATURE_CLEAN_UP) {
277 free(fds);
278 }
279 return G.status;
Matt Kraai55bccf32001-01-05 02:57:53 +0000280}