Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Matt Kraai | 55bccf3 | 2001-01-05 02:57:53 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Mini tail implementation for busybox |
| 4 | * |
Matt Kraai | 55bccf3 | 2001-01-05 02:57:53 +0000 | [diff] [blame] | 5 | * Copyright (C) 2001 by Matt Kraai <kraai@alumni.carnegiemellon.edu> |
| 6 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 7 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
Erik Andersen | 3fe39dc | 2000-01-25 18:13:53 +0000 | [diff] [blame] | 8 | */ |
Matt Kraai | 55bccf3 | 2001-01-05 02:57:53 +0000 | [diff] [blame] | 9 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 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 */ |
Eric Andersen | abc0f4f | 1999-12-08 23:19:36 +0000 | [diff] [blame] | 13 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 14 | /* 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 | |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 27 | //usage:#define tail_trivial_usage |
| 28 | //usage: "[OPTIONS] [FILE]..." |
| 29 | //usage:#define tail_full_usage "\n\n" |
| 30 | //usage: "Print last 10 lines of each FILE (or stdin) to stdout.\n" |
| 31 | //usage: "With more than one FILE, precede each with a filename header.\n" |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 32 | //usage: "\n -f Print data as file grows" |
| 33 | //usage: IF_FEATURE_FANCY_TAIL( |
| 34 | //usage: "\n -s SECONDS Wait SECONDS between reads with -f" |
| 35 | //usage: ) |
| 36 | //usage: "\n -n N[kbm] Print last N lines" |
| 37 | //usage: IF_FEATURE_FANCY_TAIL( |
| 38 | //usage: "\n -c N[kbm] Print last N bytes" |
| 39 | //usage: "\n -q Never print headers" |
| 40 | //usage: "\n -v Always print headers" |
| 41 | //usage: "\n" |
| 42 | //usage: "\nN may be suffixed by k (x1024), b (x512), or m (x1024^2)." |
| 43 | //usage: "\nIf N starts with a '+', output begins with the Nth item from the start" |
| 44 | //usage: "\nof each file, not from the end." |
| 45 | //usage: ) |
| 46 | //usage: |
| 47 | //usage:#define tail_example_usage |
| 48 | //usage: "$ tail -n 1 /etc/resolv.conf\n" |
| 49 | //usage: "nameserver 10.0.0.1\n" |
| 50 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 51 | #include "libbb.h" |
Eric Andersen | abc0f4f | 1999-12-08 23:19:36 +0000 | [diff] [blame] | 52 | |
Matt Kraai | a164c64 | 2001-02-05 17:50:03 +0000 | [diff] [blame] | 53 | static const struct suffix_mult tail_suffixes[] = { |
Matt Kraai | 24ac017 | 2000-12-18 21:38:57 +0000 | [diff] [blame] | 54 | { "b", 512 }, |
| 55 | { "k", 1024 }, |
Denis Vlasenko | e31f721 | 2006-12-22 16:06:16 +0000 | [diff] [blame] | 56 | { "m", 1024*1024 }, |
Denys Vlasenko | 043b1e5 | 2009-09-06 12:47:55 +0200 | [diff] [blame] | 57 | { "", 0 } |
Matt Kraai | 24ac017 | 2000-12-18 21:38:57 +0000 | [diff] [blame] | 58 | }; |
| 59 | |
Bernhard Reutner-Fischer | d9c2d5f | 2007-04-04 20:29:15 +0000 | [diff] [blame] | 60 | struct globals { |
Denys Vlasenko | 9e933d9 | 2011-05-20 00:30:04 +0200 | [diff] [blame] | 61 | bool from_top; |
| 62 | bool exitcode; |
Denys Vlasenko | 98a4c7c | 2010-02-04 15:00:15 +0100 | [diff] [blame] | 63 | } FIX_ALIASING; |
Bernhard Reutner-Fischer | d9c2d5f | 2007-04-04 20:29:15 +0000 | [diff] [blame] | 64 | #define G (*(struct globals*)&bb_common_bufsiz1) |
Matt Kraai | 55bccf3 | 2001-01-05 02:57:53 +0000 | [diff] [blame] | 65 | |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 66 | static void tail_xprint_header(const char *fmt, const char *filename) |
| 67 | { |
Denis Vlasenko | e31f721 | 2006-12-22 16:06:16 +0000 | [diff] [blame] | 68 | if (fdprintf(STDOUT_FILENO, fmt, filename) < 0) |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 69 | bb_perror_nomsg_and_die(); |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 70 | } |
| 71 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 72 | static ssize_t tail_read(int fd, char *buf, size_t count) |
| 73 | { |
| 74 | ssize_t r; |
Denis Vlasenko | 368a12e | 2007-10-02 10:17:56 +0000 | [diff] [blame] | 75 | off_t current; |
Paul Fox | 4905434 | 2005-07-20 19:46:32 +0000 | [diff] [blame] | 76 | struct stat sbuf; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 77 | |
Denis Vlasenko | 368a12e | 2007-10-02 10:17:56 +0000 | [diff] [blame] | 78 | /* /proc files report zero st_size, don't lseek them. */ |
Denys Vlasenko | 79b021d | 2009-08-10 03:16:18 +0200 | [diff] [blame] | 79 | if (fstat(fd, &sbuf) == 0 && sbuf.st_size > 0) { |
Denys Vlasenko | a43df64 | 2009-08-09 22:06:56 +0200 | [diff] [blame] | 80 | current = lseek(fd, 0, SEEK_CUR); |
Denis Vlasenko | 368a12e | 2007-10-02 10:17:56 +0000 | [diff] [blame] | 81 | if (sbuf.st_size < current) |
Denys Vlasenko | 79b021d | 2009-08-10 03:16:18 +0200 | [diff] [blame] | 82 | xlseek(fd, 0, SEEK_SET); |
Denys Vlasenko | a43df64 | 2009-08-09 22:06:56 +0200 | [diff] [blame] | 83 | } |
Denis Vlasenko | 368a12e | 2007-10-02 10:17:56 +0000 | [diff] [blame] | 84 | |
Denis Vlasenko | 226002e | 2007-10-05 19:17:16 +0000 | [diff] [blame] | 85 | r = full_read(fd, buf, count); |
Denis Vlasenko | e31f721 | 2006-12-22 16:06:16 +0000 | [diff] [blame] | 86 | if (r < 0) { |
Bernhard Reutner-Fischer | 1b9d7c9 | 2006-06-03 22:45:37 +0000 | [diff] [blame] | 87 | bb_perror_msg(bb_msg_read_error); |
Denys Vlasenko | 9e933d9 | 2011-05-20 00:30:04 +0200 | [diff] [blame] | 88 | G.exitcode = EXIT_FAILURE; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 89 | } |
| 90 | |
| 91 | return r; |
| 92 | } |
| 93 | |
Denys Vlasenko | ea8b252 | 2010-06-02 12:57:26 +0200 | [diff] [blame] | 94 | #define header_fmt_str "\n==> %s <==\n" |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 95 | |
Denis Vlasenko | ac678ec | 2007-04-16 22:32:04 +0000 | [diff] [blame] | 96 | static unsigned eat_num(const char *p) |
| 97 | { |
Denis Vlasenko | 368a12e | 2007-10-02 10:17:56 +0000 | [diff] [blame] | 98 | if (*p == '-') |
| 99 | p++; |
| 100 | else if (*p == '+') { |
| 101 | p++; |
Denys Vlasenko | 9e933d9 | 2011-05-20 00:30:04 +0200 | [diff] [blame] | 102 | G.from_top = 1; |
Denis Vlasenko | 368a12e | 2007-10-02 10:17:56 +0000 | [diff] [blame] | 103 | } |
Bernhard Reutner-Fischer | 84d2d49 | 2007-01-24 21:38:10 +0000 | [diff] [blame] | 104 | return xatou_sfx(p, tail_suffixes); |
| 105 | } |
| 106 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 107 | int tail_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Eric Andersen | 98bbd68 | 2000-07-31 17:05:58 +0000 | [diff] [blame] | 108 | int tail_main(int argc, char **argv) |
Eric Andersen | abc0f4f | 1999-12-08 23:19:36 +0000 | [diff] [blame] | 109 | { |
Denis Vlasenko | e31f721 | 2006-12-22 16:06:16 +0000 | [diff] [blame] | 110 | unsigned count = 10; |
Denis Vlasenko | 459903b | 2006-11-27 14:44:18 +0000 | [diff] [blame] | 111 | unsigned sleep_period = 1; |
Denis Vlasenko | 92c0b82 | 2007-05-08 17:27:17 +0000 | [diff] [blame] | 112 | const char *str_c, *str_n; |
Eric Andersen | abc0f4f | 1999-12-08 23:19:36 +0000 | [diff] [blame] | 113 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 114 | char *tailbuf; |
| 115 | size_t tailbufsize; |
Eric Lammerts | 3b5a664 | 2009-07-22 00:31:27 +0200 | [diff] [blame] | 116 | unsigned header_threshhold = 1; |
| 117 | unsigned nfiles; |
| 118 | int i, opt; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 119 | |
Denis Vlasenko | e31f721 | 2006-12-22 16:06:16 +0000 | [diff] [blame] | 120 | int *fds; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 121 | const char *fmt; |
| 122 | |
Denis Vlasenko | 0849207 | 2006-12-22 13:56:36 +0000 | [diff] [blame] | 123 | #if ENABLE_INCLUDE_SUSv2 || ENABLE_FEATURE_FANCY_TAIL |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 124 | /* Allow legacy syntax of an initial numeric option without -n. */ |
Denis Vlasenko | 62a90cd | 2008-03-17 09:07:36 +0000 | [diff] [blame] | 125 | if (argv[1] && (argv[1][0] == '+' || argv[1][0] == '-') |
Denis Vlasenko | 459903b | 2006-11-27 14:44:18 +0000 | [diff] [blame] | 126 | && isdigit(argv[1][1]) |
| 127 | ) { |
Denis Vlasenko | 3603cd2 | 2009-03-27 02:36:02 +0000 | [diff] [blame] | 128 | count = eat_num(argv[1]); |
Denis Vlasenko | 62a90cd | 2008-03-17 09:07:36 +0000 | [diff] [blame] | 129 | argv++; |
| 130 | argc--; |
Robert Griebl | 13c26fc | 2002-05-17 22:18:04 +0000 | [diff] [blame] | 131 | } |
Glenn L McGrath | 0bd0257 | 2005-12-11 03:09:05 +0000 | [diff] [blame] | 132 | #endif |
Robert Griebl | 13c26fc | 2002-05-17 22:18:04 +0000 | [diff] [blame] | 133 | |
Eric Lammerts | 3b5a664 | 2009-07-22 00:31:27 +0200 | [diff] [blame] | 134 | /* -s NUM, -F imlies -f */ |
| 135 | IF_FEATURE_FANCY_TAIL(opt_complementary = "s+:Ff";) |
| 136 | opt = getopt32(argv, "fc:n:" IF_FEATURE_FANCY_TAIL("qs:vF"), |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 137 | &str_c, &str_n IF_FEATURE_FANCY_TAIL(,&sleep_period)); |
Denis Vlasenko | e31f721 | 2006-12-22 16:06:16 +0000 | [diff] [blame] | 138 | #define FOLLOW (opt & 0x1) |
| 139 | #define COUNT_BYTES (opt & 0x2) |
| 140 | //if (opt & 0x1) // -f |
Bernhard Reutner-Fischer | 84d2d49 | 2007-01-24 21:38:10 +0000 | [diff] [blame] | 141 | if (opt & 0x2) count = eat_num(str_c); // -c |
| 142 | if (opt & 0x4) count = eat_num(str_n); // -n |
Bernhard Reutner-Fischer | 5816ccb | 2005-12-13 10:48:45 +0000 | [diff] [blame] | 143 | #if ENABLE_FEATURE_FANCY_TAIL |
Eric Lammerts | 3b5a664 | 2009-07-22 00:31:27 +0200 | [diff] [blame] | 144 | /* q: make it impossible for nfiles to be > header_threshhold */ |
| 145 | if (opt & 0x8) header_threshhold = UINT_MAX; // -q |
Denys Vlasenko | a43df64 | 2009-08-09 22:06:56 +0200 | [diff] [blame] | 146 | //if (opt & 0x10) // -s |
Denis Vlasenko | e31f721 | 2006-12-22 16:06:16 +0000 | [diff] [blame] | 147 | if (opt & 0x20) header_threshhold = 0; // -v |
Denys Vlasenko | a43df64 | 2009-08-09 22:06:56 +0200 | [diff] [blame] | 148 | # define FOLLOW_RETRY (opt & 0x40) |
Eric Lammerts | 3b5a664 | 2009-07-22 00:31:27 +0200 | [diff] [blame] | 149 | #else |
Denys Vlasenko | a43df64 | 2009-08-09 22:06:56 +0200 | [diff] [blame] | 150 | # define FOLLOW_RETRY 0 |
Matt Kraai | 55bccf3 | 2001-01-05 02:57:53 +0000 | [diff] [blame] | 151 | #endif |
Denis Vlasenko | 6910741 | 2006-12-21 00:43:06 +0000 | [diff] [blame] | 152 | argc -= optind; |
| 153 | argv += optind; |
Matt Kraai | 55bccf3 | 2001-01-05 02:57:53 +0000 | [diff] [blame] | 154 | |
| 155 | /* open all the files */ |
Eric Lammerts | 3b5a664 | 2009-07-22 00:31:27 +0200 | [diff] [blame] | 156 | fds = xmalloc(sizeof(fds[0]) * (argc + 1)); |
Denis Vlasenko | 62a90cd | 2008-03-17 09:07:36 +0000 | [diff] [blame] | 157 | if (!argv[0]) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 158 | struct stat statbuf; |
| 159 | |
Eric Lammerts | 3b5a664 | 2009-07-22 00:31:27 +0200 | [diff] [blame] | 160 | if (fstat(STDIN_FILENO, &statbuf) == 0 |
| 161 | && S_ISFIFO(statbuf.st_mode) |
| 162 | ) { |
Denis Vlasenko | e31f721 | 2006-12-22 16:06:16 +0000 | [diff] [blame] | 163 | opt &= ~1; /* clear FOLLOW */ |
Matt Kraai | 55bccf3 | 2001-01-05 02:57:53 +0000 | [diff] [blame] | 164 | } |
Eric Lammerts | 3b5a664 | 2009-07-22 00:31:27 +0200 | [diff] [blame] | 165 | argv[0] = (char *) bb_msg_standard_input; |
Matt Kraai | 55bccf3 | 2001-01-05 02:57:53 +0000 | [diff] [blame] | 166 | } |
Denis Vlasenko | 62a90cd | 2008-03-17 09:07:36 +0000 | [diff] [blame] | 167 | nfiles = i = 0; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 168 | do { |
Denis Vlasenko | 62a90cd | 2008-03-17 09:07:36 +0000 | [diff] [blame] | 169 | int fd = open_or_warn_stdin(argv[i]); |
Eric Lammerts | 3b5a664 | 2009-07-22 00:31:27 +0200 | [diff] [blame] | 170 | if (fd < 0 && !FOLLOW_RETRY) { |
Denys Vlasenko | 9e933d9 | 2011-05-20 00:30:04 +0200 | [diff] [blame] | 171 | G.exitcode = EXIT_FAILURE; |
Bernhard Reutner-Fischer | d9c2d5f | 2007-04-04 20:29:15 +0000 | [diff] [blame] | 172 | continue; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 173 | } |
Denis Vlasenko | 62a90cd | 2008-03-17 09:07:36 +0000 | [diff] [blame] | 174 | fds[nfiles] = fd; |
Bernhard Reutner-Fischer | d9c2d5f | 2007-04-04 20:29:15 +0000 | [diff] [blame] | 175 | argv[nfiles++] = argv[i]; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 176 | } while (++i < argc); |
| 177 | |
Denis Vlasenko | e31f721 | 2006-12-22 16:06:16 +0000 | [diff] [blame] | 178 | if (!nfiles) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 179 | bb_error_msg_and_die("no files"); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 180 | |
Denis Vlasenko | e8419c9 | 2008-02-19 00:38:10 +0000 | [diff] [blame] | 181 | /* prepare the buffer */ |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 182 | tailbufsize = BUFSIZ; |
Denys Vlasenko | 9e933d9 | 2011-05-20 00:30:04 +0200 | [diff] [blame] | 183 | if (!G.from_top && COUNT_BYTES) { |
Denis Vlasenko | e8419c9 | 2008-02-19 00:38:10 +0000 | [diff] [blame] | 184 | if (tailbufsize < count + BUFSIZ) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 185 | tailbufsize = count + BUFSIZ; |
| 186 | } |
| 187 | } |
Denys Vlasenko | 9e933d9 | 2011-05-20 00:30:04 +0200 | [diff] [blame] | 188 | /* tail -c1024m REGULAR_FILE doesn't really need 1G mem block. |
| 189 | * (In fact, it doesn't need ANY memory). So delay allocation. |
| 190 | */ |
| 191 | tailbuf = NULL; |
Glenn L McGrath | 4ef5a84 | 2003-10-31 00:35:59 +0000 | [diff] [blame] | 192 | |
Denis Vlasenko | e8419c9 | 2008-02-19 00:38:10 +0000 | [diff] [blame] | 193 | /* tail the files */ |
Denys Vlasenko | 9e933d9 | 2011-05-20 00:30:04 +0200 | [diff] [blame] | 194 | |
| 195 | fmt = header_fmt_str + 1; /* skip leading newline in the header on the first output */ |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 196 | i = 0; |
| 197 | do { |
Eric Lammerts | 3b5a664 | 2009-07-22 00:31:27 +0200 | [diff] [blame] | 198 | char *buf; |
| 199 | int taillen; |
| 200 | int newlines_seen; |
| 201 | unsigned seen; |
| 202 | int nread; |
Denys Vlasenko | 79b021d | 2009-08-10 03:16:18 +0200 | [diff] [blame] | 203 | int fd = fds[i]; |
Eric Lammerts | 3b5a664 | 2009-07-22 00:31:27 +0200 | [diff] [blame] | 204 | |
Denys Vlasenko | 79b021d | 2009-08-10 03:16:18 +0200 | [diff] [blame] | 205 | if (ENABLE_FEATURE_FANCY_TAIL && fd < 0) |
Eric Lammerts | 3b5a664 | 2009-07-22 00:31:27 +0200 | [diff] [blame] | 206 | continue; /* may happen with -E */ |
| 207 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 208 | if (nfiles > header_threshhold) { |
| 209 | tail_xprint_header(fmt, argv[i]); |
Denys Vlasenko | ea8b252 | 2010-06-02 12:57:26 +0200 | [diff] [blame] | 210 | fmt = header_fmt_str; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 211 | } |
| 212 | |
Denys Vlasenko | 9e933d9 | 2011-05-20 00:30:04 +0200 | [diff] [blame] | 213 | if (!G.from_top) { |
Denys Vlasenko | 79b021d | 2009-08-10 03:16:18 +0200 | [diff] [blame] | 214 | off_t current = lseek(fd, 0, SEEK_END); |
Denis Vlasenko | 69ca5a7 | 2008-03-23 03:28:40 +0000 | [diff] [blame] | 215 | if (current > 0) { |
Denys Vlasenko | 79b021d | 2009-08-10 03:16:18 +0200 | [diff] [blame] | 216 | unsigned off; |
| 217 | if (COUNT_BYTES) { |
| 218 | /* Optimizing count-bytes case if the file is seekable. |
| 219 | * Beware of backing up too far. |
| 220 | * Also we exclude files with size 0 (because of /proc/xxx) */ |
| 221 | if (count == 0) |
| 222 | continue; /* showing zero bytes is easy :) */ |
| 223 | current -= count; |
| 224 | if (current < 0) |
| 225 | current = 0; |
| 226 | xlseek(fd, current, SEEK_SET); |
| 227 | bb_copyfd_size(fd, STDOUT_FILENO, count); |
| 228 | continue; |
| 229 | } |
| 230 | #if 1 /* This is technically incorrect for *LONG* strings, but very useful */ |
| 231 | /* Optimizing count-lines case if the file is seekable. |
| 232 | * We assume the lines are <64k. |
| 233 | * (Users complain that tail takes too long |
| 234 | * on multi-gigabyte files) */ |
| 235 | off = (count | 0xf); /* for small counts, be more paranoid */ |
| 236 | if (off > (INT_MAX / (64*1024))) |
| 237 | off = (INT_MAX / (64*1024)); |
| 238 | current -= off * (64*1024); |
Denis Vlasenko | 69ca5a7 | 2008-03-23 03:28:40 +0000 | [diff] [blame] | 239 | if (current < 0) |
| 240 | current = 0; |
Denys Vlasenko | 79b021d | 2009-08-10 03:16:18 +0200 | [diff] [blame] | 241 | xlseek(fd, current, SEEK_SET); |
| 242 | #endif |
Denis Vlasenko | e8419c9 | 2008-02-19 00:38:10 +0000 | [diff] [blame] | 243 | } |
| 244 | } |
| 245 | |
Denys Vlasenko | 9e933d9 | 2011-05-20 00:30:04 +0200 | [diff] [blame] | 246 | if (!tailbuf) |
| 247 | tailbuf = xmalloc(tailbufsize); |
| 248 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 249 | buf = tailbuf; |
| 250 | taillen = 0; |
Denys Vlasenko | a43df64 | 2009-08-09 22:06:56 +0200 | [diff] [blame] | 251 | /* "We saw 1st line/byte". |
Denys Vlasenko | 79b021d | 2009-08-10 03:16:18 +0200 | [diff] [blame] | 252 | * Used only by +N code ("start from Nth", 1-based): */ |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 253 | seen = 1; |
Denis Vlasenko | e8419c9 | 2008-02-19 00:38:10 +0000 | [diff] [blame] | 254 | newlines_seen = 0; |
Denys Vlasenko | 79b021d | 2009-08-10 03:16:18 +0200 | [diff] [blame] | 255 | while ((nread = tail_read(fd, buf, tailbufsize-taillen)) > 0) { |
Denys Vlasenko | 9e933d9 | 2011-05-20 00:30:04 +0200 | [diff] [blame] | 256 | if (G.from_top) { |
Eric Lammerts | 3b5a664 | 2009-07-22 00:31:27 +0200 | [diff] [blame] | 257 | int nwrite = nread; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 258 | if (seen < count) { |
Denys Vlasenko | a43df64 | 2009-08-09 22:06:56 +0200 | [diff] [blame] | 259 | /* We need to skip a few more bytes/lines */ |
Denis Vlasenko | e31f721 | 2006-12-22 16:06:16 +0000 | [diff] [blame] | 260 | if (COUNT_BYTES) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 261 | nwrite -= (count - seen); |
| 262 | seen = count; |
Glenn L McGrath | 4ef5a84 | 2003-10-31 00:35:59 +0000 | [diff] [blame] | 263 | } else { |
Eric Lammerts | 3b5a664 | 2009-07-22 00:31:27 +0200 | [diff] [blame] | 264 | char *s = buf; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 265 | do { |
| 266 | --nwrite; |
Denis Vlasenko | e31f721 | 2006-12-22 16:06:16 +0000 | [diff] [blame] | 267 | if (*s++ == '\n' && ++seen == count) { |
Matt Kraai | 55bccf3 | 2001-01-05 02:57:53 +0000 | [diff] [blame] | 268 | break; |
| 269 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 270 | } while (nwrite); |
| 271 | } |
| 272 | } |
Denys Vlasenko | 6eaeb77 | 2010-03-12 22:16:25 +0100 | [diff] [blame] | 273 | if (nwrite > 0) |
| 274 | xwrite(STDOUT_FILENO, buf + nread - nwrite, nwrite); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 275 | } else if (count) { |
Denis Vlasenko | e31f721 | 2006-12-22 16:06:16 +0000 | [diff] [blame] | 276 | if (COUNT_BYTES) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 277 | taillen += nread; |
Denis Vlasenko | 77ad97f | 2008-05-13 02:27:31 +0000 | [diff] [blame] | 278 | if (taillen > (int)count) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 279 | memmove(tailbuf, tailbuf + taillen - count, count); |
| 280 | taillen = count; |
| 281 | } |
Glenn L McGrath | 4ef5a84 | 2003-10-31 00:35:59 +0000 | [diff] [blame] | 282 | } else { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 283 | int k = nread; |
Denis Vlasenko | e8419c9 | 2008-02-19 00:38:10 +0000 | [diff] [blame] | 284 | int newlines_in_buf = 0; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 285 | |
Denis Vlasenko | e8419c9 | 2008-02-19 00:38:10 +0000 | [diff] [blame] | 286 | do { /* count '\n' in last read */ |
| 287 | k--; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 288 | if (buf[k] == '\n') { |
Denis Vlasenko | e8419c9 | 2008-02-19 00:38:10 +0000 | [diff] [blame] | 289 | newlines_in_buf++; |
Matt Kraai | 55bccf3 | 2001-01-05 02:57:53 +0000 | [diff] [blame] | 290 | } |
Denis Vlasenko | e8419c9 | 2008-02-19 00:38:10 +0000 | [diff] [blame] | 291 | } while (k); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 292 | |
Denis Vlasenko | 77ad97f | 2008-05-13 02:27:31 +0000 | [diff] [blame] | 293 | if (newlines_seen + newlines_in_buf < (int)count) { |
Denis Vlasenko | e8419c9 | 2008-02-19 00:38:10 +0000 | [diff] [blame] | 294 | newlines_seen += newlines_in_buf; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 295 | taillen += nread; |
Matt Kraai | 55bccf3 | 2001-01-05 02:57:53 +0000 | [diff] [blame] | 296 | } else { |
Denis Vlasenko | e8419c9 | 2008-02-19 00:38:10 +0000 | [diff] [blame] | 297 | int extra = (buf[nread-1] != '\n'); |
Eric Lammerts | 3b5a664 | 2009-07-22 00:31:27 +0200 | [diff] [blame] | 298 | char *s; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 299 | |
Denis Vlasenko | e8419c9 | 2008-02-19 00:38:10 +0000 | [diff] [blame] | 300 | k = newlines_seen + newlines_in_buf + extra - count; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 301 | s = tailbuf; |
| 302 | while (k) { |
| 303 | if (*s == '\n') { |
Denis Vlasenko | e8419c9 | 2008-02-19 00:38:10 +0000 | [diff] [blame] | 304 | k--; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 305 | } |
Denis Vlasenko | e8419c9 | 2008-02-19 00:38:10 +0000 | [diff] [blame] | 306 | s++; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 307 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 308 | taillen += nread - (s - tailbuf); |
| 309 | memmove(tailbuf, s, taillen); |
Denis Vlasenko | e8419c9 | 2008-02-19 00:38:10 +0000 | [diff] [blame] | 310 | newlines_seen = count - extra; |
Matt Kraai | 55bccf3 | 2001-01-05 02:57:53 +0000 | [diff] [blame] | 311 | } |
Denis Vlasenko | 77ad97f | 2008-05-13 02:27:31 +0000 | [diff] [blame] | 312 | if (tailbufsize < (size_t)taillen + BUFSIZ) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 313 | tailbufsize = taillen + BUFSIZ; |
| 314 | tailbuf = xrealloc(tailbuf, tailbufsize); |
Matt Kraai | 55bccf3 | 2001-01-05 02:57:53 +0000 | [diff] [blame] | 315 | } |
Eric Andersen | d5fa3e3 | 2000-08-02 16:42:58 +0000 | [diff] [blame] | 316 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 317 | buf = tailbuf + taillen; |
Eric Andersen | d5fa3e3 | 2000-08-02 16:42:58 +0000 | [diff] [blame] | 318 | } |
Denis Vlasenko | e8419c9 | 2008-02-19 00:38:10 +0000 | [diff] [blame] | 319 | } /* while (tail_read() > 0) */ |
Denys Vlasenko | 9e933d9 | 2011-05-20 00:30:04 +0200 | [diff] [blame] | 320 | if (!G.from_top) { |
Denis Vlasenko | e31f721 | 2006-12-22 16:06:16 +0000 | [diff] [blame] | 321 | xwrite(STDOUT_FILENO, tailbuf, taillen); |
Matt Kraai | 55bccf3 | 2001-01-05 02:57:53 +0000 | [diff] [blame] | 322 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 323 | } while (++i < nfiles); |
| 324 | |
Eric Lammerts | 3b5a664 | 2009-07-22 00:31:27 +0200 | [diff] [blame] | 325 | tailbuf = xrealloc(tailbuf, BUFSIZ); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 326 | |
| 327 | fmt = NULL; |
Matt Kraai | 55bccf3 | 2001-01-05 02:57:53 +0000 | [diff] [blame] | 328 | |
Denis Vlasenko | e31f721 | 2006-12-22 16:06:16 +0000 | [diff] [blame] | 329 | if (FOLLOW) while (1) { |
Matt Kraai | 55bccf3 | 2001-01-05 02:57:53 +0000 | [diff] [blame] | 330 | sleep(sleep_period); |
Eric Lammerts | 3b5a664 | 2009-07-22 00:31:27 +0200 | [diff] [blame] | 331 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 332 | i = 0; |
| 333 | do { |
Eric Lammerts | 3b5a664 | 2009-07-22 00:31:27 +0200 | [diff] [blame] | 334 | int nread; |
| 335 | const char *filename = argv[i]; |
| 336 | int fd = fds[i]; |
| 337 | |
| 338 | if (FOLLOW_RETRY) { |
| 339 | struct stat sbuf, fsbuf; |
| 340 | |
| 341 | if (fd < 0 |
| 342 | || fstat(fd, &fsbuf) < 0 |
| 343 | || stat(filename, &sbuf) < 0 |
| 344 | || fsbuf.st_dev != sbuf.st_dev |
| 345 | || fsbuf.st_ino != sbuf.st_ino |
| 346 | ) { |
| 347 | int new_fd; |
| 348 | |
| 349 | if (fd >= 0) |
| 350 | close(fd); |
| 351 | new_fd = open(filename, O_RDONLY); |
| 352 | if (new_fd >= 0) { |
| 353 | bb_error_msg("%s has %s; following end of new file", |
| 354 | filename, (fd < 0) ? "appeared" : "been replaced" |
| 355 | ); |
| 356 | } else if (fd >= 0) { |
| 357 | bb_perror_msg("%s has become inaccessible", filename); |
| 358 | } |
| 359 | fds[i] = fd = new_fd; |
| 360 | } |
| 361 | } |
| 362 | if (ENABLE_FEATURE_FANCY_TAIL && fd < 0) |
| 363 | continue; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 364 | if (nfiles > header_threshhold) { |
Denys Vlasenko | ea8b252 | 2010-06-02 12:57:26 +0200 | [diff] [blame] | 365 | fmt = header_fmt_str; |
Matt Kraai | 55bccf3 | 2001-01-05 02:57:53 +0000 | [diff] [blame] | 366 | } |
Eric Lammerts | 3b5a664 | 2009-07-22 00:31:27 +0200 | [diff] [blame] | 367 | while ((nread = tail_read(fd, tailbuf, BUFSIZ)) > 0) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 368 | if (fmt) { |
Eric Lammerts | 3b5a664 | 2009-07-22 00:31:27 +0200 | [diff] [blame] | 369 | tail_xprint_header(fmt, filename); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 370 | fmt = NULL; |
| 371 | } |
Eric Lammerts | 3b5a664 | 2009-07-22 00:31:27 +0200 | [diff] [blame] | 372 | xwrite(STDOUT_FILENO, tailbuf, nread); |
Matt Kraai | 55bccf3 | 2001-01-05 02:57:53 +0000 | [diff] [blame] | 373 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 374 | } while (++i < nfiles); |
Denys Vlasenko | 9e933d9 | 2011-05-20 00:30:04 +0200 | [diff] [blame] | 375 | } /* while (1) */ |
| 376 | |
Bernhard Reutner-Fischer | d9c2d5f | 2007-04-04 20:29:15 +0000 | [diff] [blame] | 377 | if (ENABLE_FEATURE_CLEAN_UP) { |
| 378 | free(fds); |
Alexander Shishkin | 2348e09 | 2010-10-21 00:25:45 +0200 | [diff] [blame] | 379 | free(tailbuf); |
Bernhard Reutner-Fischer | d9c2d5f | 2007-04-04 20:29:15 +0000 | [diff] [blame] | 380 | } |
Denys Vlasenko | 9e933d9 | 2011-05-20 00:30:04 +0200 | [diff] [blame] | 381 | return G.exitcode; |
Matt Kraai | 55bccf3 | 2001-01-05 02:57:53 +0000 | [diff] [blame] | 382 | } |