If ignore_perishable is set, increment a count of all excluded
[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
6 * Copyright (C) 2003, 2004, 2005, 2006 Wayne Davison
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
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
WD
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
0f78b815 21 */
2f03f956
AT
22
23#include "rsync.h"
24
25extern int verbose;
a0545709 26extern int do_xfers;
8715db2c
WD
27extern int am_server;
28extern int am_daemon;
8a9cfb24 29extern int log_before_transfer;
2fedf3d5 30extern int stdout_format_has_i;
ecc7623e 31extern int logfile_format_has_i;
2f03f956 32extern int csum_length;
6cc11982 33extern int append_mode;
2f03f956 34extern int io_error;
605fed4b 35extern int allowed_lull;
d6631cf3 36extern int protocol_version;
47c11975 37extern int remove_source_files;
53f8519a 38extern int updating_basis_file;
8b115ac8 39extern int make_backups;
8a9cfb24 40extern int do_progress;
53f8519a 41extern int inplace;
a0545709
WD
42extern int batch_fd;
43extern int write_batch;
a3221d2a 44extern struct stats stats;
5f40615c 45extern struct file_list *the_file_list;
2fedf3d5 46extern char *stdout_format;
2f03f956
AT
47
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
6cc11982
WD
79 if (append_mode) {
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;
125 unsigned int offset;
126
5f40615c 127 if (ndx < 0 || ndx >= the_file_list->count)
95306d9d
WD
128 return;
129
5f40615c 130 file = the_file_list->files[ndx];
95306d9d
WD
131 if (file->dir.root) {
132 offset = stringjoin(fname, sizeof fname,
133 file->dir.root, "/", NULL);
134 } else
135 offset = 0;
6cbde57d 136 f_name(file, fname + offset);
acee1ad8
WD
137 if (remove_source_files) {
138 if (do_unlink(fname) == 0) {
139 if (verbose > 1)
140 rprintf(FINFO, "sender removed %s\n", fname + offset);
141 } else
142 rsyserr(FERROR, errno, "sender failed to remove %s", fname + offset);
143 }
95306d9d 144}
2f03f956 145
927c8068
WD
146static void write_ndx_and_attrs(int f_out, int ndx, int iflags,
147 uchar fnamecmp_type, char *buf, int len)
4d53c4dd
WD
148{
149 write_int(f_out, ndx);
150 if (protocol_version < 29)
151 return;
152 write_shortint(f_out, iflags);
153 if (iflags & ITEM_BASIS_TYPE_FOLLOWS)
154 write_byte(f_out, fnamecmp_type);
927c8068 155 if (iflags & ITEM_XNAME_FOLLOWS)
4d53c4dd 156 write_vstring(f_out, buf, len);
4d53c4dd
WD
157}
158
165e6d44 159/* This is also used by receive.c with f_out = -1. */
6087ef2a
WD
160int read_item_attrs(int f_in, int f_out, int ndx, uchar *type_ptr,
161 char *buf, int *len_ptr)
165e6d44 162{
fad3dc42 163 int len;
4d53c4dd 164 uchar fnamecmp_type = FNAMECMP_FNAME;
165e6d44 165 int iflags = protocol_version >= 29 ? read_shortint(f_in)
fad3dc42 166 : ITEM_TRANSFER | ITEM_MISSING_DATA;
165e6d44
WD
167
168 /* Handle the new keep-alive (no-op) packet. */
169 if (ndx == the_file_list->count && iflags == ITEM_IS_NEW)
170 ;
171 else if (ndx < 0 || ndx >= the_file_list->count) {
927c8068 172 rprintf(FERROR, "Invalid file index: %d (count=%d) [%s]\n",
165e6d44
WD
173 ndx, the_file_list->count, who_am_i());
174 exit_cleanup(RERR_PROTOCOL);
175 } else if (iflags == ITEM_IS_NEW) {
927c8068
WD
176 rprintf(FERROR, "Invalid itemized flag word: %x [%s]\n",
177 iflags, who_am_i());
165e6d44
WD
178 exit_cleanup(RERR_PROTOCOL);
179 }
180
4d53c4dd
WD
181 if (iflags & ITEM_BASIS_TYPE_FOLLOWS)
182 fnamecmp_type = read_byte(f_in);
183 *type_ptr = fnamecmp_type;
184
185 if (iflags & ITEM_XNAME_FOLLOWS) {
186 if ((len = read_vstring(f_in, buf, MAXPATHLEN)) < 0)
187 exit_cleanup(RERR_PROTOCOL);
188 } else {
fad3dc42
WD
189 *buf = '\0';
190 len = -1;
191 }
6087ef2a 192 *len_ptr = len;
fad3dc42 193
fad3dc42
WD
194 if (iflags & ITEM_TRANSFER) {
195 if (!S_ISREG(the_file_list->files[ndx]->mode)) {
196 rprintf(FERROR,
927c8068 197 "received request to transfer non-regular file: %d [%s]\n",
fad3dc42
WD
198 ndx, who_am_i());
199 exit_cleanup(RERR_PROTOCOL);
200 }
201 } else if (f_out >= 0) {
11290705 202 write_ndx_and_attrs(f_out, ndx, iflags,
927c8068 203 fnamecmp_type, buf, len);
165e6d44
WD
204 }
205
206 return iflags;
207}
208
e6e3f12f
S
209void send_files(struct file_list *flist, int f_out, int f_in)
210{
c1659c79 211 int fd = -1;
2f03f956 212 struct sum_struct *s;
41cc97ae 213 struct map_struct *mbuf = NULL;
2f03f956 214 STRUCT_STAT st;
ecc81fce 215 char *fname2, fname[MAXPATHLEN];
6087ef2a 216 char xname[MAXPATHLEN];
4d53c4dd 217 uchar fnamecmp_type;
6087ef2a 218 int iflags, xlen;
2f03f956 219 struct file_struct *file;
11290705 220 int phase = 0, max_phase = protocol_version >= 29 ? 2 : 1;
1b7c47cb 221 struct stats initial_stats;
8b115ac8 222 int save_make_backups = make_backups;
2fedf3d5
WD
223 int itemizing = am_server ? logfile_format_has_i : stdout_format_has_i;
224 enum logcode log_code = log_before_transfer ? FLOG : FINFO;
a0545709 225 int f_xfer = write_batch < 0 ? batch_fd : f_out;
8a9cfb24 226 int i, j;
2f03f956
AT
227
228 if (verbose > 2)
e6e3f12f 229 rprintf(FINFO, "send_files starting\n");
2f03f956 230
2f03f956 231 while (1) {
3fef5364 232 unsigned int offset;
2f03f956
AT
233
234 i = read_int(f_in);
235 if (i == -1) {
11290705 236 if (++phase > max_phase)
8b48bf11 237 break;
8b48bf11
WD
238 csum_length = SUM_LENGTH;
239 if (verbose > 2)
240 rprintf(FINFO, "send_files phase=%d\n", phase);
241 write_int(f_out, -1);
242 /* For inplace: redo phase turns off the backup
243 * flag so that we do a regular inplace send. */
244 make_backups = 0;
6cc11982 245 append_mode = 0;
8b48bf11 246 continue;
2f03f956
AT
247 }
248
e732fb0c 249 iflags = read_item_attrs(f_in, f_out, i, &fnamecmp_type,
6087ef2a 250 xname, &xlen);
165e6d44
WD
251 if (iflags == ITEM_IS_NEW) /* no-op packet */
252 continue;
2f03f956 253
8a9cfb24 254 file = flist->files[i];
7f37167d
WD
255 if (file->dir.root) {
256 /* N.B. We're sure that this fits, so offset is OK. */
257 offset = strlcpy(fname, file->dir.root, sizeof fname);
258 if (!offset || fname[offset-1] != '/')
259 fname[offset++] = '/';
260 } else
261 offset = 0;
6cbde57d 262 fname2 = f_name(file, fname + offset);
7f37167d
WD
263
264 if (verbose > 2)
265 rprintf(FINFO, "send_files(%d, %s)\n", i, fname);
8a9cfb24 266
fad3dc42 267 if (!(iflags & ITEM_TRANSFER)) {
6087ef2a 268 maybe_log_item(file, iflags, itemizing, xname);
165e6d44
WD
269 continue;
270 }
11290705
WD
271 if (phase == 2) {
272 rprintf(FERROR,
273 "got transfer request in phase 2 [%s]\n",
274 who_am_i());
275 exit_cleanup(RERR_PROTOCOL);
276 }
8a9cfb24 277
6087ef2a
WD
278 updating_basis_file = inplace && (protocol_version >= 29
279 ? fnamecmp_type == FNAMECMP_FNAME : !make_backups);
b951e023 280
97feb557 281 stats.current_file_index = i;
2f03f956
AT
282 stats.num_transferred_files++;
283 stats.total_transferred_size += file->length;
284
a0545709 285 if (!do_xfers) { /* log the transfer */
85909931 286 log_item(FCLIENT, file, &stats, iflags, NULL);
e732fb0c 287 write_ndx_and_attrs(f_out, i, iflags, fnamecmp_type,
927c8068 288 xname, xlen);
2f03f956
AT
289 continue;
290 }
291
1b7c47cb
AT
292 initial_stats = stats;
293
efa95a18 294 if (!(s = receive_sums(f_in))) {
06c28400 295 io_error |= IOERR_GENERAL;
e6e3f12f 296 rprintf(FERROR, "receive_sums failed\n");
2f03f956
AT
297 return;
298 }
76f79ba7 299
b9f592fb
WD
300 fd = do_open(fname, O_RDONLY, 0);
301 if (fd == -1) {
302 if (errno == ENOENT) {
303 enum logcode c = am_daemon
304 && protocol_version < 28 ? FERROR
305 : FINFO;
306 io_error |= IOERR_VANISHED;
307 rprintf(c, "file has vanished: %s\n",
308 full_fname(fname));
309 } else {
06c28400 310 io_error |= IOERR_GENERAL;
b9f592fb
WD
311 rsyserr(FERROR, errno,
312 "send_files failed to open %s",
313 full_fname(fname));
41cc97ae 314 }
b9f592fb
WD
315 free_sums(s);
316 continue;
317 }
e6e3f12f 318
b9f592fb
WD
319 /* map the local file */
320 if (do_fstat(fd, &st) != 0) {
321 io_error |= IOERR_GENERAL;
322 rsyserr(FERROR, errno, "fstat failed");
323 free_sums(s);
324 close(fd);
325 return;
326 }
11a5a3c7 327
96d910c7 328 if (st.st_size) {
9b919d59
WD
329 int32 read_size = MAX(s->blength * 3, MAX_MAP_SIZE);
330 mbuf = map_file(fd, st.st_size, read_size, s->blength);
96d910c7
WD
331 } else
332 mbuf = NULL;
6902ed17 333
b9f592fb
WD
334 if (verbose > 2) {
335 rprintf(FINFO, "send_files mapped %s of size %.0f\n",
45c49b52 336 fname, (double)st.st_size);
6902ed17 337 }
e6e3f12f 338
e732fb0c 339 write_ndx_and_attrs(f_out, i, iflags, fnamecmp_type,
927c8068 340 xname, xlen);
a0545709 341 write_sum_head(f_xfer, s);
b9f592fb 342
45c49b52
WD
343 if (verbose > 2)
344 rprintf(FINFO, "calling match_sums %s\n", fname);
83fff1aa 345
8a9cfb24 346 if (log_before_transfer)
85909931 347 log_item(FCLIENT, file, &initial_stats, iflags, NULL);
8a832465 348 else if (!am_server && verbose && do_progress)
85909931 349 rprintf(FCLIENT, "%s\n", fname2);
ecc81fce 350
83fff1aa 351 set_compression(fname);
1b7c47cb 352
a0545709 353 match_sums(f_xfer, s, mbuf, st.st_size);
0394e34a
WD
354 if (do_progress)
355 end_progress(st.st_size);
356
2fedf3d5 357 log_item(log_code, file, &initial_stats, iflags, NULL);
6902ed17 358
b9f592fb
WD
359 if (mbuf) {
360 j = unmap_file(mbuf);
361 if (j) {
362 io_error |= IOERR_GENERAL;
363 rsyserr(FERROR, j,
364 "read errors mapping %s",
365 full_fname(fname));
6a7cc46c 366 }
6902ed17 367 }
b9f592fb 368 close(fd);
e6e3f12f 369
2f03f956 370 free_sums(s);
e6e3f12f 371
45c49b52
WD
372 if (verbose > 2)
373 rprintf(FINFO, "sender finished %s\n", fname);
95306d9d
WD
374
375 /* Flag that we actually sent this entry. */
376 file->flags |= FLAG_SENT;
2f03f956 377 }
8b115ac8 378 make_backups = save_make_backups;
2f03f956
AT
379
380 if (verbose > 2)
e6e3f12f 381 rprintf(FINFO, "send files finished\n");
2f03f956
AT
382
383 match_report();
384
e6e3f12f 385 write_int(f_out, -1);
2f03f956 386}