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