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