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