Moved some code out of the main loop in send_files() into a new
[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 dry_run;
24 extern int am_server;
25 extern int am_daemon;
26 extern int log_before_transfer;
27 extern int log_format_has_i;
28 extern int daemon_log_format_has_i;
29 extern int csum_length;
30 extern int io_error;
31 extern int protocol_version;
32 extern int remove_sent_files;
33 extern int updating_basis_file;
34 extern int make_backups;
35 extern int do_progress;
36 extern int inplace;
37 extern struct stats stats;
38 extern struct file_list *the_file_list;
39 extern char *log_format;
40
41
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  **/
49
50 /**
51  * Receive the checksums for a buffer
52  **/
53 static struct sum_struct *receive_sums(int f)
54 {
55         struct sum_struct *s;
56         int32 i;
57         OFF_T offset = 0;
58
59         if (!(s = new(struct sum_struct)))
60                 out_of_memory("receive_sums");
61
62         read_sum_head(f, s);
63
64         s->sums = NULL;
65
66         if (verbose > 3) {
67                 rprintf(FINFO, "count=%.0f n=%ld rem=%ld\n",
68                         (double)s->count, (long)s->blength, (long)s->remainder);
69         }
70
71         if (s->count == 0)
72                 return(s);
73
74         if (!(s->sums = new_array(struct sum_buf, s->count)))
75                 out_of_memory("receive_sums");
76
77         for (i = 0; i < s->count; i++) {
78                 s->sums[i].sum1 = read_int(f);
79                 read_buf(f, s->sums[i].sum2, s->s2length);
80
81                 s->sums[i].offset = offset;
82                 s->sums[i].flags = 0;
83
84                 if (i == s->count-1 && s->remainder != 0)
85                         s->sums[i].len = s->remainder;
86                 else
87                         s->sums[i].len = s->blength;
88                 offset += s->sums[i].len;
89
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                 }
96         }
97
98         s->flength = offset;
99
100         return s;
101 }
102
103 void successful_send(int ndx)
104 {
105         char fname[MAXPATHLEN];
106         struct file_struct *file;
107         unsigned int offset;
108
109         if (ndx < 0 || ndx >= the_file_list->count)
110                 return;
111
112         file = the_file_list->files[ndx];
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 }
127
128 /* This is also used by receive.c with f_out = -1. */
129 int read_iflags(int f_in, int f_out, int ndx, char *buf)
130 {
131         int iflags = protocol_version >= 29 ? read_shortint(f_in)
132                    : ITEM_UPDATING | ITEM_MISSING_DATA;
133
134         /* Handle the new keep-alive (no-op) packet. */
135         if (ndx == the_file_list->count && iflags == ITEM_IS_NEW)
136                 ;
137         else if (ndx < 0 || ndx >= the_file_list->count) {
138                 rprintf(FERROR, "Invalid file index %d (count=%d) [%s]\n",
139                         ndx, the_file_list->count, who_am_i());
140                 exit_cleanup(RERR_PROTOCOL);
141         } else if (iflags == ITEM_IS_NEW) {
142                 rprintf(FERROR, "Invalid itemized flag word [%s]\n",
143                         who_am_i());
144                 exit_cleanup(RERR_PROTOCOL);
145         }
146
147         if ((!(iflags & ITEM_UPDATING) || !S_ISREG(the_file_list->files[ndx]->mode)) && f_out >= 0) {
148                 write_int(f_out, ndx);
149                 write_shortint(f_out, iflags);
150         }
151
152         return iflags;
153 }
154
155 void send_files(struct file_list *flist, int f_out, int f_in)
156 {
157         int fd = -1;
158         struct sum_struct *s;
159         struct map_struct *mbuf = NULL;
160         STRUCT_STAT st;
161         char *fname2, fname[MAXPATHLEN];
162         char fnametmp[MAXPATHLEN];
163         int iflags;
164         struct file_struct *file;
165         int phase = 0;
166         struct stats initial_stats;
167         int save_make_backups = make_backups;
168         int itemizing = am_daemon ? daemon_log_format_has_i
169                       : !am_server && log_format_has_i;
170         int i, j;
171
172         if (verbose > 2)
173                 rprintf(FINFO, "send_files starting\n");
174
175         while (1) {
176                 unsigned int offset;
177
178                 i = read_int(f_in);
179                 if (i == -1) {
180                         if (phase == 0) {
181                                 phase++;
182                                 csum_length = SUM_LENGTH;
183                                 write_int(f_out, -1);
184                                 if (verbose > 2)
185                                         rprintf(FINFO, "send_files phase=%d\n", phase);
186                                 /* For inplace: redo phase turns off the backup
187                                  * flag so that we do a regular inplace send. */
188                                 make_backups = 0;
189                                 continue;
190                         }
191                         break;
192                 }
193
194                 iflags = read_iflags(f_in, f_out, i, fnametmp);
195                 if (iflags == ITEM_IS_NEW) /* no-op packet */
196                         continue;
197
198                 file = flist->files[i];
199                 if (file->dir.root) {
200                         /* N.B. We're sure that this fits, so offset is OK. */
201                         offset = strlcpy(fname, file->dir.root, sizeof fname);
202                         if (!offset || fname[offset-1] != '/')
203                                 fname[offset++] = '/';
204                 } else
205                         offset = 0;
206                 fname2 = f_name_to(file, fname + offset);
207
208                 if (verbose > 2)
209                         rprintf(FINFO, "send_files(%d, %s)\n", i, fname);
210
211                 if (!(iflags & ITEM_UPDATING) || !S_ISREG(file->mode)) {
212                         maybe_log_item(file, iflags, itemizing, fnametmp);
213                         continue;
214                 }
215
216                 if (inplace && protocol_version >= 29) {
217                         updating_basis_file = !(iflags & ITEM_USING_ALT_BASIS);
218                 } else
219                         updating_basis_file = inplace && !make_backups;
220
221                 if (!S_ISREG(file->mode)) {
222                         rprintf(FERROR, "[%s] got index of non-regular file: %d\n",
223                                 who_am_i(), i);
224                         exit_cleanup(RERR_PROTOCOL);
225                 }
226
227                 stats.current_file_index = i;
228                 stats.num_transferred_files++;
229                 stats.total_transferred_size += file->length;
230
231                 if (dry_run) { /* log the transfer */
232                         if (!am_server && log_format)
233                                 log_item(file, &stats, iflags, NULL);
234                         write_int(f_out, i);
235                         if (protocol_version >= 29)
236                                 write_shortint(f_out, iflags);
237                         continue;
238                 }
239
240                 initial_stats = stats;
241
242                 if (!(s = receive_sums(f_in))) {
243                         io_error |= IOERR_GENERAL;
244                         rprintf(FERROR, "receive_sums failed\n");
245                         return;
246                 }
247
248                 fd = do_open(fname, O_RDONLY, 0);
249                 if (fd == -1) {
250                         if (errno == ENOENT) {
251                                 enum logcode c = am_daemon
252                                     && protocol_version < 28 ? FERROR
253                                                              : FINFO;
254                                 io_error |= IOERR_VANISHED;
255                                 rprintf(c, "file has vanished: %s\n",
256                                         full_fname(fname));
257                         } else {
258                                 io_error |= IOERR_GENERAL;
259                                 rsyserr(FERROR, errno,
260                                         "send_files failed to open %s",
261                                         full_fname(fname));
262                         }
263                         free_sums(s);
264                         continue;
265                 }
266
267                 /* map the local file */
268                 if (do_fstat(fd, &st) != 0) {
269                         io_error |= IOERR_GENERAL;
270                         rsyserr(FERROR, errno, "fstat failed");
271                         free_sums(s);
272                         close(fd);
273                         return;
274                 }
275
276                 if (st.st_size) {
277                         int32 read_size = MAX(s->blength * 3, MAX_MAP_SIZE);
278                         mbuf = map_file(fd, st.st_size, read_size, s->blength);
279                 } else
280                         mbuf = NULL;
281
282                 if (verbose > 2) {
283                         rprintf(FINFO, "send_files mapped %s of size %.0f\n",
284                                 safe_fname(fname), (double)st.st_size);
285                 }
286
287                 write_int(f_out, i);
288                 if (protocol_version >= 29)
289                         write_shortint(f_out, iflags);
290                 write_sum_head(f_out, s);
291
292                 if (verbose > 2) {
293                         rprintf(FINFO, "calling match_sums %s\n",
294                                 safe_fname(fname));
295                 }
296
297                 if (log_before_transfer)
298                         log_item(file, &initial_stats, iflags, NULL);
299                 else if (!am_server && verbose && do_progress)
300                         rprintf(FINFO, "%s\n", safe_fname(fname2));
301
302                 set_compression(fname);
303
304                 match_sums(f_out, s, mbuf, st.st_size);
305                 if (!log_before_transfer)
306                         log_item(file, &initial_stats, iflags, NULL);
307
308                 if (mbuf) {
309                         j = unmap_file(mbuf);
310                         if (j) {
311                                 io_error |= IOERR_GENERAL;
312                                 rsyserr(FERROR, j,
313                                         "read errors mapping %s",
314                                         full_fname(fname));
315                         }
316                 }
317                 close(fd);
318
319                 free_sums(s);
320
321                 if (verbose > 2) {
322                         rprintf(FINFO, "sender finished %s\n",
323                                 safe_fname(fname));
324                 }
325
326                 /* Flag that we actually sent this entry. */
327                 file->flags |= FLAG_SENT;
328         }
329         make_backups = save_make_backups;
330
331         if (verbose > 2)
332                 rprintf(FINFO, "send files finished\n");
333
334         match_report();
335
336         write_int(f_out, -1);
337 }