Moved the code that reads the extra byte for a modern inplace
[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 extern int am_daemon;
29 extern int protocol_version;
30 extern int updating_basis_file;
31 extern int make_backups;
32 extern int inplace;
33 extern struct stats stats;
34
35
36 /**
37  * @file
38  *
39  * The sender gets checksums from the generator, calculates deltas,
40  * and transmits them to the receiver.  The sender process runs on the
41  * machine holding the source files.
42  **/
43
44 /**
45  * Receive the checksums for a buffer
46  **/
47 static struct sum_struct *receive_sums(int f)
48 {
49         struct sum_struct *s;
50         int i;
51         OFF_T offset = 0;
52
53         if (!(s = new(struct sum_struct)))
54                 out_of_memory("receive_sums");
55
56         read_sum_head(f, s);
57
58         s->sums = NULL;
59
60         if (verbose > 3) {
61                 rprintf(FINFO, "count=%.0f n=%ld rem=%ld\n",
62                         (double)s->count, (long)s->blength, (long)s->remainder);
63         }
64
65         if (s->count == 0)
66                 return(s);
67
68         if (!(s->sums = new_array(struct sum_buf, s->count)))
69                 out_of_memory("receive_sums");
70
71         for (i = 0; i < (int)s->count; i++) {
72                 s->sums[i].sum1 = read_int(f);
73                 read_buf(f, s->sums[i].sum2, s->s2length);
74
75                 s->sums[i].offset = offset;
76                 s->sums[i].flags = 0;
77
78                 if (i == (int)s->count-1 && s->remainder != 0)
79                         s->sums[i].len = s->remainder;
80                 else
81                         s->sums[i].len = s->blength;
82                 offset += s->sums[i].len;
83
84                 if (verbose > 3) {
85                         rprintf(FINFO,
86                                 "chunk[%d] len=%d offset=%.0f sum1=%08x\n",
87                                 i, s->sums[i].len, (double)s->sums[i].offset,
88                                 s->sums[i].sum1);
89                 }
90         }
91
92         s->flength = offset;
93
94         return s;
95 }
96
97
98
99 void send_files(struct file_list *flist, int f_out, int f_in)
100 {
101         int fd = -1;
102         struct sum_struct *s;
103         struct map_struct *mbuf = NULL;
104         STRUCT_STAT st;
105         char *fname2, fname[MAXPATHLEN];
106         int i;
107         struct file_struct *file;
108         int phase = 0;
109         struct stats initial_stats;
110         int save_make_backups = make_backups;
111         int j;
112
113         if (verbose > 2)
114                 rprintf(FINFO, "send_files starting\n");
115
116         while (1) {
117                 unsigned int offset;
118
119                 i = read_int(f_in);
120                 if (i == -1) {
121                         if (phase == 0) {
122                                 phase++;
123                                 csum_length = SUM_LENGTH;
124                                 write_int(f_out, -1);
125                                 if (verbose > 2)
126                                         rprintf(FINFO, "send_files phase=%d\n", phase);
127                                 /* For inplace: redo phase turns off the backup
128                                  * flag so that we do a regular inplace send. */
129                                 make_backups = 0;
130                                 continue;
131                         }
132                         break;
133                 }
134
135                 if (i < 0 || i >= flist->count) {
136                         rprintf(FERROR, "Invalid file index %d (count=%d)\n",
137                                 i, flist->count);
138                         exit_cleanup(RERR_PROTOCOL);
139                 }
140
141                 if (inplace && protocol_version >= 29) {
142                         uchar fnamecmp_type = read_byte(f_in);
143                         updating_basis_file = fnamecmp_type == FNAMECMP_FNAME;
144                 } else
145                         updating_basis_file = inplace && !make_backups;
146
147                 file = flist->files[i];
148
149                 stats.current_file_index = i;
150                 stats.num_transferred_files++;
151                 stats.total_transferred_size += file->length;
152
153                 if (file->basedir) {
154                         /* N.B. We're sure that this fits, so offset is OK. */
155                         offset = strlcpy(fname, file->basedir, sizeof fname);
156                         if (!offset || fname[offset-1] != '/')
157                                 fname[offset++] = '/';
158                 } else
159                         offset = 0;
160                 fname2 = f_name_to(file, fname + offset);
161
162                 if (verbose > 2)
163                         rprintf(FINFO, "send_files(%d, %s)\n", i, fname);
164
165                 if (dry_run) {
166                         if (!am_server && verbose) /* log the transfer */
167                                 rprintf(FINFO, "%s\n", safe_fname(fname2));
168                         write_int(f_out, i);
169                         continue;
170                 }
171
172                 initial_stats = stats;
173
174                 if (!(s = receive_sums(f_in))) {
175                         io_error |= IOERR_GENERAL;
176                         rprintf(FERROR, "receive_sums failed\n");
177                         return;
178                 }
179
180                 fd = do_open(fname, O_RDONLY, 0);
181                 if (fd == -1) {
182                         if (errno == ENOENT) {
183                                 enum logcode c = am_daemon
184                                     && protocol_version < 28 ? FERROR
185                                                              : FINFO;
186                                 io_error |= IOERR_VANISHED;
187                                 rprintf(c, "file has vanished: %s\n",
188                                         full_fname(fname));
189                         } else {
190                                 io_error |= IOERR_GENERAL;
191                                 rsyserr(FERROR, errno,
192                                         "send_files failed to open %s",
193                                         full_fname(fname));
194                         }
195                         free_sums(s);
196                         continue;
197                 }
198
199                 /* map the local file */
200                 if (do_fstat(fd, &st) != 0) {
201                         io_error |= IOERR_GENERAL;
202                         rsyserr(FERROR, errno, "fstat failed");
203                         free_sums(s);
204                         close(fd);
205                         return;
206                 }
207
208                 if (st.st_size) {
209                         int32 read_size = MAX(s->blength * 3, MAX_MAP_SIZE);
210                         mbuf = map_file(fd, st.st_size, read_size, s->blength);
211                 } else
212                         mbuf = NULL;
213
214                 if (verbose > 2) {
215                         rprintf(FINFO, "send_files mapped %s of size %.0f\n",
216                                 safe_fname(fname), (double)st.st_size);
217                 }
218
219                 write_int(f_out, i);
220                 write_sum_head(f_out, s);
221
222                 if (verbose > 2) {
223                         rprintf(FINFO, "calling match_sums %s\n",
224                                 safe_fname(fname));
225                 }
226
227                 if (!am_server && verbose) /* log the transfer */
228                         rprintf(FINFO, "%s\n", safe_fname(fname2));
229
230                 set_compression(fname);
231
232                 match_sums(f_out, s, mbuf, st.st_size);
233                 log_send(file, &initial_stats);
234
235                 if (mbuf) {
236                         j = unmap_file(mbuf);
237                         if (j) {
238                                 io_error |= IOERR_GENERAL;
239                                 rsyserr(FERROR, j,
240                                         "read errors mapping %s",
241                                         full_fname(fname));
242                         }
243                 }
244                 close(fd);
245
246                 free_sums(s);
247
248                 if (verbose > 2) {
249                         rprintf(FINFO, "sender finished %s\n",
250                                 safe_fname(fname));
251                 }
252         }
253         make_backups = save_make_backups;
254
255         if (verbose > 2)
256                 rprintf(FINFO, "send files finished\n");
257
258         match_report();
259
260         write_int(f_out, -1);
261 }