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