Changed rprintf() calls that included strerror() to use rsyserr().
[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;
2f03f956
AT
23extern int csum_length;
24extern struct stats stats;
25extern int io_error;
26extern int dry_run;
27extern int am_server;
d6631cf3
WD
28extern int am_daemon;
29extern int protocol_version;
2f03f956
AT
30
31
0f9c48b1
MP
32/**
33 * @file
34 *
35 * The sender gets checksums from the generator, calculates deltas,
36 * and transmits them to the receiver. The sender process runs on the
37 * machine holding the source files.
38 **/
fc0257c9
S
39void read_sum_head(int f, struct sum_struct *sum)
40{
fc0257c9
S
41 sum->count = read_int(f);
42 sum->blength = read_int(f);
dfad66a8 43 if (protocol_version < 27) {
fc0257c9 44 sum->s2length = csum_length;
dfad66a8 45 } else {
e6e3f12f 46 sum->s2length = read_int(f);
dfad66a8 47 if (sum->s2length > MD4_SUM_LENGTH) {
ef5075e0
WD
48 rprintf(FERROR, "Invalid checksum length %ld\n",
49 (long)sum->s2length);
dfad66a8
S
50 exit_cleanup(RERR_PROTOCOL);
51 }
52 }
e6e3f12f 53 sum->remainder = read_int(f);
fc0257c9
S
54}
55
ce8149b6
MP
56/**
57 * Receive the checksums for a buffer
58 **/
2f03f956
AT
59static struct sum_struct *receive_sums(int f)
60{
61 struct sum_struct *s;
62 int i;
63 OFF_T offset = 0;
64
58cadc86 65 s = new(struct sum_struct);
2f03f956
AT
66 if (!s) out_of_memory("receive_sums");
67
fc0257c9
S
68 read_sum_head(f, s);
69
2f03f956
AT
70 s->sums = NULL;
71
da9d12f5
WD
72 if (verbose > 3) {
73 rprintf(FINFO, "count=%ld n=%u rem=%u\n",
74 (long)s->count, s->blength, s->remainder);
75 }
2f03f956 76
e6e3f12f 77 if (s->count == 0)
2f03f956
AT
78 return(s);
79
58cadc86 80 s->sums = new_array(struct sum_buf, s->count);
2f03f956
AT
81 if (!s->sums) out_of_memory("receive_sums");
82
e6e3f12f 83 for (i = 0; i < (int) s->count; i++) {
2f03f956 84 s->sums[i].sum1 = read_int(f);
e6e3f12f 85 read_buf(f, s->sums[i].sum2, s->s2length);
2f03f956
AT
86
87 s->sums[i].offset = offset;
88 s->sums[i].i = i;
89
a261989c 90 if (i == (int) s->count-1 && s->remainder != 0) {
2f03f956
AT
91 s->sums[i].len = s->remainder;
92 } else {
fc0257c9 93 s->sums[i].len = s->blength;
2f03f956
AT
94 }
95 offset += s->sums[i].len;
96
97 if (verbose > 3)
e6e3f12f
S
98 rprintf(FINFO, "chunk[%d] len=%d offset=%.0f sum1=%08x\n",
99 i, s->sums[i].len, (double)s->sums[i].offset, s->sums[i].sum1);
2f03f956
AT
100 }
101
102 s->flength = offset;
103
104 return s;
105}
106
107
108
e6e3f12f
S
109void send_files(struct file_list *flist, int f_out, int f_in)
110{
c1659c79 111 int fd = -1;
2f03f956 112 struct sum_struct *s;
41cc97ae 113 struct map_struct *mbuf = NULL;
2f03f956 114 STRUCT_STAT st;
e6e3f12f 115 char fname[MAXPATHLEN];
2f03f956
AT
116 int i;
117 struct file_struct *file;
118 int phase = 0;
e6e3f12f 119 extern struct stats stats;
1b7c47cb 120 struct stats initial_stats;
64c3523a
WD
121 extern int write_batch;
122 extern int read_batch;
123 int checksums_match;
124 int buff_len;
125 char buff[CHUNK_SIZE];
126 int j;
127 int done;
2f03f956
AT
128
129 if (verbose > 2)
e6e3f12f 130 rprintf(FINFO, "send_files starting\n");
2f03f956 131
2f03f956 132 while (1) {
3fef5364 133 unsigned int offset;
2f03f956
AT
134
135 i = read_int(f_in);
136 if (i == -1) {
e6e3f12f 137 if (phase == 0) {
2f03f956
AT
138 phase++;
139 csum_length = SUM_LENGTH;
e6e3f12f 140 write_int(f_out, -1);
2f03f956 141 if (verbose > 2)
e6e3f12f 142 rprintf(FINFO, "send_files phase=%d\n", phase);
2f03f956
AT
143 continue;
144 }
145 break;
146 }
147
148 if (i < 0 || i >= flist->count) {
e6e3f12f 149 rprintf(FERROR, "Invalid file index %d (count=%d)\n",
2f03f956 150 i, flist->count);
65417579 151 exit_cleanup(RERR_PROTOCOL);
2f03f956
AT
152 }
153
154 file = flist->files[i];
155
97feb557 156 stats.current_file_index = i;
2f03f956
AT
157 stats.num_transferred_files++;
158 stats.total_transferred_size += file->length;
159
2f03f956 160 if (file->basedir) {
421c2a24
WD
161 /* N.B. We're sure that this fits, so offset is OK. */
162 offset = strlcpy(fname, file->basedir, sizeof fname);
163 if (!offset || fname[offset-1] != '/')
164 fname[offset++] = '/';
3fef5364
WD
165 } else
166 offset = 0;
167 f_name_to(file, fname + offset);
e6e3f12f
S
168
169 if (verbose > 2)
170 rprintf(FINFO, "send_files(%d, %s)\n", i, fname);
171
172 if (dry_run) {
42d4edc0
S
173 if (!am_server && verbose) { /* log transfer */
174 rprintf(FINFO, "%s\n", fname+offset);
11a5a3c7 175 }
e6e3f12f 176 write_int(f_out, i);
2f03f956
AT
177 continue;
178 }
179
1b7c47cb
AT
180 initial_stats = stats;
181
2f03f956
AT
182 s = receive_sums(f_in);
183 if (!s) {
06c28400 184 io_error |= IOERR_GENERAL;
e6e3f12f 185 rprintf(FERROR, "receive_sums failed\n");
2f03f956
AT
186 return;
187 }
76f79ba7
MP
188
189 if (write_batch)
58422e83 190 write_batch_csum_info(&i, s);
e6e3f12f 191
6902ed17 192 if (!read_batch) {
c1659c79
MP
193 fd = do_open(fname, O_RDONLY, 0);
194 if (fd == -1) {
06c28400 195 if (errno == ENOENT) {
d6631cf3
WD
196 enum logcode c = am_daemon
197 && protocol_version < 28 ? FERROR
198 : FINFO;
06c28400 199 io_error |= IOERR_VANISHED;
d6631cf3 200 rprintf(c, "file has vanished: %s\n",
64c3523a 201 full_fname(fname));
06c28400
WD
202 } else {
203 io_error |= IOERR_GENERAL;
204 rprintf(FERROR, "send_files failed to open %s: %s\n",
205 full_fname(fname), strerror(errno));
206 }
c1659c79
MP
207 free_sums(s);
208 continue;
209 }
e6e3f12f 210
c1659c79 211 /* map the local file */
e6e3f12f 212 if (do_fstat(fd, &st) != 0) {
06c28400 213 io_error |= IOERR_GENERAL;
ea42541f 214 rprintf(FERROR, "fstat failed: %s\n", strerror(errno));
c1659c79
MP
215 free_sums(s);
216 close(fd);
217 return;
218 }
e6e3f12f 219
41cc97ae 220 mbuf = st.st_size ? map_file(fd, st.st_size) : NULL;
e6e3f12f 221
41cc97ae 222 if (verbose > 2) {
e6e3f12f
S
223 rprintf(FINFO, "send_files mapped %s of size %.0f\n",
224 fname, (double)st.st_size);
41cc97ae 225 }
e6e3f12f
S
226
227 write_int(f_out, i);
11a5a3c7 228
c1659c79 229 if (write_batch)
bd6abc49 230 write_batch_delta_file((char *)&i, sizeof i);
6902ed17 231
fc0257c9 232 write_sum_head(f_out, s);
6902ed17 233 }
e6e3f12f
S
234
235 if (verbose > 2 && !read_batch)
236 rprintf(FINFO, "calling match_sums %s\n", fname);
237
42d4edc0
S
238 if (!am_server && verbose) { /* log transfer */
239 rprintf(FINFO, "%s\n", fname+offset);
11a5a3c7 240 }
83fff1aa
AT
241
242 set_compression(fname);
1b7c47cb 243
64c3523a 244 if (read_batch) {
e6e3f12f
S
245 /* read checksums originally computed on sender side */
246 read_batch_csum_info(i, s, &checksums_match);
247 if (checksums_match) {
cc964a51 248 read_batch_delta_file((char*)&j, sizeof (int));
e6e3f12f
S
249 if (j != i) { /* if flist index entries don't match*/
250 rprintf(FINFO, "index mismatch in send_files\n");
251 rprintf(FINFO, "read index = %d flist ndx = %d\n", j, i);
252 close_batch_delta_file();
253 close_batch_csums_file();
254 exit_cleanup(1);
255 } else {
256 write_int(f_out, j);
257 write_sum_head(f_out, s);
258 done = 0;
259 while (!done) {
cc964a51 260 read_batch_delta_file((char*)&buff_len, sizeof (int));
e6e3f12f
S
261 write_int(f_out, buff_len);
262 if (buff_len == 0) {
263 done = 1;
264 } else {
265 if (buff_len > 0) {
266 read_batch_delta_file(buff, buff_len);
267 write_buf(f_out, buff, buff_len);
268 }
269 }
270 } /* end while */
41cc97ae 271 read_batch_delta_file(buff, MD4_SUM_LENGTH);
e6e3f12f
S
272 write_buf(f_out, buff, MD4_SUM_LENGTH);
273
274 } /* j=i */
275 } else { /* not checksum match */
276 rprintf (FINFO, "readbatch & checksums don't match\n");
277 rprintf (FINFO, "filename=%s is being skipped\n", fname);
278 continue;
279 }
280 } else {
41cc97ae 281 match_sums(f_out, s, mbuf, st.st_size);
e6e3f12f
S
282 log_send(file, &initial_stats);
283 }
6902ed17 284
64c3523a 285 if (!read_batch) {
41cc97ae
WD
286 if (mbuf) {
287 j = unmap_file(mbuf);
6a7cc46c 288 if (j) {
06c28400 289 io_error |= IOERR_GENERAL;
6a7cc46c
S
290 rprintf(FERROR,
291 "read errors mapping %s: (%d) %s\n",
06c28400 292 full_fname(fname), j, strerror(j));
6a7cc46c
S
293 }
294 }
e6e3f12f 295 close(fd);
6902ed17 296 }
e6e3f12f 297
2f03f956 298 free_sums(s);
e6e3f12f 299
2f03f956 300 if (verbose > 2)
e6e3f12f 301 rprintf(FINFO, "sender finished %s\n", fname);
2f03f956
AT
302 }
303
304 if (verbose > 2)
e6e3f12f 305 rprintf(FINFO, "send files finished\n");
2f03f956
AT
306
307 match_report();
308
e6e3f12f 309 write_int(f_out, -1);
64c3523a 310 if (write_batch || read_batch) {
e6e3f12f
S
311 close_batch_csums_file();
312 close_batch_delta_file();
6902ed17
MP
313 }
314
2f03f956
AT
315}
316
317
318
319
320