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