blob: 80a66fbf5b3f446df2fc66a426b03162896f4ba5 [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
27#include <stdio.h>
28#include <stdlib.h>
Eric Andersened3ef502001-01-27 08:24:39 +000029#include <string.h>
Robert Griebl53146cc2002-05-27 22:24:53 +000030#include <ctype.h>
Eric Andersened3ef502001-01-27 08:24:39 +000031#include <unistd.h>
Manuel Novoa III cad53642003-03-19 09:13:01 +000032#include <fcntl.h>
33#include <sys/stat.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000034#include "busybox.h"
Eric Andersenabc0f4f1999-12-08 23:19:36 +000035
Matt Kraaia164c642001-02-05 17:50:03 +000036static const struct suffix_mult tail_suffixes[] = {
Matt Kraai24ac0172000-12-18 21:38:57 +000037 { "b", 512 },
38 { "k", 1024 },
39 { "m", 1048576 },
40 { NULL, 0 }
41};
42
Rob Landleyf8fd4db2006-01-30 01:30:39 +000043static int status;
Matt Kraai55bccf32001-01-05 02:57:53 +000044
Manuel Novoa III cad53642003-03-19 09:13:01 +000045static void tail_xprint_header(const char *fmt, const char *filename)
Matt Kraai55bccf32001-01-05 02:57:53 +000046{
Manuel Novoa III cad53642003-03-19 09:13:01 +000047 /* If we get an output error, there is really no sense in continuing. */
Rob Landleyb9dfb8c2005-05-07 17:45:38 +000048 if (dprintf(STDOUT_FILENO, fmt, filename) < 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000049 bb_perror_nomsg_and_die();
50 }
Eric Andersenabc0f4f1999-12-08 23:19:36 +000051}
52
Manuel Novoa III cad53642003-03-19 09:13:01 +000053/* len should probably be size_t */
54static void tail_xbb_full_write(const char *buf, size_t len)
Eric Andersenabc0f4f1999-12-08 23:19:36 +000055{
Manuel Novoa III cad53642003-03-19 09:13:01 +000056 /* If we get a write error, there is really no sense in continuing. */
Rob Landley53437472006-07-16 08:14:35 +000057 if (full_write(STDOUT_FILENO, buf, len) < 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +000058 bb_perror_nomsg_and_die();
Eric Andersenabc0f4f1999-12-08 23:19:36 +000059}
60
Manuel Novoa III cad53642003-03-19 09:13:01 +000061static ssize_t tail_read(int fd, char *buf, size_t count)
62{
63 ssize_t r;
Paul Fox49054342005-07-20 19:46:32 +000064 off_t current,end;
65 struct stat sbuf;
Manuel Novoa III cad53642003-03-19 09:13:01 +000066
Mike Frysingerdbc049f2005-07-26 22:57:51 +000067 end = current = lseek(fd, 0, SEEK_CUR);
68 if (!fstat(fd, &sbuf))
69 end = sbuf.st_size;
Rob Landley58a651b2005-08-13 00:35:00 +000070 lseek(fd, end < current ? 0 : current, SEEK_SET);
Manuel Novoa III cad53642003-03-19 09:13:01 +000071 if ((r = safe_read(fd, buf, count)) < 0) {
Bernhard Reutner-Fischer1b9d7c92006-06-03 22:45:37 +000072 bb_perror_msg(bb_msg_read_error);
Manuel Novoa III cad53642003-03-19 09:13:01 +000073 status = EXIT_FAILURE;
74 }
75
76 return r;
77}
78
79static const char tail_opts[] =
Glenn L McGrath4ef5a842003-10-31 00:35:59 +000080 "fn:c:"
Bernhard Reutner-Fischer5816ccb2005-12-13 10:48:45 +000081#if ENABLE_FEATURE_FANCY_TAIL
Glenn L McGrath4ef5a842003-10-31 00:35:59 +000082 "qs:v"
Manuel Novoa III cad53642003-03-19 09:13:01 +000083#endif
84 ;
85
86static const char header_fmt[] = "\n==> %s <==\n";
87
Eric Andersen98bbd682000-07-31 17:05:58 +000088int tail_main(int argc, char **argv)
Eric Andersenabc0f4f1999-12-08 23:19:36 +000089{
Manuel Novoa III cad53642003-03-19 09:13:01 +000090 long count = 10;
91 unsigned int sleep_period = 1;
92 int from_top = 0;
93 int follow = 0;
94 int header_threshhold = 1;
Manuel Novoa III cad53642003-03-19 09:13:01 +000095 int count_bytes = 0;
Eric Andersenabc0f4f1999-12-08 23:19:36 +000096
Manuel Novoa III cad53642003-03-19 09:13:01 +000097 char *tailbuf;
98 size_t tailbufsize;
99 int taillen = 0;
100 int newline = 0;
101
102 int *fds, nfiles, nread, nwrite, seen, i, opt;
103 char *s, *buf;
104 const char *fmt;
105
Rob Landleyf8fd4db2006-01-30 01:30:39 +0000106#if !ENABLE_DEBUG_YANK_SUSv2 || ENABLE_FEATURE_FANCY_TAIL
Manuel Novoa III cad53642003-03-19 09:13:01 +0000107 /* Allow legacy syntax of an initial numeric option without -n. */
Eric Andersenb5b5ac32003-03-28 16:54:14 +0000108 if (argc >=2 && ((argv[1][0] == '+') || ((argv[1][0] == '-')
Manuel Novoa III cad53642003-03-19 09:13:01 +0000109 /* && (isdigit)(argv[1][1]) */
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000110 && (((unsigned int)(argv[1][1] - '0')) <= 9))))
Eric Andersenb5b5ac32003-03-28 16:54:14 +0000111 {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000112 optind = 2;
113 optarg = argv[1];
114 goto GET_COUNT;
Robert Griebl13c26fc2002-05-17 22:18:04 +0000115 }
Glenn L McGrath0bd02572005-12-11 03:09:05 +0000116#endif
Robert Griebl13c26fc2002-05-17 22:18:04 +0000117
Manuel Novoa III cad53642003-03-19 09:13:01 +0000118 while ((opt = getopt(argc, argv, tail_opts)) > 0) {
Eric Andersend5fa3e32000-08-02 16:42:58 +0000119 switch (opt) {
Matt Kraai55bccf32001-01-05 02:57:53 +0000120 case 'f':
121 follow = 1;
122 break;
Matt Kraai55bccf32001-01-05 02:57:53 +0000123 case 'c':
Manuel Novoa III cad53642003-03-19 09:13:01 +0000124 count_bytes = 1;
Matt Kraai55bccf32001-01-05 02:57:53 +0000125 /* FALLS THROUGH */
Matt Kraai55bccf32001-01-05 02:57:53 +0000126 case 'n':
Rob Landleyf8fd4db2006-01-30 01:30:39 +0000127#if !ENABLE_DEBUG_YANK_SUSv2 || ENABLE_FEATURE_FANCY_TAIL
Manuel Novoa III cad53642003-03-19 09:13:01 +0000128 GET_COUNT:
Bernhard Reutner-Fischer5816ccb2005-12-13 10:48:45 +0000129#endif
Manuel Novoa III cad53642003-03-19 09:13:01 +0000130 count = bb_xgetlarg10_sfx(optarg, tail_suffixes);
131 /* Note: Leading whitespace is an error trapped above. */
132 if (*optarg == '+') {
Matt Kraai55bccf32001-01-05 02:57:53 +0000133 from_top = 1;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000134 } else {
135 from_top = 0;
136 }
137 if (count < 0) {
138 count = -count;
139 }
Eric Andersend5fa3e32000-08-02 16:42:58 +0000140 break;
Bernhard Reutner-Fischer5816ccb2005-12-13 10:48:45 +0000141#if ENABLE_FEATURE_FANCY_TAIL
Matt Kraai55bccf32001-01-05 02:57:53 +0000142 case 'q':
Manuel Novoa III cad53642003-03-19 09:13:01 +0000143 header_threshhold = INT_MAX;
Eric Andersend5fa3e32000-08-02 16:42:58 +0000144 break;
Matt Kraai55bccf32001-01-05 02:57:53 +0000145 case 's':
Manuel Novoa III cad53642003-03-19 09:13:01 +0000146 sleep_period =bb_xgetularg10_bnd(optarg, 0, UINT_MAX);
Matt Kraai55bccf32001-01-05 02:57:53 +0000147 break;
148 case 'v':
Manuel Novoa III cad53642003-03-19 09:13:01 +0000149 header_threshhold = 0;
Matt Kraai55bccf32001-01-05 02:57:53 +0000150 break;
151#endif
152 default:
Manuel Novoa III cad53642003-03-19 09:13:01 +0000153 bb_show_usage();
Eric Andersend5fa3e32000-08-02 16:42:58 +0000154 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000155 }
Matt Kraai55bccf32001-01-05 02:57:53 +0000156
157 /* open all the files */
158 fds = (int *)xmalloc(sizeof(int) * (argc - optind + 1));
Manuel Novoa III cad53642003-03-19 09:13:01 +0000159
160 argv += optind;
161 nfiles = i = 0;
162
163 if ((argc -= optind) == 0) {
164 struct stat statbuf;
165
166 if (!fstat(STDIN_FILENO, &statbuf) && S_ISFIFO(statbuf.st_mode)) {
167 follow = 0;
Matt Kraai55bccf32001-01-05 02:57:53 +0000168 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000169 /* --argv; */
170 *argv = (char *) bb_msg_standard_input;
171 goto DO_STDIN;
Matt Kraai55bccf32001-01-05 02:57:53 +0000172 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000173
174 do {
175 if ((argv[i][0] == '-') && !argv[i][1]) {
176 DO_STDIN:
177 fds[nfiles] = STDIN_FILENO;
178 } else if ((fds[nfiles] = open(argv[i], O_RDONLY)) < 0) {
179 bb_perror_msg("%s", argv[i]);
180 status = EXIT_FAILURE;
181 continue;
182 }
183 argv[nfiles] = argv[i];
184 ++nfiles;
185 } while (++i < argc);
186
187 if (!nfiles) {
188 bb_error_msg_and_die("no files");
189 }
190
191 tailbufsize = BUFSIZ;
Glenn L McGrath4ef5a842003-10-31 00:35:59 +0000192
Matt Kraai55bccf32001-01-05 02:57:53 +0000193 /* tail the files */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000194 if (from_top < count_bytes) { /* Each is 0 or 1, so true iff 0 < 1. */
195 /* Hence, !from_top && count_bytes */
196 if (tailbufsize < count) {
197 tailbufsize = count + BUFSIZ;
198 }
199 }
Glenn L McGrath4ef5a842003-10-31 00:35:59 +0000200
Manuel Novoa III cad53642003-03-19 09:13:01 +0000201 buf = tailbuf = xmalloc(tailbufsize);
Matt Kraai55bccf32001-01-05 02:57:53 +0000202
Manuel Novoa III cad53642003-03-19 09:13:01 +0000203 fmt = header_fmt + 1; /* Skip header leading newline on first output. */
204 i = 0;
205 do {
206 /* Be careful. It would be possible to optimize the count-bytes
207 * case if the file is seekable. If you do though, remember that
208 * starting file position may not be the beginning of the file.
209 * Beware of backing up too far. See example in wc.c.
210 */
211 if ((!(count|from_top)) && (lseek(fds[i], 0, SEEK_END) >= 0)) {
Eric Andersence98c192001-06-26 15:07:08 +0000212 continue;
213 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000214
215 if (nfiles > header_threshhold) {
216 tail_xprint_header(fmt, argv[i]);
217 fmt = header_fmt;
218 }
219
220 buf = tailbuf;
221 taillen = 0;
222 seen = 1;
Glenn L McGrathf86391e2004-09-30 00:24:21 +0000223 newline = 0;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000224
225 while ((nread = tail_read(fds[i], buf, tailbufsize-taillen)) > 0) {
Matt Kraai55bccf32001-01-05 02:57:53 +0000226 if (from_top) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000227 nwrite = nread;
228 if (seen < count) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000229 if (count_bytes) {
230 nwrite -= (count - seen);
231 seen = count;
Glenn L McGrath4ef5a842003-10-31 00:35:59 +0000232 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000233 s = buf;
234 do {
235 --nwrite;
236 if ((*s++ == '\n') && (++seen == count)) {
Matt Kraai55bccf32001-01-05 02:57:53 +0000237 break;
238 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000239 } while (nwrite);
240 }
241 }
242 tail_xbb_full_write(buf + nread - nwrite, nwrite);
243 } else if (count) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000244 if (count_bytes) {
245 taillen += nread;
246 if (taillen > count) {
247 memmove(tailbuf, tailbuf + taillen - count, count);
248 taillen = count;
249 }
Glenn L McGrath4ef5a842003-10-31 00:35:59 +0000250 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000251 int k = nread;
252 int nbuf = 0;
253
254 while (k) {
255 --k;
256 if (buf[k] == '\n') {
257 ++nbuf;
Matt Kraai55bccf32001-01-05 02:57:53 +0000258 }
259 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000260
261 if (newline + nbuf < count) {
262 newline += nbuf;
263 taillen += nread;
264
Matt Kraai55bccf32001-01-05 02:57:53 +0000265 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000266 int extra = 0;
267 if (buf[nread-1] != '\n') {
268 extra = 1;
269 }
270
271 k = newline + nbuf + extra - count;
272 s = tailbuf;
273 while (k) {
274 if (*s == '\n') {
275 --k;
276 }
277 ++s;
278 }
279
280 taillen += nread - (s - tailbuf);
281 memmove(tailbuf, s, taillen);
282 newline = count - extra;
Matt Kraai55bccf32001-01-05 02:57:53 +0000283 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000284 if (tailbufsize < taillen + BUFSIZ) {
285 tailbufsize = taillen + BUFSIZ;
286 tailbuf = xrealloc(tailbuf, tailbufsize);
Matt Kraai55bccf32001-01-05 02:57:53 +0000287 }
Eric Andersend5fa3e32000-08-02 16:42:58 +0000288 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000289 buf = tailbuf + taillen;
Eric Andersend5fa3e32000-08-02 16:42:58 +0000290 }
291 }
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000292
Manuel Novoa III cad53642003-03-19 09:13:01 +0000293 if (!from_top) {
294 tail_xbb_full_write(tailbuf, taillen);
Matt Kraai55bccf32001-01-05 02:57:53 +0000295 }
296
297 taillen = 0;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000298 } while (++i < nfiles);
299
300 buf = xrealloc(tailbuf, BUFSIZ);
301
302 fmt = NULL;
Matt Kraai55bccf32001-01-05 02:57:53 +0000303
304 while (follow) {
305 sleep(sleep_period);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000306 i = 0;
307 do {
308 if (nfiles > header_threshhold) {
309 fmt = header_fmt;
Matt Kraai55bccf32001-01-05 02:57:53 +0000310 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000311 while ((nread = tail_read(fds[i], buf, sizeof(buf))) > 0) {
312 if (fmt) {
313 tail_xprint_header(fmt, argv[i]);
314 fmt = NULL;
315 }
316 tail_xbb_full_write(buf, nread);
Matt Kraai55bccf32001-01-05 02:57:53 +0000317 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000318 } while (++i < nfiles);
Matt Kraai55bccf32001-01-05 02:57:53 +0000319 }
320
321 return status;
322}