If a daemon prints an error message of @ERROR, have the client treat the
[rsync/rsync.git] / exclude.c
CommitLineData
f0f5767f
MP
1/* -*- c-file-style: "linux" -*-
2
3 Copyright (C) 1996-2001 by Andrew Tridgell <tridge@samba.org>
4 Copyright (C) 1996 by Paul Mackerras
c627d613
AT
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19*/
20
2b6b4d53
AT
21/* a lot of this stuff was originally derived from GNU tar, although
22 it has now changed so much that it is hard to tell :) */
c627d613 23
d567322f
MP
24/* include/exclude cluestick added by Martin Pool <mbp@samba.org> */
25
c627d613
AT
26#include "rsync.h"
27
28extern int verbose;
8458724d 29extern int delete_mode;
c627d613 30
2b6b4d53 31static struct exclude_struct **exclude_list;
c627d613 32
2b6b4d53 33/* build an exclude structure given a exclude pattern */
f0f5767f 34static struct exclude_struct *make_exclude(const char *pattern, int include)
c627d613 35{
2b6b4d53 36 struct exclude_struct *ret;
c627d613 37
2b6b4d53
AT
38 ret = (struct exclude_struct *)malloc(sizeof(*ret));
39 if (!ret) out_of_memory("make_exclude");
c627d613 40
2b6b4d53
AT
41 memset(ret, 0, sizeof(*ret));
42
2b6b4d53
AT
43 if (strncmp(pattern,"- ",2) == 0) {
44 pattern += 2;
45 } else if (strncmp(pattern,"+ ",2) == 0) {
46 ret->include = 1;
47 pattern += 2;
48 } else {
49 ret->include = include;
50 }
51
52 ret->pattern = strdup(pattern);
53
587cb08d 54 if (!ret->pattern) out_of_memory("make_exclude");
c627d613 55
2bca43f6 56 if (strpbrk(pattern, "*[?")) {
2bca43f6 57 ret->regular_exp = 1;
9bec5286
AT
58 ret->fnmatch_flags = FNM_PATHNAME;
59 if (strstr(pattern, "**")) {
60 static int tested;
61 if (!tested) {
62 tested = 1;
63 if (fnmatch("a/b/*", "a/b/c/d", FNM_PATHNAME)==0) {
64 rprintf(FERROR,"WARNING: fnmatch FNM_PATHNAME is broken on your system\n");
65 }
66 }
67 ret->fnmatch_flags = 0;
68 }
2bca43f6 69 }
c627d613 70
2b6b4d53
AT
71 if (strlen(pattern) > 1 && pattern[strlen(pattern)-1] == '/') {
72 ret->pattern[strlen(pattern)-1] = 0;
73 ret->directory = 1;
74 }
c627d613 75
2b6b4d53
AT
76 if (!strchr(ret->pattern,'/')) {
77 ret->local = 1;
78 }
0944563e 79
2b6b4d53
AT
80 return ret;
81}
82
83static void free_exclude(struct exclude_struct *ex)
84{
2b6b4d53
AT
85 free(ex->pattern);
86 memset(ex,0,sizeof(*ex));
87 free(ex);
88}
c627d613 89
d567322f
MP
90static int check_one_exclude(char *name, struct exclude_struct *ex,
91 STRUCT_STAT *st)
2b6b4d53
AT
92{
93 char *p;
94 int match_start=0;
95 char *pattern = ex->pattern;
96
97 if (ex->local && (p=strrchr(name,'/')))
98 name = p+1;
99
100 if (!name[0]) return 0;
101
102 if (ex->directory && !S_ISDIR(st->st_mode)) return 0;
103
104 if (*pattern == '/' && *name != '/') {
105 match_start = 1;
106 pattern++;
107 }
108
109 if (ex->regular_exp) {
c36cd317 110 if (fnmatch(pattern, name, ex->fnmatch_flags) == 0) {
2b6b4d53 111 return 1;
c36cd317 112 }
2b6b4d53
AT
113 } else {
114 int l1 = strlen(name);
ea2111d1 115 int l2 = strlen(pattern);
2b6b4d53 116 if (l2 <= l1 &&
ea2111d1 117 strcmp(name+(l1-l2),pattern) == 0 &&
c36cd317 118 (l1==l2 || (!match_start && name[l1-(l2+1)] == '/'))) {
2b6b4d53 119 return 1;
c36cd317 120 }
2b6b4d53
AT
121 }
122
123 return 0;
c627d613
AT
124}
125
126
d567322f
MP
127static void report_exclude_result(char const *name,
128 struct exclude_struct const *ent,
129 STRUCT_STAT const *st)
130{
131 /* If a trailing slash is present to match only directories,
132 * then it is stripped out by make_exclude. So as a special
133 * case we add it back in here. */
d7761c14
MP
134
135 /* FIXME: At the moment if you don't specify --recursive, this
136 * seems to give messages like "excluding file
137 * mbpconfig/.Xresources because of pattern /*""/*", which is
138 * a bit confusing. See Rusty's gross hack below. */
d567322f
MP
139
140 if (verbose >= 2)
141 rprintf(FINFO, "%s %s %s because of pattern %s%s\n",
142 ent->include ? "including" : "excluding",
143 S_ISDIR(st->st_mode) ? "directory" : "file",
144 name, ent->pattern,
145 ent->directory ? "/" : "");
146}
147
148
149/*
150 * Return true if file NAME is defined to be excluded by either
151 * LOCAL_EXCLUDE_LIST or the globals EXCLUDE_LIST.
152 */
153int check_exclude(char *name, struct exclude_struct **local_exclude_list,
2b6b4d53 154 STRUCT_STAT *st)
c627d613 155{
2b6b4d53 156 int n;
1f52f4c4 157 struct exclude_struct *ent;
c627d613 158
5d5811f7
DD
159 if (name && (name[0] == '.') && !name[1])
160 /* never exclude '.', even if somebody does --exclude '*' */
161 return 0;
162
2b6b4d53 163 if (exclude_list) {
d567322f
MP
164 for (n=0; exclude_list[n]; n++) {
165 ent = exclude_list[n];
166 if (check_one_exclude(name, ent, st)) {
167 report_exclude_result(name, ent, st);
168 return !ent->include;
169 }
170 }
2b6b4d53 171 }
c627d613 172
2b6b4d53 173 if (local_exclude_list) {
d567322f 174 for (n=0; local_exclude_list[n]; n++) {
531d06b8 175 ent = local_exclude_list[n];
d567322f
MP
176 if (check_one_exclude(name, ent, st)) {
177 report_exclude_result(name, ent, st);
178 return !ent->include;
179 }
180 }
2b6b4d53 181 }
c627d613 182
2b6b4d53 183 return 0;
c627d613
AT
184}
185
186
f0f5767f 187void add_exclude_list(const char *pattern, struct exclude_struct ***list, int include)
c627d613 188{
2b6b4d53
AT
189 int len=0;
190 if (list && *list)
191 for (; (*list)[len]; len++) ;
192
193 if (strcmp(pattern,"!") == 0) {
194 if (verbose > 2)
195 rprintf(FINFO,"clearing exclude list\n");
196 while ((len)--) {
197 free_exclude((*list)[len]);
198 }
199 free((*list));
200 *list = NULL;
201 return;
202 }
203
fe8c0a98 204 *list = (struct exclude_struct **)Realloc(*list,sizeof(struct exclude_struct *)*(len+2));
2b6b4d53
AT
205
206 if (!*list || !((*list)[len] = make_exclude(pattern, include)))
207 out_of_memory("add_exclude");
208
8c35542d
MP
209 if (verbose > 2) {
210 rprintf(FINFO,"add_exclude(%s,%s)\n",pattern,
211 include ? "include" : "exclude");
212 }
213
2b6b4d53 214 (*list)[len+1] = NULL;
c627d613
AT
215}
216
f0f5767f 217void add_exclude(const char *pattern, int include)
c627d613 218{
2b6b4d53 219 add_exclude_list(pattern,&exclude_list, include);
c627d613
AT
220}
221
f0f5767f 222struct exclude_struct **make_exclude_list(const char *fname,
2b6b4d53
AT
223 struct exclude_struct **list1,
224 int fatal, int include)
c627d613 225{
2b6b4d53
AT
226 struct exclude_struct **list=list1;
227 FILE *f = fopen(fname,"r");
228 char line[MAXPATHLEN];
229 if (!f) {
230 if (fatal) {
a039749b
MP
231 rsyserr(FERROR, errno,
232 "failed to open %s file %s",
233 include ? "include" : "exclude",
234 fname);
65417579 235 exit_cleanup(RERR_FILEIO);
2b6b4d53
AT
236 }
237 return list;
238 }
239
240 while (fgets(line,MAXPATHLEN,f)) {
241 int l = strlen(line);
242 if (l && line[l-1] == '\n') l--;
243 line[l] = 0;
122f19a6
DD
244 if (line[0] && (line[0] != ';') && (line[0] != '#')) {
245 /* Skip lines starting with semicolon or pound.
246 It probably wouldn't cause any harm to not skip
247 them but there's no need to save them. */
248 add_exclude_list(line,&list,include);
249 }
2b6b4d53
AT
250 }
251 fclose(f);
252 return list;
c627d613
AT
253}
254
255
f0f5767f 256void add_exclude_file(const char *fname, int fatal, int include)
c627d613 257{
8f3a2d54
AT
258 if (!fname || !*fname) return;
259
2b6b4d53 260 exclude_list = make_exclude_list(fname,exclude_list,fatal,include);
c627d613
AT
261}
262
263
264void send_exclude_list(int f)
265{
2b6b4d53
AT
266 int i;
267 extern int remote_version;
25cf8893
AT
268 extern int list_only, recurse;
269
270 /* this is a complete hack - blame Rusty */
271 if (list_only && !recurse) {
272 add_exclude("/*/*", 0);
273 }
2b6b4d53
AT
274
275 if (!exclude_list) {
276 write_int(f,0);
277 return;
278 }
279
280 for (i=0;exclude_list[i];i++) {
2b6b4d53 281 int l;
2fb139c1
AT
282 char pattern[MAXPATHLEN];
283
284 strlcpy(pattern,exclude_list[i]->pattern,sizeof(pattern));
285 if (exclude_list[i]->directory) strlcat(pattern,"/", sizeof(pattern));
2b6b4d53 286
587cb08d
DD
287 l = strlen(pattern);
288 if (l == 0) continue;
289 if (exclude_list[i]->include) {
290 if (remote_version < 19) {
2b6b4d53 291 rprintf(FERROR,"remote rsync does not support include syntax - aborting\n");
ec9df380 292 exit_cleanup(RERR_UNSUPPORTED);
2b6b4d53 293 }
587cb08d
DD
294 write_int(f,l+2);
295 write_buf(f,"+ ",2);
296 } else {
297 write_int(f,l);
2b6b4d53 298 }
2b6b4d53
AT
299 write_buf(f,pattern,l);
300 }
301
302 write_int(f,0);
c627d613
AT
303}
304
305
306void recv_exclude_list(int f)
307{
2b6b4d53 308 char line[MAXPATHLEN];
9dd891bb
MP
309 unsigned int l;
310
2b6b4d53
AT
311 while ((l=read_int(f))) {
312 if (l >= MAXPATHLEN) overflow("recv_exclude_list");
313 read_sbuf(f,line,l);
314 add_exclude(line,0);
315 }
c627d613
AT
316}
317
651443a7
DD
318/* Get the next include/exclude arg from the string. It works in a similar way
319** to strtok - initially an arg is sent over, from then on NULL. This
320** routine takes into account any +/- in the strings and does not
321** consider the space following it as a delimeter.
322*/
323char *get_exclude_tok(char *p)
324{
325 static char *s;
326 static int more;
327 char *t;
328
329 if (p) {
330 s=p;
331 if (*p)
332 more=1;
333 }
334
335 if (!more)
336 return(NULL);
c627d613 337
651443a7
DD
338 /* Skip over any initial spaces */
339 while(isspace(*s))
340 s++;
341
342 /* Are we at the end of the string? */
343 if (*s) {
344 /* remember the beginning of the token */
345 t=s;
346
347 /* Is this a '+' or '-' followed by a space (not whitespace)? */
348 if ((*s=='+' || *s=='-') && *(s+1)==' ')
349 s+=2;
350
351 /* Skip to the next space or the end of the string */
352 while(!isspace(*s) && *s!='\0')
353 s++;
354 } else {
355 t=NULL;
356 }
357
358 /* Have we reached the end of the string? */
359 if (*s)
360 *s++='\0';
361 else
362 more=0;
363 return(t);
364}
365
366
8f3a2d54
AT
367void add_exclude_line(char *p)
368{
369 char *tok;
370 if (!p || !*p) return;
371 p = strdup(p);
372 if (!p) out_of_memory("add_exclude_line");
651443a7 373 for (tok=get_exclude_tok(p); tok; tok=get_exclude_tok(NULL))
2b6b4d53 374 add_exclude(tok, 0);
8f3a2d54
AT
375 free(p);
376}
377
cd64343a
DD
378void add_include_line(char *p)
379{
380 char *tok;
381 if (!p || !*p) return;
382 p = strdup(p);
383 if (!p) out_of_memory("add_include_line");
651443a7 384 for (tok=get_exclude_tok(p); tok; tok=get_exclude_tok(NULL))
cd64343a
DD
385 add_exclude(tok, 1);
386 free(p);
387}
388
8f3a2d54 389
c627d613
AT
390static char *cvs_ignore_list[] = {
391 "RCS","SCCS","CVS","CVS.adm","RCSLOG","cvslog.*",
392 "tags","TAGS",".make.state",".nse_depinfo",
393 "*~", "#*", ".#*", ",*", "*.old", "*.bak", "*.BAK", "*.orig",
394 "*.rej", ".del-*", "*.a", "*.o", "*.obj", "*.so", "*.Z", "*.elc", "*.ln",
395 "core",NULL};
396
397
398
399void add_cvs_excludes(void)
400{
2b6b4d53
AT
401 char fname[MAXPATHLEN];
402 char *p;
403 int i;
c627d613 404
2b6b4d53
AT
405 for (i=0; cvs_ignore_list[i]; i++)
406 add_exclude(cvs_ignore_list[i], 0);
c627d613 407
2b6b4d53 408 if ((p=getenv("HOME")) && strlen(p) < (MAXPATHLEN-12)) {
8950ac03 409 snprintf(fname,sizeof(fname), "%s/.cvsignore",p);
2b6b4d53
AT
410 add_exclude_file(fname,0,0);
411 }
c627d613 412
2b6b4d53 413 add_exclude_line(getenv("CVSIGNORE"));
c627d613 414}