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