Further modifications to the copyright comment section.
[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
ba2133d6 6 * Copyright (C) 2004-2007 Wayne Davison
0f78b815
WD
7 *
8 * This program is free software; you can redistribute it and/or modify
ba2133d6
WD
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
0f78b815
WD
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 *
e7c67065
WD
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
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
b9f592fb 28extern int verbose;
aae43eb3 29extern int am_server;
771d0add 30extern int am_sender;
57b12568 31extern int inplace;
e4b619b4 32extern int recurse;
e461b9be 33extern int fuzzy_basis;
b9f592fb 34extern int read_batch;
771d0add 35extern int max_delete;
e4b619b4 36extern int delay_updates;
aae43eb3 37extern int checksum_seed;
57b12568 38extern int basis_dir_cnt;
a1cc199b 39extern int prune_empty_dirs;
8a9709de 40extern int protocol_version;
99a957d3
WD
41extern int preserve_uid;
42extern int preserve_gid;
e4b619b4
WD
43extern int preserve_hard_links;
44extern int need_messages_from_generator;
45extern int delete_mode, delete_before, delete_during, delete_after;
57b12568 46extern char *dest_option;
4fe159a8 47
aae43eb3 48void setup_protocol(int f_out,int f_in)
4fe159a8 49{
6eee13cf 50 if (am_sender)
99a957d3 51 file_extra_cnt += PTR_EXTRA_LEN;
6eee13cf 52 else
99a957d3 53 file_extra_cnt++;
6eee13cf 54 if (preserve_uid)
99a957d3 55 preserve_uid = ++file_extra_cnt;
6eee13cf 56 if (preserve_gid)
99a957d3 57 preserve_gid = ++file_extra_cnt;
6eee13cf 58
8a9709de 59 if (remote_protocol == 0) {
aa434321 60 if (!read_batch)
8a9709de 61 write_int(f_out, protocol_version);
aa434321 62 remote_protocol = read_int(f_in);
8a9709de
WD
63 if (protocol_version > remote_protocol)
64 protocol_version = remote_protocol;
13c5fc0e 65 }
b9f592fb
WD
66 if (read_batch && remote_protocol > protocol_version) {
67 rprintf(FERROR, "The protocol version in the batch file is too new (%d > %d).\n",
68 remote_protocol, protocol_version);
69 exit_cleanup(RERR_PROTOCOL);
70 }
aae43eb3 71
8a9709de
WD
72 if (verbose > 3) {
73 rprintf(FINFO, "(%s) Protocol versions: remote=%d, negotiated=%d\n",
74 am_server? "Server" : "Client", remote_protocol, protocol_version);
75 }
76 if (remote_protocol < MIN_PROTOCOL_VERSION
77 || remote_protocol > MAX_PROTOCOL_VERSION) {
4ccfd96c 78 rprintf(FERROR,"protocol version mismatch -- is your shell clean?\n");
d310a212 79 rprintf(FERROR,"(see the rsync man page for an explanation)\n");
65417579 80 exit_cleanup(RERR_PROTOCOL);
8a9709de
WD
81 }
82 if (remote_protocol < OLD_PROTOCOL_VERSION) {
1b2db7ae 83 rprintf(FINFO,"%s is very old version of rsync, upgrade recommended.\n",
8a9709de
WD
84 am_server? "Client" : "Server");
85 }
86 if (protocol_version < MIN_PROTOCOL_VERSION) {
87 rprintf(FERROR, "--protocol must be at least %d on the %s.\n",
88 MIN_PROTOCOL_VERSION, am_server? "Server" : "Client");
89 exit_cleanup(RERR_PROTOCOL);
90 }
91 if (protocol_version > PROTOCOL_VERSION) {
92 rprintf(FERROR, "--protocol must be no more than %d on the %s.\n",
93 PROTOCOL_VERSION, am_server? "Server" : "Client");
94 exit_cleanup(RERR_PROTOCOL);
95 }
1b2db7ae 96
771d0add
WD
97 if (protocol_version < 30) {
98 if (max_delete == 0 && am_sender) {
99 rprintf(FERROR,
100 "--max-delete=0 requires protocol 30 or higher"
101 " (negotiated %d).\n",
102 protocol_version);
103 exit_cleanup(RERR_PROTOCOL);
104 }
105 }
106
e4b619b4
WD
107 if (delete_mode && !(delete_before+delete_during+delete_after)) {
108 if (protocol_version < 30)
109 delete_before = 1;
110 else
111 delete_during = 1;
112 }
113
a1cc199b
WD
114 if (protocol_version < 29) {
115 if (fuzzy_basis) {
116 rprintf(FERROR,
117 "--fuzzy requires protocol 29 or higher"
118 " (negotiated %d).\n",
119 protocol_version);
120 exit_cleanup(RERR_PROTOCOL);
121 }
e461b9be 122
a1cc199b
WD
123 if (basis_dir_cnt && inplace) {
124 rprintf(FERROR,
125 "%s with --inplace requires protocol 29 or higher"
126 " (negotiated %d).\n",
127 dest_option, protocol_version);
128 exit_cleanup(RERR_PROTOCOL);
129 }
57b12568 130
a1cc199b
WD
131 if (basis_dir_cnt > 1) {
132 rprintf(FERROR,
133 "Using more than one %s option requires protocol"
134 " 29 or higher (negotiated %d).\n",
135 dest_option, protocol_version);
136 exit_cleanup(RERR_PROTOCOL);
137 }
138
139 if (prune_empty_dirs) {
140 rprintf(FERROR,
141 "--prune-empty-dirs requires protocol 29 or higher"
142 " (negotiated %d).\n",
143 protocol_version);
144 exit_cleanup(RERR_PROTOCOL);
145 }
e4b619b4
WD
146 } else if (protocol_version >= 30) {
147 if (recurse && !preserve_hard_links && !delete_before
7a28d184 148 && !delete_after && !delay_updates && !prune_empty_dirs)
3ea6e0e7 149 inc_recurse = 1;
e4b619b4 150 need_messages_from_generator = 1;
57b12568
WD
151 }
152
bc63ae3f 153 if (am_server) {
b1bf649c 154 if (!checksum_seed)
13c5fc0e 155 checksum_seed = time(NULL);
b1bf649c 156 write_int(f_out, checksum_seed);
bc63ae3f
S
157 } else {
158 checksum_seed = read_int(f_in);
13c5fc0e 159 }
4fe159a8 160}