Use the renamed stdout_format_has_i variable.
[rsync/rsync.git] / rsync.c
1 /*
2  * Routines common to more than one of the rsync processes.
3  *
4  * Copyright (C) 1996 Andrew Tridgell
5  * Copyright (C) 1996 Paul Mackerras
6  * Copyright (C) 2003, 2004, 2005, 2006 Wayne Davison
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License along
19  * with this program; if not, write to the Free Software Foundation, Inc.,
20  * 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
21  */
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
33 extern int verbose;
34 extern int dry_run;
35 extern int logfile_format_has_i;
36 extern int preserve_perms;
37 extern int preserve_executability;
38 extern int preserve_times;
39 extern int omit_dir_times;
40 extern int am_root;
41 extern int am_server;
42 extern int am_sender;
43 extern int am_generator;
44 extern int am_starting_up;
45 extern int allow_8bit_chars;
46 extern int preserve_uid;
47 extern int preserve_gid;
48 extern int inplace;
49 extern int keep_dirlinks;
50 extern int make_backups;
51 extern mode_t orig_umask;
52 extern struct stats stats;
53 extern struct chmod_mode_struct *daemon_chmod_modes;
54
55 #if defined HAVE_ICONV_OPEN && defined HAVE_ICONV_H
56 iconv_t ic_chck = (iconv_t)-1;
57
58 static const char *default_charset(void)
59 {
60 #if defined HAVE_LIBCHARSET_H && defined HAVE_LOCALE_CHARSET
61         return locale_charset();
62 #elif defined HAVE_LANGINFO_H && defined HAVE_NL_LANGINFO
63         return nl_langinfo(CODESET);
64 #else
65         return ""; /* Works with (at the very least) gnu iconv... */
66 #endif
67 }
68
69 void setup_iconv()
70 {
71         if (!am_server && !allow_8bit_chars) {
72                 const char *defset = default_charset();
73
74                 /* It's OK if this fails... */
75                 ic_chck = iconv_open(defset, defset);
76
77                 if (verbose > 3) {
78                         if (ic_chck == (iconv_t)-1) {
79                                 rprintf(FINFO,
80                                         "note: iconv_open(\"%s\", \"%s\") failed (%d)"
81                                         " -- using isprint() instead of iconv().\n",
82                                         defset, defset, errno);
83                         } else {
84                                 rprintf(FINFO,
85                                         "note: iconv_open(\"%s\", \"%s\") succeeded.\n",
86                                         defset, defset);
87                         }
88                 }
89         }
90 }
91 #endif
92
93 /*
94   free a sums struct
95   */
96 void free_sums(struct sum_struct *s)
97 {
98         if (s->sums) free(s->sums);
99         free(s);
100 }
101
102 /* This is only called when we aren't preserving permissions.  Figure out what
103  * the permissions should be and return them merged back into the mode. */
104 mode_t dest_mode(mode_t flist_mode, mode_t cur_mode, int exists)
105 {
106         /* If the file already exists, we'll return the local permissions,
107          * possibly tweaked by the --executability option. */
108         if (exists) {
109                 if (preserve_executability && S_ISREG(flist_mode)) {
110                         /* If the source file is executable, grant execute
111                          * rights to everyone who can read, but ONLY if the
112                          * file isn't already executable. */
113                         if (!(flist_mode & 0111))
114                                 cur_mode &= ~0111;
115                         else if (!(cur_mode & 0111))
116                                 cur_mode |= (cur_mode & 0444) >> 2;
117                 }
118         } else
119                 cur_mode = flist_mode & ACCESSPERMS & ~orig_umask;
120         if (daemon_chmod_modes && !S_ISLNK(flist_mode))
121                 cur_mode = tweak_mode(cur_mode, daemon_chmod_modes);
122         return (flist_mode & ~CHMOD_BITS) | (cur_mode & CHMOD_BITS);
123 }
124
125 int set_file_attrs(char *fname, struct file_struct *file, STRUCT_STAT *st,
126                    int flags)
127 {
128         int updated = 0;
129         STRUCT_STAT st2;
130         int change_uid, change_gid;
131
132         if (!st) {
133                 if (dry_run)
134                         return 1;
135                 if (link_stat(fname, &st2, 0) < 0) {
136                         rsyserr(FERROR, errno, "stat %s failed",
137                                 full_fname(fname));
138                         return 0;
139                 }
140                 st = &st2;
141                 if (!preserve_perms && S_ISDIR(file->mode)
142                  && st->st_mode & S_ISGID) {
143                         /* We just created this directory and its setgid
144                          * bit is on, so make sure it stays on. */
145                         file->mode |= S_ISGID;
146                 }
147         }
148
149         if (!preserve_times || (S_ISDIR(st->st_mode) && omit_dir_times))
150                 flags |= ATTRS_SKIP_MTIME;
151         if (!(flags & ATTRS_SKIP_MTIME)
152             && cmp_time(st->st_mtime, file->modtime) != 0) {
153                 int ret = set_modtime(fname, file->modtime, st->st_mode);
154                 if (ret < 0) {
155                         rsyserr(FERROR, errno, "failed to set times on %s",
156                                 full_fname(fname));
157                         return 0;
158                 }
159                 if (ret == 0) /* ret == 1 if symlink could not be set */
160                         updated = 1;
161         }
162
163         change_uid = am_root && preserve_uid && st->st_uid != file->uid;
164         change_gid = preserve_gid && file->gid != GID_NONE
165                 && st->st_gid != file->gid;
166 #if !defined HAVE_LCHOWN && !defined CHOWN_MODIFIES_SYMLINK
167         if (S_ISLNK(st->st_mode))
168                 ;
169         else
170 #endif
171         if (change_uid || change_gid) {
172                 if (verbose > 2) {
173                         if (change_uid) {
174                                 rprintf(FINFO,
175                                         "set uid of %s from %ld to %ld\n",
176                                         fname,
177                                         (long)st->st_uid, (long)file->uid);
178                         }
179                         if (change_gid) {
180                                 rprintf(FINFO,
181                                         "set gid of %s from %ld to %ld\n",
182                                         fname,
183                                         (long)st->st_gid, (long)file->gid);
184                         }
185                 }
186                 if (do_lchown(fname,
187                     change_uid ? file->uid : st->st_uid,
188                     change_gid ? file->gid : st->st_gid) != 0) {
189                         /* shouldn't have attempted to change uid or gid
190                          * unless have the privilege */
191                         rsyserr(FERROR, errno, "%s %s failed",
192                             change_uid ? "chown" : "chgrp",
193                             full_fname(fname));
194                         return 0;
195                 }
196                 /* a lchown had been done - we have to re-stat if the
197                  * destination had the setuid or setgid bits set due
198                  * to the side effect of the chown call */
199                 if (st->st_mode & (S_ISUID | S_ISGID)) {
200                         link_stat(fname, st,
201                                   keep_dirlinks && S_ISDIR(st->st_mode));
202                 }
203                 updated = 1;
204         }
205
206 #ifdef HAVE_CHMOD
207         if ((st->st_mode & CHMOD_BITS) != (file->mode & CHMOD_BITS)) {
208                 int ret = do_chmod(fname, file->mode);
209                 if (ret < 0) {
210                         rsyserr(FERROR, errno,
211                                 "failed to set permissions on %s",
212                                 full_fname(fname));
213                         return 0;
214                 }
215                 if (ret == 0) /* ret == 1 if symlink could not be set */
216                         updated = 1;
217         }
218 #endif
219
220         if (verbose > 1 && flags & ATTRS_REPORT) {
221                 enum logcode code = logfile_format_has_i || dry_run ? FCLIENT : FINFO;
222                 if (updated)
223                         rprintf(code, "%s\n", fname);
224                 else
225                         rprintf(code, "%s is uptodate\n", fname);
226         }
227         return updated;
228 }
229
230 RETSIGTYPE sig_int(UNUSED(int val))
231 {
232         /* KLUGE: if the user hits Ctrl-C while ssh is prompting
233          * for a password, then our cleanup's sending of a SIGUSR1
234          * signal to all our children may kill ssh before it has a
235          * chance to restore the tty settings (i.e. turn echo back
236          * on).  By sleeping for a short time, ssh gets a bigger
237          * chance to do the right thing.  If child processes are
238          * not ssh waiting for a password, then this tiny delay
239          * shouldn't hurt anything. */
240         msleep(400);
241         exit_cleanup(RERR_SIGNAL);
242 }
243
244 /* Finish off a file transfer: renaming the file and setting the file's
245  * attributes (e.g. permissions, ownership, etc.).  If partialptr is not
246  * NULL and the robust_rename() call is forced to copy the temp file, we
247  * stage the file into the partial-dir and then rename it into place. */
248 void finish_transfer(char *fname, char *fnametmp, char *partialptr,
249                      struct file_struct *file, int ok_to_set_time,
250                      int overwriting_basis)
251 {
252         int ret;
253
254         if (inplace) {
255                 if (verbose > 2)
256                         rprintf(FINFO, "finishing %s\n", fname);
257                 fnametmp = fname;
258                 goto do_set_file_attrs;
259         }
260
261         if (make_backups && overwriting_basis && !make_backup(fname))
262                 return;
263
264         /* Change permissions before putting the file into place. */
265         set_file_attrs(fnametmp, file, NULL,
266                        ok_to_set_time ? 0 : ATTRS_SKIP_MTIME);
267
268         /* move tmp file over real file */
269         if (verbose > 2)
270                 rprintf(FINFO, "renaming %s to %s\n", fnametmp, fname);
271         ret = robust_rename(fnametmp, fname, partialptr,
272                             file->mode & INITACCESSPERMS);
273         if (ret < 0) {
274                 rsyserr(FERROR, errno, "%s %s -> \"%s\"",
275                         ret == -2 ? "copy" : "rename",
276                         full_fname(fnametmp), fname);
277                 do_unlink(fnametmp);
278                 return;
279         }
280         if (ret == 0) {
281                 /* The file was moved into place (not copied), so it's done. */
282                 return;
283         }
284         /* The file was copied, so tweak the perms of the copied file.  If it
285          * was copied to partialptr, move it into its final destination. */
286         fnametmp = partialptr ? partialptr : fname;
287
288   do_set_file_attrs:
289         set_file_attrs(fnametmp, file, NULL,
290                        ok_to_set_time ? 0 : ATTRS_SKIP_MTIME);
291
292         if (partialptr) {
293                 if (do_rename(fnametmp, fname) < 0) {
294                         rsyserr(FERROR, errno, "rename %s -> \"%s\"",
295                                 full_fname(fnametmp), fname);
296                 } else
297                         handle_partial_dir(partialptr, PDIR_DELETE);
298         }
299 }
300
301 const char *who_am_i(void)
302 {
303         if (am_starting_up)
304                 return am_server ? "server" : "client";
305         return am_sender ? "sender" : am_generator ? "generator" : "receiver";
306 }