blob: dc947c9358270f2d360812d560122e46a473b9e2 [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 *
"Robert P. J. Day"801ab142006-07-12 07:56:04 +00007 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
John Beppu059f1521999-12-10 05:27:16 +00008 */
9
Manuel Novoa III cad53642003-03-19 09:13:01 +000010/* BB_AUDIT SUSv3 compliant */
11/* http://www.opengroup.org/onlinepubs/007904975/utilities/tee.html */
12
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000013#include "libbb.h"
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000014#include <signal.h>
John Beppua3e0d791999-12-10 07:41:03 +000015
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000016int tee_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Manuel Novoa III cad53642003-03-19 09:13:01 +000017int tee_main(int argc, char **argv)
John Beppu059f1521999-12-10 05:27:16 +000018{
Manuel Novoa III cad53642003-03-19 09:13:01 +000019 const char *mode = "w\0a";
Matt Kraai16384882000-08-28 03:53:27 +000020 FILE **files;
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +000021 FILE **fp;
22 char **names;
23 char **np;
Bernhard Reutner-Fischerb31c2522007-01-20 21:30:49 +000024 char retval;
Denis Vlasenko4daad902007-09-27 10:20:47 +000025//TODO: make unconditional
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +000026#if ENABLE_FEATURE_TEE_USE_BLOCK_IO
Manuel Novoa III d7097432004-05-26 15:21:19 +000027 ssize_t c;
"Vladimir N. Oleynik"6f347ef2005-10-15 10:23:55 +000028# define buf bb_common_bufsiz1
Manuel Novoa III cad53642003-03-19 09:13:01 +000029#else
30 int c;
31#endif
Denis Vlasenkofe7cd642007-08-18 15:32:12 +000032 retval = getopt32(argv, "ia"); /* 'a' must be 2nd */
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +000033 argc -= optind;
34 argv += optind;
Manuel Novoa III cad53642003-03-19 09:13:01 +000035
Bernhard Reutner-Fischerb31c2522007-01-20 21:30:49 +000036 mode += (retval & 2); /* Since 'a' is the 2nd option... */
Manuel Novoa III cad53642003-03-19 09:13:01 +000037
Bernhard Reutner-Fischerb31c2522007-01-20 21:30:49 +000038 if (retval & 1) {
Denis Vlasenko25591c32008-02-16 22:58:56 +000039 signal(SIGINT, SIG_IGN); /* TODO - switch to sigaction. (why?) */
Manuel Novoa III cad53642003-03-19 09:13:01 +000040 }
Bernhard Reutner-Fischerb31c2522007-01-20 21:30:49 +000041 retval = EXIT_SUCCESS;
Manuel Novoa III cad53642003-03-19 09:13:01 +000042 /* gnu tee ignores SIGPIPE in case one of the output files is a pipe
43 * that doesn't consume all its input. Good idea... */
Denis Vlasenko25591c32008-02-16 22:58:56 +000044 signal(SIGPIPE, SIG_IGN);
Manuel Novoa III cad53642003-03-19 09:13:01 +000045
46 /* Allocate an array of FILE *'s, with one extra for a sentinal. */
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +000047 fp = files = xzalloc(sizeof(FILE *) * (argc + 2));
48 np = names = argv - 1;
Manuel Novoa III cad53642003-03-19 09:13:01 +000049
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +000050 files[0] = stdout;
51 goto GOT_NEW_FILE;
Manuel Novoa III cad53642003-03-19 09:13:01 +000052 do {
Denis Vlasenko4b8171c2008-07-15 05:10:15 +000053 *fp = stdout;
54 if (NOT_LONE_DASH(*argv)) {
55 *fp = fopen_or_warn(*argv, mode);
56 if (*fp == NULL) {
57 retval = EXIT_FAILURE;
Denis Vlasenko8ddb6412008-07-16 07:34:00 +000058 argv++;
Denis Vlasenko4b8171c2008-07-15 05:10:15 +000059 continue;
60 }
Manuel Novoa III cad53642003-03-19 09:13:01 +000061 }
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +000062 *np = *argv++;
63 GOT_NEW_FILE:
Denis Vlasenko8ddb6412008-07-16 07:34:00 +000064 setbuf(*fp, NULL); /* tee must not buffer output. */
65 fp++;
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +000066 np++;
67 } while (*argv);
68 /* names[0] will be filled later */
Manuel Novoa III cad53642003-03-19 09:13:01 +000069
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +000070#if ENABLE_FEATURE_TEE_USE_BLOCK_IO
Denis Vlasenko4daad902007-09-27 10:20:47 +000071 while ((c = safe_read(STDIN_FILENO, buf, sizeof(buf))) > 0) {
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +000072 fp = files;
73 do
74 fwrite(buf, 1, c, *fp++);
75 while (*fp);
John Beppu059f1521999-12-10 05:27:16 +000076 }
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +000077 if (c < 0) { /* Make sure read errors are signaled. */
Manuel Novoa III d7097432004-05-26 15:21:19 +000078 retval = EXIT_FAILURE;
79 }
Manuel Novoa III cad53642003-03-19 09:13:01 +000080#else
Eric Andersen637d2262003-10-22 10:18:24 +000081 setvbuf(stdout, NULL, _IONBF, 0);
Manuel Novoa III cad53642003-03-19 09:13:01 +000082 while ((c = getchar()) != EOF) {
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +000083 fp = files;
84 do
85 putc(c, *fp++);
86 while (*fp);
Eric Andersen2cb55071999-12-10 08:25:07 +000087 }
Manuel Novoa III cad53642003-03-19 09:13:01 +000088#endif
John Beppu059f1521999-12-10 05:27:16 +000089
Eric Andersenc7bda1c2004-03-15 08:29:22 +000090 /* Now we need to check for i/o errors on stdin and the various
Manuel Novoa III cad53642003-03-19 09:13:01 +000091 * output files. Since we know that the first entry in the output
92 * file table is stdout, we can save one "if ferror" test by
93 * setting the first entry to stdin and checking stdout error
Denis Vlasenkof0ed3762006-10-26 23:21:47 +000094 * status with fflush_stdout_and_exit()... although fflush()ing
Manuel Novoa III cad53642003-03-19 09:13:01 +000095 * is unnecessary here. */
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +000096 np = names;
97 fp = files;
98 names[0] = (char *) bb_msg_standard_input;
99 files[0] = stdin;
100 do { /* Now check for input and output errors. */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000101 /* Checking ferror should be sufficient, but we may want to fclose.
102 * If we do, remember not to close stdin! */
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +0000103 die_if_ferror(*fp++, *np++);
104 } while (*fp);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000105
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000106 fflush_stdout_and_exit(retval);
John Beppu059f1521999-12-10 05:27:16 +0000107}