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