- Improved the error-checking for some delete_item() calls.
[rsync/rsync.git] / sender.c
CommitLineData
e6e3f12f 1/*
2f03f956
AT
2 Copyright (C) Andrew Tridgell 1996
3 Copyright (C) Paul Mackerras 1996
e6e3f12f 4
2f03f956
AT
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
e6e3f12f 9
2f03f956
AT
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
e6e3f12f 14
2f03f956
AT
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18*/
19
20#include "rsync.h"
21
22extern int verbose;
7f37167d 23extern int dry_run;
8715db2c
WD
24extern int am_server;
25extern int am_daemon;
8a9cfb24 26extern int log_before_transfer;
7f37167d
WD
27extern int log_format_has_i;
28extern int daemon_log_format_has_i;
2f03f956 29extern int csum_length;
2f03f956 30extern int io_error;
d6631cf3 31extern int protocol_version;
95306d9d 32extern int remove_sent_files;
53f8519a 33extern int updating_basis_file;
8b115ac8 34extern int make_backups;
8a9cfb24 35extern int do_progress;
53f8519a 36extern int inplace;
a3221d2a 37extern struct stats stats;
5f40615c 38extern struct file_list *the_file_list;
8715db2c 39extern char *log_format;
2f03f956
AT
40
41
0f9c48b1
MP
42/**
43 * @file
44 *
45 * The sender gets checksums from the generator, calculates deltas,
46 * and transmits them to the receiver. The sender process runs on the
47 * machine holding the source files.
48 **/
fc0257c9 49
ce8149b6
MP
50/**
51 * Receive the checksums for a buffer
52 **/
2f03f956
AT
53static struct sum_struct *receive_sums(int f)
54{
55 struct sum_struct *s;
a1cbe76e 56 int32 i;
2f03f956
AT
57 OFF_T offset = 0;
58
a3221d2a
WD
59 if (!(s = new(struct sum_struct)))
60 out_of_memory("receive_sums");
2f03f956 61
fc0257c9
S
62 read_sum_head(f, s);
63
2f03f956
AT
64 s->sums = NULL;
65
da9d12f5 66 if (verbose > 3) {
6c495e0d
WD
67 rprintf(FINFO, "count=%.0f n=%ld rem=%ld\n",
68 (double)s->count, (long)s->blength, (long)s->remainder);
da9d12f5 69 }
2f03f956 70
e6e3f12f 71 if (s->count == 0)
2f03f956
AT
72 return(s);
73
a3221d2a
WD
74 if (!(s->sums = new_array(struct sum_buf, s->count)))
75 out_of_memory("receive_sums");
2f03f956 76
eed47b6b 77 for (i = 0; i < s->count; i++) {
2f03f956 78 s->sums[i].sum1 = read_int(f);
e6e3f12f 79 read_buf(f, s->sums[i].sum2, s->s2length);
2f03f956
AT
80
81 s->sums[i].offset = offset;
a3221d2a 82 s->sums[i].flags = 0;
2f03f956 83
eed47b6b 84 if (i == s->count-1 && s->remainder != 0)
2f03f956 85 s->sums[i].len = s->remainder;
a3221d2a 86 else
fc0257c9 87 s->sums[i].len = s->blength;
2f03f956
AT
88 offset += s->sums[i].len;
89
a3221d2a
WD
90 if (verbose > 3) {
91 rprintf(FINFO,
92 "chunk[%d] len=%d offset=%.0f sum1=%08x\n",
93 i, s->sums[i].len, (double)s->sums[i].offset,
94 s->sums[i].sum1);
95 }
2f03f956
AT
96 }
97
98 s->flength = offset;
99
100 return s;
101}
102
5f40615c 103void successful_send(int ndx)
95306d9d
WD
104{
105 char fname[MAXPATHLEN];
106 struct file_struct *file;
107 unsigned int offset;
108
5f40615c 109 if (ndx < 0 || ndx >= the_file_list->count)
95306d9d
WD
110 return;
111
5f40615c 112 file = the_file_list->files[ndx];
95306d9d
WD
113 /* The generator might tell us about symlinks we didn't send. */
114 if (!(file->flags & FLAG_SENT) && !S_ISLNK(file->mode))
115 return;
116 if (file->dir.root) {
117 offset = stringjoin(fname, sizeof fname,
118 file->dir.root, "/", NULL);
119 } else
120 offset = 0;
121 f_name_to(file, fname + offset);
122 if (remove_sent_files && do_unlink(fname) == 0 && verbose > 1) {
123 rprintf(FINFO, "sender removed %s\n",
124 safe_fname(fname + offset));
125 }
126}
2f03f956 127
4d53c4dd
WD
128static void write_item_attrs(int f_out, int ndx, int iflags, char *buf,
129 uchar fnamecmp_type, int len)
130{
131 write_int(f_out, ndx);
132 if (protocol_version < 29)
133 return;
134 write_shortint(f_out, iflags);
135 if (iflags & ITEM_BASIS_TYPE_FOLLOWS)
136 write_byte(f_out, fnamecmp_type);
137 if (iflags & ITEM_XNAME_FOLLOWS) {
138 if (len < 0)
139 len = strlen(buf);
140 write_vstring(f_out, buf, len);
141 }
142}
143
165e6d44 144/* This is also used by receive.c with f_out = -1. */
4d53c4dd 145int read_item_attrs(int f_in, int f_out, int ndx, char *buf, uchar *type_ptr)
165e6d44 146{
fad3dc42 147 int len;
4d53c4dd 148 uchar fnamecmp_type = FNAMECMP_FNAME;
165e6d44 149 int iflags = protocol_version >= 29 ? read_shortint(f_in)
fad3dc42
WD
150 : ITEM_TRANSFER | ITEM_MISSING_DATA;
151 int isave = iflags; /* XXX remove soon */
165e6d44
WD
152
153 /* Handle the new keep-alive (no-op) packet. */
154 if (ndx == the_file_list->count && iflags == ITEM_IS_NEW)
155 ;
156 else if (ndx < 0 || ndx >= the_file_list->count) {
157 rprintf(FERROR, "Invalid file index %d (count=%d) [%s]\n",
158 ndx, the_file_list->count, who_am_i());
159 exit_cleanup(RERR_PROTOCOL);
160 } else if (iflags == ITEM_IS_NEW) {
161 rprintf(FERROR, "Invalid itemized flag word [%s]\n",
162 who_am_i());
163 exit_cleanup(RERR_PROTOCOL);
164 }
165
4d53c4dd
WD
166 if (iflags & ITEM_BASIS_TYPE_FOLLOWS)
167 fnamecmp_type = read_byte(f_in);
168 *type_ptr = fnamecmp_type;
169
170 if (iflags & ITEM_XNAME_FOLLOWS) {
171 if ((len = read_vstring(f_in, buf, MAXPATHLEN)) < 0)
172 exit_cleanup(RERR_PROTOCOL);
173 } else {
fad3dc42
WD
174 *buf = '\0';
175 len = -1;
176 }
177
c2b11ba0
WD
178 /* XXX Temporary backward compatibility when talking to 2.6.4pre[12] */
179 if (protocol_version >= 29 && iflags & ITEM_TRANSFER
180 && !S_ISREG(the_file_list->files[ndx]->mode)) {
181 iflags &= ~ITEM_TRANSFER;
182 iflags |= ITEM_LOCAL_CHANGE;
fad3dc42 183 }
85aa57a7 184
fad3dc42
WD
185 if (iflags & ITEM_TRANSFER) {
186 if (!S_ISREG(the_file_list->files[ndx]->mode)) {
187 rprintf(FERROR,
188 "received index of non-regular file: %d [%s]\n",
189 ndx, who_am_i());
190 exit_cleanup(RERR_PROTOCOL);
191 }
192 } else if (f_out >= 0) {
4d53c4dd
WD
193 write_item_attrs(f_out, ndx, isave /*XXX iflags */,
194 buf, fnamecmp_type, len);
165e6d44
WD
195 }
196
197 return iflags;
198}
199
e6e3f12f
S
200void send_files(struct file_list *flist, int f_out, int f_in)
201{
c1659c79 202 int fd = -1;
2f03f956 203 struct sum_struct *s;
41cc97ae 204 struct map_struct *mbuf = NULL;
2f03f956 205 STRUCT_STAT st;
ecc81fce 206 char *fname2, fname[MAXPATHLEN];
165e6d44 207 char fnametmp[MAXPATHLEN];
4d53c4dd 208 uchar fnamecmp_type;
8a9cfb24 209 int iflags;
2f03f956
AT
210 struct file_struct *file;
211 int phase = 0;
1b7c47cb 212 struct stats initial_stats;
8b115ac8 213 int save_make_backups = make_backups;
7f37167d
WD
214 int itemizing = am_daemon ? daemon_log_format_has_i
215 : !am_server && log_format_has_i;
8a9cfb24 216 int i, j;
2f03f956
AT
217
218 if (verbose > 2)
e6e3f12f 219 rprintf(FINFO, "send_files starting\n");
2f03f956 220
2f03f956 221 while (1) {
3fef5364 222 unsigned int offset;
2f03f956
AT
223
224 i = read_int(f_in);
225 if (i == -1) {
e6e3f12f 226 if (phase == 0) {
2f03f956
AT
227 phase++;
228 csum_length = SUM_LENGTH;
e6e3f12f 229 write_int(f_out, -1);
2f03f956 230 if (verbose > 2)
e6e3f12f 231 rprintf(FINFO, "send_files phase=%d\n", phase);
9715c589
WD
232 /* For inplace: redo phase turns off the backup
233 * flag so that we do a regular inplace send. */
8b115ac8 234 make_backups = 0;
2f03f956
AT
235 continue;
236 }
237 break;
238 }
239
4d53c4dd
WD
240 iflags = read_item_attrs(f_in, f_out, i, fnametmp,
241 &fnamecmp_type);
165e6d44
WD
242 if (iflags == ITEM_IS_NEW) /* no-op packet */
243 continue;
2f03f956 244
8a9cfb24 245 file = flist->files[i];
7f37167d
WD
246 if (file->dir.root) {
247 /* N.B. We're sure that this fits, so offset is OK. */
248 offset = strlcpy(fname, file->dir.root, sizeof fname);
249 if (!offset || fname[offset-1] != '/')
250 fname[offset++] = '/';
251 } else
252 offset = 0;
253 fname2 = f_name_to(file, fname + offset);
254
255 if (verbose > 2)
256 rprintf(FINFO, "send_files(%d, %s)\n", i, fname);
8a9cfb24 257
fad3dc42 258 if (!(iflags & ITEM_TRANSFER)) {
165e6d44
WD
259 maybe_log_item(file, iflags, itemizing, fnametmp);
260 continue;
261 }
8a9cfb24 262
4d53c4dd
WD
263 if (protocol_version >= 29) {
264 updating_basis_file = inplace
265 && fnamecmp_type == FNAMECMP_FNAME;
b951e023
WD
266 } else
267 updating_basis_file = inplace && !make_backups;
268
97feb557 269 stats.current_file_index = i;
2f03f956
AT
270 stats.num_transferred_files++;
271 stats.total_transferred_size += file->length;
272
a8ed4958 273 if (dry_run) { /* log the transfer */
8a832465 274 if (!am_server && log_format)
b694f8a2 275 log_item(file, &stats, iflags, NULL);
4d53c4dd
WD
276 write_item_attrs(f_out, i, iflags, fnametmp,
277 fnamecmp_type, -1);
2f03f956
AT
278 continue;
279 }
280
1b7c47cb
AT
281 initial_stats = stats;
282
efa95a18 283 if (!(s = receive_sums(f_in))) {
06c28400 284 io_error |= IOERR_GENERAL;
e6e3f12f 285 rprintf(FERROR, "receive_sums failed\n");
2f03f956
AT
286 return;
287 }
76f79ba7 288
b9f592fb
WD
289 fd = do_open(fname, O_RDONLY, 0);
290 if (fd == -1) {
291 if (errno == ENOENT) {
292 enum logcode c = am_daemon
293 && protocol_version < 28 ? FERROR
294 : FINFO;
295 io_error |= IOERR_VANISHED;
296 rprintf(c, "file has vanished: %s\n",
297 full_fname(fname));
298 } else {
06c28400 299 io_error |= IOERR_GENERAL;
b9f592fb
WD
300 rsyserr(FERROR, errno,
301 "send_files failed to open %s",
302 full_fname(fname));
41cc97ae 303 }
b9f592fb
WD
304 free_sums(s);
305 continue;
306 }
e6e3f12f 307
b9f592fb
WD
308 /* map the local file */
309 if (do_fstat(fd, &st) != 0) {
310 io_error |= IOERR_GENERAL;
311 rsyserr(FERROR, errno, "fstat failed");
312 free_sums(s);
313 close(fd);
314 return;
315 }
11a5a3c7 316
96d910c7 317 if (st.st_size) {
9b919d59
WD
318 int32 read_size = MAX(s->blength * 3, MAX_MAP_SIZE);
319 mbuf = map_file(fd, st.st_size, read_size, s->blength);
96d910c7
WD
320 } else
321 mbuf = NULL;
6902ed17 322
b9f592fb
WD
323 if (verbose > 2) {
324 rprintf(FINFO, "send_files mapped %s of size %.0f\n",
ecc81fce 325 safe_fname(fname), (double)st.st_size);
6902ed17 326 }
e6e3f12f 327
4d53c4dd 328 write_item_attrs(f_out, i, iflags, fnametmp, fnamecmp_type, -1);
b9f592fb
WD
329 write_sum_head(f_out, s);
330
ecc81fce
WD
331 if (verbose > 2) {
332 rprintf(FINFO, "calling match_sums %s\n",
333 safe_fname(fname));
11a5a3c7 334 }
83fff1aa 335
8a9cfb24 336 if (log_before_transfer)
b694f8a2 337 log_item(file, &initial_stats, iflags, NULL);
8a832465 338 else if (!am_server && verbose && do_progress)
ecc81fce
WD
339 rprintf(FINFO, "%s\n", safe_fname(fname2));
340
83fff1aa 341 set_compression(fname);
1b7c47cb 342
b9f592fb 343 match_sums(f_out, s, mbuf, st.st_size);
0394e34a
WD
344 if (do_progress)
345 end_progress(st.st_size);
346
8a9cfb24 347 if (!log_before_transfer)
b694f8a2 348 log_item(file, &initial_stats, iflags, NULL);
6902ed17 349
b9f592fb
WD
350 if (mbuf) {
351 j = unmap_file(mbuf);
352 if (j) {
353 io_error |= IOERR_GENERAL;
354 rsyserr(FERROR, j,
355 "read errors mapping %s",
356 full_fname(fname));
6a7cc46c 357 }
6902ed17 358 }
b9f592fb 359 close(fd);
e6e3f12f 360
2f03f956 361 free_sums(s);
e6e3f12f 362
ecc81fce
WD
363 if (verbose > 2) {
364 rprintf(FINFO, "sender finished %s\n",
365 safe_fname(fname));
366 }
95306d9d
WD
367
368 /* Flag that we actually sent this entry. */
369 file->flags |= FLAG_SENT;
2f03f956 370 }
8b115ac8 371 make_backups = save_make_backups;
2f03f956
AT
372
373 if (verbose > 2)
e6e3f12f 374 rprintf(FINFO, "send files finished\n");
2f03f956
AT
375
376 match_report();
377
e6e3f12f 378 write_int(f_out, -1);
2f03f956 379}