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