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