Added a "next" pointer to "exclude_struct" and added a new structure
[rsync/rsync.git] / exclude.c
CommitLineData
f0f5767f 1/* -*- c-file-style: "linux" -*-
0f2ac855 2 *
07a874fd
MP
3 * Copyright (C) 1996-2001 by Andrew Tridgell <tridge@samba.org>
4 * Copyright (C) 1996 by Paul Mackerras
5 * Copyright (C) 2002 by Martin Pool
0f2ac855 6 *
07a874fd
MP
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
0f2ac855 11 *
07a874fd
MP
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
0f2ac855 16 *
07a874fd
MP
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
c627d613 21
2b6b4d53
AT
22/* a lot of this stuff was originally derived from GNU tar, although
23 it has now changed so much that it is hard to tell :) */
c627d613 24
d567322f
MP
25/* include/exclude cluestick added by Martin Pool <mbp@samba.org> */
26
c627d613
AT
27#include "rsync.h"
28
29extern int verbose;
30
5be7fa93
WD
31struct exclude_struct **exclude_list;
32struct exclude_struct **local_exclude_list;
33struct exclude_struct **server_exclude_list;
34char *exclude_path_prefix = NULL;
c627d613 35
07a874fd 36/** Build an exclude structure given a exclude pattern */
f8f72644
WD
37static struct exclude_struct *make_exclude(const char *pattern, int pat_len,
38 int include)
c627d613 39{
2b6b4d53 40 struct exclude_struct *ret;
f8f72644
WD
41 const char *cp;
42 int ex_len;
c627d613 43
58cadc86 44 ret = new(struct exclude_struct);
f8f72644
WD
45 if (!ret)
46 out_of_memory("make_exclude");
c627d613 47
5f5be796 48 memset(ret, 0, sizeof ret[0]);
f8f72644 49 ret->include = include;
2b6b4d53 50
5be7fa93
WD
51 if (exclude_path_prefix)
52 ret->match_flags |= MATCHFLG_ABS_PATH;
f8f72644
WD
53 if (exclude_path_prefix && *pattern == '/')
54 ex_len = strlen(exclude_path_prefix);
55 else
56 ex_len = 0;
57 ret->pattern = new_array(char, ex_len + pat_len + 1);
58 if (!ret->pattern)
59 out_of_memory("make_exclude");
60 if (ex_len)
61 memcpy(ret->pattern, exclude_path_prefix, ex_len);
62 strlcpy(ret->pattern + ex_len, pattern, pat_len + 1);
63 pat_len += ex_len;
64
65 if (strpbrk(ret->pattern, "*[?")) {
170381c0 66 ret->match_flags |= MATCHFLG_WILD;
96d3590a 67 if ((cp = strstr(ret->pattern, "**")) != NULL) {
170381c0
WD
68 ret->match_flags |= MATCHFLG_WILD2;
69 /* If the pattern starts with **, note that. */
96d3590a 70 if (cp == ret->pattern)
170381c0 71 ret->match_flags |= MATCHFLG_WILD2_PREFIX;
0f2ac855 72 }
2bca43f6 73 }
c627d613 74
5be7fa93
WD
75 if (pat_len > 1 && ret->pattern[pat_len-1] == '/') {
76 ret->pattern[pat_len-1] = 0;
2b6b4d53
AT
77 ret->directory = 1;
78 }
c627d613 79
170381c0
WD
80 for (cp = ret->pattern; (cp = strchr(cp, '/')) != NULL; cp++)
81 ret->slash_cnt++;
0944563e 82
2b6b4d53
AT
83 return ret;
84}
85
86static void free_exclude(struct exclude_struct *ex)
87{
2b6b4d53 88 free(ex->pattern);
5f5be796 89 memset(ex, 0, sizeof ex[0]);
2b6b4d53
AT
90 free(ex);
91}
c627d613 92
5be7fa93
WD
93
94void free_exclude_list(struct exclude_struct ***listp)
95{
96 struct exclude_struct **list = *listp;
97
98 if (verbose > 2)
ea847c62 99 rprintf(FINFO, "[%s] clearing exclude list\n", who_am_i());
5be7fa93
WD
100
101 if (!list)
102 return;
103
104 while (*list)
105 free_exclude(*list++);
106
107 free(*listp);
108 *listp = NULL;
109}
110
d567322f 111static int check_one_exclude(char *name, struct exclude_struct *ex,
5be7fa93 112 int name_is_dir)
2b6b4d53
AT
113{
114 char *p;
0f2ac855 115 int match_start = 0;
2b6b4d53
AT
116 char *pattern = ex->pattern;
117
170381c0
WD
118 /* If the pattern does not have any slashes AND it does not have
119 * a "**" (which could match a slash), then we just match the
120 * name portion of the path. */
5be7fa93
WD
121 if (!ex->slash_cnt && !(ex->match_flags & MATCHFLG_WILD2)) {
122 if ((p = strrchr(name,'/')) != NULL)
123 name = p+1;
124 }
125 else if ((ex->match_flags & MATCHFLG_ABS_PATH) && *name != '/') {
126 static char full_name[MAXPATHLEN];
127 extern char curr_dir[];
128 int plus = curr_dir[1] == '\0'? 1 : 0;
a7725e6d 129 pathjoin(full_name, sizeof full_name, curr_dir+plus, name);
5be7fa93
WD
130 name = full_name;
131 }
2b6b4d53
AT
132
133 if (!name[0]) return 0;
134
5be7fa93 135 if (ex->directory && !name_is_dir) return 0;
2b6b4d53 136
170381c0 137 if (*pattern == '/') {
2b6b4d53
AT
138 match_start = 1;
139 pattern++;
170381c0
WD
140 if (*name == '/')
141 name++;
2b6b4d53
AT
142 }
143
170381c0 144 if (ex->match_flags & MATCHFLG_WILD) {
170381c0
WD
145 /* A non-anchored match with an infix slash and no "**"
146 * needs to match the last slash_cnt+1 name elements. */
147 if (!match_start && ex->slash_cnt &&
148 !(ex->match_flags & MATCHFLG_WILD2)) {
149 int cnt = ex->slash_cnt + 1;
150 for (p = name + strlen(name) - 1; p >= name; p--) {
151 if (*p == '/' && !--cnt)
152 break;
153 }
154 name = p+1;
155 }
fe332038 156 if (wildmatch(pattern, name))
2b6b4d53 157 return 1;
170381c0
WD
158 if (ex->match_flags & MATCHFLG_WILD2_PREFIX) {
159 /* If the **-prefixed pattern has a '/' as the next
160 * character, then try to match the rest of the
161 * pattern at the root. */
fe332038 162 if (pattern[2] == '/' && wildmatch(pattern+3, name))
170381c0 163 return 1;
c36cd317 164 }
170381c0
WD
165 else if (!match_start && ex->match_flags & MATCHFLG_WILD2) {
166 /* A non-anchored match with an infix or trailing "**"
167 * (but not a prefixed "**") needs to try matching
168 * after every slash. */
169 while ((name = strchr(name, '/')) != NULL) {
170 name++;
fe332038 171 if (wildmatch(pattern, name))
170381c0
WD
172 return 1;
173 }
174 }
175 } else if (match_start) {
176 if (strcmp(name,pattern) == 0)
177 return 1;
2b6b4d53
AT
178 } else {
179 int l1 = strlen(name);
ea2111d1 180 int l2 = strlen(pattern);
0f2ac855 181 if (l2 <= l1 &&
ea2111d1 182 strcmp(name+(l1-l2),pattern) == 0 &&
170381c0 183 (l1==l2 || name[l1-(l2+1)] == '/')) {
2b6b4d53 184 return 1;
c36cd317 185 }
2b6b4d53
AT
186 }
187
188 return 0;
c627d613
AT
189}
190
191
d567322f
MP
192static void report_exclude_result(char const *name,
193 struct exclude_struct const *ent,
61414c83 194 int name_is_dir, const char *type)
d567322f 195{
0f2ac855
WD
196 /* If a trailing slash is present to match only directories,
197 * then it is stripped out by make_exclude. So as a special
198 * case we add it back in here. */
199
ea847c62 200 if (verbose >= 2) {
61414c83 201 rprintf(FINFO, "[%s] %scluding %s %s because of %s %s%s\n",
f8f72644 202 who_am_i(), ent->include ? "in" : "ex",
61414c83
WD
203 name_is_dir ? "directory" : "file", name, type,
204 ent->pattern, ent->directory ? "/" : "");
ea847c62 205 }
d567322f
MP
206}
207
208
209/*
210 * Return true if file NAME is defined to be excluded by either
211 * LOCAL_EXCLUDE_LIST or the globals EXCLUDE_LIST.
212 */
61414c83
WD
213int check_exclude(struct exclude_struct **list, char *name, int name_is_dir,
214 const char *type)
c627d613 215{
0f2ac855 216 struct exclude_struct *ent;
c627d613 217
5be7fa93
WD
218 while ((ent = *list++) != NULL) {
219 if (check_one_exclude(name, ent, name_is_dir)) {
61414c83 220 report_exclude_result(name, ent, name_is_dir, type);
5be7fa93 221 return !ent->include;
0f2ac855 222 }
2b6b4d53 223 }
c627d613 224
2b6b4d53 225 return 0;
c627d613
AT
226}
227
228
f8f72644
WD
229/* Get the next include/exclude arg from the string. The token will not
230 * be '\0' terminated, so use the returned length to limit the string.
231 * Also, be sure to add this length to the returned pointer before passing
232 * it back to ask for the next token. This routine will not split off a
96d3590a
WD
233 * prefix of "+ " or "- " unless xflags contains XFLG_NO_PREFIXES. The
234 * *incl_ptr value will be 1 for an include, 0 for an exclude, and -1 for
235 * the list-clearing "!" token.
f8f72644 236 */
96d3590a
WD
237static const char *get_exclude_tok(const char *p, int *len_ptr, int *incl_ptr,
238 int xflags)
f8f72644 239{
abca4eba 240 const unsigned char *s = (const unsigned char *)p;
96d3590a 241 int len;
f8f72644 242
96d3590a
WD
243 if (xflags & XFLG_WORD_SPLIT) {
244 /* Skip over any initial whitespace. */
245 while (isspace(*s))
f8f72644 246 s++;
abca4eba
WD
247 /* Update for "!" check. */
248 p = (const char *)s;
f8f72644
WD
249 }
250
96d3590a
WD
251 /* Is this a '+' or '-' followed by a space (not whitespace)? */
252 if (!(xflags & XFLG_NO_PREFIXES)
253 && (*s == '-' || *s == '+') && s[1] == ' ') {
254 *incl_ptr = *s == '+';
255 s += 2;
256 } else
257 *incl_ptr = xflags & XFLG_DEF_INCLUDE;
258
259 if (xflags & XFLG_WORD_SPLIT) {
260 const unsigned char *cp = s;
261 /* Token ends at whitespace or the end of the string. */
262 while (!isspace(*cp) && *cp != '\0')
263 cp++;
264 len = cp - s;
265 } else
266 len = strlen(s);
267
abca4eba 268 if (*p == '!' && len == 1 && !(xflags & XFLG_NO_PREFIXES))
96d3590a
WD
269 *incl_ptr = -1;
270
271 *len_ptr = len;
272 return (const char *)s;
f8f72644
WD
273}
274
275
276void add_exclude(struct exclude_struct ***listp, const char *pattern, int xflags)
c627d613 277{
5be7fa93 278 struct exclude_struct **list = *listp;
96d3590a
WD
279 int pat_len, list_len = 0;
280 int incl, add_cnt = 1;
f8f72644 281 const char *cp;
5be7fa93 282
f8f72644 283 if (!pattern)
5e7dbaca 284 return;
f8f72644
WD
285
286 if (xflags & XFLG_WORD_SPLIT) {
96d3590a
WD
287 int add = 0;
288 /* Count maximum extra tokens we might encounter. */
289 for (cp = pattern; *cp; cp++) {
290 if (isspace(*(unsigned char *)cp)) {
291 add_cnt += add;
292 add = 0;
293 } else
294 add = 1;
f8f72644 295 }
96d3590a
WD
296 }
297
298 cp = get_exclude_tok(pattern, &pat_len, &incl, xflags);
299 if (!pat_len)
300 return;
f8f72644 301
96d3590a
WD
302 /* Check for the special "!" token that clears the list. Yes, we
303 * only honor it at the start of a XFLG_WORD_SPLIT string. */
304 if (incl < 0) {
305 free_exclude_list(listp);
306 if (!--add_cnt)
307 return;
308 cp = get_exclude_tok(cp + pat_len, &pat_len, &incl, xflags);
309 if (!pat_len)
f8f72644 310 return;
2b6b4d53
AT
311 }
312
5be7fa93 313 if (list)
f8f72644 314 for ( ; list[list_len]; list_len++) {}
0f2ac855 315
f8f72644
WD
316 list = *listp = realloc_array(list, struct exclude_struct *,
317 list_len + add_cnt + 1);
318 if (!list)
2b6b4d53 319 out_of_memory("add_exclude");
0f2ac855 320
f8f72644 321 while (pat_len) {
f8f72644
WD
322 list[list_len++] = make_exclude(cp, pat_len, incl);
323
324 if (verbose > 2) {
325 rprintf(FINFO, "[%s] add_exclude(%s,%s)\n",
326 who_am_i(), cp,
327 incl ? "include" : "exclude");
328 }
96d3590a 329 cp = get_exclude_tok(cp + pat_len, &pat_len, &incl, xflags);
8c35542d
MP
330 }
331
f8f72644 332 list[list_len] = NULL;
c627d613
AT
333}
334
c627d613 335
5be7fa93 336void add_exclude_file(struct exclude_struct ***listp, const char *fname,
f8f72644 337 int xflags)
c627d613 338{
5e7dbaca 339 FILE *fp;
2b6b4d53 340 char line[MAXPATHLEN];
ccdff3eb
WD
341 char *eob = line + MAXPATHLEN - 1;
342 extern int eol_nulls;
343
5be7fa93
WD
344 if (!fname || !*fname)
345 return;
346
347 if (*fname != '-' || fname[1])
5e7dbaca 348 fp = fopen(fname, "rb");
ccdff3eb 349 else
5e7dbaca
WD
350 fp = stdin;
351 if (!fp) {
f8f72644 352 if (xflags & XFLG_FATAL_ERRORS) {
a039749b 353 rsyserr(FERROR, errno,
0f2ac855 354 "failed to open %s file %s",
f8f72644 355 xflags & XFLG_DEF_INCLUDE ? "include" : "exclude",
0f2ac855 356 fname);
65417579 357 exit_cleanup(RERR_FILEIO);
2b6b4d53 358 }
5be7fa93 359 return;
2b6b4d53
AT
360 }
361
ccdff3eb 362 while (1) {
5e7dbaca
WD
363 char *s = line;
364 int ch;
ccdff3eb 365 while (1) {
5e7dbaca
WD
366 if ((ch = getc(fp)) == EOF) {
367 if (ferror(fp) && errno == EINTR)
ccdff3eb
WD
368 continue;
369 break;
370 }
371 if (eol_nulls? !ch : (ch == '\n' || ch == '\r'))
372 break;
373 if (s < eob)
374 *s++ = ch;
375 }
376 *s = '\0';
377 if (*line && *line != ';' && *line != '#') {
122f19a6 378 /* Skip lines starting with semicolon or pound.
ccdff3eb
WD
379 * It probably wouldn't cause any harm to not skip
380 * them but there's no need to save them. */
f8f72644 381 add_exclude(listp, line, xflags);
122f19a6 382 }
5e7dbaca 383 if (ch == EOF)
ccdff3eb 384 break;
2b6b4d53 385 }
5e7dbaca 386 fclose(fp);
c627d613
AT
387}
388
389
390void send_exclude_list(int f)
391{
2b6b4d53 392 int i;
25cf8893
AT
393 extern int list_only, recurse;
394
bb7c4fa3
MP
395 /* This is a complete hack - blame Rusty.
396 *
397 * FIXME: This pattern shows up in the output of
398 * report_exclude_result(), which is not ideal. */
5be7fa93 399 if (list_only && !recurse)
f8f72644 400 add_exclude(&exclude_list, "/*/*", 0);
2b6b4d53
AT
401
402 if (!exclude_list) {
a3dbb20a 403 write_int(f, 0);
2b6b4d53
AT
404 return;
405 }
406
5f5be796
WD
407 for (i = 0; exclude_list[i]; i++) {
408 unsigned int l;
a3dbb20a 409 char p[MAXPATHLEN+1];
2fb139c1 410
a3dbb20a 411 l = strlcpy(p, exclude_list[i]->pattern, sizeof p);
5f5be796
WD
412 if (l == 0 || l >= MAXPATHLEN)
413 continue;
414 if (exclude_list[i]->directory) {
a3dbb20a
WD
415 p[l++] = '/';
416 p[l] = '\0';
5f5be796 417 }
2b6b4d53 418
587cb08d 419 if (exclude_list[i]->include) {
a3dbb20a
WD
420 write_int(f, l + 2);
421 write_buf(f, "+ ", 2);
422 } else if ((*p == '-' || *p == '+') && p[1] == ' ') {
423 write_int(f, l + 2);
424 write_buf(f, "- ", 2);
425 } else
426 write_int(f, l);
427 write_buf(f, p, l);
0f2ac855 428 }
2b6b4d53 429
a3dbb20a 430 write_int(f, 0);
c627d613
AT
431}
432
433
434void recv_exclude_list(int f)
435{
5f5be796 436 char line[MAXPATHLEN+1]; /* Allows a trailing slash on a max-len dir */
9dd891bb
MP
437 unsigned int l;
438
5f5be796
WD
439 while ((l = read_int(f)) != 0) {
440 if (l >= sizeof line)
441 overflow("recv_exclude_list");
442 read_sbuf(f, line, l);
f8f72644 443 add_exclude(&exclude_list, line, 0);
651443a7 444 }
651443a7
DD
445}
446
0f2ac855 447
f8f72644
WD
448static char default_cvsignore[] =
449 /* These default ignored items come from the CVS manual. */
450 "RCS SCCS CVS CVS.adm RCSLOG cvslog.* tags TAGS"
451 " .make.state .nse_depinfo *~ #* .#* ,* _$* *$"
452 " *.old *.bak *.BAK *.orig *.rej .del-*"
453 " *.a *.olb *.o *.obj *.so *.exe"
454 " *.Z *.elc *.ln core"
455 /* The rest we added to suit ourself. */
456 " .svn/";
c627d613
AT
457
458void add_cvs_excludes(void)
459{
2b6b4d53
AT
460 char fname[MAXPATHLEN];
461 char *p;
0f2ac855 462
f8f72644
WD
463 add_exclude(&exclude_list, default_cvsignore,
464 XFLG_WORD_SPLIT | XFLG_NO_PREFIXES);
c627d613 465
a7725e6d 466 if ((p = getenv("HOME"))
f8f72644
WD
467 && pathjoin(fname, sizeof fname, p, ".cvsignore") < sizeof fname) {
468 add_exclude_file(&exclude_list, fname,
469 XFLG_WORD_SPLIT | XFLG_NO_PREFIXES);
470 }
c627d613 471
f8f72644
WD
472 add_exclude(&exclude_list, getenv("CVSIGNORE"),
473 XFLG_WORD_SPLIT | XFLG_NO_PREFIXES);
c627d613 474}