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