Some demon_log_* variables changed into logfile_* variables that are
[rsync/rsync.git] / sender.c
... / ...
CommitLineData
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
25extern int verbose;
26extern int do_xfers;
27extern int am_server;
28extern int am_daemon;
29extern int log_before_transfer;
30extern int log_format_has_i;
31extern int logfile_format_has_i;
32extern int csum_length;
33extern int append_mode;
34extern int io_error;
35extern int allowed_lull;
36extern int protocol_version;
37extern int remove_sent_files;
38extern int updating_basis_file;
39extern int make_backups;
40extern int do_progress;
41extern int inplace;
42extern int batch_fd;
43extern int write_batch;
44extern struct stats stats;
45extern struct file_list *the_file_list;
46extern char *log_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 **/
60static 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
121void 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 /* The generator might tell us about symlinks we didn't send. */
132 if (!(file->flags & FLAG_SENT) && !S_ISLNK(file->mode))
133 return;
134 if (file->dir.root) {
135 offset = stringjoin(fname, sizeof fname,
136 file->dir.root, "/", NULL);
137 } else
138 offset = 0;
139 f_name(file, fname + offset);
140 if (remove_sent_files && do_unlink(fname) == 0 && verbose > 1)
141 rprintf(FINFO, "sender removed %s\n", fname + offset);
142}
143
144static void write_ndx_and_attrs(int f_out, int ndx, int iflags,
145 uchar fnamecmp_type, char *buf, int len)
146{
147 write_int(f_out, ndx);
148 if (protocol_version < 29)
149 return;
150 write_shortint(f_out, iflags);
151 if (iflags & ITEM_BASIS_TYPE_FOLLOWS)
152 write_byte(f_out, fnamecmp_type);
153 if (iflags & ITEM_XNAME_FOLLOWS)
154 write_vstring(f_out, buf, len);
155}
156
157/* This is also used by receive.c with f_out = -1. */
158int read_item_attrs(int f_in, int f_out, int ndx, uchar *type_ptr,
159 char *buf, int *len_ptr)
160{
161 int len;
162 uchar fnamecmp_type = FNAMECMP_FNAME;
163 int iflags = protocol_version >= 29 ? read_shortint(f_in)
164 : ITEM_TRANSFER | ITEM_MISSING_DATA;
165
166 /* Handle the new keep-alive (no-op) packet. */
167 if (ndx == the_file_list->count && iflags == ITEM_IS_NEW)
168 ;
169 else if (ndx < 0 || ndx >= the_file_list->count) {
170 rprintf(FERROR, "Invalid file index: %d (count=%d) [%s]\n",
171 ndx, the_file_list->count, who_am_i());
172 exit_cleanup(RERR_PROTOCOL);
173 } else if (iflags == ITEM_IS_NEW) {
174 rprintf(FERROR, "Invalid itemized flag word: %x [%s]\n",
175 iflags, who_am_i());
176 exit_cleanup(RERR_PROTOCOL);
177 }
178
179 if (iflags & ITEM_BASIS_TYPE_FOLLOWS)
180 fnamecmp_type = read_byte(f_in);
181 *type_ptr = fnamecmp_type;
182
183 if (iflags & ITEM_XNAME_FOLLOWS) {
184 if ((len = read_vstring(f_in, buf, MAXPATHLEN)) < 0)
185 exit_cleanup(RERR_PROTOCOL);
186 } else {
187 *buf = '\0';
188 len = -1;
189 }
190 *len_ptr = len;
191
192 if (iflags & ITEM_TRANSFER) {
193 if (!S_ISREG(the_file_list->files[ndx]->mode)) {
194 rprintf(FERROR,
195 "received request to transfer non-regular file: %d [%s]\n",
196 ndx, who_am_i());
197 exit_cleanup(RERR_PROTOCOL);
198 }
199 } else if (f_out >= 0) {
200 write_ndx_and_attrs(f_out, ndx, iflags,
201 fnamecmp_type, buf, len);
202 }
203
204 return iflags;
205}
206
207void send_files(struct file_list *flist, int f_out, int f_in)
208{
209 int fd = -1;
210 struct sum_struct *s;
211 struct map_struct *mbuf = NULL;
212 STRUCT_STAT st;
213 char *fname2, fname[MAXPATHLEN];
214 char xname[MAXPATHLEN];
215 uchar fnamecmp_type;
216 int iflags, xlen;
217 struct file_struct *file;
218 int phase = 0, max_phase = protocol_version >= 29 ? 2 : 1;
219 struct stats initial_stats;
220 int save_make_backups = make_backups;
221 int itemizing = am_server ? logfile_format_has_i : log_format_has_i;
222 int f_xfer = write_batch < 0 ? batch_fd : f_out;
223 int i, j;
224
225 if (verbose > 2)
226 rprintf(FINFO, "send_files starting\n");
227
228 while (1) {
229 unsigned int offset;
230
231 i = read_int(f_in);
232 if (i == -1) {
233 if (++phase > max_phase)
234 break;
235 csum_length = SUM_LENGTH;
236 if (verbose > 2)
237 rprintf(FINFO, "send_files phase=%d\n", phase);
238 write_int(f_out, -1);
239 /* For inplace: redo phase turns off the backup
240 * flag so that we do a regular inplace send. */
241 make_backups = 0;
242 append_mode = 0;
243 continue;
244 }
245
246 iflags = read_item_attrs(f_in, f_out, i, &fnamecmp_type,
247 xname, &xlen);
248 if (iflags == ITEM_IS_NEW) /* no-op packet */
249 continue;
250
251 file = flist->files[i];
252 if (file->dir.root) {
253 /* N.B. We're sure that this fits, so offset is OK. */
254 offset = strlcpy(fname, file->dir.root, sizeof fname);
255 if (!offset || fname[offset-1] != '/')
256 fname[offset++] = '/';
257 } else
258 offset = 0;
259 fname2 = f_name(file, fname + offset);
260
261 if (verbose > 2)
262 rprintf(FINFO, "send_files(%d, %s)\n", i, fname);
263
264 if (!(iflags & ITEM_TRANSFER)) {
265 maybe_log_item(file, iflags, itemizing, xname);
266 continue;
267 }
268 if (phase == 2) {
269 rprintf(FERROR,
270 "got transfer request in phase 2 [%s]\n",
271 who_am_i());
272 exit_cleanup(RERR_PROTOCOL);
273 }
274
275 updating_basis_file = inplace && (protocol_version >= 29
276 ? fnamecmp_type == FNAMECMP_FNAME : !make_backups);
277
278 stats.current_file_index = i;
279 stats.num_transferred_files++;
280 stats.total_transferred_size += file->length;
281
282 if (!do_xfers) { /* log the transfer */
283 if (!am_server && log_format)
284 log_item(file, &stats, iflags, NULL);
285 write_ndx_and_attrs(f_out, i, iflags, fnamecmp_type,
286 xname, xlen);
287 continue;
288 }
289
290 initial_stats = stats;
291
292 if (!(s = receive_sums(f_in))) {
293 io_error |= IOERR_GENERAL;
294 rprintf(FERROR, "receive_sums failed\n");
295 return;
296 }
297
298 fd = do_open(fname, O_RDONLY, 0);
299 if (fd == -1) {
300 if (errno == ENOENT) {
301 enum logcode c = am_daemon
302 && protocol_version < 28 ? FERROR
303 : FINFO;
304 io_error |= IOERR_VANISHED;
305 rprintf(c, "file has vanished: %s\n",
306 full_fname(fname));
307 } else {
308 io_error |= IOERR_GENERAL;
309 rsyserr(FERROR, errno,
310 "send_files failed to open %s",
311 full_fname(fname));
312 }
313 free_sums(s);
314 continue;
315 }
316
317 /* map the local file */
318 if (do_fstat(fd, &st) != 0) {
319 io_error |= IOERR_GENERAL;
320 rsyserr(FERROR, errno, "fstat failed");
321 free_sums(s);
322 close(fd);
323 return;
324 }
325
326 if (st.st_size) {
327 int32 read_size = MAX(s->blength * 3, MAX_MAP_SIZE);
328 mbuf = map_file(fd, st.st_size, read_size, s->blength);
329 } else
330 mbuf = NULL;
331
332 if (verbose > 2) {
333 rprintf(FINFO, "send_files mapped %s of size %.0f\n",
334 fname, (double)st.st_size);
335 }
336
337 write_ndx_and_attrs(f_out, i, iflags, fnamecmp_type,
338 xname, xlen);
339 write_sum_head(f_xfer, s);
340
341 if (verbose > 2)
342 rprintf(FINFO, "calling match_sums %s\n", fname);
343
344 if (log_before_transfer)
345 log_item(file, &initial_stats, iflags, NULL);
346 else if (!am_server && verbose && do_progress)
347 rprintf(FINFO, "%s\n", fname2);
348
349 set_compression(fname);
350
351 match_sums(f_xfer, s, mbuf, st.st_size);
352 if (do_progress)
353 end_progress(st.st_size);
354
355 if (!log_before_transfer)
356 log_item(file, &initial_stats, iflags, NULL);
357
358 if (mbuf) {
359 j = unmap_file(mbuf);
360 if (j) {
361 io_error |= IOERR_GENERAL;
362 rsyserr(FERROR, j,
363 "read errors mapping %s",
364 full_fname(fname));
365 }
366 }
367 close(fd);
368
369 free_sums(s);
370
371 if (verbose > 2)
372 rprintf(FINFO, "sender finished %s\n", fname);
373
374 /* Flag that we actually sent this entry. */
375 file->flags |= FLAG_SENT;
376 }
377 make_backups = save_make_backups;
378
379 if (verbose > 2)
380 rprintf(FINFO, "send files finished\n");
381
382 match_report();
383
384 write_int(f_out, -1);
385}