Martin gave his approval to use GPLv3 with this code.
[rsync/rsync.git] / compat.c
... / ...
CommitLineData
1/*
2 * Compatibility routines for older rsync protocol versions.
3 *
4 * Copyright (C) Andrew Tridgell 1996
5 * Copyright (C) Paul Mackerras 1996
6 * Copyright (C) 2004-2007 Wayne Davison
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 3 as
10 * published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, visit the http://fsf.org website.
19 */
20
21#include "rsync.h"
22
23int remote_protocol = 0;
24int file_extra_cnt = 0; /* count of file-list extras that everyone gets */
25int inc_recurse = 0;
26
27extern int verbose;
28extern int am_server;
29extern int am_sender;
30extern int local_server;
31extern int inplace;
32extern int recurse;
33extern int use_qsort;
34extern int allow_inc_recurse;
35extern int fuzzy_basis;
36extern int read_batch;
37extern int max_delete;
38extern int delay_updates;
39extern int checksum_seed;
40extern int basis_dir_cnt;
41extern int prune_empty_dirs;
42extern int protocol_version;
43extern int preserve_uid;
44extern int preserve_gid;
45extern int preserve_acls;
46extern int preserve_xattrs;
47extern int preserve_hard_links;
48extern int need_messages_from_generator;
49extern int delete_mode, delete_before, delete_during, delete_after;
50extern int delete_excluded;
51extern int make_backups;
52extern char *shell_cmd; /* contains VER.SUB string if client is a pre-release */
53extern char *backup_dir, *backup_suffix;
54extern char *partial_dir;
55extern char *dest_option;
56extern struct filter_list_struct filter_list;
57
58/* These index values are for the file-list's extra-attribute array. */
59int uid_ndx, gid_ndx, acls_ndx, xattrs_ndx;
60
61/* The server makes sure that if either side only supports a pre-release
62 * version of a protocol, that both sides must speak a compatible version
63 * of that protocol for it to be advertised as available. */
64static void check_sub_protocol(void)
65{
66 char *dot;
67 int their_protocol, their_sub;
68 int our_sub = protocol_version < PROTOCOL_VERSION ? 0 : SUBPROTOCOL_VERSION;
69
70 if (!shell_cmd || !(dot = strchr(shell_cmd, '.'))
71 || !(their_protocol = atoi(shell_cmd))
72 || !(their_sub = atoi(dot+1))) {
73 if (our_sub)
74 protocol_version--;
75 return;
76 }
77
78 if (their_protocol < protocol_version) {
79 if (their_sub)
80 protocol_version = their_protocol - 1;
81 return;
82 }
83
84 if (their_protocol > protocol_version)
85 their_sub = 0; /* 0 == final version */
86 if (their_sub != our_sub)
87 protocol_version--;
88}
89
90void setup_protocol(int f_out,int f_in)
91{
92 if (am_sender)
93 file_extra_cnt += PTR_EXTRA_LEN;
94 else
95 file_extra_cnt++;
96 if (preserve_uid)
97 uid_ndx = ++file_extra_cnt;
98 if (preserve_gid)
99 gid_ndx = ++file_extra_cnt;
100 if (preserve_acls && !am_sender)
101 acls_ndx = ++file_extra_cnt;
102 if (preserve_xattrs)
103 xattrs_ndx = ++file_extra_cnt;
104
105 if (remote_protocol == 0) {
106 if (am_server && !local_server)
107 check_sub_protocol();
108 if (!read_batch)
109 write_int(f_out, protocol_version);
110 remote_protocol = read_int(f_in);
111 if (protocol_version > remote_protocol)
112 protocol_version = remote_protocol;
113 }
114 if (read_batch && remote_protocol > protocol_version) {
115 rprintf(FERROR, "The protocol version in the batch file is too new (%d > %d).\n",
116 remote_protocol, protocol_version);
117 exit_cleanup(RERR_PROTOCOL);
118 }
119
120 if (verbose > 3) {
121 rprintf(FINFO, "(%s) Protocol versions: remote=%d, negotiated=%d\n",
122 am_server? "Server" : "Client", remote_protocol, protocol_version);
123 }
124 if (remote_protocol < MIN_PROTOCOL_VERSION
125 || remote_protocol > MAX_PROTOCOL_VERSION) {
126 rprintf(FERROR,"protocol version mismatch -- is your shell clean?\n");
127 rprintf(FERROR,"(see the rsync man page for an explanation)\n");
128 exit_cleanup(RERR_PROTOCOL);
129 }
130 if (remote_protocol < OLD_PROTOCOL_VERSION) {
131 rprintf(FINFO,"%s is very old version of rsync, upgrade recommended.\n",
132 am_server? "Client" : "Server");
133 }
134 if (protocol_version < MIN_PROTOCOL_VERSION) {
135 rprintf(FERROR, "--protocol must be at least %d on the %s.\n",
136 MIN_PROTOCOL_VERSION, am_server? "Server" : "Client");
137 exit_cleanup(RERR_PROTOCOL);
138 }
139 if (protocol_version > PROTOCOL_VERSION) {
140 rprintf(FERROR, "--protocol must be no more than %d on the %s.\n",
141 PROTOCOL_VERSION, am_server? "Server" : "Client");
142 exit_cleanup(RERR_PROTOCOL);
143 }
144
145 if (protocol_version < 30) {
146 if (max_delete == 0 && am_sender) {
147 rprintf(FERROR,
148 "--max-delete=0 requires protocol 30 or higher"
149 " (negotiated %d).\n",
150 protocol_version);
151 exit_cleanup(RERR_PROTOCOL);
152 }
153 if (preserve_acls && !local_server) {
154 rprintf(FERROR,
155 "--acls requires protocol 30 or higher"
156 " (negotiated %d).\n",
157 protocol_version);
158 exit_cleanup(RERR_PROTOCOL);
159 }
160 if (preserve_xattrs && !local_server) {
161 rprintf(FERROR,
162 "--xattrs requires protocol 30 or higher"
163 " (negotiated %d).\n",
164 protocol_version);
165 exit_cleanup(RERR_PROTOCOL);
166 }
167 }
168
169 if (delete_mode && !(delete_before+delete_during+delete_after)) {
170 if (protocol_version < 30)
171 delete_before = 1;
172 else
173 delete_during = 1;
174 }
175
176 if (protocol_version < 29) {
177 if (fuzzy_basis) {
178 rprintf(FERROR,
179 "--fuzzy requires protocol 29 or higher"
180 " (negotiated %d).\n",
181 protocol_version);
182 exit_cleanup(RERR_PROTOCOL);
183 }
184
185 if (basis_dir_cnt && inplace) {
186 rprintf(FERROR,
187 "%s with --inplace requires protocol 29 or higher"
188 " (negotiated %d).\n",
189 dest_option, protocol_version);
190 exit_cleanup(RERR_PROTOCOL);
191 }
192
193 if (basis_dir_cnt > 1) {
194 rprintf(FERROR,
195 "Using more than one %s option requires protocol"
196 " 29 or higher (negotiated %d).\n",
197 dest_option, protocol_version);
198 exit_cleanup(RERR_PROTOCOL);
199 }
200
201 if (prune_empty_dirs) {
202 rprintf(FERROR,
203 "--prune-empty-dirs requires protocol 29 or higher"
204 " (negotiated %d).\n",
205 protocol_version);
206 exit_cleanup(RERR_PROTOCOL);
207 }
208 } else if (protocol_version >= 30) {
209 if (recurse && allow_inc_recurse && !preserve_hard_links
210 && !delete_before && !delete_after && !delay_updates
211 && !prune_empty_dirs && !use_qsort)
212 inc_recurse = 1;
213 need_messages_from_generator = 1;
214 }
215
216 if (partial_dir && *partial_dir != '/' && (!am_server || local_server)) {
217 int flags = MATCHFLG_NO_PREFIXES | MATCHFLG_DIRECTORY;
218 if (!am_sender || protocol_version >= 30)
219 flags |= MATCHFLG_PERISHABLE;
220 parse_rule(&filter_list, partial_dir, flags, 0);
221 }
222
223 if (am_server) {
224 if (!checksum_seed)
225 checksum_seed = time(NULL);
226 write_int(f_out, checksum_seed);
227 } else {
228 checksum_seed = read_int(f_in);
229 }
230}