aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2010-06-26 18:11:44 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2010-06-26 18:11:44 +0200
commitd0a8a0d31243f2ac798531ced2cca45ddf1fea42 (patch)
treece787a64a86b6bf9dd65a9ab7d38d704b9701c1f
parent894fa0ad62924bcfc2d37e045e36d25ad5784888 (diff)
downloadbusybox-w32-d0a8a0d31243f2ac798531ced2cca45ddf1fea42.tar.gz
busybox-w32-d0a8a0d31243f2ac798531ced2cca45ddf1fea42.tar.bz2
busybox-w32-d0a8a0d31243f2ac798531ced2cca45ddf1fea42.zip
tar: fix --to-command wrt short writes
function old new delta bb_copyfd_exact_size 51 98 +47 bb_full_fd_action 362 394 +32 get_header_tar 1546 1558 +12 data_extract_to_command 430 439 +9 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 4/0 up/down: 100/0) Total: 100 bytes Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r--archival/libunarchive/data_extract_to_command.c2
-rw-r--r--libbb/copyfd.c21
2 files changed, 17 insertions, 6 deletions
diff --git a/archival/libunarchive/data_extract_to_command.c b/archival/libunarchive/data_extract_to_command.c
index 983c5301d..53a7217c2 100644
--- a/archival/libunarchive/data_extract_to_command.c
+++ b/archival/libunarchive/data_extract_to_command.c
@@ -108,7 +108,7 @@ void FAST_FUNC data_extract_to_command(archive_handle_t *archive_handle)
108 close(p[0]); 108 close(p[0]);
109 /* Our caller is expected to do signal(SIGPIPE, SIG_IGN) 109 /* Our caller is expected to do signal(SIGPIPE, SIG_IGN)
110 * so that we don't die if child don't read all the input: */ 110 * so that we don't die if child don't read all the input: */
111 bb_copyfd_exact_size(archive_handle->src_fd, p[1], file_header->size); 111 bb_copyfd_exact_size(archive_handle->src_fd, p[1], -file_header->size);
112 close(p[1]); 112 close(p[1]);
113 113
114 if (safe_waitpid(pid, &status, 0) == -1) 114 if (safe_waitpid(pid, &status, 0) == -1)
diff --git a/libbb/copyfd.c b/libbb/copyfd.c
index f42eb7623..2538d496d 100644
--- a/libbb/copyfd.c
+++ b/libbb/copyfd.c
@@ -9,8 +9,10 @@
9 9
10#include "libbb.h" 10#include "libbb.h"
11 11
12/* Used by NOFORK applets (e.g. cat) - must not use xmalloc */ 12/* Used by NOFORK applets (e.g. cat) - must not use xmalloc.
13 13 * size < 0 means "ignore write errors", used by tar --to-command
14 * size = 0 means "copy till EOF"
15 */
14static off_t bb_full_fd_action(int src_fd, int dst_fd, off_t size) 16static off_t bb_full_fd_action(int src_fd, int dst_fd, off_t size)
15{ 17{
16 int status = -1; 18 int status = -1;
@@ -21,6 +23,12 @@ static off_t bb_full_fd_action(int src_fd, int dst_fd, off_t size)
21#else 23#else
22 char *buffer; 24 char *buffer;
23 int buffer_size; 25 int buffer_size;
26 bool continue_on_write_error = 0;
27
28 if (size < 0) {
29 size = -size;
30 continue_on_write_error = 1;
31 }
24 32
25 if (size > 0 && size <= 4 * 1024) 33 if (size > 0 && size <= 4 * 1024)
26 goto use_small_buf; 34 goto use_small_buf;
@@ -63,8 +71,11 @@ static off_t bb_full_fd_action(int src_fd, int dst_fd, off_t size)
63 if (dst_fd >= 0) { 71 if (dst_fd >= 0) {
64 ssize_t wr = full_write(dst_fd, buffer, rd); 72 ssize_t wr = full_write(dst_fd, buffer, rd);
65 if (wr < rd) { 73 if (wr < rd) {
66 bb_perror_msg(bb_msg_write_error); 74 if (!continue_on_write_error) {
67 break; 75 bb_perror_msg(bb_msg_write_error);
76 break;
77 }
78 dst_fd = -1;
68 } 79 }
69 } 80 }
70 total += rd; 81 total += rd;
@@ -108,7 +119,7 @@ off_t FAST_FUNC bb_copyfd_size(int fd1, int fd2, off_t size)
108void FAST_FUNC bb_copyfd_exact_size(int fd1, int fd2, off_t size) 119void FAST_FUNC bb_copyfd_exact_size(int fd1, int fd2, off_t size)
109{ 120{
110 off_t sz = bb_copyfd_size(fd1, fd2, size); 121 off_t sz = bb_copyfd_size(fd1, fd2, size);
111 if (sz == size) 122 if (sz == (size >= 0 ? size : -size))
112 return; 123 return;
113 if (sz != -1) 124 if (sz != -1)
114 bb_error_msg_and_die("short read"); 125 bb_error_msg_and_die("short read");