- Call sanitize_path() with updated args.
[rsync/rsync.git] / pipe.c
CommitLineData
fcb69e5c 1/* -*- c-file-style: "linux" -*-
e2ccd357
WD
2 *
3 * Copyright (C) 1996-2000 by Andrew Tridgell
fcb69e5c
MP
4 * Copyright (C) Paul Mackerras 1996
5 * Copyright (C) 2001, 2002 by Martin Pool <mbp@samba.org>
e2ccd357 6 *
fcb69e5c
MP
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.
e2ccd357 11 *
fcb69e5c
MP
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
15 * GNU General Public License for more details.
e2ccd357 16 *
fcb69e5c
MP
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., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
21
b35d0d8e
MP
22#include "rsync.h"
23
72a6e631
WD
24extern int am_sender;
25extern int am_server;
26extern int blocking_io;
27extern int orig_umask;
b9f592fb 28extern int write_batch;
72a6e631
WD
29extern int filesfrom_fd;
30
b35d0d8e
MP
31/**
32 * Create a child connected to use on stdin/stdout.
33 *
e2ccd357
WD
34 * This is derived from CVS code
35 *
b35d0d8e
MP
36 * Note that in the child STDIN is set to blocking and STDOUT
37 * is set to non-blocking. This is necessary as rsh relies on stdin being blocking
38 * and ssh relies on stdout being non-blocking
39 *
40 * If blocking_io is set then use blocking io on both fds. That can be
41 * used to cope with badly broken rsh implementations like the one on
42 * Solaris.
43 **/
44pid_t piped_child(char **command, int *f_in, int *f_out)
45{
46 pid_t pid;
47 int to_child_pipe[2];
48 int from_child_pipe[2];
e2ccd357 49
b35d0d8e
MP
50 if (verbose >= 2) {
51 print_child_argv(command);
52 }
53
54 if (fd_pair(to_child_pipe) < 0 || fd_pair(from_child_pipe) < 0) {
d62bcc17 55 rsyserr(FERROR, errno, "pipe");
b35d0d8e
MP
56 exit_cleanup(RERR_IPC);
57 }
58
b35d0d8e
MP
59 pid = do_fork();
60 if (pid == -1) {
d62bcc17 61 rsyserr(FERROR, errno, "fork");
b35d0d8e
MP
62 exit_cleanup(RERR_IPC);
63 }
64
65 if (pid == 0) {
b35d0d8e
MP
66 if (dup2(to_child_pipe[0], STDIN_FILENO) < 0 ||
67 close(to_child_pipe[1]) < 0 ||
68 close(from_child_pipe[0]) < 0 ||
69 dup2(from_child_pipe[1], STDOUT_FILENO) < 0) {
d62bcc17 70 rsyserr(FERROR, errno, "Failed to dup/close");
b35d0d8e
MP
71 exit_cleanup(RERR_IPC);
72 }
73 if (to_child_pipe[0] != STDIN_FILENO)
74 close(to_child_pipe[0]);
75 if (from_child_pipe[1] != STDOUT_FILENO)
76 close(from_child_pipe[1]);
77 umask(orig_umask);
78 set_blocking(STDIN_FILENO);
7d3f8ae2 79 if (blocking_io > 0)
b35d0d8e 80 set_blocking(STDOUT_FILENO);
b35d0d8e 81 execvp(command[0], command);
d62bcc17 82 rsyserr(FERROR, errno, "Failed to exec %s", command[0]);
b35d0d8e
MP
83 exit_cleanup(RERR_IPC);
84 }
85
86 if (close(from_child_pipe[1]) < 0 || close(to_child_pipe[0]) < 0) {
d62bcc17 87 rsyserr(FERROR, errno, "Failed to close");
b35d0d8e
MP
88 exit_cleanup(RERR_IPC);
89 }
90
91 *f_in = from_child_pipe[0];
92 *f_out = to_child_pipe[1];
93
94 return pid;
95}
96
b9f592fb
WD
97/*
98 * This function forks a child which calls child_main(). First,
99 * however, it has to establish communication paths to and from the
100 * newborn child. It creates two socket pairs -- one for writing to
101 * the child (from the parent) and one for reading from the child
102 * (writing to the parent). Since that's four socket ends, each
103 * process has to close the two ends it doesn't need. The remaining
104 * two socket ends are retained for reading and writing. In the
105 * child, the STDIN and STDOUT file descriptors refer to these
106 * sockets. In the parent, the function arguments f_in and f_out are
107 * set to refer to these sockets.
108 */
109pid_t local_child(int argc, char **argv, int *f_in, int *f_out,
b44be3e9 110 int (*child_main)(int, char*[]))
b35d0d8e
MP
111{
112 pid_t pid;
113 int to_child_pipe[2];
114 int from_child_pipe[2];
b35d0d8e
MP
115
116 if (fd_pair(to_child_pipe) < 0 ||
117 fd_pair(from_child_pipe) < 0) {
d62bcc17 118 rsyserr(FERROR, errno, "pipe");
b35d0d8e
MP
119 exit_cleanup(RERR_IPC);
120 }
121
b9f592fb 122 /* For read-batch, don't even fork. */
8c90957f 123 pid = do_fork();
b9f592fb 124
b35d0d8e 125 if (pid == -1) {
d62bcc17 126 rsyserr(FERROR, errno, "fork");
b35d0d8e
MP
127 exit_cleanup(RERR_IPC);
128 }
129
130 if (pid == 0) {
b9f592fb 131 am_sender = !am_sender;
e2ccd357 132 am_server = 1;
b35d0d8e 133
b9f592fb
WD
134 /* The server side never writes the batch, even if it
135 * is local (it makes the logic easier elsewhere). */
136 write_batch = 0;
137
7c2a9e76
WD
138 if (!am_sender)
139 filesfrom_fd = -1;
140
b35d0d8e
MP
141 if (dup2(to_child_pipe[0], STDIN_FILENO) < 0 ||
142 close(to_child_pipe[1]) < 0 ||
143 close(from_child_pipe[0]) < 0 ||
144 dup2(from_child_pipe[1], STDOUT_FILENO) < 0) {
d62bcc17 145 rsyserr(FERROR, errno, "Failed to dup/close");
b35d0d8e
MP
146 exit_cleanup(RERR_IPC);
147 }
3896bca4
WD
148 if (to_child_pipe[0] != STDIN_FILENO)
149 close(to_child_pipe[0]);
150 if (from_child_pipe[1] != STDOUT_FILENO)
151 close(from_child_pipe[1]);
b35d0d8e
MP
152 child_main(argc, argv);
153 }
154
7c2a9e76
WD
155 if (!am_sender)
156 filesfrom_fd = -1;
157
b35d0d8e
MP
158 if (close(from_child_pipe[1]) < 0 ||
159 close(to_child_pipe[0]) < 0) {
e2ccd357 160 rsyserr(FERROR, errno, "Failed to close");
b35d0d8e
MP
161 exit_cleanup(RERR_IPC);
162 }
163
164 *f_in = from_child_pipe[0];
165 *f_out = to_child_pipe[1];
e2ccd357 166
b35d0d8e
MP
167 return pid;
168}