1 /* This program can record the stream of data flowing to or from a program.
2 * This allows it to be used to check that rsync's data that is flowing
3 * through a remote shell is not being corrupted (for example).
5 * Usage: savetransfer [-i|-o] OUTPUT_FILE PROGRAM [ARGS...]
6 * -i Save the input going to PROGRAM to the OUTPUT_FILE
7 * -o Save the output coming from PROGRAM to the OUTPUT_FILE
9 * If you want to capture the flow of data for an rsync command, use one of
10 * the following commands (the resulting files should be identical):
12 * rsync -av --rsh="savetransfer -i /tmp/to.server ssh"
13 * --rsync-path="savetransfer -i /tmp/from.client rsync" SOURCE DEST
15 * rsync -av --rsh="savetransfer -o /tmp/from.server ssh"
16 * --rsync-path="savetransfer -o /tmp/to.client rsync" SOURCE DEST
18 * Note that this program aborts after 30 seconds of inactivity, so you'll need
19 * to change it if that is not enough dead time for your transfer. Also, some
20 * of the above commands will not notice that the transfer is done (if we're
21 * saving the input to a PROGRAM and the PROGRAM goes away: we won't notice
22 * that it's gone unless more data comes in) -- when this happens it will delay
23 * at the end of the transfer until the timeout period expires.
28 #define TIMEOUT_SECONDS 30
31 static struct sigaction sigact
;
34 void run_program(char **command
);
37 int save_data_from_program
= 0;
40 main(int argc
, char *argv
[])
47 if (--argc
&& argv
[0][0] == '-') {
48 if (argv
[0][1] == 'o')
49 save_data_from_program
= 1;
50 else if (argv
[0][1] == 'i')
51 save_data_from_program
= 0;
53 fprintf(stderr
, "Unknown option: %s\n", argv
[0]);
60 fprintf(stderr
, "Usage: savetransfer [-i|-o] OUTPUT_FILE PROGRAM [ARGS...]\n");
61 fprintf(stderr
, "-i Save the input going to PROGRAM to the OUTPUT_FILE\n");
62 fprintf(stderr
, "-o Save the output coming from PROGRAM to the OUTPUT_FILE\n");
65 if ((fd_file
= open(*argv
, O_WRONLY
|O_TRUNC
|O_CREAT
|O_BINARY
, 0644)) < 0) {
66 fprintf(stderr
, "Unable to write to `%s': %s\n", *argv
, strerror(errno
));
69 set_blocking(fd_file
);
71 SIGACTION(SIGPIPE
, SIG_IGN
);
73 run_program(argv
+ 1);
75 #if defined HAVE_SETMODE && O_BINARY
76 setmode(STDIN_FILENO
, O_BINARY
);
77 setmode(STDOUT_FILENO
, O_BINARY
);
79 set_nonblocking(STDIN_FILENO
);
80 set_blocking(STDOUT_FILENO
);
84 FD_SET(STDIN_FILENO
, &fds
);
85 tv
.tv_sec
= TIMEOUT_SECONDS
;
87 if (!select(STDIN_FILENO
+1, &fds
, NULL
, NULL
, &tv
))
89 if (!FD_ISSET(STDIN_FILENO
, &fds
))
91 if ((len
= read(STDIN_FILENO
, buf
, sizeof buf
)) <= 0)
93 if (write(STDOUT_FILENO
, buf
, len
) != len
) {
94 fprintf(stderr
, "Failed to write data to stdout: %s\n", strerror(errno
));
97 if (write(fd_file
, buf
, len
) != len
) {
98 fprintf(stderr
, "Failed to write data to fd_file: %s\n", strerror(errno
));
106 run_program(char **command
)
108 int pipe_fds
[2], ret
;
111 if (pipe(pipe_fds
) < 0) {
112 fprintf(stderr
, "pipe failed: %s\n", strerror(errno
));
116 if ((pid
= fork()) < 0) {
117 fprintf(stderr
, "fork failed: %s\n", strerror(errno
));
122 if (save_data_from_program
)
123 ret
= dup2(pipe_fds
[1], STDOUT_FILENO
);
125 ret
= dup2(pipe_fds
[0], STDIN_FILENO
);
127 fprintf(stderr
, "Failed to dup (in child): %s\n", strerror(errno
));
132 set_blocking(STDIN_FILENO
);
133 set_blocking(STDOUT_FILENO
);
134 execvp(command
[0], command
);
135 fprintf(stderr
, "Failed to exec %s: %s\n", command
[0], strerror(errno
));
139 if (save_data_from_program
)
140 ret
= dup2(pipe_fds
[0], STDIN_FILENO
);
142 ret
= dup2(pipe_fds
[1], STDOUT_FILENO
);
144 fprintf(stderr
, "Failed to dup (in parent): %s\n", strerror(errno
));
152 set_nonblocking(int fd
)
156 if ((val
= fcntl(fd
, F_GETFL
, 0)) == -1)
158 if (!(val
& NONBLOCK_FLAG
)) {
159 val
|= NONBLOCK_FLAG
;
160 fcntl(fd
, F_SETFL
, val
);
169 if ((val
= fcntl(fd
, F_GETFL
, 0)) < 0)
171 if (val
& NONBLOCK_FLAG
) {
172 val
&= ~NONBLOCK_FLAG
;
173 fcntl(fd
, F_SETFL
, val
);