Reversing the order of maybe_emit_filelist_progress() and
[rsync/rsync.git] / options.c
CommitLineData
7a24c346
MP
1/* -*- c-file-style: "linux" -*-
2
2855f61f 3 Copyright (C) 1998-2001 by Andrew Tridgell <tridge@samba.org>
736a6a29 4 Copyright (C) 2000, 2001, 2002 by Martin Pool <mbp@samba.org>
7a6421fa
AT
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19*/
20
7a6421fa 21#include "rsync.h"
2855f61f 22#include "popt.h"
7a6421fa
AT
23
24int make_backups = 0;
93689aa5 25int whole_file = -1;
7a6421fa
AT
26int copy_links = 0;
27int preserve_links = 0;
28int preserve_hard_links = 0;
29int preserve_perms = 0;
30int preserve_devices = 0;
31int preserve_uid = 0;
32int preserve_gid = 0;
33int preserve_times = 0;
34int update_only = 0;
35int cvs_exclude = 0;
36int dry_run=0;
37int local_server=0;
38int ignore_times=0;
39int delete_mode=0;
b33b791e 40int delete_excluded=0;
7a6421fa
AT
41int one_file_system=0;
42int remote_version=0;
43int sparse_files=0;
44int do_compression=0;
45int am_root=0;
46int orig_umask=0;
47int relative_paths=0;
48int numeric_ids = 0;
49int force_delete = 0;
50int io_timeout = 0;
51int io_error = 0;
52int read_only = 0;
53int module_id = -1;
54int am_server = 0;
30ce7e8a 55int am_sender = 0;
7a6421fa
AT
56int recurse = 0;
57int am_daemon=0;
a800434a 58int do_stats=0;
eb86d661 59int do_progress=0;
c95da96a 60int keep_partial=0;
d853783f 61int safe_symlinks=0;
b5313607 62int copy_unsafe_links=0;
7a6421fa 63int block_size=BLOCK_SIZE;
f83f0548 64int size_only=0;
ef5d23eb 65int bwlimit=0;
57df171b 66int delete_after=0;
1347d512 67int only_existing=0;
3d6feada 68int opt_ignore_existing=0;
0b73ca12 69int max_delete=0;
ef55c686 70int ignore_errors=0;
5b56cc19
AT
71#ifdef _WIN32
72int modify_window=2;
73#else
74int modify_window=0;
75#endif
93689aa5 76int blocking_io=-1;
7a6421fa 77
13e29995 78/** Network address family. **/
6ab6d4bf 79#ifdef INET6
13e29995 80int default_af_hint = 0; /* Any protocol */
6ab6d4bf 81#else
13e29995 82int default_af_hint = AF_INET; /* Must use IPv4 */
6ab6d4bf 83#endif
06963d0f 84
13e29995
MP
85/** Do not go into the background when run as --daemon. Good
86 * for debugging and required for running as a service on W32,
87 * or under Unix process-monitors. **/
88int no_detach = 0;
89
088aac85
DD
90int write_batch = 0;
91int read_batch = 0;
6902ed17 92
7a6421fa
AT
93char *backup_suffix = BACKUP_SUFFIX;
94char *tmpdir = NULL;
375a4556 95char *compare_dest = NULL;
7a6421fa
AT
96char *config_file = RSYNCD_CONF;
97char *shell_cmd = NULL;
b6062654 98char *log_format = NULL;
65575e96 99char *password_file = NULL;
41bd28fe 100char *rsync_path = RSYNC_PATH;
66203a98 101char *backup_dir = NULL;
7a6421fa
AT
102int rsync_port = RSYNC_PORT;
103
104int verbose = 0;
b86f0cef 105int quiet = 0;
7a6421fa 106int always_checksum = 0;
f7632fc6 107int list_only = 0;
7a6421fa 108
088aac85 109char *batch_prefix = NULL;
6902ed17 110
5b56cc19
AT
111static int modify_window_set;
112
06963d0f
MP
113/** Local address to bind. As a character string because it's
114 * interpreted by the IPv6 layer: should be a numeric IP4 or ip6
115 * address, or a hostname. **/
116char *bind_address;
5c9730a4 117
7a24c346 118
27a12348 119static void print_rsync_version(enum logcode f)
7a24c346 120{
0c80cd8e 121 char const *got_socketpair = "no ";
2855f61f
MP
122 char const *hardlinks = "no ";
123 char const *links = "no ";
a358449a 124 char const *ipv6 = "no ";
736a6a29 125 STRUCT_STAT *dumstat;
0c80cd8e
MP
126
127#ifdef HAVE_SOCKETPAIR
128 got_socketpair = "";
129#endif
2855f61f
MP
130
131#if SUPPORT_HARD_LINKS
132 hardlinks = "";
133#endif
134
135#if SUPPORT_LINKS
136 links = "";
137#endif
138
a358449a
MP
139#if INET6
140 ipv6 = "";
141#endif
142
2855f61f 143 rprintf(f, "%s version %s protocol version %d\n",
a358449a 144 RSYNC_NAME, RSYNC_VERSION, PROTOCOL_VERSION);
2855f61f 145 rprintf(f,
0413e160 146 "Copyright (C) 1996-2002 by Andrew Tridgell and others\n");
3b4b1984 147 rprintf(f, "<http://rsync.samba.org/>\n");
2855f61f 148 rprintf(f, "Capabilities: %d-bit files, %ssocketpairs, "
736a6a29 149 "%shard links, %ssymlinks, batchfiles, %sIPv6,\n",
30ce7e8a 150 (int) (sizeof(OFF_T) * 8),
a358449a 151 got_socketpair, hardlinks, links, ipv6);
2855f61f 152
736a6a29
MP
153 /* Note that this field may not have type ino_t. It depends
154 * on the complicated interaction between largefile feature
155 * macros. */
6abd193f 156 rprintf(f, " %d-bit system inums, %d-bit internal inums\n",
736a6a29 157 (int) (sizeof(dumstat->st_ino) * 8),
6abd193f 158 (int) (sizeof(INO64_T) * 8));
736a6a29 159
7a24c346 160#ifdef NO_INT64
4db41492 161 rprintf(f, "WARNING: no 64-bit integers on this platform!\n");
7a24c346
MP
162#endif
163}
164
165
0f3203c3 166void usage(enum logcode F)
7a6421fa 167{
2855f61f 168 print_rsync_version(F);
704f908e
AT
169
170 rprintf(F,"rsync is a file transfer program capable of efficient remote update\nvia a fast differencing algorithm.\n\n");
171
9ef53907 172 rprintf(F,"Usage: rsync [OPTION]... SRC [SRC]... [USER@]HOST:DEST\n");
704f908e 173 rprintf(F," or rsync [OPTION]... [USER@]HOST:SRC DEST\n");
9ef53907 174 rprintf(F," or rsync [OPTION]... SRC [SRC]... DEST\n");
14d43f1f 175 rprintf(F," or rsync [OPTION]... [USER@]HOST::SRC [DEST]\n");
9ef53907 176 rprintf(F," or rsync [OPTION]... SRC [SRC]... [USER@]HOST::DEST\n");
14d43f1f 177 rprintf(F," or rsync [OPTION]... rsync://[USER@]HOST[:PORT]/SRC [DEST]\n");
9ef53907
DD
178 rprintf(F,"SRC on single-colon remote HOST will be expanded by remote shell\n");
179 rprintf(F,"SRC on server remote HOST may contain shell wildcards or multiple\n");
180 rprintf(F," sources separated by space as long as they have same top-level\n");
704f908e
AT
181 rprintf(F,"\nOptions\n");
182 rprintf(F," -v, --verbose increase verbosity\n");
b86f0cef 183 rprintf(F," -q, --quiet decrease verbosity\n");
704f908e
AT
184 rprintf(F," -c, --checksum always checksum\n");
185 rprintf(F," -a, --archive archive mode\n");
186 rprintf(F," -r, --recursive recurse into directories\n");
187 rprintf(F," -R, --relative use relative path names\n");
9ef53907 188 rprintf(F," -b, --backup make backups (default %s suffix)\n",BACKUP_SUFFIX);
e20c5e95 189 rprintf(F," --backup-dir make backups into this directory\n");
9ef53907 190 rprintf(F," --suffix=SUFFIX override backup suffix\n");
704f908e 191 rprintf(F," -u, --update update only (don't overwrite newer files)\n");
13e29995
MP
192 rprintf(F," -l, --links copy symlinks as symlinks\n");
193 rprintf(F," -L, --copy-links copy the referent of symlinks\n");
b5313607 194 rprintf(F," --copy-unsafe-links copy links outside the source tree\n");
d853783f 195 rprintf(F," --safe-links ignore links outside the destination tree\n");
704f908e
AT
196 rprintf(F," -H, --hard-links preserve hard links\n");
197 rprintf(F," -p, --perms preserve permissions\n");
198 rprintf(F," -o, --owner preserve owner (root only)\n");
199 rprintf(F," -g, --group preserve group\n");
200 rprintf(F," -D, --devices preserve devices (root only)\n");
201 rprintf(F," -t, --times preserve times\n");
202 rprintf(F," -S, --sparse handle sparse files efficiently\n");
203 rprintf(F," -n, --dry-run show what would have been transferred\n");
204 rprintf(F," -W, --whole-file copy whole files, no incremental checks\n");
93689aa5 205 rprintf(F," --no-whole-file turn off --whole-file\n");
704f908e 206 rprintf(F," -x, --one-file-system don't cross filesystem boundaries\n");
9ef53907 207 rprintf(F," -B, --block-size=SIZE checksum blocking size (default %d)\n",BLOCK_SIZE);
704f908e
AT
208 rprintf(F," -e, --rsh=COMMAND specify rsh replacement\n");
209 rprintf(F," --rsync-path=PATH specify path to rsync on the remote machine\n");
210 rprintf(F," -C, --cvs-exclude auto ignore files in the same way CVS does\n");
1347d512 211 rprintf(F," --existing only update files that already exist\n");
3d6feada 212 rprintf(F," --ignore-existing ignore files that already exist on the receiving side\n");
704f908e 213 rprintf(F," --delete delete files that don't exist on the sending side\n");
b33b791e 214 rprintf(F," --delete-excluded also delete excluded files on the receiving side\n");
57df171b 215 rprintf(F," --delete-after delete after transferring, not before\n");
ef55c686 216 rprintf(F," --ignore-errors delete even if there are IO errors\n");
0b73ca12 217 rprintf(F," --max-delete=NUM don't delete more than NUM files\n");
c95da96a 218 rprintf(F," --partial keep partially transferred files\n");
704f908e
AT
219 rprintf(F," --force force deletion of directories even if not empty\n");
220 rprintf(F," --numeric-ids don't map uid/gid values by user/group name\n");
221 rprintf(F," --timeout=TIME set IO timeout in seconds\n");
222 rprintf(F," -I, --ignore-times don't exclude files that match length and time\n");
f83f0548 223 rprintf(F," --size-only only use file size when determining if a file should be transferred\n");
5b56cc19 224 rprintf(F," --modify-window=NUM Timestamp window (seconds) for file match (default=%d)\n",modify_window);
704f908e 225 rprintf(F," -T --temp-dir=DIR create temporary files in directory DIR\n");
375a4556 226 rprintf(F," --compare-dest=DIR also compare destination files relative to DIR\n");
d9fcc198 227 rprintf(F," -P equivalent to --partial --progress\n");
704f908e 228 rprintf(F," -z, --compress compress file data\n");
2acf81eb 229 rprintf(F," --exclude=PATTERN exclude files matching PATTERN\n");
858fb9eb 230 rprintf(F," --exclude-from=FILE exclude patterns listed in FILE\n");
2acf81eb 231 rprintf(F," --include=PATTERN don't exclude files matching PATTERN\n");
858fb9eb 232 rprintf(F," --include-from=FILE don't exclude patterns listed in FILE\n");
704f908e
AT
233 rprintf(F," --version print version number\n");
234 rprintf(F," --daemon run as a rsync daemon\n");
a538066d 235 rprintf(F," --no-detach do not detach from the parent\n");
2a951cd2 236 rprintf(F," --address=ADDRESS bind to the specified address\n");
704f908e
AT
237 rprintf(F," --config=FILE specify alternate rsyncd.conf file\n");
238 rprintf(F," --port=PORT specify alternate rsyncd port number\n");
c80ccabb 239 rprintf(F," --blocking-io use blocking IO for the remote shell\n");
93689aa5 240 rprintf(F," --no-blocking-io turn off --blocking-io\n");
704f908e 241 rprintf(F," --stats give some file transfer stats\n");
eb86d661 242 rprintf(F," --progress show progress during transfer\n");
b6062654 243 rprintf(F," --log-format=FORMAT log file transfers using specified format\n");
65575e96 244 rprintf(F," --password-file=FILE get password from FILE\n");
ef5d23eb 245 rprintf(F," --bwlimit=KBPS limit I/O bandwidth, KBytes per second\n");
088aac85
DD
246 rprintf(F," --write-batch=PREFIX write batch fileset starting with PREFIX\n");
247 rprintf(F," --read-batch=PREFIX read batch fileset starting with PREFIX\n");
704f908e 248 rprintf(F," -h, --help show this help screen\n");
06963d0f
MP
249#ifdef INET6
250 rprintf(F," -4 prefer IPv4\n");
251 rprintf(F," -6 prefer IPv6\n");
252#endif
7a6421fa
AT
253
254 rprintf(F,"\n");
b72f24c7
AT
255
256 rprintf(F,"\nPlease see the rsync(1) and rsyncd.conf(5) man pages for full documentation\n");
2855f61f 257 rprintf(F,"See http://rsync.samba.org/ for updates, bug reports, and answers\n");
7a6421fa
AT
258}
259
2855f61f 260enum {OPT_VERSION = 1000, OPT_SUFFIX, OPT_SENDER, OPT_SERVER, OPT_EXCLUDE,
b33b791e
DD
261 OPT_EXCLUDE_FROM, OPT_DELETE, OPT_DELETE_EXCLUDED, OPT_NUMERIC_IDS,
262 OPT_RSYNC_PATH, OPT_FORCE, OPT_TIMEOUT, OPT_DAEMON, OPT_CONFIG, OPT_PORT,
d853783f 263 OPT_INCLUDE, OPT_INCLUDE_FROM, OPT_STATS, OPT_PARTIAL, OPT_PROGRESS,
b5313607 264 OPT_COPY_UNSAFE_LINKS, OPT_SAFE_LINKS, OPT_COMPARE_DEST,
57df171b 265 OPT_LOG_FORMAT, OPT_PASSWORD_FILE, OPT_SIZE_ONLY, OPT_ADDRESS,
ef55c686 266 OPT_DELETE_AFTER, OPT_EXISTING, OPT_MAX_DELETE, OPT_BACKUP_DIR,
5b56cc19 267 OPT_IGNORE_ERRORS, OPT_BWLIMIT, OPT_BLOCKING_IO,
93689aa5 268 OPT_NO_BLOCKING_IO, OPT_NO_WHOLE_FILE,
3d6feada 269 OPT_MODIFY_WINDOW, OPT_READ_BATCH, OPT_WRITE_BATCH, OPT_IGNORE_EXISTING};
7a6421fa 270
2855f61f
MP
271static struct poptOption long_options[] = {
272 /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */
273 {"version", 0, POPT_ARG_NONE, 0, OPT_VERSION},
274 {"suffix", 0, POPT_ARG_STRING, &backup_suffix},
275 {"rsync-path", 0, POPT_ARG_STRING, &rsync_path},
276 {"password-file", 0, POPT_ARG_STRING, &password_file},
277 {"ignore-times", 'I', POPT_ARG_NONE, &ignore_times},
278 {"size-only", 0, POPT_ARG_NONE, &size_only},
279 {"modify-window", 0, POPT_ARG_INT, &modify_window, OPT_MODIFY_WINDOW},
280 {"one-file-system", 'x', POPT_ARG_NONE, &one_file_system},
281 {"delete", 0, POPT_ARG_NONE, &delete_mode},
282 {"existing", 0, POPT_ARG_NONE, &only_existing},
3d6feada 283 {"ignore-existing", 0, POPT_ARG_NONE, &opt_ignore_existing},
2855f61f
MP
284 {"delete-after", 0, POPT_ARG_NONE, &delete_after},
285 {"delete-excluded", 0, POPT_ARG_NONE, 0, OPT_DELETE_EXCLUDED},
286 {"force", 0, POPT_ARG_NONE, &force_delete},
287 {"numeric-ids", 0, POPT_ARG_NONE, &numeric_ids},
288 {"exclude", 0, POPT_ARG_STRING, 0, OPT_EXCLUDE},
289 {"include", 0, POPT_ARG_STRING, 0, OPT_INCLUDE},
290 {"exclude-from", 0, POPT_ARG_STRING, 0, OPT_EXCLUDE_FROM},
291 {"include-from", 0, POPT_ARG_STRING, 0, OPT_INCLUDE_FROM},
292 {"safe-links", 0, POPT_ARG_NONE, &safe_symlinks},
293 {"help", 'h', POPT_ARG_NONE, 0, 'h'},
294 {"backup", 'b', POPT_ARG_NONE, &make_backups},
295 {"dry-run", 'n', POPT_ARG_NONE, &dry_run},
296 {"sparse", 'S', POPT_ARG_NONE, &sparse_files},
297 {"cvs-exclude", 'C', POPT_ARG_NONE, &cvs_exclude},
298 {"update", 'u', POPT_ARG_NONE, &update_only},
299 {"links", 'l', POPT_ARG_NONE, &preserve_links},
300 {"copy-links", 'L', POPT_ARG_NONE, &copy_links},
759c0627 301 {"whole-file", 'W', POPT_ARG_NONE, &whole_file},
93689aa5 302 {"no-whole-file", 0, POPT_ARG_NONE, 0, OPT_NO_WHOLE_FILE},
2855f61f
MP
303 {"copy-unsafe-links", 0, POPT_ARG_NONE, &copy_unsafe_links},
304 {"perms", 'p', POPT_ARG_NONE, &preserve_perms},
305 {"owner", 'o', POPT_ARG_NONE, &preserve_uid},
306 {"group", 'g', POPT_ARG_NONE, &preserve_gid},
307 {"devices", 'D', POPT_ARG_NONE, &preserve_devices},
308 {"times", 't', POPT_ARG_NONE, &preserve_times},
309 {"checksum", 'c', POPT_ARG_NONE, &always_checksum},
310 {"verbose", 'v', POPT_ARG_NONE, 0, 'v'},
311 {"quiet", 'q', POPT_ARG_NONE, 0, 'q'},
312 {"archive", 'a', POPT_ARG_NONE, 0, 'a'},
313 {"server", 0, POPT_ARG_NONE, &am_server},
314 {"sender", 0, POPT_ARG_NONE, 0, OPT_SENDER},
f6e09367 315 {"recursive", 'r', POPT_ARG_NONE, &recurse},
2855f61f
MP
316 {"relative", 'R', POPT_ARG_NONE, &relative_paths},
317 {"rsh", 'e', POPT_ARG_STRING, &shell_cmd},
318 {"block-size", 'B', POPT_ARG_INT, &block_size},
319 {"max-delete", 0, POPT_ARG_INT, &max_delete},
320 {"timeout", 0, POPT_ARG_INT, &io_timeout},
321 {"temp-dir", 'T', POPT_ARG_STRING, &tmpdir},
7c06e407 322 {"compare-dest", 0, POPT_ARG_STRING, &compare_dest},
2855f61f
MP
323 /* TODO: Should this take an optional int giving the compression level? */
324 {"compress", 'z', POPT_ARG_NONE, &do_compression},
325 {"daemon", 0, POPT_ARG_NONE, &am_daemon},
13e29995 326 {"no-detach", 0, POPT_ARG_NONE, &no_detach},
2855f61f
MP
327 {"stats", 0, POPT_ARG_NONE, &do_stats},
328 {"progress", 0, POPT_ARG_NONE, &do_progress},
329 {"partial", 0, POPT_ARG_NONE, &keep_partial},
330 {"ignore-errors", 0, POPT_ARG_NONE, &ignore_errors},
331 {"blocking-io", 0, POPT_ARG_NONE, &blocking_io},
93689aa5 332 {"no-blocking-io", 0, POPT_ARG_NONE, 0, OPT_NO_BLOCKING_IO},
2855f61f
MP
333 {0, 'P', POPT_ARG_NONE, 0, 'P'},
334 {"config", 0, POPT_ARG_STRING, &config_file},
335 {"port", 0, POPT_ARG_INT, &rsync_port},
336 {"log-format", 0, POPT_ARG_STRING, &log_format},
337 {"bwlimit", 0, POPT_ARG_INT, &bwlimit},
06963d0f 338 {"address", 0, POPT_ARG_STRING, &bind_address, 0},
2855f61f
MP
339 {"backup-dir", 0, POPT_ARG_STRING, &backup_dir},
340 {"hard-links", 'H', POPT_ARG_NONE, &preserve_hard_links},
088aac85
DD
341 {"read-batch", 0, POPT_ARG_STRING, &batch_prefix, OPT_READ_BATCH},
342 {"write-batch", 0, POPT_ARG_STRING, &batch_prefix, OPT_WRITE_BATCH},
06963d0f 343#ifdef INET6
13e29995
MP
344 {0, '4', POPT_ARG_VAL, &default_af_hint, AF_INET },
345 {0, '6', POPT_ARG_VAL, &default_af_hint, AF_INET6 },
06963d0f 346#endif
2855f61f
MP
347 {0,0,0,0}
348};
7a6421fa 349
06963d0f 350
cd8185f2
AT
351static char err_buf[100];
352
2855f61f 353
add7e8fb
MP
354/* We store the option error message, if any, so that we can log the
355 connection attempt (which requires parsing the options), and then
356 show the error later on. */
cd8185f2
AT
357void option_error(void)
358{
359 if (err_buf[0]) {
2855f61f
MP
360 rprintf(FLOG, "%s", err_buf);
361 rprintf(FERROR, "%s: %s", RSYNC_NAME, err_buf);
cd8185f2 362 } else {
add7e8fb
MP
363 rprintf (FERROR, "Error parsing options: "
364 "option may be supported on client but not on server?\n");
365 rprintf (FERROR, RSYNC_NAME ": Error parsing options: "
366 "option may be supported on client but not on server?\n");
cd8185f2 367 }
cd8185f2
AT
368}
369
370/* check to see if we should refuse this option */
371static int check_refuse_options(char *ref, int opt)
372{
373 int i, len;
374 char *p;
375 const char *name;
376
2855f61f 377 for (i=0; long_options[i].longName; i++) {
cd8185f2
AT
378 if (long_options[i].val == opt) break;
379 }
380
2855f61f 381 if (!long_options[i].longName) return 0;
cd8185f2 382
2855f61f 383 name = long_options[i].longName;
cd8185f2
AT
384 len = strlen(name);
385
386 while ((p = strstr(ref,name))) {
055af776
AT
387 if ((p==ref || p[-1]==' ') &&
388 (p[len] == ' ' || p[len] == 0)) {
8950ac03 389 snprintf(err_buf,sizeof(err_buf),
cd8185f2
AT
390 "The '%s' option is not supported by this server\n", name);
391 return 1;
392 }
393 ref += len;
394 }
395 return 0;
396}
397
398
2855f61f
MP
399static int count_args(char const **argv)
400{
401 int i = 0;
402
403 while (argv[i] != NULL)
404 i++;
405
406 return i;
407}
408
409
410/* Process command line arguments. Called on both local and remote.
411 * Returns if all options are OK, otherwise fills in err_buf and
412 * returns 0. */
413int parse_arguments(int *argc, const char ***argv, int frommain)
7a6421fa 414{
d853783f 415 int opt;
cd8185f2 416 char *ref = lp_refuse_options(module_id);
2855f61f 417 poptContext pc;
d853783f 418
2855f61f 419 /* TODO: Call poptReadDefaultConfig; handle errors. */
cd8185f2 420
2855f61f
MP
421 /* The context leaks in case of an error, but if there's a
422 * problem we always exit anyhow. */
4db41492 423 pc = poptGetContext(RSYNC_NAME, *argc, *argv, long_options, 0);
2855f61f
MP
424
425 while ((opt = poptGetNextOpt(pc)) != -1) {
cd8185f2
AT
426 if (ref) {
427 if (check_refuse_options(ref, opt)) return 0;
428 }
429
2855f61f
MP
430 /* most options are handled automatically by popt;
431 * only special cases are returned and listed here. */
432
d853783f
AT
433 switch (opt) {
434 case OPT_VERSION:
2855f61f 435 print_rsync_version(FINFO);
d853783f
AT
436 exit_cleanup(0);
437
5b56cc19 438 case OPT_MODIFY_WINDOW:
2855f61f
MP
439 /* The value has already been set by popt, but
440 * we need to remember that we're using a
441 * non-default setting. */
5b56cc19
AT
442 modify_window_set = 1;
443 break;
444
b33b791e
DD
445 case OPT_DELETE_EXCLUDED:
446 delete_excluded = 1;
447 delete_mode = 1;
448 break;
449
d853783f 450 case OPT_EXCLUDE:
2855f61f 451 add_exclude(poptGetOptArg(pc), 0);
d853783f
AT
452 break;
453
454 case OPT_INCLUDE:
2855f61f 455 add_exclude(poptGetOptArg(pc), 1);
d853783f
AT
456 break;
457
458 case OPT_EXCLUDE_FROM:
2855f61f 459 add_exclude_file(poptGetOptArg(pc), 1, 0);
d853783f
AT
460 break;
461
93689aa5
DD
462 case OPT_NO_WHOLE_FILE:
463 whole_file = 0;
464 break;
465
466 case OPT_NO_BLOCKING_IO:
467 blocking_io = 0;
d853783f
AT
468 break;
469
470 case 'h':
471 usage(FINFO);
472 exit_cleanup(0);
473
d853783f 474 case 'H':
7a6421fa 475#if SUPPORT_HARD_LINKS
d853783f 476 preserve_hard_links=1;
2855f61f
MP
477#else
478 /* FIXME: Don't say "server" if this is
479 * happening on the client. */
480 /* FIXME: Why do we have the duplicated
481 * rprintf? Everybody who gets this message
482 * ought to send it to the client and also to
483 * the logs. */
8950ac03 484 snprintf(err_buf,sizeof(err_buf),
2855f61f
MP
485 "hard links are not supported on this %s\n",
486 am_server ? "server" : "client");
d853783f 487 rprintf(FERROR,"ERROR: hard links not supported on this platform\n");
b11ed3b1 488 return 0;
2855f61f 489#endif /* SUPPORT_HARD_LINKS */
d853783f 490 break;
7a6421fa 491
d853783f
AT
492 case 'v':
493 verbose++;
494 break;
7a6421fa 495
b86f0cef
DD
496 case 'q':
497 if (frommain) quiet++;
498 break;
499
d853783f
AT
500 case 'a':
501 recurse=1;
7a6421fa 502#if SUPPORT_LINKS
d853783f 503 preserve_links=1;
7a6421fa 504#endif
d853783f
AT
505 preserve_perms=1;
506 preserve_times=1;
507 preserve_gid=1;
e20c5e95
AT
508 preserve_uid=1;
509 preserve_devices=1;
d853783f
AT
510 break;
511
d853783f
AT
512 case OPT_SENDER:
513 if (!am_server) {
514 usage(FERROR);
65417579 515 exit_cleanup(RERR_SYNTAX);
d853783f
AT
516 }
517 am_sender = 1;
518 break;
519
d9fcc198
AT
520 case 'P':
521 do_progress = 1;
522 keep_partial = 1;
523 break;
524
088aac85
DD
525 case OPT_WRITE_BATCH:
526 /* popt stores the filename in batch_prefix for us */
527 write_batch = 1;
528 break;
529
76f79ba7 530 case OPT_READ_BATCH:
088aac85 531 /* popt stores the filename in batch_prefix for us */
6902ed17
MP
532 read_batch = 1;
533 break;
534
d853783f 535 default:
2855f61f
MP
536 /* FIXME: If --daemon is specified, then errors for later
537 * parameters seem to disappear. */
8950ac03 538 snprintf(err_buf, sizeof(err_buf),
2855f61f
MP
539 "%s%s: %s\n",
540 am_server ? "on remote machine: " : "",
541 poptBadOption(pc, POPT_BADOPTION_NOALIAS),
542 poptStrerror(opt));
543 return 0;
d853783f 544 }
7a6421fa 545 }
2855f61f 546
088aac85
DD
547 if (write_batch && read_batch) {
548 snprintf(err_buf,sizeof(err_buf),
549 "write-batch and read-batch can not be used together\n");
550 rprintf(FERROR,"ERROR: write-batch and read-batch"
551 " can not be used together\n");
552 return 0;
553 }
554
555 if (do_compression && (write_batch || read_batch)) {
556 snprintf(err_buf,sizeof(err_buf),
557 "compress can not be used with write-batch or read-batch\n");
558 rprintf(FERROR,"ERROR: compress can not be used with"
559 " write-batch or read-batch\n");
560 return 0;
561 }
562
2855f61f
MP
563 *argv = poptGetArgs(pc);
564 if (*argv)
565 *argc = count_args(*argv);
566 else
567 *argc = 0;
568
b11ed3b1 569 return 1;
7a6421fa
AT
570}
571
572
2855f61f
MP
573/* Construct a filtered list of options to pass through from the
574 * client to the server */
7a6421fa
AT
575void server_options(char **args,int *argc)
576{
d853783f
AT
577 int ac = *argc;
578 static char argstr[50];
579 static char bsize[30];
580 static char iotime[30];
0b73ca12 581 static char mdelete[30];
5b56cc19 582 static char mwindow[30];
ef5d23eb 583 static char bw[50];
088aac85
DD
584 /* Leave room for ``--(write|read)-batch='' */
585 static char fext[MAXPATHLEN + 15];
ef5d23eb 586
d853783f
AT
587 int i, x;
588
93689aa5
DD
589 if (whole_file == -1)
590 whole_file = 0;
591 if (blocking_io == -1)
592 blocking_io = 0;
593
d853783f
AT
594 args[ac++] = "--server";
595
596 if (!am_sender)
597 args[ac++] = "--sender";
598
599 x = 1;
600 argstr[0] = '-';
601 for (i=0;i<verbose;i++)
602 argstr[x++] = 'v';
f0b36a48 603
b86f0cef 604 /* the -q option is intentionally left out */
d853783f
AT
605 if (make_backups)
606 argstr[x++] = 'b';
607 if (update_only)
608 argstr[x++] = 'u';
609 if (dry_run)
610 argstr[x++] = 'n';
611 if (preserve_links)
612 argstr[x++] = 'l';
613 if (copy_links)
614 argstr[x++] = 'L';
615 if (whole_file)
616 argstr[x++] = 'W';
617 if (preserve_hard_links)
618 argstr[x++] = 'H';
619 if (preserve_uid)
620 argstr[x++] = 'o';
621 if (preserve_gid)
622 argstr[x++] = 'g';
623 if (preserve_devices)
624 argstr[x++] = 'D';
625 if (preserve_times)
626 argstr[x++] = 't';
627 if (preserve_perms)
628 argstr[x++] = 'p';
629 if (recurse)
630 argstr[x++] = 'r';
631 if (always_checksum)
632 argstr[x++] = 'c';
633 if (cvs_exclude)
634 argstr[x++] = 'C';
635 if (ignore_times)
636 argstr[x++] = 'I';
637 if (relative_paths)
638 argstr[x++] = 'R';
639 if (one_file_system)
640 argstr[x++] = 'x';
641 if (sparse_files)
642 argstr[x++] = 'S';
643 if (do_compression)
644 argstr[x++] = 'z';
f0b36a48
AT
645
646 /* this is a complete hack - blame Rusty
647
648 this is a hack to make the list_only (remote file list)
649 more useful */
650 if (list_only && !recurse)
651 argstr[x++] = 'r';
652
d853783f
AT
653 argstr[x] = 0;
654
655 if (x != 1) args[ac++] = argstr;
656
657 if (block_size != BLOCK_SIZE) {
8950ac03 658 snprintf(bsize,sizeof(bsize),"-B%d",block_size);
d853783f
AT
659 args[ac++] = bsize;
660 }
661
0b73ca12 662 if (max_delete && am_sender) {
8950ac03 663 snprintf(mdelete,sizeof(mdelete),"--max-delete=%d",max_delete);
0b73ca12
AT
664 args[ac++] = mdelete;
665 }
6902ed17 666
088aac85
DD
667 if (batch_prefix != NULL) {
668 char *fmt = "";
669 if (write_batch)
670 fmt = "--write-batch=%s";
671 else
672 if (read_batch)
673 fmt = "--read-batch=%s";
674 snprintf(fext,sizeof(fext),fmt,batch_prefix);
6902ed17
MP
675 args[ac++] = fext;
676 }
0b73ca12 677
d853783f 678 if (io_timeout) {
8950ac03 679 snprintf(iotime,sizeof(iotime),"--timeout=%d",io_timeout);
d853783f
AT
680 args[ac++] = iotime;
681 }
682
ef5d23eb 683 if (bwlimit) {
8950ac03 684 snprintf(bw,sizeof(bw),"--bwlimit=%d",bwlimit);
ef5d23eb
DD
685 args[ac++] = bw;
686 }
687
d853783f
AT
688 if (strcmp(backup_suffix, BACKUP_SUFFIX)) {
689 args[ac++] = "--suffix";
690 args[ac++] = backup_suffix;
691 }
692
b33b791e 693 if (delete_mode && !delete_excluded)
d853783f
AT
694 args[ac++] = "--delete";
695
b33b791e
DD
696 if (delete_excluded)
697 args[ac++] = "--delete-excluded";
698
f83f0548
AT
699 if (size_only)
700 args[ac++] = "--size-only";
701
5b56cc19 702 if (modify_window_set) {
8950ac03 703 snprintf(mwindow,sizeof(mwindow),"--modify-window=%d",
5b56cc19
AT
704 modify_window);
705 args[ac++] = mwindow;
706 }
707
d853783f
AT
708 if (keep_partial)
709 args[ac++] = "--partial";
710
711 if (force_delete)
712 args[ac++] = "--force";
713
57df171b
AT
714 if (delete_after)
715 args[ac++] = "--delete-after";
716
ef55c686
AT
717 if (ignore_errors)
718 args[ac++] = "--ignore-errors";
719
b5313607
DD
720 if (copy_unsafe_links)
721 args[ac++] = "--copy-unsafe-links";
722
d853783f
AT
723 if (safe_symlinks)
724 args[ac++] = "--safe-links";
725
726 if (numeric_ids)
727 args[ac++] = "--numeric-ids";
728
0b73ca12 729 if (only_existing && am_sender)
1347d512
AT
730 args[ac++] = "--existing";
731
3d6feada
MP
732 if (opt_ignore_existing && am_sender)
733 args[ac++] = "--ignore-existing";
734
d853783f
AT
735 if (tmpdir) {
736 args[ac++] = "--temp-dir";
737 args[ac++] = tmpdir;
738 }
739
66203a98
AT
740 if (backup_dir && am_sender) {
741 /* only the receiver needs this option, if we are the sender
742 * then we need to send it to the receiver.
743 */
744 args[ac++] = "--backup-dir";
745 args[ac++] = backup_dir;
746 }
747
375a4556
DD
748 if (compare_dest && am_sender) {
749 /* the server only needs this option if it is not the sender,
750 * and it may be an older version that doesn't know this
751 * option, so don't send it if client is the sender.
752 */
753 args[ac++] = "--compare-dest";
754 args[ac++] = compare_dest;
755 }
756
757
d853783f 758 *argc = ac;
7a6421fa
AT
759}
760