Change the format/order of the capabilities --version outputs.
[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
6 * Copyright (C) 2003, 2004, 2005, 2006 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 2 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 *
e7c67065
WD
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
0f78b815 21 */
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;
9b499e95 35extern int preserve_perms;
81284832 36extern int preserve_executability;
2f03f956 37extern int preserve_times;
82471e68 38extern int omit_dir_times;
7b8356d0 39extern int am_root;
794b0a03 40extern int am_server;
c3e5e585
WD
41extern int am_sender;
42extern int am_generator;
ed9d969c 43extern int am_starting_up;
e0f4a661 44extern int allow_8bit_chars;
2f03f956
AT
45extern int preserve_uid;
46extern int preserve_gid;
c786a7ae 47extern int inplace;
81b07870 48extern int keep_dirlinks;
2f03f956 49extern int make_backups;
c5b7aa15 50extern mode_t orig_umask;
c786a7ae 51extern struct stats stats;
94d3725c 52extern struct chmod_mode_struct *daemon_chmod_modes;
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. */
67f8a41b 103mode_t dest_mode(mode_t flist_mode, mode_t stat_mode, int exists)
81284832 104{
67f8a41b 105 int new_mode;
9b499e95 106 /* If the file already exists, we'll return the local permissions,
81284832
WD
107 * possibly tweaked by the --executability option. */
108 if (exists) {
67f8a41b 109 new_mode = (flist_mode & ~CHMOD_BITS) | (stat_mode & CHMOD_BITS);
81284832
WD
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))
67f8a41b
WD
115 new_mode &= ~0111;
116 else if (!(stat_mode & 0111))
117 new_mode |= (new_mode & 0444) >> 2;
81284832 118 }
67f8a41b
WD
119 } else {
120 /* Apply the umask and turn off special permissions. */
121 new_mode = flist_mode & (~CHMOD_BITS | (ACCESSPERMS & ~orig_umask));
122 }
67f8a41b 123 return new_mode;
81284832
WD
124}
125
36119f6e
WD
126int set_file_attrs(char *fname, struct file_struct *file, STRUCT_STAT *st,
127 int flags)
c627d613 128{
667e72a1
AT
129 int updated = 0;
130 STRUCT_STAT st2;
460f6b99 131 int change_uid, change_gid;
519d55a9 132 mode_t new_mode = file->mode;
c627d613 133
667e72a1 134 if (!st) {
f227ffe4
WD
135 if (dry_run)
136 return 1;
373ef160 137 if (link_stat(fname, &st2, 0) < 0) {
d62bcc17
WD
138 rsyserr(FERROR, errno, "stat %s failed",
139 full_fname(fname));
667e72a1
AT
140 return 0;
141 }
142 st = &st2;
519d55a9 143 if (!preserve_perms && S_ISDIR(new_mode)
9b499e95
WD
144 && st->st_mode & S_ISGID) {
145 /* We just created this directory and its setgid
146 * bit is on, so make sure it stays on. */
519d55a9 147 new_mode |= S_ISGID;
9b499e95 148 }
667e72a1 149 }
c627d613 150
c8d34657 151 if (!preserve_times || (S_ISDIR(st->st_mode) && omit_dir_times))
36119f6e
WD
152 flags |= ATTRS_SKIP_MTIME;
153 if (!(flags & ATTRS_SKIP_MTIME)
0f86c74e 154 && cmp_time(st->st_mtime, file->modtime) != 0) {
c8d34657
WD
155 int ret = set_modtime(fname, file->modtime, st->st_mode);
156 if (ret < 0) {
d62bcc17
WD
157 rsyserr(FERROR, errno, "failed to set times on %s",
158 full_fname(fname));
667e72a1
AT
159 return 0;
160 }
c8d34657
WD
161 if (ret == 0) /* ret == 1 if symlink could not be set */
162 updated = 1;
667e72a1
AT
163 }
164
7b6fa00f
WD
165 change_uid = am_root && preserve_uid && st->st_uid != file->uid;
166 change_gid = preserve_gid && file->gid != GID_NONE
167 && st->st_gid != file->gid;
4f5b0756 168#if !defined HAVE_LCHOWN && !defined CHOWN_MODIFIES_SYMLINK
a41a1e87
WD
169 if (S_ISLNK(st->st_mode))
170 ;
171 else
172#endif
460f6b99 173 if (change_uid || change_gid) {
62c9e6b3 174 if (verbose > 2) {
ce37eb2d
WD
175 if (change_uid) {
176 rprintf(FINFO,
4875d6b6 177 "set uid of %s from %ld to %ld\n",
45c49b52 178 fname,
7b6fa00f 179 (long)st->st_uid, (long)file->uid);
ce37eb2d
WD
180 }
181 if (change_gid) {
182 rprintf(FINFO,
4875d6b6 183 "set gid of %s from %ld to %ld\n",
45c49b52 184 fname,
7b6fa00f 185 (long)st->st_gid, (long)file->gid);
ce37eb2d
WD
186 }
187 }
667e72a1 188 if (do_lchown(fname,
7b6fa00f
WD
189 change_uid ? file->uid : st->st_uid,
190 change_gid ? file->gid : st->st_gid) != 0) {
460f6b99 191 /* shouldn't have attempted to change uid or gid
a174e1ed 192 * unless have the privilege */
d62bcc17 193 rsyserr(FERROR, errno, "%s %s failed",
a174e1ed 194 change_uid ? "chown" : "chgrp",
d62bcc17 195 full_fname(fname));
460f6b99 196 return 0;
667e72a1 197 }
a5827a28 198 /* a lchown had been done - we have to re-stat if the
dd096ae0
WD
199 * destination had the setuid or setgid bits set due
200 * to the side effect of the chown call */
a5827a28 201 if (st->st_mode & (S_ISUID | S_ISGID)) {
81b07870
WD
202 link_stat(fname, st,
203 keep_dirlinks && S_ISDIR(st->st_mode));
a5827a28 204 }
460f6b99 205 updated = 1;
667e72a1 206 }
c627d613 207
519d55a9
WD
208 if (daemon_chmod_modes && !S_ISLNK(new_mode))
209 new_mode = tweak_mode(new_mode, daemon_chmod_modes);
4f5b0756 210#ifdef HAVE_CHMOD
519d55a9
WD
211 if ((st->st_mode & CHMOD_BITS) != (new_mode & CHMOD_BITS)) {
212 int ret = do_chmod(fname, new_mode);
c8d34657
WD
213 if (ret < 0) {
214 rsyserr(FERROR, errno,
215 "failed to set permissions on %s",
216 full_fname(fname));
217 return 0;
667e72a1 218 }
c8d34657
WD
219 if (ret == 0) /* ret == 1 if symlink could not be set */
220 updated = 1;
667e72a1 221 }
c627d613 222#endif
6a7cc46c 223
36119f6e 224 if (verbose > 1 && flags & ATTRS_REPORT) {
667e72a1 225 if (updated)
1925c344 226 rprintf(FCLIENT, "%s\n", fname);
667e72a1 227 else
1925c344 228 rprintf(FCLIENT, "%s is uptodate\n", fname);
667e72a1
AT
229 }
230 return updated;
c627d613
AT
231}
232
b8e9c234 233RETSIGTYPE sig_int(UNUSED(int val))
34ccb63e 234{
d5a0b483
WD
235 /* KLUGE: if the user hits Ctrl-C while ssh is prompting
236 * for a password, then our cleanup's sending of a SIGUSR1
237 * signal to all our children may kill ssh before it has a
238 * chance to restore the tty settings (i.e. turn echo back
239 * on). By sleeping for a short time, ssh gets a bigger
240 * chance to do the right thing. If child processes are
241 * not ssh waiting for a password, then this tiny delay
242 * shouldn't hurt anything. */
243 msleep(400);
65417579 244 exit_cleanup(RERR_SIGNAL);
c627d613
AT
245}
246
d8b1c923
WD
247/* Finish off a file transfer: renaming the file and setting the file's
248 * attributes (e.g. permissions, ownership, etc.). If partialptr is not
249 * NULL and the robust_rename() call is forced to copy the temp file, we
250 * stage the file into the partial-dir and then rename it into place. */
251void finish_transfer(char *fname, char *fnametmp, char *partialptr,
252 struct file_struct *file, int ok_to_set_time,
253 int overwriting_basis)
c95da96a 254{
62c9e6b3
WD
255 int ret;
256
a3221d2a
WD
257 if (inplace) {
258 if (verbose > 2)
45c49b52 259 rprintf(FINFO, "finishing %s\n", fname);
d8b1c923 260 fnametmp = fname;
36119f6e 261 goto do_set_file_attrs;
a3221d2a
WD
262 }
263
997d9ea6 264 if (make_backups && overwriting_basis && !make_backup(fname))
e484f0cc
WD
265 return;
266
ebeacb36 267 /* Change permissions before putting the file into place. */
36119f6e
WD
268 set_file_attrs(fnametmp, file, NULL,
269 ok_to_set_time ? 0 : ATTRS_SKIP_MTIME);
ebeacb36 270
c95da96a 271 /* move tmp file over real file */
45c49b52
WD
272 if (verbose > 2)
273 rprintf(FINFO, "renaming %s to %s\n", fnametmp, fname);
d8b1c923
WD
274 ret = robust_rename(fnametmp, fname, partialptr,
275 file->mode & INITACCESSPERMS);
3d061653 276 if (ret < 0) {
d62bcc17 277 rsyserr(FERROR, errno, "%s %s -> \"%s\"",
45c49b52
WD
278 ret == -2 ? "copy" : "rename",
279 full_fname(fnametmp), fname);
c7c11a0d 280 do_unlink(fnametmp);
077e59b7 281 return;
c95da96a 282 }
ebeacb36
WD
283 if (ret == 0) {
284 /* The file was moved into place (not copied), so it's done. */
285 return;
286 }
d8b1c923
WD
287 /* The file was copied, so tweak the perms of the copied file. If it
288 * was copied to partialptr, move it into its final destination. */
289 fnametmp = partialptr ? partialptr : fname;
290
36119f6e 291 do_set_file_attrs:
d8b1c923 292 set_file_attrs(fnametmp, file, NULL,
36119f6e 293 ok_to_set_time ? 0 : ATTRS_SKIP_MTIME);
d8b1c923
WD
294
295 if (partialptr) {
296 if (do_rename(fnametmp, fname) < 0) {
297 rsyserr(FERROR, errno, "rename %s -> \"%s\"",
298 full_fname(fnametmp), fname);
299 } else
300 handle_partial_dir(partialptr, PDIR_DELETE);
301 }
c95da96a 302}
c3e5e585
WD
303
304const char *who_am_i(void)
305{
ed9d969c 306 if (am_starting_up)
794b0a03 307 return am_server ? "server" : "client";
ebeacb36 308 return am_sender ? "sender" : am_generator ? "generator" : "receiver";
c3e5e585 309}