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>
39 #include "safe-read.h"
42 /* The official name of this program (e.g., no `g' prefix). */
43 #define PROGRAM_NAME "tail"
46 "Paul Rubin, David MacKenzie, Ian Lance Taylor, and Jim Meyering"
49 /* Some systems don't have ENOSYS -- this should be a big enough
50 value that no valid errno value will match it. */
54 /* Number of items to tail. */
55 #define DEFAULT_N_LINES 10
57 /* Size of atomic reads. */
59 # define BUFSIZ (512 * 8)
62 /* A special value for dump_remainder's N_BYTES parameter. */
63 #define COPY_TO_EOF OFF_T_MAX
65 /* FIXME: make Follow_name the default? */
66 #define DEFAULT_FOLLOW_MODE Follow_descriptor
70 /* Follow the name of each file: if the file is renamed, try to reopen
71 that name and track the end of the new file if/when it's recreated.
72 This is useful for tracking logs that are occasionally rotated. */
75 /* Follow each descriptor obtained upon opening a file.
76 That means we'll continue to follow the end of a file even after
77 it has been renamed or unlinked. */
81 /* The types of files for which tail works. */
82 #define IS_TAILABLE_FILE_TYPE(Mode) \
83 (S_ISREG (Mode) || S_ISFIFO (Mode) || S_ISCHR (Mode))
85 static char const *const follow_mode_string
[] =
87 "descriptor", "name", 0
90 static enum Follow_mode
const follow_mode_map
[] =
92 Follow_descriptor
, Follow_name
,
97 /* The actual file name, or "-" for stdin. */
100 /* File descriptor on which the file is open; -1 if it's not open. */
103 /* The size of the file the last time we checked. */
106 /* The device and inode of the file the last time we checked. */
110 /* The specified name initially referred to a directory or some other
111 type for which tail isn't meaningful. Unlike for a permission problem
112 (tailable, below) once this is set, the name is not checked ever again. */
115 /* See description of DEFAULT_MAX_N_... below. */
116 unsigned int n_unchanged_stats
;
118 /* See description of DEFAULT_MAX_N_... below. */
119 unsigned int n_consecutive_size_changes
;
121 /* A file is tailable if it exists, is readable, and is of type
122 IS_TAILABLE_FILE_TYPE. */
125 /* The value of errno seen last time we checked this file. */
130 /* Keep trying to open a file even if it is inaccessible when tail starts
131 or if it becomes inaccessible later -- useful only with -f. */
132 static int reopen_inaccessible_files
;
134 /* If nonzero, interpret the numeric argument as the number of lines.
135 Otherwise, interpret it as the number of bytes. */
136 static int count_lines
;
138 /* Whether we follow the name of each file or the file descriptor
139 that is initially associated with each name. */
140 static enum Follow_mode follow_mode
= Follow_descriptor
;
142 /* If nonzero, read from the ends of all specified files until killed. */
145 /* If nonzero, count from start of file instead of end. */
146 static int from_start
;
148 /* If nonzero, print filename headers. */
149 static int print_headers
;
151 /* When to print the filename banners. */
154 multiple_files
, always
, never
157 /* When tailing a file by name, if there have been this many consecutive
158 iterations for which the size has remained the same, then open/fstat
159 the file to determine if that file name is still associated with the
160 same device/inode-number pair as before. This option is meaningful only
161 when following by name. --max-unchanged-stats=N */
162 #define DEFAULT_MAX_N_UNCHANGED_STATS_BETWEEN_OPENS 5
163 static unsigned long max_n_unchanged_stats_between_opens
=
164 DEFAULT_MAX_N_UNCHANGED_STATS_BETWEEN_OPENS
;
166 /* This variable is used to ensure that a file that is unlinked or moved
167 aside, yet always growing will be recognized as having been renamed.
168 After detecting this many consecutive size changes for a file, open/fstat
169 the file to determine if that file name is still associated with the
170 same device/inode-number pair as before. This option is meaningful only
171 when following by name. --max-consecutive-size-changes=N */
172 #define DEFAULT_MAX_N_CONSECUTIVE_SIZE_CHANGES 200
173 static unsigned long max_n_consecutive_size_changes_between_opens
=
174 DEFAULT_MAX_N_CONSECUTIVE_SIZE_CHANGES
;
176 /* The name this program was run with. */
179 /* The number of seconds to sleep between iterations.
180 During one iteration, every file name or descriptor is checked to
181 see if it has changed. */
182 /* FIXME: allow fractional seconds */
183 static unsigned int sleep_interval
= 1;
185 /* The process ID of the process (presumably on the current host)
186 that is writing to all followed files. */
189 /* Nonzero if we have ever read standard input. */
190 static int have_read_stdin
;
192 /* For long options that have no equivalent short option, use a
193 non-character as a pseudo short option, starting with CHAR_MAX + 1. */
196 RETRY_OPTION
= CHAR_MAX
+ 1,
197 MAX_UNCHANGED_STATS_OPTION
,
199 /* FIXME: remove this in 2001, unless someone can show a good
200 reason to keep it. */
201 MAX_CONSECUTIVE_SIZE_CHANGES_OPTION
,
207 static struct option
const long_options
[] =
209 /* --allow-missing is deprecated; use --retry instead
210 FIXME: remove it some day */
211 {"allow-missing", no_argument
, NULL
, RETRY_OPTION
},
212 {"bytes", required_argument
, NULL
, 'c'},
213 {"follow", optional_argument
, NULL
, LONG_FOLLOW_OPTION
},
214 {"lines", required_argument
, NULL
, 'n'},
215 {"max-unchanged-stats", required_argument
, NULL
, MAX_UNCHANGED_STATS_OPTION
},
216 {"max-consecutive-size-changes", required_argument
, NULL
,
217 MAX_CONSECUTIVE_SIZE_CHANGES_OPTION
},
218 {"pid", required_argument
, NULL
, PID_OPTION
},
219 {"quiet", no_argument
, NULL
, 'q'},
220 {"retry", no_argument
, NULL
, RETRY_OPTION
},
221 {"silent", no_argument
, NULL
, 'q'},
222 {"sleep-interval", required_argument
, NULL
, 's'},
223 {"verbose", no_argument
, NULL
, 'v'},
224 {GETOPT_HELP_OPTION_DECL
},
225 {GETOPT_VERSION_OPTION_DECL
},
233 fprintf (stderr
, _("Try `%s --help' for more information.\n"),
238 Usage: %s [OPTION]... [FILE]...\n\
242 Print the last %d lines of each FILE to standard output.\n\
243 With more than one FILE, precede each with a header giving the file name.\n\
244 With no FILE, or when FILE is -, read standard input.\n\
246 "), DEFAULT_N_LINES
);
248 Mandatory arguments to long options are mandatory for short options too.\n\
251 --retry keep trying to open a file even if it is\n\
252 inaccessible when tail starts or if it becomes\n\
253 inaccessible later -- useful only with -f\n\
254 -c, --bytes=N output the last N bytes\n\
257 -f, --follow[={name|descriptor}]\n\
258 output appended data as the file grows;\n\
259 -f, --follow, and --follow=descriptor are\n\
261 -F same as --follow=name --retry\n\
264 -n, --lines=N output the last N lines, instead of the last %d\n\
265 --max-unchanged-stats=N\n\
266 with --follow=name, reopen a FILE which has not\n\
267 changed size after N (default %d) iterations\n\
268 to see if it has been unlinked or renamed\n\
269 (this is the usual case of rotated log files)\n\
272 DEFAULT_MAX_N_UNCHANGED_STATS_BETWEEN_OPENS
275 --pid=PID with -f, terminate after process ID, PID dies\n\
276 -q, --quiet, --silent never output headers giving file names\n\
277 -s, --sleep-interval=S with -f, each iteration lasts approximately S\n\
278 (default 1) seconds\n\
279 -v, --verbose always output headers giving file names\n\
281 fputs (HELP_OPTION_DESCRIPTION
, stdout
);
282 fputs (VERSION_OPTION_DESCRIPTION
, stdout
);
285 If the first character of N (the number of bytes or lines) is a `+',\n\
286 print beginning with the Nth item from the start of each file, otherwise,\n\
287 print the last N items in the file. N may have a multiplier suffix:\n\
288 b for 512, k for 1024, m for 1048576 (1 Meg). \
291 A first OPTION of -VALUE\n\
292 or +VALUE is treated like -n VALUE or -n +VALUE unless VALUE has one of\n\
293 the [bkm] suffix multipliers, in which case it is treated like -c VALUE\n\
297 Warning: a first option of +VALUE is obsolescent, and support\n\
298 for it will be withdrawn.\n\
302 With --follow (-f), tail defaults to following the file descriptor, which\n\
303 means that even if a tail'ed file is renamed, tail will continue to track\n\
307 This default behavior is not desirable when you really want to\n\
308 track the actual name of the file, not the file descriptor (e.g., log\n\
309 rotation). Use --follow=name in that case. That causes tail to track the\n\
310 named file by reopening it periodically to see if it has been removed and\n\
311 recreated by some other program.\n\
314 puts (_("\nReport bugs to <bug-textutils@gnu.org>."));
316 exit (status
== 0 ? EXIT_SUCCESS
: EXIT_FAILURE
);
320 valid_file_spec (struct File_spec
const *f
)
322 /* Exactly one of the following subexpressions must be true. */
323 return ((f
->fd
== -1) ^ (f
->errnum
== 0));
327 pretty_name (struct File_spec
const *f
)
329 return (STREQ (f
->name
, "-") ? "standard input" : f
->name
);
333 xwrite (int fd
, char *const buffer
, size_t n_bytes
)
335 assert (fd
== STDOUT_FILENO
);
336 if (n_bytes
> 0 && fwrite (buffer
, 1, n_bytes
, stdout
) == 0)
337 error (EXIT_FAILURE
, errno
, _("write error"));
341 close_fd (int fd
, const char *filename
)
343 if (fd
!= -1 && fd
!= STDIN_FILENO
&& close (fd
))
345 error (0, errno
, _("closing %s (fd=%d)"), filename
, fd
);
350 write_header (const char *pretty_filename
)
352 static int first_file
= 1;
354 printf ("%s==> %s <==\n", (first_file
? "" : "\n"), pretty_filename
);
358 /* Read and output N_BYTES of file PRETTY_FILENAME starting at the current
359 position in FD. If N_BYTES is COPY_TO_EOF, then copy until end of file.
360 Return the number of bytes read from the file. */
363 dump_remainder (const char *pretty_filename
, int fd
, off_t n_bytes
)
368 off_t n_remaining
= n_bytes
;
373 long n
= MIN (n_remaining
, (off_t
) BUFSIZ
);
374 bytes_read
= safe_read (fd
, buffer
, n
);
377 xwrite (STDOUT_FILENO
, buffer
, bytes_read
);
378 n_remaining
-= bytes_read
;
379 n_written
+= bytes_read
;
381 if (bytes_read
== -1)
382 error (EXIT_FAILURE
, errno
, "%s", pretty_filename
);
387 /* Call lseek with the specified arguments, where file descriptor FD
388 corresponds to the file, FILENAME.
389 Give a diagnostic and exit nonzero if lseek fails. */
392 xlseek (int fd
, off_t offset
, int whence
, char const *filename
)
394 off_t new_offset
= lseek (fd
, offset
, whence
);
395 char buf
[LONGEST_HUMAN_READABLE
+ 1];
402 sign
= offset
< 0 ? "-" : "";
406 s
= human_readable ((uintmax_t) offset
, buf
, 1, 1);
410 error (1, errno
, _("%s: cannot seek to offset %s%s"),
414 error (1, errno
, _("%s: cannot seek to relative offset %s%s"),
418 error (1, errno
, _("%s: cannot seek to end-relative offset %s%s"),
426 /* Print the last N_LINES lines from the end of file FD.
427 Go backward through the file, reading `BUFSIZ' bytes at a time (except
428 probably the first), until we hit the start of the file or have
429 read NUMBER newlines.
430 START_POS is the starting position of the read pointer for the file
431 associated with FD (may be nonzero).
432 FILE_LENGTH is the length of the file (one more than the offset of the
433 last byte of the file).
434 Return 0 if successful, 1 if an error occurred. */
437 file_lines (const char *pretty_filename
, int fd
, long int n_lines
,
438 off_t start_pos
, off_t file_length
)
442 off_t pos
= file_length
;
447 /* Set `bytes_read' to the size of the last, probably partial, buffer;
448 0 < `bytes_read' <= `BUFSIZ'. */
449 bytes_read
= (pos
- start_pos
) % BUFSIZ
;
452 /* Make `pos' a multiple of `BUFSIZ' (0 if the file is short), so that all
453 reads will be on block boundaries, which might increase efficiency. */
455 xlseek (fd
, pos
, SEEK_SET
, pretty_filename
);
456 bytes_read
= safe_read (fd
, buffer
, bytes_read
);
457 if (bytes_read
== -1)
459 error (0, errno
, "%s", pretty_filename
);
463 /* Count the incomplete line on files that don't end with a newline. */
464 if (bytes_read
&& buffer
[bytes_read
- 1] != '\n')
469 int i
; /* Index into `buffer' for scanning. */
470 /* Scan backward, counting the newlines in this bufferfull. */
471 for (i
= bytes_read
- 1; i
>= 0; i
--)
473 /* Have we counted the requested number of newlines yet? */
474 if (buffer
[i
] == '\n' && n_lines
-- == 0)
476 /* If this newline wasn't the last character in the buffer,
477 print the text after it. */
478 if (i
!= bytes_read
- 1)
479 xwrite (STDOUT_FILENO
, &buffer
[i
+ 1], bytes_read
- (i
+ 1));
480 dump_remainder (pretty_filename
, fd
,
481 file_length
- (pos
+ bytes_read
));
485 /* Not enough newlines in that bufferfull. */
486 if (pos
== start_pos
)
488 /* Not enough lines in the file; print the entire file. */
489 xlseek (fd
, start_pos
, SEEK_SET
, pretty_filename
);
490 dump_remainder (pretty_filename
, fd
, file_length
);
494 xlseek (fd
, pos
, SEEK_SET
, pretty_filename
);
496 while ((bytes_read
= safe_read (fd
, buffer
, BUFSIZ
)) > 0);
498 if (bytes_read
== -1)
500 error (0, errno
, "%s", pretty_filename
);
507 /* Print the last N_LINES lines from the end of the standard input,
508 open for reading as pipe FD.
509 Buffer the text as a linked list of LBUFFERs, adding them as needed.
510 Return 0 if successful, 1 if an error occured. */
513 pipe_lines (const char *pretty_filename
, int fd
, long int n_lines
)
519 struct linebuffer
*next
;
521 typedef struct linebuffer LBUFFER
;
522 LBUFFER
*first
, *last
, *tmp
;
523 int i
; /* Index into buffers. */
524 int total_lines
= 0; /* Total number of newlines in all buffers. */
526 int nbytes
; /* Size of most recent read */
528 first
= last
= (LBUFFER
*) xmalloc (sizeof (LBUFFER
));
529 first
->nbytes
= first
->nlines
= 0;
531 tmp
= (LBUFFER
*) xmalloc (sizeof (LBUFFER
));
533 /* Input is always read into a fresh buffer. */
534 while ((nbytes
= tmp
->nbytes
= safe_read (fd
, tmp
->buffer
, BUFSIZ
)) > 0)
539 /* Count the number of newlines just read. */
540 for (i
= 0; i
< tmp
->nbytes
; i
++)
541 if (tmp
->buffer
[i
] == '\n')
543 total_lines
+= tmp
->nlines
;
545 /* If there is enough room in the last buffer read, just append the new
546 one to it. This is because when reading from a pipe, `nbytes' can
547 often be very small. */
548 if (tmp
->nbytes
+ last
->nbytes
< BUFSIZ
)
550 memcpy (&last
->buffer
[last
->nbytes
], tmp
->buffer
, tmp
->nbytes
);
551 last
->nbytes
+= tmp
->nbytes
;
552 last
->nlines
+= tmp
->nlines
;
556 /* If there's not enough room, link the new buffer onto the end of
557 the list, then either free up the oldest buffer for the next
558 read if that would leave enough lines, or else malloc a new one.
559 Some compaction mechanism is possible but probably not
561 last
= last
->next
= tmp
;
562 if (total_lines
- first
->nlines
> n_lines
)
565 total_lines
-= first
->nlines
;
569 tmp
= (LBUFFER
*) xmalloc (sizeof (LBUFFER
));
577 error (0, errno
, "%s", pretty_filename
);
582 /* If the file is empty, then bail out. */
583 if (last
->nbytes
== 0)
586 /* This prevents a core dump when the pipe contains no newlines. */
590 /* Count the incomplete line on files that don't end with a newline. */
591 if (last
->buffer
[last
->nbytes
- 1] != '\n')
597 /* Run through the list, printing lines. First, skip over unneeded
599 for (tmp
= first
; total_lines
- tmp
->nlines
> n_lines
; tmp
= tmp
->next
)
600 total_lines
-= tmp
->nlines
;
602 /* Find the correct beginning, then print the rest of the file. */
603 if (total_lines
> n_lines
)
607 /* Skip `total_lines' - `n_lines' newlines. We made sure that
608 `total_lines' - `n_lines' <= `tmp->nlines'. */
610 for (i
= total_lines
- n_lines
; i
; --i
)
611 while (*cp
++ != '\n')
613 i
= cp
- tmp
->buffer
;
617 xwrite (STDOUT_FILENO
, &tmp
->buffer
[i
], tmp
->nbytes
- i
);
619 for (tmp
= tmp
->next
; tmp
; tmp
= tmp
->next
)
620 xwrite (STDOUT_FILENO
, tmp
->buffer
, tmp
->nbytes
);
626 free ((char *) first
);
632 /* Print the last N_BYTES characters from the end of pipe FD.
633 This is a stripped down version of pipe_lines.
634 Return 0 if successful, 1 if an error occurred. */
637 pipe_bytes (const char *pretty_filename
, int fd
, off_t n_bytes
)
643 struct charbuffer
*next
;
645 typedef struct charbuffer CBUFFER
;
646 CBUFFER
*first
, *last
, *tmp
;
647 int i
; /* Index into buffers. */
648 int total_bytes
= 0; /* Total characters in all buffers. */
651 first
= last
= (CBUFFER
*) xmalloc (sizeof (CBUFFER
));
654 tmp
= (CBUFFER
*) xmalloc (sizeof (CBUFFER
));
656 /* Input is always read into a fresh buffer. */
657 while ((tmp
->nbytes
= safe_read (fd
, tmp
->buffer
, BUFSIZ
)) > 0)
661 total_bytes
+= tmp
->nbytes
;
662 /* If there is enough room in the last buffer read, just append the new
663 one to it. This is because when reading from a pipe, `nbytes' can
664 often be very small. */
665 if (tmp
->nbytes
+ last
->nbytes
< BUFSIZ
)
667 memcpy (&last
->buffer
[last
->nbytes
], tmp
->buffer
, tmp
->nbytes
);
668 last
->nbytes
+= tmp
->nbytes
;
672 /* If there's not enough room, link the new buffer onto the end of
673 the list, then either free up the oldest buffer for the next
674 read if that would leave enough characters, or else malloc a new
675 one. Some compaction mechanism is possible but probably not
677 last
= last
->next
= tmp
;
678 if (total_bytes
- first
->nbytes
> n_bytes
)
681 total_bytes
-= first
->nbytes
;
686 tmp
= (CBUFFER
*) xmalloc (sizeof (CBUFFER
));
690 if (tmp
->nbytes
== -1)
692 error (0, errno
, "%s", pretty_filename
);
700 /* Run through the list, printing characters. First, skip over unneeded
702 for (tmp
= first
; total_bytes
- tmp
->nbytes
> n_bytes
; tmp
= tmp
->next
)
703 total_bytes
-= tmp
->nbytes
;
705 /* Find the correct beginning, then print the rest of the file.
706 We made sure that `total_bytes' - `n_bytes' <= `tmp->nbytes'. */
707 if (total_bytes
> n_bytes
)
708 i
= total_bytes
- n_bytes
;
711 xwrite (STDOUT_FILENO
, &tmp
->buffer
[i
], tmp
->nbytes
- i
);
713 for (tmp
= tmp
->next
; tmp
; tmp
= tmp
->next
)
714 xwrite (STDOUT_FILENO
, tmp
->buffer
, tmp
->nbytes
);
720 free ((char *) first
);
726 /* Skip N_BYTES characters from the start of pipe FD, and print
727 any extra characters that were read beyond that.
728 Return 1 on error, 0 if ok. */
731 start_bytes (const char *pretty_filename
, int fd
, off_t n_bytes
)
736 while (n_bytes
> 0 && (bytes_read
= safe_read (fd
, buffer
, BUFSIZ
)) > 0)
737 n_bytes
-= bytes_read
;
738 if (bytes_read
== -1)
740 error (0, errno
, "%s", pretty_filename
);
743 else if (n_bytes
< 0)
744 xwrite (STDOUT_FILENO
, &buffer
[bytes_read
+ n_bytes
], -n_bytes
);
748 /* Skip N_LINES lines at the start of file or pipe FD, and print
749 any extra characters that were read beyond that.
750 Return 1 on error, 0 if ok. */
753 start_lines (const char *pretty_filename
, int fd
, long int n_lines
)
757 int bytes_to_skip
= 0;
759 while (n_lines
&& (bytes_read
= safe_read (fd
, buffer
, BUFSIZ
)) > 0)
762 while (bytes_to_skip
< bytes_read
)
763 if (buffer
[bytes_to_skip
++] == '\n' && --n_lines
== 0)
766 if (bytes_read
== -1)
768 error (0, errno
, "%s", pretty_filename
);
771 else if (bytes_to_skip
< bytes_read
)
773 xwrite (STDOUT_FILENO
, &buffer
[bytes_to_skip
],
774 bytes_read
- bytes_to_skip
);
779 /* FIXME: describe */
782 recheck (struct File_spec
*f
)
784 /* open/fstat the file and announce if dev/ino have changed */
785 struct stat new_stats
;
788 int is_stdin
= (STREQ (f
->name
, "-"));
789 int was_tailable
= f
->tailable
;
790 int prev_errnum
= f
->errnum
;
793 assert (valid_file_spec (f
));
795 fd
= (is_stdin
? STDIN_FILENO
: open (f
->name
, O_RDONLY
));
797 /* If the open fails because the file doesn't exist,
798 then mark the file as not tailable. */
799 f
->tailable
= !(reopen_inaccessible_files
&& fd
== -1);
801 if (fd
== -1 || fstat (fd
, &new_stats
) < 0)
809 /* FIXME-maybe: detect the case in which the file first becomes
810 unreadable (perms), and later becomes readable again and can
811 be seen to be the same file (dev/ino). Otherwise, tail prints
812 the entire contents of the file when it becomes readable. */
813 error (0, f
->errnum
, _("`%s' has become inaccessible"),
818 /* say nothing... it's still not tailable */
821 else if (prev_errnum
!= errno
)
823 error (0, errno
, "%s", pretty_name (f
));
826 else if (!IS_TAILABLE_FILE_TYPE (new_stats
.st_mode
))
830 error (0, 0, _("`%s' has been replaced with an untailable file;\
831 giving up on this name"),
843 close_fd (fd
, pretty_name (f
));
844 close_fd (f
->fd
, pretty_name (f
));
847 else if (prev_errnum
&& prev_errnum
!= ENOENT
)
850 assert (f
->fd
== -1);
851 error (0, 0, _("`%s' has become accessible"), pretty_name (f
));
853 else if (f
->ino
!= new_stats
.st_ino
|| f
->dev
!= new_stats
.st_dev
)
859 _("`%s' has appeared; following end of new file"),
864 /* Close the old one. */
865 close_fd (f
->fd
, pretty_name (f
));
867 /* File has been replaced (e.g., via log rotation) --
870 _("`%s' has been replaced; following end of new file"),
878 /* This happens when one iteration finds the file missing,
879 then the preceding <dev,inode> pair is reused as the
880 file is recreated. */
885 close_fd (fd
, pretty_name (f
));
891 /* Record new file info in f. */
893 f
->size
= 0; /* Start at the beginning of the file... */
894 f
->dev
= new_stats
.st_dev
;
895 f
->ino
= new_stats
.st_ino
;
896 f
->n_unchanged_stats
= 0;
897 f
->n_consecutive_size_changes
= 0;
899 xlseek (f
->fd
, f
->size
, SEEK_SET
, pretty_name (f
));
903 /* FIXME: describe */
906 n_live_files (const struct File_spec
*f
, int n_files
)
909 unsigned int n_live
= 0;
911 for (i
= 0; i
< n_files
; i
++)
919 /* Tail NFILES files forever, or until killed.
920 The pertinent information for each file is stored in an entry of F.
921 Loop over each of them, doing an fstat to see if they have changed size,
922 and an occasional open/fstat to see if any dev/ino pair has changed.
923 If none of them have changed size in one iteration, sleep for a
924 while and try again. Continue until the user interrupts us. */
927 tail_forever (struct File_spec
*f
, int nfiles
)
930 int writer_is_dead
= 0;
940 for (i
= 0; i
< nfiles
; i
++)
953 if (fstat (f
[i
].fd
, &stats
) < 0)
957 error (0, errno
, "%s", pretty_name (&f
[i
]));
961 if (stats
.st_size
== f
[i
].size
)
963 f
[i
].n_consecutive_size_changes
= 0;
964 if (++f
[i
].n_unchanged_stats
> max_n_unchanged_stats_between_opens
965 && follow_mode
== Follow_name
)
968 f
[i
].n_unchanged_stats
= 0;
974 ++f
[i
].n_consecutive_size_changes
;
976 /* Ensure that a file that's unlinked or moved aside, yet always
977 growing will be recognized as having been renamed. */
978 if (follow_mode
== Follow_name
979 && (f
[i
].n_consecutive_size_changes
980 > max_n_consecutive_size_changes_between_opens
))
982 f
[i
].n_consecutive_size_changes
= 0;
987 /* This file has changed size. Print out what we can, and
988 then keep looping. */
993 f
[i
].n_unchanged_stats
= 0;
995 if (stats
.st_size
< f
[i
].size
)
997 error (0, 0, _("%s: file truncated"), pretty_name (&f
[i
]));
999 xlseek (f
[i
].fd
, (off_t
) stats
.st_size
, SEEK_SET
,
1000 pretty_name (&f
[i
]));
1001 f
[i
].size
= stats
.st_size
;
1008 write_header (pretty_name (&f
[i
]));
1011 f
[i
].size
+= dump_remainder (pretty_name (&f
[i
]), f
[i
].fd
,
1015 if (n_live_files (f
, nfiles
) == 0 && ! reopen_inaccessible_files
)
1017 error (0, 0, _("no files remaining"));
1021 /* If none of the files changed size, sleep. */
1026 sleep (sleep_interval
);
1028 /* Once the writer is dead, read the files once more to
1029 avoid a race condition. */
1030 writer_is_dead
= (pid
!= 0
1031 && kill (pid
, 0) != 0
1032 /* Handle the case in which you cannot send a
1033 signal to the writer, so kill fails and sets
1040 /* Output the last N_BYTES bytes of file FILENAME open for reading in FD.
1041 Return 0 if successful, 1 if an error occurred. */
1044 tail_bytes (const char *pretty_filename
, int fd
, off_t n_bytes
)
1048 /* We need binary input, since `tail' relies on `lseek' and byte counts,
1049 while binary output will preserve the style (Unix/DOS) of text file. */
1050 SET_BINARY2 (fd
, STDOUT_FILENO
);
1052 if (fstat (fd
, &stats
))
1054 error (0, errno
, "%s", pretty_filename
);
1060 if (S_ISREG (stats
.st_mode
))
1062 xlseek (fd
, n_bytes
, SEEK_CUR
, pretty_filename
);
1064 else if (start_bytes (pretty_filename
, fd
, n_bytes
))
1068 dump_remainder (pretty_filename
, fd
, COPY_TO_EOF
);
1072 if (S_ISREG (stats
.st_mode
))
1074 off_t current_pos
, end_pos
;
1075 size_t bytes_remaining
;
1077 if ((current_pos
= lseek (fd
, (off_t
) 0, SEEK_CUR
)) != -1
1078 && (end_pos
= lseek (fd
, (off_t
) 0, SEEK_END
)) != -1)
1081 /* Be careful here. The current position may actually be
1082 beyond the end of the file. */
1083 bytes_remaining
= (diff
= end_pos
- current_pos
) < 0 ? 0 : diff
;
1087 error (0, errno
, "%s", pretty_filename
);
1091 if (bytes_remaining
<= n_bytes
)
1093 /* From the current position to end of file, there are no
1094 more bytes than have been requested. So reposition the
1095 file pointer to the incoming current position and print
1096 everything after that. */
1097 xlseek (fd
, current_pos
, SEEK_SET
, pretty_filename
);
1101 /* There are more bytes remaining than were requested.
1103 xlseek (fd
, -n_bytes
, SEEK_END
, pretty_filename
);
1105 dump_remainder (pretty_filename
, fd
, n_bytes
);
1108 return pipe_bytes (pretty_filename
, fd
, n_bytes
);
1113 /* Output the last N_LINES lines of file FILENAME open for reading in FD.
1114 Return 0 if successful, 1 if an error occurred. */
1117 tail_lines (const char *pretty_filename
, int fd
, long int n_lines
)
1121 /* We need binary input, since `tail' relies on `lseek' and byte counts,
1122 while binary output will preserve the style (Unix/DOS) of text file. */
1123 SET_BINARY2 (fd
, STDOUT_FILENO
);
1125 if (fstat (fd
, &stats
))
1127 error (0, errno
, "%s", pretty_filename
);
1133 if (start_lines (pretty_filename
, fd
, n_lines
))
1135 dump_remainder (pretty_filename
, fd
, COPY_TO_EOF
);
1142 /* Use file_lines only if FD refers to a regular file for
1143 which lseek (... SEEK_END) works. */
1144 if (S_ISREG (stats
.st_mode
)
1145 && (start_pos
= lseek (fd
, (off_t
) 0, SEEK_CUR
)) != -1
1146 && start_pos
< (length
= lseek (fd
, (off_t
) 0, SEEK_END
)))
1148 if (length
!= 0 && file_lines (pretty_filename
, fd
, n_lines
,
1153 return pipe_lines (pretty_filename
, fd
, n_lines
);
1158 /* Display the last N_UNITS units of file FILENAME, open for reading
1160 Return 0 if successful, 1 if an error occurred. */
1163 tail (const char *pretty_filename
, int fd
, off_t n_units
)
1166 return tail_lines (pretty_filename
, fd
, (long) n_units
);
1168 return tail_bytes (pretty_filename
, fd
, n_units
);
1171 /* Display the last N_UNITS units of the file described by F.
1172 Return 0 if successful, 1 if an error occurred. */
1175 tail_file (struct File_spec
*f
, off_t n_units
)
1179 int is_stdin
= (STREQ (f
->name
, "-"));
1183 have_read_stdin
= 1;
1188 fd
= open (f
->name
, O_RDONLY
);
1191 f
->tailable
= !(reopen_inaccessible_files
&& fd
== -1);
1203 error (0, errno
, "%s", pretty_name (f
));
1209 write_header (pretty_name (f
));
1210 errors
= tail (pretty_name (f
), fd
, n_units
);
1216 if (fstat (fd
, &stats
) < 0)
1220 error (0, errno
, "%s", pretty_name (f
));
1222 else if (!IS_TAILABLE_FILE_TYPE (stats
.st_mode
))
1224 error (0, 0, _("%s: cannot follow end of this type of file;\
1225 giving up on this name"),
1234 close_fd (fd
, pretty_name (f
));
1240 f
->size
= stats
.st_size
;
1241 f
->dev
= stats
.st_dev
;
1242 f
->ino
= stats
.st_ino
;
1243 f
->n_unchanged_stats
= 0;
1244 f
->n_consecutive_size_changes
= 0;
1250 if (!is_stdin
&& close (fd
))
1252 error (0, errno
, "%s", pretty_name (f
));
1261 /* If the command line arguments are of the obsolescent form and the
1262 option string is well-formed, set *FAIL to zero, set *N_UNITS, the
1263 globals COUNT_LINES, FOREVER, and FROM_START, and return non-zero.
1264 Otherwise, if the command line arguments appear to be of the
1265 obsolescent form but the option string is malformed, set *FAIL to
1266 non-zero, don't modify any other parameter or global variable, and
1267 return non-zero. Otherwise, return zero and don't modify any parameter
1268 or global variable. */
1271 parse_obsolescent_option (int argc
, const char *const *argv
,
1272 off_t
*n_units
, int *fail
)
1274 const char *p
= argv
[1];
1275 const char *n_string
= NULL
;
1276 const char *n_string_end
;
1282 /* With the obsolescent form, there is one option string and
1283 (technically) at most one file argument. But we allow two or more
1288 /* If P starts with `+', `-N' (where N is a digit), or `-l',
1289 then it is obsolescent. Return zero otherwise. */
1290 if ( ! (p
[0] == '+' || (p
[0] == '-' && (p
[1] == 'l' || ISDIGIT (p
[1])))) )
1308 while (ISDIGIT (*p
));
1313 if (*p
== 'c' || *p
== 'b')
1332 /* If (argv[1] begins with a `+' or if it begins with `-' followed
1333 by a digit), but has an invalid suffix character, give a diagnostic
1334 and indicate to caller that this *is* of the obsolescent form,
1335 but that it's an invalid option. */
1336 if (t_from_start
|| n_string
)
1339 _("%c: invalid suffix character in obsolescent option" ), *p
);
1344 /* Otherwise, it might be a valid non-obsolescent option like -n. */
1349 if (n_string
== NULL
)
1350 *n_units
= DEFAULT_N_LINES
;
1354 unsigned long int tmp_ulong
;
1357 s_err
= xstrtoul (n_string
, &end
, 10, &tmp_ulong
,
1358 *n_string_end
== 'b' ? "b" : NULL
);
1359 if (s_err
== LONGINT_OK
&& tmp_ulong
<= OFF_T_MAX
)
1360 *n_units
= (off_t
) tmp_ulong
;
1363 /* Extract a NUL-terminated string for the error message. */
1364 size_t len
= n_string_end
- n_string
;
1365 char *n_string_tmp
= xmalloc (len
+ 1);
1367 strncpy (n_string_tmp
, n_string
, len
);
1368 n_string_tmp
[len
] = '\0';
1371 _("%s: %s is so large that it is not representable"),
1372 n_string_tmp
, (t_count_lines
1373 ? _("number of lines")
1374 : _("number of bytes")));
1375 free (n_string_tmp
);
1384 int posix_pedantic
= (getenv ("POSIXLY_CORRECT") != NULL
);
1386 /* When POSIXLY_CORRECT is set, enforce the `at most one
1387 file argument' requirement. */
1391 too many arguments; When using tail's obsolescent option syntax (%s)\n\
1392 there may be no more than one file argument. Use the equivalent -n or -c\n\
1393 option instead."), argv
[1]);
1398 #if DISABLED /* FIXME: enable or remove this warning. */
1400 Warning: it is not portable to use two or more file arguments with\n\
1401 tail's obsolescent option syntax (%s). Use the equivalent -n or -c\n\
1402 option instead."), argv
[1]);
1407 from_start
= t_from_start
;
1408 count_lines
= t_count_lines
;
1409 forever
= t_forever
;
1416 parse_options (int argc
, char **argv
,
1417 off_t
*n_units
, enum header_mode
*header_mode
)
1422 forever
= from_start
= print_headers
= 0;
1424 while ((c
= getopt_long (argc
, argv
, "c:n:fFqs:v", long_options
, NULL
))
1434 follow_mode
= Follow_name
;
1435 reopen_inaccessible_files
= 1;
1440 count_lines
= (c
== 'n');
1443 else if (*optarg
== '-')
1449 s_err
= xstrtoumax (optarg
, NULL
, 10, &n
, "bkm");
1450 if (s_err
== LONGINT_INVALID
)
1452 error (EXIT_FAILURE
, 0, "%s: %s", optarg
,
1454 ? _("invalid number of lines")
1455 : _("invalid number of bytes")));
1458 if (s_err
!= LONGINT_OK
)
1459 error (EXIT_FAILURE
, 0,
1460 _("%s: is so large that it is not representable"), optarg
);
1463 error (EXIT_FAILURE
, 0,
1464 _("%s is larger than the maximum file size on this system"),
1466 *n_units
= (off_t
) n
;
1471 case LONG_FOLLOW_OPTION
:
1474 follow_mode
= DEFAULT_FOLLOW_MODE
;
1476 follow_mode
= XARGMATCH ("--follow", optarg
,
1477 follow_mode_string
, follow_mode_map
);
1481 reopen_inaccessible_files
= 1;
1484 case MAX_UNCHANGED_STATS_OPTION
:
1485 /* --max-unchanged-stats=N */
1486 if (xstrtoul (optarg
, NULL
, 10,
1487 &max_n_unchanged_stats_between_opens
, "") != LONGINT_OK
)
1489 error (EXIT_FAILURE
, 0,
1490 _("%s: invalid maximum number of unchanged stats between opens"),
1495 case MAX_CONSECUTIVE_SIZE_CHANGES_OPTION
:
1496 /* --max-consecutive-size-changes=N */
1497 if (xstrtoul (optarg
, NULL
, 10,
1498 &max_n_consecutive_size_changes_between_opens
, "")
1501 error (EXIT_FAILURE
, 0,
1502 _("%s: invalid maximum number of consecutive size changes"),
1510 unsigned long int tmp_ulong
;
1511 s_err
= xstrtoul (optarg
, NULL
, 10, &tmp_ulong
, "");
1512 if (s_err
!= LONGINT_OK
|| tmp_ulong
> PID_T_MAX
)
1514 error (EXIT_FAILURE
, 0, _("%s: invalid PID"), optarg
);
1521 *header_mode
= never
;
1527 unsigned long int tmp_ulong
;
1528 s_err
= xstrtoul (optarg
, NULL
, 10, &tmp_ulong
, "");
1529 if (s_err
!= LONGINT_OK
|| tmp_ulong
> UINT_MAX
)
1531 error (EXIT_FAILURE
, 0,
1532 _("%s: invalid number of seconds"), optarg
);
1534 sleep_interval
= tmp_ulong
;
1539 *header_mode
= always
;
1542 case_GETOPT_HELP_CHAR
;
1544 case_GETOPT_VERSION_CHAR (PROGRAM_NAME
, AUTHORS
);
1551 if (reopen_inaccessible_files
&& follow_mode
!= Follow_name
)
1552 error (0, 0, _("warning: --retry is useful only when following by name"));
1554 if (pid
&& !forever
)
1556 _("warning: PID ignored; --pid=PID is useful only when following"));
1557 else if (pid
&& kill (pid
, 0) != 0 && errno
== ENOSYS
)
1559 error (0, 0, _("warning: --pid=PID is not supported on this system"));
1565 main (int argc
, char **argv
)
1567 enum header_mode header_mode
= multiple_files
;
1568 int exit_status
= 0;
1569 /* If from_start, the number of items to skip before printing; otherwise,
1570 the number of items at the end of the file to print. Although the type
1571 is signed, the value is never negative. */
1572 off_t n_units
= DEFAULT_N_LINES
;
1575 struct File_spec
*F
;
1578 program_name
= argv
[0];
1579 setlocale (LC_ALL
, "");
1580 bindtextdomain (PACKAGE
, LOCALEDIR
);
1581 textdomain (PACKAGE
);
1583 atexit (close_stdout
);
1585 have_read_stdin
= 0;
1588 int found_obsolescent
;
1590 found_obsolescent
= parse_obsolescent_option (argc
,
1591 (const char *const *) argv
,
1593 if (found_obsolescent
)
1596 exit (EXIT_FAILURE
);
1601 parse_options (argc
, argv
, &n_units
, &header_mode
);
1605 /* To start printing with item N_UNITS from the start of the file, skip
1606 N_UNITS - 1 items. `tail +0' is actually meaningless, but for Unix
1607 compatibility it's treated the same as `tail +1'. */
1614 n_files
= argc
- optind
;
1615 file
= argv
+ optind
;
1619 static char *dummy_stdin
= "-";
1621 file
= &dummy_stdin
;
1624 F
= (struct File_spec
*) xmalloc (n_files
* sizeof (F
[0]));
1625 for (i
= 0; i
< n_files
; i
++)
1626 F
[i
].name
= file
[i
];
1628 if (header_mode
== always
1629 || (header_mode
== multiple_files
&& n_files
> 1))
1632 for (i
= 0; i
< n_files
; i
++)
1633 exit_status
|= tail_file (&F
[i
], n_units
);
1637 /* This fflush appears to be required only on Solaris2.7. */
1638 if (fflush (stdout
) < 0)
1639 error (EXIT_FAILURE
, errno
, _("write error"));
1641 SETVBUF (stdout
, NULL
, _IONBF
, 0);
1642 tail_forever (F
, n_files
);
1645 if (have_read_stdin
&& close (0) < 0)
1646 error (EXIT_FAILURE
, errno
, "-");
1647 exit (exit_status
== 0 ? EXIT_SUCCESS
: EXIT_FAILURE
);