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