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