2 * Routines only used by the sending process.
4 * Copyright (C) 1996 Andrew Tridgell
5 * Copyright (C) 1996 Paul Mackerras
6 * Copyright (C) 2003-2009 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.
28 extern int inc_recurse
;
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
;
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
;
44 extern int write_batch
;
45 extern int file_old_total
;
46 extern struct stats stats
;
47 extern struct file_list
*cur_flist
, *first_flist
, *dir_flist
;
49 BOOL extra_flist_sending_enabled
;
54 * The sender gets checksums from the generator, calculates deltas,
55 * and transmits them to the receiver. The sender process runs on the
56 * machine holding the source files.
60 * Receive the checksums for a buffer
62 static struct sum_struct
*receive_sums(int f
)
66 int lull_mod
= protocol_version
>= 31 ? 0 : allowed_lull
* 5;
69 if (!(s
= new(struct sum_struct
)))
70 out_of_memory("receive_sums");
76 if (DEBUG_GTE(DELTASUM
, 3)) {
77 rprintf(FINFO
, "count=%s n=%ld rem=%ld\n",
78 big_num(s
->count
), (long)s
->blength
, (long)s
->remainder
);
81 if (append_mode
> 0) {
82 s
->flength
= (OFF_T
)s
->count
* s
->blength
;
84 s
->flength
-= s
->blength
- s
->remainder
;
91 if (!(s
->sums
= new_array(struct sum_buf
, s
->count
)))
92 out_of_memory("receive_sums");
94 for (i
= 0; i
< s
->count
; i
++) {
95 s
->sums
[i
].sum1
= read_int(f
);
96 read_buf(f
, s
->sums
[i
].sum2
, s
->s2length
);
98 s
->sums
[i
].offset
= offset
;
101 if (i
== s
->count
-1 && s
->remainder
!= 0)
102 s
->sums
[i
].len
= s
->remainder
;
104 s
->sums
[i
].len
= s
->blength
;
105 offset
+= s
->sums
[i
].len
;
107 if (lull_mod
&& !(i
% lull_mod
))
108 maybe_send_keepalive(time(NULL
), True
);
110 if (DEBUG_GTE(DELTASUM
, 3)) {
112 "chunk[%d] len=%d offset=%s sum1=%08x\n",
113 i
, s
->sums
[i
].len
, big_num(s
->sums
[i
].offset
),
123 void successful_send(int ndx
)
125 char fname
[MAXPATHLEN
];
126 struct file_struct
*file
;
127 struct file_list
*flist
;
129 if (!remove_source_files
)
132 flist
= flist_for_ndx(ndx
, "successful_send");
133 file
= flist
->files
[ndx
- flist
->ndx_start
];
134 if (!change_pathname(file
, NULL
, 0))
138 if (do_unlink(fname
) == 0) {
139 if (INFO_GTE(REMOVE
, 1))
140 rprintf(FINFO
, "sender removed %s\n", fname
);
142 rsyserr(FERROR
, errno
, "sender failed to remove %s", fname
);
145 static void write_ndx_and_attrs(int f_out
, int ndx
, int iflags
,
146 const char *fname
, struct file_struct
*file
,
147 uchar fnamecmp_type
, char *buf
, int len
)
149 write_ndx(f_out
, ndx
);
150 if (protocol_version
< 29)
152 write_shortint(f_out
, iflags
);
153 if (iflags
& ITEM_BASIS_TYPE_FOLLOWS
)
154 write_byte(f_out
, fnamecmp_type
);
155 if (iflags
& ITEM_XNAME_FOLLOWS
)
156 write_vstring(f_out
, buf
, len
);
157 #ifdef SUPPORT_XATTRS
158 if (preserve_xattrs
&& iflags
& ITEM_REPORT_XATTR
&& do_xfers
)
159 send_xattr_request(fname
, file
, f_out
);
163 void send_files(int f_in
, int f_out
)
166 struct sum_struct
*s
;
167 struct map_struct
*mbuf
= NULL
;
169 char fname
[MAXPATHLEN
], xname
[MAXPATHLEN
];
170 const char *path
, *slash
;
173 struct file_struct
*file
;
174 int phase
= 0, max_phase
= protocol_version
>= 29 ? 2 : 1;
175 int itemizing
= am_server
? logfile_format_has_i
: stdout_format_has_i
;
176 enum logcode log_code
= log_before_transfer
? FLOG
: FINFO
;
177 int f_xfer
= write_batch
< 0 ? batch_fd
: f_out
;
178 int save_io_error
= io_error
;
181 if (DEBUG_GTE(SEND
, 1))
182 rprintf(FINFO
, "send_files starting\n");
186 send_extra_file_list(f_out
, MIN_FILECNT_LOOKAHEAD
);
187 extra_flist_sending_enabled
= !flist_eof
;
190 /* This call also sets cur_flist. */
191 ndx
= read_ndx_and_attrs(f_in
, f_out
, &iflags
, &fnamecmp_type
,
193 extra_flist_sending_enabled
= False
;
195 if (ndx
== NDX_DONE
) {
196 if (!am_server
&& INFO_GTE(PROGRESS
, 2) && cur_flist
) {
197 set_current_file_index(NULL
, 0);
200 if (inc_recurse
&& first_flist
) {
201 file_old_total
-= first_flist
->used
;
202 flist_free(first_flist
);
204 if (first_flist
== cur_flist
)
205 file_old_total
= cur_flist
->used
;
206 write_ndx(f_out
, NDX_DONE
);
210 if (++phase
> max_phase
)
212 if (DEBUG_GTE(SEND
, 1))
213 rprintf(FINFO
, "send_files phase=%d\n", phase
);
214 write_ndx(f_out
, NDX_DONE
);
219 send_extra_file_list(f_out
, MIN_FILECNT_LOOKAHEAD
);
221 if (ndx
- cur_flist
->ndx_start
>= 0)
222 file
= cur_flist
->files
[ndx
- cur_flist
->ndx_start
];
224 file
= dir_flist
->files
[cur_flist
->parent_ndx
];
225 if (F_PATHNAME(file
)) {
226 path
= F_PATHNAME(file
);
231 if (!change_pathname(file
, NULL
, 0))
235 if (DEBUG_GTE(SEND
, 1))
236 rprintf(FINFO
, "send_files(%d, %s%s%s)\n", ndx
, path
,slash
,fname
);
238 #ifdef SUPPORT_XATTRS
239 if (preserve_xattrs
&& iflags
& ITEM_REPORT_XATTR
&& do_xfers
)
240 recv_xattr_request(file
, f_in
);
243 if (!(iflags
& ITEM_TRANSFER
)) {
244 maybe_log_item(file
, iflags
, itemizing
, xname
);
245 write_ndx_and_attrs(f_out
, ndx
, iflags
, fname
, file
,
246 fnamecmp_type
, xname
, xlen
);
247 if (iflags
& ITEM_IS_NEW
) {
248 stats
.created_files
++;
249 if (S_ISREG(file
->mode
)) {
250 /* Nothing further to count. */
251 } else if (S_ISDIR(file
->mode
))
252 stats
.created_dirs
++;
254 else if (S_ISLNK(file
->mode
))
255 stats
.created_symlinks
++;
257 else if (IS_DEVICE(file
->mode
))
258 stats
.created_devices
++;
260 stats
.created_specials
++;
266 "got transfer request in phase 2 [%s]\n",
268 exit_cleanup(RERR_PROTOCOL
);
271 if (file
->flags
& FLAG_FILE_SENT
) {
272 if (csum_length
== SHORT_SUM_LENGTH
) {
273 /* For inplace: redo phase turns off the backup
274 * flag so that we do a regular inplace send. */
275 make_backups
= -make_backups
;
276 append_mode
= -append_mode
;
277 csum_length
= SUM_LENGTH
;
280 if (csum_length
!= SHORT_SUM_LENGTH
) {
281 make_backups
= -make_backups
;
282 append_mode
= -append_mode
;
283 csum_length
= SHORT_SUM_LENGTH
;
285 if (iflags
& ITEM_IS_NEW
)
286 stats
.created_files
++;
289 updating_basis_file
= inplace
&& (protocol_version
>= 29
290 ? fnamecmp_type
== FNAMECMP_FNAME
: make_backups
<= 0);
292 if (!am_server
&& INFO_GTE(PROGRESS
, 1))
293 set_current_file_index(file
, ndx
);
294 stats
.xferred_files
++;
295 stats
.total_transferred_size
+= F_LENGTH(file
);
297 if (!log_before_transfer
)
298 remember_initial_stats();
300 if (!do_xfers
) { /* log the transfer */
301 log_item(FCLIENT
, file
, iflags
, NULL
);
302 write_ndx_and_attrs(f_out
, ndx
, iflags
, fname
, file
,
303 fnamecmp_type
, xname
, xlen
);
307 if (!(s
= receive_sums(f_in
))) {
308 io_error
|= IOERR_GENERAL
;
309 rprintf(FERROR_XFER
, "receive_sums failed\n");
310 exit_cleanup(RERR_PROTOCOL
);
313 fd
= do_open(fname
, O_RDONLY
, 0);
315 if (errno
== ENOENT
) {
316 enum logcode c
= am_daemon
317 && protocol_version
< 28 ? FERROR
319 io_error
|= IOERR_VANISHED
;
320 rprintf(c
, "file has vanished: %s\n",
323 io_error
|= IOERR_GENERAL
;
324 rsyserr(FERROR_XFER
, errno
,
325 "send_files failed to open %s",
329 if (protocol_version
>= 30)
330 send_msg_int(MSG_NO_SEND
, ndx
);
334 /* map the local file */
335 if (do_fstat(fd
, &st
) != 0) {
336 io_error
|= IOERR_GENERAL
;
337 rsyserr(FERROR_XFER
, errno
, "fstat failed");
340 exit_cleanup(RERR_FILEIO
);
344 int32 read_size
= MAX(s
->blength
* 3, MAX_MAP_SIZE
);
345 mbuf
= map_file(fd
, st
.st_size
, read_size
, s
->blength
);
349 if (DEBUG_GTE(DELTASUM
, 2)) {
350 rprintf(FINFO
, "send_files mapped %s%s%s of size %s\n",
351 path
,slash
,fname
, big_num(st
.st_size
));
354 write_ndx_and_attrs(f_out
, ndx
, iflags
, fname
, file
,
355 fnamecmp_type
, xname
, xlen
);
356 write_sum_head(f_xfer
, s
);
358 if (DEBUG_GTE(DELTASUM
, 2))
359 rprintf(FINFO
, "calling match_sums %s%s%s\n", path
,slash
,fname
);
361 if (log_before_transfer
)
362 log_item(FCLIENT
, file
, iflags
, NULL
);
363 else if (!am_server
&& INFO_GTE(NAME
, 1) && INFO_EQ(PROGRESS
, 1))
364 rprintf(FCLIENT
, "%s\n", fname
);
366 set_compression(fname
);
368 match_sums(f_xfer
, s
, mbuf
, st
.st_size
);
369 if (INFO_GTE(PROGRESS
, 1))
370 end_progress(st
.st_size
);
372 log_item(log_code
, file
, iflags
, NULL
);
375 j
= unmap_file(mbuf
);
377 io_error
|= IOERR_GENERAL
;
378 rsyserr(FERROR_XFER
, j
,
379 "read errors mapping %s",
387 if (DEBUG_GTE(SEND
, 1))
388 rprintf(FINFO
, "sender finished %s%s%s\n", path
,slash
,fname
);
390 /* Flag that we actually sent this entry. */
391 file
->flags
|= FLAG_FILE_SENT
;
393 if (make_backups
< 0)
394 make_backups
= -make_backups
;
396 if (io_error
!= save_io_error
&& protocol_version
>= 30)
397 send_msg_int(MSG_IO_ERROR
, io_error
);
399 if (DEBUG_GTE(SEND
, 1))
400 rprintf(FINFO
, "send files finished\n");
404 write_ndx(f_out
, NDX_DONE
);