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