0e27020de846437045b9d65b8ff6bb50c9c4d2d1
[rsync/rsync.git] / pipe.c
1 /*
2  * Routines used to setup various kinds of inter-process pipes.
3  *
4  * Copyright (C) 1996-2000 Andrew Tridgell
5  * Copyright (C) 1996 Paul Mackerras
6  * Copyright (C) 2001, 2002 Martin Pool <mbp@samba.org>
7  * Copyright (C) 2004, 2005, 2006 Wayne Davison
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License along
20  * with this program; if not, write to the Free Software Foundation, Inc.,
21  * 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
22  */
23
24 #include "rsync.h"
25
26 extern int am_sender;
27 extern int am_server;
28 extern int blocking_io;
29 extern int filesfrom_fd;
30 extern mode_t orig_umask;
31 extern char *logfile_name;
32 extern struct chmod_mode_struct *chmod_modes;
33
34 /**
35  * Create a child connected to us via its stdin/stdout.
36  *
37  * This is derived from CVS code
38  *
39  * Note that in the child STDIN is set to blocking and STDOUT
40  * is set to non-blocking. This is necessary as rsh relies on stdin being blocking
41  *  and ssh relies on stdout being non-blocking
42  *
43  * If blocking_io is set then use blocking io on both fds. That can be
44  * used to cope with badly broken rsh implementations like the one on
45  * Solaris.
46  **/
47 pid_t piped_child(char **command, int *f_in, int *f_out)
48 {
49         pid_t pid;
50         int to_child_pipe[2];
51         int from_child_pipe[2];
52
53         if (verbose >= 2)
54                 print_child_argv(command);
55
56         if (fd_pair(to_child_pipe) < 0 || fd_pair(from_child_pipe) < 0) {
57                 rsyserr(FERROR, errno, "pipe");
58                 exit_cleanup(RERR_IPC);
59         }
60
61         pid = do_fork();
62         if (pid == -1) {
63                 rsyserr(FERROR, errno, "fork");
64                 exit_cleanup(RERR_IPC);
65         }
66
67         if (pid == 0) {
68                 if (dup2(to_child_pipe[0], STDIN_FILENO) < 0 ||
69                     close(to_child_pipe[1]) < 0 ||
70                     close(from_child_pipe[0]) < 0 ||
71                     dup2(from_child_pipe[1], STDOUT_FILENO) < 0) {
72                         rsyserr(FERROR, errno, "Failed to dup/close");
73                         exit_cleanup(RERR_IPC);
74                 }
75                 if (to_child_pipe[0] != STDIN_FILENO)
76                         close(to_child_pipe[0]);
77                 if (from_child_pipe[1] != STDOUT_FILENO)
78                         close(from_child_pipe[1]);
79                 umask(orig_umask);
80                 set_blocking(STDIN_FILENO);
81                 if (blocking_io > 0)
82                         set_blocking(STDOUT_FILENO);
83                 execvp(command[0], command);
84                 rsyserr(FERROR, errno, "Failed to exec %s", command[0]);
85                 exit_cleanup(RERR_IPC);
86         }
87
88         if (close(from_child_pipe[1]) < 0 || close(to_child_pipe[0]) < 0) {
89                 rsyserr(FERROR, errno, "Failed to close");
90                 exit_cleanup(RERR_IPC);
91         }
92
93         *f_in = from_child_pipe[0];
94         *f_out = to_child_pipe[1];
95
96         return pid;
97 }
98
99 /* This function forks a child which calls child_main().  First,
100  * however, it has to establish communication paths to and from the
101  * newborn child.  It creates two socket pairs -- one for writing to
102  * the child (from the parent) and one for reading from the child
103  * (writing to the parent).  Since that's four socket ends, each
104  * process has to close the two ends it doesn't need.  The remaining
105  * two socket ends are retained for reading and writing.  In the
106  * child, the STDIN and STDOUT file descriptors refer to these
107  * sockets.  In the parent, the function arguments f_in and f_out are
108  * set to refer to these sockets. */
109 pid_t local_child(int argc, char **argv, int *f_in, int *f_out,
110                   int (*child_main)(int, char*[]))
111 {
112         pid_t pid;
113         int to_child_pipe[2];
114         int from_child_pipe[2];
115
116         /* The parent process is always the sender for a local rsync. */
117         assert(am_sender);
118
119         if (fd_pair(to_child_pipe) < 0 ||
120             fd_pair(from_child_pipe) < 0) {
121                 rsyserr(FERROR, errno, "pipe");
122                 exit_cleanup(RERR_IPC);
123         }
124
125         pid = do_fork();
126         if (pid == -1) {
127                 rsyserr(FERROR, errno, "fork");
128                 exit_cleanup(RERR_IPC);
129         }
130
131         if (pid == 0) {
132                 am_sender = 0;
133                 am_server = 1;
134                 filesfrom_fd = -1;
135                 chmod_modes = NULL; /* Let the sending side handle this. */
136
137                 if (dup2(to_child_pipe[0], STDIN_FILENO) < 0 ||
138                     close(to_child_pipe[1]) < 0 ||
139                     close(from_child_pipe[0]) < 0 ||
140                     dup2(from_child_pipe[1], STDOUT_FILENO) < 0) {
141                         rsyserr(FERROR, errno, "Failed to dup/close");
142                         exit_cleanup(RERR_IPC);
143                 }
144                 if (to_child_pipe[0] != STDIN_FILENO)
145                         close(to_child_pipe[0]);
146                 if (from_child_pipe[1] != STDOUT_FILENO)
147                         close(from_child_pipe[1]);
148                 child_main(argc, argv);
149         }
150
151         /* Let the client side handle this. */
152         if (logfile_name) {
153                 logfile_name = NULL;
154                 logfile_close();
155         }
156
157         if (close(from_child_pipe[1]) < 0 ||
158             close(to_child_pipe[0]) < 0) {
159                 rsyserr(FERROR, errno, "Failed to close");
160                 exit_cleanup(RERR_IPC);
161         }
162
163         *f_in = from_child_pipe[0];
164         *f_out = to_child_pipe[1];
165
166         return pid;
167 }