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