Tweak stderr handling for older BackupPC versions
[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-2020 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 3 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, visit the http://fsf.org website.
20  */
21
22 #include "rsync.h"
23 #include "itypes.h"
24 #include "ifuncs.h"
25 #include <popt.h>
26
27 extern int module_id;
28 extern int local_server;
29 extern int sanitize_paths;
30 extern unsigned int module_dirlen;
31 extern filter_rule_list filter_list;
32 extern filter_rule_list daemon_filter_list;
33
34 int make_backups = 0;
35
36 /**
37  * If 1, send the whole file as literal data rather than trying to
38  * create an incremental diff.
39  *
40  * If -1, then look at whether we're local or remote and go by that.
41  *
42  * @sa disable_deltas_p()
43  **/
44 int whole_file = -1;
45
46 int append_mode = 0;
47 int keep_dirlinks = 0;
48 int copy_dirlinks = 0;
49 int copy_links = 0;
50 int write_devices = 0;
51 int preserve_links = 0;
52 int preserve_hard_links = 0;
53 int preserve_acls = 0;
54 int preserve_xattrs = 0;
55 int preserve_perms = 0;
56 int preserve_executability = 0;
57 int preserve_devices = 0;
58 int preserve_specials = 0;
59 int preserve_uid = 0;
60 int preserve_gid = 0;
61 int preserve_mtimes = 0;
62 int preserve_atimes = 0;
63 int preserve_crtimes = 0;
64 int omit_dir_times = 0;
65 int omit_link_times = 0;
66 int update_only = 0;
67 int open_noatime = 0;
68 int cvs_exclude = 0;
69 int dry_run = 0;
70 int do_xfers = 1;
71 int do_fsync = 0;
72 int ignore_times = 0;
73 int delete_mode = 0;
74 int delete_during = 0;
75 int delete_before = 0;
76 int delete_after = 0;
77 int delete_excluded = 0;
78 int remove_source_files = 0;
79 int one_file_system = 0;
80 int protocol_version = PROTOCOL_VERSION;
81 int sparse_files = 0;
82 int preallocate_files = 0;
83 int do_compression = 0;
84 int do_compression_level = CLVL_NOT_SPECIFIED;
85 int am_root = 0; /* 0 = normal, 1 = root, 2 = --super, -1 = --fake-super */
86 int am_server = 0;
87 int am_sender = 0;
88 int am_starting_up = 1;
89 int relative_paths = -1;
90 int implied_dirs = 1;
91 int missing_args = 0; /* 0 = FERROR_XFER, 1 = ignore, 2 = delete */
92 int numeric_ids = 0;
93 int msgs2stderr = 2; /* Default: send errors to stderr for local & remote-shell transfers */
94 int saw_stderr_opt = 0;
95 int allow_8bit_chars = 0;
96 int force_delete = 0;
97 int io_timeout = 0;
98 int prune_empty_dirs = 0;
99 int use_qsort = 0;
100 char *files_from = NULL;
101 int filesfrom_fd = -1;
102 char *filesfrom_host = NULL;
103 int eol_nulls = 0;
104 int protect_args = -1;
105 int human_readable = 1;
106 int recurse = 0;
107 int mkpath_dest_arg = 0;
108 int allow_inc_recurse = 1;
109 int xfer_dirs = -1;
110 int am_daemon = 0;
111 int connect_timeout = 0;
112 int keep_partial = 0;
113 int safe_symlinks = 0;
114 int copy_unsafe_links = 0;
115 int munge_symlinks = 0;
116 int size_only = 0;
117 int daemon_bwlimit = 0;
118 int bwlimit = 0;
119 int fuzzy_basis = 0;
120 size_t bwlimit_writemax = 0;
121 int ignore_existing = 0;
122 int ignore_non_existing = 0;
123 int need_messages_from_generator = 0;
124 int max_delete = INT_MIN;
125 OFF_T max_size = -1;
126 OFF_T min_size = -1;
127 int ignore_errors = 0;
128 int modify_window = 0;
129 int blocking_io = -1;
130 int checksum_seed = 0;
131 int inplace = 0;
132 int delay_updates = 0;
133 int32 block_size = 0;
134 time_t stop_at_utime = 0;
135 char *skip_compress = NULL;
136 char *copy_as = NULL;
137 item_list dparam_list = EMPTY_ITEM_LIST;
138
139 /** Network address family. **/
140 int default_af_hint
141 #ifdef INET6
142         = 0;            /* Any protocol */
143 #else
144         = AF_INET;      /* Must use IPv4 */
145 # ifdef AF_INET6
146 #  undef AF_INET6
147 # endif
148 # define AF_INET6 AF_INET /* make -6 option a no-op */
149 #endif
150
151 /** Do not go into the background when run as --daemon.  Good
152  * for debugging and required for running as a service on W32,
153  * or under Unix process-monitors. **/
154 int no_detach
155 #if defined _WIN32 || defined __WIN32__
156         = 1;
157 #else
158         = 0;
159 #endif
160
161 int write_batch = 0;
162 int read_batch = 0;
163 int backup_dir_len = 0;
164 int backup_suffix_len;
165 unsigned int backup_dir_remainder;
166
167 char *backup_suffix = NULL;
168 char *tmpdir = NULL;
169 char *partial_dir = NULL;
170 char *basis_dir[MAX_BASIS_DIRS+1];
171 char *config_file = NULL;
172 char *shell_cmd = NULL;
173 char *logfile_name = NULL;
174 char *logfile_format = NULL;
175 char *stdout_format = NULL;
176 char *password_file = NULL;
177 char *early_input_file = NULL;
178 char *rsync_path = RSYNC_PATH;
179 char *backup_dir = NULL;
180 char backup_dir_buf[MAXPATHLEN];
181 char *sockopts = NULL;
182 char *usermap = NULL;
183 char *groupmap = NULL;
184 int rsync_port = 0;
185 int alt_dest_type = 0;
186 int basis_dir_cnt = 0;
187
188 #define DEFAULT_MAX_ALLOC (1024L * 1024 * 1024)
189 size_t max_alloc = DEFAULT_MAX_ALLOC;
190 char *max_alloc_arg;
191
192 static int version_opt_cnt = 0;
193 static int remote_option_alloc = 0;
194 int remote_option_cnt = 0;
195 const char **remote_options = NULL;
196 const char *checksum_choice = NULL;
197 const char *compress_choice = NULL;
198
199 int quiet = 0;
200 int output_motd = 1;
201 int log_before_transfer = 0;
202 int stdout_format_has_i = 0;
203 int stdout_format_has_o_or_i = 0;
204 int logfile_format_has_i = 0;
205 int logfile_format_has_o_or_i = 0;
206 int always_checksum = 0;
207 int list_only = 0;
208
209 #define MAX_BATCH_NAME_LEN 256  /* Must be less than MAXPATHLEN-13 */
210 char *batch_name = NULL;
211
212 int need_unsorted_flist = 0;
213 char *iconv_opt =
214 #ifdef ICONV_OPTION
215                 ICONV_OPTION;
216 #else
217                 NULL;
218 #endif
219
220 struct chmod_mode_struct *chmod_modes = NULL;
221
222 static const char *debug_verbosity[] = {
223         /*0*/ NULL,
224         /*1*/ NULL,
225         /*2*/ "BIND,CMD,CONNECT,DEL,DELTASUM,DUP,FILTER,FLIST,ICONV",
226         /*3*/ "ACL,BACKUP,CONNECT2,DELTASUM2,DEL2,EXIT,FILTER2,FLIST2,FUZZY,GENR,OWN,RECV,SEND,TIME",
227         /*4*/ "CMD2,DELTASUM3,DEL3,EXIT2,FLIST3,ICONV2,OWN2,PROTO,TIME2",
228         /*5*/ "CHDIR,DELTASUM4,FLIST4,FUZZY2,HASH,HLINK",
229 };
230
231 #define MAX_VERBOSITY ((int)(sizeof debug_verbosity / sizeof debug_verbosity[0]) - 1)
232
233 static const char *info_verbosity[1+MAX_VERBOSITY] = {
234         /*0*/ "NONREG",
235         /*1*/ "COPY,DEL,FLIST,MISC,NAME,STATS,SYMSAFE",
236         /*2*/ "BACKUP,MISC2,MOUNT,NAME2,REMOVE,SKIP",
237 };
238
239 #define MAX_OUT_LEVEL 4 /* The largest N allowed for any flagN word. */
240
241 short info_levels[COUNT_INFO], debug_levels[COUNT_DEBUG];
242
243 #define DEFAULT_PRIORITY 0      /* Default/implied/--verbose set values. */
244 #define HELP_PRIORITY 1         /* The help output uses this level. */
245 #define USER_PRIORITY 2         /* User-specified via --info or --debug */
246 #define LIMIT_PRIORITY 3        /* Overriding priority when limiting values. */
247
248 #define W_CLI (1<<0)    /* client side */
249 #define W_SRV (1<<1)    /* server side */
250 #define W_SND (1<<2)    /* sending side */
251 #define W_REC (1<<3)    /* receiving side */
252
253 struct output_struct {
254         char *name;     /* The name of the info/debug flag. */
255         char *help;     /* The description of the info/debug flag. */
256         uchar namelen;  /* The length of the name string. */
257         uchar flag;     /* The flag's value, for consistency check. */
258         uchar where;    /* Bits indicating where the flag is used. */
259         uchar priority; /* See *_PRIORITY defines. */
260 };
261
262 #define INFO_WORD(flag, where, help) { #flag, help, sizeof #flag - 1, INFO_##flag, where, 0 }
263
264 static struct output_struct info_words[COUNT_INFO+1] = {
265         INFO_WORD(BACKUP, W_REC, "Mention files backed up"),
266         INFO_WORD(COPY, W_REC, "Mention files copied locally on the receiving side"),
267         INFO_WORD(DEL, W_REC, "Mention deletions on the receiving side"),
268         INFO_WORD(FLIST, W_CLI, "Mention file-list receiving/sending (levels 1-2)"),
269         INFO_WORD(MISC, W_SND|W_REC, "Mention miscellaneous information (levels 1-2)"),
270         INFO_WORD(MOUNT, W_SND|W_REC, "Mention mounts that were found or skipped"),
271         INFO_WORD(NAME, W_SND|W_REC, "Mention 1) updated file/dir names, 2) unchanged names"),
272         INFO_WORD(NONREG, W_REC, "Mention skipped non-regular files (default 1, 0 disables)"),
273         INFO_WORD(PROGRESS, W_CLI, "Mention 1) per-file progress or 2) total transfer progress"),
274         INFO_WORD(REMOVE, W_SND, "Mention files removed on the sending side"),
275         INFO_WORD(SKIP, W_REC, "Mention files skipped due to transfer overrides (levels 1-2)"),
276         INFO_WORD(STATS, W_CLI|W_SRV, "Mention statistics at end of run (levels 1-3)"),
277         INFO_WORD(SYMSAFE, W_SND|W_REC, "Mention symlinks that are unsafe"),
278         { NULL, "--info", 0, 0, 0, 0 }
279 };
280
281 #define DEBUG_WORD(flag, where, help) { #flag, help, sizeof #flag - 1, DEBUG_##flag, where, 0 }
282
283 static struct output_struct debug_words[COUNT_DEBUG+1] = {
284         DEBUG_WORD(ACL, W_SND|W_REC, "Debug extra ACL info"),
285         DEBUG_WORD(BACKUP, W_REC, "Debug backup actions (levels 1-2)"),
286         DEBUG_WORD(BIND, W_CLI, "Debug socket bind actions"),
287         DEBUG_WORD(CHDIR, W_CLI|W_SRV, "Debug when the current directory changes"),
288         DEBUG_WORD(CONNECT, W_CLI, "Debug connection events (levels 1-2)"),
289         DEBUG_WORD(CMD, W_CLI, "Debug commands+options that are issued (levels 1-2)"),
290         DEBUG_WORD(DEL, W_REC, "Debug delete actions (levels 1-3)"),
291         DEBUG_WORD(DELTASUM, W_SND|W_REC, "Debug delta-transfer checksumming (levels 1-4)"),
292         DEBUG_WORD(DUP, W_REC, "Debug weeding of duplicate names"),
293         DEBUG_WORD(EXIT, W_CLI|W_SRV, "Debug exit events (levels 1-3)"),
294         DEBUG_WORD(FILTER, W_SND|W_REC, "Debug filter actions (levels 1-2)"),
295         DEBUG_WORD(FLIST, W_SND|W_REC, "Debug file-list operations (levels 1-4)"),
296         DEBUG_WORD(FUZZY, W_REC, "Debug fuzzy scoring (levels 1-2)"),
297         DEBUG_WORD(GENR, W_REC, "Debug generator functions"),
298         DEBUG_WORD(HASH, W_SND|W_REC, "Debug hashtable code"),
299         DEBUG_WORD(HLINK, W_SND|W_REC, "Debug hard-link actions (levels 1-3)"),
300         DEBUG_WORD(ICONV, W_CLI|W_SRV, "Debug iconv character conversions (levels 1-2)"),
301         DEBUG_WORD(IO, W_CLI|W_SRV, "Debug I/O routines (levels 1-4)"),
302         DEBUG_WORD(NSTR, W_CLI|W_SRV, "Debug negotiation strings"),
303         DEBUG_WORD(OWN, W_REC, "Debug ownership changes in users & groups (levels 1-2)"),
304         DEBUG_WORD(PROTO, W_CLI|W_SRV, "Debug protocol information"),
305         DEBUG_WORD(RECV, W_REC, "Debug receiver functions"),
306         DEBUG_WORD(SEND, W_SND, "Debug sender functions"),
307         DEBUG_WORD(TIME, W_REC, "Debug setting of modified times (levels 1-2)"),
308         { NULL, "--debug", 0, 0, 0, 0 }
309 };
310
311 static int verbose = 0;
312 static int do_stats = 0;
313 static int do_progress = 0;
314 static int daemon_opt;   /* sets am_daemon after option error-reporting */
315 static int F_option_cnt = 0;
316 static int modify_window_set;
317 static int itemize_changes = 0;
318 static int refused_delete, refused_archive_part, refused_compress;
319 static int refused_partial, refused_progress, refused_delete_before;
320 static int refused_delete_during;
321 static int refused_inplace, refused_no_iconv;
322 static BOOL usermap_via_chown, groupmap_via_chown;
323 static char *outbuf_mode;
324 static char *bwlimit_arg, *max_size_arg, *min_size_arg;
325 static char tmp_partialdir[] = ".~tmp~";
326
327 /** Local address to bind.  As a character string because it's
328  * interpreted by the IPv6 layer: should be a numeric IP4 or IP6
329  * address, or a hostname. **/
330 char *bind_address;
331
332 static void output_item_help(struct output_struct *words);
333
334 /* This constructs a string that represents all the options set for either
335  * the --info or --debug setting, skipping any implied options (by -v, etc.).
336  * This is used both when conveying the user's options to the server, and
337  * when the help output wants to tell the user what options are implied. */
338 static char *make_output_option(struct output_struct *words, short *levels, uchar where)
339 {
340         char *str = words == info_words ? "--info=" : "--debug=";
341         int j, counts[MAX_OUT_LEVEL+1], pos, skipped = 0, len = 0, max = 0, lev = 0;
342         int word_count = words == info_words ? COUNT_INFO : COUNT_DEBUG;
343         char *buf;
344
345         memset(counts, 0, sizeof counts);
346
347         for (j = 0; words[j].name; j++) {
348                 if (words[j].flag != j) {
349                         rprintf(FERROR, "rsync: internal error on %s%s: %d != %d\n",
350                                 words == info_words ? "INFO_" : "DEBUG_",
351                                 words[j].name, words[j].flag, j);
352                         exit_cleanup(RERR_UNSUPPORTED);
353                 }
354                 if (!(words[j].where & where))
355                         continue;
356                 if (words[j].priority == DEFAULT_PRIORITY) {
357                         /* Implied items don't need to be mentioned. */
358                         skipped++;
359                         continue;
360                 }
361                 len += len ? 1 : strlen(str);
362                 len += strlen(words[j].name);
363                 len += levels[j] == 1 ? 0 : 1;
364
365                 if (words[j].priority == HELP_PRIORITY)
366                         continue; /* no abbreviating for help */
367
368                 assert(levels[j] <= MAX_OUT_LEVEL);
369                 if (++counts[levels[j]] > max) {
370                         /* Determine which level has the most items. */
371                         lev = levels[j];
372                         max = counts[lev];
373                 }
374         }
375
376         /* Sanity check the COUNT_* define against the length of the table. */
377         if (j != word_count) {
378                 rprintf(FERROR, "rsync: internal error: %s is wrong! (%d != %d)\n",
379                         words == info_words ? "COUNT_INFO" : "COUNT_DEBUG",
380                         j, word_count);
381                 exit_cleanup(RERR_UNSUPPORTED);
382         }
383
384         if (!len)
385                 return NULL;
386
387         len++;
388         buf = new_array(char, len);
389         pos = 0;
390
391         if (skipped || max < 5)
392                 lev = -1;
393         else {
394                 if (lev == 0)
395                         pos += snprintf(buf, len, "%sNONE", str);
396                 else if (lev == 1)
397                         pos += snprintf(buf, len, "%sALL", str);
398                 else
399                         pos += snprintf(buf, len, "%sALL%d", str, lev);
400         }
401
402         for (j = 0; words[j].name && pos < len; j++) {
403                 if (words[j].priority == DEFAULT_PRIORITY || levels[j] == lev || !(words[j].where & where))
404                         continue;
405                 if (pos)
406                         buf[pos++] = ',';
407                 else
408                         pos += strlcpy(buf+pos, str, len-pos);
409                 if (pos < len)
410                         pos += strlcpy(buf+pos, words[j].name, len-pos);
411                 /* Level 1 is implied by the name alone. */
412                 if (levels[j] != 1 && pos < len)
413                         buf[pos++] = '0' + levels[j];
414         }
415
416         buf[pos] = '\0';
417
418         return buf;
419 }
420
421 static void parse_output_words(struct output_struct *words, short *levels, const char *str, uchar priority)
422 {
423         const char *s;
424         int j, len, lev;
425
426         for ( ; str; str = s) {
427                 if ((s = strchr(str, ',')) != NULL)
428                         len = s++ - str;
429                 else
430                         len = strlen(str);
431                 if (!len)
432                         continue;
433                 if (!isDigit(str)) {
434                         while (len && isDigit(str+len-1))
435                                 len--;
436                 }
437                 lev = isDigit(str+len) ? atoi(str+len) : 1;
438                 if (lev > MAX_OUT_LEVEL)
439                         lev = MAX_OUT_LEVEL;
440                 if (len == 4 && strncasecmp(str, "help", 4) == 0) {
441                         output_item_help(words);
442                         exit_cleanup(0);
443                 }
444                 if (len == 4 && strncasecmp(str, "none", 4) == 0)
445                         len = lev = 0;
446                 else if (len == 3 && strncasecmp(str, "all", 3) == 0)
447                         len = 0;
448                 for (j = 0; words[j].name; j++) {
449                         if (!len
450                          || (len == words[j].namelen && strncasecmp(str, words[j].name, len) == 0)) {
451                                 if (priority >= words[j].priority) {
452                                         words[j].priority = priority;
453                                         levels[j] = lev;
454                                 }
455                                 if (len)
456                                         break;
457                         }
458                 }
459                 if (len && !words[j].name && !am_server) {
460                         rprintf(FERROR, "Unknown %s item: \"%.*s\"\n",
461                                 words[j].help, len, str);
462                         exit_cleanup(RERR_SYNTAX);
463                 }
464         }
465 }
466
467 /* Tell the user what all the info or debug flags mean. */
468 static void output_item_help(struct output_struct *words)
469 {
470         short *levels = words == info_words ? info_levels : debug_levels;
471         const char **verbosity = words == info_words ? info_verbosity : debug_verbosity;
472         char buf[128], *opt, *fmt = "%-10s %s\n";
473         int j;
474
475         reset_output_levels();
476
477         rprintf(FINFO, "Use OPT or OPT1 for level 1 output, OPT2 for level 2, etc.; OPT0 silences.\n");
478         rprintf(FINFO, "\n");
479         for (j = 0; words[j].name; j++)
480                 rprintf(FINFO, fmt, words[j].name, words[j].help);
481         rprintf(FINFO, "\n");
482
483         snprintf(buf, sizeof buf, "Set all %s options (e.g. all%d)",
484                  words[j].help, MAX_OUT_LEVEL);
485         rprintf(FINFO, fmt, "ALL", buf);
486
487         snprintf(buf, sizeof buf, "Silence all %s options (same as all0)",
488                  words[j].help);
489         rprintf(FINFO, fmt, "NONE", buf);
490
491         rprintf(FINFO, fmt, "HELP", "Output this help message");
492         rprintf(FINFO, "\n");
493         rprintf(FINFO, "Options added at each level of verbosity:\n");
494
495         for (j = 0; j <= MAX_VERBOSITY; j++) {
496                 parse_output_words(words, levels, verbosity[j], HELP_PRIORITY);
497                 opt = make_output_option(words, levels, W_CLI|W_SRV|W_SND|W_REC);
498                 if (opt) {
499                         rprintf(FINFO, "%d) %s\n", j, strchr(opt, '=')+1);
500                         free(opt);
501                 }
502                 reset_output_levels();
503         }
504 }
505
506 /* The --verbose option now sets info+debug flags. */
507 static void set_output_verbosity(int level, uchar priority)
508 {
509         int j;
510
511         if (level > MAX_VERBOSITY)
512                 level = MAX_VERBOSITY;
513
514         for (j = 0; j <= level; j++) {
515                 parse_output_words(info_words, info_levels, info_verbosity[j], priority);
516                 parse_output_words(debug_words, debug_levels, debug_verbosity[j], priority);
517         }
518 }
519
520 /* Limit the info+debug flag levels given a verbose-option level limit. */
521 void limit_output_verbosity(int level)
522 {
523         short info_limits[COUNT_INFO], debug_limits[COUNT_DEBUG];
524         int j;
525
526         if (level > MAX_VERBOSITY)
527                 return;
528
529         memset(info_limits, 0, sizeof info_limits);
530         memset(debug_limits, 0, sizeof debug_limits);
531
532         /* Compute the level limits in the above arrays. */
533         for (j = 0; j <= level; j++) {
534                 parse_output_words(info_words, info_limits, info_verbosity[j], LIMIT_PRIORITY);
535                 parse_output_words(debug_words, debug_limits, debug_verbosity[j], LIMIT_PRIORITY);
536         }
537
538         for (j = 0; j < COUNT_INFO; j++) {
539                 if (info_levels[j] > info_limits[j])
540                         info_levels[j] = info_limits[j];
541         }
542
543         for (j = 0; j < COUNT_DEBUG; j++) {
544                 if (debug_levels[j] > debug_limits[j])
545                         debug_levels[j] = debug_limits[j];
546         }
547 }
548
549 void reset_output_levels(void)
550 {
551         int j;
552
553         memset(info_levels, 0, sizeof info_levels);
554         memset(debug_levels, 0, sizeof debug_levels);
555
556         for (j = 0; j < COUNT_INFO; j++)
557                 info_words[j].priority = DEFAULT_PRIORITY;
558
559         for (j = 0; j < COUNT_DEBUG; j++)
560                 debug_words[j].priority = DEFAULT_PRIORITY;
561 }
562
563 void negate_output_levels(void)
564 {
565         int j;
566
567         for (j = 0; j < COUNT_INFO; j++)
568                 info_levels[j] *= -1;
569
570         for (j = 0; j < COUNT_DEBUG; j++)
571                 debug_levels[j] *= -1;
572 }
573
574 enum {OPT_SERVER = 1000, OPT_DAEMON, OPT_SENDER, OPT_EXCLUDE, OPT_EXCLUDE_FROM,
575       OPT_FILTER, OPT_COMPARE_DEST, OPT_COPY_DEST, OPT_LINK_DEST, OPT_HELP,
576       OPT_INCLUDE, OPT_INCLUDE_FROM, OPT_MODIFY_WINDOW, OPT_MIN_SIZE, OPT_CHMOD,
577       OPT_READ_BATCH, OPT_WRITE_BATCH, OPT_ONLY_WRITE_BATCH, OPT_MAX_SIZE,
578       OPT_NO_D, OPT_APPEND, OPT_NO_ICONV, OPT_INFO, OPT_DEBUG, OPT_BLOCK_SIZE,
579       OPT_USERMAP, OPT_GROUPMAP, OPT_CHOWN, OPT_BWLIMIT, OPT_STDERR,
580       OPT_OLD_COMPRESS, OPT_NEW_COMPRESS, OPT_NO_COMPRESS,
581       OPT_STOP_AFTER, OPT_STOP_AT,
582       OPT_REFUSED_BASE = 9000};
583
584 static struct poptOption long_options[] = {
585   /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */
586   {"help",             0,  POPT_ARG_NONE,   0, OPT_HELP, 0, 0 },
587   {"version",         'V', POPT_ARG_NONE,   0, 'V', 0, 0},
588   {"verbose",         'v', POPT_ARG_NONE,   0, 'v', 0, 0 },
589   {"no-verbose",       0,  POPT_ARG_VAL,    &verbose, 0, 0, 0 },
590   {"no-v",             0,  POPT_ARG_VAL,    &verbose, 0, 0, 0 },
591   {"info",             0,  POPT_ARG_STRING, 0, OPT_INFO, 0, 0 },
592   {"debug",            0,  POPT_ARG_STRING, 0, OPT_DEBUG, 0, 0 },
593   {"stderr",           0,  POPT_ARG_STRING, 0, OPT_STDERR, 0, 0 },
594   {"msgs2stderr",      0,  POPT_ARG_VAL,    &msgs2stderr, 1, 0, 0 },
595   {"no-msgs2stderr",   0,  POPT_ARG_VAL,    &msgs2stderr, 0, 0, 0 },
596   {"quiet",           'q', POPT_ARG_NONE,   0, 'q', 0, 0 },
597   {"motd",             0,  POPT_ARG_VAL,    &output_motd, 1, 0, 0 },
598   {"no-motd",          0,  POPT_ARG_VAL,    &output_motd, 0, 0, 0 },
599   {"stats",            0,  POPT_ARG_NONE,   &do_stats, 0, 0, 0 },
600   {"human-readable",  'h', POPT_ARG_NONE,   0, 'h', 0, 0},
601   {"no-human-readable",0,  POPT_ARG_VAL,    &human_readable, 0, 0, 0},
602   {"no-h",             0,  POPT_ARG_VAL,    &human_readable, 0, 0, 0},
603   {"dry-run",         'n', POPT_ARG_NONE,   &dry_run, 0, 0, 0 },
604   {"archive",         'a', POPT_ARG_NONE,   0, 'a', 0, 0 },
605   {"recursive",       'r', POPT_ARG_VAL,    &recurse, 2, 0, 0 },
606   {"no-recursive",     0,  POPT_ARG_VAL,    &recurse, 0, 0, 0 },
607   {"no-r",             0,  POPT_ARG_VAL,    &recurse, 0, 0, 0 },
608   {"inc-recursive",    0,  POPT_ARG_VAL,    &allow_inc_recurse, 1, 0, 0 },
609   {"no-inc-recursive", 0,  POPT_ARG_VAL,    &allow_inc_recurse, 0, 0, 0 },
610   {"i-r",              0,  POPT_ARG_VAL,    &allow_inc_recurse, 1, 0, 0 },
611   {"no-i-r",           0,  POPT_ARG_VAL,    &allow_inc_recurse, 0, 0, 0 },
612   {"dirs",            'd', POPT_ARG_VAL,    &xfer_dirs, 2, 0, 0 },
613   {"no-dirs",          0,  POPT_ARG_VAL,    &xfer_dirs, 0, 0, 0 },
614   {"no-d",             0,  POPT_ARG_VAL,    &xfer_dirs, 0, 0, 0 },
615   {"old-dirs",         0,  POPT_ARG_VAL,    &xfer_dirs, 4, 0, 0 },
616   {"old-d",            0,  POPT_ARG_VAL,    &xfer_dirs, 4, 0, 0 },
617   {"perms",           'p', POPT_ARG_VAL,    &preserve_perms, 1, 0, 0 },
618   {"no-perms",         0,  POPT_ARG_VAL,    &preserve_perms, 0, 0, 0 },
619   {"no-p",             0,  POPT_ARG_VAL,    &preserve_perms, 0, 0, 0 },
620   {"executability",   'E', POPT_ARG_NONE,   &preserve_executability, 0, 0, 0 },
621   {"acls",            'A', POPT_ARG_NONE,   0, 'A', 0, 0 },
622   {"no-acls",          0,  POPT_ARG_VAL,    &preserve_acls, 0, 0, 0 },
623   {"no-A",             0,  POPT_ARG_VAL,    &preserve_acls, 0, 0, 0 },
624   {"xattrs",          'X', POPT_ARG_NONE,   0, 'X', 0, 0 },
625   {"no-xattrs",        0,  POPT_ARG_VAL,    &preserve_xattrs, 0, 0, 0 },
626   {"no-X",             0,  POPT_ARG_VAL,    &preserve_xattrs, 0, 0, 0 },
627   {"times",           't', POPT_ARG_VAL,    &preserve_mtimes, 1, 0, 0 },
628   {"no-times",         0,  POPT_ARG_VAL,    &preserve_mtimes, 0, 0, 0 },
629   {"no-t",             0,  POPT_ARG_VAL,    &preserve_mtimes, 0, 0, 0 },
630   {"atimes",          'U', POPT_ARG_NONE,   0, 'U', 0, 0 },
631   {"no-atimes",        0,  POPT_ARG_VAL,    &preserve_atimes, 0, 0, 0 },
632   {"no-U",             0,  POPT_ARG_VAL,    &preserve_atimes, 0, 0, 0 },
633   {"open-noatime",     0,  POPT_ARG_VAL,    &open_noatime, 1, 0, 0 },
634   {"no-open-noatime",  0,  POPT_ARG_VAL,    &open_noatime, 0, 0, 0 },
635   {"crtimes",         'N', POPT_ARG_VAL,    &preserve_crtimes, 1, 0, 0 },
636   {"no-crtimes",       0,  POPT_ARG_VAL,    &preserve_crtimes, 0, 0, 0 },
637   {"no-N",             0,  POPT_ARG_VAL,    &preserve_crtimes, 0, 0, 0 },
638   {"omit-dir-times",  'O', POPT_ARG_VAL,    &omit_dir_times, 1, 0, 0 },
639   {"no-omit-dir-times",0,  POPT_ARG_VAL,    &omit_dir_times, 0, 0, 0 },
640   {"no-O",             0,  POPT_ARG_VAL,    &omit_dir_times, 0, 0, 0 },
641   {"omit-link-times", 'J', POPT_ARG_VAL,    &omit_link_times, 1, 0, 0 },
642   {"no-omit-link-times",0, POPT_ARG_VAL,    &omit_link_times, 0, 0, 0 },
643   {"no-J",             0,  POPT_ARG_VAL,    &omit_link_times, 0, 0, 0 },
644   {"modify-window",   '@', POPT_ARG_INT,    &modify_window, OPT_MODIFY_WINDOW, 0, 0 },
645   {"super",            0,  POPT_ARG_VAL,    &am_root, 2, 0, 0 },
646   {"no-super",         0,  POPT_ARG_VAL,    &am_root, 0, 0, 0 },
647   {"fake-super",       0,  POPT_ARG_VAL,    &am_root, -1, 0, 0 },
648   {"owner",           'o', POPT_ARG_VAL,    &preserve_uid, 1, 0, 0 },
649   {"no-owner",         0,  POPT_ARG_VAL,    &preserve_uid, 0, 0, 0 },
650   {"no-o",             0,  POPT_ARG_VAL,    &preserve_uid, 0, 0, 0 },
651   {"group",           'g', POPT_ARG_VAL,    &preserve_gid, 1, 0, 0 },
652   {"no-group",         0,  POPT_ARG_VAL,    &preserve_gid, 0, 0, 0 },
653   {"no-g",             0,  POPT_ARG_VAL,    &preserve_gid, 0, 0, 0 },
654   {0,                 'D', POPT_ARG_NONE,   0, 'D', 0, 0 },
655   {"no-D",             0,  POPT_ARG_NONE,   0, OPT_NO_D, 0, 0 },
656   {"devices",          0,  POPT_ARG_VAL,    &preserve_devices, 1, 0, 0 },
657   {"no-devices",       0,  POPT_ARG_VAL,    &preserve_devices, 0, 0, 0 },
658   {"write-devices",    0,  POPT_ARG_VAL,    &write_devices, 1, 0, 0 },
659   {"no-write-devices", 0,  POPT_ARG_VAL,    &write_devices, 0, 0, 0 },
660   {"specials",         0,  POPT_ARG_VAL,    &preserve_specials, 1, 0, 0 },
661   {"no-specials",      0,  POPT_ARG_VAL,    &preserve_specials, 0, 0, 0 },
662   {"links",           'l', POPT_ARG_VAL,    &preserve_links, 1, 0, 0 },
663   {"no-links",         0,  POPT_ARG_VAL,    &preserve_links, 0, 0, 0 },
664   {"no-l",             0,  POPT_ARG_VAL,    &preserve_links, 0, 0, 0 },
665   {"copy-links",      'L', POPT_ARG_NONE,   &copy_links, 0, 0, 0 },
666   {"copy-unsafe-links",0,  POPT_ARG_NONE,   &copy_unsafe_links, 0, 0, 0 },
667   {"safe-links",       0,  POPT_ARG_NONE,   &safe_symlinks, 0, 0, 0 },
668   {"munge-links",      0,  POPT_ARG_VAL,    &munge_symlinks, 1, 0, 0 },
669   {"no-munge-links",   0,  POPT_ARG_VAL,    &munge_symlinks, 0, 0, 0 },
670   {"copy-dirlinks",   'k', POPT_ARG_NONE,   &copy_dirlinks, 0, 0, 0 },
671   {"keep-dirlinks",   'K', POPT_ARG_NONE,   &keep_dirlinks, 0, 0, 0 },
672   {"hard-links",      'H', POPT_ARG_NONE,   0, 'H', 0, 0 },
673   {"no-hard-links",    0,  POPT_ARG_VAL,    &preserve_hard_links, 0, 0, 0 },
674   {"no-H",             0,  POPT_ARG_VAL,    &preserve_hard_links, 0, 0, 0 },
675   {"relative",        'R', POPT_ARG_VAL,    &relative_paths, 1, 0, 0 },
676   {"no-relative",      0,  POPT_ARG_VAL,    &relative_paths, 0, 0, 0 },
677   {"no-R",             0,  POPT_ARG_VAL,    &relative_paths, 0, 0, 0 },
678   {"implied-dirs",     0,  POPT_ARG_VAL,    &implied_dirs, 1, 0, 0 },
679   {"no-implied-dirs",  0,  POPT_ARG_VAL,    &implied_dirs, 0, 0, 0 },
680   {"i-d",              0,  POPT_ARG_VAL,    &implied_dirs, 1, 0, 0 },
681   {"no-i-d",           0,  POPT_ARG_VAL,    &implied_dirs, 0, 0, 0 },
682   {"chmod",            0,  POPT_ARG_STRING, 0, OPT_CHMOD, 0, 0 },
683   {"ignore-times",    'I', POPT_ARG_NONE,   &ignore_times, 0, 0, 0 },
684   {"size-only",        0,  POPT_ARG_NONE,   &size_only, 0, 0, 0 },
685   {"one-file-system", 'x', POPT_ARG_NONE,   0, 'x', 0, 0 },
686   {"no-one-file-system",0, POPT_ARG_VAL,    &one_file_system, 0, 0, 0 },
687   {"no-x",             0,  POPT_ARG_VAL,    &one_file_system, 0, 0, 0 },
688   {"update",          'u', POPT_ARG_NONE,   &update_only, 0, 0, 0 },
689   {"existing",         0,  POPT_ARG_NONE,   &ignore_non_existing, 0, 0, 0 },
690   {"ignore-non-existing",0,POPT_ARG_NONE,   &ignore_non_existing, 0, 0, 0 },
691   {"ignore-existing",  0,  POPT_ARG_NONE,   &ignore_existing, 0, 0, 0 },
692   {"max-size",         0,  POPT_ARG_STRING, &max_size_arg, OPT_MAX_SIZE, 0, 0 },
693   {"min-size",         0,  POPT_ARG_STRING, &min_size_arg, OPT_MIN_SIZE, 0, 0 },
694   {"max-alloc",        0,  POPT_ARG_STRING, &max_alloc_arg, 0, 0, 0 },
695   {"sparse",          'S', POPT_ARG_VAL,    &sparse_files, 1, 0, 0 },
696   {"no-sparse",        0,  POPT_ARG_VAL,    &sparse_files, 0, 0, 0 },
697   {"no-S",             0,  POPT_ARG_VAL,    &sparse_files, 0, 0, 0 },
698   {"preallocate",      0,  POPT_ARG_NONE,   &preallocate_files, 0, 0, 0},
699   {"inplace",          0,  POPT_ARG_VAL,    &inplace, 1, 0, 0 },
700   {"no-inplace",       0,  POPT_ARG_VAL,    &inplace, 0, 0, 0 },
701   {"append",           0,  POPT_ARG_NONE,   0, OPT_APPEND, 0, 0 },
702   {"append-verify",    0,  POPT_ARG_VAL,    &append_mode, 2, 0, 0 },
703   {"no-append",        0,  POPT_ARG_VAL,    &append_mode, 0, 0, 0 },
704   {"del",              0,  POPT_ARG_NONE,   &delete_during, 0, 0, 0 },
705   {"delete",           0,  POPT_ARG_NONE,   &delete_mode, 0, 0, 0 },
706   {"delete-before",    0,  POPT_ARG_NONE,   &delete_before, 0, 0, 0 },
707   {"delete-during",    0,  POPT_ARG_VAL,    &delete_during, 1, 0, 0 },
708   {"delete-delay",     0,  POPT_ARG_VAL,    &delete_during, 2, 0, 0 },
709   {"delete-after",     0,  POPT_ARG_NONE,   &delete_after, 0, 0, 0 },
710   {"delete-excluded",  0,  POPT_ARG_NONE,   &delete_excluded, 0, 0, 0 },
711   {"delete-missing-args",0,POPT_BIT_SET,    &missing_args, 2, 0, 0 },
712   {"ignore-missing-args",0,POPT_BIT_SET,    &missing_args, 1, 0, 0 },
713   {"remove-sent-files",0,  POPT_ARG_VAL,    &remove_source_files, 2, 0, 0 }, /* deprecated */
714   {"remove-source-files",0,POPT_ARG_VAL,    &remove_source_files, 1, 0, 0 },
715   {"force",            0,  POPT_ARG_VAL,    &force_delete, 1, 0, 0 },
716   {"no-force",         0,  POPT_ARG_VAL,    &force_delete, 0, 0, 0 },
717   {"ignore-errors",    0,  POPT_ARG_VAL,    &ignore_errors, 1, 0, 0 },
718   {"no-ignore-errors", 0,  POPT_ARG_VAL,    &ignore_errors, 0, 0, 0 },
719   {"max-delete",       0,  POPT_ARG_INT,    &max_delete, 0, 0, 0 },
720   {0,                 'F', POPT_ARG_NONE,   0, 'F', 0, 0 },
721   {"filter",          'f', POPT_ARG_STRING, 0, OPT_FILTER, 0, 0 },
722   {"exclude",          0,  POPT_ARG_STRING, 0, OPT_EXCLUDE, 0, 0 },
723   {"include",          0,  POPT_ARG_STRING, 0, OPT_INCLUDE, 0, 0 },
724   {"exclude-from",     0,  POPT_ARG_STRING, 0, OPT_EXCLUDE_FROM, 0, 0 },
725   {"include-from",     0,  POPT_ARG_STRING, 0, OPT_INCLUDE_FROM, 0, 0 },
726   {"cvs-exclude",     'C', POPT_ARG_NONE,   &cvs_exclude, 0, 0, 0 },
727   {"whole-file",      'W', POPT_ARG_VAL,    &whole_file, 1, 0, 0 },
728   {"no-whole-file",    0,  POPT_ARG_VAL,    &whole_file, 0, 0, 0 },
729   {"no-W",             0,  POPT_ARG_VAL,    &whole_file, 0, 0, 0 },
730   {"checksum",        'c', POPT_ARG_VAL,    &always_checksum, 1, 0, 0 },
731   {"no-checksum",      0,  POPT_ARG_VAL,    &always_checksum, 0, 0, 0 },
732   {"no-c",             0,  POPT_ARG_VAL,    &always_checksum, 0, 0, 0 },
733   {"checksum-choice",  0,  POPT_ARG_STRING, &checksum_choice, 0, 0, 0 },
734   {"cc",               0,  POPT_ARG_STRING, &checksum_choice, 0, 0, 0 },
735   {"block-size",      'B', POPT_ARG_STRING, 0, OPT_BLOCK_SIZE, 0, 0 },
736   {"compare-dest",     0,  POPT_ARG_STRING, 0, OPT_COMPARE_DEST, 0, 0 },
737   {"copy-dest",        0,  POPT_ARG_STRING, 0, OPT_COPY_DEST, 0, 0 },
738   {"link-dest",        0,  POPT_ARG_STRING, 0, OPT_LINK_DEST, 0, 0 },
739   {"fuzzy",           'y', POPT_ARG_NONE,   0, 'y', 0, 0 },
740   {"no-fuzzy",         0,  POPT_ARG_VAL,    &fuzzy_basis, 0, 0, 0 },
741   {"no-y",             0,  POPT_ARG_VAL,    &fuzzy_basis, 0, 0, 0 },
742   {"compress",        'z', POPT_ARG_NONE,   0, 'z', 0, 0 },
743   {"old-compress",     0,  POPT_ARG_NONE,   0, OPT_OLD_COMPRESS, 0, 0 },
744   {"new-compress",     0,  POPT_ARG_NONE,   0, OPT_NEW_COMPRESS, 0, 0 },
745   {"no-compress",      0,  POPT_ARG_NONE,   0, OPT_NO_COMPRESS, 0, 0 },
746   {"no-z",             0,  POPT_ARG_NONE,   0, OPT_NO_COMPRESS, 0, 0 },
747   {"compress-choice",  0,  POPT_ARG_STRING, &compress_choice, 0, 0, 0 },
748   {"zc",               0,  POPT_ARG_STRING, &compress_choice, 0, 0, 0 },
749   {"skip-compress",    0,  POPT_ARG_STRING, &skip_compress, 0, 0, 0 },
750   {"compress-level",   0,  POPT_ARG_INT,    &do_compression_level, 0, 0, 0 },
751   {"zl",               0,  POPT_ARG_INT,    &do_compression_level, 0, 0, 0 },
752   {0,                 'P', POPT_ARG_NONE,   0, 'P', 0, 0 },
753   {"progress",         0,  POPT_ARG_VAL,    &do_progress, 1, 0, 0 },
754   {"no-progress",      0,  POPT_ARG_VAL,    &do_progress, 0, 0, 0 },
755   {"partial",          0,  POPT_ARG_VAL,    &keep_partial, 1, 0, 0 },
756   {"no-partial",       0,  POPT_ARG_VAL,    &keep_partial, 0, 0, 0 },
757   {"partial-dir",      0,  POPT_ARG_STRING, &partial_dir, 0, 0, 0 },
758   {"delay-updates",    0,  POPT_ARG_VAL,    &delay_updates, 1, 0, 0 },
759   {"no-delay-updates", 0,  POPT_ARG_VAL,    &delay_updates, 0, 0, 0 },
760   {"prune-empty-dirs",'m', POPT_ARG_VAL,    &prune_empty_dirs, 1, 0, 0 },
761   {"no-prune-empty-dirs",0,POPT_ARG_VAL,    &prune_empty_dirs, 0, 0, 0 },
762   {"no-m",             0,  POPT_ARG_VAL,    &prune_empty_dirs, 0, 0, 0 },
763   {"log-file",         0,  POPT_ARG_STRING, &logfile_name, 0, 0, 0 },
764   {"log-file-format",  0,  POPT_ARG_STRING, &logfile_format, 0, 0, 0 },
765   {"out-format",       0,  POPT_ARG_STRING, &stdout_format, 0, 0, 0 },
766   {"log-format",       0,  POPT_ARG_STRING, &stdout_format, 0, 0, 0 }, /* DEPRECATED */
767   {"itemize-changes", 'i', POPT_ARG_NONE,   0, 'i', 0, 0 },
768   {"no-itemize-changes",0, POPT_ARG_VAL,    &itemize_changes, 0, 0, 0 },
769   {"no-i",             0,  POPT_ARG_VAL,    &itemize_changes, 0, 0, 0 },
770   {"bwlimit",          0,  POPT_ARG_STRING, &bwlimit_arg, OPT_BWLIMIT, 0, 0 },
771   {"no-bwlimit",       0,  POPT_ARG_VAL,    &bwlimit, 0, 0, 0 },
772   {"backup",          'b', POPT_ARG_VAL,    &make_backups, 1, 0, 0 },
773   {"no-backup",        0,  POPT_ARG_VAL,    &make_backups, 0, 0, 0 },
774   {"backup-dir",       0,  POPT_ARG_STRING, &backup_dir, 0, 0, 0 },
775   {"suffix",           0,  POPT_ARG_STRING, &backup_suffix, 0, 0, 0 },
776   {"list-only",        0,  POPT_ARG_VAL,    &list_only, 2, 0, 0 },
777   {"read-batch",       0,  POPT_ARG_STRING, &batch_name, OPT_READ_BATCH, 0, 0 },
778   {"write-batch",      0,  POPT_ARG_STRING, &batch_name, OPT_WRITE_BATCH, 0, 0 },
779   {"only-write-batch", 0,  POPT_ARG_STRING, &batch_name, OPT_ONLY_WRITE_BATCH, 0, 0 },
780   {"files-from",       0,  POPT_ARG_STRING, &files_from, 0, 0, 0 },
781   {"from0",           '0', POPT_ARG_VAL,    &eol_nulls, 1, 0, 0},
782   {"no-from0",         0,  POPT_ARG_VAL,    &eol_nulls, 0, 0, 0},
783   {"protect-args",    's', POPT_ARG_VAL,    &protect_args, 1, 0, 0},
784   {"no-protect-args",  0,  POPT_ARG_VAL,    &protect_args, 0, 0, 0},
785   {"no-s",             0,  POPT_ARG_VAL,    &protect_args, 0, 0, 0},
786   {"numeric-ids",      0,  POPT_ARG_VAL,    &numeric_ids, 1, 0, 0 },
787   {"no-numeric-ids",   0,  POPT_ARG_VAL,    &numeric_ids, 0, 0, 0 },
788   {"usermap",          0,  POPT_ARG_STRING, 0, OPT_USERMAP, 0, 0 },
789   {"groupmap",         0,  POPT_ARG_STRING, 0, OPT_GROUPMAP, 0, 0 },
790   {"chown",            0,  POPT_ARG_STRING, 0, OPT_CHOWN, 0, 0 },
791   {"timeout",          0,  POPT_ARG_INT,    &io_timeout, 0, 0, 0 },
792   {"no-timeout",       0,  POPT_ARG_VAL,    &io_timeout, 0, 0, 0 },
793   {"contimeout",       0,  POPT_ARG_INT,    &connect_timeout, 0, 0, 0 },
794   {"no-contimeout",    0,  POPT_ARG_VAL,    &connect_timeout, 0, 0, 0 },
795   {"fsync",            0,  POPT_ARG_NONE,   &do_fsync, 0, 0, 0 },
796   {"stop-after",       0,  POPT_ARG_STRING, 0, OPT_STOP_AFTER, 0, 0 },
797   {"time-limit",       0,  POPT_ARG_STRING, 0, OPT_STOP_AFTER, 0, 0 }, /* earlier stop-after name */
798   {"stop-at",          0,  POPT_ARG_STRING, 0, OPT_STOP_AT, 0, 0 },
799   {"rsh",             'e', POPT_ARG_STRING, &shell_cmd, 0, 0, 0 },
800   {"rsync-path",       0,  POPT_ARG_STRING, &rsync_path, 0, 0, 0 },
801   {"temp-dir",        'T', POPT_ARG_STRING, &tmpdir, 0, 0, 0 },
802   {"iconv",            0,  POPT_ARG_STRING, &iconv_opt, 0, 0, 0 },
803   {"no-iconv",         0,  POPT_ARG_NONE,   0, OPT_NO_ICONV, 0, 0 },
804   {"ipv4",            '4', POPT_ARG_VAL,    &default_af_hint, AF_INET, 0, 0 },
805   {"ipv6",            '6', POPT_ARG_VAL,    &default_af_hint, AF_INET6, 0, 0 },
806   {"8-bit-output",    '8', POPT_ARG_VAL,    &allow_8bit_chars, 1, 0, 0 },
807   {"no-8-bit-output",  0,  POPT_ARG_VAL,    &allow_8bit_chars, 0, 0, 0 },
808   {"no-8",             0,  POPT_ARG_VAL,    &allow_8bit_chars, 0, 0, 0 },
809   {"mkpath",           0,  POPT_ARG_VAL,    &mkpath_dest_arg, 1, 0, 0 },
810   {"no-mkpath",        0,  POPT_ARG_VAL,    &mkpath_dest_arg, 0, 0, 0 },
811   {"qsort",            0,  POPT_ARG_NONE,   &use_qsort, 0, 0, 0 },
812   {"copy-as",          0,  POPT_ARG_STRING, &copy_as, 0, 0, 0 },
813   {"address",          0,  POPT_ARG_STRING, &bind_address, 0, 0, 0 },
814   {"port",             0,  POPT_ARG_INT,    &rsync_port, 0, 0, 0 },
815   {"sockopts",         0,  POPT_ARG_STRING, &sockopts, 0, 0, 0 },
816   {"password-file",    0,  POPT_ARG_STRING, &password_file, 0, 0, 0 },
817   {"early-input",      0,  POPT_ARG_STRING, &early_input_file, 0, 0, 0 },
818   {"blocking-io",      0,  POPT_ARG_VAL,    &blocking_io, 1, 0, 0 },
819   {"no-blocking-io",   0,  POPT_ARG_VAL,    &blocking_io, 0, 0, 0 },
820   {"outbuf",           0,  POPT_ARG_STRING, &outbuf_mode, 0, 0, 0 },
821   {"remote-option",   'M', POPT_ARG_STRING, 0, 'M', 0, 0 },
822   {"protocol",         0,  POPT_ARG_INT,    &protocol_version, 0, 0, 0 },
823   {"checksum-seed",    0,  POPT_ARG_INT,    &checksum_seed, 0, 0, 0 },
824   {"server",           0,  POPT_ARG_NONE,   0, OPT_SERVER, 0, 0 },
825   {"sender",           0,  POPT_ARG_NONE,   0, OPT_SENDER, 0, 0 },
826   /* All the following options switch us into daemon-mode option-parsing. */
827   {"config",           0,  POPT_ARG_STRING, 0, OPT_DAEMON, 0, 0 },
828   {"daemon",           0,  POPT_ARG_NONE,   0, OPT_DAEMON, 0, 0 },
829   {"dparam",           0,  POPT_ARG_STRING, 0, OPT_DAEMON, 0, 0 },
830   {"detach",           0,  POPT_ARG_NONE,   0, OPT_DAEMON, 0, 0 },
831   {"no-detach",        0,  POPT_ARG_NONE,   0, OPT_DAEMON, 0, 0 },
832   {0,0,0,0, 0, 0, 0}
833 };
834
835 static struct poptOption long_daemon_options[] = {
836   /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */
837   {"address",          0,  POPT_ARG_STRING, &bind_address, 0, 0, 0 },
838   {"bwlimit",          0,  POPT_ARG_INT,    &daemon_bwlimit, 0, 0, 0 },
839   {"config",           0,  POPT_ARG_STRING, &config_file, 0, 0, 0 },
840   {"daemon",           0,  POPT_ARG_NONE,   &daemon_opt, 0, 0, 0 },
841   {"dparam",          'M', POPT_ARG_STRING, 0, 'M', 0, 0 },
842   {"ipv4",            '4', POPT_ARG_VAL,    &default_af_hint, AF_INET, 0, 0 },
843   {"ipv6",            '6', POPT_ARG_VAL,    &default_af_hint, AF_INET6, 0, 0 },
844   {"detach",           0,  POPT_ARG_VAL,    &no_detach, 0, 0, 0 },
845   {"no-detach",        0,  POPT_ARG_VAL,    &no_detach, 1, 0, 0 },
846   {"log-file",         0,  POPT_ARG_STRING, &logfile_name, 0, 0, 0 },
847   {"log-file-format",  0,  POPT_ARG_STRING, &logfile_format, 0, 0, 0 },
848   {"port",             0,  POPT_ARG_INT,    &rsync_port, 0, 0, 0 },
849   {"sockopts",         0,  POPT_ARG_STRING, &sockopts, 0, 0, 0 },
850   {"protocol",         0,  POPT_ARG_INT,    &protocol_version, 0, 0, 0 },
851   {"server",           0,  POPT_ARG_NONE,   &am_server, 0, 0, 0 },
852   {"temp-dir",        'T', POPT_ARG_STRING, &tmpdir, 0, 0, 0 },
853   {"verbose",         'v', POPT_ARG_NONE,   0, 'v', 0, 0 },
854   {"no-verbose",       0,  POPT_ARG_VAL,    &verbose, 0, 0, 0 },
855   {"no-v",             0,  POPT_ARG_VAL,    &verbose, 0, 0, 0 },
856   {"help",            'h', POPT_ARG_NONE,   0, 'h', 0, 0 },
857   {0,0,0,0, 0, 0, 0}
858 };
859
860
861 static char err_buf[200];
862
863
864 /**
865  * Store the option error message, if any, so that we can log the
866  * connection attempt (which requires parsing the options), and then
867  * show the error later on.
868  **/
869 void option_error(void)
870 {
871         if (!err_buf[0]) {
872                 strlcpy(err_buf, "Error parsing options: option may "
873                         "be supported on client but not on server?\n",
874                         sizeof err_buf);
875         }
876
877         rprintf(FERROR, RSYNC_NAME ": %s", err_buf);
878         io_flush(MSG_FLUSH);
879         msleep(20);
880 }
881
882
883 static void parse_one_refuse_match(int negated, const char *ref, const struct poptOption *list_end)
884 {
885         struct poptOption *op;
886         char shortName[2];
887         int is_wild = strpbrk(ref, "*?[") != NULL;
888         int found_match = 0;
889
890         shortName[1] = '\0';
891
892         if (strcmp("a", ref) == 0 || strcmp("archive", ref) == 0) {
893                 ref = "[ardlptgoD]";
894                 is_wild = 1;
895         }
896
897         for (op = long_options; op != list_end; op++) {
898                 *shortName = op->shortName;
899                 if ((op->longName && wildmatch(ref, op->longName))
900                  || (*shortName && wildmatch(ref, shortName))) {
901                         if (op->descrip[1] == '*')
902                                 op->descrip = negated ? "a*" : "r*";
903                         else if (!is_wild)
904                                 op->descrip = negated ? "a=" : "r=";
905                         found_match = 1;
906                         if (!is_wild)
907                                 break;
908                 }
909         }
910
911         if (!found_match)
912                 rprintf(FLOG, "No match for refuse-options string \"%s\"\n", ref);
913 }
914
915
916 /**
917  * Tweak the option table to disable all options that the rsyncd.conf
918  * file has told us to refuse.
919  **/
920 static void set_refuse_options(void)
921 {
922         struct poptOption *op, *list_end = NULL;
923         char *cp, *ref = lp_refuse_options(module_id);
924         int negated;
925
926         if (!ref)
927                 ref = "";
928
929         if (!am_daemon)
930                 ref = "";
931
932         /* We abuse the descrip field in poptOption to make it easy to flag which options
933          * are refused (since we don't use it otherwise).  Start by marking all options
934          * as "a"ccepted with a few options also marked as non-wild. */
935         for (op = long_options; ; op++) {
936                 const char *longName = op->longName ? op->longName : "";
937                 if (!op->longName && !op->shortName) {
938                         list_end = op;
939                         break;
940                 }
941                 if (!am_daemon
942                  || op->shortName == 'e' /* Required for compatibility flags */
943                  || op->shortName == '0' /* --from0 just modifies --files-from, so refuse that instead (or not) */
944                  || op->shortName == 's' /* --protect-args is always OK */
945                  || op->shortName == 'n' /* --dry-run is always OK */
946                  || strcmp("iconv", longName) == 0
947                  || strcmp("no-iconv", longName) == 0
948                  || strcmp("checksum-seed", longName) == 0
949                  || strcmp("write-devices", longName) == 0 /* disable wild-match (it gets refused below) */
950                  || strcmp("log-format", longName) == 0 /* aka out-format (NOT log-file-format) */
951                  || strcmp("sender", longName) == 0
952                  || strcmp("server", longName) == 0)
953                         op->descrip = "a="; /* exact-match only */
954                 else
955                         op->descrip = "a*"; /* wild-card-able */
956         }
957         assert(list_end != NULL);
958
959         if (am_daemon) { /* Refused by default, but can be accepted via a negated exact match. */
960                 parse_one_refuse_match(0, "write-devices", list_end);
961         }
962
963         while (1) {
964                 while (*ref == ' ') ref++;
965                 if (!*ref)
966                         break;
967                 if ((cp = strchr(ref, ' ')) != NULL)
968                         *cp = '\0';
969                 negated = *ref == '!';
970                 if (negated && ref[1])
971                         ref++;
972                 parse_one_refuse_match(negated, ref, list_end);
973                 if (!cp)
974                         break;
975                 *cp = ' ';
976                 ref = cp + 1;
977         }
978
979         if (am_daemon) {
980 #ifdef ICONV_OPTION
981                 if (!*lp_charset(module_id))
982                         parse_one_refuse_match(0, "iconv", list_end);
983 #endif
984                 parse_one_refuse_match(0, "log-file*", list_end);
985         }
986
987 #ifndef SUPPORT_ATIMES
988         parse_one_refuse_match(0, "atimes", list_end);
989 #endif
990 #ifndef SUPPORT_HARD_LINKS
991         parse_one_refuse_match(0, "link-dest", list_end);
992 #endif
993 #ifndef HAVE_MKTIME
994         parse_one_refuse_match(0, "stop-at", list_end);
995 #endif
996 #ifndef ICONV_OPTION
997         parse_one_refuse_match(0, "iconv", list_end);
998 #endif
999 #ifndef HAVE_SETVBUF
1000         parse_one_refuse_match(0, "outbuf", list_end);
1001 #endif
1002 #ifndef SUPPORT_CRTIMES
1003         parse_one_refuse_match(0, "crtimes", list_end);
1004 #endif
1005
1006         /* Now we use the descrip values to actually mark the options for refusal. */
1007         for (op = long_options; op != list_end; op++) {
1008                 int refused = op->descrip[0] == 'r';
1009                 op->descrip = NULL;
1010                 if (!refused)
1011                         continue;
1012                 if (op->argInfo == POPT_ARG_VAL)
1013                         op->argInfo = POPT_ARG_NONE;
1014                 op->val = (op - long_options) + OPT_REFUSED_BASE;
1015                 /* The following flags are set to let us easily check an implied option later in the code. */
1016                 switch (op->shortName) {
1017                 case 'r': case 'd': case 'l': case 'p':
1018                 case 't': case 'g': case 'o': case 'D':
1019                         refused_archive_part = op->val;
1020                         break;
1021                 case 'z':
1022                         refused_compress = op->val;
1023                         break;
1024                 case '\0':
1025                         if (strcmp("delete", op->longName) == 0)
1026                                 refused_delete = op->val;
1027                         else if (strcmp("delete-before", op->longName) == 0)
1028                                 refused_delete_before = op->val;
1029                         else if (strcmp("delete-during", op->longName) == 0)
1030                                 refused_delete_during = op->val;
1031                         else if (strcmp("partial", op->longName) == 0)
1032                                 refused_partial = op->val;
1033                         else if (strcmp("progress", op->longName) == 0)
1034                                 refused_progress = op->val;
1035                         else if (strcmp("inplace", op->longName) == 0)
1036                                 refused_inplace = op->val;
1037                         else if (strcmp("no-iconv", op->longName) == 0)
1038                                 refused_no_iconv = op->val;
1039                         break;
1040                 }
1041         }
1042 }
1043
1044
1045 static int count_args(const char **argv)
1046 {
1047         int i = 0;
1048
1049         if (argv) {
1050                 while (argv[i] != NULL)
1051                         i++;
1052         }
1053
1054         return i;
1055 }
1056
1057 /* If the size_arg is an invalid string or the value is < min_value, an error
1058  * is put into err_buf & the return is -1.  Note that this parser does NOT
1059  * support negative numbers, so a min_value < 0 doesn't make any sense. */
1060 static ssize_t parse_size_arg(const char *size_arg, char def_suf, const char *opt_name,
1061                               ssize_t min_value, ssize_t max_value, BOOL unlimited_0)
1062 {
1063         int reps, mult, len;
1064         const char *arg, *err = "invalid", *min_max = NULL;
1065         ssize_t limit = -1, size = 1;
1066
1067         for (arg = size_arg; isDigit(arg); arg++) {}
1068         if (*arg == '.' || *arg == get_decimal_point()) /* backward compatibility: always allow '.' */
1069                 for (arg++; isDigit(arg); arg++) {}
1070         switch (*arg && *arg != '+' && *arg != '-' ? *arg++ : def_suf) {
1071         case 'b': case 'B':
1072                 reps = 0;
1073                 break;
1074         case 'k': case 'K':
1075                 reps = 1;
1076                 break;
1077         case 'm': case 'M':
1078                 reps = 2;
1079                 break;
1080         case 'g': case 'G':
1081                 reps = 3;
1082                 break;
1083         case 't': case 'T':
1084                 reps = 4;
1085                 break;
1086         case 'p': case 'P':
1087                 reps = 5;
1088                 break;
1089         default:
1090                 goto failure;
1091         }
1092         if (*arg == 'b' || *arg == 'B')
1093                 mult = 1000, arg++;
1094         else if (!*arg || *arg == '+' || *arg == '-')
1095                 mult = 1024;
1096         else if (strncasecmp(arg, "ib", 2) == 0)
1097                 mult = 1024, arg += 2;
1098         else
1099                 goto failure;
1100         while (reps--)
1101                 size *= mult;
1102         size *= atof(size_arg);
1103         if ((*arg == '+' || *arg == '-') && arg[1] == '1' && arg != size_arg)
1104                 size += atoi(arg), arg += 2;
1105         if (*arg)
1106                 goto failure;
1107         if (size < 0 || (max_value >= 0 && size > max_value)) {
1108                 err = "too large";
1109                 min_max = "max";
1110                 limit = max_value;
1111                 goto failure;
1112         }
1113         if (size < min_value && (!unlimited_0 || size != 0)) {
1114                 err = "too small";
1115                 min_max = "min";
1116                 limit = min_value;
1117                 goto failure;
1118         }
1119         return size;
1120
1121 failure:
1122         len = snprintf(err_buf, sizeof err_buf - 1, "--%s=%s is %s", opt_name, size_arg, err);
1123         if (min_max && limit >= 0 && len < (int)sizeof err_buf - 10) {
1124                 len += snprintf(err_buf + len, sizeof err_buf - len - 1, " (%s: %s%s)",
1125                         min_max, do_big_num(limit, 3, NULL),
1126                         unlimited_0 && min_max[1] == 'i' ? " or 0 for unlimited" : "");
1127         }
1128         err_buf[len] = '\n';
1129         err_buf[len+1] = '\0';
1130         return -1;
1131 }
1132
1133 #ifdef HAVE_MKTIME
1134 /* Allow the user to specify a time in the format yyyy-mm-ddThh:mm while
1135  * also allowing abbreviated data.  For instance, if the time is omitted,
1136  * it defaults to midnight.  If the date is omitted, it defaults to the
1137  * next possible date in the future with the specified time.  Even the
1138  * year or year-month can be omitted, again defaulting to the next date
1139  * in the future that matches the specified information.  A 2-digit year
1140  * is also OK, as is using '/' instead of '-'. */
1141 static time_t parse_time(const char *arg)
1142 {
1143         const char *cp;
1144         time_t val, now = time(NULL);
1145         struct tm t, *today = localtime(&now);
1146         int in_date, old_mday, n;
1147
1148         memset(&t, 0, sizeof t);
1149         t.tm_year = t.tm_mon = t.tm_mday = -1;
1150         t.tm_hour = t.tm_min = t.tm_isdst = -1;
1151         cp = arg;
1152         if (*cp == 'T' || *cp == 't' || *cp == ':') {
1153                 in_date = *cp == ':' ? 0 : -1;
1154                 cp++;
1155         } else
1156                 in_date = 1;
1157         for ( ; ; cp++) {
1158                 if (!isDigit(cp))
1159                         return (time_t)-1;
1160                 n = 0;
1161                 do {
1162                         n = n * 10 + *cp++ - '0';
1163                 } while (isDigit(cp));
1164                 if (*cp == ':')
1165                         in_date = 0;
1166                 if (in_date > 0) {
1167                         if (t.tm_year != -1)
1168                                 return (time_t)-1;
1169                         t.tm_year = t.tm_mon;
1170                         t.tm_mon = t.tm_mday;
1171                         t.tm_mday = n;
1172                         if (!*cp)
1173                                 break;
1174                         if (*cp == 'T' || *cp == 't') {
1175                                 if (!cp[1])
1176                                         break;
1177                                 in_date = -1;
1178                         } else if (*cp != '-' && *cp != '/')
1179                                 return (time_t)-1;
1180                         continue;
1181                 }
1182                 if (t.tm_hour != -1)
1183                         return (time_t)-1;
1184                 t.tm_hour = t.tm_min;
1185                 t.tm_min = n;
1186                 if (!*cp) {
1187                         if (in_date < 0)
1188                                 return (time_t)-1;
1189                         break;
1190                 }
1191                 if (*cp != ':')
1192                         return (time_t)-1;
1193                 in_date = 0;
1194         }
1195
1196         in_date = 0;
1197         if (t.tm_year < 0) {
1198                 t.tm_year = today->tm_year;
1199                 in_date = 1;
1200         } else if (t.tm_year < 100) {
1201                 while (t.tm_year < today->tm_year)
1202                         t.tm_year += 100;
1203         } else
1204                 t.tm_year -= 1900;
1205         if (t.tm_mon < 0) {
1206                 t.tm_mon = today->tm_mon;
1207                 in_date = 2;
1208         } else
1209                 t.tm_mon--;
1210         if (t.tm_mday < 0) {
1211                 t.tm_mday = today->tm_mday;
1212                 in_date = 3;
1213         }
1214
1215         n = 0;
1216         if (t.tm_min < 0) {
1217                 t.tm_hour = t.tm_min = 0;
1218         } else if (t.tm_hour < 0) {
1219                 if (in_date != 3)
1220                         return (time_t)-1;
1221                 in_date = 0;
1222                 t.tm_hour = today->tm_hour;
1223                 n = 60*60;
1224         }
1225
1226         /* Note that mktime() might change a too-large tm_mday into the start of
1227          * the following month which we need to undo in the following code! */
1228         old_mday = t.tm_mday;
1229         if (t.tm_hour > 23 || t.tm_min > 59
1230             || t.tm_mon < 0 || t.tm_mon >= 12
1231             || t.tm_mday < 1 || t.tm_mday > 31
1232             || (val = mktime(&t)) == (time_t)-1)
1233                 return (time_t)-1;
1234
1235         while (in_date && (val <= now || t.tm_mday < old_mday)) {
1236                 switch (in_date) {
1237                 case 3:
1238                         old_mday = ++t.tm_mday;
1239                         break;
1240                 case 2:
1241                         if (t.tm_mday < old_mday)
1242                                 t.tm_mday = old_mday; /* The month already got bumped forward */
1243                         else if (++t.tm_mon == 12) {
1244                                 t.tm_mon = 0;
1245                                 t.tm_year++;
1246                         }
1247                         break;
1248                 case 1:
1249                         if (t.tm_mday < old_mday) {
1250                                 /* mon==1 mday==29 got bumped to mon==2 */
1251                                 if (t.tm_mon != 2 || old_mday != 29)
1252                                         return (time_t)-1;
1253                                 t.tm_mon = 1;
1254                                 t.tm_mday = 29;
1255                         }
1256                         t.tm_year++;
1257                         break;
1258                 }
1259                 if ((val = mktime(&t)) == (time_t)-1) {
1260                         /* This code shouldn't be needed, as mktime() should auto-round to the next month. */
1261                         if (in_date != 3 || t.tm_mday <= 28)
1262                                 return (time_t)-1;
1263                         t.tm_mday = old_mday = 1;
1264                         in_date = 2;
1265                 }
1266         }
1267         if (n) {
1268                 while (val <= now)
1269                         val += n;
1270         }
1271         return val;
1272 }
1273 #endif
1274
1275 static void create_refuse_error(int which)
1276 {
1277         const char *msg;
1278         if (am_daemon)
1279                 msg = "The server is configured to refuse";
1280         else if (am_server)
1281                 msg = "The server does not support";
1282         else
1283                 msg = "This rsync does not support";
1284
1285         /* The "which" value is the index + OPT_REFUSED_BASE. */
1286         struct poptOption *op = &long_options[which - OPT_REFUSED_BASE];
1287         int n = snprintf(err_buf, sizeof err_buf, "%s --%s\n", msg, op->longName) - 1;
1288         if (op->shortName)
1289                 snprintf(err_buf + n, sizeof err_buf - n, " (-%c)\n", op->shortName);
1290 }
1291
1292 /* This is used to make sure that --daemon & --server cannot be aliased to
1293  * something else. These options have always disabled popt aliases for the
1294  * parsing of a daemon or server command-line, but we have to make sure that
1295  * these options cannot vanish so that the alias disabling can take effect. */
1296 static void popt_unalias(poptContext con, const char *opt)
1297 {
1298         struct poptAlias unalias;
1299
1300         memset(&unalias, 0, sizeof unalias);
1301
1302         unalias.longName = opt + 2; /* point past the leading "--" */
1303         unalias.argc = 1;
1304         unalias.argv = new_array0(const char*, 2);
1305         unalias.argv[0] = strdup(opt);
1306
1307         poptAddAlias(con, unalias, 0);
1308 }
1309
1310 char *alt_dest_opt(int type)
1311 {
1312         if (!type)
1313                 type = alt_dest_type;
1314
1315         switch (type) {
1316         case COMPARE_DEST:
1317                 return "--compare-dest";
1318         case COPY_DEST:
1319                 return "--copy-dest";
1320         case LINK_DEST:
1321                 return "--link-dest";
1322         default:
1323                 NOISY_DEATH("Unknown alt_dest_opt type");
1324         }
1325 }
1326
1327 /**
1328  * Process command line arguments.  Called on both local and remote.
1329  *
1330  * @retval 1 if all options are OK; with globals set to appropriate
1331  * values
1332  *
1333  * @retval 0 on error, with err_buf containing an explanation
1334  **/
1335 int parse_arguments(int *argc_p, const char ***argv_p)
1336 {
1337         static poptContext pc;
1338         const char *arg, **argv = *argv_p;
1339         int argc = *argc_p;
1340         int opt, want_dest_type;
1341         int orig_protect_args = protect_args;
1342
1343         if (argc == 0) {
1344                 strlcpy(err_buf, "argc is zero!\n", sizeof err_buf);
1345                 return 0;
1346         }
1347
1348         set_refuse_options();
1349
1350 #ifdef ICONV_OPTION
1351         if (!am_daemon && protect_args <= 0 && (arg = getenv("RSYNC_ICONV")) != NULL && *arg)
1352                 iconv_opt = strdup(arg);
1353 #endif
1354
1355         /* TODO: Call poptReadDefaultConfig; handle errors. */
1356
1357         /* The context leaks in case of an error, but if there's a
1358          * problem we always exit anyhow. */
1359         if (pc)
1360                 poptFreeContext(pc);
1361         pc = poptGetContext(RSYNC_NAME, argc, argv, long_options, 0);
1362         if (!am_server) {
1363                 poptReadDefaultConfig(pc, 0);
1364                 popt_unalias(pc, "--daemon");
1365                 popt_unalias(pc, "--server");
1366         }
1367
1368         while ((opt = poptGetNextOpt(pc)) != -1) {
1369                 /* most options are handled automatically by popt;
1370                  * only special cases are returned and listed here. */
1371
1372                 switch (opt) {
1373                 case 'V':
1374                         version_opt_cnt++;
1375                         break;
1376
1377                 case OPT_SERVER:
1378                         if (!am_server) {
1379                                 /* Disable popt aliases on the server side and
1380                                  * then start parsing the options again. */
1381                                 poptFreeContext(pc);
1382                                 pc = poptGetContext(RSYNC_NAME, argc, argv, long_options, 0);
1383                                 am_server = 1;
1384                         }
1385 #ifdef ICONV_OPTION
1386                         iconv_opt = NULL;
1387 #endif
1388                         break;
1389
1390                 case OPT_SENDER:
1391                         if (!am_server) {
1392                                 usage(FERROR);
1393                                 exit_cleanup(RERR_SYNTAX);
1394                         }
1395                         am_sender = 1;
1396                         break;
1397
1398                 case OPT_DAEMON:
1399                         if (am_daemon) {
1400                                 strlcpy(err_buf,
1401                                         "Attempt to hack rsync thwarted!\n",
1402                                         sizeof err_buf);
1403                                 return 0;
1404                         }
1405 #ifdef ICONV_OPTION
1406                         iconv_opt = NULL;
1407 #endif
1408                         protect_args = 0;
1409                         poptFreeContext(pc);
1410                         pc = poptGetContext(RSYNC_NAME, argc, argv, long_daemon_options, 0);
1411                         while ((opt = poptGetNextOpt(pc)) != -1) {
1412                                 char **cpp;
1413                                 switch (opt) {
1414                                 case 'h':
1415                                         daemon_usage(FINFO);
1416                                         exit_cleanup(0);
1417
1418                                 case 'M':
1419                                         arg = poptGetOptArg(pc);
1420                                         if (!strchr(arg, '=')) {
1421                                                 rprintf(FERROR,
1422                                                         "--dparam value is missing an '=': %s\n",
1423                                                         arg);
1424                                                 goto daemon_error;
1425                                         }
1426                                         cpp = EXPAND_ITEM_LIST(&dparam_list, char *, 4);
1427                                         *cpp = strdup(arg);
1428                                         break;
1429
1430                                 case 'v':
1431                                         verbose++;
1432                                         break;
1433
1434                                 default:
1435                                         rprintf(FERROR,
1436                                                 "rsync: %s: %s (in daemon mode)\n",
1437                                                 poptBadOption(pc, POPT_BADOPTION_NOALIAS),
1438                                                 poptStrerror(opt));
1439                                         goto daemon_error;
1440                                 }
1441                         }
1442
1443                         if (dparam_list.count && !set_dparams(1))
1444                                 exit_cleanup(RERR_SYNTAX);
1445
1446                         if (tmpdir && strlen(tmpdir) >= MAXPATHLEN - 10) {
1447                                 snprintf(err_buf, sizeof err_buf,
1448                                          "the --temp-dir path is WAY too long.\n");
1449                                 return 0;
1450                         }
1451
1452                         if (!daemon_opt) {
1453                                 rprintf(FERROR, "Daemon option(s) used without --daemon.\n");
1454                             daemon_error:
1455                                 rprintf(FERROR, "(Type \"rsync --daemon --help\" for assistance with daemon mode.)\n");
1456                                 exit_cleanup(RERR_SYNTAX);
1457                         }
1458
1459                         *argv_p = argv = poptGetArgs(pc);
1460                         *argc_p = argc = count_args(argv);
1461                         am_starting_up = 0;
1462                         daemon_opt = 0;
1463                         am_daemon = 1;
1464                         return 1;
1465
1466                 case OPT_MODIFY_WINDOW:
1467                         /* The value has already been set by popt, but
1468                          * we need to remember that we're using a
1469                          * non-default setting. */
1470                         modify_window_set = 1;
1471                         break;
1472
1473                 case OPT_FILTER:
1474                         parse_filter_str(&filter_list, poptGetOptArg(pc),
1475                                         rule_template(0), 0);
1476                         break;
1477
1478                 case OPT_EXCLUDE:
1479                         parse_filter_str(&filter_list, poptGetOptArg(pc),
1480                                         rule_template(0), XFLG_OLD_PREFIXES);
1481                         break;
1482
1483                 case OPT_INCLUDE:
1484                         parse_filter_str(&filter_list, poptGetOptArg(pc),
1485                                         rule_template(FILTRULE_INCLUDE), XFLG_OLD_PREFIXES);
1486                         break;
1487
1488                 case OPT_EXCLUDE_FROM:
1489                 case OPT_INCLUDE_FROM:
1490                         arg = poptGetOptArg(pc);
1491                         if (sanitize_paths)
1492                                 arg = sanitize_path(NULL, arg, NULL, 0, SP_DEFAULT);
1493                         if (daemon_filter_list.head) {
1494                                 int rej;
1495                                 char *cp = strdup(arg);
1496                                 if (!*cp)
1497                                         rej = 1;
1498                                 else {
1499                                         char *dir = cp + (*cp == '/' ? module_dirlen : 0);
1500                                         clean_fname(dir, CFN_COLLAPSE_DOT_DOT_DIRS);
1501                                         rej = check_filter(&daemon_filter_list, FLOG, dir, 0) < 0;
1502                                 }
1503                                 free(cp);
1504                                 if (rej)
1505                                         goto options_rejected;
1506                         }
1507                         parse_filter_file(&filter_list, arg,
1508                                 rule_template(opt == OPT_INCLUDE_FROM ? FILTRULE_INCLUDE : 0),
1509                                 XFLG_FATAL_ERRORS | XFLG_OLD_PREFIXES);
1510                         break;
1511
1512                 case 'a':
1513                         if (refused_archive_part) {
1514                                 create_refuse_error(refused_archive_part);
1515                                 return 0;
1516                         }
1517                         if (!recurse) /* preserve recurse == 2 */
1518                                 recurse = 1;
1519 #ifdef SUPPORT_LINKS
1520                         preserve_links = 1;
1521 #endif
1522                         preserve_perms = 1;
1523                         preserve_mtimes = 1;
1524                         preserve_gid = 1;
1525                         preserve_uid = 1;
1526                         preserve_devices = 1;
1527                         preserve_specials = 1;
1528                         break;
1529
1530                 case 'D':
1531                         preserve_devices = preserve_specials = 1;
1532                         break;
1533
1534                 case OPT_NO_D:
1535                         preserve_devices = preserve_specials = 0;
1536                         break;
1537
1538                 case 'h':
1539                         human_readable++;
1540                         break;
1541
1542                 case 'H':
1543                         preserve_hard_links++;
1544                         break;
1545
1546                 case 'i':
1547                         itemize_changes++;
1548                         break;
1549
1550                 case 'U':
1551                         if (++preserve_atimes > 1)
1552                                 open_noatime = 1;
1553                         break;
1554
1555                 case 'v':
1556                         verbose++;
1557                         break;
1558
1559                 case 'y':
1560                         fuzzy_basis++;
1561                         break;
1562
1563                 case 'q':
1564                         quiet++;
1565                         break;
1566
1567                 case 'x':
1568                         one_file_system++;
1569                         break;
1570
1571                 case 'F':
1572                         switch (++F_option_cnt) {
1573                         case 1:
1574                                 parse_filter_str(&filter_list,": /.rsync-filter",rule_template(0),0);
1575                                 break;
1576                         case 2:
1577                                 parse_filter_str(&filter_list,"- .rsync-filter",rule_template(0),0);
1578                                 break;
1579                         }
1580                         break;
1581
1582                 case 'P':
1583                         if (refused_partial || refused_progress) {
1584                                 create_refuse_error(refused_partial ? refused_partial : refused_progress);
1585                                 return 0;
1586                         }
1587                         do_progress = 1;
1588                         keep_partial = 1;
1589                         break;
1590
1591                 case 'z':
1592                         do_compression++;
1593                         break;
1594
1595                 case OPT_OLD_COMPRESS:
1596                         compress_choice = "zlib";
1597                         break;
1598
1599                 case OPT_NEW_COMPRESS:
1600                         compress_choice = "zlibx";
1601                         break;
1602
1603                 case OPT_NO_COMPRESS:
1604                         do_compression = 0;
1605                         compress_choice = NULL;
1606                         break;
1607
1608                 case 'M':
1609                         arg = poptGetOptArg(pc);
1610                         if (*arg != '-') {
1611                                 snprintf(err_buf, sizeof err_buf,
1612                                         "Remote option must start with a dash: %s\n", arg);
1613                                 return 0;
1614                         }
1615                         if (remote_option_cnt+2 >= remote_option_alloc) {
1616                                 remote_option_alloc += 16;
1617                                 remote_options = realloc_array(remote_options,
1618                                                         const char *, remote_option_alloc);
1619                                 if (!remote_option_cnt)
1620                                         remote_options[0] = "ARG0";
1621                         }
1622                         remote_options[++remote_option_cnt] = arg;
1623                         remote_options[remote_option_cnt+1] = NULL;
1624                         break;
1625
1626                 case OPT_WRITE_BATCH:
1627                         /* batch_name is already set */
1628                         write_batch = 1;
1629                         break;
1630
1631                 case OPT_ONLY_WRITE_BATCH:
1632                         /* batch_name is already set */
1633                         write_batch = -1;
1634                         break;
1635
1636                 case OPT_READ_BATCH:
1637                         /* batch_name is already set */
1638                         read_batch = 1;
1639                         break;
1640
1641                 case OPT_NO_ICONV:
1642 #ifdef ICONV_OPTION
1643                         iconv_opt = NULL;
1644 #endif
1645                         break;
1646
1647                 case OPT_BLOCK_SIZE: {
1648                         /* We may not know the real protocol_version at this point if this is the client
1649                          * option parsing, but we still want to check it so that the client can specify
1650                          * a --protocol=29 option with a larger block size. */
1651                         int max_blength = protocol_version < 30 ? OLD_MAX_BLOCK_SIZE : MAX_BLOCK_SIZE;
1652                         ssize_t size;
1653                         arg = poptGetOptArg(pc);
1654                         if ((size = parse_size_arg(arg, 'b', "block-size", 0, max_blength, False)) < 0)
1655                                 return 0;
1656                         block_size = (int32)size;
1657                         break;
1658                 }
1659
1660                 case OPT_MAX_SIZE:
1661                         if ((max_size = parse_size_arg(max_size_arg, 'b', "max-size", 0, -1, False)) < 0)
1662                                 return 0;
1663                         max_size_arg = strdup(do_big_num(max_size, 0, NULL));
1664                         break;
1665
1666                 case OPT_MIN_SIZE:
1667                         if ((min_size = parse_size_arg(min_size_arg, 'b', "min-size", 0, -1, False)) < 0)
1668                                 return 0;
1669                         min_size_arg = strdup(do_big_num(min_size, 0, NULL));
1670                         break;
1671
1672                 case OPT_BWLIMIT: {
1673                         ssize_t size = parse_size_arg(bwlimit_arg, 'K', "bwlimit", 512, -1, True);
1674                         if (size < 0)
1675                                 return 0;
1676                         bwlimit_arg = strdup(do_big_num(size, 0, NULL));
1677                         bwlimit = (size + 512) / 1024;
1678                         break;
1679                 }
1680
1681                 case OPT_APPEND:
1682                         if (am_server)
1683                                 append_mode++;
1684                         else
1685                                 append_mode = 1;
1686                         break;
1687
1688                 case OPT_LINK_DEST:
1689                         want_dest_type = LINK_DEST;
1690                         goto set_dest_dir;
1691
1692                 case OPT_COPY_DEST:
1693                         want_dest_type = COPY_DEST;
1694                         goto set_dest_dir;
1695
1696                 case OPT_COMPARE_DEST:
1697                         want_dest_type = COMPARE_DEST;
1698
1699                 set_dest_dir:
1700                         if (alt_dest_type && alt_dest_type != want_dest_type) {
1701                                 snprintf(err_buf, sizeof err_buf,
1702                                         "ERROR: the %s option conflicts with the %s option\n",
1703                                         alt_dest_opt(want_dest_type), alt_dest_opt(0));
1704                                 return 0;
1705                         }
1706                         alt_dest_type = want_dest_type;
1707
1708                         if (basis_dir_cnt >= MAX_BASIS_DIRS) {
1709                                 snprintf(err_buf, sizeof err_buf,
1710                                         "ERROR: at most %d %s args may be specified\n",
1711                                         MAX_BASIS_DIRS, alt_dest_opt(0));
1712                                 return 0;
1713                         }
1714                         /* We defer sanitizing this arg until we know what
1715                          * our destination directory is going to be. */
1716                         basis_dir[basis_dir_cnt++] = (char *)poptGetOptArg(pc);
1717                         break;
1718
1719                 case OPT_CHMOD:
1720                         arg = poptGetOptArg(pc);
1721                         if (!parse_chmod(arg, &chmod_modes)) {
1722                                 snprintf(err_buf, sizeof err_buf,
1723                                         "Invalid argument passed to --chmod (%s)\n",
1724                                         arg);
1725                                 return 0;
1726                         }
1727                         break;
1728
1729                 case OPT_INFO:
1730                         arg = poptGetOptArg(pc);
1731                         parse_output_words(info_words, info_levels, arg, USER_PRIORITY);
1732                         break;
1733
1734                 case OPT_DEBUG:
1735                         arg = poptGetOptArg(pc);
1736                         parse_output_words(debug_words, debug_levels, arg, USER_PRIORITY);
1737                         break;
1738
1739                 case OPT_USERMAP:
1740                         if (usermap) {
1741                                 if (usermap_via_chown) {
1742                                         snprintf(err_buf, sizeof err_buf,
1743                                                 "--usermap conflicts with prior --chown.\n");
1744                                         return 0;
1745                                 }
1746                                 snprintf(err_buf, sizeof err_buf,
1747                                         "You can only specify --usermap once.\n");
1748                                 return 0;
1749                         }
1750                         usermap = (char *)poptGetOptArg(pc);
1751                         usermap_via_chown = False;
1752                         preserve_uid = 1;
1753                         break;
1754
1755                 case OPT_GROUPMAP:
1756                         if (groupmap) {
1757                                 if (groupmap_via_chown) {
1758                                         snprintf(err_buf, sizeof err_buf,
1759                                                 "--groupmap conflicts with prior --chown.\n");
1760                                         return 0;
1761                                 }
1762                                 snprintf(err_buf, sizeof err_buf,
1763                                         "You can only specify --groupmap once.\n");
1764                                 return 0;
1765                         }
1766                         groupmap = (char *)poptGetOptArg(pc);
1767                         groupmap_via_chown = False;
1768                         preserve_gid = 1;
1769                         break;
1770
1771                 case OPT_CHOWN: {
1772                         const char *chown = poptGetOptArg(pc);
1773                         int len;
1774                         if ((arg = strchr(chown, ':')) != NULL)
1775                                 len = arg++ - chown;
1776                         else
1777                                 len = strlen(chown);
1778                         if (len) {
1779                                 if (usermap) {
1780                                         if (!usermap_via_chown) {
1781                                                 snprintf(err_buf, sizeof err_buf,
1782                                                         "--chown conflicts with prior --usermap.\n");
1783                                                 return 0;
1784                                         }
1785                                         snprintf(err_buf, sizeof err_buf,
1786                                                 "You can only specify a user-affecting --chown once.\n");
1787                                         return 0;
1788                                 }
1789                                 if (asprintf(&usermap, "*:%.*s", len, chown) < 0)
1790                                         out_of_memory("parse_arguments");
1791                                 usermap_via_chown = True;
1792                                 preserve_uid = 1;
1793                         }
1794                         if (arg && *arg) {
1795                                 if (groupmap) {
1796                                         if (!groupmap_via_chown) {
1797                                                 snprintf(err_buf, sizeof err_buf,
1798                                                         "--chown conflicts with prior --groupmap.\n");
1799                                                 return 0;
1800                                         }
1801                                         snprintf(err_buf, sizeof err_buf,
1802                                                 "You can only specify a group-affecting --chown once.\n");
1803                                         return 0;
1804                                 }
1805                                 if (asprintf(&groupmap, "*:%s", arg) < 0)
1806                                         out_of_memory("parse_arguments");
1807                                 groupmap_via_chown = True;
1808                                 preserve_gid = 1;
1809                         }
1810                         break;
1811                 }
1812
1813                 case OPT_HELP:
1814                         usage(FINFO);
1815                         exit_cleanup(0);
1816
1817                 case 'A':
1818 #ifdef SUPPORT_ACLS
1819                         preserve_acls = 1;
1820                         preserve_perms = 1;
1821                         break;
1822 #else
1823                         /* FIXME: this should probably be ignored with a
1824                          * warning and then countermeasures taken to
1825                          * restrict group and other access in the presence
1826                          * of any more restrictive ACLs, but this is safe
1827                          * for now */
1828                         snprintf(err_buf,sizeof(err_buf),
1829                                  "ACLs are not supported on this %s\n",
1830                                  am_server ? "server" : "client");
1831                         return 0;
1832 #endif
1833
1834                 case 'X':
1835 #ifdef SUPPORT_XATTRS
1836                         preserve_xattrs++;
1837                         break;
1838 #else
1839                         snprintf(err_buf,sizeof(err_buf),
1840                                  "extended attributes are not supported on this %s\n",
1841                                  am_server ? "server" : "client");
1842                         return 0;
1843 #endif
1844
1845                 case OPT_STOP_AFTER: {
1846                         long val;
1847                         arg = poptGetOptArg(pc);
1848                         stop_at_utime = time(NULL);
1849                         if ((val = atol(arg) * 60) <= 0 || LONG_MAX - val < stop_at_utime || (long)(time_t)val != val) {
1850                                 snprintf(err_buf, sizeof err_buf, "invalid --stop-after value: %s\n", arg);
1851                                 return 0;
1852                         }
1853                         stop_at_utime += val;
1854                         break;
1855                 }
1856
1857 #ifdef HAVE_MKTIME
1858                 case OPT_STOP_AT:
1859                         arg = poptGetOptArg(pc);
1860                         if ((stop_at_utime = parse_time(arg)) == (time_t)-1) {
1861                                 snprintf(err_buf, sizeof err_buf, "invalid --stop-at format: %s\n", arg);
1862                                 return 0;
1863                         }
1864                         if (stop_at_utime <= time(NULL)) {
1865                                 snprintf(err_buf, sizeof err_buf, "--stop-at time is not in the future: %s\n", arg);
1866                                 return 0;
1867                         }
1868                         break;
1869 #endif
1870
1871                 case OPT_STDERR: {
1872                         int len;
1873                         arg = poptGetOptArg(pc);
1874                         len = strlen(arg);
1875                         if (len && strncmp("errors", arg, len) == 0)
1876                                 msgs2stderr = 2;
1877                         else if (len && strncmp("all", arg, len) == 0)
1878                                 msgs2stderr = 1;
1879                         else if (len && strncmp("client", arg, len) == 0)
1880                                 msgs2stderr = 0;
1881                         else {
1882                                 snprintf(err_buf, sizeof err_buf,
1883                                         "--stderr mode \"%s\" is not one of errors, all, or client\n", arg);
1884                                 return 0;
1885                         }
1886                         saw_stderr_opt = 1;
1887                         break;
1888                 }
1889
1890                 default:
1891                         /* A large opt value means that set_refuse_options()
1892                          * turned this option off. */
1893                         if (opt >= OPT_REFUSED_BASE) {
1894                                 create_refuse_error(opt);
1895                                 return 0;
1896                         }
1897                         snprintf(err_buf, sizeof err_buf, "%s%s: %s\n",
1898                                  am_server ? "on remote machine: " : "",
1899                                  poptBadOption(pc, POPT_BADOPTION_NOALIAS),
1900                                  poptStrerror(opt));
1901                         return 0;
1902                 }
1903         }
1904
1905         if (msgs2stderr != 2)
1906                 saw_stderr_opt = 1;
1907
1908         if (version_opt_cnt) {
1909                 print_rsync_version(FINFO);
1910                 exit_cleanup(0);
1911         }
1912
1913         if (!max_alloc_arg) {
1914                 max_alloc_arg = getenv("RSYNC_MAX_ALLOC");
1915                 if (max_alloc_arg && !*max_alloc_arg)
1916                         max_alloc_arg = NULL;
1917         }
1918         if (max_alloc_arg) {
1919                 ssize_t size = parse_size_arg(max_alloc_arg, 'B', "max-alloc", 1024*1024, -1, True);
1920                 if (size < 0)
1921                         return 0;
1922                 max_alloc = size;
1923         }
1924
1925         if (protect_args < 0) {
1926                 if (am_server)
1927                         protect_args = 0;
1928                 else if ((arg = getenv("RSYNC_PROTECT_ARGS")) != NULL && *arg)
1929                         protect_args = atoi(arg) ? 1 : 0;
1930                 else {
1931 #ifdef RSYNC_USE_PROTECTED_ARGS
1932                         protect_args = 1;
1933 #else
1934                         protect_args = 0;
1935 #endif
1936                 }
1937         }
1938
1939         if (checksum_choice && strcasecmp(checksum_choice, "auto") != 0 && strcasecmp(checksum_choice, "auto,auto") != 0) {
1940                 /* Call this early to verify the args and figure out if we need to force
1941                  * --whole-file. Note that the parse function will get called again later,
1942                  * just in case an "auto" choice needs to know the protocol_version. */
1943                 parse_checksum_choice(0);
1944         } else
1945                 checksum_choice = NULL;
1946
1947         if (human_readable > 1 && argc == 2 && !am_server) {
1948                 /* Allow the old meaning of 'h' (--help) on its own. */
1949                 usage(FINFO);
1950                 exit_cleanup(0);
1951         }
1952
1953         if (!compress_choice && do_compression > 1)
1954                 compress_choice = "zlibx";
1955         if (compress_choice && strcasecmp(compress_choice, "auto") != 0)
1956                 parse_compress_choice(0); /* Twiddles do_compression and can possibly NULL-out compress_choice. */
1957         else
1958                 compress_choice = NULL;
1959
1960         if (do_compression || do_compression_level != CLVL_NOT_SPECIFIED) {
1961                 if (!do_compression)
1962                         do_compression = CPRES_AUTO;
1963                 if (do_compression && refused_compress) {
1964                         create_refuse_error(refused_compress);
1965                         return 0;
1966                 }
1967         }
1968
1969 #ifdef HAVE_SETVBUF
1970         if (outbuf_mode && !am_server) {
1971                 int mode = *(uchar *)outbuf_mode;
1972                 if (islower(mode))
1973                         mode = toupper(mode);
1974                 fflush(stdout); /* Just in case... */
1975                 switch (mode) {
1976                 case 'N': /* None */
1977                 case 'U': /* Unbuffered */
1978                         mode = _IONBF;
1979                         break;
1980                 case 'L': /* Line */
1981                         mode = _IOLBF;
1982                         break;
1983                 case 'B': /* Block */
1984                 case 'F': /* Full */
1985                         mode = _IOFBF;
1986                         break;
1987                 default:
1988                         snprintf(err_buf, sizeof err_buf,
1989                                 "Invalid --outbuf setting -- specify N, L, or B.\n");
1990                         return 0;
1991                 }
1992                 setvbuf(stdout, (char *)NULL, mode, 0);
1993         }
1994
1995         if (msgs2stderr == 1) { /* Are all messages going to stderr? */
1996                 /* Make stderr line buffered for better sharing of the stream. */
1997                 fflush(stderr); /* Just in case... */
1998                 setvbuf(stderr, (char *)NULL, _IOLBF, 0);
1999         }
2000 #endif
2001
2002         set_output_verbosity(verbose, DEFAULT_PRIORITY);
2003
2004         if (do_stats) {
2005                 parse_output_words(info_words, info_levels,
2006                         verbose > 1 ? "stats3" : "stats2", DEFAULT_PRIORITY);
2007         }
2008
2009 #ifdef ICONV_OPTION
2010         if (iconv_opt && protect_args != 2) {
2011                 if (!am_server && strcmp(iconv_opt, "-") == 0)
2012                         iconv_opt = NULL;
2013                 else
2014                         need_unsorted_flist = 1;
2015         }
2016         if (refused_no_iconv && !iconv_opt) {
2017                 create_refuse_error(refused_no_iconv);
2018                 return 0;
2019         }
2020 #endif
2021
2022         if (fuzzy_basis > 1)
2023                 fuzzy_basis = basis_dir_cnt + 1;
2024
2025         /* Don't let the client reset protect_args if it was already processed */
2026         if (orig_protect_args == 2 && am_server)
2027                 protect_args = orig_protect_args;
2028
2029         if (protect_args == 1 && am_server)
2030                 return 1;
2031
2032         *argv_p = argv = poptGetArgs(pc);
2033         *argc_p = argc = count_args(argv);
2034
2035 #ifndef SUPPORT_LINKS
2036         if (preserve_links && !am_sender) {
2037                 snprintf(err_buf, sizeof err_buf,
2038                          "symlinks are not supported on this %s\n",
2039                          am_server ? "server" : "client");
2040                 return 0;
2041         }
2042 #endif
2043
2044 #ifndef SUPPORT_HARD_LINKS
2045         if (preserve_hard_links) {
2046                 snprintf(err_buf, sizeof err_buf,
2047                          "hard links are not supported on this %s\n",
2048                          am_server ? "server" : "client");
2049                 return 0;
2050         }
2051 #endif
2052
2053 #ifdef SUPPORT_XATTRS
2054         if (am_root < 0 && preserve_xattrs > 1) {
2055                 snprintf(err_buf, sizeof err_buf,
2056                          "--fake-super conflicts with -XX\n");
2057                 return 0;
2058         }
2059 #else
2060         if (am_root < 0) {
2061                 snprintf(err_buf, sizeof err_buf,
2062                          "--fake-super requires an rsync with extended attributes enabled\n");
2063                 return 0;
2064         }
2065 #endif
2066
2067         if (write_batch && read_batch) {
2068                 snprintf(err_buf, sizeof err_buf,
2069                         "--write-batch and --read-batch can not be used together\n");
2070                 return 0;
2071         }
2072         if (write_batch > 0 || read_batch) {
2073                 if (am_server) {
2074                         rprintf(FINFO,
2075                                 "ignoring --%s-batch option sent to server\n",
2076                                 write_batch ? "write" : "read");
2077                         /* We don't actually exit_cleanup(), so that we can
2078                          * still service older version clients that still send
2079                          * batch args to server. */
2080                         read_batch = write_batch = 0;
2081                         batch_name = NULL;
2082                 } else if (dry_run)
2083                         write_batch = 0;
2084         } else if (write_batch < 0 && dry_run)
2085                 write_batch = 0;
2086         if (read_batch && files_from) {
2087                 snprintf(err_buf, sizeof err_buf,
2088                         "--read-batch cannot be used with --files-from\n");
2089                 return 0;
2090         }
2091         if (read_batch && remove_source_files) {
2092                 snprintf(err_buf, sizeof err_buf,
2093                         "--read-batch cannot be used with --remove-%s-files\n",
2094                         remove_source_files == 1 ? "source" : "sent");
2095                 return 0;
2096         }
2097         if (batch_name && strlen(batch_name) > MAX_BATCH_NAME_LEN) {
2098                 snprintf(err_buf, sizeof err_buf,
2099                         "the batch-file name must be %d characters or less.\n",
2100                         MAX_BATCH_NAME_LEN);
2101                 return 0;
2102         }
2103
2104         if (tmpdir && strlen(tmpdir) >= MAXPATHLEN - 10) {
2105                 snprintf(err_buf, sizeof err_buf,
2106                          "the --temp-dir path is WAY too long.\n");
2107                 return 0;
2108         }
2109
2110         if (max_delete < 0 && max_delete != INT_MIN) {
2111                 /* Negative numbers are treated as "no deletions". */
2112                 max_delete = 0;
2113         }
2114
2115         if (files_from) {
2116                 if (recurse == 1) /* preserve recurse == 2 */
2117                         recurse = 0;
2118                 if (xfer_dirs < 0)
2119                         xfer_dirs = 1;
2120         }
2121
2122         if (argc < 2 && !read_batch && !am_server)
2123                 list_only |= 1;
2124
2125         if (xfer_dirs >= 4) {
2126                 parse_filter_str(&filter_list, "- /*/*", rule_template(0), 0);
2127                 recurse = xfer_dirs = 1;
2128         } else if (recurse)
2129                 xfer_dirs = 1;
2130         else if (xfer_dirs < 0)
2131                 xfer_dirs = list_only ? 1 : 0;
2132
2133         if (relative_paths < 0)
2134                 relative_paths = files_from? 1 : 0;
2135         if (!relative_paths)
2136                 implied_dirs = 0;
2137
2138         if (delete_before + !!delete_during + delete_after > 1) {
2139                 snprintf(err_buf, sizeof err_buf,
2140                         "You may not combine multiple --delete-WHEN options.\n");
2141                 return 0;
2142         }
2143         if (delete_before || delete_during || delete_after)
2144                 delete_mode = 1;
2145         else if (delete_mode || delete_excluded) {
2146                 /* Only choose now between before & during if one is refused. */
2147                 if (refused_delete_before) {
2148                         if (!refused_delete_during)
2149                                 delete_during = 1;
2150                         else {
2151                                 create_refuse_error(refused_delete_before);
2152                                 return 0;
2153                         }
2154                 } else if (refused_delete_during)
2155                         delete_before = 1;
2156                 delete_mode = 1;
2157         }
2158         if (!xfer_dirs && delete_mode) {
2159                 snprintf(err_buf, sizeof err_buf,
2160                         "--delete does not work without --recursive (-r) or --dirs (-d).\n");
2161                 return 0;
2162         }
2163
2164         if (missing_args == 3) /* simplify if both options were specified */
2165                 missing_args = 2;
2166         if (refused_delete && (delete_mode || missing_args == 2)) {
2167                 create_refuse_error(refused_delete);
2168                 return 0;
2169         }
2170
2171         if (remove_source_files) {
2172                 /* We only want to infer this refusal of --remove-source-files
2173                  * via the refusal of "delete", not any of the "delete-FOO"
2174                  * options. */
2175                 if (refused_delete && am_sender) {
2176                         create_refuse_error(refused_delete);
2177                         return 0;
2178                 }
2179                 need_messages_from_generator = 1;
2180         }
2181
2182         if (munge_symlinks && !am_daemon) {
2183                 STRUCT_STAT st;
2184                 char prefix[SYMLINK_PREFIX_LEN]; /* NOT +1 ! */
2185                 strlcpy(prefix, SYMLINK_PREFIX, sizeof prefix); /* trim the trailing slash */
2186                 if (do_stat(prefix, &st) == 0 && S_ISDIR(st.st_mode)) {
2187                         rprintf(FERROR, "Symlink munging is unsafe when a %s directory exists.\n",
2188                                 prefix);
2189                         exit_cleanup(RERR_UNSUPPORTED);
2190                 }
2191         }
2192
2193         if (sanitize_paths) {
2194                 int i;
2195                 for (i = argc; i-- > 0; )
2196                         argv[i] = sanitize_path(NULL, argv[i], "", 0, SP_KEEP_DOT_DIRS);
2197                 if (tmpdir)
2198                         tmpdir = sanitize_path(NULL, tmpdir, NULL, 0, SP_DEFAULT);
2199                 if (backup_dir)
2200                         backup_dir = sanitize_path(NULL, backup_dir, NULL, 0, SP_DEFAULT);
2201         }
2202         if (daemon_filter_list.head && !am_sender) {
2203                 filter_rule_list *elp = &daemon_filter_list;
2204                 if (tmpdir) {
2205                         char *dir;
2206                         if (!*tmpdir)
2207                                 goto options_rejected;
2208                         dir = tmpdir + (*tmpdir == '/' ? module_dirlen : 0);
2209                         clean_fname(dir, CFN_COLLAPSE_DOT_DOT_DIRS);
2210                         if (check_filter(elp, FLOG, dir, 1) < 0)
2211                                 goto options_rejected;
2212                 }
2213                 if (backup_dir) {
2214                         char *dir;
2215                         if (!*backup_dir)
2216                                 goto options_rejected;
2217                         dir = backup_dir + (*backup_dir == '/' ? module_dirlen : 0);
2218                         clean_fname(dir, CFN_COLLAPSE_DOT_DOT_DIRS);
2219                         if (check_filter(elp, FLOG, dir, 1) < 0)
2220                                 goto options_rejected;
2221                 }
2222         }
2223
2224         if (!backup_suffix)
2225                 backup_suffix = backup_dir ? "" : BACKUP_SUFFIX;
2226         backup_suffix_len = strlen(backup_suffix);
2227         if (strchr(backup_suffix, '/') != NULL) {
2228                 snprintf(err_buf, sizeof err_buf,
2229                         "--suffix cannot contain slashes: %s\n",
2230                         backup_suffix);
2231                 return 0;
2232         }
2233         if (backup_dir) {
2234                 size_t len;
2235                 make_backups = 1; /* --backup-dir implies --backup */
2236                 while (*backup_dir == '.' && backup_dir[1] == '/')
2237                         backup_dir += 2;
2238                 if (*backup_dir == '.' && backup_dir[1] == '\0')
2239                         backup_dir++;
2240                 len = strlcpy(backup_dir_buf, backup_dir, sizeof backup_dir_buf);
2241                 if (len > sizeof backup_dir_buf - 128) {
2242                         snprintf(err_buf, sizeof err_buf,
2243                                 "the --backup-dir path is WAY too long.\n");
2244                         return 0;
2245                 }
2246                 backup_dir_len = (int)len;
2247                 if (!backup_dir_len) {
2248                         backup_dir_len = -1;
2249                         backup_dir = NULL;
2250                 } else if (backup_dir_buf[backup_dir_len - 1] != '/') {
2251                         backup_dir_buf[backup_dir_len++] = '/';
2252                         backup_dir_buf[backup_dir_len] = '\0';
2253                 }
2254                 backup_dir_remainder = sizeof backup_dir_buf - backup_dir_len;
2255         }
2256         if (backup_dir) {
2257                 /* No need for a suffix or a protect rule. */
2258         } else if (!backup_suffix_len && (!am_server || !am_sender)) {
2259                 snprintf(err_buf, sizeof err_buf,
2260                         "--suffix cannot be empty %s\n", backup_dir_len < 0
2261                         ? "when --backup-dir is the same as the dest dir"
2262                         : "without a --backup-dir");
2263                 return 0;
2264         } else if (make_backups && delete_mode && !delete_excluded && !am_server) {
2265                 snprintf(backup_dir_buf, sizeof backup_dir_buf,
2266                         "P *%s", backup_suffix);
2267                 parse_filter_str(&filter_list, backup_dir_buf, rule_template(0), 0);
2268         }
2269
2270         if (make_backups && !backup_dir)
2271                 omit_dir_times = -1; /* Implied, so avoid -O to sender. */
2272
2273         if (stdout_format) {
2274                 if (am_server && log_format_has(stdout_format, 'I'))
2275                         stdout_format_has_i = 2;
2276                 else if (log_format_has(stdout_format, 'i'))
2277                         stdout_format_has_i = itemize_changes | 1;
2278                 if (!log_format_has(stdout_format, 'b')
2279                  && !log_format_has(stdout_format, 'c')
2280                  && !log_format_has(stdout_format, 'C'))
2281                         log_before_transfer = !am_server;
2282         } else if (itemize_changes) {
2283                 stdout_format = "%i %n%L";
2284                 stdout_format_has_i = itemize_changes;
2285                 log_before_transfer = !am_server;
2286         }
2287
2288         if (do_progress && !am_server) {
2289                 if (!log_before_transfer && INFO_EQ(NAME, 0))
2290                         parse_output_words(info_words, info_levels, "name", DEFAULT_PRIORITY);
2291                 parse_output_words(info_words, info_levels, "flist2,progress", DEFAULT_PRIORITY);
2292         }
2293
2294         if (dry_run)
2295                 do_xfers = 0;
2296
2297         set_io_timeout(io_timeout);
2298
2299         if (INFO_GTE(NAME, 1) && !stdout_format) {
2300                 stdout_format = "%n%L";
2301                 log_before_transfer = !am_server;
2302         }
2303         if (stdout_format_has_i || log_format_has(stdout_format, 'o'))
2304                 stdout_format_has_o_or_i = 1;
2305
2306         if (logfile_name && !am_daemon) {
2307                 if (!logfile_format) {
2308                         logfile_format = "%i %n%L";
2309                         logfile_format_has_i = logfile_format_has_o_or_i = 1;
2310                 } else {
2311                         if (log_format_has(logfile_format, 'i'))
2312                                 logfile_format_has_i = 1;
2313                         if (logfile_format_has_i || log_format_has(logfile_format, 'o'))
2314                                 logfile_format_has_o_or_i = 1;
2315                 }
2316                 log_init(0);
2317         } else if (!am_daemon)
2318                 logfile_format = NULL;
2319
2320         if (daemon_bwlimit && (!bwlimit || bwlimit > daemon_bwlimit))
2321                 bwlimit = daemon_bwlimit;
2322         if (bwlimit) {
2323                 bwlimit_writemax = (size_t)bwlimit * 128;
2324                 if (bwlimit_writemax < 512)
2325                         bwlimit_writemax = 512;
2326         }
2327
2328         if (append_mode) {
2329                 if (whole_file > 0) {
2330                         snprintf(err_buf, sizeof err_buf,
2331                                  "--append cannot be used with --whole-file\n");
2332                         return 0;
2333                 }
2334                 if (refused_inplace) {
2335                         create_refuse_error(refused_inplace);
2336                         return 0;
2337                 }
2338                 inplace = 1;
2339         }
2340
2341         if (write_devices) {
2342                 if (refused_inplace) {
2343                         create_refuse_error(refused_inplace);
2344                         return 0;
2345                 }
2346                 inplace = 1;
2347         }
2348
2349         if (delay_updates && !partial_dir)
2350                 partial_dir = tmp_partialdir;
2351
2352         if (inplace) {
2353 #ifdef HAVE_FTRUNCATE
2354                 if (partial_dir) {
2355                         snprintf(err_buf, sizeof err_buf,
2356                                  "--%s cannot be used with --%s\n",
2357                                  append_mode ? "append" : "inplace",
2358                                  delay_updates ? "delay-updates" : "partial-dir");
2359                         return 0;
2360                 }
2361                 /* --inplace implies --partial for refusal purposes, but we
2362                  * clear the keep_partial flag for internal logic purposes. */
2363                 if (refused_partial) {
2364                         create_refuse_error(refused_partial);
2365                         return 0;
2366                 }
2367                 keep_partial = 0;
2368 #else
2369                 snprintf(err_buf, sizeof err_buf,
2370                          "--%s is not supported on this %s\n",
2371                          append_mode ? "append" : "inplace",
2372                          am_server ? "server" : "client");
2373                 return 0;
2374 #endif
2375         } else {
2376                 if (keep_partial && !partial_dir && !am_server) {
2377                         if ((arg = getenv("RSYNC_PARTIAL_DIR")) != NULL && *arg)
2378                                 partial_dir = strdup(arg);
2379                 }
2380                 if (partial_dir) {
2381                         if (*partial_dir)
2382                                 clean_fname(partial_dir, CFN_COLLAPSE_DOT_DOT_DIRS);
2383                         if (!*partial_dir || strcmp(partial_dir, ".") == 0)
2384                                 partial_dir = NULL;
2385                         if (!partial_dir && refused_partial) {
2386                                 create_refuse_error(refused_partial);
2387                                 return 0;
2388                         }
2389                         keep_partial = 1;
2390                 }
2391         }
2392
2393         if (files_from) {
2394                 char *h, *p;
2395                 int q;
2396                 if (argc > 2 || (!am_daemon && !am_server && argc == 1)) {
2397                         usage(FERROR);
2398                         exit_cleanup(RERR_SYNTAX);
2399                 }
2400                 if (strcmp(files_from, "-") == 0) {
2401                         filesfrom_fd = 0;
2402                         if (am_server)
2403                                 filesfrom_host = ""; /* reading from socket */
2404                 } else if ((p = check_for_hostspec(files_from, &h, &q)) != 0) {
2405                         if (am_server) {
2406                                 snprintf(err_buf, sizeof err_buf,
2407                                         "The --files-from sent to the server cannot specify a host.\n");
2408                                 return 0;
2409                         }
2410                         files_from = p;
2411                         filesfrom_host = h;
2412                         if (strcmp(files_from, "-") == 0) {
2413                                 snprintf(err_buf, sizeof err_buf,
2414                                         "Invalid --files-from remote filename\n");
2415                                 return 0;
2416                         }
2417                 } else {
2418                         if (sanitize_paths)
2419                                 files_from = sanitize_path(NULL, files_from, NULL, 0, SP_DEFAULT);
2420                         if (daemon_filter_list.head) {
2421                                 char *dir;
2422                                 if (!*files_from)
2423                                         goto options_rejected;
2424                                 dir = files_from + (*files_from == '/' ? module_dirlen : 0);
2425                                 clean_fname(dir, CFN_COLLAPSE_DOT_DOT_DIRS);
2426                                 if (check_filter(&daemon_filter_list, FLOG, dir, 0) < 0)
2427                                         goto options_rejected;
2428                         }
2429                         filesfrom_fd = open(files_from, O_RDONLY|O_BINARY);
2430                         if (filesfrom_fd < 0) {
2431                                 snprintf(err_buf, sizeof err_buf,
2432                                         "failed to open files-from file %s: %s\n",
2433                                         files_from, strerror(errno));
2434                                 return 0;
2435                         }
2436                 }
2437         }
2438
2439         am_starting_up = 0;
2440
2441         return 1;
2442
2443   options_rejected:
2444         snprintf(err_buf, sizeof err_buf,
2445                 "Your options have been rejected by the server.\n");
2446         return 0;
2447 }
2448
2449
2450 /**
2451  * Construct a filtered list of options to pass through from the
2452  * client to the server.
2453  *
2454  * This involves setting options that will tell the server how to
2455  * behave, and also filtering out options that are processed only
2456  * locally.
2457  **/
2458 void server_options(char **args, int *argc_p)
2459 {
2460         static char argstr[64];
2461         int ac = *argc_p;
2462         uchar where;
2463         char *arg;
2464         int i, x;
2465
2466         /* This should always remain first on the server's command-line. */
2467         args[ac++] = "--server";
2468
2469         if (!am_sender)
2470                 args[ac++] = "--sender";
2471
2472         x = 1;
2473         argstr[0] = '-';
2474
2475         if (protect_args)
2476                 argstr[x++] = 's';
2477
2478         for (i = 0; i < verbose; i++)
2479                 argstr[x++] = 'v';
2480
2481         if (quiet && msgs2stderr)
2482                 argstr[x++] = 'q';
2483         if (make_backups)
2484                 argstr[x++] = 'b';
2485         if (update_only)
2486                 argstr[x++] = 'u';
2487         if (!do_xfers) /* Note: NOT "dry_run"! */
2488                 argstr[x++] = 'n';
2489         if (preserve_links)
2490                 argstr[x++] = 'l';
2491         if ((xfer_dirs >= 2 && xfer_dirs < 4)
2492          || (xfer_dirs && !recurse && (list_only || (delete_mode && am_sender))))
2493                 argstr[x++] = 'd';
2494         if (am_sender) {
2495                 if (keep_dirlinks)
2496                         argstr[x++] = 'K';
2497                 if (prune_empty_dirs)
2498                         argstr[x++] = 'm';
2499                 if (omit_dir_times > 0)
2500                         argstr[x++] = 'O';
2501                 if (omit_link_times)
2502                         argstr[x++] = 'J';
2503                 if (fuzzy_basis) {
2504                         argstr[x++] = 'y';
2505                         if (fuzzy_basis > 1)
2506                                 argstr[x++] = 'y';
2507                 }
2508         } else {
2509                 if (copy_links)
2510                         argstr[x++] = 'L';
2511                 if (copy_dirlinks)
2512                         argstr[x++] = 'k';
2513         }
2514
2515         if (whole_file > 0)
2516                 argstr[x++] = 'W';
2517         /* We don't need to send --no-whole-file, because it's the
2518          * default for remote transfers, and in any case old versions
2519          * of rsync will not understand it. */
2520
2521         if (preserve_hard_links) {
2522                 argstr[x++] = 'H';
2523                 if (preserve_hard_links > 1)
2524                         argstr[x++] = 'H';
2525         }
2526         if (preserve_uid)
2527                 argstr[x++] = 'o';
2528         if (preserve_gid)
2529                 argstr[x++] = 'g';
2530         if (preserve_devices) /* ignore preserve_specials here */
2531                 argstr[x++] = 'D';
2532         if (preserve_mtimes)
2533                 argstr[x++] = 't';
2534         if (preserve_atimes) {
2535                 argstr[x++] = 'U';
2536                 if (preserve_atimes > 1)
2537                         argstr[x++] = 'U';
2538         }
2539 #ifdef SUPPORT_CRTIMES
2540         if (preserve_crtimes)
2541                 argstr[x++] = 'N';
2542 #endif
2543         if (preserve_perms)
2544                 argstr[x++] = 'p';
2545         else if (preserve_executability && am_sender)
2546                 argstr[x++] = 'E';
2547 #ifdef SUPPORT_ACLS
2548         if (preserve_acls)
2549                 argstr[x++] = 'A';
2550 #endif
2551 #ifdef SUPPORT_XATTRS
2552         if (preserve_xattrs) {
2553                 argstr[x++] = 'X';
2554                 if (preserve_xattrs > 1)
2555                         argstr[x++] = 'X';
2556         }
2557 #endif
2558         if (recurse)
2559                 argstr[x++] = 'r';
2560         if (always_checksum)
2561                 argstr[x++] = 'c';
2562         if (cvs_exclude)
2563                 argstr[x++] = 'C';
2564         if (ignore_times)
2565                 argstr[x++] = 'I';
2566         if (relative_paths)
2567                 argstr[x++] = 'R';
2568         if (one_file_system) {
2569                 argstr[x++] = 'x';
2570                 if (one_file_system > 1)
2571                         argstr[x++] = 'x';
2572         }
2573         if (sparse_files)
2574                 argstr[x++] = 'S';
2575         if (do_compression == CPRES_ZLIB)
2576                 argstr[x++] = 'z';
2577
2578         set_allow_inc_recurse();
2579
2580         /* This '\0'-terminates argstr and makes sure it didn't overflow. */
2581         x += maybe_add_e_option(argstr + x, (int)sizeof argstr - x);
2582
2583         if (x > 1)
2584                 args[ac++] = argstr;
2585
2586 #ifdef ICONV_OPTION
2587         if (iconv_opt) {
2588                 char *set = strchr(iconv_opt, ',');
2589                 if (set)
2590                         set++;
2591                 else
2592                         set = iconv_opt;
2593                 if (asprintf(&arg, "--iconv=%s", set) < 0)
2594                         goto oom;
2595                 args[ac++] = arg;
2596         }
2597 #endif
2598
2599         if (protect_args && !local_server) /* unprotected args stop here */
2600                 args[ac++] = NULL;
2601
2602         if (list_only > 1)
2603                 args[ac++] = "--list-only";
2604
2605         /* This makes sure that the remote rsync can handle deleting with -d
2606          * sans -r because the --no-r option was added at the same time. */
2607         if (xfer_dirs && !recurse && delete_mode && am_sender)
2608                 args[ac++] = "--no-r";
2609
2610         if (do_compression && do_compression_level != CLVL_NOT_SPECIFIED) {
2611                 if (asprintf(&arg, "--compress-level=%d", do_compression_level) < 0)
2612                         goto oom;
2613                 args[ac++] = arg;
2614         }
2615
2616         if (preserve_devices) {
2617                 /* Note: sending "--devices" would not be backward-compatible. */
2618                 if (!preserve_specials)
2619                         args[ac++] = "--no-specials"; /* -D is already set. */
2620         } else if (preserve_specials)
2621                 args[ac++] = "--specials";
2622
2623         /* The server side doesn't use our log-format, but in certain
2624          * circumstances they need to know a little about the option. */
2625         if (stdout_format && am_sender) {
2626                 /* Use --log-format, not --out-format, for compatibility. */
2627                 if (stdout_format_has_i > 1)
2628                         args[ac++] = "--log-format=%i%I";
2629                 else if (stdout_format_has_i)
2630                         args[ac++] = "--log-format=%i";
2631                 else if (stdout_format_has_o_or_i)
2632                         args[ac++] = "--log-format=%o";
2633                 else if (!verbose)
2634                         args[ac++] = "--log-format=X";
2635         }
2636
2637         if (msgs2stderr == 1)
2638                 args[ac++] = "--msgs2stderr";
2639         else if (msgs2stderr == 0)
2640                 args[ac++] = "--no-msgs2stderr";
2641
2642         if (block_size) {
2643                 if (asprintf(&arg, "-B%u", (int)block_size) < 0)
2644                         goto oom;
2645                 args[ac++] = arg;
2646         }
2647
2648         if (io_timeout) {
2649                 if (asprintf(&arg, "--timeout=%d", io_timeout) < 0)
2650                         goto oom;
2651                 args[ac++] = arg;
2652         }
2653
2654         if (bwlimit) {
2655                 if (asprintf(&arg, "--bwlimit=%d", bwlimit) < 0)
2656                         goto oom;
2657                 args[ac++] = arg;
2658         }
2659
2660         if (backup_dir) {
2661                 args[ac++] = "--backup-dir";
2662                 args[ac++] = backup_dir;
2663         }
2664
2665         /* Only send --suffix if it specifies a non-default value. */
2666         if (strcmp(backup_suffix, backup_dir ? "" : BACKUP_SUFFIX) != 0) {
2667                 /* We use the following syntax to avoid weirdness with '~'. */
2668                 if (asprintf(&arg, "--suffix=%s", backup_suffix) < 0)
2669                         goto oom;
2670                 args[ac++] = arg;
2671         }
2672
2673         if (checksum_choice) {
2674                 if (asprintf(&arg, "--checksum-choice=%s", checksum_choice) < 0)
2675                         goto oom;
2676                 args[ac++] = arg;
2677         }
2678
2679         if (do_compression == CPRES_ZLIBX)
2680                 args[ac++] = "--new-compress";
2681         else if (compress_choice && do_compression == CPRES_ZLIB)
2682                 args[ac++] = "--old-compress";
2683         else if (compress_choice) {
2684                 if (asprintf(&arg, "--compress-choice=%s", compress_choice) < 0)
2685                         goto oom;
2686                 args[ac++] = arg;
2687         }
2688
2689         if (am_sender) {
2690                 if (max_delete > 0) {
2691                         if (asprintf(&arg, "--max-delete=%d", max_delete) < 0)
2692                                 goto oom;
2693                         args[ac++] = arg;
2694                 } else if (max_delete == 0)
2695                         args[ac++] = "--max-delete=-1";
2696                 if (min_size >= 0) {
2697                         args[ac++] = "--min-size";
2698                         args[ac++] = min_size_arg;
2699                 }
2700                 if (max_size >= 0) {
2701                         args[ac++] = "--max-size";
2702                         args[ac++] = max_size_arg;
2703                 }
2704                 if (delete_before)
2705                         args[ac++] = "--delete-before";
2706                 else if (delete_during == 2)
2707                         args[ac++] = "--delete-delay";
2708                 else if (delete_during)
2709                         args[ac++] = "--delete-during";
2710                 else if (delete_after)
2711                         args[ac++] = "--delete-after";
2712                 else if (delete_mode && !delete_excluded)
2713                         args[ac++] = "--delete";
2714                 if (delete_excluded)
2715                         args[ac++] = "--delete-excluded";
2716                 if (force_delete)
2717                         args[ac++] = "--force";
2718                 if (write_batch < 0)
2719                         args[ac++] = "--only-write-batch=X";
2720                 if (am_root > 1)
2721                         args[ac++] = "--super";
2722                 if (size_only)
2723                         args[ac++] = "--size-only";
2724                 if (do_stats)
2725                         args[ac++] = "--stats";
2726         } else {
2727                 if (skip_compress) {
2728                         if (asprintf(&arg, "--skip-compress=%s", skip_compress) < 0)
2729                                 goto oom;
2730                         args[ac++] = arg;
2731                 }
2732         }
2733
2734         if (max_alloc_arg && max_alloc != DEFAULT_MAX_ALLOC) {
2735                 args[ac++] = "--max-alloc";
2736                 args[ac++] = max_alloc_arg;
2737         }
2738
2739         /* --delete-missing-args needs the cooperation of both sides, but
2740          * the sender can handle --ignore-missing-args by itself. */
2741         if (missing_args == 2)
2742                 args[ac++] = "--delete-missing-args";
2743         else if (missing_args == 1 && !am_sender)
2744                 args[ac++] = "--ignore-missing-args";
2745
2746         if (modify_window_set && am_sender) {
2747                 char *fmt = modify_window < 0 ? "-@%d" : "--modify-window=%d";
2748                 if (asprintf(&arg, fmt, modify_window) < 0)
2749                         goto oom;
2750                 args[ac++] = arg;
2751         }
2752
2753         if (checksum_seed) {
2754                 if (asprintf(&arg, "--checksum-seed=%d", checksum_seed) < 0)
2755                         goto oom;
2756                 args[ac++] = arg;
2757         }
2758
2759         if (partial_dir && am_sender) {
2760                 if (partial_dir != tmp_partialdir) {
2761                         args[ac++] = "--partial-dir";
2762                         args[ac++] = partial_dir;
2763                 }
2764                 if (delay_updates)
2765                         args[ac++] = "--delay-updates";
2766         } else if (keep_partial && am_sender)
2767                 args[ac++] = "--partial";
2768
2769         if (ignore_errors)
2770                 args[ac++] = "--ignore-errors";
2771
2772         if (copy_unsafe_links)
2773                 args[ac++] = "--copy-unsafe-links";
2774
2775         if (safe_symlinks)
2776                 args[ac++] = "--safe-links";
2777
2778         if (numeric_ids)
2779                 args[ac++] = "--numeric-ids";
2780
2781         if (use_qsort)
2782                 args[ac++] = "--use-qsort";
2783
2784         if (am_sender) {
2785                 if (usermap) {
2786                         if (asprintf(&arg, "--usermap=%s", usermap) < 0)
2787                                 goto oom;
2788                         args[ac++] = arg;
2789                 }
2790
2791                 if (groupmap) {
2792                         if (asprintf(&arg, "--groupmap=%s", groupmap) < 0)
2793                                 goto oom;
2794                         args[ac++] = arg;
2795                 }
2796
2797                 if (ignore_existing)
2798                         args[ac++] = "--ignore-existing";
2799
2800                 /* Backward compatibility: send --existing, not --ignore-non-existing. */
2801                 if (ignore_non_existing)
2802                         args[ac++] = "--existing";
2803
2804                 if (tmpdir) {
2805                         args[ac++] = "--temp-dir";
2806                         args[ac++] = tmpdir;
2807                 }
2808
2809                 if (do_fsync)
2810                         args[ac++] = "--fsync";
2811
2812                 if (basis_dir[0]) {
2813                         /* the server only needs this option if it is not the sender,
2814                          *   and it may be an older version that doesn't know this
2815                          *   option, so don't send it if client is the sender.
2816                          */
2817                         for (i = 0; i < basis_dir_cnt; i++) {
2818                                 args[ac++] = alt_dest_opt(0);
2819                                 args[ac++] = basis_dir[i];
2820                         }
2821                 }
2822         }
2823
2824         /* What flags do we need to send to the other side? */
2825         where = (am_server ? W_CLI : W_SRV) | (am_sender ? W_REC : W_SND);
2826         arg = make_output_option(info_words, info_levels, where);
2827         if (arg)
2828                 args[ac++] = arg;
2829
2830         if (append_mode) {
2831                 if (append_mode > 1)
2832                         args[ac++] = "--append";
2833                 args[ac++] = "--append";
2834         } else if (inplace) {
2835                 args[ac++] = "--inplace";
2836                 /* Work around a bug in older rsync versions (on the remote side) for --inplace --sparse */
2837                 if (sparse_files && !whole_file)
2838                         args[ac++] = "--no-W";
2839         }
2840
2841         if (files_from && (!am_sender || filesfrom_host)) {
2842                 if (filesfrom_host) {
2843                         args[ac++] = "--files-from";
2844                         args[ac++] = files_from;
2845                         if (eol_nulls)
2846                                 args[ac++] = "--from0";
2847                 } else {
2848                         args[ac++] = "--files-from=-";
2849                         args[ac++] = "--from0";
2850                 }
2851                 if (!relative_paths)
2852                         args[ac++] = "--no-relative";
2853         }
2854         /* It's OK that this checks the upper-bound of the protocol_version. */
2855         if (relative_paths && !implied_dirs && (!am_sender || protocol_version >= 30))
2856                 args[ac++] = "--no-implied-dirs";
2857
2858         if (write_devices && am_sender)
2859                 args[ac++] = "--write-devices";
2860
2861         if (remove_source_files == 1)
2862                 args[ac++] = "--remove-source-files";
2863         else if (remove_source_files)
2864                 args[ac++] = "--remove-sent-files";
2865
2866         if (preallocate_files && am_sender)
2867                 args[ac++] = "--preallocate";
2868
2869         if (open_noatime && preserve_atimes <= 1)
2870                 args[ac++] = "--open-noatime";
2871
2872         if (mkpath_dest_arg && am_sender)
2873                 args[ac++] = "--mkpath";
2874
2875         if (ac > MAX_SERVER_ARGS) { /* Not possible... */
2876                 rprintf(FERROR, "argc overflow in server_options().\n");
2877                 exit_cleanup(RERR_MALLOC);
2878         }
2879
2880         if (remote_option_cnt) {
2881                 int j;
2882                 if (ac + remote_option_cnt > MAX_SERVER_ARGS) {
2883                         rprintf(FERROR, "too many remote options specified.\n");
2884                         exit_cleanup(RERR_SYNTAX);
2885                 }
2886                 for (j = 1; j <= remote_option_cnt; j++)
2887                         args[ac++] = (char*)remote_options[j];
2888         }
2889
2890         *argc_p = ac;
2891         return;
2892
2893     oom:
2894         out_of_memory("server_options");
2895 }
2896
2897 int maybe_add_e_option(char *buf, int buf_len)
2898 {
2899         int x = 0;
2900
2901         /* We don't really know the actual protocol_version at this point,
2902          * but checking the pre-negotiated value allows the user to use a
2903          * --protocol=29 override to avoid the use of this -eFLAGS opt. */
2904         if (protocol_version >= 30 && buf_len > 0) {
2905                 /* We make use of the -e option to let the server know about
2906                  * any pre-release protocol version && some behavior flags. */
2907                 buf[x++] = 'e';
2908
2909 #if SUBPROTOCOL_VERSION != 0
2910                 if (protocol_version == PROTOCOL_VERSION)
2911                         x += snprintf(buf + x, buf_len - x, "%d.%d", PROTOCOL_VERSION, SUBPROTOCOL_VERSION);
2912                 else
2913 #endif
2914                         buf[x++] = '.';
2915                 if (allow_inc_recurse)
2916                         buf[x++] = 'i';
2917 #ifdef CAN_SET_SYMLINK_TIMES
2918                 buf[x++] = 'L'; /* symlink time-setting support */
2919 #endif
2920 #ifdef ICONV_OPTION
2921                 buf[x++] = 's'; /* symlink iconv translation support */
2922 #endif
2923                 buf[x++] = 'f'; /* flist I/O-error safety support */
2924                 buf[x++] = 'x'; /* xattr hardlink optimization not desired */
2925                 buf[x++] = 'C'; /* support checksum seed order fix */
2926                 buf[x++] = 'I'; /* support inplace_partial behavior */
2927                 buf[x++] = 'v'; /* use varint for flist & compat flags; negotiate checksum */
2928                 buf[x++] = 'u'; /* include name of uid 0 & gid 0 in the id map */
2929
2930                 /* NOTE: Avoid using 'V' -- it was represented with the high bit of a write_byte() that became a write_varint(). */
2931         }
2932
2933         if (x >= buf_len) { /* Not possible... */
2934                 rprintf(FERROR, "overflow in add_e_flags().\n");
2935                 exit_cleanup(RERR_MALLOC);
2936         }
2937
2938         buf[x] = '\0';
2939
2940         return x;
2941 }
2942
2943 /* If str points to a valid hostspec, return allocated memory containing the
2944  * [USER@]HOST part of the string, and set the path_start_ptr to the part of
2945  * the string after the host part.  Otherwise, return NULL.  If port_ptr is
2946  * non-NULL, we must be parsing an rsync:// URL hostname, and we will set
2947  * *port_ptr if a port number is found.  Note that IPv6 IPs will have their
2948  * (required for parsing) [ and ] chars elided from the returned string. */
2949 static char *parse_hostspec(char *str, char **path_start_ptr, int *port_ptr)
2950 {
2951         char *s, *host_start = str;
2952         int hostlen = 0, userlen = 0;
2953         char *ret;
2954
2955         for (s = str; ; s++) {
2956                 if (!*s) {
2957                         /* It is only OK if we run out of string with rsync:// */
2958                         if (!port_ptr)
2959                                 return NULL;
2960                         if (!hostlen)
2961                                 hostlen = s - host_start;
2962                         break;
2963                 }
2964                 if (*s == ':' || *s == '/') {
2965                         if (!hostlen)
2966                                 hostlen = s - host_start;
2967                         if (*s++ == '/') {
2968                                 if (!port_ptr)
2969                                         return NULL;
2970                         } else if (port_ptr) {
2971                                 *port_ptr = atoi(s);
2972                                 while (isDigit(s)) s++;
2973                                 if (*s && *s++ != '/')
2974                                         return NULL;
2975                         }
2976                         break;
2977                 }
2978                 if (*s == '@') {
2979                         userlen = s - str + 1;
2980                         host_start = s + 1;
2981                 } else if (*s == '[') {
2982                         if (s != host_start++)
2983                                 return NULL;
2984                         while (*s && *s != ']' && *s != '/') s++; /*SHARED ITERATOR*/
2985                         hostlen = s - host_start;
2986                         if (*s != ']' || (s[1] && s[1] != '/' && s[1] != ':') || !hostlen)
2987                                 return NULL;
2988                 }
2989         }
2990
2991         *path_start_ptr = s;
2992         ret = new_array(char, userlen + hostlen + 1);
2993         if (userlen)
2994                 strlcpy(ret, str, userlen + 1);
2995         strlcpy(ret + userlen, host_start, hostlen + 1);
2996         return ret;
2997 }
2998
2999 /* Look for a HOST specification of the form "HOST:PATH", "HOST::PATH", or
3000  * "rsync://HOST:PORT/PATH".  If found, *host_ptr will be set to some allocated
3001  * memory with the HOST.  If a daemon-accessing spec was specified, the value
3002  * of *port_ptr will contain a non-0 port number, otherwise it will be set to
3003  * 0.  The return value is a pointer to the PATH.  Note that the HOST spec can
3004  * be an IPv6 literal address enclosed in '[' and ']' (such as "[::1]" or
3005  * "[::ffff:127.0.0.1]") which is returned without the '[' and ']'. */
3006 char *check_for_hostspec(char *s, char **host_ptr, int *port_ptr)
3007 {
3008         char *path;
3009
3010         if (port_ptr && strncasecmp(URL_PREFIX, s, strlen(URL_PREFIX)) == 0) {
3011                 *host_ptr = parse_hostspec(s + strlen(URL_PREFIX), &path, port_ptr);
3012                 if (*host_ptr) {
3013                         if (!*port_ptr)
3014                                 *port_ptr = -1; /* -1 indicates they want the default */
3015                         return path;
3016                 }
3017         }
3018
3019         *host_ptr = parse_hostspec(s, &path, NULL);
3020         if (!*host_ptr)
3021                 return NULL;
3022
3023         if (*path == ':') {
3024                 if (port_ptr && !*port_ptr)
3025                         *port_ptr = -1;
3026                 return path + 1;
3027         }
3028         if (port_ptr)
3029                 *port_ptr = 0;
3030
3031         return path;
3032 }