Change documentation to explain that a lack of -t in effect causes -I to be
[rsync.git] / rsync.c
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
25 extern int verbose;
26 extern int dry_run;
27 extern int preserve_times;
28 extern int am_root;
29 extern int preserve_uid;
30 extern int preserve_gid;
31 extern int preserve_perms;
32 extern int make_backups;
33 extern char *backup_suffix;
34
35
36 /*
37   free a sums struct
38   */
39 void free_sums(struct sum_struct *s)
40 {
41         if (s->sums) free(s->sums);
42         free(s);
43 }
44
45
46 /*
47  * delete a file or directory. If force_delet is set then delete 
48  * recursively 
49  */
50 int delete_file(char *fname)
51 {
52         DIR *d;
53         struct dirent *di;
54         char buf[MAXPATHLEN];
55         extern int force_delete;
56         STRUCT_STAT st;
57         int ret;
58         extern int recurse;
59
60         if (do_unlink(fname) == 0 || errno == ENOENT) return 0;
61
62 #if SUPPORT_LINKS
63         ret = do_lstat(fname, &st);
64 #else
65         ret = do_stat(fname, &st);
66 #endif
67         if (ret) {
68                 rprintf(FERROR,"stat(%s) : %s\n", fname, strerror(errno));
69                 return -1;
70         }
71
72         if (!S_ISDIR(st.st_mode)) {
73                 rprintf(FERROR,"unlink(%s) : %s\n", fname, strerror(errno));
74                 return -1;
75         }
76
77         if (do_rmdir(fname) == 0 || errno == ENOENT) return 0;
78         if (!force_delete || !recurse || 
79             (errno != ENOTEMPTY && errno != EEXIST)) {
80                 rprintf(FERROR,"rmdir(%s) : %s\n", fname, strerror(errno));
81                 return -1;
82         }
83
84         /* now we do a recsursive delete on the directory ... */
85         d = opendir(fname);
86         if (!d) {
87                 rprintf(FERROR,"opendir(%s): %s\n",
88                         fname,strerror(errno));
89                 return -1;
90         }
91
92         for (di=readdir(d); di; di=readdir(d)) {
93                 char *dname = d_name(di);
94                 if (strcmp(dname,".")==0 ||
95                     strcmp(dname,"..")==0)
96                         continue;
97                 slprintf(buf, sizeof(buf), "%s/%s", fname, dname);
98                 if (verbose > 0)
99                         rprintf(FINFO,"deleting %s\n", buf);
100                 if (delete_file(buf) != 0) {
101                         closedir(d);
102                         return -1;
103                 }
104         }       
105
106         closedir(d);
107         
108         if (do_rmdir(fname) != 0) {
109                 rprintf(FERROR,"rmdir(%s) : %s\n", fname, strerror(errno));
110                 return -1;
111         }
112
113         return 0;
114 }
115
116
117 int set_perms(char *fname,struct file_struct *file,STRUCT_STAT *st,
118               int report)
119 {
120         int updated = 0;
121         STRUCT_STAT st2;
122         extern int am_daemon;
123
124         if (dry_run) return 0;
125
126         if (!st) {
127                 if (link_stat(fname,&st2) != 0) {
128                         rprintf(FERROR,"stat %s : %s\n",fname,strerror(errno));
129                         return 0;
130                 }
131                 st = &st2;
132         }
133
134         if (preserve_times && !S_ISLNK(st->st_mode) &&
135             st->st_mtime != file->modtime) {
136                 /* don't complain about not setting times on directories
137                    because some filesystems can't do it */
138                 if (set_modtime(fname,file->modtime) != 0 &&
139                     !S_ISDIR(st->st_mode)) {
140                         rprintf(FERROR,"failed to set times on %s : %s\n",
141                                 fname,strerror(errno));
142                         return 0;
143                 } else {
144                         updated = 1;
145                 }
146         }
147
148         if ((am_root || !am_daemon) &&
149             ((am_root && preserve_uid && st->st_uid != file->uid) || 
150              (preserve_gid && st->st_gid != file->gid))) {
151                 if (do_lchown(fname,
152                               (am_root&&preserve_uid)?file->uid:-1,
153                               preserve_gid?file->gid:-1) != 0) {
154                         if (preserve_uid && st->st_uid != file->uid)
155                                 updated = 1;
156                         if (verbose>1 || preserve_uid) {
157                                 rprintf(FERROR,"chown %s : %s\n",
158                                         fname,strerror(errno));
159                                 return 0;
160                         }
161                 } else {
162                         updated = 1;
163                 }
164         }
165
166 #ifdef HAVE_CHMOD
167         if (preserve_perms && !S_ISLNK(st->st_mode) &&
168             (st->st_mode != file->mode || 
169              (updated && (file->mode & ~ACCESSPERMS)))) {
170                 updated = 1;
171                 if (do_chmod(fname,file->mode) != 0) {
172                         rprintf(FERROR,"failed to set permissions on %s : %s\n",
173                                 fname,strerror(errno));
174                         return 0;
175                 }
176         }
177 #endif
178     
179         if (verbose > 1 && report) {
180                 if (updated)
181                         rprintf(FINFO,"%s\n",fname);
182                 else
183                         rprintf(FINFO,"%s is uptodate\n",fname);
184         }
185         return updated;
186 }
187
188
189 void sig_int(void)
190 {
191         exit_cleanup(RERR_SIGNAL);
192 }
193
194
195 /* finish off a file transfer, renaming the file and setting the permissions
196    and ownership */
197 void finish_transfer(char *fname, char *fnametmp, struct file_struct *file)
198 {
199 rprintf(FINFO,"finish_transfer(%s,%s)\n",fname,fnametmp);
200         if (make_backups) {
201                 char fnamebak[MAXPATHLEN];
202                 if (strlen(fname) + strlen(backup_suffix) > (MAXPATHLEN-1)) {
203                         rprintf(FERROR,"backup filename too long\n");
204                         return;
205                 }
206                 slprintf(fnamebak,sizeof(fnamebak),"%s%s",fname,backup_suffix);
207                 if (do_rename(fname,fnamebak) != 0 && errno != ENOENT) {
208                         rprintf(FERROR,"rename %s %s : %s\n",fname,fnamebak,strerror(errno));
209                         return;
210                 }
211         }
212
213         /* move tmp file over real file */
214         if (do_rename(fnametmp,fname) != 0) {
215                 if (errno == EXDEV) {
216                         /* rename failed on cross-filesystem link.  
217                            Copy the file instead. */
218                         if (copy_file(fnametmp,fname, file->mode & ACCESSPERMS)) {
219                                 rprintf(FERROR,"copy %s -> %s : %s\n",
220                                         fnametmp,fname,strerror(errno));
221                         } else {
222                                 set_perms(fname,file,NULL,0);
223                         }
224                         do_unlink(fnametmp);
225                 } else {
226                         rprintf(FERROR,"rename %s -> %s : %s\n",
227                                 fnametmp,fname,strerror(errno));
228                         do_unlink(fnametmp);
229                 }
230         } else {
231                 set_perms(fname,file,NULL,0);
232         }
233 }
234
235
236