Don't lookup address "0.0.0.0" when we're a remote-shell daemon.
[rsync/rsync.git] / sender.c
CommitLineData
e6e3f12f 1/*
0f78b815
WD
2 * Routines only used by the sending process.
3 *
4 * Copyright (C) 1996 Andrew Tridgell
5 * Copyright (C) 1996 Paul Mackerras
d3d07a5e 6 * Copyright (C) 2003-2008 Wayne Davison
0f78b815
WD
7 *
8 * This program is free software; you can redistribute it and/or modify
8e41b68e
WD
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version.
0f78b815
WD
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
e7c67065 18 * You should have received a copy of the GNU General Public License along
4fd842f9 19 * with this program; if not, visit the http://fsf.org website.
0f78b815 20 */
2f03f956
AT
21
22#include "rsync.h"
23
24extern int verbose;
16edf865 25extern int dry_run;
a0545709 26extern int do_xfers;
8715db2c
WD
27extern int am_server;
28extern int am_daemon;
3ea6e0e7 29extern int inc_recurse;
8a9cfb24 30extern int log_before_transfer;
2fedf3d5 31extern int stdout_format_has_i;
ecc7623e 32extern int logfile_format_has_i;
2f03f956 33extern int csum_length;
6cc11982 34extern int append_mode;
2f03f956 35extern int io_error;
605fed4b 36extern int allowed_lull;
16edf865 37extern int preserve_xattrs;
d6631cf3 38extern int protocol_version;
47c11975 39extern int remove_source_files;
53f8519a 40extern int updating_basis_file;
8b115ac8 41extern int make_backups;
8a9cfb24 42extern int do_progress;
53f8519a 43extern int inplace;
a0545709
WD
44extern int batch_fd;
45extern int write_batch;
a3221d2a 46extern struct stats stats;
6755a7d7 47extern struct file_list *cur_flist, *first_flist, *dir_flist;
2f03f956 48
0f9c48b1
MP
49/**
50 * @file
51 *
52 * The sender gets checksums from the generator, calculates deltas,
53 * and transmits them to the receiver. The sender process runs on the
54 * machine holding the source files.
55 **/
fc0257c9 56
ce8149b6
MP
57/**
58 * Receive the checksums for a buffer
59 **/
2f03f956
AT
60static struct sum_struct *receive_sums(int f)
61{
62 struct sum_struct *s;
a1cbe76e 63 int32 i;
605fed4b 64 int lull_mod = allowed_lull * 5;
2f03f956
AT
65 OFF_T offset = 0;
66
a3221d2a
WD
67 if (!(s = new(struct sum_struct)))
68 out_of_memory("receive_sums");
2f03f956 69
fc0257c9
S
70 read_sum_head(f, s);
71
2f03f956
AT
72 s->sums = NULL;
73
da9d12f5 74 if (verbose > 3) {
6c495e0d
WD
75 rprintf(FINFO, "count=%.0f n=%ld rem=%ld\n",
76 (double)s->count, (long)s->blength, (long)s->remainder);
da9d12f5 77 }
2f03f956 78
f3d6d480 79 if (append_mode > 0) {
6cc11982
WD
80 s->flength = (OFF_T)s->count * s->blength;
81 if (s->remainder)
82 s->flength -= s->blength - s->remainder;
83 return s;
84 }
85
e6e3f12f 86 if (s->count == 0)
2f03f956
AT
87 return(s);
88
a3221d2a
WD
89 if (!(s->sums = new_array(struct sum_buf, s->count)))
90 out_of_memory("receive_sums");
2f03f956 91
eed47b6b 92 for (i = 0; i < s->count; i++) {
2f03f956 93 s->sums[i].sum1 = read_int(f);
e6e3f12f 94 read_buf(f, s->sums[i].sum2, s->s2length);
2f03f956
AT
95
96 s->sums[i].offset = offset;
a3221d2a 97 s->sums[i].flags = 0;
2f03f956 98
eed47b6b 99 if (i == s->count-1 && s->remainder != 0)
2f03f956 100 s->sums[i].len = s->remainder;
a3221d2a 101 else
fc0257c9 102 s->sums[i].len = s->blength;
2f03f956
AT
103 offset += s->sums[i].len;
104
605fed4b
WD
105 if (allowed_lull && !(i % lull_mod))
106 maybe_send_keepalive();
107
a3221d2a
WD
108 if (verbose > 3) {
109 rprintf(FINFO,
110 "chunk[%d] len=%d offset=%.0f sum1=%08x\n",
111 i, s->sums[i].len, (double)s->sums[i].offset,
112 s->sums[i].sum1);
113 }
2f03f956
AT
114 }
115
116 s->flength = offset;
117
118 return s;
119}
120
5f40615c 121void successful_send(int ndx)
95306d9d
WD
122{
123 char fname[MAXPATHLEN];
124 struct file_struct *file;
f3d6d480 125 struct file_list *flist;
95306d9d 126
f3d6d480 127 if (!remove_source_files)
95306d9d
WD
128 return;
129
9bed8554 130 flist = flist_for_ndx(ndx, "successful_send");
f3d6d480 131 file = flist->files[ndx - flist->ndx_start];
29a89172 132 if (!change_pathname(file, NULL, 0))
f3d6d480
WD
133 return;
134 f_name(file, fname);
135
136 if (do_unlink(fname) == 0) {
137 if (verbose > 1)
138 rprintf(FINFO, "sender removed %s\n", fname);
139 } else
140 rsyserr(FERROR, errno, "sender failed to remove %s", fname);
95306d9d 141}
2f03f956 142
16edf865
WD
143static void write_ndx_and_attrs(int f_out, int ndx, int iflags,
144 const char *fname, struct file_struct *file,
145 uchar fnamecmp_type, char *buf, int len)
d144e43b 146{
9ae7a2cd 147 write_ndx(f_out, ndx);
d144e43b
WD
148 if (protocol_version < 29)
149 return;
150 write_shortint(f_out, iflags);
151 if (iflags & ITEM_BASIS_TYPE_FOLLOWS)
152 write_byte(f_out, fnamecmp_type);
153 if (iflags & ITEM_XNAME_FOLLOWS)
154 write_vstring(f_out, buf, len);
16edf865
WD
155#ifdef SUPPORT_XATTRS
156 if (preserve_xattrs && iflags & ITEM_REPORT_XATTR && !dry_run)
157 send_xattr_request(fname, file, f_out);
158#endif
d144e43b
WD
159}
160
f3d6d480 161void send_files(int f_in, int f_out)
e6e3f12f 162{
c1659c79 163 int fd = -1;
2f03f956 164 struct sum_struct *s;
41cc97ae 165 struct map_struct *mbuf = NULL;
2f03f956 166 STRUCT_STAT st;
f3d6d480
WD
167 char fname[MAXPATHLEN], xname[MAXPATHLEN];
168 const char *path, *slash;
4d53c4dd 169 uchar fnamecmp_type;
6087ef2a 170 int iflags, xlen;
2f03f956 171 struct file_struct *file;
11290705 172 int phase = 0, max_phase = protocol_version >= 29 ? 2 : 1;
1b7c47cb 173 struct stats initial_stats;
2fedf3d5
WD
174 int itemizing = am_server ? logfile_format_has_i : stdout_format_has_i;
175 enum logcode log_code = log_before_transfer ? FLOG : FINFO;
a0545709 176 int f_xfer = write_batch < 0 ? batch_fd : f_out;
f3d6d480 177 int ndx, j;
2f03f956
AT
178
179 if (verbose > 2)
e6e3f12f 180 rprintf(FINFO, "send_files starting\n");
2f03f956 181
2f03f956 182 while (1) {
3ea6e0e7 183 if (inc_recurse)
be91bd81 184 send_extra_file_list(f_out, FILECNT_LOOKAHEAD);
f3d6d480
WD
185
186 /* This call also sets cur_flist. */
16edf865
WD
187 ndx = read_ndx_and_attrs(f_in, &iflags, &fnamecmp_type,
188 xname, &xlen);
f3d6d480 189 if (ndx == NDX_DONE) {
3ea6e0e7 190 if (inc_recurse && first_flist) {
f3d6d480
WD
191 flist_free(first_flist);
192 if (first_flist) {
9ae7a2cd 193 write_ndx(f_out, NDX_DONE);
f3d6d480
WD
194 continue;
195 }
196 }
11290705 197 if (++phase > max_phase)
8b48bf11 198 break;
8b48bf11
WD
199 if (verbose > 2)
200 rprintf(FINFO, "send_files phase=%d\n", phase);
9ae7a2cd 201 write_ndx(f_out, NDX_DONE);
8b48bf11 202 continue;
2f03f956
AT
203 }
204
16edf865
WD
205 if (inc_recurse)
206 send_extra_file_list(f_out, FILECNT_LOOKAHEAD);
207
6755a7d7
WD
208 if (ndx - cur_flist->ndx_start >= 0)
209 file = cur_flist->files[ndx - cur_flist->ndx_start];
210 else
211 file = dir_flist->files[cur_flist->parent_ndx];
8fc4033e
WD
212 if (F_PATHNAME(file)) {
213 path = F_PATHNAME(file);
f3d6d480
WD
214 slash = "/";
215 } else {
216 path = slash = "";
217 }
29a89172 218 if (!change_pathname(file, NULL, 0))
f3d6d480
WD
219 continue;
220 f_name(file, fname);
7f37167d
WD
221
222 if (verbose > 2)
f3d6d480 223 rprintf(FINFO, "send_files(%d, %s%s%s)\n", ndx, path,slash,fname);
8a9cfb24 224
16edf865 225#ifdef SUPPORT_XATTRS
c0f4228d 226 if (preserve_xattrs && iflags & ITEM_REPORT_XATTR && !dry_run)
16edf865
WD
227 recv_xattr_request(file, f_in);
228#endif
229
fad3dc42 230 if (!(iflags & ITEM_TRANSFER)) {
6087ef2a 231 maybe_log_item(file, iflags, itemizing, xname);
16edf865
WD
232 write_ndx_and_attrs(f_out, ndx, iflags, fname, file,
233 fnamecmp_type, xname, xlen);
165e6d44
WD
234 continue;
235 }
11290705
WD
236 if (phase == 2) {
237 rprintf(FERROR,
238 "got transfer request in phase 2 [%s]\n",
239 who_am_i());
240 exit_cleanup(RERR_PROTOCOL);
241 }
8a9cfb24 242
f3d6d480
WD
243 if (file->flags & FLAG_FILE_SENT) {
244 if (csum_length == SHORT_SUM_LENGTH) {
245 /* For inplace: redo phase turns off the backup
246 * flag so that we do a regular inplace send. */
247 make_backups = -make_backups;
248 append_mode = -append_mode;
249 csum_length = SUM_LENGTH;
250 }
251 } else {
252 if (csum_length != SHORT_SUM_LENGTH) {
253 make_backups = -make_backups;
254 append_mode = -append_mode;
255 csum_length = SHORT_SUM_LENGTH;
256 }
257 }
258
6087ef2a 259 updating_basis_file = inplace && (protocol_version >= 29
f3d6d480 260 ? fnamecmp_type == FNAMECMP_FNAME : make_backups <= 0);
b951e023 261
65b4e4b2
WD
262 if (!am_server && do_progress)
263 set_current_file_index(file, ndx);
2f03f956 264 stats.num_transferred_files++;
112d728f 265 stats.total_transferred_size += F_LENGTH(file);
2f03f956 266
a0545709 267 if (!do_xfers) { /* log the transfer */
85909931 268 log_item(FCLIENT, file, &stats, iflags, NULL);
16edf865
WD
269 write_ndx_and_attrs(f_out, ndx, iflags, fname, file,
270 fnamecmp_type, xname, xlen);
2f03f956
AT
271 continue;
272 }
273
1b7c47cb
AT
274 initial_stats = stats;
275
efa95a18 276 if (!(s = receive_sums(f_in))) {
06c28400 277 io_error |= IOERR_GENERAL;
9ed56948 278 rprintf(FERROR_XFER, "receive_sums failed\n");
f3d6d480 279 exit_cleanup(RERR_PROTOCOL);
2f03f956 280 }
76f79ba7 281
b9f592fb
WD
282 fd = do_open(fname, O_RDONLY, 0);
283 if (fd == -1) {
284 if (errno == ENOENT) {
285 enum logcode c = am_daemon
286 && protocol_version < 28 ? FERROR
3f0211b6 287 : FWARNING;
b9f592fb
WD
288 io_error |= IOERR_VANISHED;
289 rprintf(c, "file has vanished: %s\n",
290 full_fname(fname));
291 } else {
06c28400 292 io_error |= IOERR_GENERAL;
3f0211b6 293 rsyserr(FERROR_XFER, errno,
b9f592fb
WD
294 "send_files failed to open %s",
295 full_fname(fname));
41cc97ae 296 }
b9f592fb 297 free_sums(s);
f3d6d480
WD
298 if (protocol_version >= 30)
299 send_msg_int(MSG_NO_SEND, ndx);
b9f592fb
WD
300 continue;
301 }
e6e3f12f 302
b9f592fb
WD
303 /* map the local file */
304 if (do_fstat(fd, &st) != 0) {
305 io_error |= IOERR_GENERAL;
9ed56948 306 rsyserr(FERROR_XFER, errno, "fstat failed");
b9f592fb
WD
307 free_sums(s);
308 close(fd);
f3d6d480 309 exit_cleanup(RERR_PROTOCOL);
b9f592fb 310 }
11a5a3c7 311
96d910c7 312 if (st.st_size) {
9b919d59
WD
313 int32 read_size = MAX(s->blength * 3, MAX_MAP_SIZE);
314 mbuf = map_file(fd, st.st_size, read_size, s->blength);
96d910c7
WD
315 } else
316 mbuf = NULL;
6902ed17 317
b9f592fb 318 if (verbose > 2) {
f3d6d480
WD
319 rprintf(FINFO, "send_files mapped %s%s%s of size %.0f\n",
320 path,slash,fname, (double)st.st_size);
6902ed17 321 }
e6e3f12f 322
16edf865
WD
323 write_ndx_and_attrs(f_out, ndx, iflags, fname, file,
324 fnamecmp_type, xname, xlen);
a0545709 325 write_sum_head(f_xfer, s);
b9f592fb 326
45c49b52 327 if (verbose > 2)
f3d6d480 328 rprintf(FINFO, "calling match_sums %s%s%s\n", path,slash,fname);
83fff1aa 329
8a9cfb24 330 if (log_before_transfer)
85909931 331 log_item(FCLIENT, file, &initial_stats, iflags, NULL);
8a832465 332 else if (!am_server && verbose && do_progress)
f3d6d480 333 rprintf(FCLIENT, "%s\n", fname);
ecc81fce 334
83fff1aa 335 set_compression(fname);
1b7c47cb 336
a0545709 337 match_sums(f_xfer, s, mbuf, st.st_size);
0394e34a
WD
338 if (do_progress)
339 end_progress(st.st_size);
340
2fedf3d5 341 log_item(log_code, file, &initial_stats, iflags, NULL);
6902ed17 342
b9f592fb
WD
343 if (mbuf) {
344 j = unmap_file(mbuf);
345 if (j) {
346 io_error |= IOERR_GENERAL;
3f0211b6 347 rsyserr(FERROR_XFER, j,
b9f592fb
WD
348 "read errors mapping %s",
349 full_fname(fname));
6a7cc46c 350 }
6902ed17 351 }
b9f592fb 352 close(fd);
e6e3f12f 353
2f03f956 354 free_sums(s);
e6e3f12f 355
45c49b52 356 if (verbose > 2)
f3d6d480 357 rprintf(FINFO, "sender finished %s%s%s\n", path,slash,fname);
95306d9d
WD
358
359 /* Flag that we actually sent this entry. */
f3d6d480 360 file->flags |= FLAG_FILE_SENT;
2f03f956 361 }
f3d6d480
WD
362 if (make_backups < 0)
363 make_backups = -make_backups;
2f03f956
AT
364
365 if (verbose > 2)
e6e3f12f 366 rprintf(FINFO, "send files finished\n");
2f03f956
AT
367
368 match_report();
369
9ae7a2cd 370 write_ndx(f_out, NDX_DONE);
2f03f956 371}