1 /* vi: set sw=4 ts=4: */
3 * Mini tail implementation for busybox
5 * Copyright (C) 2001 by Matt Kraai <kraai@alumni.carnegiemellon.edu>
7 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
10 /* 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 */
14 /* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org)
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)
29 static const struct suffix_mult tail_suffixes[] = {
39 #define G (*(struct globals*)&bb_common_bufsiz1)
41 static void tail_xprint_header(const char *fmt, const char *filename)
43 if (fdprintf(STDOUT_FILENO, fmt, filename) < 0)
44 bb_perror_nomsg_and_die();
47 static ssize_t tail_read(int fd, char *buf, size_t count)
53 /* (A good comment is missing here) */
54 current = lseek(fd, 0, SEEK_CUR);
55 /* /proc files report zero st_size, don't lseek them. */
56 if (fstat(fd, &sbuf) == 0 && sbuf.st_size)
57 if (sbuf.st_size < current)
58 lseek(fd, 0, SEEK_SET);
60 r = full_read(fd, buf, count);
62 bb_perror_msg(bb_msg_read_error);
63 G.status = EXIT_FAILURE;
69 static const char header_fmt[] ALIGN1 = "\n==> %s <==\n";
71 static unsigned eat_num(const char *p)
77 G.status = EXIT_FAILURE;
79 return xatou_sfx(p, tail_suffixes);
82 int tail_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
83 int tail_main(int argc, char **argv)
86 unsigned sleep_period = 1;
88 int header_threshhold = 1;
89 const char *str_c, *str_n;
90 USE_FEATURE_FANCY_TAIL(const char *str_s;)
96 int nfiles, nread, nwrite, seen, i, opt;
102 #if ENABLE_INCLUDE_SUSv2 || ENABLE_FEATURE_FANCY_TAIL
103 /* Allow legacy syntax of an initial numeric option without -n. */
104 if (argc >= 2 && (argv[1][0] == '+' || argv[1][0] == '-')
105 && isdigit(argv[1][1])
107 /* replacing arg[0] with "-n" can segfault, so... */
108 argv[1] = xasprintf("-n%s", argv[1]);
109 #if 0 /* If we ever decide to make tail NOFORK */
110 char *s = alloca(strlen(argv[1]) + 3);
111 sprintf(s, "-n%s", argv[1]);
117 opt = getopt32(argv, "fc:n:" USE_FEATURE_FANCY_TAIL("qs:v"),
118 &str_c, &str_n USE_FEATURE_FANCY_TAIL(,&str_s));
119 #define FOLLOW (opt & 0x1)
120 #define COUNT_BYTES (opt & 0x2)
121 //if (opt & 0x1) // -f
122 if (opt & 0x2) count = eat_num(str_c); // -c
123 if (opt & 0x4) count = eat_num(str_n); // -n
124 #if ENABLE_FEATURE_FANCY_TAIL
125 if (opt & 0x8) header_threshhold = INT_MAX; // -q
126 if (opt & 0x10) sleep_period = xatou(str_s); // -s
127 if (opt & 0x20) header_threshhold = 0; // -v
133 /* open all the files */
134 fds = xmalloc(sizeof(int) * (argc + 1));
136 G.status = EXIT_SUCCESS;
140 if (!fstat(STDIN_FILENO, &statbuf) && S_ISFIFO(statbuf.st_mode)) {
141 opt &= ~1; /* clear FOLLOW */
143 *argv = (char *) bb_msg_standard_input;
146 FILE* fil = fopen_or_warn_stdin(argv[i]);
148 G.status = EXIT_FAILURE;
151 fds[nfiles] = fileno(fil);
152 argv[nfiles++] = argv[i];
153 } while (++i < argc);
156 bb_error_msg_and_die("no files");
158 tailbufsize = BUFSIZ;
161 if (!from_top && COUNT_BYTES) {
162 if (tailbufsize < count) {
163 tailbufsize = count + BUFSIZ;
167 buf = tailbuf = xmalloc(tailbufsize);
169 fmt = header_fmt + 1; /* Skip header leading newline on first output. */
172 /* Be careful. It would be possible to optimize the count-bytes
173 * case if the file is seekable. If you do though, remember that
174 * starting file position may not be the beginning of the file.
175 * Beware of backing up too far. See example in wc.c.
177 if (!(count | from_top) && lseek(fds[i], 0, SEEK_END) >= 0) {
181 if (nfiles > header_threshhold) {
182 tail_xprint_header(fmt, argv[i]);
191 while ((nread = tail_read(fds[i], buf, tailbufsize-taillen)) > 0) {
196 nwrite -= (count - seen);
202 if (*s++ == '\n' && ++seen == count) {
208 xwrite(STDOUT_FILENO, buf + nread - nwrite, nwrite);
212 if (taillen > count) {
213 memmove(tailbuf, tailbuf + taillen - count, count);
222 if (buf[k] == '\n') {
227 if (newline + nbuf < count) {
233 if (buf[nread-1] != '\n')
235 k = newline + nbuf + extra - count;
243 taillen += nread - (s - tailbuf);
244 memmove(tailbuf, s, taillen);
245 newline = count - extra;
247 if (tailbufsize < taillen + BUFSIZ) {
248 tailbufsize = taillen + BUFSIZ;
249 tailbuf = xrealloc(tailbuf, tailbufsize);
252 buf = tailbuf + taillen;
257 xwrite(STDOUT_FILENO, tailbuf, taillen);
261 } while (++i < nfiles);
263 buf = xrealloc(tailbuf, BUFSIZ);
267 if (FOLLOW) while (1) {
271 if (nfiles > header_threshhold) {
274 while ((nread = tail_read(fds[i], buf, BUFSIZ)) > 0) {
276 tail_xprint_header(fmt, argv[i]);
279 xwrite(STDOUT_FILENO, buf, nread);
281 } while (++i < nfiles);
283 if (ENABLE_FEATURE_CLEAN_UP) {