When INET6 is not defined, meaning that IPv6 is not supported, need to
[rsync/rsync.git] / options.c
1 /*  -*- c-file-style: "linux" -*-
2     
3     Copyright (C) 1998-2001 by Andrew Tridgell <tridge@samba.org>
4     Copyright (C) 2000-2001 by Martin Pool <mbp@samba.org>
5    
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2 of the License, or
9    (at your option) any later version.
10    
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15    
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software
18    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
20
21 #include "rsync.h"
22 #include "popt.h"
23
24 int make_backups = 0;
25 int whole_file = 0;
26 int copy_links = 0;
27 int preserve_links = 0;
28 int preserve_hard_links = 0;
29 int preserve_perms = 0;
30 int preserve_devices = 0;
31 int preserve_uid = 0;
32 int preserve_gid = 0;
33 int preserve_times = 0;
34 int update_only = 0;
35 int cvs_exclude = 0;
36 int dry_run=0;
37 int local_server=0;
38 int ignore_times=0;
39 int delete_mode=0;
40 int delete_excluded=0;
41 int one_file_system=0;
42 int remote_version=0;
43 int sparse_files=0;
44 int do_compression=0;
45 int am_root=0;
46 int orig_umask=0;
47 int relative_paths=0;
48 int numeric_ids = 0;
49 int force_delete = 0;
50 int io_timeout = 0;
51 int io_error = 0;
52 int read_only = 0;
53 int module_id = -1;
54 int am_server = 0;
55 int am_sender = 0;
56 int recurse = 0;
57 int am_daemon=0;
58 int do_stats=0;
59 int do_progress=0;
60 int keep_partial=0;
61 int safe_symlinks=0;
62 int copy_unsafe_links=0;
63 int block_size=BLOCK_SIZE;
64 int size_only=0;
65 int bwlimit=0;
66 int delete_after=0;
67 int only_existing=0;
68 int max_delete=0;
69 int ignore_errors=0;
70 #ifdef _WIN32
71 int modify_window=2;
72 #else
73 int modify_window=0;
74 #endif
75 int blocking_io=0;
76
77 /** Global options set from command line. **/
78 struct global_opts global_opts = {
79 #ifdef INET6
80         0,                      /* af_hint -- allow any protocol */
81 #else
82         AF_INET,                /* af_hint -- prefer IPv4 */
83 #endif
84         0,                      /* no_detach */
85 };
86
87 int read_batch=0;  /* dw */
88 int write_batch=0; /* dw */
89
90 char *backup_suffix = BACKUP_SUFFIX;
91 char *tmpdir = NULL;
92 char *compare_dest = NULL;
93 char *config_file = RSYNCD_CONF;
94 char *shell_cmd = NULL;
95 char *log_format = NULL;
96 char *password_file = NULL;
97 char *rsync_path = RSYNC_PATH;
98 char *backup_dir = NULL;
99 int rsync_port = RSYNC_PORT;
100
101 int verbose = 0;
102 int quiet = 0;
103 int always_checksum = 0;
104 int list_only = 0;
105
106 char *batch_ext = NULL;
107
108 static int modify_window_set;
109
110 /** Local address to bind.  As a character string because it's
111  * interpreted by the IPv6 layer: should be a numeric IP4 or ip6
112  * address, or a hostname. **/
113 char *bind_address;
114
115
116 static void print_rsync_version(enum logcode f)
117 {
118         char const *got_socketpair = "no ";
119         char const *hardlinks = "no ";
120         char const *links = "no ";
121         char const *ipv6 = "no ";
122
123 #ifdef HAVE_SOCKETPAIR
124         got_socketpair = "";
125 #endif
126
127 #if SUPPORT_HARD_LINKS
128         hardlinks = "";
129 #endif
130
131 #if SUPPORT_LINKS
132         links = "";
133 #endif
134
135 #if INET6
136         ipv6 = "";
137 #endif       
138
139         rprintf(f, "%s  version %s  protocol version %d\n",
140                 RSYNC_NAME, RSYNC_VERSION, PROTOCOL_VERSION);
141         rprintf(f,
142                 "Copyright (C) 1996-2001 by Andrew Tridgell and others\n");
143         rprintf(f, "<http://rsync.samba.org/>\n");
144         rprintf(f, "Capabilities: %d-bit files, %ssocketpairs, "
145                 "%shard links, %ssymlinks, batchfiles, %sIPv6\n\n",
146                 (int) (sizeof(OFF_T) * 8),
147                 got_socketpair, hardlinks, links, ipv6);
148
149 #ifdef NO_INT64
150         rprintf(f, "WARNING: no 64-bit integers on this platform!\n");
151 #endif
152 }
153
154
155 void usage(enum logcode F)
156 {
157   print_rsync_version(F);
158
159   rprintf(F,"rsync is a file transfer program capable of efficient remote update\nvia a fast differencing algorithm.\n\n");
160
161   rprintf(F,"Usage: rsync [OPTION]... SRC [SRC]... [USER@]HOST:DEST\n");
162   rprintf(F,"  or   rsync [OPTION]... [USER@]HOST:SRC DEST\n");
163   rprintf(F,"  or   rsync [OPTION]... SRC [SRC]... DEST\n");
164   rprintf(F,"  or   rsync [OPTION]... [USER@]HOST::SRC [DEST]\n");
165   rprintf(F,"  or   rsync [OPTION]... SRC [SRC]... [USER@]HOST::DEST\n");
166   rprintf(F,"  or   rsync [OPTION]... rsync://[USER@]HOST[:PORT]/SRC [DEST]\n");
167   rprintf(F,"SRC on single-colon remote HOST will be expanded by remote shell\n");
168   rprintf(F,"SRC on server remote HOST may contain shell wildcards or multiple\n");
169   rprintf(F,"  sources separated by space as long as they have same top-level\n");
170   rprintf(F,"\nOptions\n");
171   rprintf(F," -v, --verbose               increase verbosity\n");
172   rprintf(F," -q, --quiet                 decrease verbosity\n");
173   rprintf(F," -c, --checksum              always checksum\n");
174   rprintf(F," -a, --archive               archive mode\n");
175   rprintf(F," -r, --recursive             recurse into directories\n");
176   rprintf(F," -R, --relative              use relative path names\n");
177   rprintf(F," -b, --backup                make backups (default %s suffix)\n",BACKUP_SUFFIX);
178   rprintf(F,"     --backup-dir            make backups into this directory\n");
179   rprintf(F,"     --suffix=SUFFIX         override backup suffix\n");  
180   rprintf(F," -u, --update                update only (don't overwrite newer files)\n");
181   rprintf(F," -l, --links                 preserve soft links\n");
182   rprintf(F," -L, --copy-links            treat soft links like regular files\n");
183   rprintf(F,"     --copy-unsafe-links     copy links outside the source tree\n");
184   rprintf(F,"     --safe-links            ignore links outside the destination tree\n");
185   rprintf(F," -H, --hard-links            preserve hard links\n");
186   rprintf(F," -p, --perms                 preserve permissions\n");
187   rprintf(F," -o, --owner                 preserve owner (root only)\n");
188   rprintf(F," -g, --group                 preserve group\n");
189   rprintf(F," -D, --devices               preserve devices (root only)\n");
190   rprintf(F," -t, --times                 preserve times\n");  
191   rprintf(F," -S, --sparse                handle sparse files efficiently\n");
192   rprintf(F," -n, --dry-run               show what would have been transferred\n");
193   rprintf(F," -W, --whole-file            copy whole files, no incremental checks\n");
194   rprintf(F," -x, --one-file-system       don't cross filesystem boundaries\n");
195   rprintf(F," -B, --block-size=SIZE       checksum blocking size (default %d)\n",BLOCK_SIZE);  
196   rprintf(F," -e, --rsh=COMMAND           specify rsh replacement\n");
197   rprintf(F,"     --rsync-path=PATH       specify path to rsync on the remote machine\n");
198   rprintf(F," -C, --cvs-exclude           auto ignore files in the same way CVS does\n");
199   rprintf(F,"     --existing              only update files that already exist\n");
200   rprintf(F,"     --delete                delete files that don't exist on the sending side\n");
201   rprintf(F,"     --delete-excluded       also delete excluded files on the receiving side\n");
202   rprintf(F,"     --delete-after          delete after transferring, not before\n");
203   rprintf(F,"     --ignore-errors         delete even if there are IO errors\n");
204   rprintf(F,"     --max-delete=NUM        don't delete more than NUM files\n");
205   rprintf(F,"     --partial               keep partially transferred files\n");
206   rprintf(F,"     --force                 force deletion of directories even if not empty\n");
207   rprintf(F,"     --numeric-ids           don't map uid/gid values by user/group name\n");
208   rprintf(F,"     --timeout=TIME          set IO timeout in seconds\n");
209   rprintf(F," -I, --ignore-times          don't exclude files that match length and time\n");
210   rprintf(F,"     --size-only             only use file size when determining if a file should be transferred\n");
211   rprintf(F,"     --modify-window=NUM     Timestamp window (seconds) for file match (default=%d)\n",modify_window);
212   rprintf(F," -T  --temp-dir=DIR          create temporary files in directory DIR\n");
213   rprintf(F,"     --compare-dest=DIR      also compare destination files relative to DIR\n");
214   rprintf(F," -P                          equivalent to --partial --progress\n");
215   rprintf(F," -z, --compress              compress file data\n");
216   rprintf(F,"     --exclude=PATTERN       exclude files matching PATTERN\n");
217   rprintf(F,"     --exclude-from=FILE     exclude patterns listed in FILE\n");
218   rprintf(F,"     --include=PATTERN       don't exclude files matching PATTERN\n");
219   rprintf(F,"     --include-from=FILE     don't exclude patterns listed in FILE\n");
220   rprintf(F,"     --version               print version number\n");  
221   rprintf(F,"     --daemon                run as a rsync daemon\n");  
222   rprintf(F,"     --no-detach             do not detach from the parent\n");  
223   rprintf(F,"     --address=ADDRESS       bind to the specified address\n");  
224   rprintf(F,"     --config=FILE           specify alternate rsyncd.conf file\n");  
225   rprintf(F,"     --port=PORT             specify alternate rsyncd port number\n");
226   rprintf(F,"     --blocking-io           use blocking IO for the remote shell\n");  
227   rprintf(F,"     --stats                 give some file transfer stats\n");  
228   rprintf(F,"     --progress              show progress during transfer\n");  
229   rprintf(F,"     --log-format=FORMAT     log file transfers using specified format\n");  
230   rprintf(F,"     --password-file=FILE    get password from FILE\n");
231   rprintf(F,"     --bwlimit=KBPS          limit I/O bandwidth, KBytes per second\n");
232   rprintf(F," -f  --read-batch=EXT        read batch file\n");
233   rprintf(F," -F  --write-batch           write batch file\n");
234   rprintf(F," -h, --help                  show this help screen\n");
235 #ifdef INET6
236   rprintf(F," -4                          prefer IPv4\n");
237   rprintf(F," -6                          prefer IPv6\n");
238 #endif
239
240   rprintf(F,"\n");
241
242   rprintf(F,"\nPlease see the rsync(1) and rsyncd.conf(5) man pages for full documentation\n");
243   rprintf(F,"See http://rsync.samba.org/ for updates, bug reports, and answers\n");
244 }
245
246 enum {OPT_VERSION = 1000, OPT_SUFFIX, OPT_SENDER, OPT_SERVER, OPT_EXCLUDE,
247       OPT_EXCLUDE_FROM, OPT_DELETE, OPT_DELETE_EXCLUDED, OPT_NUMERIC_IDS,
248       OPT_RSYNC_PATH, OPT_FORCE, OPT_TIMEOUT, OPT_DAEMON, OPT_CONFIG, OPT_PORT,
249       OPT_INCLUDE, OPT_INCLUDE_FROM, OPT_STATS, OPT_PARTIAL, OPT_PROGRESS,
250       OPT_COPY_UNSAFE_LINKS, OPT_SAFE_LINKS, OPT_COMPARE_DEST,
251       OPT_LOG_FORMAT, OPT_PASSWORD_FILE, OPT_SIZE_ONLY, OPT_ADDRESS,
252       OPT_DELETE_AFTER, OPT_EXISTING, OPT_MAX_DELETE, OPT_BACKUP_DIR, 
253       OPT_IGNORE_ERRORS, OPT_BWLIMIT, OPT_BLOCKING_IO,
254       OPT_MODIFY_WINDOW};
255
256 static struct poptOption long_options[] = {
257   /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */
258   {"version",          0,  POPT_ARG_NONE,   0,             OPT_VERSION},
259   {"suffix",           0,  POPT_ARG_STRING, &backup_suffix},
260   {"rsync-path",       0,  POPT_ARG_STRING, &rsync_path},
261   {"password-file",    0,  POPT_ARG_STRING, &password_file},
262   {"ignore-times",    'I', POPT_ARG_NONE,   &ignore_times},
263   {"size-only",        0,  POPT_ARG_NONE,   &size_only},
264   {"modify-window",    0,  POPT_ARG_INT,    &modify_window, OPT_MODIFY_WINDOW},
265   {"one-file-system", 'x', POPT_ARG_NONE,   &one_file_system},
266   {"delete",           0,  POPT_ARG_NONE,   &delete_mode},
267   {"existing",         0,  POPT_ARG_NONE,   &only_existing},
268   {"delete-after",     0,  POPT_ARG_NONE,   &delete_after},
269   {"delete-excluded",  0,  POPT_ARG_NONE,   0,              OPT_DELETE_EXCLUDED},
270   {"force",            0,  POPT_ARG_NONE,   &force_delete},
271   {"numeric-ids",      0,  POPT_ARG_NONE,   &numeric_ids},
272   {"exclude",          0,  POPT_ARG_STRING, 0,              OPT_EXCLUDE},
273   {"include",          0,  POPT_ARG_STRING, 0,              OPT_INCLUDE},
274   {"exclude-from",     0,  POPT_ARG_STRING, 0,              OPT_EXCLUDE_FROM},
275   {"include-from",     0,  POPT_ARG_STRING, 0,              OPT_INCLUDE_FROM},
276   {"safe-links",       0,  POPT_ARG_NONE,   &safe_symlinks},
277   {"help",            'h', POPT_ARG_NONE,   0,              'h'},
278   {"backup",          'b', POPT_ARG_NONE,   &make_backups},
279   {"dry-run",         'n', POPT_ARG_NONE,   &dry_run},
280   {"sparse",          'S', POPT_ARG_NONE,   &sparse_files},
281   {"cvs-exclude",     'C', POPT_ARG_NONE,   &cvs_exclude},
282   {"update",          'u', POPT_ARG_NONE,   &update_only},
283   {"links",           'l', POPT_ARG_NONE,   &preserve_links},
284   {"copy-links",      'L', POPT_ARG_NONE,   &copy_links},
285   {"whole",           'W', POPT_ARG_NONE,   &whole_file},
286   {"copy-unsafe-links", 0, POPT_ARG_NONE,   &copy_unsafe_links},
287   {"perms",           'p', POPT_ARG_NONE,   &preserve_perms},
288   {"owner",           'o', POPT_ARG_NONE,   &preserve_uid},
289   {"group",           'g', POPT_ARG_NONE,   &preserve_gid},
290   {"devices",         'D', POPT_ARG_NONE,   &preserve_devices},
291   {"times",           't', POPT_ARG_NONE,   &preserve_times},
292   {"checksum",        'c', POPT_ARG_NONE,   &always_checksum},
293   {"verbose",         'v', POPT_ARG_NONE,   0,               'v'},
294   {"quiet",           'q', POPT_ARG_NONE,   0,               'q'},
295   {"archive",         'a', POPT_ARG_NONE,   0,               'a'}, 
296   {"server",           0,  POPT_ARG_NONE,   &am_server},
297   {"sender",           0,  POPT_ARG_NONE,   0,               OPT_SENDER},
298   {"recursive",       'r', POPT_ARG_NONE,   &recurse},
299   {"relative",        'R', POPT_ARG_NONE,   &relative_paths},
300   {"rsh",             'e', POPT_ARG_STRING, &shell_cmd},
301   {"block-size",      'B', POPT_ARG_INT,    &block_size},
302   {"max-delete",       0,  POPT_ARG_INT,    &max_delete},
303   {"timeout",          0,  POPT_ARG_INT,    &io_timeout},
304   {"temp-dir",        'T', POPT_ARG_STRING, &tmpdir},
305   {"compare-dest",     0,  POPT_ARG_STRING, &compare_dest},
306   /* TODO: Should this take an optional int giving the compression level? */
307   {"compress",        'z', POPT_ARG_NONE,   &do_compression},
308   {"daemon",           0,  POPT_ARG_NONE,   &am_daemon},
309   {"no-detach",        0,  POPT_ARG_NONE,   &global_opts.no_detach},
310   {"stats",            0,  POPT_ARG_NONE,   &do_stats},
311   {"progress",         0,  POPT_ARG_NONE,   &do_progress},
312   {"partial",          0,  POPT_ARG_NONE,   &keep_partial},
313   {"ignore-errors",    0,  POPT_ARG_NONE,   &ignore_errors},
314   {"blocking-io",      0,  POPT_ARG_NONE,   &blocking_io},
315   {0,                 'P', POPT_ARG_NONE,   0,               'P'},
316   {"config",           0,  POPT_ARG_STRING, &config_file},
317   {"port",             0,  POPT_ARG_INT,    &rsync_port},
318   {"log-format",       0,  POPT_ARG_STRING, &log_format},
319   {"bwlimit",          0,  POPT_ARG_INT,    &bwlimit},
320   {"address",          0,  POPT_ARG_STRING, &bind_address, 0},
321   {"backup-dir",       0,  POPT_ARG_STRING, &backup_dir},
322   {"hard-links",      'H', POPT_ARG_NONE,   &preserve_hard_links},
323   {"read-batch",      'f', POPT_ARG_STRING, &batch_ext, 'f'},
324   {"write-batch",     'F', POPT_ARG_NONE,   &write_batch, 0},
325 #ifdef INET6
326   {0,                 '4', POPT_ARG_VAL,    &global_opts.af_hint,   AF_INET },
327   {0,                 '6', POPT_ARG_VAL,    &global_opts.af_hint,   AF_INET6 },
328 #endif
329   {0,0,0,0}
330 };
331
332
333 static char err_buf[100];
334
335
336 /* We store the option error message, if any, so that we can log the
337    connection attempt (which requires parsing the options), and then
338    show the error later on. */
339 void option_error(void)
340 {
341         if (err_buf[0]) {
342                 rprintf(FLOG, "%s", err_buf);
343                 rprintf(FERROR, "%s: %s", RSYNC_NAME, err_buf);
344         } else {
345                 rprintf (FERROR, "Error parsing options: "
346                          "option may be supported on client but not on server?\n");
347                 rprintf (FERROR, RSYNC_NAME ": Error parsing options: "
348                          "option may be supported on client but not on server?\n");
349         }
350 }
351
352 /* check to see if we should refuse this option */
353 static int check_refuse_options(char *ref, int opt)
354 {
355         int i, len;
356         char *p;
357         const char *name;
358
359         for (i=0; long_options[i].longName; i++) {
360                 if (long_options[i].val == opt) break;
361         }
362         
363         if (!long_options[i].longName) return 0;
364
365         name = long_options[i].longName;
366         len = strlen(name);
367
368         while ((p = strstr(ref,name))) {
369                 if ((p==ref || p[-1]==' ') &&
370                     (p[len] == ' ' || p[len] == 0)) {
371                         snprintf(err_buf,sizeof(err_buf),
372                                  "The '%s' option is not supported by this server\n", name);
373                         return 1;
374                 }
375                 ref += len;
376         }
377         return 0;
378 }
379
380
381 static int count_args(char const **argv)
382 {
383         int i = 0;
384
385         while (argv[i] != NULL)
386                 i++;
387         
388         return i;
389 }
390
391
392 /* Process command line arguments.  Called on both local and remote.
393  * Returns if all options are OK, otherwise fills in err_buf and
394  * returns 0. */
395 int parse_arguments(int *argc, const char ***argv, int frommain)
396 {
397         int opt;
398         char *ref = lp_refuse_options(module_id);
399         poptContext pc;
400
401         /* TODO: Call poptReadDefaultConfig; handle errors. */
402
403         /* The context leaks in case of an error, but if there's a
404          * problem we always exit anyhow. */
405         pc = poptGetContext(RSYNC_NAME, *argc, *argv, long_options, 0);
406
407         while ((opt = poptGetNextOpt(pc)) != -1) {
408                 if (ref) {
409                         if (check_refuse_options(ref, opt)) return 0;
410                 }
411
412                 /* most options are handled automatically by popt;
413                  * only special cases are returned and listed here. */
414
415                 switch (opt) {
416                 case OPT_VERSION:
417                         print_rsync_version(FINFO);
418                         exit_cleanup(0);
419                         
420                 case OPT_MODIFY_WINDOW:
421                         /* The value has already been set by popt, but
422                          * we need to remember that we're using a
423                          * non-default setting. */
424                         modify_window_set = 1;
425                         break;
426                         
427                 case OPT_DELETE_EXCLUDED:
428                         delete_excluded = 1;
429                         delete_mode = 1;
430                         break;
431
432                 case OPT_EXCLUDE:
433                         add_exclude(poptGetOptArg(pc), 0);
434                         break;
435
436                 case OPT_INCLUDE:
437                         add_exclude(poptGetOptArg(pc), 1);
438                         break;
439
440                 case OPT_EXCLUDE_FROM:
441                         add_exclude_file(poptGetOptArg(pc), 1, 0);
442                         break;
443
444                 case OPT_INCLUDE_FROM:
445                         add_exclude_file(poptGetOptArg(pc), 1, 1);
446                         break;
447
448                 case 'h':
449                         usage(FINFO);
450                         exit_cleanup(0);
451
452                 case 'H':
453 #if SUPPORT_HARD_LINKS
454                         preserve_hard_links=1;
455 #else
456                         /* FIXME: Don't say "server" if this is
457                          * happening on the client. */
458                         /* FIXME: Why do we have the duplicated
459                          * rprintf?  Everybody who gets this message
460                          * ought to send it to the client and also to
461                          * the logs. */
462                         snprintf(err_buf,sizeof(err_buf),
463                                  "hard links are not supported on this %s\n",
464                                  am_server ? "server" : "client");
465                         rprintf(FERROR,"ERROR: hard links not supported on this platform\n");
466                         return 0;
467 #endif /* SUPPORT_HARD_LINKS */
468                         break;
469
470                 case 'v':
471                         verbose++;
472                         break;
473
474                 case 'q':
475                         if (frommain) quiet++;
476                         break;
477
478                 case 'a':
479                         recurse=1;
480 #if SUPPORT_LINKS
481                         preserve_links=1;
482 #endif
483                         preserve_perms=1;
484                         preserve_times=1;
485                         preserve_gid=1;
486                         preserve_uid=1;
487                         preserve_devices=1;
488                         break;
489
490                 case OPT_SENDER:
491                         if (!am_server) {
492                                 usage(FERROR);
493                                 exit_cleanup(RERR_SYNTAX);
494                         }
495                         am_sender = 1;
496                         break;
497
498                 case 'P':
499                         do_progress = 1;
500                         keep_partial = 1;
501                         break;
502
503
504                 case 'f':
505                         /* The filename is stored for us by popt */
506                         read_batch = 1;
507                         break;
508
509                 default:
510                         /* FIXME: If --daemon is specified, then errors for later
511                          * parameters seem to disappear. */
512                         snprintf(err_buf, sizeof(err_buf),
513                                  "%s%s: %s\n",
514                                  am_server ? "on remote machine: " : "",
515                                  poptBadOption(pc, POPT_BADOPTION_NOALIAS),
516                                  poptStrerror(opt));
517                         return 0;
518                 }
519         }
520
521         *argv = poptGetArgs(pc);
522         if (*argv)
523                 *argc = count_args(*argv);
524         else
525                 *argc = 0;
526
527         return 1;
528 }
529
530
531 /* Construct a filtered list of options to pass through from the
532  * client to the server */
533 void server_options(char **args,int *argc)
534 {
535         int ac = *argc;
536         static char argstr[50];
537         static char bsize[30];
538         static char iotime[30];
539         static char mdelete[30];
540         static char mwindow[30];
541         static char bw[50];
542         static char fext[20]; /* dw */
543
544         int i, x;
545
546         args[ac++] = "--server";
547
548         if (!am_sender)
549                 args[ac++] = "--sender";
550
551         x = 1;
552         argstr[0] = '-';
553         for (i=0;i<verbose;i++)
554                 argstr[x++] = 'v';
555
556         /* the -q option is intentionally left out */
557         if (make_backups)
558                 argstr[x++] = 'b';
559         if (update_only)
560                 argstr[x++] = 'u';
561         if (dry_run)
562                 argstr[x++] = 'n';
563         if (preserve_links)
564                 argstr[x++] = 'l';
565         if (copy_links)
566                 argstr[x++] = 'L';
567         if (whole_file)
568                 argstr[x++] = 'W';
569         if (preserve_hard_links)
570                 argstr[x++] = 'H';
571         if (preserve_uid)
572                 argstr[x++] = 'o';
573         if (preserve_gid)
574                 argstr[x++] = 'g';
575         if (preserve_devices)
576                 argstr[x++] = 'D';
577         if (preserve_times)
578                 argstr[x++] = 't';
579         if (preserve_perms)
580                 argstr[x++] = 'p';
581         if (recurse)
582                 argstr[x++] = 'r';
583         if (always_checksum)
584                 argstr[x++] = 'c';
585         if (cvs_exclude)
586                 argstr[x++] = 'C';
587         if (ignore_times)
588                 argstr[x++] = 'I';
589         if (relative_paths)
590                 argstr[x++] = 'R';
591         if (one_file_system)
592                 argstr[x++] = 'x';
593         if (sparse_files)
594                 argstr[x++] = 'S';
595         if (do_compression)
596                 argstr[x++] = 'z';
597         if (write_batch)
598             argstr[x++] = 'F'; /* dw */
599
600         /* this is a complete hack - blame Rusty 
601
602            this is a hack to make the list_only (remote file list)
603            more useful */
604         if (list_only && !recurse) 
605                 argstr[x++] = 'r';
606
607         argstr[x] = 0;
608
609         if (x != 1) args[ac++] = argstr;
610
611         if (block_size != BLOCK_SIZE) {
612                 snprintf(bsize,sizeof(bsize),"-B%d",block_size);
613                 args[ac++] = bsize;
614         }    
615
616         if (max_delete && am_sender) {
617                 snprintf(mdelete,sizeof(mdelete),"--max-delete=%d",max_delete);
618                 args[ac++] = mdelete;
619         }    
620         
621         if (batch_ext != NULL) {
622                 sprintf(fext,"-f%s",batch_ext);
623                 args[ac++] = fext;
624         }
625
626         if (io_timeout) {
627                 snprintf(iotime,sizeof(iotime),"--timeout=%d",io_timeout);
628                 args[ac++] = iotime;
629         }    
630
631         if (bwlimit) {
632                 snprintf(bw,sizeof(bw),"--bwlimit=%d",bwlimit);
633                 args[ac++] = bw;
634         }
635
636         if (strcmp(backup_suffix, BACKUP_SUFFIX)) {
637                 args[ac++] = "--suffix";
638                 args[ac++] = backup_suffix;
639         }
640
641         if (delete_mode && !delete_excluded)
642                 args[ac++] = "--delete";
643
644         if (delete_excluded)
645                 args[ac++] = "--delete-excluded";
646
647         if (size_only)
648                 args[ac++] = "--size-only";
649
650         if (modify_window_set) {
651                 snprintf(mwindow,sizeof(mwindow),"--modify-window=%d",
652                          modify_window);
653                 args[ac++] = mwindow;
654         }
655
656         if (keep_partial)
657                 args[ac++] = "--partial";
658
659         if (force_delete)
660                 args[ac++] = "--force";
661
662         if (delete_after)
663                 args[ac++] = "--delete-after";
664
665         if (ignore_errors)
666                 args[ac++] = "--ignore-errors";
667
668         if (copy_unsafe_links)
669                 args[ac++] = "--copy-unsafe-links";
670
671         if (safe_symlinks)
672                 args[ac++] = "--safe-links";
673
674         if (numeric_ids)
675                 args[ac++] = "--numeric-ids";
676
677         if (only_existing && am_sender)
678                 args[ac++] = "--existing";
679
680         if (tmpdir) {
681                 args[ac++] = "--temp-dir";
682                 args[ac++] = tmpdir;
683         }
684
685         if (backup_dir && am_sender) {
686                 /* only the receiver needs this option, if we are the sender
687                  *   then we need to send it to the receiver.
688                  */
689                 args[ac++] = "--backup-dir";
690                 args[ac++] = backup_dir;
691         }
692
693         if (compare_dest && am_sender) {
694                 /* the server only needs this option if it is not the sender,
695                  *   and it may be an older version that doesn't know this
696                  *   option, so don't send it if client is the sender.
697                  */
698                 args[ac++] = "--compare-dest";
699                 args[ac++] = compare_dest;
700         }
701
702
703         *argc = ac;
704 }
705