1 /* tail -- output the last part of file(s)
2 Copyright (C) 1989, 90, 91, 1995-2001 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2, or (at your option)
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software Foundation,
16 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
18 /* Can display any amount of data, unlike the Unix version, which uses
19 a fixed size buffer and therefore can only deliver a limited number
22 Original version by Paul Rubin <phr@ocf.berkeley.edu>.
23 Extensions by David MacKenzie <djm@gnu.ai.mit.edu>.
24 tail -f for multiple files by Ian Lance Taylor <ian@airs.com>. */
31 #include <sys/types.h>
38 #include "safe-read.h"
41 /* The official name of this program (e.g., no `g' prefix). */
42 #define PROGRAM_NAME "tail"
45 "Paul Rubin, David MacKenzie, Ian Lance Taylor, and Jim Meyering"
48 /* Some systems don't have ENOSYS -- this should be a big enough
49 value that no valid errno value will match it. */
53 /* Number of items to tail. */
54 #define DEFAULT_N_LINES 10
56 /* Size of atomic reads. */
58 # define BUFSIZ (512 * 8)
61 /* A special value for dump_remainder's N_BYTES parameter. */
62 #define COPY_TO_EOF OFF_T_MAX
64 /* FIXME: make Follow_name the default? */
65 #define DEFAULT_FOLLOW_MODE Follow_descriptor
69 /* Follow the name of each file: if the file is renamed, try to reopen
70 that name and track the end of the new file if/when it's recreated.
71 This is useful for tracking logs that are occasionally rotated. */
74 /* Follow each descriptor obtained upon opening a file.
75 That means we'll continue to follow the end of a file even after
76 it has been renamed or unlinked. */
80 /* The types of files for which tail works. */
81 #define IS_TAILABLE_FILE_TYPE(Mode) \
82 (S_ISREG (Mode) || S_ISFIFO (Mode) || S_ISCHR (Mode))
84 static char const *const follow_mode_string
[] =
86 "descriptor", "name", 0
89 static enum Follow_mode
const follow_mode_map
[] =
91 Follow_descriptor
, Follow_name
,
96 /* The actual file name, or "-" for stdin. */
99 /* File descriptor on which the file is open; -1 if it's not open. */
102 /* The size of the file the last time we checked. */
105 /* The device and inode of the file the last time we checked. */
109 /* The specified name initially referred to a directory or some other
110 type for which tail isn't meaningful. Unlike for a permission problem
111 (tailable, below) once this is set, the name is not checked ever again. */
114 /* See description of DEFAULT_MAX_N_... below. */
115 unsigned int n_unchanged_stats
;
117 /* See description of DEFAULT_MAX_N_... below. */
118 unsigned int n_consecutive_size_changes
;
120 /* A file is tailable if it exists, is readable, and is of type
121 IS_TAILABLE_FILE_TYPE. */
124 /* The value of errno seen last time we checked this file. */
129 /* Keep trying to open a file even if it is inaccessible when tail starts
130 or if it becomes inaccessible later -- useful only with -f. */
131 static int reopen_inaccessible_files
;
133 /* If nonzero, interpret the numeric argument as the number of lines.
134 Otherwise, interpret it as the number of bytes. */
135 static int count_lines
;
137 /* Whether we follow the name of each file or the file descriptor
138 that is initially associated with each name. */
139 static enum Follow_mode follow_mode
= Follow_descriptor
;
141 /* If nonzero, read from the ends of all specified files until killed. */
144 /* If nonzero, count from start of file instead of end. */
145 static int from_start
;
147 /* If nonzero, print filename headers. */
148 static int print_headers
;
150 /* When to print the filename banners. */
153 multiple_files
, always
, never
156 /* When tailing a file by name, if there have been this many consecutive
157 iterations for which the size has remained the same, then open/fstat
158 the file to determine if that file name is still associated with the
159 same device/inode-number pair as before. This option is meaningful only
160 when following by name. --max-unchanged-stats=N */
161 #define DEFAULT_MAX_N_UNCHANGED_STATS_BETWEEN_OPENS 5
162 static unsigned long max_n_unchanged_stats_between_opens
=
163 DEFAULT_MAX_N_UNCHANGED_STATS_BETWEEN_OPENS
;
165 /* This variable is used to ensure that a file that is unlinked or moved
166 aside, yet always growing will be recognized as having been renamed.
167 After detecting this many consecutive size changes for a file, open/fstat
168 the file to determine if that file name is still associated with the
169 same device/inode-number pair as before. This option is meaningful only
170 when following by name. --max-consecutive-size-changes=N */
171 #define DEFAULT_MAX_N_CONSECUTIVE_SIZE_CHANGES 200
172 static unsigned long max_n_consecutive_size_changes_between_opens
=
173 DEFAULT_MAX_N_CONSECUTIVE_SIZE_CHANGES
;
175 /* The name this program was run with. */
178 /* The number of seconds to sleep between iterations.
179 During one iteration, every file name or descriptor is checked to
180 see if it has changed. */
181 /* FIXME: allow fractional seconds */
182 static unsigned int sleep_interval
= 1;
184 /* The process ID of the process (presumably on the current host)
185 that is writing to all followed files. */
188 /* Nonzero if we have ever read standard input. */
189 static int have_read_stdin
;
191 /* For long options that have no equivalent short option, use a
192 non-character as a pseudo short option, starting with CHAR_MAX + 1. */
195 RETRY_OPTION
= CHAR_MAX
+ 1,
196 MAX_UNCHANGED_STATS_OPTION
,
198 /* FIXME: remove this in 2001, unless someone can show a good
199 reason to keep it. */
200 MAX_CONSECUTIVE_SIZE_CHANGES_OPTION
,
206 static struct option
const long_options
[] =
208 /* --allow-missing is deprecated; use --retry instead
209 FIXME: remove it some day */
210 {"allow-missing", no_argument
, NULL
, RETRY_OPTION
},
211 {"bytes", required_argument
, NULL
, 'c'},
212 {"follow", optional_argument
, NULL
, LONG_FOLLOW_OPTION
},
213 {"lines", required_argument
, NULL
, 'n'},
214 {"max-unchanged-stats", required_argument
, NULL
, MAX_UNCHANGED_STATS_OPTION
},
215 {"max-consecutive-size-changes", required_argument
, NULL
,
216 MAX_CONSECUTIVE_SIZE_CHANGES_OPTION
},
217 {"pid", required_argument
, NULL
, PID_OPTION
},
218 {"quiet", no_argument
, NULL
, 'q'},
219 {"retry", no_argument
, NULL
, RETRY_OPTION
},
220 {"silent", no_argument
, NULL
, 'q'},
221 {"sleep-interval", required_argument
, NULL
, 's'},
222 {"verbose", no_argument
, NULL
, 'v'},
223 {GETOPT_HELP_OPTION_DECL
},
224 {GETOPT_VERSION_OPTION_DECL
},
232 fprintf (stderr
, _("Try `%s --help' for more information.\n"),
237 Usage: %s [OPTION]... [FILE]...\n\
241 Print the last %d lines of each FILE to standard output.\n\
242 With more than one FILE, precede each with a header giving the file name.\n\
243 With no FILE, or when FILE is -, read standard input.\n\
245 --retry keep trying to open a file even if it is\n\
246 inaccessible when tail starts or if it becomes\n\
247 inaccessible later -- useful only with -f\n\
248 -c, --bytes=N output the last N bytes\n\
249 -f, --follow[={name|descriptor}] output appended data as the file grows;\n\
250 -f, --follow, and --follow=descriptor are\n\
252 -n, --lines=N output the last N lines, instead of the last %d\n\
253 --max-unchanged-stats=N\n\
254 with --follow=name, reopen a FILE which has not\n\
255 changed size after N (default %d) iterations\n\
256 to see if it has been unlinked or renamed\n\
257 (this is the usual case of rotated log files)\n\
258 --pid=PID with -f, terminate after process ID, PID dies\n\
259 -q, --quiet, --silent never output headers giving file names\n\
260 -s, --sleep-interval=S with -f, each iteration lasts approximately S\n\
261 (default 1) seconds\n\
262 -v, --verbose always output headers giving file names\n\
263 --help display this help and exit\n\
264 --version output version information and exit\n\
267 DEFAULT_N_LINES
, DEFAULT_N_LINES
,
268 DEFAULT_MAX_N_UNCHANGED_STATS_BETWEEN_OPENS
271 If the first character of N (the number of bytes or lines) is a `+',\n\
272 print beginning with the Nth item from the start of each file, otherwise,\n\
273 print the last N items in the file. N may have a multiplier suffix:\n\
274 b for 512, k for 1024, m for 1048576 (1 Meg). A first OPTION of -VALUE\n\
275 or +VALUE is treated like -n VALUE or -n +VALUE unless VALUE has one of\n\
276 the [bkm] suffix multipliers, in which case it is treated like -c VALUE\n\
279 With --follow (-f), tail defaults to following the file descriptor, which\n\
280 means that even if a tail'ed file is renamed, tail will continue to track\n\
281 its end. This default behavior is not desirable when you really want to\n\
282 track the actual name of the file, not the file descriptor (e.g., log\n\
283 rotation). Use --follow=name in that case. That causes tail to track the\n\
284 named file by reopening it periodically to see if it has been removed and\n\
285 recreated by some other program.\n\
288 puts (_("\nReport bugs to <bug-textutils@gnu.org>."));
290 exit (status
== 0 ? EXIT_SUCCESS
: EXIT_FAILURE
);
294 valid_file_spec (struct File_spec
const *f
)
296 /* Exactly one of the following subexpressions must be true. */
297 return ((f
->fd
== -1) ^ (f
->errnum
== 0));
301 pretty_name (struct File_spec
const *f
)
303 return (STREQ (f
->name
, "-") ? "standard input" : f
->name
);
307 xwrite (int fd
, char *const buffer
, size_t n_bytes
)
309 assert (fd
== STDOUT_FILENO
);
310 assert (n_bytes
>= 0);
311 if (n_bytes
> 0 && fwrite (buffer
, 1, n_bytes
, stdout
) == 0)
312 error (EXIT_FAILURE
, errno
, _("write error"));
316 close_fd (int fd
, const char *filename
)
318 if (fd
!= -1 && fd
!= STDIN_FILENO
&& close (fd
))
320 error (0, errno
, _("closing %s (fd=%d)"), filename
, fd
);
325 write_header (const char *pretty_filename
)
327 static int first_file
= 1;
329 printf ("%s==> %s <==\n", (first_file
? "" : "\n"), pretty_filename
);
333 /* Read and output N_BYTES of file PRETTY_FILENAME starting at the current
334 position in FD. If N_BYTES is COPY_TO_EOF, then copy until end of file.
335 Return the number of bytes read from the file. */
338 dump_remainder (const char *pretty_filename
, int fd
, off_t n_bytes
)
343 off_t n_remaining
= n_bytes
;
348 long n
= MIN (n_remaining
, (off_t
) BUFSIZ
);
349 bytes_read
= safe_read (fd
, buffer
, n
);
352 xwrite (STDOUT_FILENO
, buffer
, bytes_read
);
353 n_remaining
-= bytes_read
;
354 n_written
+= bytes_read
;
356 if (bytes_read
== -1)
357 error (EXIT_FAILURE
, errno
, "%s", pretty_filename
);
362 /* Print the last N_LINES lines from the end of file FD.
363 Go backward through the file, reading `BUFSIZ' bytes at a time (except
364 probably the first), until we hit the start of the file or have
365 read NUMBER newlines.
366 FILE_LENGTH is the length of the file (one more than the offset of the
367 last byte of the file).
368 Return 0 if successful, 1 if an error occurred. */
371 file_lines (const char *pretty_filename
, int fd
, long int n_lines
,
376 int i
; /* Index into `buffer' for scanning. */
377 off_t pos
= file_length
;
382 /* Set `bytes_read' to the size of the last, probably partial, buffer;
383 0 < `bytes_read' <= `BUFSIZ'. */
384 bytes_read
= pos
% BUFSIZ
;
387 /* Make `pos' a multiple of `BUFSIZ' (0 if the file is short), so that all
388 reads will be on block boundaries, which might increase efficiency. */
390 /* FIXME: check lseek return value */
391 lseek (fd
, pos
, SEEK_SET
);
392 bytes_read
= safe_read (fd
, buffer
, bytes_read
);
393 if (bytes_read
== -1)
395 error (0, errno
, "%s", pretty_filename
);
399 /* Count the incomplete line on files that don't end with a newline. */
400 if (bytes_read
&& buffer
[bytes_read
- 1] != '\n')
405 /* Scan backward, counting the newlines in this bufferfull. */
406 for (i
= bytes_read
- 1; i
>= 0; i
--)
408 /* Have we counted the requested number of newlines yet? */
409 if (buffer
[i
] == '\n' && n_lines
-- == 0)
411 /* If this newline wasn't the last character in the buffer,
412 print the text after it. */
413 if (i
!= bytes_read
- 1)
414 xwrite (STDOUT_FILENO
, &buffer
[i
+ 1], bytes_read
- (i
+ 1));
415 dump_remainder (pretty_filename
, fd
,
416 file_length
- (pos
+ bytes_read
));
420 /* Not enough newlines in that bufferfull. */
423 /* Not enough lines in the file; print the entire file. */
424 /* FIXME: check lseek return value */
425 lseek (fd
, (off_t
) 0, SEEK_SET
);
426 dump_remainder (pretty_filename
, fd
, file_length
);
430 /* FIXME: check lseek return value */
431 lseek (fd
, pos
, SEEK_SET
);
433 while ((bytes_read
= safe_read (fd
, buffer
, BUFSIZ
)) > 0);
435 if (bytes_read
== -1)
437 error (0, errno
, "%s", pretty_filename
);
444 /* Print the last N_LINES lines from the end of the standard input,
445 open for reading as pipe FD.
446 Buffer the text as a linked list of LBUFFERs, adding them as needed.
447 Return 0 if successful, 1 if an error occured. */
450 pipe_lines (const char *pretty_filename
, int fd
, long int n_lines
)
456 struct linebuffer
*next
;
458 typedef struct linebuffer LBUFFER
;
459 LBUFFER
*first
, *last
, *tmp
;
460 int i
; /* Index into buffers. */
461 int total_lines
= 0; /* Total number of newlines in all buffers. */
463 int nbytes
; /* Size of most recent read */
465 first
= last
= (LBUFFER
*) xmalloc (sizeof (LBUFFER
));
466 first
->nbytes
= first
->nlines
= 0;
468 tmp
= (LBUFFER
*) xmalloc (sizeof (LBUFFER
));
470 /* Input is always read into a fresh buffer. */
471 while ((nbytes
= tmp
->nbytes
= safe_read (fd
, tmp
->buffer
, BUFSIZ
)) > 0)
476 /* Count the number of newlines just read. */
477 for (i
= 0; i
< tmp
->nbytes
; i
++)
478 if (tmp
->buffer
[i
] == '\n')
480 total_lines
+= tmp
->nlines
;
482 /* If there is enough room in the last buffer read, just append the new
483 one to it. This is because when reading from a pipe, `nbytes' can
484 often be very small. */
485 if (tmp
->nbytes
+ last
->nbytes
< BUFSIZ
)
487 memcpy (&last
->buffer
[last
->nbytes
], tmp
->buffer
, tmp
->nbytes
);
488 last
->nbytes
+= tmp
->nbytes
;
489 last
->nlines
+= tmp
->nlines
;
493 /* If there's not enough room, link the new buffer onto the end of
494 the list, then either free up the oldest buffer for the next
495 read if that would leave enough lines, or else malloc a new one.
496 Some compaction mechanism is possible but probably not
498 last
= last
->next
= tmp
;
499 if (total_lines
- first
->nlines
> n_lines
)
502 total_lines
-= first
->nlines
;
506 tmp
= (LBUFFER
*) xmalloc (sizeof (LBUFFER
));
514 error (0, errno
, "%s", pretty_filename
);
519 /* If the file is empty, then bail out. */
520 if (last
->nbytes
== 0)
523 /* This prevents a core dump when the pipe contains no newlines. */
527 /* Count the incomplete line on files that don't end with a newline. */
528 if (last
->buffer
[last
->nbytes
- 1] != '\n')
534 /* Run through the list, printing lines. First, skip over unneeded
536 for (tmp
= first
; total_lines
- tmp
->nlines
> n_lines
; tmp
= tmp
->next
)
537 total_lines
-= tmp
->nlines
;
539 /* Find the correct beginning, then print the rest of the file. */
540 if (total_lines
> n_lines
)
544 /* Skip `total_lines' - `n_lines' newlines. We made sure that
545 `total_lines' - `n_lines' <= `tmp->nlines'. */
547 for (i
= total_lines
- n_lines
; i
; --i
)
548 while (*cp
++ != '\n')
550 i
= cp
- tmp
->buffer
;
554 xwrite (STDOUT_FILENO
, &tmp
->buffer
[i
], tmp
->nbytes
- i
);
556 for (tmp
= tmp
->next
; tmp
; tmp
= tmp
->next
)
557 xwrite (STDOUT_FILENO
, tmp
->buffer
, tmp
->nbytes
);
563 free ((char *) first
);
569 /* Print the last N_BYTES characters from the end of pipe FD.
570 This is a stripped down version of pipe_lines.
571 Return 0 if successful, 1 if an error occurred. */
574 pipe_bytes (const char *pretty_filename
, int fd
, off_t n_bytes
)
580 struct charbuffer
*next
;
582 typedef struct charbuffer CBUFFER
;
583 CBUFFER
*first
, *last
, *tmp
;
584 int i
; /* Index into buffers. */
585 int total_bytes
= 0; /* Total characters in all buffers. */
588 first
= last
= (CBUFFER
*) xmalloc (sizeof (CBUFFER
));
591 tmp
= (CBUFFER
*) xmalloc (sizeof (CBUFFER
));
593 /* Input is always read into a fresh buffer. */
594 while ((tmp
->nbytes
= safe_read (fd
, tmp
->buffer
, BUFSIZ
)) > 0)
598 total_bytes
+= tmp
->nbytes
;
599 /* If there is enough room in the last buffer read, just append the new
600 one to it. This is because when reading from a pipe, `nbytes' can
601 often be very small. */
602 if (tmp
->nbytes
+ last
->nbytes
< BUFSIZ
)
604 memcpy (&last
->buffer
[last
->nbytes
], tmp
->buffer
, tmp
->nbytes
);
605 last
->nbytes
+= tmp
->nbytes
;
609 /* If there's not enough room, link the new buffer onto the end of
610 the list, then either free up the oldest buffer for the next
611 read if that would leave enough characters, or else malloc a new
612 one. Some compaction mechanism is possible but probably not
614 last
= last
->next
= tmp
;
615 if (total_bytes
- first
->nbytes
> n_bytes
)
618 total_bytes
-= first
->nbytes
;
623 tmp
= (CBUFFER
*) xmalloc (sizeof (CBUFFER
));
627 if (tmp
->nbytes
== -1)
629 error (0, errno
, "%s", pretty_filename
);
637 /* Run through the list, printing characters. First, skip over unneeded
639 for (tmp
= first
; total_bytes
- tmp
->nbytes
> n_bytes
; tmp
= tmp
->next
)
640 total_bytes
-= tmp
->nbytes
;
642 /* Find the correct beginning, then print the rest of the file.
643 We made sure that `total_bytes' - `n_bytes' <= `tmp->nbytes'. */
644 if (total_bytes
> n_bytes
)
645 i
= total_bytes
- n_bytes
;
648 xwrite (STDOUT_FILENO
, &tmp
->buffer
[i
], tmp
->nbytes
- i
);
650 for (tmp
= tmp
->next
; tmp
; tmp
= tmp
->next
)
651 xwrite (STDOUT_FILENO
, tmp
->buffer
, tmp
->nbytes
);
657 free ((char *) first
);
663 /* Skip N_BYTES characters from the start of pipe FD, and print
664 any extra characters that were read beyond that.
665 Return 1 on error, 0 if ok. */
668 start_bytes (const char *pretty_filename
, int fd
, off_t n_bytes
)
673 while (n_bytes
> 0 && (bytes_read
= safe_read (fd
, buffer
, BUFSIZ
)) > 0)
674 n_bytes
-= bytes_read
;
675 if (bytes_read
== -1)
677 error (0, errno
, "%s", pretty_filename
);
680 else if (n_bytes
< 0)
681 xwrite (STDOUT_FILENO
, &buffer
[bytes_read
+ n_bytes
], -n_bytes
);
685 /* Skip N_LINES lines at the start of file or pipe FD, and print
686 any extra characters that were read beyond that.
687 Return 1 on error, 0 if ok. */
690 start_lines (const char *pretty_filename
, int fd
, long int n_lines
)
694 int bytes_to_skip
= 0;
696 while (n_lines
&& (bytes_read
= safe_read (fd
, buffer
, BUFSIZ
)) > 0)
699 while (bytes_to_skip
< bytes_read
)
700 if (buffer
[bytes_to_skip
++] == '\n' && --n_lines
== 0)
703 if (bytes_read
== -1)
705 error (0, errno
, "%s", pretty_filename
);
708 else if (bytes_to_skip
< bytes_read
)
710 xwrite (STDOUT_FILENO
, &buffer
[bytes_to_skip
],
711 bytes_read
- bytes_to_skip
);
716 /* FIXME: describe */
719 recheck (struct File_spec
*f
)
721 /* open/fstat the file and announce if dev/ino have changed */
722 struct stat new_stats
;
725 int is_stdin
= (STREQ (f
->name
, "-"));
726 int was_tailable
= f
->tailable
;
727 int prev_errnum
= f
->errnum
;
730 assert (valid_file_spec (f
));
732 fd
= (is_stdin
? STDIN_FILENO
: open (f
->name
, O_RDONLY
));
734 /* If the open fails because the file doesn't exist,
735 then mark the file as not tailable. */
736 f
->tailable
= !(reopen_inaccessible_files
&& fd
== -1);
738 if (fd
== -1 || fstat (fd
, &new_stats
) < 0)
746 /* FIXME-maybe: detect the case in which the file first becomes
747 unreadable (perms), and later becomes readable again and can
748 be seen to be the same file (dev/ino). Otherwise, tail prints
749 the entire contents of the file when it becomes readable. */
750 error (0, f
->errnum
, _("`%s' has become inaccessible"),
755 /* say nothing... it's still not tailable */
758 else if (prev_errnum
!= errno
)
760 error (0, errno
, "%s", pretty_name (f
));
763 else if (!IS_TAILABLE_FILE_TYPE (new_stats
.st_mode
))
767 error (0, 0, _("`%s' has been replaced with an untailable file;\
768 giving up on this name"),
780 close_fd (fd
, pretty_name (f
));
781 close_fd (f
->fd
, pretty_name (f
));
784 else if (prev_errnum
&& prev_errnum
!= ENOENT
)
787 assert (f
->fd
== -1);
788 error (0, 0, _("`%s' has become accessible"), pretty_name (f
));
790 else if (f
->ino
!= new_stats
.st_ino
|| f
->dev
!= new_stats
.st_dev
)
796 _("`%s' has appeared; following end of new file"),
801 /* Close the old one. */
802 close_fd (f
->fd
, pretty_name (f
));
804 /* File has been replaced (e.g., via log rotation) --
807 _("`%s' has been replaced; following end of new file"),
815 /* This happens when one iteration finds the file missing,
816 then the preceding <dev,inode> pair is reused as the
817 file is recreated. */
822 close_fd (fd
, pretty_name (f
));
828 /* Record new file info in f. */
830 f
->size
= 0; /* Start at the beginning of the file... */
831 f
->dev
= new_stats
.st_dev
;
832 f
->ino
= new_stats
.st_ino
;
833 f
->n_unchanged_stats
= 0;
834 f
->n_consecutive_size_changes
= 0;
836 /* FIXME: check lseek return value */
837 lseek (f
->fd
, f
->size
, SEEK_SET
);
841 /* FIXME: describe */
844 n_live_files (const struct File_spec
*f
, int n_files
)
847 unsigned int n_live
= 0;
849 for (i
= 0; i
< n_files
; i
++)
857 /* Tail NFILES files forever, or until killed.
858 The pertinent information for each file is stored in an entry of F.
859 Loop over each of them, doing an fstat to see if they have changed size,
860 and an occasional open/fstat to see if any dev/ino pair has changed.
861 If none of them have changed size in one iteration, sleep for a
862 while and try again. Continue until the user interrupts us. */
865 tail_forever (struct File_spec
*f
, int nfiles
)
868 int writer_is_dead
= 0;
878 for (i
= 0; i
< nfiles
; i
++)
891 if (fstat (f
[i
].fd
, &stats
) < 0)
895 error (0, errno
, "%s", pretty_name (&f
[i
]));
899 if (stats
.st_size
== f
[i
].size
)
901 f
[i
].n_consecutive_size_changes
= 0;
902 if (++f
[i
].n_unchanged_stats
> max_n_unchanged_stats_between_opens
903 && follow_mode
== Follow_name
)
906 f
[i
].n_unchanged_stats
= 0;
912 ++f
[i
].n_consecutive_size_changes
;
914 /* Ensure that a file that's unlinked or moved aside, yet always
915 growing will be recognized as having been renamed. */
916 if (follow_mode
== Follow_name
917 && (f
[i
].n_consecutive_size_changes
918 > max_n_consecutive_size_changes_between_opens
))
920 f
[i
].n_consecutive_size_changes
= 0;
925 /* This file has changed size. Print out what we can, and
926 then keep looping. */
931 f
[i
].n_unchanged_stats
= 0;
933 if (stats
.st_size
< f
[i
].size
)
935 error (0, 0, _("%s: file truncated"), pretty_name (&f
[i
]));
937 /* FIXME: check lseek return value */
938 lseek (f
[i
].fd
, stats
.st_size
, SEEK_SET
);
939 f
[i
].size
= stats
.st_size
;
946 write_header (pretty_name (&f
[i
]));
949 f
[i
].size
+= dump_remainder (pretty_name (&f
[i
]), f
[i
].fd
,
953 if (n_live_files (f
, nfiles
) == 0 && ! reopen_inaccessible_files
)
955 error (0, 0, _("no files remaining"));
959 /* If none of the files changed size, sleep. */
964 sleep (sleep_interval
);
966 /* Once the writer is dead, read the files once more to
967 avoid a race condition. */
968 writer_is_dead
= (pid
!= 0
969 && kill (pid
, 0) != 0
970 /* Handle the case in which you cannot send a
971 signal to the writer, so kill fails and sets
978 /* Output the last N_BYTES bytes of file FILENAME open for reading in FD.
979 Return 0 if successful, 1 if an error occurred. */
982 tail_bytes (const char *pretty_filename
, int fd
, off_t n_bytes
)
986 /* We need binary input, since `tail' relies on `lseek' and byte counts,
987 while binary output will preserve the style (Unix/DOS) of text file. */
988 SET_BINARY2 (fd
, STDOUT_FILENO
);
990 if (fstat (fd
, &stats
))
992 error (0, errno
, "%s", pretty_filename
);
998 if (S_ISREG (stats
.st_mode
))
1000 /* FIXME: check lseek return value */
1001 lseek (fd
, n_bytes
, SEEK_CUR
);
1003 else if (start_bytes (pretty_filename
, fd
, n_bytes
))
1007 dump_remainder (pretty_filename
, fd
, COPY_TO_EOF
);
1011 if (S_ISREG (stats
.st_mode
))
1013 off_t current_pos
, end_pos
;
1014 size_t bytes_remaining
;
1016 if ((current_pos
= lseek (fd
, (off_t
) 0, SEEK_CUR
)) != -1
1017 && (end_pos
= lseek (fd
, (off_t
) 0, SEEK_END
)) != -1)
1020 /* Be careful here. The current position may actually be
1021 beyond the end of the file. */
1022 bytes_remaining
= (diff
= end_pos
- current_pos
) < 0 ? 0 : diff
;
1026 error (0, errno
, "%s", pretty_filename
);
1030 if (bytes_remaining
<= n_bytes
)
1032 /* From the current position to end of file, there are no
1033 more bytes than have been requested. So reposition the
1034 file pointer to the incoming current position and print
1035 everything after that. */
1036 /* FIXME: check lseek return value */
1037 lseek (fd
, current_pos
, SEEK_SET
);
1041 /* There are more bytes remaining than were requested.
1043 /* FIXME: check lseek return value */
1044 lseek (fd
, -n_bytes
, SEEK_END
);
1046 dump_remainder (pretty_filename
, fd
, n_bytes
);
1049 return pipe_bytes (pretty_filename
, fd
, n_bytes
);
1054 /* Output the last N_LINES lines of file FILENAME open for reading in FD.
1055 Return 0 if successful, 1 if an error occurred. */
1058 tail_lines (const char *pretty_filename
, int fd
, long int n_lines
)
1063 /* We need binary input, since `tail' relies on `lseek' and byte counts,
1064 while binary output will preserve the style (Unix/DOS) of text file. */
1065 SET_BINARY2 (fd
, STDOUT_FILENO
);
1067 if (fstat (fd
, &stats
))
1069 error (0, errno
, "%s", pretty_filename
);
1075 if (start_lines (pretty_filename
, fd
, n_lines
))
1077 dump_remainder (pretty_filename
, fd
, COPY_TO_EOF
);
1081 /* Use file_lines only if FD refers to a regular file with
1082 its file pointer positioned at beginning of file. */
1083 /* FIXME: adding the lseek conjunct is a kludge.
1084 Once there's a reasonable test suite, fix the true culprit:
1085 file_lines. file_lines shouldn't presume that the input
1086 file pointer is initially positioned to beginning of file. */
1087 if (S_ISREG (stats
.st_mode
)
1088 && lseek (fd
, (off_t
) 0, SEEK_CUR
) == (off_t
) 0)
1090 length
= lseek (fd
, (off_t
) 0, SEEK_END
);
1091 if (length
!= 0 && file_lines (pretty_filename
, fd
, n_lines
, length
))
1095 return pipe_lines (pretty_filename
, fd
, n_lines
);
1100 /* Display the last N_UNITS units of file FILENAME, open for reading
1102 Return 0 if successful, 1 if an error occurred. */
1105 tail (const char *pretty_filename
, int fd
, off_t n_units
)
1108 return tail_lines (pretty_filename
, fd
, (long) n_units
);
1110 return tail_bytes (pretty_filename
, fd
, n_units
);
1113 /* Display the last N_UNITS units of the file described by F.
1114 Return 0 if successful, 1 if an error occurred. */
1117 tail_file (struct File_spec
*f
, off_t n_units
)
1122 int is_stdin
= (STREQ (f
->name
, "-"));
1126 have_read_stdin
= 1;
1131 fd
= open (f
->name
, O_RDONLY
);
1134 f
->tailable
= !(reopen_inaccessible_files
&& fd
== -1);
1146 error (0, errno
, "%s", pretty_name (f
));
1152 write_header (pretty_name (f
));
1153 errors
= tail (pretty_name (f
), fd
, n_units
);
1157 /* FIXME: duplicate code */
1158 if (fstat (fd
, &stats
) < 0)
1162 error (0, errno
, "%s", pretty_name (f
));
1164 else if (!IS_TAILABLE_FILE_TYPE (stats
.st_mode
))
1166 error (0, 0, _("%s: cannot follow end of this type of file;\
1167 giving up on this name"),
1176 close_fd (fd
, pretty_name (f
));
1182 f
->size
= stats
.st_size
;
1183 f
->dev
= stats
.st_dev
;
1184 f
->ino
= stats
.st_ino
;
1185 f
->n_unchanged_stats
= 0;
1186 f
->n_consecutive_size_changes
= 0;
1192 if (!is_stdin
&& close (fd
))
1194 error (0, errno
, "%s", pretty_name (f
));
1203 /* If the command line arguments are of the obsolescent form and the
1204 option string is well-formed, set *FAIL to zero, set *N_UNITS, the
1205 globals COUNT_LINES, FOREVER, and FROM_START, and return non-zero.
1206 Otherwise, if the command line arguments appear to be of the
1207 obsolescent form but the option string is malformed, set *FAIL to
1208 non-zero, don't modify any other parameter or global variable, and
1209 return non-zero. Otherwise, return zero and don't modify any parameter
1210 or global variable. */
1213 parse_obsolescent_option (int argc
, const char *const *argv
,
1214 off_t
*n_units
, int *fail
)
1216 const char *p
= argv
[1];
1217 const char *n_string
= NULL
;
1218 const char *n_string_end
;
1224 /* With the obsolescent form, there is one option string and
1225 (technically) at most one file argument. But we allow two or more
1230 /* If P starts with `+', `-N' (where N is a digit), or `-l',
1231 then it is obsolescent. Return zero otherwise. */
1232 if ( ! (p
[0] == '+' || (p
[0] == '-' && (p
[1] == 'l' || ISDIGIT (p
[1])))) )
1250 while (ISDIGIT (*p
));
1274 /* If (argv[1] begins with a `+' or if it begins with `-' followed
1275 by a digit), but has an invalid suffix character, give a diagnostic
1276 and indicate to caller that this *is* of the obsolescent form,
1277 but that it's an invalid option. */
1278 if (t_from_start
|| n_string
)
1281 _("%c: invalid suffix character in obsolescent option" ), *p
);
1286 /* Otherwise, it might be a valid non-obsolescent option like -n. */
1291 if (n_string
== NULL
)
1292 *n_units
= DEFAULT_N_LINES
;
1296 unsigned long int tmp_ulong
;
1298 s_err
= xstrtoul (n_string
, &end
, 10, &tmp_ulong
, NULL
);
1299 if (s_err
== LONGINT_OK
&& tmp_ulong
<= OFF_T_MAX
)
1300 *n_units
= (off_t
) tmp_ulong
;
1303 /* Extract a NUL-terminated string for the error message. */
1304 size_t len
= n_string_end
- n_string
;
1305 char *n_string_tmp
= xmalloc (len
+ 1);
1307 strncpy (n_string_tmp
, n_string
, len
);
1308 n_string_tmp
[len
] = '\0';
1311 _("%s: %s is so large that it is not representable"),
1312 n_string_tmp
, (count_lines
1313 ? _("number of lines")
1314 : _("number of bytes")));
1315 free (n_string_tmp
);
1324 int posix_pedantic
= (getenv ("POSIXLY_CORRECT") != NULL
);
1326 /* When POSIXLY_CORRECT is set, enforce the `at most one
1327 file argument' requirement. */
1331 too many arguments; When using tail's obsolescent option syntax (%s)\n\
1332 there may be no more than one file argument. Use the equivalent -n or -c\n\
1333 option instead."), argv
[1]);
1338 #if DISABLED /* FIXME: enable or remove this warning. */
1340 Warning: it is not portable to use two or more file arguments with\n\
1341 tail's obsolescent option syntax (%s). Use the equivalent -n or -c\n\
1342 option instead."), argv
[1]);
1347 from_start
= t_from_start
;
1348 count_lines
= t_count_lines
;
1349 forever
= t_forever
;
1356 parse_options (int argc
, char **argv
,
1357 off_t
*n_units
, enum header_mode
*header_mode
)
1362 forever
= from_start
= print_headers
= 0;
1364 while ((c
= getopt_long (argc
, argv
, "c:n:fqs:v", long_options
, NULL
))
1374 count_lines
= (c
== 'n');
1377 else if (*optarg
== '-')
1383 s_err
= xstrtoumax (optarg
, NULL
, 10, &n
, "bkm");
1384 if (s_err
== LONGINT_INVALID
)
1386 error (EXIT_FAILURE
, 0, "%s: %s", optarg
,
1388 ? _("invalid number of lines")
1389 : _("invalid number of bytes")));
1392 if (s_err
!= LONGINT_OK
)
1393 error (EXIT_FAILURE
, 0,
1394 _("%s: is so large that it is not representable"), optarg
);
1397 error (EXIT_FAILURE
, 0,
1398 _("%s is larger than the maximum file size on this system"),
1400 *n_units
= (off_t
) n
;
1405 case LONG_FOLLOW_OPTION
:
1408 follow_mode
= DEFAULT_FOLLOW_MODE
;
1410 follow_mode
= XARGMATCH ("--follow", optarg
,
1411 follow_mode_string
, follow_mode_map
);
1415 reopen_inaccessible_files
= 1;
1418 case MAX_UNCHANGED_STATS_OPTION
:
1419 /* --max-unchanged-stats=N */
1420 if (xstrtoul (optarg
, NULL
, 10,
1421 &max_n_unchanged_stats_between_opens
, "") != LONGINT_OK
)
1423 error (EXIT_FAILURE
, 0,
1424 _("%s: invalid maximum number of unchanged stats between opens"),
1429 case MAX_CONSECUTIVE_SIZE_CHANGES_OPTION
:
1430 /* --max-consecutive-size-changes=N */
1431 if (xstrtoul (optarg
, NULL
, 10,
1432 &max_n_consecutive_size_changes_between_opens
, "")
1435 error (EXIT_FAILURE
, 0,
1436 _("%s: invalid maximum number of consecutive size changes"),
1444 unsigned long int tmp_ulong
;
1445 s_err
= xstrtoul (optarg
, NULL
, 10, &tmp_ulong
, "");
1446 if (s_err
!= LONGINT_OK
|| tmp_ulong
> PID_T_MAX
)
1448 error (EXIT_FAILURE
, 0, _("%s: invalid PID"), optarg
);
1455 *header_mode
= never
;
1461 unsigned long int tmp_ulong
;
1462 s_err
= xstrtoul (optarg
, NULL
, 10, &tmp_ulong
, "");
1463 if (s_err
!= LONGINT_OK
|| tmp_ulong
> UINT_MAX
)
1465 error (EXIT_FAILURE
, 0,
1466 _("%s: invalid number of seconds"), optarg
);
1468 sleep_interval
= tmp_ulong
;
1473 *header_mode
= always
;
1476 case_GETOPT_HELP_CHAR
;
1478 case_GETOPT_VERSION_CHAR (PROGRAM_NAME
, AUTHORS
);
1485 if (reopen_inaccessible_files
&& follow_mode
!= Follow_name
)
1486 error (0, 0, _("warning: --retry is useful only when following by name"));
1488 if (pid
&& !forever
)
1490 _("warning: PID ignored; --pid=PID is useful only when following"));
1491 else if (pid
&& kill (pid
, 0) != 0 && errno
== ENOSYS
)
1493 error (0, 0, _("warning: --pid=PID is not supported on this system"));
1499 main (int argc
, char **argv
)
1501 enum header_mode header_mode
= multiple_files
;
1502 int exit_status
= 0;
1503 /* If from_start, the number of items to skip before printing; otherwise,
1504 the number of items at the end of the file to print. Although the type
1505 is signed, the value is never negative. */
1506 off_t n_units
= DEFAULT_N_LINES
;
1509 struct File_spec
*F
;
1512 program_name
= argv
[0];
1513 setlocale (LC_ALL
, "");
1514 bindtextdomain (PACKAGE
, LOCALEDIR
);
1515 textdomain (PACKAGE
);
1517 atexit (close_stdout
);
1519 have_read_stdin
= 0;
1522 int found_obsolescent
;
1524 found_obsolescent
= parse_obsolescent_option (argc
,
1525 (const char *const *) argv
,
1527 if (found_obsolescent
)
1530 exit (EXIT_FAILURE
);
1535 parse_options (argc
, argv
, &n_units
, &header_mode
);
1539 /* To start printing with item N_UNITS from the start of the file, skip
1540 N_UNITS - 1 items. `tail +0' is actually meaningless, but for Unix
1541 compatibility it's treated the same as `tail +1'. */
1548 n_files
= argc
- optind
;
1549 file
= argv
+ optind
;
1553 static char *dummy_stdin
= "-";
1555 file
= &dummy_stdin
;
1558 F
= (struct File_spec
*) xmalloc (n_files
* sizeof (F
[0]));
1559 for (i
= 0; i
< n_files
; i
++)
1560 F
[i
].name
= file
[i
];
1562 if (header_mode
== always
1563 || (header_mode
== multiple_files
&& n_files
> 1))
1566 for (i
= 0; i
< n_files
; i
++)
1567 exit_status
|= tail_file (&F
[i
], n_units
);
1571 /* This fflush appears to be required only on Solaris2.7. */
1572 if (fflush (stdout
) < 0)
1573 error (EXIT_FAILURE
, errno
, _("write error"));
1575 SETVBUF (stdout
, NULL
, _IONBF
, 0);
1576 tail_forever (F
, n_files
);
1579 if (have_read_stdin
&& close (0) < 0)
1580 error (EXIT_FAILURE
, errno
, "-");
1581 exit (exit_status
== 0 ? EXIT_SUCCESS
: EXIT_FAILURE
);