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