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