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