2 * Routines only used by the sending process.
4 * Copyright (C) 1996 Andrew Tridgell
5 * Copyright (C) 1996 Paul Mackerras
6 * Copyright (C) 2003-2008 Wayne Davison
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 3 of the License, or
11 * (at your option) any later version.
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.
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, visit the http://fsf.org website.
29 extern int inc_recurse
;
30 extern int log_before_transfer
;
31 extern int stdout_format_has_i
;
32 extern int logfile_format_has_i
;
33 extern int csum_length
;
34 extern int append_mode
;
36 extern int allowed_lull
;
37 extern int preserve_xattrs
;
38 extern int protocol_version
;
39 extern int remove_source_files
;
40 extern int updating_basis_file
;
41 extern int make_backups
;
42 extern int do_progress
;
45 extern int write_batch
;
46 extern struct stats stats
;
47 extern struct file_list
*cur_flist
, *first_flist
, *dir_flist
;
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.
58 * Receive the checksums for a buffer
60 static struct sum_struct
*receive_sums(int f
)
64 int lull_mod
= allowed_lull
* 5;
67 if (!(s
= new(struct sum_struct
)))
68 out_of_memory("receive_sums");
75 rprintf(FINFO
, "count=%.0f n=%ld rem=%ld\n",
76 (double)s
->count
, (long)s
->blength
, (long)s
->remainder
);
79 if (append_mode
> 0) {
80 s
->flength
= (OFF_T
)s
->count
* s
->blength
;
82 s
->flength
-= s
->blength
- s
->remainder
;
89 if (!(s
->sums
= new_array(struct sum_buf
, s
->count
)))
90 out_of_memory("receive_sums");
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
);
96 s
->sums
[i
].offset
= offset
;
99 if (i
== s
->count
-1 && s
->remainder
!= 0)
100 s
->sums
[i
].len
= s
->remainder
;
102 s
->sums
[i
].len
= s
->blength
;
103 offset
+= s
->sums
[i
].len
;
105 if (allowed_lull
&& !(i
% lull_mod
))
106 maybe_send_keepalive();
110 "chunk[%d] len=%d offset=%.0f sum1=%08x\n",
111 i
, s
->sums
[i
].len
, (double)s
->sums
[i
].offset
,
121 void successful_send(int ndx
)
123 char fname
[MAXPATHLEN
];
124 struct file_struct
*file
;
125 struct file_list
*flist
;
127 if (!remove_source_files
)
130 flist
= flist_for_ndx(ndx
, "successful_send");
131 file
= flist
->files
[ndx
- flist
->ndx_start
];
132 if (!change_pathname(file
, NULL
, 0))
136 if (do_unlink(fname
) == 0) {
138 rprintf(FINFO
, "sender removed %s\n", fname
);
140 rsyserr(FERROR
, errno
, "sender failed to remove %s", fname
);
143 static void write_ndx_and_attrs(int f_out
, int ndx
, int iflags
,
144 const char *fname
, struct file_struct
*file
,
145 uchar fnamecmp_type
, char *buf
, int len
)
147 write_ndx(f_out
, ndx
);
148 if (protocol_version
< 29)
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 #ifdef SUPPORT_XATTRS
156 if (preserve_xattrs
&& iflags
& ITEM_REPORT_XATTR
&& !dry_run
)
157 send_xattr_request(fname
, file
, f_out
);
161 void send_files(int f_in
, int f_out
)
164 struct sum_struct
*s
;
165 struct map_struct
*mbuf
= NULL
;
167 char fname
[MAXPATHLEN
], xname
[MAXPATHLEN
];
168 const char *path
, *slash
;
171 struct file_struct
*file
;
172 int phase
= 0, max_phase
= protocol_version
>= 29 ? 2 : 1;
173 struct stats initial_stats
;
174 int itemizing
= am_server
? logfile_format_has_i
: stdout_format_has_i
;
175 enum logcode log_code
= log_before_transfer
? FLOG
: FINFO
;
176 int f_xfer
= write_batch
< 0 ? batch_fd
: f_out
;
180 rprintf(FINFO
, "send_files starting\n");
184 send_extra_file_list(f_out
, FILECNT_LOOKAHEAD
);
186 /* This call also sets cur_flist. */
187 ndx
= read_ndx_and_attrs(f_in
, &iflags
, &fnamecmp_type
,
189 if (ndx
== NDX_DONE
) {
190 if (inc_recurse
&& first_flist
) {
191 flist_free(first_flist
);
193 write_ndx(f_out
, NDX_DONE
);
197 if (++phase
> max_phase
)
200 rprintf(FINFO
, "send_files phase=%d\n", phase
);
201 write_ndx(f_out
, NDX_DONE
);
206 send_extra_file_list(f_out
, FILECNT_LOOKAHEAD
);
208 if (ndx
- cur_flist
->ndx_start
>= 0)
209 file
= cur_flist
->files
[ndx
- cur_flist
->ndx_start
];
211 file
= dir_flist
->files
[cur_flist
->parent_ndx
];
212 if (F_PATHNAME(file
)) {
213 path
= F_PATHNAME(file
);
218 if (!change_pathname(file
, NULL
, 0))
223 rprintf(FINFO
, "send_files(%d, %s%s%s)\n", ndx
, path
,slash
,fname
);
225 #ifdef SUPPORT_XATTRS
226 if (preserve_xattrs
&& iflags
& ITEM_REPORT_XATTR
&& !dry_run
)
227 recv_xattr_request(file
, f_in
);
230 if (!(iflags
& ITEM_TRANSFER
)) {
231 maybe_log_item(file
, iflags
, itemizing
, xname
);
232 write_ndx_and_attrs(f_out
, ndx
, iflags
, fname
, file
,
233 fnamecmp_type
, xname
, xlen
);
238 "got transfer request in phase 2 [%s]\n",
240 exit_cleanup(RERR_PROTOCOL
);
243 if (file
->flags
& FLAG_FILE_SENT
) {
244 if (csum_length
== SHORT_SUM_LENGTH
) {
245 /* For inplace: redo phase turns off the backup
246 * flag so that we do a regular inplace send. */
247 make_backups
= -make_backups
;
248 append_mode
= -append_mode
;
249 csum_length
= SUM_LENGTH
;
252 if (csum_length
!= SHORT_SUM_LENGTH
) {
253 make_backups
= -make_backups
;
254 append_mode
= -append_mode
;
255 csum_length
= SHORT_SUM_LENGTH
;
259 updating_basis_file
= inplace
&& (protocol_version
>= 29
260 ? fnamecmp_type
== FNAMECMP_FNAME
: make_backups
<= 0);
262 if (!am_server
&& do_progress
)
263 set_current_file_index(file
, ndx
);
264 stats
.num_transferred_files
++;
265 stats
.total_transferred_size
+= F_LENGTH(file
);
267 if (!do_xfers
) { /* log the transfer */
268 log_item(FCLIENT
, file
, &stats
, iflags
, NULL
);
269 write_ndx_and_attrs(f_out
, ndx
, iflags
, fname
, file
,
270 fnamecmp_type
, xname
, xlen
);
274 initial_stats
= stats
;
276 if (!(s
= receive_sums(f_in
))) {
277 io_error
|= IOERR_GENERAL
;
278 rprintf(FERROR_XFER
, "receive_sums failed\n");
279 exit_cleanup(RERR_PROTOCOL
);
282 fd
= do_open(fname
, O_RDONLY
, 0);
284 if (errno
== ENOENT
) {
285 enum logcode c
= am_daemon
286 && protocol_version
< 28 ? FERROR
288 io_error
|= IOERR_VANISHED
;
289 rprintf(c
, "file has vanished: %s\n",
292 io_error
|= IOERR_GENERAL
;
293 rsyserr(FERROR_XFER
, errno
,
294 "send_files failed to open %s",
298 if (protocol_version
>= 30)
299 send_msg_int(MSG_NO_SEND
, ndx
);
303 /* map the local file */
304 if (do_fstat(fd
, &st
) != 0) {
305 io_error
|= IOERR_GENERAL
;
306 rsyserr(FERROR_XFER
, errno
, "fstat failed");
309 exit_cleanup(RERR_PROTOCOL
);
313 int32 read_size
= MAX(s
->blength
* 3, MAX_MAP_SIZE
);
314 mbuf
= map_file(fd
, st
.st_size
, read_size
, s
->blength
);
319 rprintf(FINFO
, "send_files mapped %s%s%s of size %.0f\n",
320 path
,slash
,fname
, (double)st
.st_size
);
323 write_ndx_and_attrs(f_out
, ndx
, iflags
, fname
, file
,
324 fnamecmp_type
, xname
, xlen
);
325 write_sum_head(f_xfer
, s
);
328 rprintf(FINFO
, "calling match_sums %s%s%s\n", path
,slash
,fname
);
330 if (log_before_transfer
)
331 log_item(FCLIENT
, file
, &initial_stats
, iflags
, NULL
);
332 else if (!am_server
&& verbose
&& do_progress
)
333 rprintf(FCLIENT
, "%s\n", fname
);
335 set_compression(fname
);
337 match_sums(f_xfer
, s
, mbuf
, st
.st_size
);
339 end_progress(st
.st_size
);
341 log_item(log_code
, file
, &initial_stats
, iflags
, NULL
);
344 j
= unmap_file(mbuf
);
346 io_error
|= IOERR_GENERAL
;
347 rsyserr(FERROR_XFER
, j
,
348 "read errors mapping %s",
357 rprintf(FINFO
, "sender finished %s%s%s\n", path
,slash
,fname
);
359 /* Flag that we actually sent this entry. */
360 file
->flags
|= FLAG_FILE_SENT
;
362 if (make_backups
< 0)
363 make_backups
= -make_backups
;
366 rprintf(FINFO
, "send files finished\n");
370 write_ndx(f_out
, NDX_DONE
);