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