Changed HAVE_ICONV to HAVE_ICONV_OPEN.
[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#ifdef HAVE_ICONV_OPEN
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
79
80/*
81 free a sums struct
82 */
83void free_sums(struct sum_struct *s)
84{
85 if (s->sums) free(s->sums);
86 free(s);
87}
88
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{
93 /* If the file already exists, we'll return the local permissions,
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
106 dest_mode = flist_mode & ACCESSPERMS & ~orig_umask;
107 return (flist_mode & ~CHMOD_BITS) | (dest_mode & CHMOD_BITS);
108}
109
110int set_file_attrs(char *fname, struct file_struct *file, STRUCT_STAT *st,
111 int flags)
112{
113 int updated = 0;
114 STRUCT_STAT st2;
115 int change_uid, change_gid;
116
117 if (!st) {
118 if (dry_run)
119 return 1;
120 if (link_stat(fname, &st2, 0) < 0) {
121 rsyserr(FERROR, errno, "stat %s failed",
122 full_fname(fname));
123 return 0;
124 }
125 st = &st2;
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 }
132 }
133
134 if (!preserve_times || (S_ISDIR(st->st_mode) && omit_dir_times))
135 flags |= ATTRS_SKIP_MTIME;
136 if (!(flags & ATTRS_SKIP_MTIME)
137 && cmp_modtime(st->st_mtime, file->modtime) != 0) {
138 int ret = set_modtime(fname, file->modtime, st->st_mode);
139 if (ret < 0) {
140 rsyserr(FERROR, errno, "failed to set times on %s",
141 full_fname(fname));
142 return 0;
143 }
144 if (ret == 0) /* ret == 1 if symlink could not be set */
145 updated = 1;
146 }
147
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;
151#if !defined HAVE_LCHOWN && !defined CHOWN_MODIFIES_SYMLINK
152 if (S_ISLNK(st->st_mode))
153 ;
154 else
155#endif
156 if (change_uid || change_gid) {
157 if (verbose > 2) {
158 if (change_uid) {
159 rprintf(FINFO,
160 "set uid of %s from %ld to %ld\n",
161 fname,
162 (long)st->st_uid, (long)file->uid);
163 }
164 if (change_gid) {
165 rprintf(FINFO,
166 "set gid of %s from %ld to %ld\n",
167 fname,
168 (long)st->st_gid, (long)file->gid);
169 }
170 }
171 if (do_lchown(fname,
172 change_uid ? file->uid : st->st_uid,
173 change_gid ? file->gid : st->st_gid) != 0) {
174 /* shouldn't have attempted to change uid or gid
175 * unless have the privilege */
176 rsyserr(FERROR, errno, "%s %s failed",
177 change_uid ? "chown" : "chgrp",
178 full_fname(fname));
179 return 0;
180 }
181 /* a lchown had been done - we have to re-stat if the
182 * destination had the setuid or setgid bits set due
183 * to the side effect of the chown call */
184 if (st->st_mode & (S_ISUID | S_ISGID)) {
185 link_stat(fname, st,
186 keep_dirlinks && S_ISDIR(st->st_mode));
187 }
188 updated = 1;
189 }
190
191#ifdef HAVE_CHMOD
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;
199 }
200 if (ret == 0) /* ret == 1 if symlink could not be set */
201 updated = 1;
202 }
203#endif
204
205 if (verbose > 1 && flags & ATTRS_REPORT) {
206 enum logcode code = daemon_log_format_has_i || dry_run
207 ? FCLIENT : FINFO;
208 if (updated)
209 rprintf(code, "%s\n", fname);
210 else
211 rprintf(code, "%s is uptodate\n", fname);
212 }
213 return updated;
214}
215
216RETSIGTYPE sig_int(UNUSED(int val))
217{
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);
227 exit_cleanup(RERR_SIGNAL);
228}
229
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)
237{
238 int ret;
239
240 if (inplace) {
241 if (verbose > 2)
242 rprintf(FINFO, "finishing %s\n", fname);
243 fnametmp = fname;
244 goto do_set_file_attrs;
245 }
246
247 if (make_backups && overwriting_basis && !make_backup(fname))
248 return;
249
250 /* Change permissions before putting the file into place. */
251 set_file_attrs(fnametmp, file, NULL,
252 ok_to_set_time ? 0 : ATTRS_SKIP_MTIME);
253
254 /* move tmp file over real file */
255 if (verbose > 2)
256 rprintf(FINFO, "renaming %s to %s\n", fnametmp, fname);
257 ret = robust_rename(fnametmp, fname, partialptr,
258 file->mode & INITACCESSPERMS);
259 if (ret < 0) {
260 rsyserr(FERROR, errno, "%s %s -> \"%s\"",
261 ret == -2 ? "copy" : "rename",
262 full_fname(fnametmp), fname);
263 do_unlink(fnametmp);
264 return;
265 }
266 if (ret == 0) {
267 /* The file was moved into place (not copied), so it's done. */
268 return;
269 }
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
274 do_set_file_attrs:
275 set_file_attrs(fnametmp, file, NULL,
276 ok_to_set_time ? 0 : ATTRS_SKIP_MTIME);
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 }
285}
286
287const char *who_am_i(void)
288{
289 if (am_starting_up)
290 return am_server ? "server" : "client";
291 return am_sender ? "sender" : am_generator ? "generator" : "receiver";
292}