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 | * |
"Robert P. J. Day" | 801ab14 | 2006-07-12 07:56:04 +0000 | [diff] [blame] | 7 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
John Beppu | 059f152 | 1999-12-10 05:27:16 +0000 | [diff] [blame] | 8 | */ |
| 9 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 10 | /* BB_AUDIT SUSv3 compliant */ |
| 11 | /* http://www.opengroup.org/onlinepubs/007904975/utilities/tee.html */ |
| 12 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 13 | #include "busybox.h" |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 14 | #include <signal.h> |
John Beppu | a3e0d79 | 1999-12-10 07:41:03 +0000 | [diff] [blame] | 15 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 16 | int tee_main(int argc, char **argv) |
John Beppu | 059f152 | 1999-12-10 05:27:16 +0000 | [diff] [blame] | 17 | { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 18 | const char *mode = "w\0a"; |
Matt Kraai | 1638488 | 2000-08-28 03:53:27 +0000 | [diff] [blame] | 19 | FILE **files; |
Denis Vlasenko | 2d27e4c | 2006-11-25 23:50:28 +0000 | [diff] [blame^] | 20 | FILE **fp; |
| 21 | char **names; |
| 22 | char **np; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 23 | int flags; |
| 24 | int retval = EXIT_SUCCESS; |
Denis Vlasenko | 2d27e4c | 2006-11-25 23:50:28 +0000 | [diff] [blame^] | 25 | #if ENABLE_FEATURE_TEE_USE_BLOCK_IO |
Manuel Novoa III | d709743 | 2004-05-26 15:21:19 +0000 | [diff] [blame] | 26 | ssize_t c; |
"Vladimir N. Oleynik" | 6f347ef | 2005-10-15 10:23:55 +0000 | [diff] [blame] | 27 | # define buf bb_common_bufsiz1 |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 28 | #else |
| 29 | int c; |
| 30 | #endif |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 31 | flags = getopt32(argc, argv, "ia"); /* 'a' must be 2nd */ |
Denis Vlasenko | 2d27e4c | 2006-11-25 23:50:28 +0000 | [diff] [blame^] | 32 | argc -= optind; |
| 33 | argv += optind; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 34 | |
| 35 | mode += (flags & 2); /* Since 'a' is the 2nd option... */ |
| 36 | |
| 37 | if (flags & 1) { |
Denis Vlasenko | 2d27e4c | 2006-11-25 23:50:28 +0000 | [diff] [blame^] | 38 | signal(SIGINT, SIG_IGN); /* TODO - switch to sigaction. */ |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 39 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 40 | /* gnu tee ignores SIGPIPE in case one of the output files is a pipe |
| 41 | * that doesn't consume all its input. Good idea... */ |
Denis Vlasenko | 2d27e4c | 2006-11-25 23:50:28 +0000 | [diff] [blame^] | 42 | signal(SIGPIPE, SIG_IGN); /* TODO - switch to sigaction. */ |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 43 | |
| 44 | /* Allocate an array of FILE *'s, with one extra for a sentinal. */ |
Denis Vlasenko | 2d27e4c | 2006-11-25 23:50:28 +0000 | [diff] [blame^] | 45 | fp = files = xzalloc(sizeof(FILE *) * (argc + 2)); |
| 46 | np = names = argv - 1; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 47 | |
Denis Vlasenko | 2d27e4c | 2006-11-25 23:50:28 +0000 | [diff] [blame^] | 48 | files[0] = stdout; |
| 49 | goto GOT_NEW_FILE; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 50 | do { |
Denis Vlasenko | 2d27e4c | 2006-11-25 23:50:28 +0000 | [diff] [blame^] | 51 | *fp = fopen_or_warn(*argv, mode); |
| 52 | if (*fp == NULL) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 53 | retval = EXIT_FAILURE; |
| 54 | continue; |
| 55 | } |
Denis Vlasenko | 2d27e4c | 2006-11-25 23:50:28 +0000 | [diff] [blame^] | 56 | *np = *argv++; |
| 57 | GOT_NEW_FILE: |
| 58 | setbuf(*fp++, NULL); /* tee must not buffer output. */ |
| 59 | np++; |
| 60 | } while (*argv); |
| 61 | /* names[0] will be filled later */ |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 62 | |
Denis Vlasenko | 2d27e4c | 2006-11-25 23:50:28 +0000 | [diff] [blame^] | 63 | #if ENABLE_FEATURE_TEE_USE_BLOCK_IO |
Manuel Novoa III | d709743 | 2004-05-26 15:21:19 +0000 | [diff] [blame] | 64 | while ((c = safe_read(STDIN_FILENO, buf, BUFSIZ)) > 0) { |
Denis Vlasenko | 2d27e4c | 2006-11-25 23:50:28 +0000 | [diff] [blame^] | 65 | fp = files; |
| 66 | do |
| 67 | fwrite(buf, 1, c, *fp++); |
| 68 | while (*fp); |
John Beppu | 059f152 | 1999-12-10 05:27:16 +0000 | [diff] [blame] | 69 | } |
Denis Vlasenko | 2d27e4c | 2006-11-25 23:50:28 +0000 | [diff] [blame^] | 70 | if (c < 0) { /* Make sure read errors are signaled. */ |
Manuel Novoa III | d709743 | 2004-05-26 15:21:19 +0000 | [diff] [blame] | 71 | retval = EXIT_FAILURE; |
| 72 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 73 | #else |
Eric Andersen | 637d226 | 2003-10-22 10:18:24 +0000 | [diff] [blame] | 74 | setvbuf(stdout, NULL, _IONBF, 0); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 75 | while ((c = getchar()) != EOF) { |
Denis Vlasenko | 2d27e4c | 2006-11-25 23:50:28 +0000 | [diff] [blame^] | 76 | fp = files; |
| 77 | do |
| 78 | putc(c, *fp++); |
| 79 | while (*fp); |
Eric Andersen | 2cb5507 | 1999-12-10 08:25:07 +0000 | [diff] [blame] | 80 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 81 | #endif |
John Beppu | 059f152 | 1999-12-10 05:27:16 +0000 | [diff] [blame] | 82 | |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 83 | /* 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] | 84 | * output files. Since we know that the first entry in the output |
| 85 | * file table is stdout, we can save one "if ferror" test by |
| 86 | * setting the first entry to stdin and checking stdout error |
Denis Vlasenko | f0ed376 | 2006-10-26 23:21:47 +0000 | [diff] [blame] | 87 | * status with fflush_stdout_and_exit()... although fflush()ing |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 88 | * is unnecessary here. */ |
Denis Vlasenko | 2d27e4c | 2006-11-25 23:50:28 +0000 | [diff] [blame^] | 89 | np = names; |
| 90 | fp = files; |
| 91 | names[0] = (char *) bb_msg_standard_input; |
| 92 | files[0] = stdin; |
| 93 | do { /* Now check for input and output errors. */ |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 94 | /* Checking ferror should be sufficient, but we may want to fclose. |
| 95 | * If we do, remember not to close stdin! */ |
Denis Vlasenko | 2d27e4c | 2006-11-25 23:50:28 +0000 | [diff] [blame^] | 96 | die_if_ferror(*fp++, *np++); |
| 97 | } while (*fp); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 98 | |
Denis Vlasenko | f0ed376 | 2006-10-26 23:21:47 +0000 | [diff] [blame] | 99 | fflush_stdout_and_exit(retval); |
John Beppu | 059f152 | 1999-12-10 05:27:16 +0000 | [diff] [blame] | 100 | } |