tee.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * tee implementation for busybox
  4. *
  5. * Copyright (C) 2003 Manuel Novoa III <mjn3@codepoet.org>
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  20. *
  21. */
  22. /* BB_AUDIT SUSv3 compliant */
  23. /* http://www.opengroup.org/onlinepubs/007904975/utilities/tee.html */
  24. #include <stdio.h>
  25. #include <stdlib.h>
  26. #include <signal.h>
  27. #include <unistd.h>
  28. #include "busybox.h"
  29. int tee_main(int argc, char **argv)
  30. {
  31. const char *mode = "w\0a";
  32. FILE **files;
  33. FILE **p;
  34. char **filenames;
  35. int flags;
  36. int retval = EXIT_SUCCESS;
  37. #ifdef CONFIG_FEATURE_TEE_USE_BLOCK_IO
  38. ssize_t c;
  39. # define buf bb_common_bufsiz1
  40. #else
  41. int c;
  42. #endif
  43. flags = bb_getopt_ulflags(argc, argv, "ia"); /* 'a' must be 2nd */
  44. mode += (flags & 2); /* Since 'a' is the 2nd option... */
  45. if (flags & 1) {
  46. signal(SIGINT, SIG_IGN); /* TODO - switch to sigaction.*/
  47. }
  48. /* gnu tee ignores SIGPIPE in case one of the output files is a pipe
  49. * that doesn't consume all its input. Good idea... */
  50. signal(SIGPIPE, SIG_IGN); /* TODO - switch to sigaction.*/
  51. /* Allocate an array of FILE *'s, with one extra for a sentinal. */
  52. p = files = (FILE **)xmalloc(sizeof(FILE *) * (argc - optind + 2));
  53. *p = stdout;
  54. argv += optind - 1;
  55. filenames = argv - 1;
  56. *filenames = (char *) bb_msg_standard_input; /* for later */
  57. goto GOT_NEW_FILE;
  58. do {
  59. if ((*p = bb_wfopen(*argv, mode)) == NULL) {
  60. retval = EXIT_FAILURE;
  61. continue;
  62. }
  63. filenames[(int)(p - files)] = *argv;
  64. GOT_NEW_FILE:
  65. setbuf(*p, NULL); /* tee must not buffer output. */
  66. ++p;
  67. } while (*++argv);
  68. *p = NULL; /* Store the sentinal value. */
  69. #ifdef CONFIG_FEATURE_TEE_USE_BLOCK_IO
  70. while ((c = safe_read(STDIN_FILENO, buf, BUFSIZ)) > 0) {
  71. for (p=files ; *p ; p++) {
  72. fwrite(buf, 1, c, *p);
  73. }
  74. }
  75. if (c < 0) { /* Make sure read errors are signaled. */
  76. retval = EXIT_FAILURE;
  77. }
  78. #else
  79. setvbuf(stdout, NULL, _IONBF, 0);
  80. while ((c = getchar()) != EOF) {
  81. for (p=files ; *p ; p++) {
  82. putc(c, *p);
  83. }
  84. }
  85. #endif
  86. /* Now we need to check for i/o errors on stdin and the various
  87. * output files. Since we know that the first entry in the output
  88. * file table is stdout, we can save one "if ferror" test by
  89. * setting the first entry to stdin and checking stdout error
  90. * status with bb_fflush_stdout_and_exit()... although fflush()ing
  91. * is unnecessary here. */
  92. p = files;
  93. *p = stdin;
  94. do { /* Now check for (input and) output errors. */
  95. /* Checking ferror should be sufficient, but we may want to fclose.
  96. * If we do, remember not to close stdin! */
  97. bb_xferror(*p, filenames[(int)(p - files)]);
  98. } while (*++p);
  99. bb_fflush_stdout_and_exit(retval);
  100. }