- Changed the check for iconv_open() to just iconv().
[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
25extern int verbose;
26extern int dry_run;
27extern int daemon_log_format_has_i;
28extern int preserve_perms;
29extern int preserve_executability;
30extern int preserve_times;
31extern int omit_dir_times;
32extern int orig_umask;
33extern int am_root;
34extern int am_server;
35extern int am_sender;
36extern int am_generator;
37extern int am_starting_up;
38extern int preserve_uid;
39extern int preserve_gid;
40extern int inplace;
41extern int keep_dirlinks;
42extern int make_backups;
43extern struct stats stats;
44
45
46/*
47 free a sums struct
48 */
49void free_sums(struct sum_struct *s)
50{
51 if (s->sums) free(s->sums);
52 free(s);
53}
54
55/* This is only called when we aren't preserving permissions. Figure out what
56 * the permissions should be and return them merged back into the mode. */
57mode_t dest_mode(mode_t flist_mode, mode_t dest_mode, int exists)
58{
59 /* If the file already exists, we'll return the local permissions,
60 * possibly tweaked by the --executability option. */
61 if (exists) {
62 if (preserve_executability && S_ISREG(flist_mode)) {
63 /* If the source file is executable, grant execute
64 * rights to everyone who can read, but ONLY if the
65 * file isn't already executable. */
66 if (!(flist_mode & 0111))
67 dest_mode &= ~0111;
68 else if (!(dest_mode & 0111))
69 dest_mode |= (dest_mode & 0444) >> 2;
70 }
71 } else
72 dest_mode = flist_mode & ACCESSPERMS & ~orig_umask;
73 return (flist_mode & ~CHMOD_BITS) | (dest_mode & CHMOD_BITS);
74}
75
76int set_file_attrs(char *fname, struct file_struct *file, STRUCT_STAT *st,
77 int flags)
78{
79 int updated = 0;
80 STRUCT_STAT st2;
81 int change_uid, change_gid;
82
83 if (!st) {
84 if (dry_run)
85 return 1;
86 if (link_stat(fname, &st2, 0) < 0) {
87 rsyserr(FERROR, errno, "stat %s failed",
88 full_fname(fname));
89 return 0;
90 }
91 st = &st2;
92 if (!preserve_perms && S_ISDIR(file->mode)
93 && st->st_mode & S_ISGID) {
94 /* We just created this directory and its setgid
95 * bit is on, so make sure it stays on. */
96 file->mode |= S_ISGID;
97 }
98 }
99
100 if (!preserve_times || (S_ISDIR(st->st_mode) && omit_dir_times))
101 flags |= ATTRS_SKIP_MTIME;
102 if (!(flags & ATTRS_SKIP_MTIME)
103 && cmp_modtime(st->st_mtime, file->modtime) != 0) {
104 int ret = set_modtime(fname, file->modtime, st->st_mode);
105 if (ret < 0) {
106 rsyserr(FERROR, errno, "failed to set times on %s",
107 full_fname(fname));
108 return 0;
109 }
110 if (ret == 0) /* ret == 1 if symlink could not be set */
111 updated = 1;
112 }
113
114 change_uid = am_root && preserve_uid && st->st_uid != file->uid;
115 change_gid = preserve_gid && file->gid != GID_NONE
116 && st->st_gid != file->gid;
117#if !defined HAVE_LCHOWN && !defined CHOWN_MODIFIES_SYMLINK
118 if (S_ISLNK(st->st_mode))
119 ;
120 else
121#endif
122 if (change_uid || change_gid) {
123 if (verbose > 2) {
124 if (change_uid) {
125 rprintf(FINFO,
126 "set uid of %s from %ld to %ld\n",
127 fname,
128 (long)st->st_uid, (long)file->uid);
129 }
130 if (change_gid) {
131 rprintf(FINFO,
132 "set gid of %s from %ld to %ld\n",
133 fname,
134 (long)st->st_gid, (long)file->gid);
135 }
136 }
137 if (do_lchown(fname,
138 change_uid ? file->uid : st->st_uid,
139 change_gid ? file->gid : st->st_gid) != 0) {
140 /* shouldn't have attempted to change uid or gid
141 * unless have the privilege */
142 rsyserr(FERROR, errno, "%s %s failed",
143 change_uid ? "chown" : "chgrp",
144 full_fname(fname));
145 return 0;
146 }
147 /* a lchown had been done - we have to re-stat if the
148 * destination had the setuid or setgid bits set due
149 * to the side effect of the chown call */
150 if (st->st_mode & (S_ISUID | S_ISGID)) {
151 link_stat(fname, st,
152 keep_dirlinks && S_ISDIR(st->st_mode));
153 }
154 updated = 1;
155 }
156
157#ifdef HAVE_CHMOD
158 if ((st->st_mode & CHMOD_BITS) != (file->mode & CHMOD_BITS)) {
159 int ret = do_chmod(fname, file->mode);
160 if (ret < 0) {
161 rsyserr(FERROR, errno,
162 "failed to set permissions on %s",
163 full_fname(fname));
164 return 0;
165 }
166 if (ret == 0) /* ret == 1 if symlink could not be set */
167 updated = 1;
168 }
169#endif
170
171 if (verbose > 1 && flags & ATTRS_REPORT) {
172 enum logcode code = daemon_log_format_has_i || dry_run
173 ? FCLIENT : FINFO;
174 if (updated)
175 rprintf(code, "%s\n", fname);
176 else
177 rprintf(code, "%s is uptodate\n", fname);
178 }
179 return updated;
180}
181
182RETSIGTYPE sig_int(UNUSED(int val))
183{
184 /* KLUGE: if the user hits Ctrl-C while ssh is prompting
185 * for a password, then our cleanup's sending of a SIGUSR1
186 * signal to all our children may kill ssh before it has a
187 * chance to restore the tty settings (i.e. turn echo back
188 * on). By sleeping for a short time, ssh gets a bigger
189 * chance to do the right thing. If child processes are
190 * not ssh waiting for a password, then this tiny delay
191 * shouldn't hurt anything. */
192 msleep(400);
193 exit_cleanup(RERR_SIGNAL);
194}
195
196/* Finish off a file transfer: renaming the file and setting the file's
197 * attributes (e.g. permissions, ownership, etc.). If partialptr is not
198 * NULL and the robust_rename() call is forced to copy the temp file, we
199 * stage the file into the partial-dir and then rename it into place. */
200void finish_transfer(char *fname, char *fnametmp, char *partialptr,
201 struct file_struct *file, int ok_to_set_time,
202 int overwriting_basis)
203{
204 int ret;
205
206 if (inplace) {
207 if (verbose > 2)
208 rprintf(FINFO, "finishing %s\n", fname);
209 fnametmp = fname;
210 goto do_set_file_attrs;
211 }
212
213 if (make_backups && overwriting_basis && !make_backup(fname))
214 return;
215
216 /* Change permissions before putting the file into place. */
217 set_file_attrs(fnametmp, file, NULL,
218 ok_to_set_time ? 0 : ATTRS_SKIP_MTIME);
219
220 /* move tmp file over real file */
221 if (verbose > 2)
222 rprintf(FINFO, "renaming %s to %s\n", fnametmp, fname);
223 ret = robust_rename(fnametmp, fname, partialptr,
224 file->mode & INITACCESSPERMS);
225 if (ret < 0) {
226 rsyserr(FERROR, errno, "%s %s -> \"%s\"",
227 ret == -2 ? "copy" : "rename",
228 full_fname(fnametmp), fname);
229 do_unlink(fnametmp);
230 return;
231 }
232 if (ret == 0) {
233 /* The file was moved into place (not copied), so it's done. */
234 return;
235 }
236 /* The file was copied, so tweak the perms of the copied file. If it
237 * was copied to partialptr, move it into its final destination. */
238 fnametmp = partialptr ? partialptr : fname;
239
240 do_set_file_attrs:
241 set_file_attrs(fnametmp, file, NULL,
242 ok_to_set_time ? 0 : ATTRS_SKIP_MTIME);
243
244 if (partialptr) {
245 if (do_rename(fnametmp, fname) < 0) {
246 rsyserr(FERROR, errno, "rename %s -> \"%s\"",
247 full_fname(fnametmp), fname);
248 } else
249 handle_partial_dir(partialptr, PDIR_DELETE);
250 }
251}
252
253const char *who_am_i(void)
254{
255 if (am_starting_up)
256 return am_server ? "server" : "client";
257 return am_sender ? "sender" : am_generator ? "generator" : "receiver";
258}