2 Copyright (C) Andrew Tridgell 1998
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 /* options parsing code */
27 int preserve_links
= 0;
28 int preserve_hard_links
= 0;
29 int preserve_perms
= 0;
30 int preserve_devices
= 0;
33 int preserve_times
= 0;
40 int delete_excluded
=0;
41 int one_file_system
=0;
62 int copy_unsafe_links
=0;
63 int block_size
=BLOCK_SIZE
;
66 char *backup_suffix
= BACKUP_SUFFIX
;
68 char *compare_dest
= NULL
;
69 char *config_file
= RSYNCD_CONF
;
70 char *shell_cmd
= NULL
;
71 char *log_format
= NULL
;
72 char *password_file
= NULL
;
73 char *rsync_path
= RSYNC_NAME
;
74 int rsync_port
= RSYNC_PORT
;
78 int always_checksum
= 0;
81 struct in_addr socket_address
= {INADDR_ANY
};
85 rprintf(F
,"rsync version %s Copyright Andrew Tridgell and Paul Mackerras\n\n",
88 rprintf(F
,"rsync is a file transfer program capable of efficient remote update\nvia a fast differencing algorithm.\n\n");
90 rprintf(F
,"Usage: rsync [OPTION]... SRC [SRC]... [USER@]HOST:DEST\n");
91 rprintf(F
," or rsync [OPTION]... [USER@]HOST:SRC DEST\n");
92 rprintf(F
," or rsync [OPTION]... SRC [SRC]... DEST\n");
93 rprintf(F
," or rsync [OPTION]... [USER@]HOST::SRC [DEST]\n");
94 rprintf(F
," or rsync [OPTION]... SRC [SRC]... [USER@]HOST::DEST\n");
95 rprintf(F
," or rsync [OPTION]... rsync://[USER@]HOST[:PORT]/SRC [DEST]\n");
96 rprintf(F
,"SRC on single-colon remote HOST will be expanded by remote shell\n");
97 rprintf(F
,"SRC on server remote HOST may contain shell wildcards or multiple\n");
98 rprintf(F
," sources separated by space as long as they have same top-level\n");
99 rprintf(F
,"\nOptions\n");
100 rprintf(F
," -v, --verbose increase verbosity\n");
101 rprintf(F
," -q, --quiet decrease verbosity\n");
102 rprintf(F
," -c, --checksum always checksum\n");
103 rprintf(F
," -a, --archive archive mode\n");
104 rprintf(F
," -r, --recursive recurse into directories\n");
105 rprintf(F
," -R, --relative use relative path names\n");
106 rprintf(F
," -b, --backup make backups (default %s suffix)\n",BACKUP_SUFFIX
);
107 rprintf(F
," --suffix=SUFFIX override backup suffix\n");
108 rprintf(F
," -u, --update update only (don't overwrite newer files)\n");
109 rprintf(F
," -l, --links preserve soft links\n");
110 rprintf(F
," -L, --copy-links treat soft links like regular files\n");
111 rprintf(F
," --copy-unsafe-links copy links outside the source tree\n");
112 rprintf(F
," --safe-links ignore links outside the destination tree\n");
113 rprintf(F
," -H, --hard-links preserve hard links\n");
114 rprintf(F
," -p, --perms preserve permissions\n");
115 rprintf(F
," -o, --owner preserve owner (root only)\n");
116 rprintf(F
," -g, --group preserve group\n");
117 rprintf(F
," -D, --devices preserve devices (root only)\n");
118 rprintf(F
," -t, --times preserve times\n");
119 rprintf(F
," -S, --sparse handle sparse files efficiently\n");
120 rprintf(F
," -n, --dry-run show what would have been transferred\n");
121 rprintf(F
," -W, --whole-file copy whole files, no incremental checks\n");
122 rprintf(F
," -x, --one-file-system don't cross filesystem boundaries\n");
123 rprintf(F
," -B, --block-size=SIZE checksum blocking size (default %d)\n",BLOCK_SIZE
);
124 rprintf(F
," -e, --rsh=COMMAND specify rsh replacement\n");
125 rprintf(F
," --rsync-path=PATH specify path to rsync on the remote machine\n");
126 rprintf(F
," -C, --cvs-exclude auto ignore files in the same way CVS does\n");
127 rprintf(F
," --delete delete files that don't exist on the sending side\n");
128 rprintf(F
," --delete-excluded also delete excluded files on the receiving side\n");
129 rprintf(F
," --partial keep partially transferred files\n");
130 rprintf(F
," --force force deletion of directories even if not empty\n");
131 rprintf(F
," --numeric-ids don't map uid/gid values by user/group name\n");
132 rprintf(F
," --timeout=TIME set IO timeout in seconds\n");
133 rprintf(F
," -I, --ignore-times don't exclude files that match length and time\n");
134 rprintf(F
," --size-only only use file size when determining if a file should be transferred\n");
135 rprintf(F
," -T --temp-dir=DIR create temporary files in directory DIR\n");
136 rprintf(F
," --compare-dest=DIR also compare destination files relative to DIR\n");
137 rprintf(F
," -P equivalent to --partial --progress\n");
138 rprintf(F
," -z, --compress compress file data\n");
139 rprintf(F
," --exclude=PATTERN exclude files matching PATTERN\n");
140 rprintf(F
," --exclude-from=FILE exclude patterns listed in FILE\n");
141 rprintf(F
," --include=PATTERN don't exclude files matching PATTERN\n");
142 rprintf(F
," --include-from=FILE don't exclude patterns listed in FILE\n");
143 rprintf(F
," --version print version number\n");
144 rprintf(F
," --daemon run as a rsync daemon\n");
145 rprintf(F
," --address bind to the specified address\n");
146 rprintf(F
," --config=FILE specify alternate rsyncd.conf file\n");
147 rprintf(F
," --port=PORT specify alternate rsyncd port number\n");
148 rprintf(F
," --stats give some file transfer stats\n");
149 rprintf(F
," --progress show progress during transfer\n");
150 rprintf(F
," --log-format=FORMAT log file transfers using specified format\n");
151 rprintf(F
," --password-file=FILE get password from FILE\n");
152 rprintf(F
," -h, --help show this help screen\n");
156 rprintf(F
,"\nPlease see the rsync(1) and rsyncd.conf(5) man pages for full documentation\n");
157 rprintf(F
,"See http://rsync.samba.org/ for updates and bug reports\n");
160 enum {OPT_VERSION
, OPT_SUFFIX
, OPT_SENDER
, OPT_SERVER
, OPT_EXCLUDE
,
161 OPT_EXCLUDE_FROM
, OPT_DELETE
, OPT_DELETE_EXCLUDED
, OPT_NUMERIC_IDS
,
162 OPT_RSYNC_PATH
, OPT_FORCE
, OPT_TIMEOUT
, OPT_DAEMON
, OPT_CONFIG
, OPT_PORT
,
163 OPT_INCLUDE
, OPT_INCLUDE_FROM
, OPT_STATS
, OPT_PARTIAL
, OPT_PROGRESS
,
164 OPT_COPY_UNSAFE_LINKS
, OPT_SAFE_LINKS
, OPT_COMPARE_DEST
,
165 OPT_LOG_FORMAT
, OPT_PASSWORD_FILE
, OPT_SIZE_ONLY
, OPT_ADDRESS
};
167 static char *short_options
= "oblLWHpguDCtcahvqrRIxnSe:B:T:zP";
169 static struct option long_options
[] = {
170 {"version", 0, 0, OPT_VERSION
},
171 {"server", 0, 0, OPT_SERVER
},
172 {"sender", 0, 0, OPT_SENDER
},
173 {"delete", 0, 0, OPT_DELETE
},
174 {"delete-excluded", 0, 0, OPT_DELETE_EXCLUDED
},
175 {"force", 0, 0, OPT_FORCE
},
176 {"numeric-ids", 0, 0, OPT_NUMERIC_IDS
},
177 {"exclude", 1, 0, OPT_EXCLUDE
},
178 {"exclude-from",1, 0, OPT_EXCLUDE_FROM
},
179 {"include", 1, 0, OPT_INCLUDE
},
180 {"include-from",1, 0, OPT_INCLUDE_FROM
},
181 {"rsync-path", 1, 0, OPT_RSYNC_PATH
},
182 {"password-file", 1, 0, OPT_PASSWORD_FILE
},
183 {"one-file-system",0, 0, 'x'},
184 {"ignore-times",0, 0, 'I'},
185 {"size-only", 0, 0, OPT_SIZE_ONLY
},
187 {"dry-run", 0, 0, 'n'},
188 {"sparse", 0, 0, 'S'},
189 {"cvs-exclude", 0, 0, 'C'},
190 {"archive", 0, 0, 'a'},
191 {"checksum", 0, 0, 'c'},
192 {"backup", 0, 0, 'b'},
193 {"update", 0, 0, 'u'},
194 {"verbose", 0, 0, 'v'},
195 {"quiet", 0, 0, 'q'},
196 {"recursive", 0, 0, 'r'},
197 {"relative", 0, 0, 'R'},
198 {"devices", 0, 0, 'D'},
199 {"perms", 0, 0, 'p'},
200 {"links", 0, 0, 'l'},
201 {"copy-links", 0, 0, 'L'},
202 {"copy-unsafe-links", 0, 0, OPT_COPY_UNSAFE_LINKS
},
203 {"safe-links", 0, 0, OPT_SAFE_LINKS
},
204 {"whole-file", 0, 0, 'W'},
205 {"hard-links", 0, 0, 'H'},
206 {"owner", 0, 0, 'o'},
207 {"group", 0, 0, 'g'},
208 {"times", 0, 0, 't'},
210 {"suffix", 1, 0, OPT_SUFFIX
},
211 {"block-size", 1, 0, 'B'},
212 {"timeout", 1, 0, OPT_TIMEOUT
},
213 {"temp-dir", 1, 0, 'T'},
214 {"compare-dest", 1, 0, OPT_COMPARE_DEST
},
215 {"compress", 0, 0, 'z'},
216 {"daemon", 0, 0, OPT_DAEMON
},
217 {"stats", 0, 0, OPT_STATS
},
218 {"progress", 0, 0, OPT_PROGRESS
},
219 {"partial", 0, 0, OPT_PARTIAL
},
220 {"config", 1, 0, OPT_CONFIG
},
221 {"port", 1, 0, OPT_PORT
},
222 {"log-format", 1, 0, OPT_LOG_FORMAT
},
223 {"address", 1, 0, OPT_ADDRESS
},
227 static char err_buf
[100];
229 void option_error(void)
232 rprintf(FLOG
,"%s", err_buf
);
233 rprintf(FERROR
,"%s", err_buf
);
235 rprintf(FLOG
,"Error parsing options - unsupported option?\n");
236 rprintf(FERROR
,"Error parsing options - unsupported option?\n");
238 exit_cleanup(RERR_UNSUPPORTED
);
241 /* check to see if we should refuse this option */
242 static int check_refuse_options(char *ref
, int opt
)
248 for (i
=0; long_options
[i
].name
; i
++) {
249 if (long_options
[i
].val
== opt
) break;
252 if (!long_options
[i
].name
) return 0;
254 name
= long_options
[i
].name
;
257 while ((p
= strstr(ref
,name
))) {
258 if ((p
==ref
|| p
[-1]==' ') &&
259 (p
[len
] == ' ' || p
[len
] == 0)) {
260 slprintf(err_buf
,sizeof(err_buf
),
261 "The '%s' option is not supported by this server\n", name
);
270 int parse_arguments(int argc
, char *argv
[], int frommain
)
274 char *ref
= lp_refuse_options(module_id
);
276 while ((opt
= getopt_long(argc
, argv
,
277 short_options
, long_options
, &option_index
))
281 if (check_refuse_options(ref
, opt
)) return 0;
286 rprintf(FINFO
,"rsync version %s protocol version %d\n\n",
287 VERSION
,PROTOCOL_VERSION
);
288 rprintf(FINFO
,"Written by Andrew Tridgell and Paul Mackerras\n");
292 backup_suffix
= optarg
;
299 case OPT_PASSWORD_FILE
:
300 password_file
=optarg
;
319 case OPT_DELETE_EXCLUDED
:
328 case OPT_NUMERIC_IDS
:
333 add_exclude(optarg
, 0);
337 add_exclude(optarg
, 1);
340 case OPT_EXCLUDE_FROM
:
341 add_exclude_file(optarg
,1, 0);
344 case OPT_INCLUDE_FROM
:
345 add_exclude_file(optarg
,1, 1);
348 case OPT_COPY_UNSAFE_LINKS
:
393 #if SUPPORT_HARD_LINKS
394 preserve_hard_links
=1;
396 slprintf(err_buf
,sizeof(err_buf
),"hard links are not supported on this server\n");
397 rprintf(FERROR
,"ERROR: hard links not supported on this platform\n");
431 if (frommain
) quiet
++;
455 exit_cleanup(RERR_SYNTAX
);
473 block_size
= atoi(optarg
);
477 io_timeout
= atoi(optarg
);
484 case OPT_COMPARE_DEST
:
485 compare_dest
= optarg
;
514 config_file
= optarg
;
518 rsync_port
= atoi(optarg
);
528 if ((ia
= ip_address(optarg
))) {
529 socket_address
= *ia
;
535 slprintf(err_buf
,sizeof(err_buf
),"unrecognised option\n");
543 void server_options(char **args
,int *argc
)
546 static char argstr
[50];
547 static char bsize
[30];
548 static char iotime
[30];
551 args
[ac
++] = "--server";
554 args
[ac
++] = "--sender";
558 for (i
=0;i
<verbose
;i
++)
560 /* the -q option is intentionally left out */
573 if (preserve_hard_links
)
579 if (preserve_devices
)
603 if (x
!= 1) args
[ac
++] = argstr
;
605 if (block_size
!= BLOCK_SIZE
) {
606 sprintf(bsize
,"-B%d",block_size
);
611 sprintf(iotime
,"--timeout=%d",io_timeout
);
615 if (strcmp(backup_suffix
, BACKUP_SUFFIX
)) {
616 args
[ac
++] = "--suffix";
617 args
[ac
++] = backup_suffix
;
620 if (delete_mode
&& !delete_excluded
)
621 args
[ac
++] = "--delete";
624 args
[ac
++] = "--delete-excluded";
627 args
[ac
++] = "--size-only";
630 args
[ac
++] = "--partial";
633 args
[ac
++] = "--force";
635 if (copy_unsafe_links
)
636 args
[ac
++] = "--copy-unsafe-links";
639 args
[ac
++] = "--safe-links";
642 args
[ac
++] = "--numeric-ids";
645 args
[ac
++] = "--temp-dir";
649 if (compare_dest
&& am_sender
) {
650 /* the server only needs this option if it is not the sender,
651 * and it may be an older version that doesn't know this
652 * option, so don't send it if client is the sender.
654 args
[ac
++] = "--compare-dest";
655 args
[ac
++] = compare_dest
;