Got rid of the name-pipe, so we now read the fnamecmp_type data over
[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;
7f37167d 23extern int dry_run;
8715db2c
WD
24extern int am_server;
25extern int am_daemon;
8a9cfb24 26extern int log_before_transfer;
7f37167d
WD
27extern int log_format_has_i;
28extern int daemon_log_format_has_i;
2f03f956 29extern int csum_length;
2f03f956 30extern int io_error;
d6631cf3 31extern int protocol_version;
95306d9d 32extern int remove_sent_files;
53f8519a 33extern int updating_basis_file;
8b115ac8 34extern int make_backups;
8a9cfb24 35extern int do_progress;
53f8519a 36extern int inplace;
a3221d2a 37extern struct stats stats;
5f40615c 38extern struct file_list *the_file_list;
8715db2c 39extern char *log_format;
2f03f956
AT
40
41
0f9c48b1
MP
42/**
43 * @file
44 *
45 * The sender gets checksums from the generator, calculates deltas,
46 * and transmits them to the receiver. The sender process runs on the
47 * machine holding the source files.
48 **/
fc0257c9 49
ce8149b6
MP
50/**
51 * Receive the checksums for a buffer
52 **/
2f03f956
AT
53static struct sum_struct *receive_sums(int f)
54{
55 struct sum_struct *s;
a1cbe76e 56 int32 i;
2f03f956
AT
57 OFF_T offset = 0;
58
a3221d2a
WD
59 if (!(s = new(struct sum_struct)))
60 out_of_memory("receive_sums");
2f03f956 61
fc0257c9
S
62 read_sum_head(f, s);
63
2f03f956
AT
64 s->sums = NULL;
65
da9d12f5 66 if (verbose > 3) {
6c495e0d
WD
67 rprintf(FINFO, "count=%.0f n=%ld rem=%ld\n",
68 (double)s->count, (long)s->blength, (long)s->remainder);
da9d12f5 69 }
2f03f956 70
e6e3f12f 71 if (s->count == 0)
2f03f956
AT
72 return(s);
73
a3221d2a
WD
74 if (!(s->sums = new_array(struct sum_buf, s->count)))
75 out_of_memory("receive_sums");
2f03f956 76
eed47b6b 77 for (i = 0; i < s->count; i++) {
2f03f956 78 s->sums[i].sum1 = read_int(f);
e6e3f12f 79 read_buf(f, s->sums[i].sum2, s->s2length);
2f03f956
AT
80
81 s->sums[i].offset = offset;
a3221d2a 82 s->sums[i].flags = 0;
2f03f956 83
eed47b6b 84 if (i == s->count-1 && s->remainder != 0)
2f03f956 85 s->sums[i].len = s->remainder;
a3221d2a 86 else
fc0257c9 87 s->sums[i].len = s->blength;
2f03f956
AT
88 offset += s->sums[i].len;
89
a3221d2a
WD
90 if (verbose > 3) {
91 rprintf(FINFO,
92 "chunk[%d] len=%d offset=%.0f sum1=%08x\n",
93 i, s->sums[i].len, (double)s->sums[i].offset,
94 s->sums[i].sum1);
95 }
2f03f956
AT
96 }
97
98 s->flength = offset;
99
100 return s;
101}
102
5f40615c 103void successful_send(int ndx)
95306d9d
WD
104{
105 char fname[MAXPATHLEN];
106 struct file_struct *file;
107 unsigned int offset;
108
5f40615c 109 if (ndx < 0 || ndx >= the_file_list->count)
95306d9d
WD
110 return;
111
5f40615c 112 file = the_file_list->files[ndx];
95306d9d
WD
113 /* The generator might tell us about symlinks we didn't send. */
114 if (!(file->flags & FLAG_SENT) && !S_ISLNK(file->mode))
115 return;
116 if (file->dir.root) {
117 offset = stringjoin(fname, sizeof fname,
118 file->dir.root, "/", NULL);
119 } else
120 offset = 0;
121 f_name_to(file, fname + offset);
122 if (remove_sent_files && do_unlink(fname) == 0 && verbose > 1) {
123 rprintf(FINFO, "sender removed %s\n",
124 safe_fname(fname + offset));
125 }
126}
2f03f956 127
165e6d44
WD
128/* This is also used by receive.c with f_out = -1. */
129int read_iflags(int f_in, int f_out, int ndx, char *buf)
130{
fad3dc42 131 int len;
165e6d44 132 int iflags = protocol_version >= 29 ? read_shortint(f_in)
fad3dc42
WD
133 : ITEM_TRANSFER | ITEM_MISSING_DATA;
134 int isave = iflags; /* XXX remove soon */
165e6d44
WD
135
136 /* Handle the new keep-alive (no-op) packet. */
137 if (ndx == the_file_list->count && iflags == ITEM_IS_NEW)
138 ;
139 else if (ndx < 0 || ndx >= the_file_list->count) {
140 rprintf(FERROR, "Invalid file index %d (count=%d) [%s]\n",
141 ndx, the_file_list->count, who_am_i());
142 exit_cleanup(RERR_PROTOCOL);
143 } else if (iflags == ITEM_IS_NEW) {
144 rprintf(FERROR, "Invalid itemized flag word [%s]\n",
145 who_am_i());
146 exit_cleanup(RERR_PROTOCOL);
147 }
148
fad3dc42
WD
149 if (iflags & ITEM_HARD_LINKED)
150 len = read_vstring(f_in, buf, MAXPATHLEN);
151 else {
152 *buf = '\0';
153 len = -1;
154 }
155
c2b11ba0
WD
156 /* XXX Temporary backward compatibility when talking to 2.6.4pre[12] */
157 if (protocol_version >= 29 && iflags & ITEM_TRANSFER
158 && !S_ISREG(the_file_list->files[ndx]->mode)) {
159 iflags &= ~ITEM_TRANSFER;
160 iflags |= ITEM_LOCAL_CHANGE;
fad3dc42 161 }
85aa57a7 162
fad3dc42
WD
163 if (iflags & ITEM_TRANSFER) {
164 if (!S_ISREG(the_file_list->files[ndx]->mode)) {
165 rprintf(FERROR,
166 "received index of non-regular file: %d [%s]\n",
167 ndx, who_am_i());
168 exit_cleanup(RERR_PROTOCOL);
169 }
170 } else if (f_out >= 0) {
165e6d44 171 write_int(f_out, ndx);
c2f0e6e5
WD
172 if (protocol_version >= 29)
173 write_shortint(f_out, isave /*XXX iflags */);
fad3dc42
WD
174 if (len >= 0)
175 write_vstring(f_out, buf, len);
165e6d44
WD
176 }
177
178 return iflags;
179}
180
e6e3f12f
S
181void send_files(struct file_list *flist, int f_out, int f_in)
182{
c1659c79 183 int fd = -1;
2f03f956 184 struct sum_struct *s;
41cc97ae 185 struct map_struct *mbuf = NULL;
2f03f956 186 STRUCT_STAT st;
ecc81fce 187 char *fname2, fname[MAXPATHLEN];
165e6d44 188 char fnametmp[MAXPATHLEN];
8a9cfb24 189 int iflags;
2f03f956
AT
190 struct file_struct *file;
191 int phase = 0;
1b7c47cb 192 struct stats initial_stats;
8b115ac8 193 int save_make_backups = make_backups;
7f37167d
WD
194 int itemizing = am_daemon ? daemon_log_format_has_i
195 : !am_server && log_format_has_i;
8a9cfb24 196 int i, j;
2f03f956
AT
197
198 if (verbose > 2)
e6e3f12f 199 rprintf(FINFO, "send_files starting\n");
2f03f956 200
2f03f956 201 while (1) {
3fef5364 202 unsigned int offset;
2f03f956
AT
203
204 i = read_int(f_in);
205 if (i == -1) {
e6e3f12f 206 if (phase == 0) {
2f03f956
AT
207 phase++;
208 csum_length = SUM_LENGTH;
e6e3f12f 209 write_int(f_out, -1);
2f03f956 210 if (verbose > 2)
e6e3f12f 211 rprintf(FINFO, "send_files phase=%d\n", phase);
9715c589
WD
212 /* For inplace: redo phase turns off the backup
213 * flag so that we do a regular inplace send. */
8b115ac8 214 make_backups = 0;
2f03f956
AT
215 continue;
216 }
217 break;
218 }
219
165e6d44
WD
220 iflags = read_iflags(f_in, f_out, i, fnametmp);
221 if (iflags == ITEM_IS_NEW) /* no-op packet */
222 continue;
2f03f956 223
8a9cfb24 224 file = flist->files[i];
7f37167d
WD
225 if (file->dir.root) {
226 /* N.B. We're sure that this fits, so offset is OK. */
227 offset = strlcpy(fname, file->dir.root, sizeof fname);
228 if (!offset || fname[offset-1] != '/')
229 fname[offset++] = '/';
230 } else
231 offset = 0;
232 fname2 = f_name_to(file, fname + offset);
233
234 if (verbose > 2)
235 rprintf(FINFO, "send_files(%d, %s)\n", i, fname);
8a9cfb24 236
fad3dc42 237 if (!(iflags & ITEM_TRANSFER)) {
165e6d44
WD
238 maybe_log_item(file, iflags, itemizing, fnametmp);
239 continue;
240 }
8a9cfb24 241
b951e023 242 if (inplace && protocol_version >= 29) {
cfb691ac 243 updating_basis_file = !(iflags & ITEM_USING_ALT_BASIS);
b951e023
WD
244 } else
245 updating_basis_file = inplace && !make_backups;
246
97feb557 247 stats.current_file_index = i;
2f03f956
AT
248 stats.num_transferred_files++;
249 stats.total_transferred_size += file->length;
250
a8ed4958 251 if (dry_run) { /* log the transfer */
8a832465 252 if (!am_server && log_format)
b694f8a2 253 log_item(file, &stats, iflags, NULL);
e6e3f12f 254 write_int(f_out, i);
e844be4e 255 if (protocol_version >= 29)
c2b11ba0 256 write_shortint(f_out, iflags);
2f03f956
AT
257 continue;
258 }
259
1b7c47cb
AT
260 initial_stats = stats;
261
efa95a18 262 if (!(s = receive_sums(f_in))) {
06c28400 263 io_error |= IOERR_GENERAL;
e6e3f12f 264 rprintf(FERROR, "receive_sums failed\n");
2f03f956
AT
265 return;
266 }
76f79ba7 267
b9f592fb
WD
268 fd = do_open(fname, O_RDONLY, 0);
269 if (fd == -1) {
270 if (errno == ENOENT) {
271 enum logcode c = am_daemon
272 && protocol_version < 28 ? FERROR
273 : FINFO;
274 io_error |= IOERR_VANISHED;
275 rprintf(c, "file has vanished: %s\n",
276 full_fname(fname));
277 } else {
06c28400 278 io_error |= IOERR_GENERAL;
b9f592fb
WD
279 rsyserr(FERROR, errno,
280 "send_files failed to open %s",
281 full_fname(fname));
41cc97ae 282 }
b9f592fb
WD
283 free_sums(s);
284 continue;
285 }
e6e3f12f 286
b9f592fb
WD
287 /* map the local file */
288 if (do_fstat(fd, &st) != 0) {
289 io_error |= IOERR_GENERAL;
290 rsyserr(FERROR, errno, "fstat failed");
291 free_sums(s);
292 close(fd);
293 return;
294 }
11a5a3c7 295
96d910c7 296 if (st.st_size) {
9b919d59
WD
297 int32 read_size = MAX(s->blength * 3, MAX_MAP_SIZE);
298 mbuf = map_file(fd, st.st_size, read_size, s->blength);
96d910c7
WD
299 } else
300 mbuf = NULL;
6902ed17 301
b9f592fb
WD
302 if (verbose > 2) {
303 rprintf(FINFO, "send_files mapped %s of size %.0f\n",
ecc81fce 304 safe_fname(fname), (double)st.st_size);
6902ed17 305 }
e6e3f12f 306
b9f592fb 307 write_int(f_out, i);
e844be4e 308 if (protocol_version >= 29)
c2b11ba0 309 write_shortint(f_out, iflags);
b9f592fb
WD
310 write_sum_head(f_out, s);
311
ecc81fce
WD
312 if (verbose > 2) {
313 rprintf(FINFO, "calling match_sums %s\n",
314 safe_fname(fname));
11a5a3c7 315 }
83fff1aa 316
8a9cfb24 317 if (log_before_transfer)
b694f8a2 318 log_item(file, &initial_stats, iflags, NULL);
8a832465 319 else if (!am_server && verbose && do_progress)
ecc81fce
WD
320 rprintf(FINFO, "%s\n", safe_fname(fname2));
321
83fff1aa 322 set_compression(fname);
1b7c47cb 323
b9f592fb 324 match_sums(f_out, s, mbuf, st.st_size);
0394e34a
WD
325 if (do_progress)
326 end_progress(st.st_size);
327
8a9cfb24 328 if (!log_before_transfer)
b694f8a2 329 log_item(file, &initial_stats, iflags, NULL);
6902ed17 330
b9f592fb
WD
331 if (mbuf) {
332 j = unmap_file(mbuf);
333 if (j) {
334 io_error |= IOERR_GENERAL;
335 rsyserr(FERROR, j,
336 "read errors mapping %s",
337 full_fname(fname));
6a7cc46c 338 }
6902ed17 339 }
b9f592fb 340 close(fd);
e6e3f12f 341
2f03f956 342 free_sums(s);
e6e3f12f 343
ecc81fce
WD
344 if (verbose > 2) {
345 rprintf(FINFO, "sender finished %s\n",
346 safe_fname(fname));
347 }
95306d9d
WD
348
349 /* Flag that we actually sent this entry. */
350 file->flags |= FLAG_SENT;
2f03f956 351 }
8b115ac8 352 make_backups = save_make_backups;
2f03f956
AT
353
354 if (verbose > 2)
e6e3f12f 355 rprintf(FINFO, "send files finished\n");
2f03f956
AT
356
357 match_report();
358
e6e3f12f 359 write_int(f_out, -1);
2f03f956 360}