blob: 338232ce9e7b9d1e38a5c07d8ef3dd102c279d88 [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
Manuel Novoa III cad53642003-03-19 09:13:01 +000013#include "busybox.h"
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000014#include <signal.h>
John Beppua3e0d791999-12-10 07:41:03 +000015
Denis Vlasenko06af2162007-02-03 17:28:39 +000016int tee_main(int argc, char **argv);
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 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
Bernhard Reutner-Fischerb31c2522007-01-20 21:30:49 +000031 retval = getopt32(argc, 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 Vlasenko2d27e4c2006-11-25 23:50:28 +000038 signal(SIGINT, SIG_IGN); /* TODO - switch to sigaction. */
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 Vlasenko2d27e4c2006-11-25 23:50:28 +000043 signal(SIGPIPE, SIG_IGN); /* TODO - switch to sigaction. */
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 Vlasenko2d27e4c2006-11-25 23:50:28 +000052 *fp = fopen_or_warn(*argv, mode);
53 if (*fp == NULL) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000054 retval = EXIT_FAILURE;
55 continue;
56 }
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +000057 *np = *argv++;
58 GOT_NEW_FILE:
59 setbuf(*fp++, NULL); /* tee must not buffer output. */
60 np++;
61 } while (*argv);
62 /* names[0] will be filled later */
Manuel Novoa III cad53642003-03-19 09:13:01 +000063
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +000064#if ENABLE_FEATURE_TEE_USE_BLOCK_IO
Manuel Novoa III d7097432004-05-26 15:21:19 +000065 while ((c = safe_read(STDIN_FILENO, buf, BUFSIZ)) > 0) {
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +000066 fp = files;
67 do
68 fwrite(buf, 1, c, *fp++);
69 while (*fp);
John Beppu059f1521999-12-10 05:27:16 +000070 }
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +000071 if (c < 0) { /* Make sure read errors are signaled. */
Manuel Novoa III d7097432004-05-26 15:21:19 +000072 retval = EXIT_FAILURE;
73 }
Manuel Novoa III cad53642003-03-19 09:13:01 +000074#else
Eric Andersen637d2262003-10-22 10:18:24 +000075 setvbuf(stdout, NULL, _IONBF, 0);
Manuel Novoa III cad53642003-03-19 09:13:01 +000076 while ((c = getchar()) != EOF) {
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +000077 fp = files;
78 do
79 putc(c, *fp++);
80 while (*fp);
Eric Andersen2cb55071999-12-10 08:25:07 +000081 }
Manuel Novoa III cad53642003-03-19 09:13:01 +000082#endif
John Beppu059f1521999-12-10 05:27:16 +000083
Eric Andersenc7bda1c2004-03-15 08:29:22 +000084 /* Now we need to check for i/o errors on stdin and the various
Manuel Novoa III cad53642003-03-19 09:13:01 +000085 * output files. Since we know that the first entry in the output
86 * file table is stdout, we can save one "if ferror" test by
87 * setting the first entry to stdin and checking stdout error
Denis Vlasenkof0ed3762006-10-26 23:21:47 +000088 * status with fflush_stdout_and_exit()... although fflush()ing
Manuel Novoa III cad53642003-03-19 09:13:01 +000089 * is unnecessary here. */
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +000090 np = names;
91 fp = files;
92 names[0] = (char *) bb_msg_standard_input;
93 files[0] = stdin;
94 do { /* Now check for input and output errors. */
Manuel Novoa III cad53642003-03-19 09:13:01 +000095 /* Checking ferror should be sufficient, but we may want to fclose.
96 * If we do, remember not to close stdin! */
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +000097 die_if_ferror(*fp++, *np++);
98 } while (*fp);
Manuel Novoa III cad53642003-03-19 09:13:01 +000099
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000100 fflush_stdout_and_exit(retval);
John Beppu059f1521999-12-10 05:27:16 +0000101}