patch from Alberto Accomazzi <aaccomazzi@cfa.harvard.edu> to add
[rsync/rsync.git] / exclude.c
CommitLineData
c627d613
AT
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
2b6b4d53
AT
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 :) */
c627d613
AT
22
23#include "rsync.h"
24
25extern int verbose;
26
2b6b4d53 27static struct exclude_struct **exclude_list;
c627d613 28
2bca43f6
DD
29/*
30 * Optimization for special case when all included files are explicitly
31 * listed without wildcards in the "exclude" list followed by a "- *"
32 * to exclude the rest.
33 * Contributed by Dave Dykstra <dwd@bell-labs.com>
34 */
35static int only_included_files = 1;
36static struct exclude_struct *exclude_the_rest;
37
38int send_included_file_names(int f,struct file_list *flist)
39{
40 struct exclude_struct *ex, **ex_list;
41 int n;
42 char *p;
43
44 if (!only_included_files || (exclude_the_rest == NULL))
45 return 0;
46
47 if (verbose > 1) {
48 rprintf(FINFO,"(using include-only optimization) ");
49 }
50
51 /* set exclude_list to NULL temporarily so check_exclude */
52 /* will always return true */
53 ex_list = exclude_list;
54 exclude_list = NULL;
55 for (n=0; (ex = ex_list[n]) != NULL; n++) {
56 if (ex == exclude_the_rest)
57 break;
58 p = ex->pattern;
59 while (*p == '/') {
60 /* skip the allowed beginning slashes */
61 p++;
62 }
63 send_file_name(f,flist,p,0,0);
64 }
65 exclude_list = ex_list;
66
67 return 1;
68}
69
2b6b4d53
AT
70/* build an exclude structure given a exclude pattern */
71static struct exclude_struct *make_exclude(char *pattern, int include)
c627d613 72{
2b6b4d53 73 struct exclude_struct *ret;
c627d613 74
2b6b4d53
AT
75 ret = (struct exclude_struct *)malloc(sizeof(*ret));
76 if (!ret) out_of_memory("make_exclude");
c627d613 77
2b6b4d53
AT
78 memset(ret, 0, sizeof(*ret));
79
2b6b4d53
AT
80 if (strncmp(pattern,"- ",2) == 0) {
81 pattern += 2;
82 } else if (strncmp(pattern,"+ ",2) == 0) {
83 ret->include = 1;
84 pattern += 2;
85 } else {
86 ret->include = include;
87 }
88
89 ret->pattern = strdup(pattern);
90
587cb08d 91 if (!ret->pattern) out_of_memory("make_exclude");
c627d613 92
2bca43f6
DD
93 if (strpbrk(pattern, "*[?")) {
94 if (!ret->include && (*pattern == '*') && (*(pattern+1) == '\0')) {
95 exclude_the_rest = ret;
96 } else {
97 only_included_files = 0;
98 }
99 ret->regular_exp = 1;
100 } else if (!ret->include) {
101 only_included_files = 0;
102 }
c627d613 103
2b6b4d53
AT
104 if (strlen(pattern) > 1 && pattern[strlen(pattern)-1] == '/') {
105 ret->pattern[strlen(pattern)-1] = 0;
106 ret->directory = 1;
107 }
c627d613 108
2b6b4d53
AT
109 if (!strchr(ret->pattern,'/')) {
110 ret->local = 1;
111 }
0944563e 112
2b6b4d53
AT
113 return ret;
114}
115
116static void free_exclude(struct exclude_struct *ex)
117{
2b6b4d53
AT
118 free(ex->pattern);
119 memset(ex,0,sizeof(*ex));
120 free(ex);
121}
c627d613 122
2b6b4d53
AT
123static int check_one_exclude(char *name,struct exclude_struct *ex,
124 STRUCT_STAT *st)
125{
126 char *p;
127 int match_start=0;
128 char *pattern = ex->pattern;
129
130 if (ex->local && (p=strrchr(name,'/')))
131 name = p+1;
132
133 if (!name[0]) return 0;
134
135 if (ex->directory && !S_ISDIR(st->st_mode)) return 0;
136
137 if (*pattern == '/' && *name != '/') {
138 match_start = 1;
139 pattern++;
140 }
141
142 if (ex->regular_exp) {
ea2111d1 143 if (fnmatch(pattern, name, 0) == 0)
2b6b4d53
AT
144 return 1;
145 } else {
146 int l1 = strlen(name);
ea2111d1 147 int l2 = strlen(pattern);
2b6b4d53 148 if (l2 <= l1 &&
ea2111d1 149 strcmp(name+(l1-l2),pattern) == 0 &&
2b6b4d53
AT
150 (l1==l2 || (!match_start && name[l1-(l2+1)] == '/')))
151 return 1;
152 }
153
154 return 0;
c627d613
AT
155}
156
157
2b6b4d53
AT
158int check_exclude(char *name,struct exclude_struct **local_exclude_list,
159 STRUCT_STAT *st)
c627d613 160{
2b6b4d53 161 int n;
c627d613 162
2b6b4d53
AT
163 if (exclude_list) {
164 for (n=0; exclude_list[n]; n++)
165 if (check_one_exclude(name,exclude_list[n],st))
166 return !exclude_list[n]->include;
167 }
c627d613 168
2b6b4d53
AT
169 if (local_exclude_list) {
170 for (n=0; local_exclude_list[n]; n++)
171 if (check_one_exclude(name,local_exclude_list[n],st))
172 return !local_exclude_list[n]->include;
173 }
c627d613 174
2b6b4d53 175 return 0;
c627d613
AT
176}
177
178
2b6b4d53 179void add_exclude_list(char *pattern,struct exclude_struct ***list, int include)
c627d613 180{
2b6b4d53
AT
181 int len=0;
182 if (list && *list)
183 for (; (*list)[len]; len++) ;
184
185 if (strcmp(pattern,"!") == 0) {
186 if (verbose > 2)
187 rprintf(FINFO,"clearing exclude list\n");
188 while ((len)--) {
189 free_exclude((*list)[len]);
190 }
191 free((*list));
192 *list = NULL;
2bca43f6
DD
193 only_included_files = 1;
194 exclude_the_rest = NULL;
2b6b4d53
AT
195 return;
196 }
197
fe8c0a98 198 *list = (struct exclude_struct **)Realloc(*list,sizeof(struct exclude_struct *)*(len+2));
2b6b4d53
AT
199
200 if (!*list || !((*list)[len] = make_exclude(pattern, include)))
201 out_of_memory("add_exclude");
202
203 if (verbose > 2)
204 rprintf(FINFO,"add_exclude(%s)\n",pattern);
205
206 (*list)[len+1] = NULL;
c627d613
AT
207}
208
2b6b4d53 209void add_exclude(char *pattern, int include)
c627d613 210{
2b6b4d53 211 add_exclude_list(pattern,&exclude_list, include);
c627d613
AT
212}
213
2b6b4d53
AT
214struct exclude_struct **make_exclude_list(char *fname,
215 struct exclude_struct **list1,
216 int fatal, int include)
c627d613 217{
2b6b4d53
AT
218 struct exclude_struct **list=list1;
219 FILE *f = fopen(fname,"r");
220 char line[MAXPATHLEN];
221 if (!f) {
222 if (fatal) {
223 rprintf(FERROR,"%s : %s\n",fname,strerror(errno));
65417579 224 exit_cleanup(RERR_FILEIO);
2b6b4d53
AT
225 }
226 return list;
227 }
228
229 while (fgets(line,MAXPATHLEN,f)) {
230 int l = strlen(line);
231 if (l && line[l-1] == '\n') l--;
232 line[l] = 0;
233 if (line[0]) add_exclude_list(line,&list,include);
234 }
235 fclose(f);
236 return list;
c627d613
AT
237}
238
239
2b6b4d53 240void add_exclude_file(char *fname,int fatal,int include)
c627d613 241{
8f3a2d54
AT
242 if (!fname || !*fname) return;
243
2b6b4d53 244 exclude_list = make_exclude_list(fname,exclude_list,fatal,include);
c627d613
AT
245}
246
247
248void send_exclude_list(int f)
249{
2b6b4d53
AT
250 int i;
251 extern int remote_version;
252
253 if (!exclude_list) {
254 write_int(f,0);
255 return;
256 }
257
258 for (i=0;exclude_list[i];i++) {
587cb08d 259 char *pattern = exclude_list[i]->pattern;
2b6b4d53
AT
260 int l;
261
587cb08d
DD
262 l = strlen(pattern);
263 if (l == 0) continue;
264 if (exclude_list[i]->include) {
265 if (remote_version < 19) {
2b6b4d53 266 rprintf(FERROR,"remote rsync does not support include syntax - aborting\n");
65417579 267 exit_cleanup(RERR_NOSUPPORT);
2b6b4d53 268 }
587cb08d
DD
269 write_int(f,l+2);
270 write_buf(f,"+ ",2);
271 } else {
272 write_int(f,l);
2b6b4d53 273 }
2b6b4d53
AT
274 write_buf(f,pattern,l);
275 }
276
277 write_int(f,0);
c627d613
AT
278}
279
280
281void recv_exclude_list(int f)
282{
2b6b4d53
AT
283 char line[MAXPATHLEN];
284 int l;
285 while ((l=read_int(f))) {
286 if (l >= MAXPATHLEN) overflow("recv_exclude_list");
287 read_sbuf(f,line,l);
288 add_exclude(line,0);
289 }
c627d613
AT
290}
291
292
8f3a2d54
AT
293void add_exclude_line(char *p)
294{
295 char *tok;
296 if (!p || !*p) return;
297 p = strdup(p);
298 if (!p) out_of_memory("add_exclude_line");
299 for (tok=strtok(p," "); tok; tok=strtok(NULL," "))
2b6b4d53 300 add_exclude(tok, 0);
8f3a2d54
AT
301 free(p);
302}
303
304
c627d613
AT
305static char *cvs_ignore_list[] = {
306 "RCS","SCCS","CVS","CVS.adm","RCSLOG","cvslog.*",
307 "tags","TAGS",".make.state",".nse_depinfo",
308 "*~", "#*", ".#*", ",*", "*.old", "*.bak", "*.BAK", "*.orig",
309 "*.rej", ".del-*", "*.a", "*.o", "*.obj", "*.so", "*.Z", "*.elc", "*.ln",
310 "core",NULL};
311
312
313
314void add_cvs_excludes(void)
315{
2b6b4d53
AT
316 char fname[MAXPATHLEN];
317 char *p;
318 int i;
c627d613 319
2b6b4d53
AT
320 for (i=0; cvs_ignore_list[i]; i++)
321 add_exclude(cvs_ignore_list[i], 0);
c627d613 322
2b6b4d53
AT
323 if ((p=getenv("HOME")) && strlen(p) < (MAXPATHLEN-12)) {
324 slprintf(fname,sizeof(fname)-1, "%s/.cvsignore",p);
325 add_exclude_file(fname,0,0);
326 }
c627d613 327
2b6b4d53 328 add_exclude_line(getenv("CVSIGNORE"));
c627d613 329}