If the protocol is less than 29, make sure itemize_changes is off.
[rsync/rsync.git] / compat.c
1 /* 
2    Copyright (C) Andrew Tridgell 1996
3    Copyright (C) Paul Mackerras 1996
4    
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.
9    
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.
14    
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 /**
21  * @file compat.c
22  *
23  * Compatibility routines for older rsync protocol versions.
24  **/
25
26 #include "rsync.h"
27
28 int remote_protocol = 0;
29
30 extern int verbose;
31 extern int itemize_changes;
32 extern int am_server;
33 extern int am_sender;
34 extern int fuzzy_basis;
35 extern int read_batch;
36 extern int checksum_seed;
37 extern int protocol_version;
38
39 void setup_protocol(int f_out,int f_in)
40 {
41         if (remote_protocol == 0) {
42                 if (!read_batch)
43                         write_int(f_out, protocol_version);
44                 remote_protocol = read_int(f_in);
45                 if (protocol_version > remote_protocol)
46                         protocol_version = remote_protocol;
47         }
48         if (read_batch && remote_protocol > protocol_version) {
49                 rprintf(FERROR, "The protocol version in the batch file is too new (%d > %d).\n",
50                         remote_protocol, protocol_version);
51                 exit_cleanup(RERR_PROTOCOL);
52         }
53
54         if (verbose > 3) {
55                 rprintf(FINFO, "(%s) Protocol versions: remote=%d, negotiated=%d\n",
56                         am_server? "Server" : "Client", remote_protocol, protocol_version);
57         }
58         if (remote_protocol < MIN_PROTOCOL_VERSION
59          || remote_protocol > MAX_PROTOCOL_VERSION) {
60                 rprintf(FERROR,"protocol version mismatch -- is your shell clean?\n");
61                 rprintf(FERROR,"(see the rsync man page for an explanation)\n");
62                 exit_cleanup(RERR_PROTOCOL);
63         }
64         if (remote_protocol < OLD_PROTOCOL_VERSION) {
65                 rprintf(FINFO,"%s is very old version of rsync, upgrade recommended.\n",
66                         am_server? "Client" : "Server");
67         }
68         if (protocol_version < MIN_PROTOCOL_VERSION) {
69                 rprintf(FERROR, "--protocol must be at least %d on the %s.\n",
70                         MIN_PROTOCOL_VERSION, am_server? "Server" : "Client");
71                 exit_cleanup(RERR_PROTOCOL);
72         }
73         if (protocol_version > PROTOCOL_VERSION) {
74                 rprintf(FERROR, "--protocol must be no more than %d on the %s.\n",
75                         PROTOCOL_VERSION, am_server? "Server" : "Client");
76                 exit_cleanup(RERR_PROTOCOL);
77         }
78
79         if (fuzzy_basis && protocol_version < 29) {
80                 rprintf(FERROR,
81                         "--fuzzy requres protocol 29 or higher (negotiated %d).\n",
82                         protocol_version);
83                 exit_cleanup(RERR_PROTOCOL);
84         }
85
86         if (itemize_changes && protocol_version < 29)
87                 itemize_changes = 0;
88
89         if (am_server) {
90                 if (!checksum_seed)
91                         checksum_seed = time(NULL);
92                 write_int(f_out, checksum_seed);
93         } else {
94                 checksum_seed = read_int(f_in);
95         }
96 }