blob: 505a8fd6be1b0a8106e921a9bbf9679568e2bbe5 [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 },
32 { "m", 1048576 },
33 { NULL, 0 }
34};
35
Rob Landleyf8fd4db2006-01-30 01:30:39 +000036static int status;
Matt Kraai55bccf32001-01-05 02:57:53 +000037
Manuel Novoa III cad53642003-03-19 09:13:01 +000038static void tail_xbb_full_write(const char *buf, size_t len)
Eric Andersenabc0f4f1999-12-08 23:19:36 +000039{
Manuel Novoa III cad53642003-03-19 09:13:01 +000040 /* If we get a write error, there is really no sense in continuing. */
Rob Landley53437472006-07-16 08:14:35 +000041 if (full_write(STDOUT_FILENO, buf, len) < 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +000042 bb_perror_nomsg_and_die();
Eric Andersenabc0f4f1999-12-08 23:19:36 +000043}
44
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000045static void tail_xprint_header(const char *fmt, const char *filename)
46{
47#if defined __GLIBC__
48 if (dprintf(STDOUT_FILENO, fmt, filename) < 0) {
49 bb_perror_nomsg_and_die();
50 }
51#else
52 int hdr_len = strlen(fmt) + strlen(filename);
53 char *hdr = xzalloc(hdr_len);
54 sprintf(hdr, filename, filename);
55 tail_xbb_full_write(hdr, hdr_len);
56#endif
57}
58
Manuel Novoa III cad53642003-03-19 09:13:01 +000059static ssize_t tail_read(int fd, char *buf, size_t count)
60{
61 ssize_t r;
Paul Fox49054342005-07-20 19:46:32 +000062 off_t current,end;
63 struct stat sbuf;
Manuel Novoa III cad53642003-03-19 09:13:01 +000064
Mike Frysingerdbc049f2005-07-26 22:57:51 +000065 end = current = lseek(fd, 0, SEEK_CUR);
66 if (!fstat(fd, &sbuf))
67 end = sbuf.st_size;
Rob Landley58a651b2005-08-13 00:35:00 +000068 lseek(fd, end < current ? 0 : current, SEEK_SET);
Manuel Novoa III cad53642003-03-19 09:13:01 +000069 if ((r = safe_read(fd, buf, count)) < 0) {
Bernhard Reutner-Fischer1b9d7c92006-06-03 22:45:37 +000070 bb_perror_msg(bb_msg_read_error);
Manuel Novoa III cad53642003-03-19 09:13:01 +000071 status = EXIT_FAILURE;
72 }
73
74 return r;
75}
76
77static const char tail_opts[] =
Glenn L McGrath4ef5a842003-10-31 00:35:59 +000078 "fn:c:"
Bernhard Reutner-Fischer5816ccb2005-12-13 10:48:45 +000079#if ENABLE_FEATURE_FANCY_TAIL
Glenn L McGrath4ef5a842003-10-31 00:35:59 +000080 "qs:v"
Manuel Novoa III cad53642003-03-19 09:13:01 +000081#endif
82 ;
83
84static const char header_fmt[] = "\n==> %s <==\n";
85
Eric Andersen98bbd682000-07-31 17:05:58 +000086int tail_main(int argc, char **argv)
Eric Andersenabc0f4f1999-12-08 23:19:36 +000087{
Manuel Novoa III cad53642003-03-19 09:13:01 +000088 long count = 10;
Denis Vlasenko459903b2006-11-27 14:44:18 +000089 unsigned sleep_period = 1;
Manuel Novoa III cad53642003-03-19 09:13:01 +000090 int from_top = 0;
91 int follow = 0;
92 int header_threshhold = 1;
Manuel Novoa III cad53642003-03-19 09:13:01 +000093 int count_bytes = 0;
Eric Andersenabc0f4f1999-12-08 23:19:36 +000094
Manuel Novoa III cad53642003-03-19 09:13:01 +000095 char *tailbuf;
96 size_t tailbufsize;
97 int taillen = 0;
98 int newline = 0;
99
100 int *fds, nfiles, nread, nwrite, seen, i, opt;
101 char *s, *buf;
102 const char *fmt;
103
Rob Landleyf8fd4db2006-01-30 01:30:39 +0000104#if !ENABLE_DEBUG_YANK_SUSv2 || ENABLE_FEATURE_FANCY_TAIL
Manuel Novoa III cad53642003-03-19 09:13:01 +0000105 /* Allow legacy syntax of an initial numeric option without -n. */
Denis Vlasenko459903b2006-11-27 14:44:18 +0000106 if (argc >= 2 && (argv[1][0] == '+' || argv[1][0] == '-')
107 && isdigit(argv[1][1])
108 ) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000109 optind = 2;
110 optarg = argv[1];
111 goto GET_COUNT;
Robert Griebl13c26fc2002-05-17 22:18:04 +0000112 }
Glenn L McGrath0bd02572005-12-11 03:09:05 +0000113#endif
Robert Griebl13c26fc2002-05-17 22:18:04 +0000114
Manuel Novoa III cad53642003-03-19 09:13:01 +0000115 while ((opt = getopt(argc, argv, tail_opts)) > 0) {
Eric Andersend5fa3e32000-08-02 16:42:58 +0000116 switch (opt) {
Matt Kraai55bccf32001-01-05 02:57:53 +0000117 case 'f':
118 follow = 1;
119 break;
Matt Kraai55bccf32001-01-05 02:57:53 +0000120 case 'c':
Manuel Novoa III cad53642003-03-19 09:13:01 +0000121 count_bytes = 1;
Matt Kraai55bccf32001-01-05 02:57:53 +0000122 /* FALLS THROUGH */
Matt Kraai55bccf32001-01-05 02:57:53 +0000123 case 'n':
Rob Landleyf8fd4db2006-01-30 01:30:39 +0000124#if !ENABLE_DEBUG_YANK_SUSv2 || ENABLE_FEATURE_FANCY_TAIL
Manuel Novoa III cad53642003-03-19 09:13:01 +0000125 GET_COUNT:
Bernhard Reutner-Fischer5816ccb2005-12-13 10:48:45 +0000126#endif
Denis Vlasenko13858992006-10-08 12:49:22 +0000127 count = xatol_sfx(optarg, tail_suffixes);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000128 /* Note: Leading whitespace is an error trapped above. */
129 if (*optarg == '+') {
Matt Kraai55bccf32001-01-05 02:57:53 +0000130 from_top = 1;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000131 } else {
132 from_top = 0;
133 }
134 if (count < 0) {
135 count = -count;
136 }
Eric Andersend5fa3e32000-08-02 16:42:58 +0000137 break;
Bernhard Reutner-Fischer5816ccb2005-12-13 10:48:45 +0000138#if ENABLE_FEATURE_FANCY_TAIL
Matt Kraai55bccf32001-01-05 02:57:53 +0000139 case 'q':
Manuel Novoa III cad53642003-03-19 09:13:01 +0000140 header_threshhold = INT_MAX;
Eric Andersend5fa3e32000-08-02 16:42:58 +0000141 break;
Matt Kraai55bccf32001-01-05 02:57:53 +0000142 case 's':
Denis Vlasenko13858992006-10-08 12:49:22 +0000143 sleep_period = xatou(optarg);
Matt Kraai55bccf32001-01-05 02:57:53 +0000144 break;
145 case 'v':
Manuel Novoa III cad53642003-03-19 09:13:01 +0000146 header_threshhold = 0;
Matt Kraai55bccf32001-01-05 02:57:53 +0000147 break;
148#endif
149 default:
Manuel Novoa III cad53642003-03-19 09:13:01 +0000150 bb_show_usage();
Eric Andersend5fa3e32000-08-02 16:42:58 +0000151 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000152 }
Matt Kraai55bccf32001-01-05 02:57:53 +0000153
154 /* open all the files */
155 fds = (int *)xmalloc(sizeof(int) * (argc - optind + 1));
Manuel Novoa III cad53642003-03-19 09:13:01 +0000156
157 argv += optind;
158 nfiles = i = 0;
159
160 if ((argc -= optind) == 0) {
161 struct stat statbuf;
162
163 if (!fstat(STDIN_FILENO, &statbuf) && S_ISFIFO(statbuf.st_mode)) {
164 follow = 0;
Matt Kraai55bccf32001-01-05 02:57:53 +0000165 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000166 /* --argv; */
167 *argv = (char *) bb_msg_standard_input;
168 goto DO_STDIN;
Matt Kraai55bccf32001-01-05 02:57:53 +0000169 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000170
171 do {
Denis Vlasenko9f739442006-12-16 23:49:13 +0000172 if (LONE_DASH(argv[i])) {
173 DO_STDIN:
Manuel Novoa III cad53642003-03-19 09:13:01 +0000174 fds[nfiles] = STDIN_FILENO;
175 } else if ((fds[nfiles] = open(argv[i], O_RDONLY)) < 0) {
176 bb_perror_msg("%s", argv[i]);
177 status = EXIT_FAILURE;
178 continue;
179 }
180 argv[nfiles] = argv[i];
181 ++nfiles;
182 } while (++i < argc);
183
184 if (!nfiles) {
185 bb_error_msg_and_die("no files");
186 }
187
188 tailbufsize = BUFSIZ;
Glenn L McGrath4ef5a842003-10-31 00:35:59 +0000189
Matt Kraai55bccf32001-01-05 02:57:53 +0000190 /* tail the files */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000191 if (from_top < count_bytes) { /* Each is 0 or 1, so true iff 0 < 1. */
192 /* Hence, !from_top && count_bytes */
193 if (tailbufsize < count) {
194 tailbufsize = count + BUFSIZ;
195 }
196 }
Glenn L McGrath4ef5a842003-10-31 00:35:59 +0000197
Manuel Novoa III cad53642003-03-19 09:13:01 +0000198 buf = tailbuf = xmalloc(tailbufsize);
Matt Kraai55bccf32001-01-05 02:57:53 +0000199
Manuel Novoa III cad53642003-03-19 09:13:01 +0000200 fmt = header_fmt + 1; /* Skip header leading newline on first output. */
201 i = 0;
202 do {
203 /* Be careful. It would be possible to optimize the count-bytes
204 * case if the file is seekable. If you do though, remember that
205 * starting file position may not be the beginning of the file.
206 * Beware of backing up too far. See example in wc.c.
207 */
208 if ((!(count|from_top)) && (lseek(fds[i], 0, SEEK_END) >= 0)) {
Eric Andersence98c192001-06-26 15:07:08 +0000209 continue;
210 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000211
212 if (nfiles > header_threshhold) {
213 tail_xprint_header(fmt, argv[i]);
214 fmt = header_fmt;
215 }
216
217 buf = tailbuf;
218 taillen = 0;
219 seen = 1;
Glenn L McGrathf86391e2004-09-30 00:24:21 +0000220 newline = 0;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000221
222 while ((nread = tail_read(fds[i], buf, tailbufsize-taillen)) > 0) {
Matt Kraai55bccf32001-01-05 02:57:53 +0000223 if (from_top) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000224 nwrite = nread;
225 if (seen < count) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000226 if (count_bytes) {
227 nwrite -= (count - seen);
228 seen = count;
Glenn L McGrath4ef5a842003-10-31 00:35:59 +0000229 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000230 s = buf;
231 do {
232 --nwrite;
233 if ((*s++ == '\n') && (++seen == count)) {
Matt Kraai55bccf32001-01-05 02:57:53 +0000234 break;
235 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000236 } while (nwrite);
237 }
238 }
239 tail_xbb_full_write(buf + nread - nwrite, nwrite);
240 } else if (count) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000241 if (count_bytes) {
242 taillen += nread;
243 if (taillen > count) {
244 memmove(tailbuf, tailbuf + taillen - count, count);
245 taillen = count;
246 }
Glenn L McGrath4ef5a842003-10-31 00:35:59 +0000247 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000248 int k = nread;
249 int nbuf = 0;
250
251 while (k) {
252 --k;
253 if (buf[k] == '\n') {
254 ++nbuf;
Matt Kraai55bccf32001-01-05 02:57:53 +0000255 }
256 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000257
258 if (newline + nbuf < count) {
259 newline += nbuf;
260 taillen += nread;
261
Matt Kraai55bccf32001-01-05 02:57:53 +0000262 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000263 int extra = 0;
264 if (buf[nread-1] != '\n') {
265 extra = 1;
266 }
267
268 k = newline + nbuf + extra - count;
269 s = tailbuf;
270 while (k) {
271 if (*s == '\n') {
272 --k;
273 }
274 ++s;
275 }
276
277 taillen += nread - (s - tailbuf);
278 memmove(tailbuf, s, taillen);
279 newline = count - extra;
Matt Kraai55bccf32001-01-05 02:57:53 +0000280 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000281 if (tailbufsize < taillen + BUFSIZ) {
282 tailbufsize = taillen + BUFSIZ;
283 tailbuf = xrealloc(tailbuf, tailbufsize);
Matt Kraai55bccf32001-01-05 02:57:53 +0000284 }
Eric Andersend5fa3e32000-08-02 16:42:58 +0000285 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000286 buf = tailbuf + taillen;
Eric Andersend5fa3e32000-08-02 16:42:58 +0000287 }
288 }
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000289
Manuel Novoa III cad53642003-03-19 09:13:01 +0000290 if (!from_top) {
291 tail_xbb_full_write(tailbuf, taillen);
Matt Kraai55bccf32001-01-05 02:57:53 +0000292 }
293
294 taillen = 0;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000295 } while (++i < nfiles);
296
297 buf = xrealloc(tailbuf, BUFSIZ);
298
299 fmt = NULL;
Matt Kraai55bccf32001-01-05 02:57:53 +0000300
301 while (follow) {
302 sleep(sleep_period);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000303 i = 0;
304 do {
305 if (nfiles > header_threshhold) {
306 fmt = header_fmt;
Matt Kraai55bccf32001-01-05 02:57:53 +0000307 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000308 while ((nread = tail_read(fds[i], buf, sizeof(buf))) > 0) {
309 if (fmt) {
310 tail_xprint_header(fmt, argv[i]);
311 fmt = NULL;
312 }
313 tail_xbb_full_write(buf, nread);
Matt Kraai55bccf32001-01-05 02:57:53 +0000314 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000315 } while (++i < nfiles);
Matt Kraai55bccf32001-01-05 02:57:53 +0000316 }
317
318 return status;
319}