blob: e67296d43700a585046dc6518459284ccc04fe28 [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
John Beppu059f1521999-12-10 05:27:16 +00002/*
Manuel Novoa III cad53642003-03-19 09:13:01 +00003 * tee implementation for busybox
John Beppu059f1521999-12-10 05:27:16 +00004 *
Manuel Novoa III cad53642003-03-19 09:13:01 +00005 * Copyright (C) 2003 Manuel Novoa III <mjn3@codepoet.org>
John Beppu059f1521999-12-10 05:27:16 +00006 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02007 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
John Beppu059f1521999-12-10 05:27:16 +00008 */
Denys Vlasenkoaf3f4202016-11-23 14:46:56 +01009//config:config TEE
Denys Vlasenkob097a842018-12-28 03:20:17 +010010//config: bool "tee (4.2 kb)"
Denys Vlasenkoaf3f4202016-11-23 14:46:56 +010011//config: default y
12//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020013//config: tee is used to read from standard input and write
14//config: to standard output and files.
Denys Vlasenkoaf3f4202016-11-23 14:46:56 +010015//config:
16//config:config FEATURE_TEE_USE_BLOCK_IO
17//config: bool "Enable block I/O (larger/faster) instead of byte I/O"
18//config: default y
19//config: depends on TEE
20//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020021//config: Enable this option for a faster tee, at expense of size.
Denys Vlasenkoaf3f4202016-11-23 14:46:56 +010022
23//applet:IF_TEE(APPLET(tee, BB_DIR_USR_BIN, BB_SUID_DROP))
24
25//kbuild:lib-$(CONFIG_TEE) += tee.o
John Beppu059f1521999-12-10 05:27:16 +000026
Manuel Novoa III cad53642003-03-19 09:13:01 +000027/* BB_AUDIT SUSv3 compliant */
28/* http://www.opengroup.org/onlinepubs/007904975/utilities/tee.html */
29
Pere Orga34425382011-03-31 14:43:25 +020030//usage:#define tee_trivial_usage
31//usage: "[-ai] [FILE]..."
32//usage:#define tee_full_usage "\n\n"
33//usage: "Copy stdin to each FILE, and also to stdout\n"
Pere Orga34425382011-03-31 14:43:25 +020034//usage: "\n -a Append to the given FILEs, don't overwrite"
35//usage: "\n -i Ignore interrupt signals (SIGINT)"
36//usage:
37//usage:#define tee_example_usage
38//usage: "$ echo \"Hello\" | tee /tmp/foo\n"
39//usage: "$ cat /tmp/foo\n"
40//usage: "Hello\n"
41
Denys Vlasenko427c12c2019-10-07 14:25:45 +020042// Bare "tee" with no below options does not install SIGPIPE handler - just dies on it.
43// TODO:
44// --output-error[=MODE]
45// 'warn' diagnose errors writing to any output
46// 'warn-nopipe' diagnose errors writing to any output not a pipe
47// 'exit' exit on error writing to any output
48// 'exit-nopipe' exit on error writing to any output not a pipe
49// ^^^ all of these should set SIGPIPE to SIG_IGN.
50// Because "exit" mode should print error message and exit1(1) - not die on SIGPIPE.
51// "exit-nopipe" does not exit on EPIPE and does not set exitcode to 1 too.
52// -p diagnose errors writing to non pipes
53// ^^^^ this should set SIGPIPE to SIG_IGN. EPIPE is ignored (same as "warn-nopipe")
54
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000055#include "libbb.h"
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +020056#include "common_bufsiz.h"
John Beppua3e0d791999-12-10 07:41:03 +000057
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000058int tee_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Manuel Novoa III cad53642003-03-19 09:13:01 +000059int tee_main(int argc, char **argv)
John Beppu059f1521999-12-10 05:27:16 +000060{
Manuel Novoa III cad53642003-03-19 09:13:01 +000061 const char *mode = "w\0a";
Matt Kraai16384882000-08-28 03:53:27 +000062 FILE **files;
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +000063 FILE **fp;
64 char **names;
65 char **np;
Bernhard Reutner-Fischerb31c2522007-01-20 21:30:49 +000066 char retval;
Denis Vlasenko4daad902007-09-27 10:20:47 +000067//TODO: make unconditional
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +000068#if ENABLE_FEATURE_TEE_USE_BLOCK_IO
Manuel Novoa III d7097432004-05-26 15:21:19 +000069 ssize_t c;
Denys Vlasenko9de2e5a2016-04-21 18:38:51 +020070# define buf bb_common_bufsiz1
71 setup_common_bufsiz();
Manuel Novoa III cad53642003-03-19 09:13:01 +000072#else
73 int c;
74#endif
Denis Vlasenkofe7cd642007-08-18 15:32:12 +000075 retval = getopt32(argv, "ia"); /* 'a' must be 2nd */
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +000076 argc -= optind;
77 argv += optind;
Manuel Novoa III cad53642003-03-19 09:13:01 +000078
Bernhard Reutner-Fischerb31c2522007-01-20 21:30:49 +000079 mode += (retval & 2); /* Since 'a' is the 2nd option... */
Manuel Novoa III cad53642003-03-19 09:13:01 +000080
Bernhard Reutner-Fischerb31c2522007-01-20 21:30:49 +000081 if (retval & 1) {
Denys Vlasenko427c12c2019-10-07 14:25:45 +020082 signal(SIGINT, SIG_IGN);
Manuel Novoa III cad53642003-03-19 09:13:01 +000083 }
Bernhard Reutner-Fischerb31c2522007-01-20 21:30:49 +000084 retval = EXIT_SUCCESS;
Denys Vlasenko427c12c2019-10-07 14:25:45 +020085 /* if (opt_p || opt_output_error)
86 signal(SIGPIPE, SIG_IGN);
87 */
Manuel Novoa III cad53642003-03-19 09:13:01 +000088
Denys Vlasenkoea694162010-10-17 12:45:24 +020089 /* Allocate an array of FILE *'s, with one extra for a sentinel. */
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +000090 fp = files = xzalloc(sizeof(FILE *) * (argc + 2));
91 np = names = argv - 1;
Manuel Novoa III cad53642003-03-19 09:13:01 +000092
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +000093 files[0] = stdout;
94 goto GOT_NEW_FILE;
Denys Vlasenko427c12c2019-10-07 14:25:45 +020095
Manuel Novoa III cad53642003-03-19 09:13:01 +000096 do {
Denis Vlasenko4b8171c2008-07-15 05:10:15 +000097 *fp = stdout;
98 if (NOT_LONE_DASH(*argv)) {
99 *fp = fopen_or_warn(*argv, mode);
100 if (*fp == NULL) {
101 retval = EXIT_FAILURE;
Denis Vlasenko8ddb6412008-07-16 07:34:00 +0000102 argv++;
Denis Vlasenko4b8171c2008-07-15 05:10:15 +0000103 continue;
104 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000105 }
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +0000106 *np = *argv++;
107 GOT_NEW_FILE:
Denis Vlasenko8ddb6412008-07-16 07:34:00 +0000108 setbuf(*fp, NULL); /* tee must not buffer output. */
109 fp++;
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +0000110 np++;
111 } while (*argv);
112 /* names[0] will be filled later */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000113
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +0000114#if ENABLE_FEATURE_TEE_USE_BLOCK_IO
Denys Vlasenko9de2e5a2016-04-21 18:38:51 +0200115 while ((c = safe_read(STDIN_FILENO, buf, COMMON_BUFSIZE)) > 0) {
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +0000116 fp = files;
117 do
Dan Fandrich77d48722010-09-07 23:38:28 -0700118 fwrite(buf, 1, c, *fp);
Denys Vlasenko427c12c2019-10-07 14:25:45 +0200119 /* if (opt_p && fwrite() != c && !EPIPE) bb_error_msg("..."); */
Dan Fandrich77d48722010-09-07 23:38:28 -0700120 while (*++fp);
John Beppu059f1521999-12-10 05:27:16 +0000121 }
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +0000122 if (c < 0) { /* Make sure read errors are signaled. */
Manuel Novoa III d7097432004-05-26 15:21:19 +0000123 retval = EXIT_FAILURE;
124 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000125#else
Eric Andersen637d2262003-10-22 10:18:24 +0000126 setvbuf(stdout, NULL, _IONBF, 0);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000127 while ((c = getchar()) != EOF) {
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +0000128 fp = files;
129 do
Dan Fandrich77d48722010-09-07 23:38:28 -0700130 putc(c, *fp);
Denys Vlasenko427c12c2019-10-07 14:25:45 +0200131 /* if (opt_p && putc() == EOF && !EPIPE) bb_error_msg("..."); */
Dan Fandrich77d48722010-09-07 23:38:28 -0700132 while (*++fp);
Eric Andersen2cb55071999-12-10 08:25:07 +0000133 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000134#endif
John Beppu059f1521999-12-10 05:27:16 +0000135
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000136 /* Now we need to check for i/o errors on stdin and the various
Manuel Novoa III cad53642003-03-19 09:13:01 +0000137 * output files. Since we know that the first entry in the output
138 * file table is stdout, we can save one "if ferror" test by
139 * setting the first entry to stdin and checking stdout error
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000140 * status with fflush_stdout_and_exit()... although fflush()ing
Manuel Novoa III cad53642003-03-19 09:13:01 +0000141 * is unnecessary here. */
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +0000142 np = names;
143 fp = files;
144 names[0] = (char *) bb_msg_standard_input;
145 files[0] = stdin;
146 do { /* Now check for input and output errors. */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000147 /* Checking ferror should be sufficient, but we may want to fclose.
148 * If we do, remember not to close stdin! */
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +0000149 die_if_ferror(*fp++, *np++);
150 } while (*fp);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000151
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000152 fflush_stdout_and_exit(retval);
John Beppu059f1521999-12-10 05:27:16 +0000153}