Avoid -u option to id since solaris doesn't support it.
[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
b3bf9b9d 6 * Copyright (C) 2004-2009 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;
7b6c5c77 55extern filter_rule_list filter_list;
f7a76b9c 56extern int need_unsorted_flist;
5688c74d 57#ifdef ICONV_OPTION
5688c74d 58extern iconv_t ic_send, ic_recv;
91fd15b8 59extern char *iconv_opt;
5688c74d 60#endif
4fe159a8 61
9742b386 62/* These index values are for the file-list's extra-attribute array. */
f7a76b9c 63int uid_ndx, gid_ndx, acls_ndx, xattrs_ndx, unsort_ndx;
5688c74d 64
1ed56a05 65int receiver_symlink_times = 0; /* receiver can set the time on a symlink */
91fd15b8 66int sender_symlink_iconv = 0; /* sender should convert symlink content */
1ed56a05 67
f7a76b9c 68#ifdef ICONV_OPTION
5688c74d
WD
69int filesfrom_convert = 0;
70#endif
9742b386 71
1ed56a05
WD
72#define CF_INC_RECURSE (1<<0)
73#define CF_SYMLINK_TIMES (1<<1)
91fd15b8 74#define CF_SYMLINK_ICONV (1<<2)
1ed56a05
WD
75
76static const char *client_info;
77
486f8cd1
WD
78/* The server makes sure that if either side only supports a pre-release
79 * version of a protocol, that both sides must speak a compatible version
80 * of that protocol for it to be advertised as available. */
81static void check_sub_protocol(void)
82{
83 char *dot;
84 int their_protocol, their_sub;
ac593860 85#if SUBPROTOCOL_VERSION != 0
486f8cd1 86 int our_sub = protocol_version < PROTOCOL_VERSION ? 0 : SUBPROTOCOL_VERSION;
ac593860
WD
87#else
88 int our_sub = 0;
89#endif
486f8cd1 90
1ed56a05
WD
91 /* client_info starts with VER.SUB string if client is a pre-release. */
92 if (!(their_protocol = atoi(client_info))
93 || !(dot = strchr(client_info, '.'))
486f8cd1 94 || !(their_sub = atoi(dot+1))) {
ac593860 95#if SUBPROTOCOL_VERSION != 0
486f8cd1
WD
96 if (our_sub)
97 protocol_version--;
ac593860 98#endif
486f8cd1
WD
99 return;
100 }
101
102 if (their_protocol < protocol_version) {
103 if (their_sub)
104 protocol_version = their_protocol - 1;
105 return;
106 }
107
108 if (their_protocol > protocol_version)
ac593860 109 their_sub = 0; /* 0 == final version of older protocol */
486f8cd1
WD
110 if (their_sub != our_sub)
111 protocol_version--;
112}
113
9970bed4
WD
114void set_allow_inc_recurse(void)
115{
1ed56a05
WD
116 client_info = shell_cmd ? shell_cmd : "";
117
aabb50d4
WD
118 if (!recurse || use_qsort)
119 allow_inc_recurse = 0;
120 else if (!am_sender
121 && (delete_before || delete_after
122 || delay_updates || prune_empty_dirs))
9970bed4
WD
123 allow_inc_recurse = 0;
124 else if (am_server && !local_server
1ed56a05 125 && (strchr(client_info, 'i') == NULL))
9970bed4
WD
126 allow_inc_recurse = 0;
127}
128
aae43eb3 129void setup_protocol(int f_out,int f_in)
4fe159a8 130{
6eee13cf 131 if (am_sender)
bc5df0f4 132 file_extra_cnt += PTR_EXTRA_CNT;
6eee13cf 133 else
99a957d3 134 file_extra_cnt++;
6eee13cf 135 if (preserve_uid)
9742b386 136 uid_ndx = ++file_extra_cnt;
6eee13cf 137 if (preserve_gid)
9742b386 138 gid_ndx = ++file_extra_cnt;
1c3344a1 139 if (preserve_acls && !am_sender)
9742b386 140 acls_ndx = ++file_extra_cnt;
16edf865 141 if (preserve_xattrs)
9742b386 142 xattrs_ndx = ++file_extra_cnt;
6eee13cf 143
9970bed4
WD
144 if (am_server)
145 set_allow_inc_recurse();
146
8a9709de 147 if (remote_protocol == 0) {
486f8cd1
WD
148 if (am_server && !local_server)
149 check_sub_protocol();
aa434321 150 if (!read_batch)
8a9709de 151 write_int(f_out, protocol_version);
aa434321 152 remote_protocol = read_int(f_in);
8a9709de
WD
153 if (protocol_version > remote_protocol)
154 protocol_version = remote_protocol;
13c5fc0e 155 }
b9f592fb 156 if (read_batch && remote_protocol > protocol_version) {
486f8cd1 157 rprintf(FERROR, "The protocol version in the batch file is too new (%d > %d).\n",
b9f592fb
WD
158 remote_protocol, protocol_version);
159 exit_cleanup(RERR_PROTOCOL);
160 }
aae43eb3 161
951e826b 162 if (DEBUG_GTE(PROTO, 1)) {
8a9709de
WD
163 rprintf(FINFO, "(%s) Protocol versions: remote=%d, negotiated=%d\n",
164 am_server? "Server" : "Client", remote_protocol, protocol_version);
165 }
166 if (remote_protocol < MIN_PROTOCOL_VERSION
167 || remote_protocol > MAX_PROTOCOL_VERSION) {
4ccfd96c 168 rprintf(FERROR,"protocol version mismatch -- is your shell clean?\n");
d310a212 169 rprintf(FERROR,"(see the rsync man page for an explanation)\n");
65417579 170 exit_cleanup(RERR_PROTOCOL);
8a9709de
WD
171 }
172 if (remote_protocol < OLD_PROTOCOL_VERSION) {
1b2db7ae 173 rprintf(FINFO,"%s is very old version of rsync, upgrade recommended.\n",
8a9709de
WD
174 am_server? "Client" : "Server");
175 }
176 if (protocol_version < MIN_PROTOCOL_VERSION) {
177 rprintf(FERROR, "--protocol must be at least %d on the %s.\n",
178 MIN_PROTOCOL_VERSION, am_server? "Server" : "Client");
179 exit_cleanup(RERR_PROTOCOL);
180 }
181 if (protocol_version > PROTOCOL_VERSION) {
182 rprintf(FERROR, "--protocol must be no more than %d on the %s.\n",
183 PROTOCOL_VERSION, am_server? "Server" : "Client");
184 exit_cleanup(RERR_PROTOCOL);
185 }
a7c1fa00
WD
186 if (read_batch)
187 check_batch_flags();
1b2db7ae 188
771d0add 189 if (protocol_version < 30) {
77502cba
WD
190 if (append_mode == 1)
191 append_mode = 2;
01894cf0 192 if (preserve_acls && !local_server) {
1c3344a1
WD
193 rprintf(FERROR,
194 "--acls requires protocol 30 or higher"
195 " (negotiated %d).\n",
196 protocol_version);
197 exit_cleanup(RERR_PROTOCOL);
198 }
01894cf0 199 if (preserve_xattrs && !local_server) {
16edf865
WD
200 rprintf(FERROR,
201 "--xattrs requires protocol 30 or higher"
202 " (negotiated %d).\n",
203 protocol_version);
204 exit_cleanup(RERR_PROTOCOL);
205 }
771d0add
WD
206 }
207
e4b619b4
WD
208 if (delete_mode && !(delete_before+delete_during+delete_after)) {
209 if (protocol_version < 30)
210 delete_before = 1;
211 else
212 delete_during = 1;
213 }
214
a1cc199b
WD
215 if (protocol_version < 29) {
216 if (fuzzy_basis) {
217 rprintf(FERROR,
218 "--fuzzy requires protocol 29 or higher"
219 " (negotiated %d).\n",
220 protocol_version);
221 exit_cleanup(RERR_PROTOCOL);
222 }
e461b9be 223
a1cc199b
WD
224 if (basis_dir_cnt && inplace) {
225 rprintf(FERROR,
226 "%s with --inplace requires protocol 29 or higher"
227 " (negotiated %d).\n",
228 dest_option, protocol_version);
229 exit_cleanup(RERR_PROTOCOL);
230 }
57b12568 231
a1cc199b
WD
232 if (basis_dir_cnt > 1) {
233 rprintf(FERROR,
234 "Using more than one %s option requires protocol"
235 " 29 or higher (negotiated %d).\n",
236 dest_option, protocol_version);
237 exit_cleanup(RERR_PROTOCOL);
238 }
239
240 if (prune_empty_dirs) {
241 rprintf(FERROR,
242 "--prune-empty-dirs requires protocol 29 or higher"
243 " (negotiated %d).\n",
244 protocol_version);
245 exit_cleanup(RERR_PROTOCOL);
246 }
e4b619b4 247 } else if (protocol_version >= 30) {
1ed56a05 248 int compat_flags;
9970bed4 249 if (am_server) {
1ed56a05 250 compat_flags = allow_inc_recurse ? CF_INC_RECURSE : 0;
accc091f 251#ifdef CAN_SET_SYMLINK_TIMES
1ed56a05 252 compat_flags |= CF_SYMLINK_TIMES;
91fd15b8
WD
253#endif
254#ifdef ICONV_OPTION
255 compat_flags |= CF_SYMLINK_ICONV;
1ed56a05
WD
256#endif
257 write_byte(f_out, compat_flags);
3b8f8192 258 } else {
1ed56a05 259 compat_flags = read_byte(f_in);
3b8f8192 260 }
1ed56a05
WD
261 /* The inc_recurse var MUST be set to 0 or 1. */
262 inc_recurse = compat_flags & CF_INC_RECURSE ? 1 : 0;
263 if (am_sender) {
264 receiver_symlink_times = am_server
265 ? strchr(client_info, 'L') != NULL
266 : !!(compat_flags & CF_SYMLINK_TIMES);
267 }
accc091f 268#ifdef CAN_SET_SYMLINK_TIMES
1ed56a05
WD
269 else
270 receiver_symlink_times = 1;
91fd15b8
WD
271#endif
272#ifdef ICONV_OPTION
273 sender_symlink_iconv = iconv_opt && (am_server
eecc969e 274 ? local_server || strchr(client_info, 's') != NULL
91fd15b8 275 : !!(compat_flags & CF_SYMLINK_ICONV));
1ed56a05 276#endif
9970bed4
WD
277 if (inc_recurse && !allow_inc_recurse) {
278 /* This should only be able to happen in a batch. */
279 fprintf(stderr,
280 "Incompatible options specified for inc-recursive %s.\n",
52d9a554 281 read_batch ? "batch file" : "connection");
9970bed4
WD
282 exit_cleanup(RERR_SYNTAX);
283 }
e4b619b4 284 need_messages_from_generator = 1;
accc091f 285#ifdef CAN_SET_SYMLINK_TIMES
1ed9018e
WD
286 } else if (!am_sender) {
287 receiver_symlink_times = 1;
288#endif
57b12568
WD
289 }
290
f7a76b9c
WD
291 if (need_unsorted_flist && (!am_sender || inc_recurse))
292 unsort_ndx = ++file_extra_cnt;
7820fa94 293
d0c59b0e 294 if (partial_dir && *partial_dir != '/' && (!am_server || local_server)) {
b32d4254 295 int rflags = FILTRULE_NO_PREFIXES | FILTRULE_DIRECTORY;
c1289508 296 if (!am_sender || protocol_version >= 30)
b32d4254 297 rflags |= FILTRULE_PERISHABLE;
c8fa85b2 298 parse_filter_str(&filter_list, partial_dir, rule_template(rflags), 0);
c1289508
WD
299 }
300
5688c74d
WD
301
302#ifdef ICONV_OPTION
303 if (protect_args && files_from) {
304 if (am_sender)
305 filesfrom_convert = filesfrom_host && ic_send != (iconv_t)-1;
306 else
307 filesfrom_convert = !filesfrom_host && ic_recv != (iconv_t)-1;
308 }
309#endif
310
bc63ae3f 311 if (am_server) {
b1bf649c 312 if (!checksum_seed)
13c5fc0e 313 checksum_seed = time(NULL);
b1bf649c 314 write_int(f_out, checksum_seed);
bc63ae3f
S
315 } else {
316 checksum_seed = read_int(f_in);
13c5fc0e 317 }
4fe159a8 318}