Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
John Beppu | 059f152 | 1999-12-10 05:27:16 +0000 | [diff] [blame] | 2 | /* |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 3 | * tee implementation for busybox |
John Beppu | 059f152 | 1999-12-10 05:27:16 +0000 | [diff] [blame] | 4 | * |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 5 | * Copyright (C) 2003 Manuel Novoa III <mjn3@codepoet.org> |
John Beppu | 059f152 | 1999-12-10 05:27:16 +0000 | [diff] [blame] | 6 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 7 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
John Beppu | 059f152 | 1999-12-10 05:27:16 +0000 | [diff] [blame] | 8 | */ |
Denys Vlasenko | af3f420 | 2016-11-23 14:46:56 +0100 | [diff] [blame] | 9 | //config:config TEE |
Denys Vlasenko | 4eed2c6 | 2017-07-18 22:01:24 +0200 | [diff] [blame] | 10 | //config: bool "tee (4.3 kb)" |
Denys Vlasenko | af3f420 | 2016-11-23 14:46:56 +0100 | [diff] [blame] | 11 | //config: default y |
| 12 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 13 | //config: tee is used to read from standard input and write |
| 14 | //config: to standard output and files. |
Denys Vlasenko | af3f420 | 2016-11-23 14:46:56 +0100 | [diff] [blame] | 15 | //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 Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 21 | //config: Enable this option for a faster tee, at expense of size. |
Denys Vlasenko | af3f420 | 2016-11-23 14:46:56 +0100 | [diff] [blame] | 22 | |
| 23 | //applet:IF_TEE(APPLET(tee, BB_DIR_USR_BIN, BB_SUID_DROP)) |
| 24 | |
| 25 | //kbuild:lib-$(CONFIG_TEE) += tee.o |
John Beppu | 059f152 | 1999-12-10 05:27:16 +0000 | [diff] [blame] | 26 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 27 | /* BB_AUDIT SUSv3 compliant */ |
| 28 | /* http://www.opengroup.org/onlinepubs/007904975/utilities/tee.html */ |
| 29 | |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 30 | //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 Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 34 | //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 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 42 | #include "libbb.h" |
Denys Vlasenko | e6a2f4c | 2016-04-21 16:26:30 +0200 | [diff] [blame] | 43 | #include "common_bufsiz.h" |
John Beppu | a3e0d79 | 1999-12-10 07:41:03 +0000 | [diff] [blame] | 44 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 45 | int tee_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 46 | int tee_main(int argc, char **argv) |
John Beppu | 059f152 | 1999-12-10 05:27:16 +0000 | [diff] [blame] | 47 | { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 48 | const char *mode = "w\0a"; |
Matt Kraai | 1638488 | 2000-08-28 03:53:27 +0000 | [diff] [blame] | 49 | FILE **files; |
Denis Vlasenko | 2d27e4c | 2006-11-25 23:50:28 +0000 | [diff] [blame] | 50 | FILE **fp; |
| 51 | char **names; |
| 52 | char **np; |
Bernhard Reutner-Fischer | b31c252 | 2007-01-20 21:30:49 +0000 | [diff] [blame] | 53 | char retval; |
Denis Vlasenko | 4daad90 | 2007-09-27 10:20:47 +0000 | [diff] [blame] | 54 | //TODO: make unconditional |
Denis Vlasenko | 2d27e4c | 2006-11-25 23:50:28 +0000 | [diff] [blame] | 55 | #if ENABLE_FEATURE_TEE_USE_BLOCK_IO |
Manuel Novoa III | d709743 | 2004-05-26 15:21:19 +0000 | [diff] [blame] | 56 | ssize_t c; |
Denys Vlasenko | 9de2e5a | 2016-04-21 18:38:51 +0200 | [diff] [blame] | 57 | # define buf bb_common_bufsiz1 |
| 58 | setup_common_bufsiz(); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 59 | #else |
| 60 | int c; |
| 61 | #endif |
Denis Vlasenko | fe7cd64 | 2007-08-18 15:32:12 +0000 | [diff] [blame] | 62 | retval = getopt32(argv, "ia"); /* 'a' must be 2nd */ |
Denis Vlasenko | 2d27e4c | 2006-11-25 23:50:28 +0000 | [diff] [blame] | 63 | argc -= optind; |
| 64 | argv += optind; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 65 | |
Bernhard Reutner-Fischer | b31c252 | 2007-01-20 21:30:49 +0000 | [diff] [blame] | 66 | mode += (retval & 2); /* Since 'a' is the 2nd option... */ |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 67 | |
Bernhard Reutner-Fischer | b31c252 | 2007-01-20 21:30:49 +0000 | [diff] [blame] | 68 | if (retval & 1) { |
Denis Vlasenko | 25591c3 | 2008-02-16 22:58:56 +0000 | [diff] [blame] | 69 | signal(SIGINT, SIG_IGN); /* TODO - switch to sigaction. (why?) */ |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 70 | } |
Bernhard Reutner-Fischer | b31c252 | 2007-01-20 21:30:49 +0000 | [diff] [blame] | 71 | retval = EXIT_SUCCESS; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 72 | /* gnu tee ignores SIGPIPE in case one of the output files is a pipe |
| 73 | * that doesn't consume all its input. Good idea... */ |
Denis Vlasenko | 25591c3 | 2008-02-16 22:58:56 +0000 | [diff] [blame] | 74 | signal(SIGPIPE, SIG_IGN); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 75 | |
Denys Vlasenko | ea69416 | 2010-10-17 12:45:24 +0200 | [diff] [blame] | 76 | /* Allocate an array of FILE *'s, with one extra for a sentinel. */ |
Denis Vlasenko | 2d27e4c | 2006-11-25 23:50:28 +0000 | [diff] [blame] | 77 | fp = files = xzalloc(sizeof(FILE *) * (argc + 2)); |
| 78 | np = names = argv - 1; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 79 | |
Denis Vlasenko | 2d27e4c | 2006-11-25 23:50:28 +0000 | [diff] [blame] | 80 | files[0] = stdout; |
| 81 | goto GOT_NEW_FILE; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 82 | do { |
Denis Vlasenko | 4b8171c | 2008-07-15 05:10:15 +0000 | [diff] [blame] | 83 | *fp = stdout; |
| 84 | if (NOT_LONE_DASH(*argv)) { |
| 85 | *fp = fopen_or_warn(*argv, mode); |
| 86 | if (*fp == NULL) { |
| 87 | retval = EXIT_FAILURE; |
Denis Vlasenko | 8ddb641 | 2008-07-16 07:34:00 +0000 | [diff] [blame] | 88 | argv++; |
Denis Vlasenko | 4b8171c | 2008-07-15 05:10:15 +0000 | [diff] [blame] | 89 | continue; |
| 90 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 91 | } |
Denis Vlasenko | 2d27e4c | 2006-11-25 23:50:28 +0000 | [diff] [blame] | 92 | *np = *argv++; |
| 93 | GOT_NEW_FILE: |
Denis Vlasenko | 8ddb641 | 2008-07-16 07:34:00 +0000 | [diff] [blame] | 94 | setbuf(*fp, NULL); /* tee must not buffer output. */ |
| 95 | fp++; |
Denis Vlasenko | 2d27e4c | 2006-11-25 23:50:28 +0000 | [diff] [blame] | 96 | np++; |
| 97 | } while (*argv); |
| 98 | /* names[0] will be filled later */ |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 99 | |
Denis Vlasenko | 2d27e4c | 2006-11-25 23:50:28 +0000 | [diff] [blame] | 100 | #if ENABLE_FEATURE_TEE_USE_BLOCK_IO |
Denys Vlasenko | 9de2e5a | 2016-04-21 18:38:51 +0200 | [diff] [blame] | 101 | while ((c = safe_read(STDIN_FILENO, buf, COMMON_BUFSIZE)) > 0) { |
Denis Vlasenko | 2d27e4c | 2006-11-25 23:50:28 +0000 | [diff] [blame] | 102 | fp = files; |
| 103 | do |
Dan Fandrich | 77d4872 | 2010-09-07 23:38:28 -0700 | [diff] [blame] | 104 | fwrite(buf, 1, c, *fp); |
| 105 | while (*++fp); |
John Beppu | 059f152 | 1999-12-10 05:27:16 +0000 | [diff] [blame] | 106 | } |
Denis Vlasenko | 2d27e4c | 2006-11-25 23:50:28 +0000 | [diff] [blame] | 107 | if (c < 0) { /* Make sure read errors are signaled. */ |
Manuel Novoa III | d709743 | 2004-05-26 15:21:19 +0000 | [diff] [blame] | 108 | retval = EXIT_FAILURE; |
| 109 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 110 | #else |
Eric Andersen | 637d226 | 2003-10-22 10:18:24 +0000 | [diff] [blame] | 111 | setvbuf(stdout, NULL, _IONBF, 0); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 112 | while ((c = getchar()) != EOF) { |
Denis Vlasenko | 2d27e4c | 2006-11-25 23:50:28 +0000 | [diff] [blame] | 113 | fp = files; |
| 114 | do |
Dan Fandrich | 77d4872 | 2010-09-07 23:38:28 -0700 | [diff] [blame] | 115 | putc(c, *fp); |
| 116 | while (*++fp); |
Eric Andersen | 2cb5507 | 1999-12-10 08:25:07 +0000 | [diff] [blame] | 117 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 118 | #endif |
John Beppu | 059f152 | 1999-12-10 05:27:16 +0000 | [diff] [blame] | 119 | |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 120 | /* Now we need to check for i/o errors on stdin and the various |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 121 | * output files. Since we know that the first entry in the output |
| 122 | * file table is stdout, we can save one "if ferror" test by |
| 123 | * setting the first entry to stdin and checking stdout error |
Denis Vlasenko | f0ed376 | 2006-10-26 23:21:47 +0000 | [diff] [blame] | 124 | * status with fflush_stdout_and_exit()... although fflush()ing |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 125 | * is unnecessary here. */ |
Denis Vlasenko | 2d27e4c | 2006-11-25 23:50:28 +0000 | [diff] [blame] | 126 | np = names; |
| 127 | fp = files; |
| 128 | names[0] = (char *) bb_msg_standard_input; |
| 129 | files[0] = stdin; |
| 130 | do { /* Now check for input and output errors. */ |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 131 | /* Checking ferror should be sufficient, but we may want to fclose. |
| 132 | * If we do, remember not to close stdin! */ |
Denis Vlasenko | 2d27e4c | 2006-11-25 23:50:28 +0000 | [diff] [blame] | 133 | die_if_ferror(*fp++, *np++); |
| 134 | } while (*fp); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 135 | |
Denis Vlasenko | f0ed376 | 2006-10-26 23:21:47 +0000 | [diff] [blame] | 136 | fflush_stdout_and_exit(retval); |
John Beppu | 059f152 | 1999-12-10 05:27:16 +0000 | [diff] [blame] | 137 | } |