- Improved -s support.
[rsync/rsync.git] / rsync.c
... / ...
CommitLineData
1/*
2 * Routines common to more than one of the rsync processes.
3 *
4 * Copyright (C) 1996 Andrew Tridgell
5 * Copyright (C) 1996 Paul Mackerras
6 * Copyright (C) 2003-2007 Wayne Davison
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, visit the http://fsf.org website.
20 */
21
22#include "rsync.h"
23#if defined HAVE_LIBCHARSET_H && defined HAVE_LOCALE_CHARSET
24#include <libcharset.h>
25#elif defined HAVE_LANGINFO_H && defined HAVE_NL_LANGINFO
26#include <langinfo.h>
27#endif
28
29extern int verbose;
30extern int dry_run;
31extern int preserve_acls;
32extern int preserve_xattrs;
33extern int preserve_perms;
34extern int preserve_executability;
35extern int preserve_times;
36extern int am_root;
37extern int am_server;
38extern int am_sender;
39extern int am_generator;
40extern int am_starting_up;
41extern int allow_8bit_chars;
42extern int protocol_version;
43extern int uid_ndx;
44extern int gid_ndx;
45extern int inc_recurse;
46extern int inplace;
47extern int flist_eof;
48extern int keep_dirlinks;
49extern int make_backups;
50extern struct file_list *cur_flist, *first_flist, *dir_flist;
51extern struct chmod_mode_struct *daemon_chmod_modes;
52#ifdef ICONV_OPTION
53extern char *iconv_opt;
54#endif
55
56#ifdef ICONV_CONST
57iconv_t ic_chck = (iconv_t)-1;
58#ifdef ICONV_OPTION
59iconv_t ic_send = (iconv_t)-1, ic_recv = (iconv_t)-1;
60int ic_ndx;
61#endif
62
63static const char *default_charset(void)
64{
65#if defined HAVE_LIBCHARSET_H && defined HAVE_LOCALE_CHARSET
66 return locale_charset();
67#elif defined HAVE_LANGINFO_H && defined HAVE_NL_LANGINFO
68 return nl_langinfo(CODESET);
69#else
70 return ""; /* Works with (at the very least) gnu iconv... */
71#endif
72}
73
74void setup_iconv()
75{
76 const char *defset = default_charset();
77# ifdef ICONV_OPTION
78 const char *charset;
79 char *cp;
80#endif
81
82 if (!am_server && !allow_8bit_chars) {
83
84 /* It's OK if this fails... */
85 ic_chck = iconv_open(defset, defset);
86
87 if (verbose > 3) {
88 if (ic_chck == (iconv_t)-1) {
89 rprintf(FINFO,
90 "note: iconv_open(\"%s\", \"%s\") failed (%d)"
91 " -- using isprint() instead of iconv().\n",
92 defset, defset, errno);
93 } else {
94 rprintf(FINFO,
95 "note: iconv_open(\"%s\", \"%s\") succeeded.\n",
96 defset, defset);
97 }
98 }
99 }
100
101# ifdef ICONV_OPTION
102 if (!iconv_opt)
103 return;
104
105 if ((cp = strchr(iconv_opt, ',')) != NULL) {
106 if (am_server) /* A local transfer needs this. */
107 iconv_opt = cp + 1;
108 else
109 *cp = '\0';
110 }
111
112 if (!*iconv_opt || (*iconv_opt == '.' && iconv_opt[1] == '\0'))
113 charset = defset;
114 else
115 charset = iconv_opt;
116
117 if ((ic_send = iconv_open(UTF8_CHARSET, charset)) == (iconv_t)-1) {
118 rprintf(FERROR, "iconv_open(\"%s\", \"%s\") failed\n",
119 UTF8_CHARSET, charset);
120 exit_cleanup(RERR_UNSUPPORTED);
121 }
122
123 if ((ic_recv = iconv_open(charset, UTF8_CHARSET)) == (iconv_t)-1) {
124 rprintf(FERROR, "iconv_open(\"%s\", \"%s\") failed\n",
125 charset, UTF8_CHARSET);
126 exit_cleanup(RERR_UNSUPPORTED);
127 }
128
129 if (!am_sender || inc_recurse)
130 ic_ndx = ++file_extra_cnt;
131
132 if (verbose > 1) {
133 rprintf(FINFO, "%s charset: %s\n",
134 am_server ? "server" : "client",
135 *charset ? charset : "[LOCALE]");
136 }
137# endif
138}
139#endif
140
141int read_ndx_and_attrs(int f_in, int *iflag_ptr, uchar *type_ptr,
142 char *buf, int *len_ptr)
143{
144 int len, iflags = 0;
145 struct file_list *flist;
146 uchar fnamecmp_type = FNAMECMP_FNAME;
147 int ndx;
148
149 read_loop:
150 while (1) {
151 ndx = read_ndx(f_in);
152
153 if (ndx >= 0)
154 break;
155 if (ndx == NDX_DONE)
156 return ndx;
157 if (!inc_recurse || am_sender)
158 goto invalid_ndx;
159 if (ndx == NDX_FLIST_EOF) {
160 flist_eof = 1;
161 send_msg(MSG_FLIST_EOF, "", 0, 0);
162 continue;
163 }
164 ndx = NDX_FLIST_OFFSET - ndx;
165 if (ndx < 0 || ndx >= dir_flist->used) {
166 ndx = NDX_FLIST_OFFSET - ndx;
167 rprintf(FERROR,
168 "[%s] Invalid dir index: %d (%d - %d)\n",
169 who_am_i(), ndx, NDX_FLIST_OFFSET,
170 NDX_FLIST_OFFSET - dir_flist->used + 1);
171 exit_cleanup(RERR_PROTOCOL);
172 }
173
174 /* Send everything read from f_in to msg_fd_out. */
175 send_msg_int(MSG_FLIST, ndx);
176 start_flist_forward(f_in);
177 if (verbose > 3) {
178 rprintf(FINFO, "[%s] receiving flist for dir %d\n",
179 who_am_i(), ndx);
180 }
181 flist = recv_file_list(f_in);
182 flist->parent_ndx = ndx;
183 stop_flist_forward();
184 }
185
186 iflags = protocol_version >= 29 ? read_shortint(f_in)
187 : ITEM_TRANSFER | ITEM_MISSING_DATA;
188
189 /* Honor the old-style keep-alive indicator. */
190 if (protocol_version < 30
191 && ndx == cur_flist->used && iflags == ITEM_IS_NEW) {
192 if (am_sender)
193 maybe_send_keepalive();
194 goto read_loop;
195 }
196
197 if (!(flist = flist_for_ndx(ndx))) {
198 invalid_ndx:
199 rprintf(FERROR,
200 "Invalid file index: %d (%d - %d) with iflags %x [%s]\n",
201 ndx, first_flist->ndx_start - 1, first_flist->prev->ndx_end,
202 iflags, who_am_i());
203 exit_cleanup(RERR_PROTOCOL);
204 }
205 cur_flist = flist;
206
207 if (iflags & ITEM_BASIS_TYPE_FOLLOWS)
208 fnamecmp_type = read_byte(f_in);
209 *type_ptr = fnamecmp_type;
210
211 if (iflags & ITEM_XNAME_FOLLOWS) {
212 if ((len = read_vstring(f_in, buf, MAXPATHLEN)) < 0)
213 exit_cleanup(RERR_PROTOCOL);
214 } else {
215 *buf = '\0';
216 len = -1;
217 }
218 *len_ptr = len;
219
220 if (iflags & ITEM_TRANSFER) {
221 int i = ndx - cur_flist->ndx_start;
222 if (i < 0 || !S_ISREG(cur_flist->files[i]->mode)) {
223 rprintf(FERROR,
224 "received request to transfer non-regular file: %d [%s]\n",
225 ndx, who_am_i());
226 exit_cleanup(RERR_PROTOCOL);
227 }
228 }
229
230 *iflag_ptr = iflags;
231 return ndx;
232}
233
234/*
235 free a sums struct
236 */
237void free_sums(struct sum_struct *s)
238{
239 if (s->sums) free(s->sums);
240 free(s);
241}
242
243/* This is only called when we aren't preserving permissions. Figure out what
244 * the permissions should be and return them merged back into the mode. */
245mode_t dest_mode(mode_t flist_mode, mode_t stat_mode, int dflt_perms,
246 int exists)
247{
248 int new_mode;
249 /* If the file already exists, we'll return the local permissions,
250 * possibly tweaked by the --executability option. */
251 if (exists) {
252 new_mode = (flist_mode & ~CHMOD_BITS) | (stat_mode & CHMOD_BITS);
253 if (preserve_executability && S_ISREG(flist_mode)) {
254 /* If the source file is executable, grant execute
255 * rights to everyone who can read, but ONLY if the
256 * file isn't already executable. */
257 if (!(flist_mode & 0111))
258 new_mode &= ~0111;
259 else if (!(stat_mode & 0111))
260 new_mode |= (new_mode & 0444) >> 2;
261 }
262 } else {
263 /* Apply destination default permissions and turn
264 * off special permissions. */
265 new_mode = flist_mode & (~CHMOD_BITS | dflt_perms);
266 }
267 return new_mode;
268}
269
270int set_file_attrs(const char *fname, struct file_struct *file, statx *sxp,
271 const char *fnamecmp, int flags)
272{
273 int updated = 0;
274 statx sx2;
275 int change_uid, change_gid;
276 mode_t new_mode = file->mode;
277 int inherit;
278
279 if (!sxp) {
280 if (dry_run)
281 return 1;
282 if (link_stat(fname, &sx2.st, 0) < 0) {
283 rsyserr(FERROR, errno, "stat %s failed",
284 full_fname(fname));
285 return 0;
286 }
287#ifdef SUPPORT_ACLS
288 sx2.acc_acl = sx2.def_acl = NULL;
289#endif
290#ifdef SUPPORT_XATTRS
291 sx2.xattr = NULL;
292#endif
293 sxp = &sx2;
294 inherit = !preserve_perms;
295 } else
296 inherit = !preserve_perms && file->flags & FLAG_DIR_CREATED;
297
298 if (inherit && S_ISDIR(new_mode) && sxp->st.st_mode & S_ISGID) {
299 /* We just created this directory and its setgid
300 * bit is on, so make sure it stays on. */
301 new_mode |= S_ISGID;
302 }
303
304#ifdef SUPPORT_ACLS
305 if (preserve_acls && !S_ISLNK(file->mode) && !ACL_READY(*sxp))
306 get_acl(fname, sxp);
307#endif
308
309#ifdef SUPPORT_XATTRS
310 if (preserve_xattrs && fnamecmp)
311 set_xattr(fname, file, fnamecmp, sxp);
312 if (am_root < 0)
313 set_stat_xattr(fname, file);
314#endif
315
316 if (!preserve_times || (S_ISDIR(sxp->st.st_mode) && preserve_times == 1))
317 flags |= ATTRS_SKIP_MTIME;
318 if (!(flags & ATTRS_SKIP_MTIME)
319 && cmp_time(sxp->st.st_mtime, file->modtime) != 0) {
320 int ret = set_modtime(fname, file->modtime, sxp->st.st_mode);
321 if (ret < 0) {
322 rsyserr(FERROR, errno, "failed to set times on %s",
323 full_fname(fname));
324 goto cleanup;
325 }
326 if (ret == 0) /* ret == 1 if symlink could not be set */
327 updated = 1;
328 }
329
330 change_uid = am_root && uid_ndx && sxp->st.st_uid != (uid_t)F_OWNER(file);
331 change_gid = gid_ndx && !(file->flags & FLAG_SKIP_GROUP)
332 && sxp->st.st_gid != (gid_t)F_GROUP(file);
333#if !defined HAVE_LCHOWN && !defined CHOWN_MODIFIES_SYMLINK
334 if (S_ISLNK(sxp->st.st_mode))
335 ;
336 else
337#endif
338 if (change_uid || change_gid) {
339 if (verbose > 2) {
340 if (change_uid) {
341 rprintf(FINFO,
342 "set uid of %s from %u to %u\n",
343 fname, (unsigned)sxp->st.st_uid, F_OWNER(file));
344 }
345 if (change_gid) {
346 rprintf(FINFO,
347 "set gid of %s from %u to %u\n",
348 fname, (unsigned)sxp->st.st_gid, F_GROUP(file));
349 }
350 }
351 if (am_root < 0) {
352 ;
353 } else if (do_lchown(fname,
354 change_uid ? (uid_t)F_OWNER(file) : sxp->st.st_uid,
355 change_gid ? (gid_t)F_GROUP(file) : sxp->st.st_gid) != 0) {
356 /* shouldn't have attempted to change uid or gid
357 * unless have the privilege */
358 rsyserr(FERROR, errno, "%s %s failed",
359 change_uid ? "chown" : "chgrp",
360 full_fname(fname));
361 goto cleanup;
362 } else
363 /* a lchown had been done - we have to re-stat if the
364 * destination had the setuid or setgid bits set due
365 * to the side effect of the chown call */
366 if (sxp->st.st_mode & (S_ISUID | S_ISGID)) {
367 link_stat(fname, &sxp->st,
368 keep_dirlinks && S_ISDIR(sxp->st.st_mode));
369 }
370 updated = 1;
371 }
372
373 if (daemon_chmod_modes && !S_ISLNK(new_mode))
374 new_mode = tweak_mode(new_mode, daemon_chmod_modes);
375
376#ifdef SUPPORT_ACLS
377 /* It's OK to call set_acl() now, even for a dir, as the generator
378 * will enable owner-writability using chmod, if necessary.
379 *
380 * If set_acl() changes permission bits in the process of setting
381 * an access ACL, it changes sxp->st.st_mode so we know whether we
382 * need to chmod(). */
383 if (preserve_acls && !S_ISLNK(new_mode) && set_acl(fname, file, sxp) == 0)
384 updated = 1;
385#endif
386
387#ifdef HAVE_CHMOD
388 if (!BITS_EQUAL(sxp->st.st_mode, new_mode, CHMOD_BITS)) {
389 int ret = am_root < 0 ? 0 : do_chmod(fname, new_mode);
390 if (ret < 0) {
391 rsyserr(FERROR, errno,
392 "failed to set permissions on %s",
393 full_fname(fname));
394 goto cleanup;
395 }
396 if (ret == 0) /* ret == 1 if symlink could not be set */
397 updated = 1;
398 }
399#endif
400
401 if (verbose > 1 && flags & ATTRS_REPORT) {
402 if (updated)
403 rprintf(FCLIENT, "%s\n", fname);
404 else
405 rprintf(FCLIENT, "%s is uptodate\n", fname);
406 }
407 cleanup:
408 if (sxp == &sx2) {
409#ifdef SUPPORT_ACLS
410 if (preserve_acls)
411 free_acl(&sx2);
412#endif
413#ifdef SUPPORT_XATTRS
414 if (preserve_xattrs)
415 free_xattr(&sx2);
416#endif
417 }
418 return updated;
419}
420
421RETSIGTYPE sig_int(UNUSED(int val))
422{
423 /* KLUGE: if the user hits Ctrl-C while ssh is prompting
424 * for a password, then our cleanup's sending of a SIGUSR1
425 * signal to all our children may kill ssh before it has a
426 * chance to restore the tty settings (i.e. turn echo back
427 * on). By sleeping for a short time, ssh gets a bigger
428 * chance to do the right thing. If child processes are
429 * not ssh waiting for a password, then this tiny delay
430 * shouldn't hurt anything. */
431 msleep(400);
432 exit_cleanup(RERR_SIGNAL);
433}
434
435/* Finish off a file transfer: renaming the file and setting the file's
436 * attributes (e.g. permissions, ownership, etc.). If partialptr is not
437 * NULL and the robust_rename() call is forced to copy the temp file, we
438 * stage the file into the partial-dir and then rename it into place. */
439void finish_transfer(const char *fname, const char *fnametmp,
440 const char *fnamecmp, const char *partialptr,
441 struct file_struct *file, int ok_to_set_time,
442 int overwriting_basis)
443{
444 int ret;
445
446 if (inplace) {
447 if (verbose > 2)
448 rprintf(FINFO, "finishing %s\n", fname);
449 fnametmp = fname;
450 goto do_set_file_attrs;
451 }
452
453 if (make_backups > 0 && overwriting_basis && !make_backup(fname))
454 return;
455
456 /* Change permissions before putting the file into place. */
457 set_file_attrs(fnametmp, file, NULL, fnamecmp,
458 ok_to_set_time ? 0 : ATTRS_SKIP_MTIME);
459
460 /* move tmp file over real file */
461 if (verbose > 2)
462 rprintf(FINFO, "renaming %s to %s\n", fnametmp, fname);
463 ret = robust_rename(fnametmp, fname, partialptr,
464 file->mode & INITACCESSPERMS);
465 if (ret < 0) {
466 rsyserr(FERROR, errno, "%s %s -> \"%s\"",
467 ret == -2 ? "copy" : "rename",
468 full_fname(fnametmp), fname);
469 do_unlink(fnametmp);
470 return;
471 }
472 if (ret == 0) {
473 /* The file was moved into place (not copied), so it's done. */
474 return;
475 }
476 /* The file was copied, so tweak the perms of the copied file. If it
477 * was copied to partialptr, move it into its final destination. */
478 fnametmp = partialptr ? partialptr : fname;
479
480 do_set_file_attrs:
481 set_file_attrs(fnametmp, file, NULL, fnamecmp,
482 ok_to_set_time ? 0 : ATTRS_SKIP_MTIME);
483
484 if (partialptr) {
485 if (do_rename(fnametmp, fname) < 0) {
486 rsyserr(FERROR, errno, "rename %s -> \"%s\"",
487 full_fname(fnametmp), fname);
488 } else
489 handle_partial_dir(partialptr, PDIR_DELETE);
490 }
491}
492
493struct file_list *flist_for_ndx(int ndx)
494{
495 struct file_list *flist = cur_flist;
496
497 if (!flist && !(flist = first_flist))
498 return NULL;
499
500 while (ndx < flist->ndx_start-1) {
501 if (flist == first_flist)
502 return NULL;
503 flist = flist->prev;
504 }
505 while (ndx > flist->ndx_end) {
506 if (!(flist = flist->next))
507 return NULL;
508 }
509 return flist;
510}
511
512const char *who_am_i(void)
513{
514 if (am_starting_up)
515 return am_server ? "server" : "client";
516 return am_sender ? "sender" : am_generator ? "generator" : "receiver";
517}