Moved write_ndx_and_attrs() to sender.c and made it public.
[rsync/rsync.git] / sender.c
1 /*
2  * Routines only used by the sending process.
3  *
4  * Copyright (C) 1996 Andrew Tridgell
5  * Copyright (C) 1996 Paul Mackerras
6  * Copyright (C) 2003, 2004, 2005, 2006 Wayne Davison
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License along
19  * with this program; if not, write to the Free Software Foundation, Inc.,
20  * 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
21  */
22
23 #include "rsync.h"
24
25 extern int verbose;
26 extern int do_xfers;
27 extern int am_server;
28 extern int am_daemon;
29 extern int log_before_transfer;
30 extern int stdout_format_has_i;
31 extern int logfile_format_has_i;
32 extern int csum_length;
33 extern int append_mode;
34 extern int io_error;
35 extern int allowed_lull;
36 extern int protocol_version;
37 extern int remove_source_files;
38 extern int updating_basis_file;
39 extern int make_backups;
40 extern int do_progress;
41 extern int inplace;
42 extern int batch_fd;
43 extern int write_batch;
44 extern struct stats stats;
45 extern struct file_list *the_file_list;
46 extern char *stdout_format;
47
48
49 /**
50  * @file
51  *
52  * The sender gets checksums from the generator, calculates deltas,
53  * and transmits them to the receiver.  The sender process runs on the
54  * machine holding the source files.
55  **/
56
57 /**
58  * Receive the checksums for a buffer
59  **/
60 static struct sum_struct *receive_sums(int f)
61 {
62         struct sum_struct *s;
63         int32 i;
64         int lull_mod = allowed_lull * 5;
65         OFF_T offset = 0;
66
67         if (!(s = new(struct sum_struct)))
68                 out_of_memory("receive_sums");
69
70         read_sum_head(f, s);
71
72         s->sums = NULL;
73
74         if (verbose > 3) {
75                 rprintf(FINFO, "count=%.0f n=%ld rem=%ld\n",
76                         (double)s->count, (long)s->blength, (long)s->remainder);
77         }
78
79         if (append_mode) {
80                 s->flength = (OFF_T)s->count * s->blength;
81                 if (s->remainder)
82                         s->flength -= s->blength - s->remainder;
83                 return s;
84         }
85
86         if (s->count == 0)
87                 return(s);
88
89         if (!(s->sums = new_array(struct sum_buf, s->count)))
90                 out_of_memory("receive_sums");
91
92         for (i = 0; i < s->count; i++) {
93                 s->sums[i].sum1 = read_int(f);
94                 read_buf(f, s->sums[i].sum2, s->s2length);
95
96                 s->sums[i].offset = offset;
97                 s->sums[i].flags = 0;
98
99                 if (i == s->count-1 && s->remainder != 0)
100                         s->sums[i].len = s->remainder;
101                 else
102                         s->sums[i].len = s->blength;
103                 offset += s->sums[i].len;
104
105                 if (allowed_lull && !(i % lull_mod))
106                         maybe_send_keepalive();
107
108                 if (verbose > 3) {
109                         rprintf(FINFO,
110                                 "chunk[%d] len=%d offset=%.0f sum1=%08x\n",
111                                 i, s->sums[i].len, (double)s->sums[i].offset,
112                                 s->sums[i].sum1);
113                 }
114         }
115
116         s->flength = offset;
117
118         return s;
119 }
120
121 void successful_send(int ndx)
122 {
123         char fname[MAXPATHLEN];
124         struct file_struct *file;
125         unsigned int offset;
126
127         if (ndx < 0 || ndx >= the_file_list->count)
128                 return;
129
130         file = the_file_list->files[ndx];
131         if (file->dir.root) {
132                 offset = stringjoin(fname, sizeof fname,
133                                     file->dir.root, "/", NULL);
134         } else
135                 offset = 0;
136         f_name(file, fname + offset);
137         if (remove_source_files) {
138                 if (do_unlink(fname) == 0) {
139                         if (verbose > 1)
140                                 rprintf(FINFO, "sender removed %s\n", fname + offset);
141                 } else
142                         rsyserr(FERROR, errno, "sender failed to remove %s", fname + offset);
143         }
144 }
145
146 void send_files(struct file_list *flist, int f_out, int f_in)
147 {
148         int fd = -1;
149         struct sum_struct *s;
150         struct map_struct *mbuf = NULL;
151         STRUCT_STAT st;
152         char *fname2, fname[MAXPATHLEN];
153         char xname[MAXPATHLEN];
154         uchar fnamecmp_type;
155         int iflags, xlen;
156         struct file_struct *file;
157         int phase = 0, max_phase = protocol_version >= 29 ? 2 : 1;
158         struct stats initial_stats;
159         int save_make_backups = make_backups;
160         int itemizing = am_server ? logfile_format_has_i : stdout_format_has_i;
161         enum logcode log_code = log_before_transfer ? FLOG : FINFO;
162         int f_xfer = write_batch < 0 ? batch_fd : f_out;
163         int i, j;
164
165         if (verbose > 2)
166                 rprintf(FINFO, "send_files starting\n");
167
168         while (1) {
169                 unsigned int offset;
170
171                 i = read_int(f_in);
172                 if (i == -1) {
173                         if (++phase > max_phase)
174                                 break;
175                         csum_length = SUM_LENGTH;
176                         if (verbose > 2)
177                                 rprintf(FINFO, "send_files phase=%d\n", phase);
178                         write_int(f_out, -1);
179                         /* For inplace: redo phase turns off the backup
180                          * flag so that we do a regular inplace send. */
181                         make_backups = 0;
182                         append_mode = 0;
183                         continue;
184                 }
185
186                 iflags = read_item_attrs(f_in, f_out, i, &fnamecmp_type,
187                                          xname, &xlen);
188                 if (iflags == ITEM_IS_NEW) /* no-op packet */
189                         continue;
190
191                 file = flist->files[i];
192                 if (file->dir.root) {
193                         /* N.B. We're sure that this fits, so offset is OK. */
194                         offset = strlcpy(fname, file->dir.root, sizeof fname);
195                         if (!offset || fname[offset-1] != '/')
196                                 fname[offset++] = '/';
197                 } else
198                         offset = 0;
199                 fname2 = f_name(file, fname + offset);
200
201                 if (verbose > 2)
202                         rprintf(FINFO, "send_files(%d, %s)\n", i, fname);
203
204                 if (!(iflags & ITEM_TRANSFER)) {
205                         maybe_log_item(file, iflags, itemizing, xname);
206                         continue;
207                 }
208                 if (phase == 2) {
209                         rprintf(FERROR,
210                                 "got transfer request in phase 2 [%s]\n",
211                                 who_am_i());
212                         exit_cleanup(RERR_PROTOCOL);
213                 }
214
215                 updating_basis_file = inplace && (protocol_version >= 29
216                         ? fnamecmp_type == FNAMECMP_FNAME : !make_backups);
217
218                 stats.current_file_index = i;
219                 stats.num_transferred_files++;
220                 stats.total_transferred_size += file->length;
221
222                 if (!do_xfers) { /* log the transfer */
223                         log_item(FCLIENT, file, &stats, iflags, NULL);
224                         write_ndx_and_attrs(f_out, i, iflags, fnamecmp_type,
225                                             xname, xlen);
226                         continue;
227                 }
228
229                 initial_stats = stats;
230
231                 if (!(s = receive_sums(f_in))) {
232                         io_error |= IOERR_GENERAL;
233                         rprintf(FERROR, "receive_sums failed\n");
234                         return;
235                 }
236
237                 fd = do_open(fname, O_RDONLY, 0);
238                 if (fd == -1) {
239                         if (errno == ENOENT) {
240                                 enum logcode c = am_daemon
241                                     && protocol_version < 28 ? FERROR
242                                                              : FINFO;
243                                 io_error |= IOERR_VANISHED;
244                                 rprintf(c, "file has vanished: %s\n",
245                                         full_fname(fname));
246                         } else {
247                                 io_error |= IOERR_GENERAL;
248                                 rsyserr(FERROR, errno,
249                                         "send_files failed to open %s",
250                                         full_fname(fname));
251                         }
252                         free_sums(s);
253                         continue;
254                 }
255
256                 /* map the local file */
257                 if (do_fstat(fd, &st) != 0) {
258                         io_error |= IOERR_GENERAL;
259                         rsyserr(FERROR, errno, "fstat failed");
260                         free_sums(s);
261                         close(fd);
262                         return;
263                 }
264
265                 if (st.st_size) {
266                         int32 read_size = MAX(s->blength * 3, MAX_MAP_SIZE);
267                         mbuf = map_file(fd, st.st_size, read_size, s->blength);
268                 } else
269                         mbuf = NULL;
270
271                 if (verbose > 2) {
272                         rprintf(FINFO, "send_files mapped %s of size %.0f\n",
273                                 fname, (double)st.st_size);
274                 }
275
276                 write_ndx_and_attrs(f_out, i, iflags, fnamecmp_type,
277                                     xname, xlen);
278                 write_sum_head(f_xfer, s);
279
280                 if (verbose > 2)
281                         rprintf(FINFO, "calling match_sums %s\n", fname);
282
283                 if (log_before_transfer)
284                         log_item(FCLIENT, file, &initial_stats, iflags, NULL);
285                 else if (!am_server && verbose && do_progress)
286                         rprintf(FCLIENT, "%s\n", fname2);
287
288                 set_compression(fname);
289
290                 match_sums(f_xfer, s, mbuf, st.st_size);
291                 if (do_progress)
292                         end_progress(st.st_size);
293
294                 log_item(log_code, file, &initial_stats, iflags, NULL);
295
296                 if (mbuf) {
297                         j = unmap_file(mbuf);
298                         if (j) {
299                                 io_error |= IOERR_GENERAL;
300                                 rsyserr(FERROR, j,
301                                         "read errors mapping %s",
302                                         full_fname(fname));
303                         }
304                 }
305                 close(fd);
306
307                 free_sums(s);
308
309                 if (verbose > 2)
310                         rprintf(FINFO, "sender finished %s\n", fname);
311
312                 /* Flag that we actually sent this entry. */
313                 file->flags |= FLAG_SENT;
314         }
315         make_backups = save_make_backups;
316
317         if (verbose > 2)
318                 rprintf(FINFO, "send files finished\n");
319
320         match_report();
321
322         write_int(f_out, -1);
323 }