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