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