blob: 0f24246708a795279231aeb7b977df602ae713f2 [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"
John Beppua3e0d791999-12-10 07:41:03 +000014
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000015int tee_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Manuel Novoa III cad53642003-03-19 09:13:01 +000016int tee_main(int argc, char **argv)
John Beppu059f1521999-12-10 05:27:16 +000017{
Manuel Novoa III cad53642003-03-19 09:13:01 +000018 const char *mode = "w\0a";
Matt Kraai16384882000-08-28 03:53:27 +000019 FILE **files;
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +000020 FILE **fp;
21 char **names;
22 char **np;
Bernhard Reutner-Fischerb31c2522007-01-20 21:30:49 +000023 char retval;
Denis Vlasenko4daad902007-09-27 10:20:47 +000024//TODO: make unconditional
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +000025#if ENABLE_FEATURE_TEE_USE_BLOCK_IO
Manuel Novoa III d7097432004-05-26 15:21:19 +000026 ssize_t c;
"Vladimir N. Oleynik"6f347ef2005-10-15 10:23:55 +000027# define buf bb_common_bufsiz1
Manuel Novoa III cad53642003-03-19 09:13:01 +000028#else
29 int c;
30#endif
Denis Vlasenkofe7cd642007-08-18 15:32:12 +000031 retval = getopt32(argv, "ia"); /* 'a' must be 2nd */
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +000032 argc -= optind;
33 argv += optind;
Manuel Novoa III cad53642003-03-19 09:13:01 +000034
Bernhard Reutner-Fischerb31c2522007-01-20 21:30:49 +000035 mode += (retval & 2); /* Since 'a' is the 2nd option... */
Manuel Novoa III cad53642003-03-19 09:13:01 +000036
Bernhard Reutner-Fischerb31c2522007-01-20 21:30:49 +000037 if (retval & 1) {
Denis Vlasenko25591c32008-02-16 22:58:56 +000038 signal(SIGINT, SIG_IGN); /* TODO - switch to sigaction. (why?) */
Manuel Novoa III cad53642003-03-19 09:13:01 +000039 }
Bernhard Reutner-Fischerb31c2522007-01-20 21:30:49 +000040 retval = EXIT_SUCCESS;
Manuel Novoa III cad53642003-03-19 09:13:01 +000041 /* gnu tee ignores SIGPIPE in case one of the output files is a pipe
42 * that doesn't consume all its input. Good idea... */
Denis Vlasenko25591c32008-02-16 22:58:56 +000043 signal(SIGPIPE, SIG_IGN);
Manuel Novoa III cad53642003-03-19 09:13:01 +000044
45 /* Allocate an array of FILE *'s, with one extra for a sentinal. */
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +000046 fp = files = xzalloc(sizeof(FILE *) * (argc + 2));
47 np = names = argv - 1;
Manuel Novoa III cad53642003-03-19 09:13:01 +000048
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +000049 files[0] = stdout;
50 goto GOT_NEW_FILE;
Manuel Novoa III cad53642003-03-19 09:13:01 +000051 do {
Denis Vlasenko4b8171c2008-07-15 05:10:15 +000052 *fp = stdout;
53 if (NOT_LONE_DASH(*argv)) {
54 *fp = fopen_or_warn(*argv, mode);
55 if (*fp == NULL) {
56 retval = EXIT_FAILURE;
Denis Vlasenko8ddb6412008-07-16 07:34:00 +000057 argv++;
Denis Vlasenko4b8171c2008-07-15 05:10:15 +000058 continue;
59 }
Manuel Novoa III cad53642003-03-19 09:13:01 +000060 }
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +000061 *np = *argv++;
62 GOT_NEW_FILE:
Denis Vlasenko8ddb6412008-07-16 07:34:00 +000063 setbuf(*fp, NULL); /* tee must not buffer output. */
64 fp++;
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +000065 np++;
66 } while (*argv);
67 /* names[0] will be filled later */
Manuel Novoa III cad53642003-03-19 09:13:01 +000068
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +000069#if ENABLE_FEATURE_TEE_USE_BLOCK_IO
Denis Vlasenko4daad902007-09-27 10:20:47 +000070 while ((c = safe_read(STDIN_FILENO, buf, sizeof(buf))) > 0) {
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +000071 fp = files;
72 do
73 fwrite(buf, 1, c, *fp++);
74 while (*fp);
John Beppu059f1521999-12-10 05:27:16 +000075 }
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +000076 if (c < 0) { /* Make sure read errors are signaled. */
Manuel Novoa III d7097432004-05-26 15:21:19 +000077 retval = EXIT_FAILURE;
78 }
Manuel Novoa III cad53642003-03-19 09:13:01 +000079#else
Eric Andersen637d2262003-10-22 10:18:24 +000080 setvbuf(stdout, NULL, _IONBF, 0);
Manuel Novoa III cad53642003-03-19 09:13:01 +000081 while ((c = getchar()) != EOF) {
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +000082 fp = files;
83 do
84 putc(c, *fp++);
85 while (*fp);
Eric Andersen2cb55071999-12-10 08:25:07 +000086 }
Manuel Novoa III cad53642003-03-19 09:13:01 +000087#endif
John Beppu059f1521999-12-10 05:27:16 +000088
Eric Andersenc7bda1c2004-03-15 08:29:22 +000089 /* Now we need to check for i/o errors on stdin and the various
Manuel Novoa III cad53642003-03-19 09:13:01 +000090 * output files. Since we know that the first entry in the output
91 * file table is stdout, we can save one "if ferror" test by
92 * setting the first entry to stdin and checking stdout error
Denis Vlasenkof0ed3762006-10-26 23:21:47 +000093 * status with fflush_stdout_and_exit()... although fflush()ing
Manuel Novoa III cad53642003-03-19 09:13:01 +000094 * is unnecessary here. */
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +000095 np = names;
96 fp = files;
97 names[0] = (char *) bb_msg_standard_input;
98 files[0] = stdin;
99 do { /* Now check for input and output errors. */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000100 /* Checking ferror should be sufficient, but we may want to fclose.
101 * If we do, remember not to close stdin! */
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +0000102 die_if_ferror(*fp++, *np++);
103 } while (*fp);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000104
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000105 fflush_stdout_and_exit(retval);
John Beppu059f1521999-12-10 05:27:16 +0000106}