- The iconv-supporting code can now ask filtered_fwrite() to use
[rsync/rsync.git] / rsync.c
... / ...
CommitLineData
1/*
2 Copyright (C) Andrew Tridgell 1996
3 Copyright (C) Paul Mackerras 1996
4
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.
9
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.
14
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
20/* this file contains code used by more than one part of the rsync
21 process */
22
23#include "rsync.h"
24#if defined HAVE_ICONV_OPEN && defined HAVE_ICONV_H
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
32
33extern int verbose;
34extern int dry_run;
35extern int daemon_log_format_has_i;
36extern int preserve_perms;
37extern int preserve_executability;
38extern int preserve_times;
39extern int omit_dir_times;
40extern int orig_umask;
41extern int am_root;
42extern int am_server;
43extern int am_sender;
44extern int am_generator;
45extern int am_starting_up;
46extern int preserve_uid;
47extern int preserve_gid;
48extern int inplace;
49extern int keep_dirlinks;
50extern int make_backups;
51extern struct stats stats;
52
53#if defined HAVE_ICONV_OPEN && defined HAVE_ICONV_H
54iconv_t ic_chck = (iconv_t)-1;
55
56static const 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 const char *def = nl_langinfo(CODESET);
62 if (strcmp(def, "646") == 0) /* Solaris brain-damage */
63 return "ASCII";
64 return def;
65#else
66 return ""; /* Works with (at the very least) gnu iconv... */
67#endif
68}
69
70void setup_iconv()
71{
72 const 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
82
83/*
84 free a sums struct
85 */
86void free_sums(struct sum_struct *s)
87{
88 if (s->sums) free(s->sums);
89 free(s);
90}
91
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{
96 /* If the file already exists, we'll return the local permissions,
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
109 dest_mode = flist_mode & ACCESSPERMS & ~orig_umask;
110 return (flist_mode & ~CHMOD_BITS) | (dest_mode & CHMOD_BITS);
111}
112
113int set_file_attrs(char *fname, struct file_struct *file, STRUCT_STAT *st,
114 int flags)
115{
116 int updated = 0;
117 STRUCT_STAT st2;
118 int change_uid, change_gid;
119
120 if (!st) {
121 if (dry_run)
122 return 1;
123 if (link_stat(fname, &st2, 0) < 0) {
124 rsyserr(FERROR, errno, "stat %s failed",
125 full_fname(fname));
126 return 0;
127 }
128 st = &st2;
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 }
135 }
136
137 if (!preserve_times || (S_ISDIR(st->st_mode) && omit_dir_times))
138 flags |= ATTRS_SKIP_MTIME;
139 if (!(flags & ATTRS_SKIP_MTIME)
140 && cmp_modtime(st->st_mtime, file->modtime) != 0) {
141 int ret = set_modtime(fname, file->modtime, st->st_mode);
142 if (ret < 0) {
143 rsyserr(FERROR, errno, "failed to set times on %s",
144 full_fname(fname));
145 return 0;
146 }
147 if (ret == 0) /* ret == 1 if symlink could not be set */
148 updated = 1;
149 }
150
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;
154#if !defined HAVE_LCHOWN && !defined CHOWN_MODIFIES_SYMLINK
155 if (S_ISLNK(st->st_mode))
156 ;
157 else
158#endif
159 if (change_uid || change_gid) {
160 if (verbose > 2) {
161 if (change_uid) {
162 rprintf(FINFO,
163 "set uid of %s from %ld to %ld\n",
164 fname,
165 (long)st->st_uid, (long)file->uid);
166 }
167 if (change_gid) {
168 rprintf(FINFO,
169 "set gid of %s from %ld to %ld\n",
170 fname,
171 (long)st->st_gid, (long)file->gid);
172 }
173 }
174 if (do_lchown(fname,
175 change_uid ? file->uid : st->st_uid,
176 change_gid ? file->gid : st->st_gid) != 0) {
177 /* shouldn't have attempted to change uid or gid
178 * unless have the privilege */
179 rsyserr(FERROR, errno, "%s %s failed",
180 change_uid ? "chown" : "chgrp",
181 full_fname(fname));
182 return 0;
183 }
184 /* a lchown had been done - we have to re-stat if the
185 * destination had the setuid or setgid bits set due
186 * to the side effect of the chown call */
187 if (st->st_mode & (S_ISUID | S_ISGID)) {
188 link_stat(fname, st,
189 keep_dirlinks && S_ISDIR(st->st_mode));
190 }
191 updated = 1;
192 }
193
194#ifdef HAVE_CHMOD
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;
202 }
203 if (ret == 0) /* ret == 1 if symlink could not be set */
204 updated = 1;
205 }
206#endif
207
208 if (verbose > 1 && flags & ATTRS_REPORT) {
209 enum logcode code = daemon_log_format_has_i || dry_run
210 ? FCLIENT : FINFO;
211 if (updated)
212 rprintf(code, "%s\n", fname);
213 else
214 rprintf(code, "%s is uptodate\n", fname);
215 }
216 return updated;
217}
218
219RETSIGTYPE sig_int(UNUSED(int val))
220{
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);
230 exit_cleanup(RERR_SIGNAL);
231}
232
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)
240{
241 int ret;
242
243 if (inplace) {
244 if (verbose > 2)
245 rprintf(FINFO, "finishing %s\n", fname);
246 fnametmp = fname;
247 goto do_set_file_attrs;
248 }
249
250 if (make_backups && overwriting_basis && !make_backup(fname))
251 return;
252
253 /* Change permissions before putting the file into place. */
254 set_file_attrs(fnametmp, file, NULL,
255 ok_to_set_time ? 0 : ATTRS_SKIP_MTIME);
256
257 /* move tmp file over real file */
258 if (verbose > 2)
259 rprintf(FINFO, "renaming %s to %s\n", fnametmp, fname);
260 ret = robust_rename(fnametmp, fname, partialptr,
261 file->mode & INITACCESSPERMS);
262 if (ret < 0) {
263 rsyserr(FERROR, errno, "%s %s -> \"%s\"",
264 ret == -2 ? "copy" : "rename",
265 full_fname(fnametmp), fname);
266 do_unlink(fnametmp);
267 return;
268 }
269 if (ret == 0) {
270 /* The file was moved into place (not copied), so it's done. */
271 return;
272 }
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
277 do_set_file_attrs:
278 set_file_attrs(fnametmp, file, NULL,
279 ok_to_set_time ? 0 : ATTRS_SKIP_MTIME);
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 }
288}
289
290const char *who_am_i(void)
291{
292 if (am_starting_up)
293 return am_server ? "server" : "client";
294 return am_sender ? "sender" : am_generator ? "generator" : "receiver";
295}