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