Optimized away the post-transfer directory loop in certain
[rsync/rsync.git] / sender.c
CommitLineData
e6e3f12f 1/*
2f03f956
AT
2 Copyright (C) Andrew Tridgell 1996
3 Copyright (C) Paul Mackerras 1996
e6e3f12f 4
2f03f956
AT
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.
e6e3f12f 9
2f03f956
AT
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.
e6e3f12f 14
2f03f956
AT
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
22extern int verbose;
2f03f956
AT
23extern int csum_length;
24extern struct stats stats;
25extern int io_error;
26extern int dry_run;
27extern int am_server;
d6631cf3
WD
28extern int am_daemon;
29extern int protocol_version;
53f8519a 30extern int updating_basis_file;
8b115ac8 31extern int make_backups;
53f8519a 32extern int inplace;
a3221d2a 33extern struct stats stats;
2f03f956
AT
34
35
0f9c48b1
MP
36/**
37 * @file
38 *
39 * The sender gets checksums from the generator, calculates deltas,
40 * and transmits them to the receiver. The sender process runs on the
41 * machine holding the source files.
42 **/
fc0257c9 43
ce8149b6
MP
44/**
45 * Receive the checksums for a buffer
46 **/
2f03f956
AT
47static struct sum_struct *receive_sums(int f)
48{
49 struct sum_struct *s;
50 int i;
51 OFF_T offset = 0;
52
a3221d2a
WD
53 if (!(s = new(struct sum_struct)))
54 out_of_memory("receive_sums");
2f03f956 55
fc0257c9
S
56 read_sum_head(f, s);
57
2f03f956
AT
58 s->sums = NULL;
59
da9d12f5 60 if (verbose > 3) {
6c495e0d
WD
61 rprintf(FINFO, "count=%.0f n=%ld rem=%ld\n",
62 (double)s->count, (long)s->blength, (long)s->remainder);
da9d12f5 63 }
2f03f956 64
e6e3f12f 65 if (s->count == 0)
2f03f956
AT
66 return(s);
67
a3221d2a
WD
68 if (!(s->sums = new_array(struct sum_buf, s->count)))
69 out_of_memory("receive_sums");
2f03f956 70
a3221d2a 71 for (i = 0; i < (int)s->count; i++) {
2f03f956 72 s->sums[i].sum1 = read_int(f);
e6e3f12f 73 read_buf(f, s->sums[i].sum2, s->s2length);
2f03f956
AT
74
75 s->sums[i].offset = offset;
a3221d2a 76 s->sums[i].flags = 0;
2f03f956 77
a3221d2a 78 if (i == (int)s->count-1 && s->remainder != 0)
2f03f956 79 s->sums[i].len = s->remainder;
a3221d2a 80 else
fc0257c9 81 s->sums[i].len = s->blength;
2f03f956
AT
82 offset += s->sums[i].len;
83
a3221d2a
WD
84 if (verbose > 3) {
85 rprintf(FINFO,
86 "chunk[%d] len=%d offset=%.0f sum1=%08x\n",
87 i, s->sums[i].len, (double)s->sums[i].offset,
88 s->sums[i].sum1);
89 }
2f03f956
AT
90 }
91
92 s->flength = offset;
93
94 return s;
95}
96
97
98
e6e3f12f
S
99void send_files(struct file_list *flist, int f_out, int f_in)
100{
c1659c79 101 int fd = -1;
2f03f956 102 struct sum_struct *s;
41cc97ae 103 struct map_struct *mbuf = NULL;
2f03f956 104 STRUCT_STAT st;
ecc81fce 105 char *fname2, fname[MAXPATHLEN];
2f03f956
AT
106 int i;
107 struct file_struct *file;
108 int phase = 0;
1b7c47cb 109 struct stats initial_stats;
8b115ac8 110 int save_make_backups = make_backups;
64c3523a 111 int j;
2f03f956
AT
112
113 if (verbose > 2)
e6e3f12f 114 rprintf(FINFO, "send_files starting\n");
2f03f956 115
2f03f956 116 while (1) {
3fef5364 117 unsigned int offset;
2f03f956
AT
118
119 i = read_int(f_in);
120 if (i == -1) {
e6e3f12f 121 if (phase == 0) {
2f03f956
AT
122 phase++;
123 csum_length = SUM_LENGTH;
e6e3f12f 124 write_int(f_out, -1);
2f03f956 125 if (verbose > 2)
e6e3f12f 126 rprintf(FINFO, "send_files phase=%d\n", phase);
9715c589
WD
127 /* For inplace: redo phase turns off the backup
128 * flag so that we do a regular inplace send. */
8b115ac8 129 make_backups = 0;
2f03f956
AT
130 continue;
131 }
132 break;
133 }
134
135 if (i < 0 || i >= flist->count) {
e6e3f12f 136 rprintf(FERROR, "Invalid file index %d (count=%d)\n",
2f03f956 137 i, flist->count);
65417579 138 exit_cleanup(RERR_PROTOCOL);
2f03f956
AT
139 }
140
141 file = flist->files[i];
142
97feb557 143 stats.current_file_index = i;
2f03f956
AT
144 stats.num_transferred_files++;
145 stats.total_transferred_size += file->length;
146
2f03f956 147 if (file->basedir) {
421c2a24
WD
148 /* N.B. We're sure that this fits, so offset is OK. */
149 offset = strlcpy(fname, file->basedir, sizeof fname);
150 if (!offset || fname[offset-1] != '/')
151 fname[offset++] = '/';
3fef5364
WD
152 } else
153 offset = 0;
ecc81fce 154 fname2 = f_name_to(file, fname + offset);
53f8519a
WD
155 if (inplace && protocol_version >= 29) {
156 uchar fnamecmp_type = read_byte(f_in);
157 updating_basis_file = fnamecmp_type == FNAMECMP_FNAME;
158 } else
159 updating_basis_file = inplace && !make_backups;
e6e3f12f
S
160
161 if (verbose > 2)
162 rprintf(FINFO, "send_files(%d, %s)\n", i, fname);
163
164 if (dry_run) {
ecc81fce
WD
165 if (!am_server && verbose) /* log the transfer */
166 rprintf(FINFO, "%s\n", safe_fname(fname2));
e6e3f12f 167 write_int(f_out, i);
2f03f956
AT
168 continue;
169 }
170
1b7c47cb
AT
171 initial_stats = stats;
172
efa95a18 173 if (!(s = receive_sums(f_in))) {
06c28400 174 io_error |= IOERR_GENERAL;
e6e3f12f 175 rprintf(FERROR, "receive_sums failed\n");
2f03f956
AT
176 return;
177 }
76f79ba7 178
b9f592fb
WD
179 fd = do_open(fname, O_RDONLY, 0);
180 if (fd == -1) {
181 if (errno == ENOENT) {
182 enum logcode c = am_daemon
183 && protocol_version < 28 ? FERROR
184 : FINFO;
185 io_error |= IOERR_VANISHED;
186 rprintf(c, "file has vanished: %s\n",
187 full_fname(fname));
188 } else {
06c28400 189 io_error |= IOERR_GENERAL;
b9f592fb
WD
190 rsyserr(FERROR, errno,
191 "send_files failed to open %s",
192 full_fname(fname));
41cc97ae 193 }
b9f592fb
WD
194 free_sums(s);
195 continue;
196 }
e6e3f12f 197
b9f592fb
WD
198 /* map the local file */
199 if (do_fstat(fd, &st) != 0) {
200 io_error |= IOERR_GENERAL;
201 rsyserr(FERROR, errno, "fstat failed");
202 free_sums(s);
203 close(fd);
204 return;
205 }
11a5a3c7 206
96d910c7 207 if (st.st_size) {
9b919d59
WD
208 int32 read_size = MAX(s->blength * 3, MAX_MAP_SIZE);
209 mbuf = map_file(fd, st.st_size, read_size, s->blength);
96d910c7
WD
210 } else
211 mbuf = NULL;
6902ed17 212
b9f592fb
WD
213 if (verbose > 2) {
214 rprintf(FINFO, "send_files mapped %s of size %.0f\n",
ecc81fce 215 safe_fname(fname), (double)st.st_size);
6902ed17 216 }
e6e3f12f 217
b9f592fb
WD
218 write_int(f_out, i);
219 write_sum_head(f_out, s);
220
ecc81fce
WD
221 if (verbose > 2) {
222 rprintf(FINFO, "calling match_sums %s\n",
223 safe_fname(fname));
11a5a3c7 224 }
83fff1aa 225
ecc81fce
WD
226 if (!am_server && verbose) /* log the transfer */
227 rprintf(FINFO, "%s\n", safe_fname(fname2));
228
83fff1aa 229 set_compression(fname);
1b7c47cb 230
b9f592fb
WD
231 match_sums(f_out, s, mbuf, st.st_size);
232 log_send(file, &initial_stats);
6902ed17 233
b9f592fb
WD
234 if (mbuf) {
235 j = unmap_file(mbuf);
236 if (j) {
237 io_error |= IOERR_GENERAL;
238 rsyserr(FERROR, j,
239 "read errors mapping %s",
240 full_fname(fname));
6a7cc46c 241 }
6902ed17 242 }
b9f592fb 243 close(fd);
e6e3f12f 244
2f03f956 245 free_sums(s);
e6e3f12f 246
ecc81fce
WD
247 if (verbose > 2) {
248 rprintf(FINFO, "sender finished %s\n",
249 safe_fname(fname));
250 }
2f03f956 251 }
8b115ac8 252 make_backups = save_make_backups;
2f03f956
AT
253
254 if (verbose > 2)
e6e3f12f 255 rprintf(FINFO, "send files finished\n");
2f03f956
AT
256
257 match_report();
258
e6e3f12f 259 write_int(f_out, -1);
2f03f956 260}