Got rid of a newly-added trailing tab.
[rsync/rsync.git] / rsync.c
CommitLineData
7a2fd68b 1/*
c627d613
AT
2 Copyright (C) Andrew Tridgell 1996
3 Copyright (C) Paul Mackerras 1996
7a2fd68b 4
c627d613
AT
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
7a2fd68b 9
c627d613
AT
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
7a2fd68b 14
c627d613
AT
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18*/
19
2f03f956
AT
20/* this file contains code used by more than one part of the rsync
21 process */
c627d613 22
2f03f956 23#include "rsync.h"
c8563142 24#if defined HAVE_ICONV_OPEN && defined HAVE_ICONV_H
ceccbacc
WD
25#include <iconv.h>
26#endif
27#if defined HAVE_LIBCHARSET_H && defined HAVE_LOCALE_CHARSET
28#include <libcharset.h>
29#elif defined HAVE_LANGINFO_H && defined HAVE_NL_LANGINFO
30#include <langinfo.h>
31#endif
43a481dc 32
c627d613 33extern int verbose;
c627d613 34extern int dry_run;
8324bd5c 35extern int daemon_log_format_has_i;
9b499e95 36extern int preserve_perms;
81284832 37extern int preserve_executability;
2f03f956 38extern int preserve_times;
82471e68 39extern int omit_dir_times;
81284832 40extern int orig_umask;
7b8356d0 41extern int am_root;
794b0a03 42extern int am_server;
c3e5e585
WD
43extern int am_sender;
44extern int am_generator;
ed9d969c 45extern int am_starting_up;
2f03f956
AT
46extern int preserve_uid;
47extern int preserve_gid;
c786a7ae 48extern int inplace;
81b07870 49extern int keep_dirlinks;
2f03f956 50extern int make_backups;
c786a7ae 51extern struct stats stats;
fe055c71 52
595251de 53#if defined HAVE_ICONV_OPEN && defined HAVE_ICONV_H
ceccbacc
WD
54iconv_t ic_chck = (iconv_t)-1;
55
2a62f5ee 56static const char *default_charset(void)
ceccbacc
WD
57{
58#if defined HAVE_LIBCHARSET_H && defined HAVE_LOCALE_CHARSET
59 return locale_charset();
60#elif defined HAVE_LANGINFO_H && defined HAVE_NL_LANGINFO
7fc87d2d 61 return nl_langinfo(CODESET);
ceccbacc
WD
62#else
63 return ""; /* Works with (at the very least) gnu iconv... */
64#endif
65}
66
67void setup_iconv()
68{
7fc87d2d 69 const char *defset;
2d2f71fb 70
7fc87d2d
WD
71 if (!am_server)
72 return;
ceccbacc 73
7fc87d2d
WD
74 defset = default_charset();
75
76 /* It's OK if this fails... */
77 ic_chck = iconv_open(defset, defset);
78
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 }
ceccbacc
WD
90 }
91}
92#endif
fe055c71 93
c627d613
AT
94/*
95 free a sums struct
96 */
2f03f956 97void free_sums(struct sum_struct *s)
c627d613 98{
298c10d5
AT
99 if (s->sums) free(s->sums);
100 free(s);
c627d613
AT
101}
102
81284832
WD
103/* This is only called when we aren't preserving permissions. Figure out what
104 * the permissions should be and return them merged back into the mode. */
105mode_t dest_mode(mode_t flist_mode, mode_t dest_mode, int exists)
106{
9b499e95 107 /* If the file already exists, we'll return the local permissions,
81284832
WD
108 * possibly tweaked by the --executability option. */
109 if (exists) {
110 if (preserve_executability && S_ISREG(flist_mode)) {
111 /* If the source file is executable, grant execute
112 * rights to everyone who can read, but ONLY if the
113 * file isn't already executable. */
114 if (!(flist_mode & 0111))
115 dest_mode &= ~0111;
116 else if (!(dest_mode & 0111))
117 dest_mode |= (dest_mode & 0444) >> 2;
118 }
119 } else
9b499e95 120 dest_mode = flist_mode & ACCESSPERMS & ~orig_umask;
81284832
WD
121 return (flist_mode & ~CHMOD_BITS) | (dest_mode & CHMOD_BITS);
122}
123
36119f6e
WD
124int set_file_attrs(char *fname, struct file_struct *file, STRUCT_STAT *st,
125 int flags)
c627d613 126{
667e72a1
AT
127 int updated = 0;
128 STRUCT_STAT st2;
460f6b99 129 int change_uid, change_gid;
c627d613 130
667e72a1 131 if (!st) {
f227ffe4
WD
132 if (dry_run)
133 return 1;
373ef160 134 if (link_stat(fname, &st2, 0) < 0) {
d62bcc17
WD
135 rsyserr(FERROR, errno, "stat %s failed",
136 full_fname(fname));
667e72a1
AT
137 return 0;
138 }
139 st = &st2;
9b499e95
WD
140 if (!preserve_perms && S_ISDIR(file->mode)
141 && st->st_mode & S_ISGID) {
142 /* We just created this directory and its setgid
143 * bit is on, so make sure it stays on. */
144 file->mode |= S_ISGID;
145 }
667e72a1 146 }
c627d613 147
c8d34657 148 if (!preserve_times || (S_ISDIR(st->st_mode) && omit_dir_times))
36119f6e
WD
149 flags |= ATTRS_SKIP_MTIME;
150 if (!(flags & ATTRS_SKIP_MTIME)
4ecc9e6b 151 && cmp_modtime(st->st_mtime, file->modtime) != 0) {
c8d34657
WD
152 int ret = set_modtime(fname, file->modtime, st->st_mode);
153 if (ret < 0) {
d62bcc17
WD
154 rsyserr(FERROR, errno, "failed to set times on %s",
155 full_fname(fname));
667e72a1
AT
156 return 0;
157 }
c8d34657
WD
158 if (ret == 0) /* ret == 1 if symlink could not be set */
159 updated = 1;
667e72a1
AT
160 }
161
7b6fa00f
WD
162 change_uid = am_root && preserve_uid && st->st_uid != file->uid;
163 change_gid = preserve_gid && file->gid != GID_NONE
164 && st->st_gid != file->gid;
4f5b0756 165#if !defined HAVE_LCHOWN && !defined CHOWN_MODIFIES_SYMLINK
a41a1e87
WD
166 if (S_ISLNK(st->st_mode))
167 ;
168 else
169#endif
460f6b99 170 if (change_uid || change_gid) {
62c9e6b3 171 if (verbose > 2) {
ce37eb2d
WD
172 if (change_uid) {
173 rprintf(FINFO,
4875d6b6 174 "set uid of %s from %ld to %ld\n",
45c49b52 175 fname,
7b6fa00f 176 (long)st->st_uid, (long)file->uid);
ce37eb2d
WD
177 }
178 if (change_gid) {
179 rprintf(FINFO,
4875d6b6 180 "set gid of %s from %ld to %ld\n",
45c49b52 181 fname,
7b6fa00f 182 (long)st->st_gid, (long)file->gid);
ce37eb2d
WD
183 }
184 }
667e72a1 185 if (do_lchown(fname,
7b6fa00f
WD
186 change_uid ? file->uid : st->st_uid,
187 change_gid ? file->gid : st->st_gid) != 0) {
460f6b99 188 /* shouldn't have attempted to change uid or gid
a174e1ed 189 * unless have the privilege */
d62bcc17 190 rsyserr(FERROR, errno, "%s %s failed",
a174e1ed 191 change_uid ? "chown" : "chgrp",
d62bcc17 192 full_fname(fname));
460f6b99 193 return 0;
667e72a1 194 }
a5827a28 195 /* a lchown had been done - we have to re-stat if the
dd096ae0
WD
196 * destination had the setuid or setgid bits set due
197 * to the side effect of the chown call */
a5827a28 198 if (st->st_mode & (S_ISUID | S_ISGID)) {
81b07870
WD
199 link_stat(fname, st,
200 keep_dirlinks && S_ISDIR(st->st_mode));
a5827a28 201 }
460f6b99 202 updated = 1;
667e72a1 203 }
c627d613 204
4f5b0756 205#ifdef HAVE_CHMOD
c8d34657
WD
206 if ((st->st_mode & CHMOD_BITS) != (file->mode & CHMOD_BITS)) {
207 int ret = do_chmod(fname, file->mode);
208 if (ret < 0) {
209 rsyserr(FERROR, errno,
210 "failed to set permissions on %s",
211 full_fname(fname));
212 return 0;
667e72a1 213 }
c8d34657
WD
214 if (ret == 0) /* ret == 1 if symlink could not be set */
215 updated = 1;
667e72a1 216 }
c627d613 217#endif
6a7cc46c 218
36119f6e 219 if (verbose > 1 && flags & ATTRS_REPORT) {
8324bd5c
WD
220 enum logcode code = daemon_log_format_has_i || dry_run
221 ? FCLIENT : FINFO;
667e72a1 222 if (updated)
45c49b52 223 rprintf(code, "%s\n", fname);
667e72a1 224 else
45c49b52 225 rprintf(code, "%s is uptodate\n", fname);
667e72a1
AT
226 }
227 return updated;
c627d613
AT
228}
229
b8e9c234 230RETSIGTYPE sig_int(UNUSED(int val))
34ccb63e 231{
d5a0b483
WD
232 /* KLUGE: if the user hits Ctrl-C while ssh is prompting
233 * for a password, then our cleanup's sending of a SIGUSR1
234 * signal to all our children may kill ssh before it has a
235 * chance to restore the tty settings (i.e. turn echo back
236 * on). By sleeping for a short time, ssh gets a bigger
237 * chance to do the right thing. If child processes are
238 * not ssh waiting for a password, then this tiny delay
239 * shouldn't hurt anything. */
240 msleep(400);
65417579 241 exit_cleanup(RERR_SIGNAL);
c627d613
AT
242}
243
d8b1c923
WD
244/* Finish off a file transfer: renaming the file and setting the file's
245 * attributes (e.g. permissions, ownership, etc.). If partialptr is not
246 * NULL and the robust_rename() call is forced to copy the temp file, we
247 * stage the file into the partial-dir and then rename it into place. */
248void finish_transfer(char *fname, char *fnametmp, char *partialptr,
249 struct file_struct *file, int ok_to_set_time,
250 int overwriting_basis)
c95da96a 251{
62c9e6b3
WD
252 int ret;
253
a3221d2a
WD
254 if (inplace) {
255 if (verbose > 2)
45c49b52 256 rprintf(FINFO, "finishing %s\n", fname);
d8b1c923 257 fnametmp = fname;
36119f6e 258 goto do_set_file_attrs;
a3221d2a
WD
259 }
260
997d9ea6 261 if (make_backups && overwriting_basis && !make_backup(fname))
e484f0cc
WD
262 return;
263
ebeacb36 264 /* Change permissions before putting the file into place. */
36119f6e
WD
265 set_file_attrs(fnametmp, file, NULL,
266 ok_to_set_time ? 0 : ATTRS_SKIP_MTIME);
ebeacb36 267
c95da96a 268 /* move tmp file over real file */
45c49b52
WD
269 if (verbose > 2)
270 rprintf(FINFO, "renaming %s to %s\n", fnametmp, fname);
d8b1c923
WD
271 ret = robust_rename(fnametmp, fname, partialptr,
272 file->mode & INITACCESSPERMS);
3d061653 273 if (ret < 0) {
d62bcc17 274 rsyserr(FERROR, errno, "%s %s -> \"%s\"",
45c49b52
WD
275 ret == -2 ? "copy" : "rename",
276 full_fname(fnametmp), fname);
c7c11a0d 277 do_unlink(fnametmp);
077e59b7 278 return;
c95da96a 279 }
ebeacb36
WD
280 if (ret == 0) {
281 /* The file was moved into place (not copied), so it's done. */
282 return;
283 }
d8b1c923
WD
284 /* The file was copied, so tweak the perms of the copied file. If it
285 * was copied to partialptr, move it into its final destination. */
286 fnametmp = partialptr ? partialptr : fname;
287
36119f6e 288 do_set_file_attrs:
d8b1c923 289 set_file_attrs(fnametmp, file, NULL,
36119f6e 290 ok_to_set_time ? 0 : ATTRS_SKIP_MTIME);
d8b1c923
WD
291
292 if (partialptr) {
293 if (do_rename(fnametmp, fname) < 0) {
294 rsyserr(FERROR, errno, "rename %s -> \"%s\"",
295 full_fname(fnametmp), fname);
296 } else
297 handle_partial_dir(partialptr, PDIR_DELETE);
298 }
c95da96a 299}
c3e5e585
WD
300
301const char *who_am_i(void)
302{
ed9d969c 303 if (am_starting_up)
794b0a03 304 return am_server ? "server" : "client";
ebeacb36 305 return am_sender ? "sender" : am_generator ? "generator" : "receiver";
c3e5e585 306}