2000-02-09 01:28:47 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-12-10 10:57:16 +05:30
|
|
|
/*
|
2003-03-19 14:43:01 +05:30
|
|
|
* tee implementation for busybox
|
1999-12-10 10:57:16 +05:30
|
|
|
*
|
2003-03-19 14:43:01 +05:30
|
|
|
* Copyright (C) 2003 Manuel Novoa III <mjn3@codepoet.org>
|
1999-12-10 10:57:16 +05:30
|
|
|
*
|
2010-08-16 23:44:46 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
1999-12-10 10:57:16 +05:30
|
|
|
*/
|
2016-11-23 19:16:56 +05:30
|
|
|
//config:config TEE
|
2018-12-28 07:50:17 +05:30
|
|
|
//config: bool "tee (4.2 kb)"
|
2016-11-23 19:16:56 +05:30
|
|
|
//config: default y
|
|
|
|
//config: help
|
2017-07-21 13:20:55 +05:30
|
|
|
//config: tee is used to read from standard input and write
|
|
|
|
//config: to standard output and files.
|
2016-11-23 19:16:56 +05:30
|
|
|
//config:
|
|
|
|
//config:config FEATURE_TEE_USE_BLOCK_IO
|
|
|
|
//config: bool "Enable block I/O (larger/faster) instead of byte I/O"
|
|
|
|
//config: default y
|
|
|
|
//config: depends on TEE
|
|
|
|
//config: help
|
2017-07-21 13:20:55 +05:30
|
|
|
//config: Enable this option for a faster tee, at expense of size.
|
2016-11-23 19:16:56 +05:30
|
|
|
|
|
|
|
//applet:IF_TEE(APPLET(tee, BB_DIR_USR_BIN, BB_SUID_DROP))
|
|
|
|
|
|
|
|
//kbuild:lib-$(CONFIG_TEE) += tee.o
|
1999-12-10 10:57:16 +05:30
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
/* BB_AUDIT SUSv3 compliant */
|
|
|
|
/* http://www.opengroup.org/onlinepubs/007904975/utilities/tee.html */
|
|
|
|
|
2011-03-31 18:13:25 +05:30
|
|
|
//usage:#define tee_trivial_usage
|
|
|
|
//usage: "[-ai] [FILE]..."
|
|
|
|
//usage:#define tee_full_usage "\n\n"
|
|
|
|
//usage: "Copy stdin to each FILE, and also to stdout\n"
|
|
|
|
//usage: "\n -a Append to the given FILEs, don't overwrite"
|
|
|
|
//usage: "\n -i Ignore interrupt signals (SIGINT)"
|
|
|
|
//usage:
|
|
|
|
//usage:#define tee_example_usage
|
|
|
|
//usage: "$ echo \"Hello\" | tee /tmp/foo\n"
|
|
|
|
//usage: "$ cat /tmp/foo\n"
|
|
|
|
//usage: "Hello\n"
|
|
|
|
|
2019-10-07 17:55:45 +05:30
|
|
|
// Bare "tee" with no below options does not install SIGPIPE handler - just dies on it.
|
|
|
|
// TODO:
|
|
|
|
// --output-error[=MODE]
|
|
|
|
// 'warn' diagnose errors writing to any output
|
|
|
|
// 'warn-nopipe' diagnose errors writing to any output not a pipe
|
|
|
|
// 'exit' exit on error writing to any output
|
|
|
|
// 'exit-nopipe' exit on error writing to any output not a pipe
|
|
|
|
// ^^^ all of these should set SIGPIPE to SIG_IGN.
|
|
|
|
// Because "exit" mode should print error message and exit1(1) - not die on SIGPIPE.
|
|
|
|
// "exit-nopipe" does not exit on EPIPE and does not set exitcode to 1 too.
|
|
|
|
// -p diagnose errors writing to non pipes
|
|
|
|
// ^^^^ this should set SIGPIPE to SIG_IGN. EPIPE is ignored (same as "warn-nopipe")
|
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2016-04-21 19:56:30 +05:30
|
|
|
#include "common_bufsiz.h"
|
1999-12-10 13:11:03 +05:30
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int tee_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2003-03-19 14:43:01 +05:30
|
|
|
int tee_main(int argc, char **argv)
|
1999-12-10 10:57:16 +05:30
|
|
|
{
|
2003-03-19 14:43:01 +05:30
|
|
|
const char *mode = "w\0a";
|
2000-08-28 09:23:27 +05:30
|
|
|
FILE **files;
|
2006-11-26 05:20:28 +05:30
|
|
|
FILE **fp;
|
|
|
|
char **names;
|
|
|
|
char **np;
|
2007-01-21 03:00:49 +05:30
|
|
|
char retval;
|
2007-09-27 15:50:47 +05:30
|
|
|
//TODO: make unconditional
|
2006-11-26 05:20:28 +05:30
|
|
|
#if ENABLE_FEATURE_TEE_USE_BLOCK_IO
|
2004-05-26 20:51:19 +05:30
|
|
|
ssize_t c;
|
2016-04-21 22:08:51 +05:30
|
|
|
# define buf bb_common_bufsiz1
|
|
|
|
setup_common_bufsiz();
|
2003-03-19 14:43:01 +05:30
|
|
|
#else
|
|
|
|
int c;
|
|
|
|
#endif
|
2007-08-18 21:02:12 +05:30
|
|
|
retval = getopt32(argv, "ia"); /* 'a' must be 2nd */
|
2006-11-26 05:20:28 +05:30
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
2003-03-19 14:43:01 +05:30
|
|
|
|
2007-01-21 03:00:49 +05:30
|
|
|
mode += (retval & 2); /* Since 'a' is the 2nd option... */
|
2003-03-19 14:43:01 +05:30
|
|
|
|
2007-01-21 03:00:49 +05:30
|
|
|
if (retval & 1) {
|
2019-10-07 17:55:45 +05:30
|
|
|
signal(SIGINT, SIG_IGN);
|
2003-03-19 14:43:01 +05:30
|
|
|
}
|
2007-01-21 03:00:49 +05:30
|
|
|
retval = EXIT_SUCCESS;
|
2019-10-07 17:55:45 +05:30
|
|
|
/* if (opt_p || opt_output_error)
|
|
|
|
signal(SIGPIPE, SIG_IGN);
|
|
|
|
*/
|
2000-08-28 09:23:27 +05:30
|
|
|
|
2010-10-17 16:15:24 +05:30
|
|
|
/* Allocate an array of FILE *'s, with one extra for a sentinel. */
|
2006-11-26 05:20:28 +05:30
|
|
|
fp = files = xzalloc(sizeof(FILE *) * (argc + 2));
|
|
|
|
np = names = argv - 1;
|
2003-03-19 14:43:01 +05:30
|
|
|
|
2006-11-26 05:20:28 +05:30
|
|
|
files[0] = stdout;
|
|
|
|
goto GOT_NEW_FILE;
|
2019-10-07 17:55:45 +05:30
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
do {
|
2008-07-15 10:40:15 +05:30
|
|
|
*fp = stdout;
|
|
|
|
if (NOT_LONE_DASH(*argv)) {
|
|
|
|
*fp = fopen_or_warn(*argv, mode);
|
|
|
|
if (*fp == NULL) {
|
|
|
|
retval = EXIT_FAILURE;
|
2008-07-16 13:04:00 +05:30
|
|
|
argv++;
|
2008-07-15 10:40:15 +05:30
|
|
|
continue;
|
|
|
|
}
|
2003-03-19 14:43:01 +05:30
|
|
|
}
|
2006-11-26 05:20:28 +05:30
|
|
|
*np = *argv++;
|
|
|
|
GOT_NEW_FILE:
|
2008-07-16 13:04:00 +05:30
|
|
|
setbuf(*fp, NULL); /* tee must not buffer output. */
|
|
|
|
fp++;
|
2006-11-26 05:20:28 +05:30
|
|
|
np++;
|
|
|
|
} while (*argv);
|
|
|
|
/* names[0] will be filled later */
|
|
|
|
|
|
|
|
#if ENABLE_FEATURE_TEE_USE_BLOCK_IO
|
2016-04-21 22:08:51 +05:30
|
|
|
while ((c = safe_read(STDIN_FILENO, buf, COMMON_BUFSIZE)) > 0) {
|
2006-11-26 05:20:28 +05:30
|
|
|
fp = files;
|
|
|
|
do
|
2010-09-08 12:08:28 +05:30
|
|
|
fwrite(buf, 1, c, *fp);
|
2019-10-07 17:55:45 +05:30
|
|
|
/* if (opt_p && fwrite() != c && !EPIPE) bb_error_msg("..."); */
|
2010-09-08 12:08:28 +05:30
|
|
|
while (*++fp);
|
1999-12-10 10:57:16 +05:30
|
|
|
}
|
2006-11-26 05:20:28 +05:30
|
|
|
if (c < 0) { /* Make sure read errors are signaled. */
|
2004-05-26 20:51:19 +05:30
|
|
|
retval = EXIT_FAILURE;
|
|
|
|
}
|
2003-03-19 14:43:01 +05:30
|
|
|
#else
|
2003-10-22 15:48:24 +05:30
|
|
|
setvbuf(stdout, NULL, _IONBF, 0);
|
2003-03-19 14:43:01 +05:30
|
|
|
while ((c = getchar()) != EOF) {
|
2006-11-26 05:20:28 +05:30
|
|
|
fp = files;
|
|
|
|
do
|
2010-09-08 12:08:28 +05:30
|
|
|
putc(c, *fp);
|
2019-10-07 17:55:45 +05:30
|
|
|
/* if (opt_p && putc() == EOF && !EPIPE) bb_error_msg("..."); */
|
2010-09-08 12:08:28 +05:30
|
|
|
while (*++fp);
|
1999-12-10 13:55:07 +05:30
|
|
|
}
|
2003-03-19 14:43:01 +05:30
|
|
|
#endif
|
1999-12-10 10:57:16 +05:30
|
|
|
|
2004-03-15 13:59:22 +05:30
|
|
|
/* Now we need to check for i/o errors on stdin and the various
|
2003-03-19 14:43:01 +05:30
|
|
|
* output files. Since we know that the first entry in the output
|
|
|
|
* file table is stdout, we can save one "if ferror" test by
|
|
|
|
* setting the first entry to stdin and checking stdout error
|
2006-10-27 04:51:47 +05:30
|
|
|
* status with fflush_stdout_and_exit()... although fflush()ing
|
2003-03-19 14:43:01 +05:30
|
|
|
* is unnecessary here. */
|
2006-11-26 05:20:28 +05:30
|
|
|
np = names;
|
|
|
|
fp = files;
|
|
|
|
names[0] = (char *) bb_msg_standard_input;
|
|
|
|
files[0] = stdin;
|
|
|
|
do { /* Now check for input and output errors. */
|
2003-03-19 14:43:01 +05:30
|
|
|
/* Checking ferror should be sufficient, but we may want to fclose.
|
|
|
|
* If we do, remember not to close stdin! */
|
2006-11-26 05:20:28 +05:30
|
|
|
die_if_ferror(*fp++, *np++);
|
|
|
|
} while (*fp);
|
1999-12-10 10:57:16 +05:30
|
|
|
|
2006-10-27 04:51:47 +05:30
|
|
|
fflush_stdout_and_exit(retval);
|
2003-03-19 14:43:01 +05:30
|
|
|
}
|