Generate a helpful message when we get an option-error from a daemon
[rsync/rsync.git] / options.c
CommitLineData
0f78b815
WD
1/*
2 * Command-line (and received via daemon-socket) option parsing.
dfa32483 3 *
0f78b815
WD
4 * Copyright (C) 1998-2001 Andrew Tridgell <tridge@samba.org>
5 * Copyright (C) 2000, 2001, 2002 Martin Pool <mbp@samba.org>
d3d07a5e 6 * Copyright (C) 2002-2008 Wayne Davison
dfa32483 7 *
dafe63ca 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.
dfa32483 12 *
dafe63ca
MP
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.
dfa32483 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.
dafe63ca 20 */
7a6421fa 21
7a6421fa 22#include "rsync.h"
1b42f628 23#include "ifuncs.h"
35bf8fa0 24#include <popt.h>
854a1aad 25#include "zlib/zlib.h"
7a6421fa 26
7bc90b30 27extern int module_id;
7be73df4 28extern int sanitize_paths;
e208631a 29extern int daemon_over_rsh;
a1018691 30extern unsigned int module_dirlen;
7842418b
WD
31extern struct filter_list_struct filter_list;
32extern struct filter_list_struct server_filter_list;
8645af1d 33
7a6421fa 34int make_backups = 0;
1bfbf40b
MP
35
36/**
dfa32483 37 * If 1, send the whole file as literal data rather than trying to
dafe63ca 38 * create an incremental diff.
1bfbf40b 39 *
dfa32483 40 * If -1, then look at whether we're local or remote and go by that.
dafe63ca
MP
41 *
42 * @sa disable_deltas_p()
1bfbf40b 43 **/
dfa32483 44int whole_file = -1;
1bfbf40b 45
a015788d 46int append_mode = 0;
716e73d4 47int keep_dirlinks = 0;
2dbf36ef 48int copy_dirlinks = 0;
7a6421fa
AT
49int copy_links = 0;
50int preserve_links = 0;
51int preserve_hard_links = 0;
1c3344a1 52int preserve_acls = 0;
16edf865 53int preserve_xattrs = 0;
7a6421fa 54int preserve_perms = 0;
344f9ba7 55int preserve_executability = 0;
7a6421fa 56int preserve_devices = 0;
b5c6a6ae 57int preserve_specials = 0;
7a6421fa
AT
58int preserve_uid = 0;
59int preserve_gid = 0;
60int preserve_times = 0;
61int update_only = 0;
62int cvs_exclude = 0;
a5c11139 63int dry_run = 0;
11e758a4 64int do_xfers = 1;
a5c11139
WD
65int ignore_times = 0;
66int delete_mode = 0;
a51b3168 67int delete_during = 0;
51d48398
WD
68int delete_before = 0;
69int delete_after = 0;
a5c11139 70int delete_excluded = 0;
47c11975 71int remove_source_files = 0;
a5c11139 72int one_file_system = 0;
4f3e9a0f 73int protocol_version = PROTOCOL_VERSION;
a5c11139
WD
74int sparse_files = 0;
75int do_compression = 0;
854a1aad 76int def_compress_level = Z_DEFAULT_COMPRESSION;
9439c0cb 77int am_root = 0; /* 0 = normal, 1 = root, 2 = --super, -1 = --fake-super */
7f2a1f65
WD
78int am_server = 0;
79int am_sender = 0;
80int am_generator = 0;
81int am_starting_up = 1;
ea5164d1
WD
82int relative_paths = -1;
83int implied_dirs = 1;
7a6421fa 84int numeric_ids = 0;
5974c662 85int allow_8bit_chars = 0;
7a6421fa
AT
86int force_delete = 0;
87int io_timeout = 0;
9ac756c6 88int allowed_lull = 0;
876c9936 89int prune_empty_dirs = 0;
8487f9cf 90int use_qsort = 0;
ea5164d1
WD
91char *files_from = NULL;
92int filesfrom_fd = -1;
305666bf 93char *filesfrom_host = NULL;
ea5164d1 94int eol_nulls = 0;
7a4addaa 95int protect_args = 0;
8f14cc49 96int human_readable = 0;
7a6421fa 97int recurse = 0;
5275029d 98int allow_inc_recurse = 1;
b6164938 99int xfer_dirs = -1;
1312d9fc 100int am_daemon = 0;
a5c11139
WD
101int do_stats = 0;
102int do_progress = 0;
ba22c9e2 103int connect_timeout = 0;
a5c11139
WD
104int keep_partial = 0;
105int safe_symlinks = 0;
106int copy_unsafe_links = 0;
107int size_only = 0;
9fb08441 108int daemon_bwlimit = 0;
a5c11139 109int bwlimit = 0;
c4ed1487 110int fuzzy_basis = 0;
3c74c3a3 111size_t bwlimit_writemax = 0;
e90aab49
WD
112int ignore_existing = 0;
113int ignore_non_existing = 0;
07c6ae7d 114int need_messages_from_generator = 0;
7b9598b2 115int max_delete = INT_MIN;
7d5acf1d 116OFF_T max_size = 0;
74de13d1 117OFF_T min_size = 0;
a5c11139
WD
118int ignore_errors = 0;
119int modify_window = 0;
120int blocking_io = -1;
2289bf64 121int checksum_seed = 0;
a3221d2a 122int inplace = 0;
f06e7082 123int delay_updates = 0;
a06b419d 124long block_size = 0; /* "long" because popt can't set an int32. */
b1e436ec 125char *skip_compress = NULL;
b35d0d8e 126
13e29995 127/** Network address family. **/
24d677fc 128int default_af_hint
4f5b0756 129#ifdef INET6
24d677fc 130 = 0; /* Any protocol */
6ab6d4bf 131#else
24d677fc
WD
132 = AF_INET; /* Must use IPv4 */
133# ifdef AF_INET6
134# undef AF_INET6
135# endif
136# define AF_INET6 AF_INET /* make -6 option a no-op */
6ab6d4bf 137#endif
06963d0f 138
13e29995
MP
139/** Do not go into the background when run as --daemon. Good
140 * for debugging and required for running as a service on W32,
141 * or under Unix process-monitors. **/
1f35babc
WD
142int no_detach
143#if defined _WIN32 || defined __WIN32__
144 = 1;
145#else
146 = 0;
147#endif
13e29995 148
088aac85
DD
149int write_batch = 0;
150int read_batch = 0;
d175d7e1
WD
151int backup_dir_len = 0;
152int backup_suffix_len;
e0391f81 153unsigned int backup_dir_remainder;
6902ed17 154
d175d7e1 155char *backup_suffix = NULL;
7a6421fa 156char *tmpdir = NULL;
a7260c40 157char *partial_dir = NULL;
e012f858 158char *basis_dir[MAX_BASIS_DIRS+1];
30e8c8e1 159char *config_file = NULL;
7a6421fa 160char *shell_cmd = NULL;
87c0f9d6
WD
161char *logfile_name = NULL;
162char *logfile_format = NULL;
b3e4e7ef 163char *stdout_format = NULL;
65575e96 164char *password_file = NULL;
41bd28fe 165char *rsync_path = RSYNC_PATH;
66203a98 166char *backup_dir = NULL;
e0391f81 167char backup_dir_buf[MAXPATHLEN];
831f06a5 168char *sockopts = NULL;
0c56b1ad 169int rsync_port = 0;
dfd7d541 170int compare_dest = 0;
1de3e99b 171int copy_dest = 0;
59c95e42 172int link_dest = 0;
ce0b384f 173int basis_dir_cnt = 0;
f9a9f547 174char *dest_option = NULL;
7a6421fa
AT
175
176int verbose = 0;
b86f0cef 177int quiet = 0;
dc1f7b9e 178int output_motd = 1;
e7651884 179int log_before_transfer = 0;
b3e4e7ef
WD
180int stdout_format_has_i = 0;
181int stdout_format_has_o_or_i = 0;
87c0f9d6 182int logfile_format_has_i = 0;
87c0f9d6 183int logfile_format_has_o_or_i = 0;
7a6421fa 184int always_checksum = 0;
f7632fc6 185int list_only = 0;
7a6421fa 186
9b3318b0
WD
187#define MAX_BATCH_NAME_LEN 256 /* Must be less than MAXPATHLEN-13 */
188char *batch_name = NULL;
6902ed17 189
332cf6df 190int need_unsorted_flist = 0;
f7a76b9c 191#ifdef ICONV_OPTION
332cf6df
WD
192char *iconv_opt = ICONV_OPTION;
193#endif
194
dd32e2c3
WD
195struct chmod_mode_struct *chmod_modes = NULL;
196
e1add893 197static int daemon_opt; /* sets am_daemon after option error-reporting */
f9998046 198static int omit_dir_times = 0;
aa4d3b4c 199static int F_option_cnt = 0;
5b56cc19 200static int modify_window_set;
624d6be2 201static int itemize_changes = 0;
854a1aad 202static int refused_delete, refused_archive_part, refused_compress;
3296f91b 203static int refused_partial, refused_progress, refused_delete_before;
e0e32031 204static int refused_delete_during;
0b52f94d 205static int refused_inplace, refused_no_iconv;
74de13d1 206static char *max_size_arg, *min_size_arg;
77860bac 207static char tmp_partialdir[] = ".~tmp~";
5b56cc19 208
06963d0f 209/** Local address to bind. As a character string because it's
fdf57ede 210 * interpreted by the IPv6 layer: should be a numeric IP4 or IP6
06963d0f
MP
211 * address, or a hostname. **/
212char *bind_address;
5c9730a4 213
7a24c346 214
27a12348 215static void print_rsync_version(enum logcode f)
7a24c346 216{
2ed790f3 217 char *subprotocol = "";
dfa32483 218 char const *got_socketpair = "no ";
a3221d2a 219 char const *have_inplace = "no ";
dfa32483 220 char const *hardlinks = "no ";
1ed56a05 221 char const *symtimes = "no ";
1c3344a1 222 char const *acls = "no ";
16edf865 223 char const *xattrs = "no ";
dfa32483 224 char const *links = "no ";
332cf6df 225 char const *iconv = "no ";
a358449a 226 char const *ipv6 = "no ";
736a6a29 227 STRUCT_STAT *dumstat;
0c80cd8e 228
2ed790f3
WD
229#if SUBPROTOCOL_VERSION != 0
230 asprintf(&subprotocol, ".PR%d", SUBPROTOCOL_VERSION);
231#endif
4f5b0756 232#ifdef HAVE_SOCKETPAIR
dfa32483 233 got_socketpair = "";
0c80cd8e 234#endif
4f5b0756 235#ifdef HAVE_FTRUNCATE
a3221d2a
WD
236 have_inplace = "";
237#endif
4f5b0756 238#ifdef SUPPORT_HARD_LINKS
dfa32483 239 hardlinks = "";
2855f61f 240#endif
1c3344a1
WD
241#ifdef SUPPORT_ACLS
242 acls = "";
243#endif
16edf865
WD
244#ifdef SUPPORT_XATTRS
245 xattrs = "";
246#endif
4f5b0756 247#ifdef SUPPORT_LINKS
dfa32483 248 links = "";
2855f61f 249#endif
4f5b0756 250#ifdef INET6
a358449a 251 ipv6 = "";
dfa32483 252#endif
332cf6df
WD
253#ifdef ICONV_OPTION
254 iconv = "";
255#endif
1ed56a05
WD
256#if defined HAVE_LUTIMES && defined HAVE_UTIMES
257 symtimes = "";
258#endif
a358449a 259
719522b9 260 rprintf(f, "%s version %s protocol version %d%s\n",
2ed790f3 261 RSYNC_NAME, RSYNC_VERSION, PROTOCOL_VERSION, subprotocol);
fede3785 262 rprintf(f, "Copyright (C) 1996-2008 by Andrew Tridgell, Wayne Davison, and others.\n");
719522b9
WD
263 rprintf(f, "Web site: http://rsync.samba.org/\n");
264 rprintf(f, "Capabilities:\n");
265 rprintf(f, " %d-bit files, %d-bit inums, %d-bit timestamps, %d-bit long ints,\n",
d619ff13
WD
266 (int)(sizeof (OFF_T) * 8),
267 (int)(sizeof dumstat->st_ino * 8), /* Don't check ino_t! */
bb25779d 268 (int)(sizeof (time_t) * 8),
d619ff13
WD
269 (int)(sizeof (int64) * 8));
270 rprintf(f, " %ssocketpairs, %shardlinks, %ssymlinks, %sIPv6, batchfiles, %sinplace,\n",
271 got_socketpair, hardlinks, links, ipv6, have_inplace);
1ed56a05
WD
272 rprintf(f, " %sappend, %sACLs, %sxattrs, %siconv, %ssymtimes\n",
273 have_inplace, acls, xattrs, iconv, symtimes);
2855f61f 274
fc0302cf 275#ifdef MAINTAINER_MODE
29433538 276 rprintf(f, "Panic Action: \"%s\"\n", get_panic_action());
fc0302cf 277#endif
736a6a29 278
031fa9ad
WD
279#if SIZEOF_INT64 < 8
280 rprintf(f, "WARNING: no 64-bit integers on this platform!\n");
7a24c346 281#endif
c561edaa
WD
282 if (sizeof (int64) != SIZEOF_INT64) {
283 rprintf(f,
284 "WARNING: size mismatch in SIZEOF_INT64 define (%d != %d)\n",
285 (int) SIZEOF_INT64, (int) sizeof (int64));
286 }
7b329a2d 287
b64ee91a
WD
288 rprintf(f,"\n");
289 rprintf(f,"rsync comes with ABSOLUTELY NO WARRANTY. This is free software, and you\n");
6ab423a5
WD
290 rprintf(f,"are welcome to redistribute it under certain conditions. See the GNU\n");
291 rprintf(f,"General Public Licence for details.\n");
7a24c346
MP
292}
293
294
0f3203c3 295void usage(enum logcode F)
7a6421fa 296{
2855f61f 297 print_rsync_version(F);
704f908e 298
b64ee91a
WD
299 rprintf(F,"\n");
300 rprintf(F,"rsync is a file transfer program capable of efficient remote update\n");
6ab423a5 301 rprintf(F,"via a fast differencing algorithm.\n");
704f908e 302
b64ee91a
WD
303 rprintf(F,"\n");
304 rprintf(F,"Usage: rsync [OPTION]... SRC [SRC]... DEST\n");
868676dc
WD
305 rprintf(F," or rsync [OPTION]... SRC [SRC]... [USER@]HOST:DEST\n");
306 rprintf(F," or rsync [OPTION]... SRC [SRC]... [USER@]HOST::DEST\n");
307 rprintf(F," or rsync [OPTION]... SRC [SRC]... rsync://[USER@]HOST[:PORT]/DEST\n");
d0e94abb 308 rprintf(F," or rsync [OPTION]... [USER@]HOST:SRC [DEST]\n");
14d43f1f 309 rprintf(F," or rsync [OPTION]... [USER@]HOST::SRC [DEST]\n");
14d43f1f 310 rprintf(F," or rsync [OPTION]... rsync://[USER@]HOST[:PORT]/SRC [DEST]\n");
08d82b84
WD
311 rprintf(F,"The ':' usages connect via remote shell, while '::' & 'rsync://' usages connect\n");
312 rprintf(F,"to an rsync daemon, and require SRC or DEST to start with a module name.\n");
b64ee91a
WD
313 rprintf(F,"\n");
314 rprintf(F,"Options\n");
704f908e 315 rprintf(F," -v, --verbose increase verbosity\n");
b3708acf 316 rprintf(F," -q, --quiet suppress non-error messages\n");
dc1f7b9e 317 rprintf(F," --no-motd suppress daemon-mode MOTD (see manpage caveat)\n");
b3708acf 318 rprintf(F," -c, --checksum skip based on checksum, not mod-time & size\n");
16edf865 319 rprintf(F," -a, --archive archive mode; equals -rlptgoD (no -H,-A,-X)\n");
8938d67e 320 rprintf(F," --no-OPTION turn off an implied OPTION (e.g. --no-D)\n");
704f908e
AT
321 rprintf(F," -r, --recursive recurse into directories\n");
322 rprintf(F," -R, --relative use relative path names\n");
11bfaf63 323 rprintf(F," --no-implied-dirs don't send implied dirs with --relative\n");
6839140e 324 rprintf(F," -b, --backup make backups (see --suffix & --backup-dir)\n");
b3708acf
WD
325 rprintf(F," --backup-dir=DIR make backups into hierarchy based in DIR\n");
326 rprintf(F," --suffix=SUFFIX set backup suffix (default %s w/o --backup-dir)\n",BACKUP_SUFFIX);
327 rprintf(F," -u, --update skip files that are newer on the receiver\n");
4ce838e1 328 rprintf(F," --inplace update destination files in-place (SEE MAN PAGE)\n");
a015788d 329 rprintf(F," --append append data onto shorter files\n");
936fa865 330 rprintf(F," --append-verify like --append, but with old data in file checksum\n");
65e4cda0 331 rprintf(F," -d, --dirs transfer directories without recursing\n");
13e29995 332 rprintf(F," -l, --links copy symlinks as symlinks\n");
b3708acf
WD
333 rprintf(F," -L, --copy-links transform symlink into referent file/dir\n");
334 rprintf(F," --copy-unsafe-links only \"unsafe\" symlinks are transformed\n");
335 rprintf(F," --safe-links ignore symlinks that point outside the source tree\n");
2dbf36ef 336 rprintf(F," -k, --copy-dirlinks transform symlink to a dir into referent dir\n");
65e4cda0 337 rprintf(F," -K, --keep-dirlinks treat symlinked dir on receiver as dir\n");
2dbf36ef 338 rprintf(F," -H, --hard-links preserve hard links\n");
704f908e 339 rprintf(F," -p, --perms preserve permissions\n");
344f9ba7 340 rprintf(F," -E, --executability preserve the file's executability\n");
dfe1ed5e 341 rprintf(F," --chmod=CHMOD affect file and/or directory permissions\n");
1c3344a1
WD
342#ifdef SUPPORT_ACLS
343 rprintf(F," -A, --acls preserve ACLs (implies --perms)\n");
16edf865
WD
344#endif
345#ifdef SUPPORT_XATTRS
3caafdfd 346 rprintf(F," -X, --xattrs preserve extended attributes\n");
1c3344a1 347#endif
def97ff9 348 rprintf(F," -o, --owner preserve owner (super-user only)\n");
704f908e 349 rprintf(F," -g, --group preserve group\n");
def97ff9 350 rprintf(F," --devices preserve device files (super-user only)\n");
b5c6a6ae
WD
351 rprintf(F," --specials preserve special files\n");
352 rprintf(F," -D same as --devices --specials\n");
42b06481
WD
353 rprintf(F," -t, --times preserve modification times\n");
354 rprintf(F," -O, --omit-dir-times omit directories from --times\n");
def97ff9 355 rprintf(F," --super receiver attempts super-user activities\n");
9439c0cb
WD
356#ifdef SUPPORT_XATTRS
357 rprintf(F," --fake-super store/recover privileged attrs using xattrs\n");
358#endif
704f908e 359 rprintf(F," -S, --sparse handle sparse files efficiently\n");
d100e733 360 rprintf(F," -n, --dry-run perform a trial run with no changes made\n");
f7a2ac07 361 rprintf(F," -W, --whole-file copy files whole (without delta-xfer algorithm)\n");
704f908e 362 rprintf(F," -x, --one-file-system don't cross filesystem boundaries\n");
9cd339eb 363 rprintf(F," -B, --block-size=SIZE force a fixed checksum block-size\n");
b3708acf 364 rprintf(F," -e, --rsh=COMMAND specify the remote shell to use\n");
05ee4866 365 rprintf(F," --rsync-path=PROGRAM specify the rsync to run on the remote machine\n");
fcecb70b
WD
366 rprintf(F," --existing skip creating new files on receiver\n");
367 rprintf(F," --ignore-existing skip updating files that already exist on receiver\n");
47c11975 368 rprintf(F," --remove-source-files sender removes synchronized files (non-dirs)\n");
3359acb8 369 rprintf(F," --del an alias for --delete-during\n");
fcecb70b 370 rprintf(F," --delete delete extraneous files from destination dirs\n");
e0e32031
WD
371 rprintf(F," --delete-before receiver deletes before transfer, not during\n");
372 rprintf(F," --delete-during receiver deletes during transfer (default)\n");
b0cacef1 373 rprintf(F," --delete-delay find deletions during, delete after\n");
e0e32031 374 rprintf(F," --delete-after receiver deletes after transfer, not during\n");
fcecb70b 375 rprintf(F," --delete-excluded also delete excluded files from destination dirs\n");
db2b5cb7 376 rprintf(F," --ignore-errors delete even if there are I/O errors\n");
51d48398 377 rprintf(F," --force force deletion of directories even if not empty\n");
0b73ca12 378 rprintf(F," --max-delete=NUM don't delete more than NUM files\n");
7d5acf1d 379 rprintf(F," --max-size=SIZE don't transfer any file larger than SIZE\n");
74de13d1 380 rprintf(F," --min-size=SIZE don't transfer any file smaller than SIZE\n");
c95da96a 381 rprintf(F," --partial keep partially transferred files\n");
a7260c40 382 rprintf(F," --partial-dir=DIR put a partially transferred file into DIR\n");
b3708acf 383 rprintf(F," --delay-updates put all updated files into place at transfer's end\n");
876c9936 384 rprintf(F," -m, --prune-empty-dirs prune empty directory chains from the file-list\n");
704f908e 385 rprintf(F," --numeric-ids don't map uid/gid values by user/group name\n");
ba22c9e2
WD
386 rprintf(F," --timeout=SECONDS set I/O timeout in seconds\n");
387 rprintf(F," --contimeout=SECONDS set daemon connection timeout in seconds\n");
b3708acf
WD
388 rprintf(F," -I, --ignore-times don't skip files that match in size and mod-time\n");
389 rprintf(F," --size-only skip files that match in size\n");
390 rprintf(F," --modify-window=NUM compare mod-times with reduced accuracy\n");
4db88e5b 391 rprintf(F," -T, --temp-dir=DIR create temporary files in directory DIR\n");
c4ed1487 392 rprintf(F," -y, --fuzzy find similar file for basis if no dest file\n");
375a4556 393 rprintf(F," --compare-dest=DIR also compare destination files relative to DIR\n");
1de3e99b 394 rprintf(F," --copy-dest=DIR ... and include copies of unchanged files\n");
e012f858 395 rprintf(F," --link-dest=DIR hardlink to files in DIR when unchanged\n");
f924946e 396 rprintf(F," -z, --compress compress file data during the transfer\n");
854a1aad 397 rprintf(F," --compress-level=NUM explicitly set compression level\n");
b1e436ec 398 rprintf(F," --skip-compress=LIST skip compressing files with a suffix in LIST\n");
b3708acf 399 rprintf(F," -C, --cvs-exclude auto-ignore files the same way CVS does\n");
aa4d3b4c 400 rprintf(F," -f, --filter=RULE add a file-filtering RULE\n");
9c71f56a 401 rprintf(F," -F same as --filter='dir-merge /.rsync-filter'\n");
aa4d3b4c 402 rprintf(F," repeated: --filter='- .rsync-filter'\n");
2acf81eb 403 rprintf(F," --exclude=PATTERN exclude files matching PATTERN\n");
b3708acf 404 rprintf(F," --exclude-from=FILE read exclude patterns from FILE\n");
2acf81eb 405 rprintf(F," --include=PATTERN don't exclude files matching PATTERN\n");
b3708acf
WD
406 rprintf(F," --include-from=FILE read include patterns from FILE\n");
407 rprintf(F," --files-from=FILE read list of source-file names from FILE\n");
72316028 408 rprintf(F," -0, --from0 all *-from/filter files are delimited by 0s\n");
7a4addaa 409 rprintf(F," -s, --protect-args no space-splitting; only wildcard special-chars\n");
b4ef0bca 410 rprintf(F," --address=ADDRESS bind address for outgoing socket to daemon\n");
b4713295 411 rprintf(F," --port=PORT specify double-colon alternate port number\n");
831f06a5 412 rprintf(F," --sockopts=OPTIONS specify custom TCP options\n");
db2b5cb7 413 rprintf(F," --blocking-io use blocking I/O for the remote shell\n");
b3708acf 414 rprintf(F," --stats give some file-transfer stats\n");
a6a27602 415 rprintf(F," -8, --8-bit-output leave high-bit chars unescaped in output\n");
05724c07 416 rprintf(F," -h, --human-readable output numbers in a human-readable format\n");
dfa32483 417 rprintf(F," --progress show progress during transfer\n");
b3708acf 418 rprintf(F," -P same as --partial --progress\n");
b78296cb 419 rprintf(F," -i, --itemize-changes output a change-summary for all updates\n");
b3e4e7ef
WD
420 rprintf(F," --out-format=FORMAT output updates using the specified FORMAT\n");
421 rprintf(F," --log-file=FILE log what we're doing to the specified FILE\n");
422 rprintf(F," --log-file-format=FMT log updates using the specified FMT\n");
09a54c39 423 rprintf(F," --password-file=FILE read daemon-access password from FILE\n");
65e4cda0 424 rprintf(F," --list-only list the files instead of copying them\n");
b3708acf
WD
425 rprintf(F," --bwlimit=KBPS limit I/O bandwidth; KBytes per second\n");
426 rprintf(F," --write-batch=FILE write a batched update to FILE\n");
11e758a4 427 rprintf(F," --only-write-batch=FILE like --write-batch but w/o updating destination\n");
b3708acf 428 rprintf(F," --read-batch=FILE read a batched update from FILE\n");
da9f5926 429 rprintf(F," --protocol=NUM force an older protocol version to be used\n");
332cf6df 430#ifdef ICONV_OPTION
84e1a34e 431 rprintf(F," --iconv=CONVERT_SPEC request charset conversion of filenames\n");
332cf6df 432#endif
4db88e5b
WD
433 rprintf(F," -4, --ipv4 prefer IPv4\n");
434 rprintf(F," -6, --ipv6 prefer IPv6\n");
4a34c6f1 435 rprintf(F," --version print version number\n");
375d8f91 436 rprintf(F,"(-h) --help show this help (-h works with no other options)\n");
7a6421fa 437
b64ee91a
WD
438 rprintf(F,"\n");
439 rprintf(F,"Use \"rsync --daemon --help\" to see the daemon-mode command-line options.\n");
3ac7f5d4 440 rprintf(F,"Please see the rsync(1) and rsyncd.conf(5) man pages for full documentation.\n");
2855f61f 441 rprintf(F,"See http://rsync.samba.org/ for updates, bug reports, and answers\n");
7a6421fa
AT
442}
443
3ac7f5d4 444enum {OPT_VERSION = 1000, OPT_DAEMON, OPT_SENDER, OPT_EXCLUDE, OPT_EXCLUDE_FROM,
05724c07 445 OPT_FILTER, OPT_COMPARE_DEST, OPT_COPY_DEST, OPT_LINK_DEST, OPT_HELP,
e16adcdf 446 OPT_INCLUDE, OPT_INCLUDE_FROM, OPT_MODIFY_WINDOW, OPT_MIN_SIZE, OPT_CHMOD,
9ac756c6 447 OPT_READ_BATCH, OPT_WRITE_BATCH, OPT_ONLY_WRITE_BATCH, OPT_MAX_SIZE,
0b52f94d 448 OPT_NO_D, OPT_APPEND, OPT_NO_ICONV,
0ccffd7c 449 OPT_SERVER, OPT_REFUSED_BASE = 9000};
7a6421fa 450
2855f61f
MP
451static struct poptOption long_options[] = {
452 /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */
05724c07 453 {"help", 0, POPT_ARG_NONE, 0, OPT_HELP, 0, 0 },
8db7cc2c 454 {"version", 0, POPT_ARG_NONE, 0, OPT_VERSION, 0, 0},
e86e2fa1 455 {"verbose", 'v', POPT_ARG_NONE, 0, 'v', 0, 0 },
b6164938 456 {"no-verbose", 0, POPT_ARG_VAL, &verbose, 0, 0, 0 },
4afcb709 457 {"no-v", 0, POPT_ARG_VAL, &verbose, 0, 0, 0 },
e86e2fa1 458 {"quiet", 'q', POPT_ARG_NONE, 0, 'q', 0, 0 },
dc1f7b9e
WD
459 {"motd", 0, POPT_ARG_VAL, &output_motd, 1, 0, 0 },
460 {"no-motd", 0, POPT_ARG_VAL, &output_motd, 0, 0, 0 },
e86e2fa1 461 {"stats", 0, POPT_ARG_NONE, &do_stats, 0, 0, 0 },
3ca9e5d8 462 {"human-readable", 'h', POPT_ARG_NONE, 0, 'h', 0, 0},
8487f9cf
WD
463 {"no-human-readable",0, POPT_ARG_VAL, &human_readable, 0, 0, 0},
464 {"no-h", 0, POPT_ARG_VAL, &human_readable, 0, 0, 0},
e86e2fa1 465 {"dry-run", 'n', POPT_ARG_NONE, &dry_run, 0, 0, 0 },
b6164938
WD
466 {"archive", 'a', POPT_ARG_NONE, 0, 'a', 0, 0 },
467 {"recursive", 'r', POPT_ARG_VAL, &recurse, 2, 0, 0 },
468 {"no-recursive", 0, POPT_ARG_VAL, &recurse, 0, 0, 0 },
8487f9cf 469 {"no-r", 0, POPT_ARG_VAL, &recurse, 0, 0, 0 },
5275029d 470 {"inc-recursive", 0, POPT_ARG_VAL, &allow_inc_recurse, 1, 0, 0 },
5275029d 471 {"no-inc-recursive", 0, POPT_ARG_VAL, &allow_inc_recurse, 0, 0, 0 },
d6ca255c
WD
472 {"i-r", 0, POPT_ARG_VAL, &allow_inc_recurse, 1, 0, 0 },
473 {"no-i-r", 0, POPT_ARG_VAL, &allow_inc_recurse, 0, 0, 0 },
e86e2fa1 474 {"dirs", 'd', POPT_ARG_VAL, &xfer_dirs, 2, 0, 0 },
b6164938
WD
475 {"no-dirs", 0, POPT_ARG_VAL, &xfer_dirs, 0, 0, 0 },
476 {"no-d", 0, POPT_ARG_VAL, &xfer_dirs, 0, 0, 0 },
477 {"perms", 'p', POPT_ARG_VAL, &preserve_perms, 1, 0, 0 },
478 {"no-perms", 0, POPT_ARG_VAL, &preserve_perms, 0, 0, 0 },
479 {"no-p", 0, POPT_ARG_VAL, &preserve_perms, 0, 0, 0 },
344f9ba7 480 {"executability", 'E', POPT_ARG_NONE, &preserve_executability, 0, 0, 0 },
1c3344a1
WD
481 {"acls", 'A', POPT_ARG_NONE, 0, 'A', 0, 0 },
482 {"no-acls", 0, POPT_ARG_VAL, &preserve_acls, 0, 0, 0 },
483 {"no-A", 0, POPT_ARG_VAL, &preserve_acls, 0, 0, 0 },
16edf865
WD
484 {"xattrs", 'X', POPT_ARG_NONE, 0, 'X', 0, 0 },
485 {"no-xattrs", 0, POPT_ARG_VAL, &preserve_xattrs, 0, 0, 0 },
486 {"no-X", 0, POPT_ARG_VAL, &preserve_xattrs, 0, 0, 0 },
f9998046 487 {"times", 't', POPT_ARG_VAL, &preserve_times, 2, 0, 0 },
b6164938
WD
488 {"no-times", 0, POPT_ARG_VAL, &preserve_times, 0, 0, 0 },
489 {"no-t", 0, POPT_ARG_VAL, &preserve_times, 0, 0, 0 },
f9998046 490 {"omit-dir-times", 'O', POPT_ARG_VAL, &omit_dir_times, 1, 0, 0 },
eb7a6e09
WD
491 {"no-omit-dir-times",0, POPT_ARG_VAL, &omit_dir_times, 0, 0, 0 },
492 {"no-O", 0, POPT_ARG_VAL, &omit_dir_times, 0, 0, 0 },
38b9170c 493 {"modify-window", 0, POPT_ARG_INT, &modify_window, OPT_MODIFY_WINDOW, 0, 0 },
def97ff9
WD
494 {"super", 0, POPT_ARG_VAL, &am_root, 2, 0, 0 },
495 {"no-super", 0, POPT_ARG_VAL, &am_root, 0, 0, 0 },
9439c0cb 496 {"fake-super", 0, POPT_ARG_VAL, &am_root, -1, 0, 0 },
b6164938
WD
497 {"owner", 'o', POPT_ARG_VAL, &preserve_uid, 1, 0, 0 },
498 {"no-owner", 0, POPT_ARG_VAL, &preserve_uid, 0, 0, 0 },
499 {"no-o", 0, POPT_ARG_VAL, &preserve_uid, 0, 0, 0 },
500 {"group", 'g', POPT_ARG_VAL, &preserve_gid, 1, 0, 0 },
501 {"no-group", 0, POPT_ARG_VAL, &preserve_gid, 0, 0, 0 },
502 {"no-g", 0, POPT_ARG_VAL, &preserve_gid, 0, 0, 0 },
b5c6a6ae
WD
503 {0, 'D', POPT_ARG_NONE, 0, 'D', 0, 0 },
504 {"no-D", 0, POPT_ARG_NONE, 0, OPT_NO_D, 0, 0 },
505 {"devices", 0, POPT_ARG_VAL, &preserve_devices, 1, 0, 0 },
b6164938 506 {"no-devices", 0, POPT_ARG_VAL, &preserve_devices, 0, 0, 0 },
b5c6a6ae
WD
507 {"specials", 0, POPT_ARG_VAL, &preserve_specials, 1, 0, 0 },
508 {"no-specials", 0, POPT_ARG_VAL, &preserve_specials, 0, 0, 0 },
e86e2fa1 509 {"links", 'l', POPT_ARG_VAL, &preserve_links, 1, 0, 0 },
b6164938
WD
510 {"no-links", 0, POPT_ARG_VAL, &preserve_links, 0, 0, 0 },
511 {"no-l", 0, POPT_ARG_VAL, &preserve_links, 0, 0, 0 },
e86e2fa1
WD
512 {"copy-links", 'L', POPT_ARG_NONE, &copy_links, 0, 0, 0 },
513 {"copy-unsafe-links",0, POPT_ARG_NONE, &copy_unsafe_links, 0, 0, 0 },
514 {"safe-links", 0, POPT_ARG_NONE, &safe_symlinks, 0, 0, 0 },
2dbf36ef 515 {"copy-dirlinks", 'k', POPT_ARG_NONE, &copy_dirlinks, 0, 0, 0 },
e86e2fa1 516 {"keep-dirlinks", 'K', POPT_ARG_NONE, &keep_dirlinks, 0, 0, 0 },
e0e32031 517 {"hard-links", 'H', POPT_ARG_NONE, 0, 'H', 0, 0 },
beab3078
WD
518 {"no-hard-links", 0, POPT_ARG_VAL, &preserve_hard_links, 0, 0, 0 },
519 {"no-H", 0, POPT_ARG_VAL, &preserve_hard_links, 0, 0, 0 },
e86e2fa1
WD
520 {"relative", 'R', POPT_ARG_VAL, &relative_paths, 1, 0, 0 },
521 {"no-relative", 0, POPT_ARG_VAL, &relative_paths, 0, 0, 0 },
b6164938 522 {"no-R", 0, POPT_ARG_VAL, &relative_paths, 0, 0, 0 },
2dbf36ef 523 {"implied-dirs", 0, POPT_ARG_VAL, &implied_dirs, 1, 0, 0 },
e86e2fa1 524 {"no-implied-dirs", 0, POPT_ARG_VAL, &implied_dirs, 0, 0, 0 },
d6ca255c
WD
525 {"i-d", 0, POPT_ARG_VAL, &implied_dirs, 1, 0, 0 },
526 {"no-i-d", 0, POPT_ARG_VAL, &implied_dirs, 0, 0, 0 },
e16adcdf 527 {"chmod", 0, POPT_ARG_STRING, 0, OPT_CHMOD, 0, 0 },
afb6e945
WD
528 {"ignore-times", 'I', POPT_ARG_NONE, &ignore_times, 0, 0, 0 },
529 {"size-only", 0, POPT_ARG_NONE, &size_only, 0, 0, 0 },
243c995f 530 {"one-file-system", 'x', POPT_ARG_NONE, 0, 'x', 0, 0 },
28fb6365
WD
531 {"no-one-file-system",'x',POPT_ARG_VAL, &one_file_system, 0, 0, 0 },
532 {"no-x", 'x', POPT_ARG_VAL, &one_file_system, 0, 0, 0 },
e86e2fa1 533 {"update", 'u', POPT_ARG_NONE, &update_only, 0, 0, 0 },
e90aab49 534 {"existing", 0, POPT_ARG_NONE, &ignore_non_existing, 0, 0, 0 },
e90aab49 535 {"ignore-non-existing",0,POPT_ARG_NONE, &ignore_non_existing, 0, 0, 0 },
d2da915c 536 {"ignore-existing", 0, POPT_ARG_NONE, &ignore_existing, 0, 0, 0 },
aeb213ea 537 {"max-size", 0, POPT_ARG_STRING, &max_size_arg, OPT_MAX_SIZE, 0, 0 },
74de13d1 538 {"min-size", 0, POPT_ARG_STRING, &min_size_arg, OPT_MIN_SIZE, 0, 0 },
852e763b
WD
539 {"sparse", 'S', POPT_ARG_VAL, &sparse_files, 1, 0, 0 },
540 {"no-sparse", 0, POPT_ARG_VAL, &sparse_files, 0, 0, 0 },
541 {"no-S", 0, POPT_ARG_VAL, &sparse_files, 0, 0, 0 },
542 {"inplace", 0, POPT_ARG_VAL, &inplace, 1, 0, 0 },
543 {"no-inplace", 0, POPT_ARG_VAL, &inplace, 0, 0, 0 },
936fa865
WD
544 {"append", 0, POPT_ARG_NONE, 0, OPT_APPEND, 0, 0 },
545 {"append-verify", 0, POPT_ARG_VAL, &append_mode, 2, 0, 0 },
546 {"no-append", 0, POPT_ARG_VAL, &append_mode, 0, 0, 0 },
3671987f 547 {"del", 0, POPT_ARG_NONE, &delete_during, 0, 0, 0 },
3359acb8 548 {"delete", 0, POPT_ARG_NONE, &delete_mode, 0, 0, 0 },
e0e32031 549 {"delete-before", 0, POPT_ARG_NONE, &delete_before, 0, 0, 0 },
b0cacef1
WD
550 {"delete-during", 0, POPT_ARG_VAL, &delete_during, 1, 0, 0 },
551 {"delete-delay", 0, POPT_ARG_VAL, &delete_during, 2, 0, 0 },
51d48398
WD
552 {"delete-after", 0, POPT_ARG_NONE, &delete_after, 0, 0, 0 },
553 {"delete-excluded", 0, POPT_ARG_NONE, &delete_excluded, 0, 0, 0 },
47c11975
WD
554 {"remove-sent-files",0, POPT_ARG_VAL, &remove_source_files, 2, 0, 0 }, /* deprecated */
555 {"remove-source-files",0,POPT_ARG_VAL, &remove_source_files, 1, 0, 0 },
852e763b
WD
556 {"force", 0, POPT_ARG_VAL, &force_delete, 1, 0, 0 },
557 {"no-force", 0, POPT_ARG_VAL, &force_delete, 0, 0, 0 },
558 {"ignore-errors", 0, POPT_ARG_VAL, &ignore_errors, 1, 0, 0 },
559 {"no-ignore-errors", 0, POPT_ARG_VAL, &ignore_errors, 0, 0, 0 },
e86e2fa1
WD
560 {"max-delete", 0, POPT_ARG_INT, &max_delete, 0, 0, 0 },
561 {0, 'F', POPT_ARG_NONE, 0, 'F', 0, 0 },
aa4d3b4c 562 {"filter", 'f', POPT_ARG_STRING, 0, OPT_FILTER, 0, 0 },
8db7cc2c
WD
563 {"exclude", 0, POPT_ARG_STRING, 0, OPT_EXCLUDE, 0, 0 },
564 {"include", 0, POPT_ARG_STRING, 0, OPT_INCLUDE, 0, 0 },
565 {"exclude-from", 0, POPT_ARG_STRING, 0, OPT_EXCLUDE_FROM, 0, 0 },
566 {"include-from", 0, POPT_ARG_STRING, 0, OPT_INCLUDE_FROM, 0, 0 },
afb6e945 567 {"cvs-exclude", 'C', POPT_ARG_NONE, &cvs_exclude, 0, 0, 0 },
afb6e945
WD
568 {"whole-file", 'W', POPT_ARG_VAL, &whole_file, 1, 0, 0 },
569 {"no-whole-file", 0, POPT_ARG_VAL, &whole_file, 0, 0, 0 },
b6164938 570 {"no-W", 0, POPT_ARG_VAL, &whole_file, 0, 0, 0 },
8487f9cf
WD
571 {"checksum", 'c', POPT_ARG_VAL, &always_checksum, 1, 0, 0 },
572 {"no-checksum", 0, POPT_ARG_VAL, &always_checksum, 0, 0, 0 },
573 {"no-c", 0, POPT_ARG_VAL, &always_checksum, 0, 0, 0 },
a06b419d 574 {"block-size", 'B', POPT_ARG_LONG, &block_size, 0, 0, 0 },
e012f858 575 {"compare-dest", 0, POPT_ARG_STRING, 0, OPT_COMPARE_DEST, 0, 0 },
1de3e99b 576 {"copy-dest", 0, POPT_ARG_STRING, 0, OPT_COPY_DEST, 0, 0 },
e012f858 577 {"link-dest", 0, POPT_ARG_STRING, 0, OPT_LINK_DEST, 0, 0 },
852e763b
WD
578 {"fuzzy", 'y', POPT_ARG_VAL, &fuzzy_basis, 1, 0, 0 },
579 {"no-fuzzy", 0, POPT_ARG_VAL, &fuzzy_basis, 0, 0, 0 },
492ad042 580 {"no-y", 0, POPT_ARG_VAL, &fuzzy_basis, 0, 0, 0 },
854a1aad 581 {"compress", 'z', POPT_ARG_NONE, 0, 'z', 0, 0 },
8487f9cf
WD
582 {"no-compress", 0, POPT_ARG_VAL, &do_compression, 0, 0, 0 },
583 {"no-z", 0, POPT_ARG_VAL, &do_compression, 0, 0, 0 },
852e763b 584 {"skip-compress", 0, POPT_ARG_STRING, &skip_compress, 0, 0, 0 },
854a1aad 585 {"compress-level", 0, POPT_ARG_INT, &def_compress_level, 'z', 0, 0 },
11bfaf63 586 {0, 'P', POPT_ARG_NONE, 0, 'P', 0, 0 },
b6164938
WD
587 {"progress", 0, POPT_ARG_VAL, &do_progress, 1, 0, 0 },
588 {"no-progress", 0, POPT_ARG_VAL, &do_progress, 0, 0, 0 },
589 {"partial", 0, POPT_ARG_VAL, &keep_partial, 1, 0, 0 },
590 {"no-partial", 0, POPT_ARG_VAL, &keep_partial, 0, 0, 0 },
a7260c40 591 {"partial-dir", 0, POPT_ARG_STRING, &partial_dir, 0, 0, 0 },
8487f9cf
WD
592 {"delay-updates", 0, POPT_ARG_VAL, &delay_updates, 1, 0, 0 },
593 {"no-delay-updates", 0, POPT_ARG_VAL, &delay_updates, 0, 0, 0 },
852e763b
WD
594 {"prune-empty-dirs",'m', POPT_ARG_VAL, &prune_empty_dirs, 1, 0, 0 },
595 {"no-prune-empty-dirs",0,POPT_ARG_VAL, &prune_empty_dirs, 0, 0, 0 },
596 {"no-m", 0, POPT_ARG_VAL, &prune_empty_dirs, 0, 0, 0 },
87c0f9d6 597 {"log-file", 0, POPT_ARG_STRING, &logfile_name, 0, 0, 0 },
b3e4e7ef
WD
598 {"log-file-format", 0, POPT_ARG_STRING, &logfile_format, 0, 0, 0 },
599 {"out-format", 0, POPT_ARG_STRING, &stdout_format, 0, 0, 0 },
600 {"log-format", 0, POPT_ARG_STRING, &stdout_format, 0, 0, 0 }, /* DEPRECATED */
487094a0 601 {"itemize-changes", 'i', POPT_ARG_NONE, 0, 'i', 0, 0 },
8487f9cf
WD
602 {"no-itemize-changes",0, POPT_ARG_VAL, &itemize_changes, 0, 0, 0 },
603 {"no-i", 0, POPT_ARG_VAL, &itemize_changes, 0, 0, 0 },
afb6e945 604 {"bwlimit", 0, POPT_ARG_INT, &bwlimit, 0, 0, 0 },
8487f9cf
WD
605 {"no-bwlimit", 0, POPT_ARG_VAL, &bwlimit, 0, 0, 0 },
606 {"backup", 'b', POPT_ARG_VAL, &make_backups, 1, 0, 0 },
607 {"no-backup", 0, POPT_ARG_VAL, &make_backups, 0, 0, 0 },
afb6e945 608 {"backup-dir", 0, POPT_ARG_STRING, &backup_dir, 0, 0, 0 },
e86e2fa1
WD
609 {"suffix", 0, POPT_ARG_STRING, &backup_suffix, 0, 0, 0 },
610 {"list-only", 0, POPT_ARG_VAL, &list_only, 2, 0, 0 },
8db7cc2c
WD
611 {"read-batch", 0, POPT_ARG_STRING, &batch_name, OPT_READ_BATCH, 0, 0 },
612 {"write-batch", 0, POPT_ARG_STRING, &batch_name, OPT_WRITE_BATCH, 0, 0 },
11e758a4 613 {"only-write-batch", 0, POPT_ARG_STRING, &batch_name, OPT_ONLY_WRITE_BATCH, 0, 0 },
ea5164d1 614 {"files-from", 0, POPT_ARG_STRING, &files_from, 0, 0, 0 },
8487f9cf
WD
615 {"from0", '0', POPT_ARG_VAL, &eol_nulls, 1, 0, 0},
616 {"no-from0", 0, POPT_ARG_VAL, &eol_nulls, 0, 0, 0},
c35d6e35
WD
617 {"protect-args", 's', POPT_ARG_VAL, &protect_args, 1, 0, 0},
618 {"no-protect-args", 0, POPT_ARG_VAL, &protect_args, 0, 0, 0},
619 {"no-s", 0, POPT_ARG_VAL, &protect_args, 0, 0, 0},
8487f9cf
WD
620 {"numeric-ids", 0, POPT_ARG_VAL, &numeric_ids, 1, 0, 0 },
621 {"no-numeric-ids", 0, POPT_ARG_VAL, &numeric_ids, 0, 0, 0 },
e86e2fa1 622 {"timeout", 0, POPT_ARG_INT, &io_timeout, 0, 0, 0 },
8487f9cf 623 {"no-timeout", 0, POPT_ARG_VAL, &io_timeout, 0, 0, 0 },
ba22c9e2 624 {"contimeout", 0, POPT_ARG_INT, &connect_timeout, 0, 0, 0 },
852e763b 625 {"no-contimeout", 0, POPT_ARG_VAL, &connect_timeout, 0, 0, 0 },
e86e2fa1
WD
626 {"rsh", 'e', POPT_ARG_STRING, &shell_cmd, 0, 0, 0 },
627 {"rsync-path", 0, POPT_ARG_STRING, &rsync_path, 0, 0, 0 },
628 {"temp-dir", 'T', POPT_ARG_STRING, &tmpdir, 0, 0, 0 },
332cf6df
WD
629#ifdef ICONV_OPTION
630 {"iconv", 0, POPT_ARG_STRING, &iconv_opt, 0, 0, 0 },
0b52f94d 631 {"no-iconv", 0, POPT_ARG_NONE, 0, OPT_NO_ICONV, 0, 0 },
332cf6df 632#endif
3dd22903
WD
633 {"ipv4", '4', POPT_ARG_VAL, &default_af_hint, AF_INET, 0, 0 },
634 {"ipv6", '6', POPT_ARG_VAL, &default_af_hint, AF_INET6, 0, 0 },
852e763b
WD
635 {"8-bit-output", '8', POPT_ARG_VAL, &allow_8bit_chars, 1, 0, 0 },
636 {"no-8-bit-output", 0, POPT_ARG_VAL, &allow_8bit_chars, 0, 0, 0 },
637 {"no-8", 0, POPT_ARG_VAL, &allow_8bit_chars, 0, 0, 0 },
8487f9cf 638 {"qsort", 0, POPT_ARG_NONE, &use_qsort, 0, 0, 0 },
e86e2fa1
WD
639 {"address", 0, POPT_ARG_STRING, &bind_address, 0, 0, 0 },
640 {"port", 0, POPT_ARG_INT, &rsync_port, 0, 0, 0 },
831f06a5 641 {"sockopts", 0, POPT_ARG_STRING, &sockopts, 0, 0, 0 },
e86e2fa1
WD
642 {"password-file", 0, POPT_ARG_STRING, &password_file, 0, 0, 0 },
643 {"blocking-io", 0, POPT_ARG_VAL, &blocking_io, 1, 0, 0 },
644 {"no-blocking-io", 0, POPT_ARG_VAL, &blocking_io, 0, 0, 0 },
645 {"protocol", 0, POPT_ARG_INT, &protocol_version, 0, 0, 0 },
646 {"checksum-seed", 0, POPT_ARG_INT, &checksum_seed, 0, 0, 0 },
0ccffd7c 647 {"server", 0, POPT_ARG_NONE, 0, OPT_SERVER, 0, 0 },
e86e2fa1
WD
648 {"sender", 0, POPT_ARG_NONE, 0, OPT_SENDER, 0, 0 },
649 /* All the following options switch us into daemon-mode option-parsing. */
3ac7f5d4
WD
650 {"config", 0, POPT_ARG_STRING, 0, OPT_DAEMON, 0, 0 },
651 {"daemon", 0, POPT_ARG_NONE, 0, OPT_DAEMON, 0, 0 },
1f35babc 652 {"detach", 0, POPT_ARG_NONE, 0, OPT_DAEMON, 0, 0 },
3ac7f5d4 653 {"no-detach", 0, POPT_ARG_NONE, 0, OPT_DAEMON, 0, 0 },
3ac7f5d4
WD
654 {0,0,0,0, 0, 0, 0}
655};
656
657static void daemon_usage(enum logcode F)
658{
659 print_rsync_version(F);
660
b64ee91a
WD
661 rprintf(F,"\n");
662 rprintf(F,"Usage: rsync --daemon [OPTION]...\n");
3ac7f5d4 663 rprintf(F," --address=ADDRESS bind to the specified address\n");
b3708acf 664 rprintf(F," --bwlimit=KBPS limit I/O bandwidth; KBytes per second\n");
3ac7f5d4
WD
665 rprintf(F," --config=FILE specify alternate rsyncd.conf file\n");
666 rprintf(F," --no-detach do not detach from the parent\n");
b3708acf 667 rprintf(F," --port=PORT listen on alternate port number\n");
87c0f9d6 668 rprintf(F," --log-file=FILE override the \"log file\" setting\n");
232658d9 669 rprintf(F," --log-file-format=FMT override the \"log format\" setting\n");
831f06a5 670 rprintf(F," --sockopts=OPTIONS specify custom TCP options\n");
1bd9db74 671 rprintf(F," -v, --verbose increase verbosity\n");
3ac7f5d4
WD
672 rprintf(F," -4, --ipv4 prefer IPv4\n");
673 rprintf(F," -6, --ipv6 prefer IPv6\n");
05724c07 674 rprintf(F," --help show this help screen\n");
3ac7f5d4 675
b64ee91a
WD
676 rprintf(F,"\n");
677 rprintf(F,"If you were not trying to invoke rsync as a daemon, avoid using any of the\n");
3ac7f5d4
WD
678 rprintf(F,"daemon-specific rsync options. See also the rsyncd.conf(5) man page.\n");
679}
680
681static struct poptOption long_daemon_options[] = {
682 /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */
683 {"address", 0, POPT_ARG_STRING, &bind_address, 0, 0, 0 },
9fb08441 684 {"bwlimit", 0, POPT_ARG_INT, &daemon_bwlimit, 0, 0, 0 },
3ac7f5d4
WD
685 {"config", 0, POPT_ARG_STRING, &config_file, 0, 0, 0 },
686 {"daemon", 0, POPT_ARG_NONE, &daemon_opt, 0, 0, 0 },
3ac7f5d4
WD
687 {"ipv4", '4', POPT_ARG_VAL, &default_af_hint, AF_INET, 0, 0 },
688 {"ipv6", '6', POPT_ARG_VAL, &default_af_hint, AF_INET6, 0, 0 },
1f35babc 689 {"detach", 0, POPT_ARG_VAL, &no_detach, 0, 0, 0 },
8487f9cf 690 {"no-detach", 0, POPT_ARG_VAL, &no_detach, 1, 0, 0 },
87c0f9d6 691 {"log-file", 0, POPT_ARG_STRING, &logfile_name, 0, 0, 0 },
232658d9 692 {"log-file-format", 0, POPT_ARG_STRING, &logfile_format, 0, 0, 0 },
3ac7f5d4 693 {"port", 0, POPT_ARG_INT, &rsync_port, 0, 0, 0 },
831f06a5 694 {"sockopts", 0, POPT_ARG_STRING, &sockopts, 0, 0, 0 },
3ac7f5d4
WD
695 {"protocol", 0, POPT_ARG_INT, &protocol_version, 0, 0, 0 },
696 {"server", 0, POPT_ARG_NONE, &am_server, 0, 0, 0 },
b8cc3587 697 {"temp-dir", 'T', POPT_ARG_STRING, &tmpdir, 0, 0, 0 },
1bd9db74 698 {"verbose", 'v', POPT_ARG_NONE, 0, 'v', 0, 0 },
b6e22a47
WD
699 {"no-verbose", 0, POPT_ARG_VAL, &verbose, 0, 0, 0 },
700 {"no-v", 0, POPT_ARG_VAL, &verbose, 0, 0, 0 },
3ac7f5d4 701 {"help", 'h', POPT_ARG_NONE, 0, 'h', 0, 0 },
ad715008 702 {0,0,0,0, 0, 0, 0}
2855f61f 703};
7a6421fa 704
06963d0f 705
e51094b7 706static char err_buf[200];
cd8185f2 707
2855f61f 708
dafe63ca
MP
709/**
710 * Store the option error message, if any, so that we can log the
711 * connection attempt (which requires parsing the options), and then
712 * show the error later on.
713 **/
cd8185f2
AT
714void option_error(void)
715{
e51094b7 716 if (!err_buf[0]) {
c9bce0b8
WD
717 strlcpy(err_buf, "Error parsing options: option may "
718 "be supported on client but not on server?\n",
719 sizeof err_buf);
cd8185f2 720 }
e51094b7 721
e51094b7 722 rprintf(FERROR, RSYNC_NAME ": %s", err_buf);
8f1dc165 723 msleep(20);
cd8185f2
AT
724}
725
dafe63ca
MP
726
727/**
27ed20f7
WD
728 * Tweak the option table to disable all options that the rsyncd.conf
729 * file has told us to refuse.
dafe63ca 730 **/
27ed20f7 731static void set_refuse_options(char *bp)
cd8185f2 732{
27ed20f7 733 struct poptOption *op;
093e816c 734 char *cp, shortname[2];
d73e7f6e 735 int is_wild, found_match;
093e816c
WD
736
737 shortname[1] = '\0';
27ed20f7
WD
738
739 while (1) {
06a50542
WD
740 while (*bp == ' ') bp++;
741 if (!*bp)
742 break;
27ed20f7
WD
743 if ((cp = strchr(bp, ' ')) != NULL)
744 *cp= '\0';
093e816c 745 is_wild = strpbrk(bp, "*?[") != NULL;
d73e7f6e 746 found_match = 0;
55afbb52 747 for (op = long_options; ; op++) {
093e816c 748 *shortname = op->shortName;
d73e7f6e
WD
749 if (!op->longName && !*shortname)
750 break;
751 if ((op->longName && wildmatch(bp, op->longName))
684d7582 752 || (*shortname && wildmatch(bp, shortname))) {
e57211c5
WD
753 if (op->argInfo == POPT_ARG_VAL)
754 op->argInfo = POPT_ARG_NONE;
06a50542 755 op->val = (op - long_options) + OPT_REFUSED_BASE;
d73e7f6e 756 found_match = 1;
3671987f
WD
757 /* These flags are set to let us easily check
758 * an implied option later in the code. */
759 switch (*shortname) {
3671987f
WD
760 case 'r': case 'd': case 'l': case 'p':
761 case 't': case 'g': case 'o': case 'D':
762 refused_archive_part = op->val;
763 break;
854a1aad
WD
764 case 'z':
765 refused_compress = op->val;
766 break;
3671987f
WD
767 case '\0':
768 if (wildmatch("delete", op->longName))
769 refused_delete = op->val;
3296f91b
WD
770 else if (wildmatch("delete-before", op->longName))
771 refused_delete_before = op->val;
e0e32031
WD
772 else if (wildmatch("delete-during", op->longName))
773 refused_delete_during = op->val;
3671987f
WD
774 else if (wildmatch("partial", op->longName))
775 refused_partial = op->val;
776 else if (wildmatch("progress", op->longName))
777 refused_progress = op->val;
a015788d
WD
778 else if (wildmatch("inplace", op->longName))
779 refused_inplace = op->val;
0b52f94d
WD
780 else if (wildmatch("no-iconv", op->longName))
781 refused_no_iconv = op->val;
3671987f
WD
782 break;
783 }
06a50542
WD
784 if (!is_wild)
785 break;
27ed20f7 786 }
cd8185f2 787 }
d73e7f6e
WD
788 if (!found_match) {
789 rprintf(FLOG, "No match for refuse-options string \"%s\"\n",
790 bp);
791 }
27ed20f7
WD
792 if (!cp)
793 break;
794 *cp = ' ';
795 bp = cp + 1;
cd8185f2 796 }
cd8185f2
AT
797}
798
799
8db7cc2c 800static int count_args(const char **argv)
2855f61f 801{
dfa32483 802 int i = 0;
2855f61f 803
8db7cc2c
WD
804 if (argv) {
805 while (argv[i] != NULL)
806 i++;
807 }
dfa32483
WD
808
809 return i;
2855f61f
MP
810}
811
812
837d01dd 813static OFF_T parse_size_arg(char **size_arg, char def_suf)
95e107db 814{
3c19f72c
WD
815 int reps, mult, make_compatible = 0;
816 const char *arg;
817 OFF_T size = 1;
95e107db 818
2dc7b8bd 819 for (arg = *size_arg; isDigit(arg); arg++) {}
95e107db 820 if (*arg == '.')
2dc7b8bd 821 for (arg++; isDigit(arg); arg++) {}
3c19f72c 822 switch (*arg && *arg != '+' && *arg != '-' ? *arg++ : def_suf) {
837d01dd 823 case 'b': case 'B':
3c19f72c 824 reps = 0;
837d01dd 825 break;
95e107db 826 case 'k': case 'K':
3c19f72c 827 reps = 1;
95e107db
WD
828 break;
829 case 'm': case 'M':
3c19f72c 830 reps = 2;
95e107db
WD
831 break;
832 case 'g': case 'G':
3c19f72c 833 reps = 3;
95e107db
WD
834 break;
835 default:
3c19f72c 836 return -1;
95e107db 837 }
3c19f72c
WD
838 if (*arg == 'b' || *arg == 'B')
839 mult = 1000, make_compatible = 1, arg++;
840 else if (!*arg || *arg == '+' || *arg == '-')
841 mult = 1024;
842 else if (strncasecmp(arg, "ib", 2) == 0)
843 mult = 1024, arg += 2;
844 else
845 return -1;
846 while (reps--)
847 size *= mult;
848 size *= atof(*size_arg);
849 if ((*arg == '+' || *arg == '-') && arg[1] == '1')
850 size += atoi(arg), make_compatible = 1, arg += 2;
851 if (*arg)
852 return -1;
aeb213ea 853 if (size > 0 && make_compatible) {
74de13d1
WD
854 /* We convert this manually because we may need %lld precision,
855 * and that's not a portable sprintf() escape. */
8f14cc49 856 char buf[128], *s = buf + sizeof buf - 1;
aeb213ea 857 OFF_T num = size;
8f14cc49 858 *s = '\0';
aeb213ea 859 while (num) {
26404276 860 *--s = (char)(num % 10) + '0';
aeb213ea
WD
861 num /= 10;
862 }
863 if (!(*size_arg = strdup(s)))
864 out_of_memory("parse_size_arg");
865 }
95e107db
WD
866 return size;
867}
868
869
3671987f
WD
870static void create_refuse_error(int which)
871{
872 /* The "which" value is the index + OPT_REFUSED_BASE. */
873 struct poptOption *op = &long_options[which - OPT_REFUSED_BASE];
874 int n = snprintf(err_buf, sizeof err_buf,
875 "The server is configured to refuse --%s\n",
876 op->longName) - 1;
877 if (op->shortName) {
878 snprintf(err_buf + n, sizeof err_buf - n,
879 " (-%c)\n", op->shortName);
880 }
881}
882
883
dafe63ca
MP
884/**
885 * Process command line arguments. Called on both local and remote.
886 *
887 * @retval 1 if all options are OK; with globals set to appropriate
888 * values
889 *
890 * @retval 0 on error, with err_buf containing an explanation
891 **/
ffbffc64 892int parse_arguments(int *argc_p, const char ***argv_p, int frommain)
7a6421fa 893{
7a4addaa 894 static poptContext pc;
ffbffc64
WD
895 char *ref = lp_refuse_options(module_id);
896 const char *arg, **argv = *argv_p;
897 int argc = *argc_p;
898 int opt;
d853783f 899
27ed20f7
WD
900 if (ref && *ref)
901 set_refuse_options(ref);
0b52f94d 902 if (am_daemon) {
232658d9 903 set_refuse_options("log-file*");
0b52f94d
WD
904 if (!*lp_charset(module_id))
905 set_refuse_options("iconv");
906 }
27ed20f7 907
332cf6df 908#ifdef ICONV_OPTION
a4453606 909 if (!am_daemon && !protect_args && (arg = getenv("RSYNC_ICONV")) != NULL && *arg)
332cf6df
WD
910 iconv_opt = strdup(arg);
911#endif
912
dfa32483 913 /* TODO: Call poptReadDefaultConfig; handle errors. */
cd8185f2 914
dfa32483
WD
915 /* The context leaks in case of an error, but if there's a
916 * problem we always exit anyhow. */
7a4addaa
WD
917 if (pc)
918 poptFreeContext(pc);
919 pc = poptGetContext(RSYNC_NAME, argc, argv, long_options, 0);
920 if (!am_server)
921 poptReadDefaultConfig(pc, 0);
2855f61f
MP
922
923 while ((opt = poptGetNextOpt(pc)) != -1) {
dfa32483
WD
924 /* most options are handled automatically by popt;
925 * only special cases are returned and listed here. */
2855f61f 926
d853783f
AT
927 switch (opt) {
928 case OPT_VERSION:
dfa32483 929 print_rsync_version(FINFO);
d853783f 930 exit_cleanup(0);
dfa32483 931
0ccffd7c
WD
932 case OPT_SERVER:
933 if (!am_server) {
934 /* Disable popt aliases on the server side and
935 * then start parsing the options again. */
936 poptFreeContext(pc);
ffbffc64 937 pc = poptGetContext(RSYNC_NAME, argc, argv,
0ccffd7c
WD
938 long_options, 0);
939 am_server = 1;
940 }
332cf6df
WD
941#ifdef ICONV_OPTION
942 iconv_opt = NULL;
943#endif
0ccffd7c
WD
944 break;
945
946 case OPT_SENDER:
947 if (!am_server) {
948 usage(FERROR);
949 exit_cleanup(RERR_SYNTAX);
950 }
951 am_sender = 1;
952 break;
953
3ac7f5d4
WD
954 case OPT_DAEMON:
955 if (am_daemon) {
c9bce0b8
WD
956 strlcpy(err_buf,
957 "Attempt to hack rsync thwarted!\n",
958 sizeof err_buf);
3ac7f5d4
WD
959 return 0;
960 }
332cf6df
WD
961#ifdef ICONV_OPTION
962 iconv_opt = NULL;
963#endif
3ac7f5d4 964 poptFreeContext(pc);
ffbffc64 965 pc = poptGetContext(RSYNC_NAME, argc, argv,
3ac7f5d4
WD
966 long_daemon_options, 0);
967 while ((opt = poptGetNextOpt(pc)) != -1) {
968 switch (opt) {
969 case 'h':
970 daemon_usage(FINFO);
971 exit_cleanup(0);
972
1bd9db74
WD
973 case 'v':
974 verbose++;
975 break;
976
3ac7f5d4
WD
977 default:
978 rprintf(FERROR,
979 "rsync: %s: %s (in daemon mode)\n",
980 poptBadOption(pc, POPT_BADOPTION_NOALIAS),
981 poptStrerror(opt));
982 goto daemon_error;
983 }
984 }
b6e22a47
WD
985
986 if (tmpdir && strlen(tmpdir) >= MAXPATHLEN - 10) {
987 snprintf(err_buf, sizeof err_buf,
988 "the --temp-dir path is WAY too long.\n");
989 return 0;
990 }
991
3ac7f5d4
WD
992 if (!daemon_opt) {
993 rprintf(FERROR, "Daemon option(s) used without --daemon.\n");
994 daemon_error:
995 rprintf(FERROR,
996 "(Type \"rsync --daemon --help\" for assistance with daemon mode.)\n");
997 exit_cleanup(RERR_SYNTAX);
998 }
b6e22a47 999
ffbffc64
WD
1000 *argv_p = argv = poptGetArgs(pc);
1001 *argc_p = argc = count_args(argv);
7f2a1f65 1002 am_starting_up = 0;
3ac7f5d4
WD
1003 daemon_opt = 0;
1004 am_daemon = 1;
1005 return 1;
1006
5b56cc19 1007 case OPT_MODIFY_WINDOW:
dfa32483
WD
1008 /* The value has already been set by popt, but
1009 * we need to remember that we're using a
1010 * non-default setting. */
5b56cc19
AT
1011 modify_window_set = 1;
1012 break;
1de50993 1013
aa4d3b4c 1014 case OPT_FILTER:
3a5e9224 1015 parse_rule(&filter_list, poptGetOptArg(pc), 0, 0);
d853783f
AT
1016 break;
1017
aa4d3b4c 1018 case OPT_EXCLUDE:
3a5e9224 1019 parse_rule(&filter_list, poptGetOptArg(pc),
0a68f869 1020 0, XFLG_OLD_PREFIXES);
aa4d3b4c
WD
1021 break;
1022
d853783f 1023 case OPT_INCLUDE:
3a5e9224 1024 parse_rule(&filter_list, poptGetOptArg(pc),
0a68f869 1025 MATCHFLG_INCLUDE, XFLG_OLD_PREFIXES);
d853783f
AT
1026 break;
1027
1028 case OPT_EXCLUDE_FROM:
93695764 1029 case OPT_INCLUDE_FROM:
7be73df4 1030 arg = poptGetOptArg(pc);
1a7f3d99 1031 if (sanitize_paths)
29bca53f 1032 arg = sanitize_path(NULL, arg, NULL, 0);
7842418b 1033 if (server_filter_list.head) {
200aec7d 1034 int rej;
a1018691 1035 char *dir, *cp = strdup(arg);
d3ef9859
WD
1036 if (!cp)
1037 out_of_memory("parse_arguments");
3671987f
WD
1038 if (!*cp)
1039 goto options_rejected;
a1018691
WD
1040 dir = cp + (*cp == '/' ? module_dirlen : 0);
1041 clean_fname(dir, CFN_COLLAPSE_DOT_DOT_DIRS);
1042 rej = check_filter(&server_filter_list, dir, 0) < 0;
d3ef9859 1043 free(cp);
200aec7d
WD
1044 if (rej)
1045 goto options_rejected;
ba3db479 1046 }
3a5e9224
WD
1047 parse_filter_file(&filter_list, arg,
1048 opt == OPT_INCLUDE_FROM ? MATCHFLG_INCLUDE : 0,
1049 XFLG_FATAL_ERRORS | XFLG_OLD_PREFIXES);
93695764
DD
1050 break;
1051
b6164938
WD
1052 case 'a':
1053 if (refused_archive_part) {
1054 create_refuse_error(refused_archive_part);
1055 return 0;
1056 }
1057 if (!recurse) /* preserve recurse == 2 */
1058 recurse = 1;
1059#ifdef SUPPORT_LINKS
1060 preserve_links = 1;
1061#endif
1062 preserve_perms = 1;
f9998046 1063 preserve_times = 2;
b6164938
WD
1064 preserve_gid = 1;
1065 preserve_uid = 1;
1066 preserve_devices = 1;
b5c6a6ae
WD
1067 preserve_specials = 1;
1068 break;
1069
1070 case 'D':
1071 preserve_devices = preserve_specials = 1;
1072 break;
1073
1074 case OPT_NO_D:
1075 preserve_devices = preserve_specials = 0;
b6164938
WD
1076 break;
1077
3ca9e5d8
WD
1078 case 'h':
1079 human_readable++;
1080 break;
1081
e0e32031
WD
1082 case 'H':
1083 preserve_hard_links++;
1084 break;
1085
487094a0
WD
1086 case 'i':
1087 itemize_changes++;
1088 break;
1089
d853783f
AT
1090 case 'v':
1091 verbose++;
1092 break;
7a6421fa 1093
b86f0cef 1094 case 'q':
f98c60bf
WD
1095 if (frommain)
1096 quiet++;
b86f0cef
DD
1097 break;
1098
243c995f
WD
1099 case 'x':
1100 one_file_system++;
1101 break;
1102
aa4d3b4c
WD
1103 case 'F':
1104 switch (++F_option_cnt) {
1105 case 1:
3a5e9224 1106 parse_rule(&filter_list,": /.rsync-filter",0,0);
aa4d3b4c
WD
1107 break;
1108 case 2:
3a5e9224 1109 parse_rule(&filter_list,"- .rsync-filter",0,0);
aa4d3b4c
WD
1110 break;
1111 }
1112 break;
1113
d9fcc198 1114 case 'P':
3671987f
WD
1115 if (refused_partial || refused_progress) {
1116 create_refuse_error(refused_partial
1117 ? refused_partial : refused_progress);
1118 return 0;
1119 }
d9fcc198
AT
1120 do_progress = 1;
1121 keep_partial = 1;
1122 break;
1123
854a1aad
WD
1124 case 'z':
1125 if (def_compress_level < Z_DEFAULT_COMPRESSION
1126 || def_compress_level > Z_BEST_COMPRESSION) {
1127 snprintf(err_buf, sizeof err_buf,
1128 "--compress-level value is invalid: %d\n",
1129 def_compress_level);
1130 return 0;
1131 }
1132 do_compression = def_compress_level != Z_NO_COMPRESSION;
1133 if (do_compression && refused_compress) {
1134 create_refuse_error(refused_compress);
1135 return 0;
1136 }
1137 break;
1138
088aac85 1139 case OPT_WRITE_BATCH:
9b3318b0 1140 /* batch_name is already set */
088aac85
DD
1141 write_batch = 1;
1142 break;
1143
11e758a4
WD
1144 case OPT_ONLY_WRITE_BATCH:
1145 /* batch_name is already set */
1146 write_batch = -1;
1147 break;
1148
76f79ba7 1149 case OPT_READ_BATCH:
9b3318b0 1150 /* batch_name is already set */
6902ed17
MP
1151 read_batch = 1;
1152 break;
ea5164d1 1153
0b52f94d 1154 case OPT_NO_ICONV:
15dbffc2 1155#ifdef ICONV_OPTION
0b52f94d 1156 iconv_opt = NULL;
15dbffc2 1157#endif
0b52f94d
WD
1158 break;
1159
7d5acf1d 1160 case OPT_MAX_SIZE:
837d01dd 1161 if ((max_size = parse_size_arg(&max_size_arg, 'b')) <= 0) {
e012f858 1162 snprintf(err_buf, sizeof err_buf,
7d5acf1d
WD
1163 "--max-size value is invalid: %s\n",
1164 max_size_arg);
e012f858 1165 return 0;
7d5acf1d
WD
1166 }
1167 break;
1168
74de13d1
WD
1169 case OPT_MIN_SIZE:
1170 if ((min_size = parse_size_arg(&min_size_arg, 'b')) <= 0) {
1171 snprintf(err_buf, sizeof err_buf,
1172 "--min-size value is invalid: %s\n",
1173 min_size_arg);
1174 return 0;
1175 }
1176 break;
1177
936fa865
WD
1178 case OPT_APPEND:
1179 if (am_server)
1180 append_mode++;
1181 else
1182 append_mode = 1;
1183 break;
1184
59c95e42 1185 case OPT_LINK_DEST:
fcecb70b 1186#ifdef SUPPORT_HARD_LINKS
59c95e42 1187 link_dest = 1;
e012f858
WD
1188 dest_option = "--link-dest";
1189 goto set_dest_dir;
59c95e42 1190#else
d175d7e1 1191 snprintf(err_buf, sizeof err_buf,
dfa32483 1192 "hard links are not supported on this %s\n",
59c95e42 1193 am_server ? "server" : "client");
59c95e42
DD
1194 return 0;
1195#endif
1196
1de3e99b
WD
1197 case OPT_COPY_DEST:
1198 copy_dest = 1;
1199 dest_option = "--copy-dest";
1200 goto set_dest_dir;
1201
e012f858
WD
1202 case OPT_COMPARE_DEST:
1203 compare_dest = 1;
1204 dest_option = "--compare-dest";
1205 set_dest_dir:
3b26bba0 1206 if (basis_dir_cnt >= MAX_BASIS_DIRS) {
e012f858
WD
1207 snprintf(err_buf, sizeof err_buf,
1208 "ERROR: at most %d %s args may be specified\n",
1209 MAX_BASIS_DIRS, dest_option);
1210 return 0;
1211 }
ad77db8b
WD
1212 /* We defer sanitizing this arg until we know what
1213 * our destination directory is going to be. */
1214 basis_dir[basis_dir_cnt++] = (char *)poptGetOptArg(pc);
e012f858
WD
1215 break;
1216
e16adcdf
WD
1217 case OPT_CHMOD:
1218 arg = poptGetOptArg(pc);
bbe42182 1219 if (!parse_chmod(arg, &chmod_modes)) {
e16adcdf
WD
1220 snprintf(err_buf, sizeof err_buf,
1221 "Invalid argument passed to --chmod (%s)\n",
1222 arg);
1223 return 0;
1224 }
1225 break;
1226
f5a910dd
WD
1227 case OPT_HELP:
1228 usage(FINFO);
1229 exit_cleanup(0);
1230
1c3344a1
WD
1231 case 'A':
1232#ifdef SUPPORT_ACLS
1233 preserve_acls = 1;
1234 preserve_perms = 1;
1235 break;
1236#else
1237 /* FIXME: this should probably be ignored with a
eb8f5c74
WD
1238 * warning and then countermeasures taken to
1239 * restrict group and other access in the presence
1240 * of any more restrictive ACLs, but this is safe
1c3344a1
WD
1241 * for now */
1242 snprintf(err_buf,sizeof(err_buf),
1243 "ACLs are not supported on this %s\n",
1244 am_server ? "server" : "client");
1245 return 0;
1246#endif
1247
16edf865
WD
1248 case 'X':
1249#ifdef SUPPORT_XATTRS
524eaa82 1250 preserve_xattrs++;
16edf865
WD
1251 break;
1252#else
1253 snprintf(err_buf,sizeof(err_buf),
1254 "extended attributes are not supported on this %s\n",
1255 am_server ? "server" : "client");
1256 return 0;
1257#endif
1c3344a1 1258
d853783f 1259 default:
55afbb52 1260 /* A large opt value means that set_refuse_options()
3671987f 1261 * turned this option off. */
c67d1386 1262 if (opt >= OPT_REFUSED_BASE) {
3671987f
WD
1263 create_refuse_error(opt);
1264 return 0;
27ed20f7 1265 }
3671987f
WD
1266 snprintf(err_buf, sizeof err_buf, "%s%s: %s\n",
1267 am_server ? "on remote machine: " : "",
1268 poptBadOption(pc, POPT_BADOPTION_NOALIAS),
1269 poptStrerror(opt));
dfa32483 1270 return 0;
d853783f 1271 }
7a6421fa 1272 }
2855f61f 1273
ffbffc64 1274 if (human_readable && argc == 2) {
3ca9e5d8 1275 /* Allow the old meaning of 'h' (--help) on its own. */
05724c07
WD
1276 usage(FINFO);
1277 exit_cleanup(0);
1278 }
1279
332cf6df 1280#ifdef ICONV_OPTION
a4453606 1281 if (iconv_opt && protect_args != 2) {
332cf6df
WD
1282 if (!am_server && strcmp(iconv_opt, "-") == 0)
1283 iconv_opt = NULL;
1284 else
1285 need_unsorted_flist = 1;
1286 }
0b52f94d
WD
1287 if (refused_no_iconv && !iconv_opt) {
1288 create_refuse_error(refused_no_iconv);
1289 return 0;
1290 }
332cf6df
WD
1291#endif
1292
a4453606
WD
1293 if (protect_args == 1) {
1294 if (!frommain)
1295 protect_args = 0;
1296 else if (am_server)
1297 return 1;
1298 }
1299
4f5b0756 1300#ifndef SUPPORT_LINKS
54e87b4b 1301 if (preserve_links && !am_sender) {
e1add893
WD
1302 snprintf(err_buf, sizeof err_buf,
1303 "symlinks are not supported on this %s\n",
1304 am_server ? "server" : "client");
e1add893
WD
1305 return 0;
1306 }
1307#endif
1308
4f5b0756 1309#ifndef SUPPORT_HARD_LINKS
e1add893
WD
1310 if (preserve_hard_links) {
1311 snprintf(err_buf, sizeof err_buf,
1312 "hard links are not supported on this %s\n",
1313 am_server ? "server" : "client");
e1add893
WD
1314 return 0;
1315 }
1316#endif
1317
cbbd8e2e
WD
1318#ifdef SUPPORT_XATTRS
1319 if (am_root < 0 && preserve_xattrs > 1) {
1320 snprintf(err_buf, sizeof err_buf,
1321 "--fake-super conflicts with -XX\n");
1322 return 0;
1323 }
1324#else
9439c0cb
WD
1325 if (am_root < 0) {
1326 snprintf(err_buf, sizeof err_buf,
1327 "--fake-super requires an rsync with extended attributes enabled\n");
1328 return 0;
1329 }
1330#endif
1331
088aac85 1332 if (write_batch && read_batch) {
c3ea0990 1333 snprintf(err_buf, sizeof err_buf,
36119893 1334 "--write-batch and --read-batch can not be used together\n");
c3ea0990 1335 return 0;
088aac85 1336 }
11e758a4 1337 if (write_batch > 0 || read_batch) {
94327ff0
WD
1338 if (am_server) {
1339 rprintf(FINFO,
1340 "ignoring --%s-batch option sent to server\n",
1341 write_batch ? "write" : "read");
1342 /* We don't actually exit_cleanup(), so that we can
1343 * still service older version clients that still send
1344 * batch args to server. */
1345 read_batch = write_batch = 0;
1346 batch_name = NULL;
254ee3ba
WD
1347 } else if (dry_run)
1348 write_batch = 0;
69e2b4ee
WD
1349 } else if (write_batch < 0 && dry_run)
1350 write_batch = 0;
36119893 1351 if (read_batch && files_from) {
c3ea0990 1352 snprintf(err_buf, sizeof err_buf,
36119893 1353 "--read-batch cannot be used with --files-from\n");
c3ea0990 1354 return 0;
36119893 1355 }
9b3318b0 1356 if (batch_name && strlen(batch_name) > MAX_BATCH_NAME_LEN) {
c3ea0990 1357 snprintf(err_buf, sizeof err_buf,
9b3318b0
WD
1358 "the batch-file name must be %d characters or less.\n",
1359 MAX_BATCH_NAME_LEN);
c3ea0990 1360 return 0;
beb93684 1361 }
088aac85 1362
ce58b1b4 1363 if (tmpdir && strlen(tmpdir) >= MAXPATHLEN - 10) {
c3ea0990
WD
1364 snprintf(err_buf, sizeof err_buf,
1365 "the --temp-dir path is WAY too long.\n");
1366 return 0;
ce58b1b4
WD
1367 }
1368
7b9598b2
WD
1369 if (max_delete < 0 && max_delete != INT_MIN) {
1370 /* Negative numbers are treated as "no deletions". */
1371 max_delete = 0;
1372 }
1373
1de3e99b 1374 if (compare_dest + copy_dest + link_dest > 1) {
e012f858 1375 snprintf(err_buf, sizeof err_buf,
1de3e99b 1376 "You may not mix --compare-dest, --copy-dest, and --link-dest.\n");
e012f858
WD
1377 return 0;
1378 }
1379
b6164938
WD
1380 if (files_from) {
1381 if (recurse == 1) /* preserve recurse == 2 */
1382 recurse = 0;
550d4e23 1383 if (xfer_dirs < 0)
b6164938 1384 xfer_dirs = 1;
dfa32483 1385 }
51d48398 1386
b6164938
WD
1387 if (xfer_dirs < 1)
1388 xfer_dirs = recurse || list_only;
dfa32483 1389
ea5164d1
WD
1390 if (relative_paths < 0)
1391 relative_paths = files_from? 1 : 0;
89f2a4c2
WD
1392 if (!relative_paths)
1393 implied_dirs = 0;
ea5164d1 1394
e0e32031 1395 if (delete_before + !!delete_during + delete_after > 1) {
3359acb8 1396 snprintf(err_buf, sizeof err_buf,
c6eb7fad 1397 "You may not combine multiple --delete-WHEN options.\n");
3359acb8
WD
1398 return 0;
1399 }
f5a910dd 1400 if (delete_before || delete_during || delete_after)
51d48398 1401 delete_mode = 1;
3296f91b 1402 else if (delete_mode || delete_excluded) {
e0e32031 1403 /* Only choose now between before & during if one is refused. */
3296f91b 1404 if (refused_delete_before) {
e0e32031
WD
1405 if (!refused_delete_during)
1406 delete_during = 1;
1407 else {
1408 create_refuse_error(refused_delete_before);
1409 return 0;
1410 }
1411 } else if (refused_delete_during)
1412 delete_before = 1;
1413 delete_mode = 1;
3296f91b 1414 }
89fb5026
WD
1415 if (!xfer_dirs && delete_mode) {
1416 snprintf(err_buf, sizeof err_buf,
1417 "--delete does not work without -r or -d.\n");
1418 return 0;
f5a910dd 1419 }
51d48398 1420
3671987f
WD
1421 if (delete_mode && refused_delete) {
1422 create_refuse_error(refused_delete);
1423 return 0;
1424 }
1425
47c11975
WD
1426 if (remove_source_files) {
1427 /* We only want to infer this refusal of --remove-source-files
07c6ae7d
WD
1428 * via the refusal of "delete", not any of the "delete-FOO"
1429 * options. */
1430 if (refused_delete && am_sender) {
1431 create_refuse_error(refused_delete);
1432 return 0;
1433 }
1434 need_messages_from_generator = 1;
1435 }
1436
ffbffc64
WD
1437 *argv_p = argv = poptGetArgs(pc);
1438 *argc_p = argc = count_args(argv);
7be73df4
WD
1439
1440 if (sanitize_paths) {
1441 int i;
ffbffc64 1442 for (i = argc; i-- > 0; )
29bca53f 1443 argv[i] = sanitize_path(NULL, argv[i], "", 0);
1a7f3d99 1444 if (tmpdir)
29bca53f 1445 tmpdir = sanitize_path(NULL, tmpdir, NULL, 0);
1a7f3d99 1446 if (backup_dir)
29bca53f 1447 backup_dir = sanitize_path(NULL, backup_dir, NULL, 0);
7be73df4 1448 }
7842418b
WD
1449 if (server_filter_list.head && !am_sender) {
1450 struct filter_list_struct *elp = &server_filter_list;
c3ea0990 1451 if (tmpdir) {
a1018691 1452 char *dir;
3671987f
WD
1453 if (!*tmpdir)
1454 goto options_rejected;
a1018691
WD
1455 dir = tmpdir + (*tmpdir == '/' ? module_dirlen : 0);
1456 clean_fname(dir, CFN_COLLAPSE_DOT_DOT_DIRS);
1457 if (check_filter(elp, dir, 1) < 0)
c3ea0990
WD
1458 goto options_rejected;
1459 }
c3ea0990 1460 if (backup_dir) {
a1018691 1461 char *dir;
3671987f
WD
1462 if (!*backup_dir)
1463 goto options_rejected;
a1018691
WD
1464 dir = backup_dir + (*backup_dir == '/' ? module_dirlen : 0);
1465 clean_fname(dir, CFN_COLLAPSE_DOT_DOT_DIRS);
1466 if (check_filter(elp, dir, 1) < 0)
f0fa8c6d 1467 goto options_rejected;
c3ea0990
WD
1468 }
1469 }
7be73df4 1470
d175d7e1 1471 if (!backup_suffix)
e0391f81 1472 backup_suffix = backup_dir ? "" : BACKUP_SUFFIX;
d175d7e1 1473 backup_suffix_len = strlen(backup_suffix);
80ddadb7 1474 if (strchr(backup_suffix, '/') != NULL) {
c3ea0990
WD
1475 snprintf(err_buf, sizeof err_buf,
1476 "--suffix cannot contain slashes: %s\n",
80ddadb7 1477 backup_suffix);
c3ea0990 1478 return 0;
80ddadb7 1479 }
e0391f81
WD
1480 if (backup_dir) {
1481 backup_dir_len = strlcpy(backup_dir_buf, backup_dir, sizeof backup_dir_buf);
1482 backup_dir_remainder = sizeof backup_dir_buf - backup_dir_len;
1483 if (backup_dir_remainder < 32) {
c3ea0990
WD
1484 snprintf(err_buf, sizeof err_buf,
1485 "the --backup-dir path is WAY too long.\n");
1486 return 0;
e0391f81
WD
1487 }
1488 if (backup_dir_buf[backup_dir_len - 1] != '/') {
1489 backup_dir_buf[backup_dir_len++] = '/';
1490 backup_dir_buf[backup_dir_len] = '\0';
1491 }
0ee6ca98
WD
1492 if (verbose > 1 && !am_sender)
1493 rprintf(FINFO, "backup_dir is %s\n", backup_dir_buf);
8dcf9335 1494 } else if (!backup_suffix_len && (!am_server || !am_sender)) {
c3ea0990 1495 snprintf(err_buf, sizeof err_buf,
d175d7e1 1496 "--suffix cannot be a null string without --backup-dir\n");
c3ea0990 1497 return 0;
eb8f5c74
WD
1498 } else if (make_backups && delete_mode && !delete_excluded && !am_server) {
1499 snprintf(backup_dir_buf, sizeof backup_dir_buf,
f41152d3 1500 "P *%s", backup_suffix);
eb8f5c74 1501 parse_rule(&filter_list, backup_dir_buf, 0, 0);
d175d7e1 1502 }
fbd91cae
WD
1503
1504 if (make_backups && !backup_dir) {
1505 omit_dir_times = 0; /* Implied, so avoid -O to sender. */
1506 if (preserve_times > 1)
1507 preserve_times = 1;
1508 } else if (omit_dir_times) {
1509 if (preserve_times > 1)
1510 preserve_times = 1;
1511 }
d175d7e1 1512
b3e4e7ef
WD
1513 if (stdout_format) {
1514 if (am_server && log_format_has(stdout_format, 'I'))
1515 stdout_format_has_i = 2;
1516 else if (log_format_has(stdout_format, 'i'))
1517 stdout_format_has_i = itemize_changes | 1;
1518 if (!log_format_has(stdout_format, 'b')
1519 && !log_format_has(stdout_format, 'c'))
e7651884
WD
1520 log_before_transfer = !am_server;
1521 } else if (itemize_changes) {
b3e4e7ef
WD
1522 stdout_format = "%i %n%L";
1523 stdout_format_has_i = itemize_changes;
e7651884
WD
1524 log_before_transfer = !am_server;
1525 }
87383697 1526
a892d905 1527 if (do_progress && !verbose && !log_before_transfer && !am_server)
e2559dbe 1528 verbose = 1;
87383697 1529
11e758a4
WD
1530 if (dry_run)
1531 do_xfers = 0;
1532
9ac756c6
WD
1533 set_io_timeout(io_timeout);
1534
b3e4e7ef
WD
1535 if (verbose && !stdout_format) {
1536 stdout_format = "%n%L";
87383697 1537 log_before_transfer = !am_server;
3671987f 1538 }
b3e4e7ef
WD
1539 if (stdout_format_has_i || log_format_has(stdout_format, 'o'))
1540 stdout_format_has_o_or_i = 1;
e2559dbe 1541
232658d9 1542 if (logfile_name && !am_daemon) {
b3e4e7ef 1543 if (!logfile_format) {
232658d9 1544 logfile_format = "%i %n%L";
87c0f9d6 1545 logfile_format_has_i = logfile_format_has_o_or_i = 1;
b3e4e7ef
WD
1546 } else {
1547 if (log_format_has(logfile_format, 'i'))
19b85876 1548 logfile_format_has_i = 1;
b3e4e7ef
WD
1549 if (logfile_format_has_i || log_format_has(logfile_format, 'o'))
1550 logfile_format_has_o_or_i = 1;
87c0f9d6 1551 }
6dc9b74b 1552 log_init(0);
2873603a
WD
1553 } else if (!am_daemon)
1554 logfile_format = NULL;
87c0f9d6 1555
9fb08441
WD
1556 if (daemon_bwlimit && (!bwlimit || bwlimit > daemon_bwlimit))
1557 bwlimit = daemon_bwlimit;
3c74c3a3
WD
1558 if (bwlimit) {
1559 bwlimit_writemax = (size_t)bwlimit * 128;
1560 if (bwlimit_writemax < 512)
1561 bwlimit_writemax = 512;
1562 }
1563
cfce9f6d 1564 if (sparse_files && inplace) {
c3851185 1565 /* Note: we don't check for this below, because --append is
cfce9f6d
WD
1566 * OK with --sparse (as long as redos are handled right). */
1567 snprintf(err_buf, sizeof err_buf,
1568 "--sparse cannot be used with --inplace\n");
1569 return 0;
1570 }
1571
a015788d
WD
1572 if (append_mode) {
1573 if (whole_file > 0) {
1574 snprintf(err_buf, sizeof err_buf,
1575 "--append cannot be used with --whole-file\n");
1576 return 0;
1577 }
1578 if (refused_inplace) {
1579 create_refuse_error(refused_inplace);
1580 return 0;
1581 }
1582 inplace = 1;
1583 }
1584
f06e7082 1585 if (delay_updates && !partial_dir)
77860bac 1586 partial_dir = tmp_partialdir;
f06e7082 1587
a3221d2a 1588 if (inplace) {
4f5b0756 1589#ifdef HAVE_FTRUNCATE
a7260c40
WD
1590 if (partial_dir) {
1591 snprintf(err_buf, sizeof err_buf,
a015788d
WD
1592 "--%s cannot be used with --%s\n",
1593 append_mode ? "append" : "inplace",
f06e7082 1594 delay_updates ? "delay-updates" : "partial-dir");
a7260c40
WD
1595 return 0;
1596 }
3671987f
WD
1597 /* --inplace implies --partial for refusal purposes, but we
1598 * clear the keep_partial flag for internal logic purposes. */
1599 if (refused_partial) {
1600 create_refuse_error(refused_partial);
1601 return 0;
1602 }
a3221d2a 1603 keep_partial = 0;
ded4daf0
WD
1604#else
1605 snprintf(err_buf, sizeof err_buf,
a015788d
WD
1606 "--%s is not supported on this %s\n",
1607 append_mode ? "append" : "inplace",
ded4daf0
WD
1608 am_server ? "server" : "client");
1609 return 0;
1610#endif
075aa18f 1611 } else {
bc880cb8 1612 if (keep_partial && !partial_dir && !am_server) {
3671987f
WD
1613 if ((arg = getenv("RSYNC_PARTIAL_DIR")) != NULL && *arg)
1614 partial_dir = strdup(arg);
1615 }
075aa18f 1616 if (partial_dir) {
3671987f 1617 if (*partial_dir)
b58bfb2f 1618 clean_fname(partial_dir, CFN_COLLAPSE_DOT_DOT_DIRS);
075aa18f
WD
1619 if (!*partial_dir || strcmp(partial_dir, ".") == 0)
1620 partial_dir = NULL;
3671987f
WD
1621 if (!partial_dir && refused_partial) {
1622 create_refuse_error(refused_partial);
1623 return 0;
1624 }
075aa18f
WD
1625 keep_partial = 1;
1626 }
a3221d2a
WD
1627 }
1628
ea5164d1 1629 if (files_from) {
305666bf
WD
1630 char *h, *p;
1631 int q;
ffbffc64 1632 if (argc > 2 || (!am_daemon && argc == 1)) {
ea5164d1
WD
1633 usage(FERROR);
1634 exit_cleanup(RERR_SYNTAX);
1635 }
63596e1c 1636 if (strcmp(files_from, "-") == 0) {
ea5164d1 1637 filesfrom_fd = 0;
63596e1c 1638 if (am_server)
305666bf
WD
1639 filesfrom_host = ""; /* reading from socket */
1640 } else if ((p = check_for_hostspec(files_from, &h, &q)) != 0) {
ea5164d1 1641 if (am_server) {
305666bf
WD
1642 snprintf(err_buf, sizeof err_buf,
1643 "The --files-from sent to the server cannot specify a host.\n");
1644 return 0;
ea5164d1 1645 }
305666bf
WD
1646 files_from = p;
1647 filesfrom_host = h;
1648 if (strcmp(files_from, "-") == 0) {
c3ea0990
WD
1649 snprintf(err_buf, sizeof err_buf,
1650 "Invalid --files-from remote filename\n");
1651 return 0;
ea5164d1
WD
1652 }
1653 } else {
305666bf 1654 if (sanitize_paths)
29bca53f 1655 files_from = sanitize_path(NULL, files_from, NULL, 0);
305666bf 1656 if (server_filter_list.head) {
a1018691 1657 char *dir;
305666bf
WD
1658 if (!*files_from)
1659 goto options_rejected;
a1018691
WD
1660 dir = files_from + (*files_from == '/' ? module_dirlen : 0);
1661 clean_fname(dir, CFN_COLLAPSE_DOT_DOT_DIRS);
1662 if (check_filter(&server_filter_list, dir, 0) < 0)
305666bf
WD
1663 goto options_rejected;
1664 }
ea5164d1
WD
1665 filesfrom_fd = open(files_from, O_RDONLY|O_BINARY);
1666 if (filesfrom_fd < 0) {
c3ea0990
WD
1667 snprintf(err_buf, sizeof err_buf,
1668 "failed to open files-from file %s: %s\n",
1669 files_from, strerror(errno));
1670 return 0;
ea5164d1
WD
1671 }
1672 }
1673 }
1674
7f2a1f65
WD
1675 am_starting_up = 0;
1676
b11ed3b1 1677 return 1;
f0fa8c6d
WD
1678
1679 options_rejected:
1680 snprintf(err_buf, sizeof err_buf,
1681 "Your options have been rejected by the server.\n");
1682 return 0;
7a6421fa
AT
1683}
1684
1685
dafe63ca
MP
1686/**
1687 * Construct a filtered list of options to pass through from the
1688 * client to the server.
1689 *
1690 * This involves setting options that will tell the server how to
1691 * behave, and also filtering out options that are processed only
1692 * locally.
1693 **/
ffbffc64 1694void server_options(char **args, int *argc_p)
7a6421fa 1695{
74ba98a5 1696 static char argstr[64];
ffbffc64 1697 int ac = *argc_p;
f98c60bf 1698 char *arg;
d853783f
AT
1699 int i, x;
1700
def97ff9 1701 /* This should always remain first on the server's command-line. */
d853783f
AT
1702 args[ac++] = "--server";
1703
e208631a 1704 if (daemon_over_rsh > 0) {
1312d9fc 1705 args[ac++] = "--daemon";
ffbffc64 1706 *argc_p = ac;
1312d9fc
WD
1707 /* if we're passing --daemon, we're done */
1708 return;
1709 }
1710
d853783f
AT
1711 if (!am_sender)
1712 args[ac++] = "--sender";
1713
1714 x = 1;
1715 argstr[0] = '-';
a4453606
WD
1716
1717 if (protect_args)
1718 argstr[x++] = 's';
1719
f98c60bf 1720 for (i = 0; i < verbose; i++)
d853783f 1721 argstr[x++] = 'v';
f0b36a48 1722
b86f0cef 1723 /* the -q option is intentionally left out */
d853783f
AT
1724 if (make_backups)
1725 argstr[x++] = 'b';
1726 if (update_only)
1727 argstr[x++] = 'u';
2dbf36ef 1728 if (!do_xfers) /* Note: NOT "dry_run"! */
d853783f
AT
1729 argstr[x++] = 'n';
1730 if (preserve_links)
1731 argstr[x++] = 'l';
3caf4035
WD
1732 if ((list_only && !recurse) || xfer_dirs > 1
1733 || (xfer_dirs && !recurse && delete_mode && am_sender))
5454d22a 1734 argstr[x++] = 'd';
35bf8fa0
WD
1735 if (am_sender) {
1736 if (keep_dirlinks)
1737 argstr[x++] = 'K';
876c9936
WD
1738 if (prune_empty_dirs)
1739 argstr[x++] = 'm';
f9998046 1740 if (omit_dir_times)
35bf8fa0 1741 argstr[x++] = 'O';
2dbf36ef
WD
1742 } else {
1743 if (copy_links)
1744 argstr[x++] = 'L';
1745 if (copy_dirlinks)
1746 argstr[x++] = 'k';
35bf8fa0 1747 }
1bfbf40b 1748
dfa32483 1749 if (whole_file > 0)
d853783f 1750 argstr[x++] = 'W';
bceec82f
MP
1751 /* We don't need to send --no-whole-file, because it's the
1752 * default for remote transfers, and in any case old versions
1753 * of rsync will not understand it. */
dfa32483 1754
e0e32031 1755 if (preserve_hard_links) {
d853783f 1756 argstr[x++] = 'H';
e0e32031
WD
1757 if (preserve_hard_links > 1)
1758 argstr[x++] = 'H';
1759 }
d853783f
AT
1760 if (preserve_uid)
1761 argstr[x++] = 'o';
1762 if (preserve_gid)
1763 argstr[x++] = 'g';
b5c6a6ae 1764 if (preserve_devices) /* ignore preserve_specials here */
d853783f
AT
1765 argstr[x++] = 'D';
1766 if (preserve_times)
1767 argstr[x++] = 't';
1768 if (preserve_perms)
1769 argstr[x++] = 'p';
344f9ba7
WD
1770 else if (preserve_executability && am_sender)
1771 argstr[x++] = 'E';
1c3344a1
WD
1772#ifdef SUPPORT_ACLS
1773 if (preserve_acls)
1774 argstr[x++] = 'A';
16edf865
WD
1775#endif
1776#ifdef SUPPORT_XATTRS
524eaa82 1777 if (preserve_xattrs) {
16edf865 1778 argstr[x++] = 'X';
524eaa82
WD
1779 if (preserve_xattrs > 1)
1780 argstr[x++] = 'X';
1781 }
1c3344a1 1782#endif
aa7a6e87 1783 if (recurse)
d853783f
AT
1784 argstr[x++] = 'r';
1785 if (always_checksum)
1786 argstr[x++] = 'c';
1787 if (cvs_exclude)
1788 argstr[x++] = 'C';
1789 if (ignore_times)
1790 argstr[x++] = 'I';
1791 if (relative_paths)
1792 argstr[x++] = 'R';
243c995f 1793 if (one_file_system) {
d853783f 1794 argstr[x++] = 'x';
243c995f
WD
1795 if (one_file_system > 1)
1796 argstr[x++] = 'x';
1797 }
d853783f
AT
1798 if (sparse_files)
1799 argstr[x++] = 'S';
1800 if (do_compression)
1801 argstr[x++] = 'z';
f0b36a48 1802
95def6d9 1803 /* We make use of the -e option to let the server know about any
1ed56a05
WD
1804 * pre-release protocol version && some behavior flags. */
1805 argstr[x++] = 'e';
2ed790f3 1806#if SUBPROTOCOL_VERSION != 0
2ed790f3 1807 if (protocol_version == PROTOCOL_VERSION) {
486f8cd1 1808 x += snprintf(argstr+x, sizeof argstr - x,
1ed56a05 1809 "%d.%d", PROTOCOL_VERSION, SUBPROTOCOL_VERSION);
95def6d9 1810 } else
2ed790f3 1811#endif
1ed56a05
WD
1812 argstr[x++] = '.';
1813 set_allow_inc_recurse();
1814 if (allow_inc_recurse)
95def6d9 1815 argstr[x++] = 'i';
1ed56a05
WD
1816#if defined HAVE_LUTIMES && defined HAVE_UTIMES
1817 argstr[x++] = 'L';
1818#endif
332cf6df
WD
1819 argstr[x] = '\0';
1820
1ed56a05 1821 args[ac++] = argstr;
d853783f 1822
a4453606
WD
1823#ifdef ICONV_OPTION
1824 if (iconv_opt) {
1825 char *set = strchr(iconv_opt, ',');
1826 if (set)
1827 set++;
1828 else
1829 set = iconv_opt;
1830 if (asprintf(&arg, "--iconv=%s", set) < 0)
1831 goto oom;
1832 args[ac++] = arg;
1833 }
1834#endif
1835
1836 if (protect_args) /* initial args break here */
1837 args[ac++] = NULL;
1838
51d48398
WD
1839 if (list_only > 1)
1840 args[ac++] = "--list-only";
1841
f5a910dd
WD
1842 /* This makes sure that the remote rsync can handle deleting with -d
1843 * sans -r because the --no-r option was added at the same time. */
1844 if (xfer_dirs && !recurse && delete_mode && am_sender)
1845 args[ac++] = "--no-r";
1846
854a1aad
WD
1847 if (do_compression && def_compress_level != Z_DEFAULT_COMPRESSION) {
1848 if (asprintf(&arg, "--compress-level=%d", def_compress_level) < 0)
1849 goto oom;
1850 args[ac++] = arg;
1851 }
1852
b5c6a6ae
WD
1853 if (preserve_devices) {
1854 /* Note: sending "--devices" would not be backward-compatible. */
1855 if (!preserve_specials)
1856 args[ac++] = "--no-specials"; /* -D is already set. */
1857 } else if (preserve_specials)
1858 args[ac++] = "--specials";
1859
5c5e1598
WD
1860 /* The server side doesn't use our log-format, but in certain
1861 * circumstances they need to know a little about the option. */
b3e4e7ef
WD
1862 if (stdout_format && am_sender) {
1863 /* Use --log-format, not --out-format, for compatibility. */
1864 if (stdout_format_has_i > 1)
487094a0 1865 args[ac++] = "--log-format=%i%I";
b3e4e7ef 1866 else if (stdout_format_has_i)
684d7582 1867 args[ac++] = "--log-format=%i";
b3e4e7ef 1868 else if (stdout_format_has_o_or_i)
5c5e1598
WD
1869 args[ac++] = "--log-format=%o";
1870 else if (!verbose)
1871 args[ac++] = "--log-format=X";
1872 }
1f30a674 1873
195bd906 1874 if (block_size) {
a06b419d 1875 if (asprintf(&arg, "-B%lu", block_size) < 0)
f98c60bf
WD
1876 goto oom;
1877 args[ac++] = arg;
dfa32483 1878 }
d853783f
AT
1879
1880 if (io_timeout) {
f98c60bf
WD
1881 if (asprintf(&arg, "--timeout=%d", io_timeout) < 0)
1882 goto oom;
1883 args[ac++] = arg;
dfa32483 1884 }
d853783f 1885
ef5d23eb 1886 if (bwlimit) {
f98c60bf
WD
1887 if (asprintf(&arg, "--bwlimit=%d", bwlimit) < 0)
1888 goto oom;
1889 args[ac++] = arg;
ef5d23eb
DD
1890 }
1891
d175d7e1
WD
1892 if (backup_dir) {
1893 args[ac++] = "--backup-dir";
1894 args[ac++] = backup_dir;
1895 }
1896
1897 /* Only send --suffix if it specifies a non-default value. */
f98c60bf 1898 if (strcmp(backup_suffix, backup_dir ? "" : BACKUP_SUFFIX) != 0) {
191e40da 1899 /* We use the following syntax to avoid weirdness with '~'. */
f98c60bf
WD
1900 if (asprintf(&arg, "--suffix=%s", backup_suffix) < 0)
1901 goto oom;
1902 args[ac++] = arg;
d853783f
AT
1903 }
1904
06a50542 1905 if (am_sender) {
7b9598b2
WD
1906 if (max_delete > 0) {
1907 if (asprintf(&arg, "--max-delete=%d", max_delete) < 0)
1908 goto oom;
1909 args[ac++] = arg;
1910 } else if (max_delete == 0)
d6ca255c 1911 args[ac++] = "--max-delete=-1";
7b9598b2
WD
1912 if (min_size) {
1913 args[ac++] = "--min-size";
1914 args[ac++] = min_size_arg;
1915 }
1916 if (max_size) {
1917 args[ac++] = "--max-size";
1918 args[ac++] = max_size_arg;
1919 }
e0e32031 1920 if (delete_before)
c6eb7fad 1921 args[ac++] = "--delete-before";
0d152437
WD
1922 else if (delete_during == 2)
1923 args[ac++] = "--delete-delay";
1924 else if (delete_during)
1925 args[ac++] = "--delete-during";
1926 else if (delete_after)
06a50542 1927 args[ac++] = "--delete-after";
e0e32031
WD
1928 else if (delete_mode && !delete_excluded)
1929 args[ac++] = "--delete";
1930 if (delete_excluded)
1931 args[ac++] = "--delete-excluded";
06a50542
WD
1932 if (force_delete)
1933 args[ac++] = "--force";
11e758a4
WD
1934 if (write_batch < 0)
1935 args[ac++] = "--only-write-batch=X";
def97ff9
WD
1936 if (am_root > 1)
1937 args[ac++] = "--super";
f17e769e
WD
1938 if (size_only)
1939 args[ac++] = "--size-only";
b1e436ec
WD
1940 } else {
1941 if (skip_compress) {
1942 if (asprintf(&arg, "--skip-compress=%s", skip_compress) < 0)
1943 goto oom;
1944 args[ac++] = arg;
1945 }
06a50542 1946 }
b33b791e 1947
5b56cc19 1948 if (modify_window_set) {
f98c60bf
WD
1949 if (asprintf(&arg, "--modify-window=%d", modify_window) < 0)
1950 goto oom;
1951 args[ac++] = arg;
5b56cc19
AT
1952 }
1953
c8d895de 1954 if (checksum_seed) {
221ddb94 1955 if (asprintf(&arg, "--checksum-seed=%d", checksum_seed) < 0)
c8d895de
WD
1956 goto oom;
1957 args[ac++] = arg;
1958 }
1959
a7260c40 1960 if (partial_dir && am_sender) {
77860bac 1961 if (partial_dir != tmp_partialdir) {
3671987f
WD
1962 args[ac++] = "--partial-dir";
1963 args[ac++] = partial_dir;
1964 }
f06e7082
WD
1965 if (delay_updates)
1966 args[ac++] = "--delay-updates";
77860bac 1967 } else if (keep_partial && am_sender)
d853783f
AT
1968 args[ac++] = "--partial";
1969
ef55c686
AT
1970 if (ignore_errors)
1971 args[ac++] = "--ignore-errors";
1972
b5313607
DD
1973 if (copy_unsafe_links)
1974 args[ac++] = "--copy-unsafe-links";
1975
d853783f
AT
1976 if (safe_symlinks)
1977 args[ac++] = "--safe-links";
1978
1979 if (numeric_ids)
1980 args[ac++] = "--numeric-ids";
1981
95def6d9
WD
1982 if (use_qsort)
1983 args[ac++] = "--use-qsort";
1984
4f3797c7
WD
1985 if (am_sender) {
1986 if (ignore_existing)
1987 args[ac++] = "--ignore-existing";
1988
1989 /* Backward compatibility: send --existing, not --ignore-non-existing. */
1990 if (ignore_non_existing)
1991 args[ac++] = "--existing";
3d6feada 1992
4f3797c7
WD
1993 if (tmpdir) {
1994 args[ac++] = "--temp-dir";
1995 args[ac++] = tmpdir;
1996 }
1997
1998 if (basis_dir[0]) {
1999 /* the server only needs this option if it is not the sender,
2000 * and it may be an older version that doesn't know this
2001 * option, so don't send it if client is the sender.
2002 */
2003 int i;
2004 for (i = 0; i < basis_dir_cnt; i++) {
2005 args[ac++] = dest_option;
2006 args[ac++] = basis_dir[i];
2007 }
2008 }
2009 }
e90aab49 2010
936fa865
WD
2011 if (append_mode) {
2012 if (append_mode > 1)
2013 args[ac++] = "--append";
a015788d 2014 args[ac++] = "--append";
936fa865 2015 } else if (inplace)
a3221d2a
WD
2016 args[ac++] = "--inplace";
2017
305666bf
WD
2018 if (files_from && (!am_sender || filesfrom_host)) {
2019 if (filesfrom_host) {
ea5164d1 2020 args[ac++] = "--files-from";
305666bf 2021 args[ac++] = files_from;
ea5164d1
WD
2022 if (eol_nulls)
2023 args[ac++] = "--from0";
2024 } else {
2025 args[ac++] = "--files-from=-";
2026 args[ac++] = "--from0";
2027 }
c0ab28d1
WD
2028 if (!relative_paths)
2029 args[ac++] = "--no-relative";
ea5164d1 2030 }
33a04593
WD
2031 /* It's OK that this checks the upper-bound of the protocol_version. */
2032 if (relative_paths && !implied_dirs && (!am_sender || protocol_version >= 30))
3a90ea0a 2033 args[ac++] = "--no-implied-dirs";
ea5164d1 2034
c4ed1487
WD
2035 if (fuzzy_basis && am_sender)
2036 args[ac++] = "--fuzzy";
2037
47c11975
WD
2038 if (remove_source_files == 1)
2039 args[ac++] = "--remove-source-files";
2040 else if (remove_source_files)
07c6ae7d
WD
2041 args[ac++] = "--remove-sent-files";
2042
ffbffc64 2043 *argc_p = ac;
f98c60bf
WD
2044 return;
2045
2046 oom:
2047 out_of_memory("server_options");
7a6421fa
AT
2048}
2049
305666bf
WD
2050/* Look for a HOST specfication of the form "HOST:PATH", "HOST::PATH", or
2051 * "rsync://HOST:PORT/PATH". If found, *host_ptr will be set to some allocated
2052 * memory with the HOST. If a daemon-accessing spec was specified, the value
2053 * of *port_ptr will contain a non-0 port number, otherwise it will be set to
2054 * 0. The return value is a pointer to the PATH. Note that the HOST spec can
2055 * be an IPv6 literal address enclosed in '[' and ']' (such as "[::1]" or
2056 * "[::ffff:127.0.0.1]") which is returned without the '[' and ']'. */
2057char *check_for_hostspec(char *s, char **host_ptr, int *port_ptr)
ea5164d1 2058{
305666bf
WD
2059 char *p;
2060 int not_host;
8f4ae68c 2061 int hostlen;
305666bf
WD
2062
2063 if (port_ptr && strncasecmp(URL_PREFIX, s, strlen(URL_PREFIX)) == 0) {
2064 char *path;
305666bf
WD
2065 s += strlen(URL_PREFIX);
2066 if ((p = strchr(s, '/')) != NULL) {
2067 hostlen = p - s;
2068 path = p + 1;
2069 } else {
2070 hostlen = strlen(s);
2071 path = "";
2072 }
2073 if (*s == '[' && (p = strchr(s, ']')) != NULL) {
2074 s++;
2075 hostlen = p - s;
c60b7056
WD
2076 if (p[1] == ':')
2077 *port_ptr = atoi(p+2);
305666bf 2078 } else {
444f9f7b 2079 if ((p = strchr(s, ':')) != NULL && p < s + hostlen) {
305666bf
WD
2080 hostlen = p - s;
2081 *port_ptr = atoi(p+1);
c60b7056 2082 }
305666bf 2083 }
c60b7056
WD
2084 if (!*port_ptr)
2085 *port_ptr = RSYNC_PORT;
305666bf
WD
2086 *host_ptr = new_array(char, hostlen + 1);
2087 strlcpy(*host_ptr, s, hostlen + 1);
2088 return path;
2089 }
ea5164d1 2090
305666bf 2091 if (*s == '[' && (p = strchr(s, ']')) != NULL && p[1] == ':') {
8f4ae68c
WD
2092 s++;
2093 hostlen = p - s;
305666bf
WD
2094 *p = '\0';
2095 not_host = strchr(s, '/') || !strchr(s, ':');
2096 *p = ']';
2097 if (not_host)
2098 return NULL;
c60b7056 2099 p++;
305666bf
WD
2100 } else {
2101 if (!(p = strchr(s, ':')))
2102 return NULL;
8f4ae68c 2103 hostlen = p - s;
305666bf
WD
2104 *p = '\0';
2105 not_host = strchr(s, '/') != NULL;
2106 *p = ':';
2107 if (not_host)
2108 return NULL;
2109 }
2110
8f4ae68c
WD
2111 *host_ptr = new_array(char, hostlen + 1);
2112 strlcpy(*host_ptr, s, hostlen + 1);
ea5164d1 2113
305666bf
WD
2114 if (p[1] == ':') {
2115 if (port_ptr && !*port_ptr)
2116 *port_ptr = RSYNC_PORT;
2117 return p + 2;
2118 }
2119 if (port_ptr)
2120 *port_ptr = 0;
ea5164d1 2121
305666bf 2122 return p + 1;
ea5164d1 2123}