blob: 4baffeed124047b847e079e27cc08883b0048f66 [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
Eric Andersen98bbd682000-07-31 17:05:58 +000065int tail_main(int argc, char **argv)
Eric Andersenabc0f4f1999-12-08 23:19:36 +000066{
Denis Vlasenkoe31f7212006-12-22 16:06:16 +000067 unsigned count = 10;
Denis Vlasenko459903b2006-11-27 14:44:18 +000068 unsigned sleep_period = 1;
Bernhard Reutner-Fischer8b1ae452007-01-20 21:31:21 +000069 bool from_top = 0;
Manuel Novoa III cad53642003-03-19 09:13:01 +000070 int header_threshhold = 1;
Denis Vlasenkoe31f7212006-12-22 16:06:16 +000071 const char *str_c, *str_n, *str_s;
Eric Andersenabc0f4f1999-12-08 23:19:36 +000072
Manuel Novoa III cad53642003-03-19 09:13:01 +000073 char *tailbuf;
74 size_t tailbufsize;
75 int taillen = 0;
76 int newline = 0;
Denis Vlasenkoe31f7212006-12-22 16:06:16 +000077 int nfiles, nread, nwrite, seen, i, opt;
Manuel Novoa III cad53642003-03-19 09:13:01 +000078
Denis Vlasenkoe31f7212006-12-22 16:06:16 +000079 int *fds;
Manuel Novoa III cad53642003-03-19 09:13:01 +000080 char *s, *buf;
81 const char *fmt;
82
Denis Vlasenkoe31f7212006-12-22 16:06:16 +000083 void eat_num(const char *p) {
84 if (*p == '-') p++;
85 else if (*p == '+') { p++; from_top = 1; }
86 count = xatou_sfx(p, tail_suffixes);
87 }
88
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 Vlasenkoe31f7212006-12-22 16:06:16 +000095 argv[0] = "-n";
96 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
105 if (opt & 0x2) eat_num(str_c); // -c
106 if (opt & 0x4) 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;
Matt Kraai55bccf32001-01-05 02:57:53 +0000114
115 /* open all the files */
Denis Vlasenko69107412006-12-21 00:43:06 +0000116 fds = xmalloc(sizeof(int) * (argc + 1));
Manuel Novoa III cad53642003-03-19 09:13:01 +0000117 nfiles = i = 0;
Denis Vlasenko69107412006-12-21 00:43:06 +0000118 if (argc == 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000119 struct stat statbuf;
120
121 if (!fstat(STDIN_FILENO, &statbuf) && S_ISFIFO(statbuf.st_mode)) {
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000122 opt &= ~1; /* clear FOLLOW */
Matt Kraai55bccf32001-01-05 02:57:53 +0000123 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000124 *argv = (char *) bb_msg_standard_input;
125 goto DO_STDIN;
Matt Kraai55bccf32001-01-05 02:57:53 +0000126 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000127
128 do {
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000129 if (NOT_LONE_DASH(argv[i])) {
130 fds[nfiles] = open(argv[i], O_RDONLY);
131 if (fds[nfiles] < 0) {
132 bb_perror_msg("%s", argv[i]);
133 status = EXIT_FAILURE;
134 continue;
135 }
136 } else {
137 DO_STDIN: /* "-" */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000138 fds[nfiles] = STDIN_FILENO;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000139 }
140 argv[nfiles] = argv[i];
141 ++nfiles;
142 } while (++i < argc);
143
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000144 if (!nfiles)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000145 bb_error_msg_and_die("no files");
Manuel Novoa III cad53642003-03-19 09:13:01 +0000146
147 tailbufsize = BUFSIZ;
Glenn L McGrath4ef5a842003-10-31 00:35:59 +0000148
Matt Kraai55bccf32001-01-05 02:57:53 +0000149 /* tail the files */
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000150 if (!from_top && COUNT_BYTES) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000151 if (tailbufsize < count) {
152 tailbufsize = count + BUFSIZ;
153 }
154 }
Glenn L McGrath4ef5a842003-10-31 00:35:59 +0000155
Manuel Novoa III cad53642003-03-19 09:13:01 +0000156 buf = tailbuf = xmalloc(tailbufsize);
Matt Kraai55bccf32001-01-05 02:57:53 +0000157
Manuel Novoa III cad53642003-03-19 09:13:01 +0000158 fmt = header_fmt + 1; /* Skip header leading newline on first output. */
159 i = 0;
160 do {
161 /* Be careful. It would be possible to optimize the count-bytes
162 * case if the file is seekable. If you do though, remember that
163 * starting file position may not be the beginning of the file.
164 * Beware of backing up too far. See example in wc.c.
165 */
Denis Vlasenkoace35ee2007-01-02 16:32:16 +0000166 if (!(count | from_top) && lseek(fds[i], 0, SEEK_END) >= 0) {
Eric Andersence98c192001-06-26 15:07:08 +0000167 continue;
168 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000169
170 if (nfiles > header_threshhold) {
171 tail_xprint_header(fmt, argv[i]);
172 fmt = header_fmt;
173 }
174
175 buf = tailbuf;
176 taillen = 0;
177 seen = 1;
Glenn L McGrathf86391e2004-09-30 00:24:21 +0000178 newline = 0;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000179
180 while ((nread = tail_read(fds[i], buf, tailbufsize-taillen)) > 0) {
Matt Kraai55bccf32001-01-05 02:57:53 +0000181 if (from_top) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000182 nwrite = nread;
183 if (seen < count) {
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000184 if (COUNT_BYTES) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000185 nwrite -= (count - seen);
186 seen = count;
Glenn L McGrath4ef5a842003-10-31 00:35:59 +0000187 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000188 s = buf;
189 do {
190 --nwrite;
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000191 if (*s++ == '\n' && ++seen == count) {
Matt Kraai55bccf32001-01-05 02:57:53 +0000192 break;
193 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000194 } while (nwrite);
195 }
196 }
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000197 xwrite(STDOUT_FILENO, buf + nread - nwrite, nwrite);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000198 } else if (count) {
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000199 if (COUNT_BYTES) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000200 taillen += nread;
201 if (taillen > count) {
202 memmove(tailbuf, tailbuf + taillen - count, count);
203 taillen = count;
204 }
Glenn L McGrath4ef5a842003-10-31 00:35:59 +0000205 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000206 int k = nread;
207 int nbuf = 0;
208
209 while (k) {
210 --k;
211 if (buf[k] == '\n') {
212 ++nbuf;
Matt Kraai55bccf32001-01-05 02:57:53 +0000213 }
214 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000215
216 if (newline + nbuf < count) {
217 newline += nbuf;
218 taillen += nread;
219
Matt Kraai55bccf32001-01-05 02:57:53 +0000220 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000221 int extra = 0;
222 if (buf[nread-1] != '\n') {
223 extra = 1;
224 }
225
226 k = newline + nbuf + extra - count;
227 s = tailbuf;
228 while (k) {
229 if (*s == '\n') {
230 --k;
231 }
232 ++s;
233 }
234
235 taillen += nread - (s - tailbuf);
236 memmove(tailbuf, s, taillen);
237 newline = count - extra;
Matt Kraai55bccf32001-01-05 02:57:53 +0000238 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000239 if (tailbufsize < taillen + BUFSIZ) {
240 tailbufsize = taillen + BUFSIZ;
241 tailbuf = xrealloc(tailbuf, tailbufsize);
Matt Kraai55bccf32001-01-05 02:57:53 +0000242 }
Eric Andersend5fa3e32000-08-02 16:42:58 +0000243 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000244 buf = tailbuf + taillen;
Eric Andersend5fa3e32000-08-02 16:42:58 +0000245 }
246 }
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000247
Manuel Novoa III cad53642003-03-19 09:13:01 +0000248 if (!from_top) {
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000249 xwrite(STDOUT_FILENO, tailbuf, taillen);
Matt Kraai55bccf32001-01-05 02:57:53 +0000250 }
251
252 taillen = 0;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000253 } while (++i < nfiles);
254
255 buf = xrealloc(tailbuf, BUFSIZ);
256
257 fmt = NULL;
Matt Kraai55bccf32001-01-05 02:57:53 +0000258
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000259 if (FOLLOW) while (1) {
Matt Kraai55bccf32001-01-05 02:57:53 +0000260 sleep(sleep_period);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000261 i = 0;
262 do {
263 if (nfiles > header_threshhold) {
264 fmt = header_fmt;
Matt Kraai55bccf32001-01-05 02:57:53 +0000265 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000266 while ((nread = tail_read(fds[i], buf, sizeof(buf))) > 0) {
267 if (fmt) {
268 tail_xprint_header(fmt, argv[i]);
269 fmt = NULL;
270 }
Denis Vlasenkoe31f7212006-12-22 16:06:16 +0000271 xwrite(STDOUT_FILENO, buf, nread);
Matt Kraai55bccf32001-01-05 02:57:53 +0000272 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000273 } while (++i < nfiles);
Matt Kraai55bccf32001-01-05 02:57:53 +0000274 }
275
276 return status;
277}