Reorder the static functions to avoid the need for forward declarations.
[rsync/rsync.git] / compat.c
CommitLineData
0f78b815 1/*
d1f83bcc 2 * Compatibility routines for older rsync protocol versions.
0f78b815
WD
3 *
4 * Copyright (C) Andrew Tridgell 1996
5 * Copyright (C) Paul Mackerras 1996
d3d07a5e 6 * Copyright (C) 2004-2008 Wayne Davison
0f78b815
WD
7 *
8 * This program is free software; you can redistribute it and/or modify
8e41b68e
WD
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.
0f78b815
WD
12 *
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.
17 *
e7c67065 18 * You should have received a copy of the GNU General Public License along
4fd842f9 19 * with this program; if not, visit the http://fsf.org website.
0f78b815 20 */
4fe159a8
AT
21
22#include "rsync.h"
23
8a9709de 24int remote_protocol = 0;
99a957d3 25int file_extra_cnt = 0; /* count of file-list extras that everyone gets */
3ea6e0e7 26int inc_recurse = 0;
8a9709de 27
aae43eb3 28extern int am_server;
771d0add 29extern int am_sender;
d0c59b0e 30extern int local_server;
57b12568 31extern int inplace;
e4b619b4 32extern int recurse;
c8e83946 33extern int use_qsort;
5275029d 34extern int allow_inc_recurse;
77502cba 35extern int append_mode;
e461b9be 36extern int fuzzy_basis;
b9f592fb 37extern int read_batch;
e4b619b4 38extern int delay_updates;
aae43eb3 39extern int checksum_seed;
57b12568 40extern int basis_dir_cnt;
a1cc199b 41extern int prune_empty_dirs;
8a9709de 42extern int protocol_version;
5688c74d 43extern int protect_args;
99a957d3
WD
44extern int preserve_uid;
45extern int preserve_gid;
1c3344a1 46extern int preserve_acls;
16edf865 47extern int preserve_xattrs;
e4b619b4
WD
48extern int need_messages_from_generator;
49extern int delete_mode, delete_before, delete_during, delete_after;
1ed56a05 50extern char *shell_cmd;
c1289508 51extern char *partial_dir;
57b12568 52extern char *dest_option;
5688c74d
WD
53extern char *files_from;
54extern char *filesfrom_host;
c1289508 55extern struct filter_list_struct filter_list;
f7a76b9c 56extern int need_unsorted_flist;
5688c74d 57#ifdef ICONV_OPTION
5688c74d
WD
58extern iconv_t ic_send, ic_recv;
59#endif
4fe159a8 60
9742b386 61/* These index values are for the file-list's extra-attribute array. */
f7a76b9c 62int uid_ndx, gid_ndx, acls_ndx, xattrs_ndx, unsort_ndx;
5688c74d 63
1ed56a05
WD
64int receiver_symlink_times = 0; /* receiver can set the time on a symlink */
65
f7a76b9c 66#ifdef ICONV_OPTION
5688c74d
WD
67int filesfrom_convert = 0;
68#endif
9742b386 69
1ed56a05
WD
70#define CF_INC_RECURSE (1<<0)
71#define CF_SYMLINK_TIMES (1<<1)
72
73static const char *client_info;
74
486f8cd1
WD
75/* The server makes sure that if either side only supports a pre-release
76 * version of a protocol, that both sides must speak a compatible version
77 * of that protocol for it to be advertised as available. */
78static void check_sub_protocol(void)
79{
80 char *dot;
81 int their_protocol, their_sub;
ac593860 82#if SUBPROTOCOL_VERSION != 0
486f8cd1 83 int our_sub = protocol_version < PROTOCOL_VERSION ? 0 : SUBPROTOCOL_VERSION;
ac593860
WD
84#else
85 int our_sub = 0;
86#endif
486f8cd1 87
1ed56a05
WD
88 /* client_info starts with VER.SUB string if client is a pre-release. */
89 if (!(their_protocol = atoi(client_info))
90 || !(dot = strchr(client_info, '.'))
486f8cd1 91 || !(their_sub = atoi(dot+1))) {
ac593860 92#if SUBPROTOCOL_VERSION != 0
486f8cd1
WD
93 if (our_sub)
94 protocol_version--;
ac593860 95#endif
486f8cd1
WD
96 return;
97 }
98
99 if (their_protocol < protocol_version) {
100 if (their_sub)
101 protocol_version = their_protocol - 1;
102 return;
103 }
104
105 if (their_protocol > protocol_version)
ac593860 106 their_sub = 0; /* 0 == final version of older protocol */
486f8cd1
WD
107 if (their_sub != our_sub)
108 protocol_version--;
109}
110
9970bed4
WD
111void set_allow_inc_recurse(void)
112{
1ed56a05
WD
113 client_info = shell_cmd ? shell_cmd : "";
114
aabb50d4
WD
115 if (!recurse || use_qsort)
116 allow_inc_recurse = 0;
117 else if (!am_sender
118 && (delete_before || delete_after
119 || delay_updates || prune_empty_dirs))
9970bed4
WD
120 allow_inc_recurse = 0;
121 else if (am_server && !local_server
1ed56a05 122 && (strchr(client_info, 'i') == NULL))
9970bed4
WD
123 allow_inc_recurse = 0;
124}
125
aae43eb3 126void setup_protocol(int f_out,int f_in)
4fe159a8 127{
6eee13cf 128 if (am_sender)
bc5df0f4 129 file_extra_cnt += PTR_EXTRA_CNT;
6eee13cf 130 else
99a957d3 131 file_extra_cnt++;
6eee13cf 132 if (preserve_uid)
9742b386 133 uid_ndx = ++file_extra_cnt;
6eee13cf 134 if (preserve_gid)
9742b386 135 gid_ndx = ++file_extra_cnt;
1c3344a1 136 if (preserve_acls && !am_sender)
9742b386 137 acls_ndx = ++file_extra_cnt;
16edf865 138 if (preserve_xattrs)
9742b386 139 xattrs_ndx = ++file_extra_cnt;
6eee13cf 140
9970bed4
WD
141 if (am_server)
142 set_allow_inc_recurse();
143
8a9709de 144 if (remote_protocol == 0) {
486f8cd1
WD
145 if (am_server && !local_server)
146 check_sub_protocol();
aa434321 147 if (!read_batch)
8a9709de 148 write_int(f_out, protocol_version);
aa434321 149 remote_protocol = read_int(f_in);
8a9709de
WD
150 if (protocol_version > remote_protocol)
151 protocol_version = remote_protocol;
13c5fc0e 152 }
b9f592fb 153 if (read_batch && remote_protocol > protocol_version) {
486f8cd1 154 rprintf(FERROR, "The protocol version in the batch file is too new (%d > %d).\n",
b9f592fb
WD
155 remote_protocol, protocol_version);
156 exit_cleanup(RERR_PROTOCOL);
157 }
aae43eb3 158
951e826b 159 if (DEBUG_GTE(PROTO, 1)) {
8a9709de
WD
160 rprintf(FINFO, "(%s) Protocol versions: remote=%d, negotiated=%d\n",
161 am_server? "Server" : "Client", remote_protocol, protocol_version);
162 }
163 if (remote_protocol < MIN_PROTOCOL_VERSION
164 || remote_protocol > MAX_PROTOCOL_VERSION) {
4ccfd96c 165 rprintf(FERROR,"protocol version mismatch -- is your shell clean?\n");
d310a212 166 rprintf(FERROR,"(see the rsync man page for an explanation)\n");
65417579 167 exit_cleanup(RERR_PROTOCOL);
8a9709de
WD
168 }
169 if (remote_protocol < OLD_PROTOCOL_VERSION) {
1b2db7ae 170 rprintf(FINFO,"%s is very old version of rsync, upgrade recommended.\n",
8a9709de
WD
171 am_server? "Client" : "Server");
172 }
173 if (protocol_version < MIN_PROTOCOL_VERSION) {
174 rprintf(FERROR, "--protocol must be at least %d on the %s.\n",
175 MIN_PROTOCOL_VERSION, am_server? "Server" : "Client");
176 exit_cleanup(RERR_PROTOCOL);
177 }
178 if (protocol_version > PROTOCOL_VERSION) {
179 rprintf(FERROR, "--protocol must be no more than %d on the %s.\n",
180 PROTOCOL_VERSION, am_server? "Server" : "Client");
181 exit_cleanup(RERR_PROTOCOL);
182 }
a7c1fa00
WD
183 if (read_batch)
184 check_batch_flags();
1b2db7ae 185
771d0add 186 if (protocol_version < 30) {
77502cba
WD
187 if (append_mode == 1)
188 append_mode = 2;
01894cf0 189 if (preserve_acls && !local_server) {
1c3344a1
WD
190 rprintf(FERROR,
191 "--acls requires protocol 30 or higher"
192 " (negotiated %d).\n",
193 protocol_version);
194 exit_cleanup(RERR_PROTOCOL);
195 }
01894cf0 196 if (preserve_xattrs && !local_server) {
16edf865
WD
197 rprintf(FERROR,
198 "--xattrs requires protocol 30 or higher"
199 " (negotiated %d).\n",
200 protocol_version);
201 exit_cleanup(RERR_PROTOCOL);
202 }
771d0add
WD
203 }
204
e4b619b4
WD
205 if (delete_mode && !(delete_before+delete_during+delete_after)) {
206 if (protocol_version < 30)
207 delete_before = 1;
208 else
209 delete_during = 1;
210 }
211
a1cc199b
WD
212 if (protocol_version < 29) {
213 if (fuzzy_basis) {
214 rprintf(FERROR,
215 "--fuzzy requires protocol 29 or higher"
216 " (negotiated %d).\n",
217 protocol_version);
218 exit_cleanup(RERR_PROTOCOL);
219 }
e461b9be 220
a1cc199b
WD
221 if (basis_dir_cnt && inplace) {
222 rprintf(FERROR,
223 "%s with --inplace requires protocol 29 or higher"
224 " (negotiated %d).\n",
225 dest_option, protocol_version);
226 exit_cleanup(RERR_PROTOCOL);
227 }
57b12568 228
a1cc199b
WD
229 if (basis_dir_cnt > 1) {
230 rprintf(FERROR,
231 "Using more than one %s option requires protocol"
232 " 29 or higher (negotiated %d).\n",
233 dest_option, protocol_version);
234 exit_cleanup(RERR_PROTOCOL);
235 }
236
237 if (prune_empty_dirs) {
238 rprintf(FERROR,
239 "--prune-empty-dirs requires protocol 29 or higher"
240 " (negotiated %d).\n",
241 protocol_version);
242 exit_cleanup(RERR_PROTOCOL);
243 }
e4b619b4 244 } else if (protocol_version >= 30) {
1ed56a05 245 int compat_flags;
9970bed4 246 if (am_server) {
1ed56a05
WD
247 compat_flags = allow_inc_recurse ? CF_INC_RECURSE : 0;
248#if defined HAVE_LUTIMES && defined HAVE_UTIMES
249 compat_flags |= CF_SYMLINK_TIMES;
250#endif
251 write_byte(f_out, compat_flags);
9970bed4 252 } else
1ed56a05
WD
253 compat_flags = read_byte(f_in);
254 /* The inc_recurse var MUST be set to 0 or 1. */
255 inc_recurse = compat_flags & CF_INC_RECURSE ? 1 : 0;
256 if (am_sender) {
257 receiver_symlink_times = am_server
258 ? strchr(client_info, 'L') != NULL
259 : !!(compat_flags & CF_SYMLINK_TIMES);
260 }
261#if defined HAVE_LUTIMES && defined HAVE_UTIMES
262 else
263 receiver_symlink_times = 1;
264#endif
9970bed4
WD
265 if (inc_recurse && !allow_inc_recurse) {
266 /* This should only be able to happen in a batch. */
267 fprintf(stderr,
268 "Incompatible options specified for inc-recursive %s.\n",
52d9a554 269 read_batch ? "batch file" : "connection");
9970bed4
WD
270 exit_cleanup(RERR_SYNTAX);
271 }
e4b619b4 272 need_messages_from_generator = 1;
1ed9018e
WD
273#if defined HAVE_LUTIMES && defined HAVE_UTIMES
274 } else if (!am_sender) {
275 receiver_symlink_times = 1;
276#endif
57b12568
WD
277 }
278
f7a76b9c
WD
279 if (need_unsorted_flist && (!am_sender || inc_recurse))
280 unsort_ndx = ++file_extra_cnt;
7820fa94 281
d0c59b0e 282 if (partial_dir && *partial_dir != '/' && (!am_server || local_server)) {
c1289508
WD
283 int flags = MATCHFLG_NO_PREFIXES | MATCHFLG_DIRECTORY;
284 if (!am_sender || protocol_version >= 30)
285 flags |= MATCHFLG_PERISHABLE;
286 parse_rule(&filter_list, partial_dir, flags, 0);
287 }
288
5688c74d
WD
289
290#ifdef ICONV_OPTION
291 if (protect_args && files_from) {
292 if (am_sender)
293 filesfrom_convert = filesfrom_host && ic_send != (iconv_t)-1;
294 else
295 filesfrom_convert = !filesfrom_host && ic_recv != (iconv_t)-1;
296 }
297#endif
298
bc63ae3f 299 if (am_server) {
b1bf649c 300 if (!checksum_seed)
13c5fc0e 301 checksum_seed = time(NULL);
b1bf649c 302 write_int(f_out, checksum_seed);
bc63ae3f
S
303 } else {
304 checksum_seed = read_int(f_in);
13c5fc0e 305 }
4fe159a8 306}