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 | */ |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 9 | /* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org) |
| 10 | * |
| 11 | * Pretty much rewritten to fix numerous bugs and reduce realloc() calls. |
| 12 | * Bugs fixed (although I may have forgotten one or two... it was pretty bad) |
| 13 | * 1) mixing printf/write without fflush()ing stdout |
| 14 | * 2) no check that any open files are present |
| 15 | * 3) optstring had -q taking an arg |
| 16 | * 4) no error checking on write in some cases, and a warning even then |
| 17 | * 5) q and s interaction bug |
| 18 | * 6) no check for lseek error |
| 19 | * 7) lseek attempted when count==0 even if arg was +0 (from top) |
| 20 | */ |
Denys Vlasenko | af3f420 | 2016-11-23 14:46:56 +0100 | [diff] [blame] | 21 | //config:config TAIL |
Denys Vlasenko | 4eed2c6 | 2017-07-18 22:01:24 +0200 | [diff] [blame^] | 22 | //config: bool "tail (7.1 kb)" |
Denys Vlasenko | af3f420 | 2016-11-23 14:46:56 +0100 | [diff] [blame] | 23 | //config: default y |
| 24 | //config: help |
| 25 | //config: tail is used to print the last specified number of lines |
| 26 | //config: from files. |
| 27 | //config: |
| 28 | //config:config FEATURE_FANCY_TAIL |
Denys Vlasenko | f560422 | 2017-01-10 14:58:54 +0100 | [diff] [blame] | 29 | //config: bool "Enable -q, -s, -v, and -F options" |
Denys Vlasenko | af3f420 | 2016-11-23 14:46:56 +0100 | [diff] [blame] | 30 | //config: default y |
| 31 | //config: depends on TAIL |
| 32 | //config: help |
Denys Vlasenko | f560422 | 2017-01-10 14:58:54 +0100 | [diff] [blame] | 33 | //config: These options are provided by GNU tail, but |
| 34 | //config: are not specific in the SUSv3 standard: |
Denys Vlasenko | af3f420 | 2016-11-23 14:46:56 +0100 | [diff] [blame] | 35 | //config: -q Never output headers giving file names |
| 36 | //config: -s SEC Wait SEC seconds between reads with -f |
| 37 | //config: -v Always output headers giving file names |
| 38 | //config: -F Same as -f, but keep retrying |
| 39 | |
| 40 | //applet:IF_TAIL(APPLET(tail, BB_DIR_USR_BIN, BB_SUID_DROP)) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 41 | |
Denys Vlasenko | af0255f | 2013-02-25 01:24:32 +0100 | [diff] [blame] | 42 | //kbuild:lib-$(CONFIG_TAIL) += tail.o |
Denys Vlasenko | af0255f | 2013-02-25 01:24:32 +0100 | [diff] [blame] | 43 | |
Denys Vlasenko | af3f420 | 2016-11-23 14:46:56 +0100 | [diff] [blame] | 44 | /* BB_AUDIT SUSv3 compliant (need fancy for -c) */ |
| 45 | /* BB_AUDIT GNU compatible -c, -q, and -v options in 'fancy' configuration. */ |
| 46 | /* http://www.opengroup.org/onlinepubs/007904975/utilities/tail.html */ |
| 47 | |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 48 | //usage:#define tail_trivial_usage |
| 49 | //usage: "[OPTIONS] [FILE]..." |
| 50 | //usage:#define tail_full_usage "\n\n" |
| 51 | //usage: "Print last 10 lines of each FILE (or stdin) to stdout.\n" |
| 52 | //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] | 53 | //usage: "\n -f Print data as file grows" |
Cristian Ionescu-Idbohrn | 1bdbf26 | 2014-01-09 20:00:58 +0100 | [diff] [blame] | 54 | //usage: "\n -c [+]N[kbm] Print last N bytes" |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 55 | //usage: "\n -n N[kbm] Print last N lines" |
Denys Vlasenko | 3305c00 | 2013-02-25 07:24:44 +0100 | [diff] [blame] | 56 | //usage: "\n -n +N[kbm] Start on Nth line and print the rest" |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 57 | //usage: IF_FEATURE_FANCY_TAIL( |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 58 | //usage: "\n -q Never print headers" |
Cristian Ionescu-Idbohrn | 1bdbf26 | 2014-01-09 20:00:58 +0100 | [diff] [blame] | 59 | //usage: "\n -s SECONDS Wait SECONDS between reads with -f" |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 60 | //usage: "\n -v Always print headers" |
Cristian Ionescu-Idbohrn | 1bdbf26 | 2014-01-09 20:00:58 +0100 | [diff] [blame] | 61 | //usage: "\n -F Same as -f, but keep retrying" |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 62 | //usage: "\n" |
| 63 | //usage: "\nN may be suffixed by k (x1024), b (x512), or m (x1024^2)." |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 64 | //usage: ) |
| 65 | //usage: |
| 66 | //usage:#define tail_example_usage |
| 67 | //usage: "$ tail -n 1 /etc/resolv.conf\n" |
| 68 | //usage: "nameserver 10.0.0.1\n" |
| 69 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 70 | #include "libbb.h" |
Denys Vlasenko | e6a2f4c | 2016-04-21 16:26:30 +0200 | [diff] [blame] | 71 | #include "common_bufsiz.h" |
Matt Kraai | 24ac017 | 2000-12-18 21:38:57 +0000 | [diff] [blame] | 72 | |
Bernhard Reutner-Fischer | d9c2d5f | 2007-04-04 20:29:15 +0000 | [diff] [blame] | 73 | struct globals { |
Denys Vlasenko | 9e933d9 | 2011-05-20 00:30:04 +0200 | [diff] [blame] | 74 | bool from_top; |
| 75 | bool exitcode; |
Denys Vlasenko | 98a4c7c | 2010-02-04 15:00:15 +0100 | [diff] [blame] | 76 | } FIX_ALIASING; |
Denys Vlasenko | e6a2f4c | 2016-04-21 16:26:30 +0200 | [diff] [blame] | 77 | #define G (*(struct globals*)bb_common_bufsiz1) |
Denys Vlasenko | 47cfbf3 | 2016-04-21 18:18:48 +0200 | [diff] [blame] | 78 | #define INIT_G() do { setup_common_bufsiz(); } while (0) |
Matt Kraai | 55bccf3 | 2001-01-05 02:57:53 +0000 | [diff] [blame] | 79 | |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 80 | static void tail_xprint_header(const char *fmt, const char *filename) |
| 81 | { |
Denis Vlasenko | e31f721 | 2006-12-22 16:06:16 +0000 | [diff] [blame] | 82 | if (fdprintf(STDOUT_FILENO, fmt, filename) < 0) |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 83 | bb_perror_nomsg_and_die(); |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 84 | } |
| 85 | |
Denys Vlasenko | d87fcd4 | 2013-07-08 02:39:51 +0200 | [diff] [blame] | 86 | static ssize_t tail_read(int fd, char *buf, size_t count) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 87 | { |
| 88 | ssize_t r; |
| 89 | |
Denis Vlasenko | 226002e | 2007-10-05 19:17:16 +0000 | [diff] [blame] | 90 | r = full_read(fd, buf, count); |
Denis Vlasenko | e31f721 | 2006-12-22 16:06:16 +0000 | [diff] [blame] | 91 | if (r < 0) { |
Bernhard Reutner-Fischer | 1b9d7c9 | 2006-06-03 22:45:37 +0000 | [diff] [blame] | 92 | bb_perror_msg(bb_msg_read_error); |
Denys Vlasenko | 9e933d9 | 2011-05-20 00:30:04 +0200 | [diff] [blame] | 93 | G.exitcode = EXIT_FAILURE; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 94 | } |
| 95 | |
| 96 | return r; |
| 97 | } |
| 98 | |
Denys Vlasenko | ea8b252 | 2010-06-02 12:57:26 +0200 | [diff] [blame] | 99 | #define header_fmt_str "\n==> %s <==\n" |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 100 | |
Denis Vlasenko | ac678ec | 2007-04-16 22:32:04 +0000 | [diff] [blame] | 101 | static unsigned eat_num(const char *p) |
| 102 | { |
Denis Vlasenko | 368a12e | 2007-10-02 10:17:56 +0000 | [diff] [blame] | 103 | if (*p == '-') |
| 104 | p++; |
| 105 | else if (*p == '+') { |
| 106 | p++; |
Denys Vlasenko | 9e933d9 | 2011-05-20 00:30:04 +0200 | [diff] [blame] | 107 | G.from_top = 1; |
Denis Vlasenko | 368a12e | 2007-10-02 10:17:56 +0000 | [diff] [blame] | 108 | } |
Denys Vlasenko | c72b43c | 2013-07-13 23:49:45 +0200 | [diff] [blame] | 109 | return xatou_sfx(p, bkm_suffixes); |
Bernhard Reutner-Fischer | 84d2d49 | 2007-01-24 21:38:10 +0000 | [diff] [blame] | 110 | } |
| 111 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 112 | int tail_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Eric Andersen | 98bbd68 | 2000-07-31 17:05:58 +0000 | [diff] [blame] | 113 | int tail_main(int argc, char **argv) |
Eric Andersen | abc0f4f | 1999-12-08 23:19:36 +0000 | [diff] [blame] | 114 | { |
Denis Vlasenko | e31f721 | 2006-12-22 16:06:16 +0000 | [diff] [blame] | 115 | unsigned count = 10; |
Denis Vlasenko | 459903b | 2006-11-27 14:44:18 +0000 | [diff] [blame] | 116 | unsigned sleep_period = 1; |
Denis Vlasenko | 92c0b82 | 2007-05-08 17:27:17 +0000 | [diff] [blame] | 117 | const char *str_c, *str_n; |
Eric Andersen | abc0f4f | 1999-12-08 23:19:36 +0000 | [diff] [blame] | 118 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 119 | char *tailbuf; |
| 120 | size_t tailbufsize; |
Eric Lammerts | 3b5a664 | 2009-07-22 00:31:27 +0200 | [diff] [blame] | 121 | unsigned header_threshhold = 1; |
| 122 | unsigned nfiles; |
| 123 | int i, opt; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 124 | |
Denis Vlasenko | e31f721 | 2006-12-22 16:06:16 +0000 | [diff] [blame] | 125 | int *fds; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 126 | const char *fmt; |
Bartosz Golaszewski | 6493801 | 2013-10-14 20:11:55 +0200 | [diff] [blame] | 127 | int prev_fd; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 128 | |
Denys Vlasenko | 1671424 | 2011-09-21 01:59:15 +0200 | [diff] [blame] | 129 | INIT_G(); |
| 130 | |
Denis Vlasenko | 0849207 | 2006-12-22 13:56:36 +0000 | [diff] [blame] | 131 | #if ENABLE_INCLUDE_SUSv2 || ENABLE_FEATURE_FANCY_TAIL |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 132 | /* Allow legacy syntax of an initial numeric option without -n. */ |
Denis Vlasenko | 62a90cd | 2008-03-17 09:07:36 +0000 | [diff] [blame] | 133 | if (argv[1] && (argv[1][0] == '+' || argv[1][0] == '-') |
Denis Vlasenko | 459903b | 2006-11-27 14:44:18 +0000 | [diff] [blame] | 134 | && isdigit(argv[1][1]) |
| 135 | ) { |
Denis Vlasenko | 3603cd2 | 2009-03-27 02:36:02 +0000 | [diff] [blame] | 136 | count = eat_num(argv[1]); |
Denis Vlasenko | 62a90cd | 2008-03-17 09:07:36 +0000 | [diff] [blame] | 137 | argv++; |
| 138 | argc--; |
Robert Griebl | 13c26fc | 2002-05-17 22:18:04 +0000 | [diff] [blame] | 139 | } |
Glenn L McGrath | 0bd0257 | 2005-12-11 03:09:05 +0000 | [diff] [blame] | 140 | #endif |
Robert Griebl | 13c26fc | 2002-05-17 22:18:04 +0000 | [diff] [blame] | 141 | |
Eric Lammerts | 3b5a664 | 2009-07-22 00:31:27 +0200 | [diff] [blame] | 142 | /* -s NUM, -F imlies -f */ |
Denys Vlasenko | 237bedd | 2016-07-06 21:58:02 +0200 | [diff] [blame] | 143 | IF_FEATURE_FANCY_TAIL(opt_complementary = "Ff";) |
| 144 | opt = getopt32(argv, "fc:n:" IF_FEATURE_FANCY_TAIL("qs:+vF"), |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 145 | &str_c, &str_n IF_FEATURE_FANCY_TAIL(,&sleep_period)); |
Denis Vlasenko | e31f721 | 2006-12-22 16:06:16 +0000 | [diff] [blame] | 146 | #define FOLLOW (opt & 0x1) |
| 147 | #define COUNT_BYTES (opt & 0x2) |
| 148 | //if (opt & 0x1) // -f |
Bernhard Reutner-Fischer | 84d2d49 | 2007-01-24 21:38:10 +0000 | [diff] [blame] | 149 | if (opt & 0x2) count = eat_num(str_c); // -c |
| 150 | if (opt & 0x4) count = eat_num(str_n); // -n |
Bernhard Reutner-Fischer | 5816ccb | 2005-12-13 10:48:45 +0000 | [diff] [blame] | 151 | #if ENABLE_FEATURE_FANCY_TAIL |
Eric Lammerts | 3b5a664 | 2009-07-22 00:31:27 +0200 | [diff] [blame] | 152 | /* q: make it impossible for nfiles to be > header_threshhold */ |
| 153 | if (opt & 0x8) header_threshhold = UINT_MAX; // -q |
Denys Vlasenko | a43df64 | 2009-08-09 22:06:56 +0200 | [diff] [blame] | 154 | //if (opt & 0x10) // -s |
Denis Vlasenko | e31f721 | 2006-12-22 16:06:16 +0000 | [diff] [blame] | 155 | if (opt & 0x20) header_threshhold = 0; // -v |
Denys Vlasenko | a43df64 | 2009-08-09 22:06:56 +0200 | [diff] [blame] | 156 | # define FOLLOW_RETRY (opt & 0x40) |
Eric Lammerts | 3b5a664 | 2009-07-22 00:31:27 +0200 | [diff] [blame] | 157 | #else |
Denys Vlasenko | a43df64 | 2009-08-09 22:06:56 +0200 | [diff] [blame] | 158 | # define FOLLOW_RETRY 0 |
Matt Kraai | 55bccf3 | 2001-01-05 02:57:53 +0000 | [diff] [blame] | 159 | #endif |
Denis Vlasenko | 6910741 | 2006-12-21 00:43:06 +0000 | [diff] [blame] | 160 | argc -= optind; |
| 161 | argv += optind; |
Matt Kraai | 55bccf3 | 2001-01-05 02:57:53 +0000 | [diff] [blame] | 162 | |
| 163 | /* open all the files */ |
Eric Lammerts | 3b5a664 | 2009-07-22 00:31:27 +0200 | [diff] [blame] | 164 | fds = xmalloc(sizeof(fds[0]) * (argc + 1)); |
Denis Vlasenko | 62a90cd | 2008-03-17 09:07:36 +0000 | [diff] [blame] | 165 | if (!argv[0]) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 166 | struct stat statbuf; |
| 167 | |
Eric Lammerts | 3b5a664 | 2009-07-22 00:31:27 +0200 | [diff] [blame] | 168 | if (fstat(STDIN_FILENO, &statbuf) == 0 |
| 169 | && S_ISFIFO(statbuf.st_mode) |
| 170 | ) { |
Denis Vlasenko | e31f721 | 2006-12-22 16:06:16 +0000 | [diff] [blame] | 171 | opt &= ~1; /* clear FOLLOW */ |
Matt Kraai | 55bccf3 | 2001-01-05 02:57:53 +0000 | [diff] [blame] | 172 | } |
Eric Lammerts | 3b5a664 | 2009-07-22 00:31:27 +0200 | [diff] [blame] | 173 | argv[0] = (char *) bb_msg_standard_input; |
Matt Kraai | 55bccf3 | 2001-01-05 02:57:53 +0000 | [diff] [blame] | 174 | } |
Denis Vlasenko | 62a90cd | 2008-03-17 09:07:36 +0000 | [diff] [blame] | 175 | nfiles = i = 0; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 176 | do { |
Denis Vlasenko | 62a90cd | 2008-03-17 09:07:36 +0000 | [diff] [blame] | 177 | int fd = open_or_warn_stdin(argv[i]); |
Eric Lammerts | 3b5a664 | 2009-07-22 00:31:27 +0200 | [diff] [blame] | 178 | if (fd < 0 && !FOLLOW_RETRY) { |
Denys Vlasenko | 9e933d9 | 2011-05-20 00:30:04 +0200 | [diff] [blame] | 179 | G.exitcode = EXIT_FAILURE; |
Bernhard Reutner-Fischer | d9c2d5f | 2007-04-04 20:29:15 +0000 | [diff] [blame] | 180 | continue; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 181 | } |
Denis Vlasenko | 62a90cd | 2008-03-17 09:07:36 +0000 | [diff] [blame] | 182 | fds[nfiles] = fd; |
Bernhard Reutner-Fischer | d9c2d5f | 2007-04-04 20:29:15 +0000 | [diff] [blame] | 183 | argv[nfiles++] = argv[i]; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 184 | } while (++i < argc); |
| 185 | |
Denis Vlasenko | e31f721 | 2006-12-22 16:06:16 +0000 | [diff] [blame] | 186 | if (!nfiles) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 187 | bb_error_msg_and_die("no files"); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 188 | |
Denis Vlasenko | e8419c9 | 2008-02-19 00:38:10 +0000 | [diff] [blame] | 189 | /* prepare the buffer */ |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 190 | tailbufsize = BUFSIZ; |
Denys Vlasenko | 9e933d9 | 2011-05-20 00:30:04 +0200 | [diff] [blame] | 191 | if (!G.from_top && COUNT_BYTES) { |
Denis Vlasenko | e8419c9 | 2008-02-19 00:38:10 +0000 | [diff] [blame] | 192 | if (tailbufsize < count + BUFSIZ) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 193 | tailbufsize = count + BUFSIZ; |
| 194 | } |
| 195 | } |
Denys Vlasenko | 9e933d9 | 2011-05-20 00:30:04 +0200 | [diff] [blame] | 196 | /* tail -c1024m REGULAR_FILE doesn't really need 1G mem block. |
| 197 | * (In fact, it doesn't need ANY memory). So delay allocation. |
| 198 | */ |
| 199 | tailbuf = NULL; |
Glenn L McGrath | 4ef5a84 | 2003-10-31 00:35:59 +0000 | [diff] [blame] | 200 | |
Denis Vlasenko | e8419c9 | 2008-02-19 00:38:10 +0000 | [diff] [blame] | 201 | /* tail the files */ |
Denys Vlasenko | 9e933d9 | 2011-05-20 00:30:04 +0200 | [diff] [blame] | 202 | |
| 203 | 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] | 204 | i = 0; |
| 205 | do { |
Eric Lammerts | 3b5a664 | 2009-07-22 00:31:27 +0200 | [diff] [blame] | 206 | char *buf; |
| 207 | int taillen; |
| 208 | int newlines_seen; |
| 209 | unsigned seen; |
| 210 | int nread; |
Denys Vlasenko | 79b021d | 2009-08-10 03:16:18 +0200 | [diff] [blame] | 211 | int fd = fds[i]; |
Eric Lammerts | 3b5a664 | 2009-07-22 00:31:27 +0200 | [diff] [blame] | 212 | |
Denys Vlasenko | 79b021d | 2009-08-10 03:16:18 +0200 | [diff] [blame] | 213 | if (ENABLE_FEATURE_FANCY_TAIL && fd < 0) |
Denys Vlasenko | 0851d12 | 2011-09-17 00:12:24 +0200 | [diff] [blame] | 214 | continue; /* may happen with -F */ |
Eric Lammerts | 3b5a664 | 2009-07-22 00:31:27 +0200 | [diff] [blame] | 215 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 216 | if (nfiles > header_threshhold) { |
| 217 | tail_xprint_header(fmt, argv[i]); |
Denys Vlasenko | ea8b252 | 2010-06-02 12:57:26 +0200 | [diff] [blame] | 218 | fmt = header_fmt_str; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 219 | } |
| 220 | |
Denys Vlasenko | 9e933d9 | 2011-05-20 00:30:04 +0200 | [diff] [blame] | 221 | if (!G.from_top) { |
Denys Vlasenko | 79b021d | 2009-08-10 03:16:18 +0200 | [diff] [blame] | 222 | off_t current = lseek(fd, 0, SEEK_END); |
Denis Vlasenko | 69ca5a7 | 2008-03-23 03:28:40 +0000 | [diff] [blame] | 223 | if (current > 0) { |
Denys Vlasenko | 79b021d | 2009-08-10 03:16:18 +0200 | [diff] [blame] | 224 | unsigned off; |
| 225 | if (COUNT_BYTES) { |
| 226 | /* Optimizing count-bytes case if the file is seekable. |
| 227 | * Beware of backing up too far. |
| 228 | * Also we exclude files with size 0 (because of /proc/xxx) */ |
| 229 | if (count == 0) |
| 230 | continue; /* showing zero bytes is easy :) */ |
| 231 | current -= count; |
| 232 | if (current < 0) |
| 233 | current = 0; |
| 234 | xlseek(fd, current, SEEK_SET); |
| 235 | bb_copyfd_size(fd, STDOUT_FILENO, count); |
| 236 | continue; |
| 237 | } |
| 238 | #if 1 /* This is technically incorrect for *LONG* strings, but very useful */ |
| 239 | /* Optimizing count-lines case if the file is seekable. |
| 240 | * We assume the lines are <64k. |
| 241 | * (Users complain that tail takes too long |
| 242 | * on multi-gigabyte files) */ |
| 243 | off = (count | 0xf); /* for small counts, be more paranoid */ |
| 244 | if (off > (INT_MAX / (64*1024))) |
| 245 | off = (INT_MAX / (64*1024)); |
| 246 | current -= off * (64*1024); |
Denis Vlasenko | 69ca5a7 | 2008-03-23 03:28:40 +0000 | [diff] [blame] | 247 | if (current < 0) |
| 248 | current = 0; |
Denys Vlasenko | 79b021d | 2009-08-10 03:16:18 +0200 | [diff] [blame] | 249 | xlseek(fd, current, SEEK_SET); |
| 250 | #endif |
Denis Vlasenko | e8419c9 | 2008-02-19 00:38:10 +0000 | [diff] [blame] | 251 | } |
| 252 | } |
| 253 | |
Denys Vlasenko | 9e933d9 | 2011-05-20 00:30:04 +0200 | [diff] [blame] | 254 | if (!tailbuf) |
| 255 | tailbuf = xmalloc(tailbufsize); |
| 256 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 257 | buf = tailbuf; |
| 258 | taillen = 0; |
Denys Vlasenko | a43df64 | 2009-08-09 22:06:56 +0200 | [diff] [blame] | 259 | /* "We saw 1st line/byte". |
Denys Vlasenko | 79b021d | 2009-08-10 03:16:18 +0200 | [diff] [blame] | 260 | * Used only by +N code ("start from Nth", 1-based): */ |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 261 | seen = 1; |
Denis Vlasenko | e8419c9 | 2008-02-19 00:38:10 +0000 | [diff] [blame] | 262 | newlines_seen = 0; |
Denys Vlasenko | d87fcd4 | 2013-07-08 02:39:51 +0200 | [diff] [blame] | 263 | while ((nread = tail_read(fd, buf, tailbufsize - taillen)) > 0) { |
Denys Vlasenko | 9e933d9 | 2011-05-20 00:30:04 +0200 | [diff] [blame] | 264 | if (G.from_top) { |
Eric Lammerts | 3b5a664 | 2009-07-22 00:31:27 +0200 | [diff] [blame] | 265 | int nwrite = nread; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 266 | if (seen < count) { |
Denys Vlasenko | a43df64 | 2009-08-09 22:06:56 +0200 | [diff] [blame] | 267 | /* We need to skip a few more bytes/lines */ |
Denis Vlasenko | e31f721 | 2006-12-22 16:06:16 +0000 | [diff] [blame] | 268 | if (COUNT_BYTES) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 269 | nwrite -= (count - seen); |
Denys Vlasenko | 0851d12 | 2011-09-17 00:12:24 +0200 | [diff] [blame] | 270 | seen += nread; |
Glenn L McGrath | 4ef5a84 | 2003-10-31 00:35:59 +0000 | [diff] [blame] | 271 | } else { |
Eric Lammerts | 3b5a664 | 2009-07-22 00:31:27 +0200 | [diff] [blame] | 272 | char *s = buf; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 273 | do { |
| 274 | --nwrite; |
Denis Vlasenko | e31f721 | 2006-12-22 16:06:16 +0000 | [diff] [blame] | 275 | if (*s++ == '\n' && ++seen == count) { |
Matt Kraai | 55bccf3 | 2001-01-05 02:57:53 +0000 | [diff] [blame] | 276 | break; |
| 277 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 278 | } while (nwrite); |
| 279 | } |
| 280 | } |
Denys Vlasenko | 6eaeb77 | 2010-03-12 22:16:25 +0100 | [diff] [blame] | 281 | if (nwrite > 0) |
| 282 | xwrite(STDOUT_FILENO, buf + nread - nwrite, nwrite); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 283 | } else if (count) { |
Denis Vlasenko | e31f721 | 2006-12-22 16:06:16 +0000 | [diff] [blame] | 284 | if (COUNT_BYTES) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 285 | taillen += nread; |
Denis Vlasenko | 77ad97f | 2008-05-13 02:27:31 +0000 | [diff] [blame] | 286 | if (taillen > (int)count) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 287 | memmove(tailbuf, tailbuf + taillen - count, count); |
| 288 | taillen = count; |
| 289 | } |
Glenn L McGrath | 4ef5a84 | 2003-10-31 00:35:59 +0000 | [diff] [blame] | 290 | } else { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 291 | int k = nread; |
Denis Vlasenko | e8419c9 | 2008-02-19 00:38:10 +0000 | [diff] [blame] | 292 | int newlines_in_buf = 0; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 293 | |
Denis Vlasenko | e8419c9 | 2008-02-19 00:38:10 +0000 | [diff] [blame] | 294 | do { /* count '\n' in last read */ |
| 295 | k--; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 296 | if (buf[k] == '\n') { |
Denis Vlasenko | e8419c9 | 2008-02-19 00:38:10 +0000 | [diff] [blame] | 297 | newlines_in_buf++; |
Matt Kraai | 55bccf3 | 2001-01-05 02:57:53 +0000 | [diff] [blame] | 298 | } |
Denis Vlasenko | e8419c9 | 2008-02-19 00:38:10 +0000 | [diff] [blame] | 299 | } while (k); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 300 | |
Denis Vlasenko | 77ad97f | 2008-05-13 02:27:31 +0000 | [diff] [blame] | 301 | if (newlines_seen + newlines_in_buf < (int)count) { |
Denis Vlasenko | e8419c9 | 2008-02-19 00:38:10 +0000 | [diff] [blame] | 302 | newlines_seen += newlines_in_buf; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 303 | taillen += nread; |
Matt Kraai | 55bccf3 | 2001-01-05 02:57:53 +0000 | [diff] [blame] | 304 | } else { |
Denis Vlasenko | e8419c9 | 2008-02-19 00:38:10 +0000 | [diff] [blame] | 305 | int extra = (buf[nread-1] != '\n'); |
Eric Lammerts | 3b5a664 | 2009-07-22 00:31:27 +0200 | [diff] [blame] | 306 | char *s; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 307 | |
Denis Vlasenko | e8419c9 | 2008-02-19 00:38:10 +0000 | [diff] [blame] | 308 | k = newlines_seen + newlines_in_buf + extra - count; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 309 | s = tailbuf; |
| 310 | while (k) { |
| 311 | if (*s == '\n') { |
Denis Vlasenko | e8419c9 | 2008-02-19 00:38:10 +0000 | [diff] [blame] | 312 | k--; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 313 | } |
Denis Vlasenko | e8419c9 | 2008-02-19 00:38:10 +0000 | [diff] [blame] | 314 | s++; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 315 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 316 | taillen += nread - (s - tailbuf); |
| 317 | memmove(tailbuf, s, taillen); |
Denis Vlasenko | e8419c9 | 2008-02-19 00:38:10 +0000 | [diff] [blame] | 318 | newlines_seen = count - extra; |
Matt Kraai | 55bccf3 | 2001-01-05 02:57:53 +0000 | [diff] [blame] | 319 | } |
Denis Vlasenko | 77ad97f | 2008-05-13 02:27:31 +0000 | [diff] [blame] | 320 | if (tailbufsize < (size_t)taillen + BUFSIZ) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 321 | tailbufsize = taillen + BUFSIZ; |
| 322 | tailbuf = xrealloc(tailbuf, tailbufsize); |
Matt Kraai | 55bccf3 | 2001-01-05 02:57:53 +0000 | [diff] [blame] | 323 | } |
Eric Andersen | d5fa3e3 | 2000-08-02 16:42:58 +0000 | [diff] [blame] | 324 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 325 | buf = tailbuf + taillen; |
Eric Andersen | d5fa3e3 | 2000-08-02 16:42:58 +0000 | [diff] [blame] | 326 | } |
Denis Vlasenko | e8419c9 | 2008-02-19 00:38:10 +0000 | [diff] [blame] | 327 | } /* while (tail_read() > 0) */ |
Denys Vlasenko | 9e933d9 | 2011-05-20 00:30:04 +0200 | [diff] [blame] | 328 | if (!G.from_top) { |
Denis Vlasenko | e31f721 | 2006-12-22 16:06:16 +0000 | [diff] [blame] | 329 | xwrite(STDOUT_FILENO, tailbuf, taillen); |
Matt Kraai | 55bccf3 | 2001-01-05 02:57:53 +0000 | [diff] [blame] | 330 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 331 | } while (++i < nfiles); |
Bartosz Golaszewski | 6493801 | 2013-10-14 20:11:55 +0200 | [diff] [blame] | 332 | prev_fd = fds[i-1]; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 333 | |
Eric Lammerts | 3b5a664 | 2009-07-22 00:31:27 +0200 | [diff] [blame] | 334 | tailbuf = xrealloc(tailbuf, BUFSIZ); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 335 | |
| 336 | fmt = NULL; |
Matt Kraai | 55bccf3 | 2001-01-05 02:57:53 +0000 | [diff] [blame] | 337 | |
Denis Vlasenko | e31f721 | 2006-12-22 16:06:16 +0000 | [diff] [blame] | 338 | if (FOLLOW) while (1) { |
Matt Kraai | 55bccf3 | 2001-01-05 02:57:53 +0000 | [diff] [blame] | 339 | sleep(sleep_period); |
Eric Lammerts | 3b5a664 | 2009-07-22 00:31:27 +0200 | [diff] [blame] | 340 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 341 | i = 0; |
| 342 | do { |
Eric Lammerts | 3b5a664 | 2009-07-22 00:31:27 +0200 | [diff] [blame] | 343 | int nread; |
| 344 | const char *filename = argv[i]; |
| 345 | int fd = fds[i]; |
| 346 | |
| 347 | if (FOLLOW_RETRY) { |
| 348 | struct stat sbuf, fsbuf; |
| 349 | |
| 350 | if (fd < 0 |
| 351 | || fstat(fd, &fsbuf) < 0 |
| 352 | || stat(filename, &sbuf) < 0 |
| 353 | || fsbuf.st_dev != sbuf.st_dev |
| 354 | || fsbuf.st_ino != sbuf.st_ino |
| 355 | ) { |
| 356 | int new_fd; |
| 357 | |
| 358 | if (fd >= 0) |
| 359 | close(fd); |
| 360 | new_fd = open(filename, O_RDONLY); |
| 361 | if (new_fd >= 0) { |
| 362 | bb_error_msg("%s has %s; following end of new file", |
| 363 | filename, (fd < 0) ? "appeared" : "been replaced" |
| 364 | ); |
| 365 | } else if (fd >= 0) { |
| 366 | bb_perror_msg("%s has become inaccessible", filename); |
| 367 | } |
| 368 | fds[i] = fd = new_fd; |
| 369 | } |
| 370 | } |
| 371 | if (ENABLE_FEATURE_FANCY_TAIL && fd < 0) |
| 372 | continue; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 373 | if (nfiles > header_threshhold) { |
Denys Vlasenko | ea8b252 | 2010-06-02 12:57:26 +0200 | [diff] [blame] | 374 | fmt = header_fmt_str; |
Matt Kraai | 55bccf3 | 2001-01-05 02:57:53 +0000 | [diff] [blame] | 375 | } |
Denys Vlasenko | d87fcd4 | 2013-07-08 02:39:51 +0200 | [diff] [blame] | 376 | for (;;) { |
| 377 | /* tail -f keeps following files even if they are truncated */ |
| 378 | struct stat sbuf; |
| 379 | /* /proc files report zero st_size, don't lseek them */ |
| 380 | if (fstat(fd, &sbuf) == 0 && sbuf.st_size > 0) { |
| 381 | off_t current = lseek(fd, 0, SEEK_CUR); |
| 382 | if (sbuf.st_size < current) |
| 383 | xlseek(fd, 0, SEEK_SET); |
| 384 | } |
| 385 | |
| 386 | nread = tail_read(fd, tailbuf, BUFSIZ); |
| 387 | if (nread <= 0) |
| 388 | break; |
Bartosz Golaszewski | 6493801 | 2013-10-14 20:11:55 +0200 | [diff] [blame] | 389 | if (fmt && (fd != prev_fd)) { |
Eric Lammerts | 3b5a664 | 2009-07-22 00:31:27 +0200 | [diff] [blame] | 390 | tail_xprint_header(fmt, filename); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 391 | fmt = NULL; |
Bartosz Golaszewski | 6493801 | 2013-10-14 20:11:55 +0200 | [diff] [blame] | 392 | prev_fd = fd; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 393 | } |
Eric Lammerts | 3b5a664 | 2009-07-22 00:31:27 +0200 | [diff] [blame] | 394 | xwrite(STDOUT_FILENO, tailbuf, nread); |
Matt Kraai | 55bccf3 | 2001-01-05 02:57:53 +0000 | [diff] [blame] | 395 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 396 | } while (++i < nfiles); |
Denys Vlasenko | 9e933d9 | 2011-05-20 00:30:04 +0200 | [diff] [blame] | 397 | } /* while (1) */ |
| 398 | |
Bernhard Reutner-Fischer | d9c2d5f | 2007-04-04 20:29:15 +0000 | [diff] [blame] | 399 | if (ENABLE_FEATURE_CLEAN_UP) { |
| 400 | free(fds); |
Alexander Shishkin | 2348e09 | 2010-10-21 00:25:45 +0200 | [diff] [blame] | 401 | free(tailbuf); |
Bernhard Reutner-Fischer | d9c2d5f | 2007-04-04 20:29:15 +0000 | [diff] [blame] | 402 | } |
Denys Vlasenko | 9e933d9 | 2011-05-20 00:30:04 +0200 | [diff] [blame] | 403 | return G.exitcode; |
Matt Kraai | 55bccf3 | 2001-01-05 02:57:53 +0000 | [diff] [blame] | 404 | } |