Tweaked the alloc/realloc code in flist_expand().
[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;
40d38dc0
WD
30extern int eol_nulls;
31extern int list_only;
32extern int recurse;
33
34extern char curr_dir[];
c627d613 35
67340e95 36struct exclude_list_struct exclude_list = { 0, 0, "" };
82a51ea5 37struct exclude_list_struct local_exclude_list = { 0, 0, "per-dir .cvsignore " };
67340e95 38struct exclude_list_struct server_exclude_list = { 0, 0, "server " };
5be7fa93 39char *exclude_path_prefix = NULL;
c627d613 40
5e972dcf
WD
41/** Build an exclude structure given an exclude pattern. */
42static void make_exclude(struct exclude_list_struct *listp, const char *pat,
43 unsigned int pat_len, unsigned int mflags)
c627d613 44{
2b6b4d53 45 struct exclude_struct *ret;
f8f72644 46 const char *cp;
5e972dcf 47 unsigned int ex_len;
c627d613 48
58cadc86 49 ret = new(struct exclude_struct);
f8f72644
WD
50 if (!ret)
51 out_of_memory("make_exclude");
c627d613 52
5f5be796 53 memset(ret, 0, sizeof ret[0]);
2b6b4d53 54
5be7fa93 55 if (exclude_path_prefix)
5e972dcf
WD
56 mflags |= MATCHFLG_ABS_PATH;
57 if (exclude_path_prefix && *pat == '/')
f8f72644
WD
58 ex_len = strlen(exclude_path_prefix);
59 else
60 ex_len = 0;
61 ret->pattern = new_array(char, ex_len + pat_len + 1);
62 if (!ret->pattern)
63 out_of_memory("make_exclude");
64 if (ex_len)
65 memcpy(ret->pattern, exclude_path_prefix, ex_len);
5e972dcf 66 strlcpy(ret->pattern + ex_len, pat, pat_len + 1);
f8f72644
WD
67 pat_len += ex_len;
68
69 if (strpbrk(ret->pattern, "*[?")) {
5e972dcf 70 mflags |= MATCHFLG_WILD;
96d3590a 71 if ((cp = strstr(ret->pattern, "**")) != NULL) {
5e972dcf 72 mflags |= MATCHFLG_WILD2;
170381c0 73 /* If the pattern starts with **, note that. */
96d3590a 74 if (cp == ret->pattern)
5e972dcf 75 mflags |= MATCHFLG_WILD2_PREFIX;
0f2ac855 76 }
2bca43f6 77 }
c627d613 78
5be7fa93
WD
79 if (pat_len > 1 && ret->pattern[pat_len-1] == '/') {
80 ret->pattern[pat_len-1] = 0;
5e972dcf 81 mflags |= MATCHFLG_DIRECTORY;
2b6b4d53 82 }
c627d613 83
170381c0
WD
84 for (cp = ret->pattern; (cp = strchr(cp, '/')) != NULL; cp++)
85 ret->slash_cnt++;
0944563e 86
c1b29492
WD
87 ret->match_flags = mflags;
88
b2aa573b
WD
89 if (!listp->tail)
90 listp->head = listp->tail = ret;
91 else {
92 listp->tail->next = ret;
93 listp->tail = ret;
94 }
2b6b4d53
AT
95}
96
97static void free_exclude(struct exclude_struct *ex)
98{
2b6b4d53 99 free(ex->pattern);
2b6b4d53
AT
100 free(ex);
101}
c627d613 102
8cbf495a 103void clear_exclude_list(struct exclude_list_struct *listp)
5be7fa93 104{
b2aa573b 105 struct exclude_struct *ent, *next;
5be7fa93 106
b2aa573b
WD
107 for (ent = listp->head; ent; ent = next) {
108 next = ent->next;
109 free_exclude(ent);
110 }
5be7fa93 111
67340e95 112 listp->head = listp->tail = NULL;
5be7fa93
WD
113}
114
d567322f 115static int check_one_exclude(char *name, struct exclude_struct *ex,
5be7fa93 116 int name_is_dir)
2b6b4d53
AT
117{
118 char *p;
0f2ac855 119 int match_start = 0;
2b6b4d53
AT
120 char *pattern = ex->pattern;
121
170381c0
WD
122 /* If the pattern does not have any slashes AND it does not have
123 * a "**" (which could match a slash), then we just match the
124 * name portion of the path. */
5be7fa93
WD
125 if (!ex->slash_cnt && !(ex->match_flags & MATCHFLG_WILD2)) {
126 if ((p = strrchr(name,'/')) != NULL)
127 name = p+1;
128 }
5e972dcf 129 else if (ex->match_flags & MATCHFLG_ABS_PATH && *name != '/') {
5be7fa93 130 static char full_name[MAXPATHLEN];
5be7fa93 131 int plus = curr_dir[1] == '\0'? 1 : 0;
a7725e6d 132 pathjoin(full_name, sizeof full_name, curr_dir+plus, name);
5be7fa93
WD
133 name = full_name;
134 }
2b6b4d53
AT
135
136 if (!name[0]) return 0;
137
5e972dcf
WD
138 if (ex->match_flags & MATCHFLG_DIRECTORY && !name_is_dir)
139 return 0;
2b6b4d53 140
170381c0 141 if (*pattern == '/') {
2b6b4d53
AT
142 match_start = 1;
143 pattern++;
170381c0
WD
144 if (*name == '/')
145 name++;
2b6b4d53
AT
146 }
147
170381c0 148 if (ex->match_flags & MATCHFLG_WILD) {
170381c0
WD
149 /* A non-anchored match with an infix slash and no "**"
150 * needs to match the last slash_cnt+1 name elements. */
5e972dcf
WD
151 if (!match_start && ex->slash_cnt
152 && !(ex->match_flags & MATCHFLG_WILD2)) {
170381c0
WD
153 int cnt = ex->slash_cnt + 1;
154 for (p = name + strlen(name) - 1; p >= name; p--) {
155 if (*p == '/' && !--cnt)
156 break;
157 }
158 name = p+1;
159 }
fe332038 160 if (wildmatch(pattern, name))
2b6b4d53 161 return 1;
170381c0
WD
162 if (ex->match_flags & MATCHFLG_WILD2_PREFIX) {
163 /* If the **-prefixed pattern has a '/' as the next
164 * character, then try to match the rest of the
165 * pattern at the root. */
fe332038 166 if (pattern[2] == '/' && wildmatch(pattern+3, name))
170381c0 167 return 1;
c36cd317 168 }
170381c0
WD
169 else if (!match_start && ex->match_flags & MATCHFLG_WILD2) {
170 /* A non-anchored match with an infix or trailing "**"
171 * (but not a prefixed "**") needs to try matching
172 * after every slash. */
173 while ((name = strchr(name, '/')) != NULL) {
174 name++;
fe332038 175 if (wildmatch(pattern, name))
170381c0
WD
176 return 1;
177 }
178 }
179 } else if (match_start) {
180 if (strcmp(name,pattern) == 0)
181 return 1;
2b6b4d53
AT
182 } else {
183 int l1 = strlen(name);
ea2111d1 184 int l2 = strlen(pattern);
0f2ac855 185 if (l2 <= l1 &&
ea2111d1 186 strcmp(name+(l1-l2),pattern) == 0 &&
170381c0 187 (l1==l2 || name[l1-(l2+1)] == '/')) {
2b6b4d53 188 return 1;
c36cd317 189 }
2b6b4d53
AT
190 }
191
192 return 0;
c627d613
AT
193}
194
195
d567322f
MP
196static void report_exclude_result(char const *name,
197 struct exclude_struct const *ent,
61414c83 198 int name_is_dir, const char *type)
d567322f 199{
0f2ac855
WD
200 /* If a trailing slash is present to match only directories,
201 * then it is stripped out by make_exclude. So as a special
202 * case we add it back in here. */
203
ea847c62 204 if (verbose >= 2) {
67340e95 205 rprintf(FINFO, "[%s] %scluding %s %s because of %spattern %s%s\n",
5e972dcf
WD
206 who_am_i(),
207 ent->match_flags & MATCHFLG_INCLUDE ? "in" : "ex",
61414c83 208 name_is_dir ? "directory" : "file", name, type,
5e972dcf
WD
209 ent->pattern,
210 ent->match_flags & MATCHFLG_DIRECTORY ? "/" : "");
ea847c62 211 }
d567322f
MP
212}
213
214
215/*
a6536635
WD
216 * Return -1 if file "name" is defined to be excluded by the specified
217 * exclude list, 1 if it is included, and 0 if it was not matched.
d567322f 218 */
67340e95 219int check_exclude(struct exclude_list_struct *listp, char *name, int name_is_dir)
c627d613 220{
0f2ac855 221 struct exclude_struct *ent;
c627d613 222
b2aa573b 223 for (ent = listp->head; ent; ent = ent->next) {
5be7fa93 224 if (check_one_exclude(name, ent, name_is_dir)) {
67340e95
WD
225 report_exclude_result(name, ent, name_is_dir,
226 listp->debug_type);
5e972dcf 227 return ent->match_flags & MATCHFLG_INCLUDE ? 1 : -1;
0f2ac855 228 }
2b6b4d53 229 }
c627d613 230
2b6b4d53 231 return 0;
c627d613
AT
232}
233
234
f8f72644
WD
235/* Get the next include/exclude arg from the string. The token will not
236 * be '\0' terminated, so use the returned length to limit the string.
237 * Also, be sure to add this length to the returned pointer before passing
968ff560 238 * it back to ask for the next token. This routine will not parse the +/-
7f0feb4d 239 * prefixes or the "!" token when xflags contains XFLG_WORDS_ONLY. The
96d3590a
WD
240 * *incl_ptr value will be 1 for an include, 0 for an exclude, and -1 for
241 * the list-clearing "!" token.
f8f72644 242 */
5e972dcf
WD
243static const char *get_exclude_tok(const char *p, unsigned int *len_ptr,
244 unsigned int *flag_ptr, int xflags)
f8f72644 245{
abca4eba 246 const unsigned char *s = (const unsigned char *)p;
5e972dcf 247 unsigned int len, mflags = 0;
f8f72644 248
96d3590a
WD
249 if (xflags & XFLG_WORD_SPLIT) {
250 /* Skip over any initial whitespace. */
251 while (isspace(*s))
f8f72644 252 s++;
abca4eba
WD
253 /* Update for "!" check. */
254 p = (const char *)s;
f8f72644
WD
255 }
256
96d3590a 257 /* Is this a '+' or '-' followed by a space (not whitespace)? */
7f0feb4d 258 if (!(xflags & XFLG_WORDS_ONLY)
96d3590a 259 && (*s == '-' || *s == '+') && s[1] == ' ') {
5e972dcf
WD
260 if (*s == '+')
261 mflags |= MATCHFLG_INCLUDE;
96d3590a 262 s += 2;
5e972dcf
WD
263 } else if (xflags & XFLG_DEF_INCLUDE)
264 mflags |= MATCHFLG_INCLUDE;
96d3590a
WD
265
266 if (xflags & XFLG_WORD_SPLIT) {
267 const unsigned char *cp = s;
268 /* Token ends at whitespace or the end of the string. */
269 while (!isspace(*cp) && *cp != '\0')
270 cp++;
271 len = cp - s;
272 } else
273 len = strlen(s);
274
7f0feb4d 275 if (*p == '!' && len == 1 && !(xflags & XFLG_WORDS_ONLY))
5e972dcf 276 mflags |= MATCHFLG_CLEAR_LIST;
96d3590a
WD
277
278 *len_ptr = len;
5e972dcf 279 *flag_ptr = mflags;
96d3590a 280 return (const char *)s;
f8f72644
WD
281}
282
283
b2aa573b
WD
284void add_exclude(struct exclude_list_struct *listp, const char *pattern,
285 int xflags)
c627d613 286{
5e972dcf 287 unsigned int pat_len, mflags;
f8f72644 288 const char *cp;
5be7fa93 289
f8f72644 290 if (!pattern)
5e7dbaca 291 return;
f8f72644 292
b2aa573b
WD
293 cp = pattern;
294 pat_len = 0;
295 while (1) {
5e972dcf 296 cp = get_exclude_tok(cp + pat_len, &pat_len, &mflags, xflags);
96d3590a 297 if (!pat_len)
b2aa573b 298 break;
5e972dcf
WD
299
300 if (mflags & MATCHFLG_CLEAR_LIST) {
de91e757
WD
301 if (verbose > 2) {
302 rprintf(FINFO,
303 "[%s] clearing %sexclude list\n",
304 who_am_i(), listp->debug_type);
305 }
8cbf495a 306 clear_exclude_list(listp);
5e972dcf
WD
307 continue;
308 }
b2aa573b 309
5e972dcf
WD
310 make_exclude(listp, cp, pat_len, mflags);
311
312 if (verbose > 2) {
313 rprintf(FINFO, "[%s] add_exclude(%.*s, %s%sclude)\n",
cb213f1c 314 who_am_i(), (int)pat_len, cp, listp->debug_type,
5e972dcf 315 mflags & MATCHFLG_INCLUDE ? "in" : "ex");
f8f72644 316 }
8c35542d 317 }
c627d613
AT
318}
319
c627d613 320
b2aa573b 321void add_exclude_file(struct exclude_list_struct *listp, const char *fname,
f8f72644 322 int xflags)
c627d613 323{
5e7dbaca 324 FILE *fp;
619d21ff 325 char line[MAXPATHLEN+3]; /* Room for "x " prefix and trailing slash. */
ccdff3eb 326 char *eob = line + MAXPATHLEN - 1;
40d38dc0 327 int word_split = xflags & XFLG_WORD_SPLIT;
ccdff3eb 328
5be7fa93
WD
329 if (!fname || !*fname)
330 return;
331
332 if (*fname != '-' || fname[1])
5e7dbaca 333 fp = fopen(fname, "rb");
ccdff3eb 334 else
5e7dbaca
WD
335 fp = stdin;
336 if (!fp) {
f8f72644 337 if (xflags & XFLG_FATAL_ERRORS) {
a039749b 338 rsyserr(FERROR, errno,
0f2ac855 339 "failed to open %s file %s",
f8f72644 340 xflags & XFLG_DEF_INCLUDE ? "include" : "exclude",
0f2ac855 341 fname);
65417579 342 exit_cleanup(RERR_FILEIO);
2b6b4d53 343 }
5be7fa93 344 return;
2b6b4d53
AT
345 }
346
ccdff3eb 347 while (1) {
5e7dbaca 348 char *s = line;
619d21ff 349 int ch, overflow = 0;
ccdff3eb 350 while (1) {
5e7dbaca
WD
351 if ((ch = getc(fp)) == EOF) {
352 if (ferror(fp) && errno == EINTR)
ccdff3eb
WD
353 continue;
354 break;
355 }
40d38dc0
WD
356 if (word_split && isspace(ch))
357 break;
ccdff3eb
WD
358 if (eol_nulls? !ch : (ch == '\n' || ch == '\r'))
359 break;
360 if (s < eob)
361 *s++ = ch;
619d21ff
WD
362 else
363 overflow = 1;
364 }
365 if (overflow) {
366 rprintf(FERROR, "discarding over-long exclude: %s...\n", line);
367 s = line;
ccdff3eb
WD
368 }
369 *s = '\0';
7f0feb4d
WD
370 /* Skip an empty token and (when line parsing) comments. */
371 if (*line && (word_split || (*line != ';' && *line != '#')))
f8f72644 372 add_exclude(listp, line, xflags);
5e7dbaca 373 if (ch == EOF)
ccdff3eb 374 break;
2b6b4d53 375 }
5e7dbaca 376 fclose(fp);
c627d613
AT
377}
378
379
380void send_exclude_list(int f)
381{
b2aa573b 382 struct exclude_struct *ent;
25cf8893 383
bb7c4fa3
MP
384 /* This is a complete hack - blame Rusty.
385 *
386 * FIXME: This pattern shows up in the output of
387 * report_exclude_result(), which is not ideal. */
5be7fa93 388 if (list_only && !recurse)
f8f72644 389 add_exclude(&exclude_list, "/*/*", 0);
2b6b4d53 390
b2aa573b 391 for (ent = exclude_list.head; ent; ent = ent->next) {
5f5be796 392 unsigned int l;
a3dbb20a 393 char p[MAXPATHLEN+1];
2fb139c1 394
b2aa573b 395 l = strlcpy(p, ent->pattern, sizeof p);
5f5be796
WD
396 if (l == 0 || l >= MAXPATHLEN)
397 continue;
5e972dcf 398 if (ent->match_flags & MATCHFLG_DIRECTORY) {
a3dbb20a
WD
399 p[l++] = '/';
400 p[l] = '\0';
5f5be796 401 }
2b6b4d53 402
5e972dcf 403 if (ent->match_flags & MATCHFLG_INCLUDE) {
a3dbb20a
WD
404 write_int(f, l + 2);
405 write_buf(f, "+ ", 2);
406 } else if ((*p == '-' || *p == '+') && p[1] == ' ') {
407 write_int(f, l + 2);
408 write_buf(f, "- ", 2);
409 } else
410 write_int(f, l);
411 write_buf(f, p, l);
0f2ac855 412 }
2b6b4d53 413
a3dbb20a 414 write_int(f, 0);
c627d613
AT
415}
416
417
418void recv_exclude_list(int f)
419{
619d21ff 420 char line[MAXPATHLEN+3]; /* Room for "x " prefix and trailing slash. */
9dd891bb
MP
421 unsigned int l;
422
5f5be796
WD
423 while ((l = read_int(f)) != 0) {
424 if (l >= sizeof line)
425 overflow("recv_exclude_list");
426 read_sbuf(f, line, l);
f8f72644 427 add_exclude(&exclude_list, line, 0);
651443a7 428 }
651443a7
DD
429}
430
0f2ac855 431
f8f72644
WD
432static char default_cvsignore[] =
433 /* These default ignored items come from the CVS manual. */
434 "RCS SCCS CVS CVS.adm RCSLOG cvslog.* tags TAGS"
435 " .make.state .nse_depinfo *~ #* .#* ,* _$* *$"
436 " *.old *.bak *.BAK *.orig *.rej .del-*"
437 " *.a *.olb *.o *.obj *.so *.exe"
438 " *.Z *.elc *.ln core"
439 /* The rest we added to suit ourself. */
440 " .svn/";
c627d613
AT
441
442void add_cvs_excludes(void)
443{
2b6b4d53
AT
444 char fname[MAXPATHLEN];
445 char *p;
0f2ac855 446
f8f72644 447 add_exclude(&exclude_list, default_cvsignore,
7f0feb4d 448 XFLG_WORD_SPLIT | XFLG_WORDS_ONLY);
c627d613 449
a7725e6d 450 if ((p = getenv("HOME"))
f8f72644
WD
451 && pathjoin(fname, sizeof fname, p, ".cvsignore") < sizeof fname) {
452 add_exclude_file(&exclude_list, fname,
7f0feb4d 453 XFLG_WORD_SPLIT | XFLG_WORDS_ONLY);
f8f72644 454 }
c627d613 455
f8f72644 456 add_exclude(&exclude_list, getenv("CVSIGNORE"),
7f0feb4d 457 XFLG_WORD_SPLIT | XFLG_WORDS_ONLY);
c627d613 458}