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