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