added --backup-dir option from Bob Edwards
[rsync/rsync.git] / exclude.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 /* a lot of this stuff was originally derived from GNU tar, although
21    it has now changed so much that it is hard to tell :) */
22
23 #include "rsync.h"
24
25 extern int verbose;
26 extern int delete_mode;
27
28 static struct exclude_struct **exclude_list;
29
30 /* build an exclude structure given a exclude pattern */
31 static struct exclude_struct *make_exclude(char *pattern, int include)
32 {
33         struct exclude_struct *ret;
34
35         ret = (struct exclude_struct *)malloc(sizeof(*ret));
36         if (!ret) out_of_memory("make_exclude");
37
38         memset(ret, 0, sizeof(*ret));
39
40         if (strncmp(pattern,"- ",2) == 0) {
41                 pattern += 2;
42         } else if (strncmp(pattern,"+ ",2) == 0) {
43                 ret->include = 1;
44                 pattern += 2;
45         } else {
46                 ret->include = include;
47         }
48
49         ret->pattern = strdup(pattern);
50
51         if (!ret->pattern) out_of_memory("make_exclude");
52
53         if (strpbrk(pattern, "*[?")) {
54             ret->regular_exp = 1;
55             ret->fnmatch_flags = strstr(pattern, "**") ? 0 : FNM_PATHNAME;
56         }
57
58         if (strlen(pattern) > 1 && pattern[strlen(pattern)-1] == '/') {
59                 ret->pattern[strlen(pattern)-1] = 0;
60                 ret->directory = 1;
61         }
62
63         if (!strchr(ret->pattern,'/')) {
64                 ret->local = 1;
65         }
66
67         return ret;
68 }
69
70 static void free_exclude(struct exclude_struct *ex)
71 {
72         free(ex->pattern);
73         memset(ex,0,sizeof(*ex));
74         free(ex);
75 }
76
77 static int check_one_exclude(char *name,struct exclude_struct *ex,
78                              STRUCT_STAT *st)
79 {
80         char *p;
81         int match_start=0;
82         char *pattern = ex->pattern;
83
84         if (ex->local && (p=strrchr(name,'/')))
85                 name = p+1;
86
87         if (!name[0]) return 0;
88
89         if (ex->directory && !S_ISDIR(st->st_mode)) return 0;
90
91         if (*pattern == '/' && *name != '/') {
92                 match_start = 1;
93                 pattern++;
94         }
95
96         if (ex->regular_exp) {
97                 if (fnmatch(pattern, name, ex->fnmatch_flags) == 0)
98                         return 1;
99         } else {
100                 int l1 = strlen(name);
101                 int l2 = strlen(pattern);
102                 if (l2 <= l1 && 
103                     strcmp(name+(l1-l2),pattern) == 0 &&
104                     (l1==l2 || (!match_start && name[l1-(l2+1)] == '/')))
105                         return 1;
106         }
107
108         return 0;
109 }
110
111
112 int check_exclude(char *name,struct exclude_struct **local_exclude_list,
113                   STRUCT_STAT *st)
114 {
115         int n;
116
117         if (name && (name[0] == '.') && !name[1])
118                 /* never exclude '.', even if somebody does --exclude '*' */
119                 return 0;
120
121         if (exclude_list) {
122                 for (n=0; exclude_list[n]; n++)
123                         if (check_one_exclude(name,exclude_list[n],st))
124                                 return !exclude_list[n]->include;
125         }
126
127         if (local_exclude_list) {
128                 for (n=0; local_exclude_list[n]; n++)
129                         if (check_one_exclude(name,local_exclude_list[n],st))
130                                 return !local_exclude_list[n]->include;
131         }
132
133         return 0;
134 }
135
136
137 void add_exclude_list(char *pattern,struct exclude_struct ***list, int include)
138 {
139         int len=0;
140         if (list && *list)
141                 for (; (*list)[len]; len++) ;
142
143         if (strcmp(pattern,"!") == 0) {
144                 if (verbose > 2)
145                         rprintf(FINFO,"clearing exclude list\n");
146                 while ((len)--) {
147                         free_exclude((*list)[len]);
148                 }
149                 free((*list));
150                 *list = NULL;
151                 return;
152         }
153
154         *list = (struct exclude_struct **)Realloc(*list,sizeof(struct exclude_struct *)*(len+2));
155         
156         if (!*list || !((*list)[len] = make_exclude(pattern, include)))
157                 out_of_memory("add_exclude");
158         
159         if (verbose > 2)
160                 rprintf(FINFO,"add_exclude(%s)\n",pattern);
161         
162         (*list)[len+1] = NULL;
163 }
164
165 void add_exclude(char *pattern, int include)
166 {
167         add_exclude_list(pattern,&exclude_list, include);
168 }
169
170 struct exclude_struct **make_exclude_list(char *fname,
171                                           struct exclude_struct **list1,
172                                           int fatal, int include)
173 {
174         struct exclude_struct **list=list1;
175         FILE *f = fopen(fname,"r");
176         char line[MAXPATHLEN];
177         if (!f) {
178                 if (fatal) {
179                         rprintf(FERROR,"%s : %s\n",fname,strerror(errno));
180                         exit_cleanup(RERR_FILEIO);
181                 }
182                 return list;
183         }
184
185         while (fgets(line,MAXPATHLEN,f)) {
186                 int l = strlen(line);
187                 if (l && line[l-1] == '\n') l--;
188                 line[l] = 0;
189                 if (line[0] && (line[0] != ';') && (line[0] != '#')) {
190                         /* Skip lines starting with semicolon or pound.
191                            It probably wouldn't cause any harm to not skip
192                              them but there's no need to save them. */
193                         add_exclude_list(line,&list,include);
194                 }
195         }
196         fclose(f);
197         return list;
198 }
199
200
201 void add_exclude_file(char *fname,int fatal,int include)
202 {
203         if (!fname || !*fname) return;
204
205         exclude_list = make_exclude_list(fname,exclude_list,fatal,include);
206 }
207
208
209 void send_exclude_list(int f)
210 {
211         int i;
212         extern int remote_version;
213
214         if (!exclude_list) {
215                 write_int(f,0);
216                 return;
217         }
218
219         for (i=0;exclude_list[i];i++) {
220                 int l;
221                 char pattern[MAXPATHLEN];
222
223                 strlcpy(pattern,exclude_list[i]->pattern,sizeof(pattern)); 
224                 if (exclude_list[i]->directory) strlcat(pattern,"/", sizeof(pattern));
225
226                 l = strlen(pattern);
227                 if (l == 0) continue;
228                 if (exclude_list[i]->include) {
229                         if (remote_version < 19) {
230                                 rprintf(FERROR,"remote rsync does not support include syntax - aborting\n");
231                                 exit_cleanup(RERR_UNSUPPORTED);
232                         }
233                         write_int(f,l+2);
234                         write_buf(f,"+ ",2);
235                 } else {
236                         write_int(f,l);
237                 }
238                 write_buf(f,pattern,l);
239         }    
240
241         write_int(f,0);
242 }
243
244
245 void recv_exclude_list(int f)
246 {
247         char line[MAXPATHLEN];
248         int l;
249         while ((l=read_int(f))) {
250                 if (l >= MAXPATHLEN) overflow("recv_exclude_list");
251                 read_sbuf(f,line,l);
252                 add_exclude(line,0);
253         }
254 }
255
256 /* Get the next include/exclude arg from the string. It works in a similar way
257 ** to strtok - initially an arg is sent over, from then on NULL. This
258 ** routine takes into account any +/- in the strings and does not
259 ** consider the space following it as a delimeter.
260 */
261 char *get_exclude_tok(char *p)
262 {
263         static char *s;
264         static int more;
265         char *t;
266
267         if (p) {
268                 s=p;
269                 if (*p)
270                         more=1;
271         }
272
273         if (!more)
274                 return(NULL);
275
276         /* Skip over any initial spaces */
277         while(isspace(*s))
278                 s++;
279
280         /* Are we at the end of the string? */
281         if (*s) {
282                 /* remember the beginning of the token */
283                 t=s;
284
285                 /* Is this a '+' or '-' followed by a space (not whitespace)? */
286                 if ((*s=='+' || *s=='-') && *(s+1)==' ')
287                         s+=2;
288         
289                 /* Skip to the next space or the end of the string */
290                 while(!isspace(*s) && *s!='\0')
291                         s++;
292         } else {
293                 t=NULL;
294         }
295
296         /* Have we reached the end of the string? */
297         if (*s)
298                 *s++='\0';
299         else
300                 more=0;
301         return(t);
302 }
303
304         
305 void add_exclude_line(char *p)
306 {
307         char *tok;
308         if (!p || !*p) return;
309         p = strdup(p);
310         if (!p) out_of_memory("add_exclude_line");
311         for (tok=get_exclude_tok(p); tok; tok=get_exclude_tok(NULL))
312                 add_exclude(tok, 0);
313         free(p);
314 }
315
316 void add_include_line(char *p)
317 {
318         char *tok;
319         if (!p || !*p) return;
320         p = strdup(p);
321         if (!p) out_of_memory("add_include_line");
322         for (tok=get_exclude_tok(p); tok; tok=get_exclude_tok(NULL))
323                 add_exclude(tok, 1);
324         free(p);
325 }
326
327
328 static char *cvs_ignore_list[] = {
329   "RCS","SCCS","CVS","CVS.adm","RCSLOG","cvslog.*",
330   "tags","TAGS",".make.state",".nse_depinfo",
331   "*~", "#*", ".#*", ",*", "*.old", "*.bak", "*.BAK", "*.orig",
332   "*.rej", ".del-*", "*.a", "*.o", "*.obj", "*.so", "*.Z", "*.elc", "*.ln",
333   "core",NULL};
334
335
336
337 void add_cvs_excludes(void)
338 {
339         char fname[MAXPATHLEN];
340         char *p;
341         int i;
342   
343         for (i=0; cvs_ignore_list[i]; i++)
344                 add_exclude(cvs_ignore_list[i], 0);
345
346         if ((p=getenv("HOME")) && strlen(p) < (MAXPATHLEN-12)) {
347                 slprintf(fname,sizeof(fname), "%s/.cvsignore",p);
348                 add_exclude_file(fname,0,0);
349         }
350
351         add_exclude_line(getenv("CVSIGNORE"));
352 }