The device-handling code is no longer omitted based on HAVE_MKNOD
[rsync/rsync.git] / exclude.c
... / ...
CommitLineData
1/* -*- c-file-style: "linux" -*-
2 *
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
6 *
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.
11 *
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.
16 *
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 */
21
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 :) */
24
25/* include/exclude cluestick added by Martin Pool <mbp@samba.org> */
26
27#include "rsync.h"
28
29extern int verbose;
30extern int eol_nulls;
31extern int list_only;
32extern int recurse;
33
34extern char curr_dir[];
35
36struct exclude_list_struct exclude_list = { 0, 0, "" };
37struct exclude_list_struct local_exclude_list = { 0, 0, "per-dir .cvsignore " };
38struct exclude_list_struct server_exclude_list = { 0, 0, "server " };
39char *exclude_path_prefix = NULL;
40
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)
44{
45 struct exclude_struct *ret;
46 const char *cp;
47 unsigned int ex_len;
48
49 ret = new(struct exclude_struct);
50 if (!ret)
51 out_of_memory("make_exclude");
52
53 memset(ret, 0, sizeof ret[0]);
54
55 if (exclude_path_prefix)
56 mflags |= MATCHFLG_ABS_PATH;
57 if (exclude_path_prefix && *pat == '/')
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);
66 strlcpy(ret->pattern + ex_len, pat, pat_len + 1);
67 pat_len += ex_len;
68
69 if (strpbrk(ret->pattern, "*[?")) {
70 mflags |= MATCHFLG_WILD;
71 if ((cp = strstr(ret->pattern, "**")) != NULL) {
72 mflags |= MATCHFLG_WILD2;
73 /* If the pattern starts with **, note that. */
74 if (cp == ret->pattern)
75 mflags |= MATCHFLG_WILD2_PREFIX;
76 }
77 }
78
79 if (pat_len > 1 && ret->pattern[pat_len-1] == '/') {
80 ret->pattern[pat_len-1] = 0;
81 mflags |= MATCHFLG_DIRECTORY;
82 }
83
84 for (cp = ret->pattern; (cp = strchr(cp, '/')) != NULL; cp++)
85 ret->slash_cnt++;
86
87 ret->match_flags = mflags;
88
89 if (!listp->tail)
90 listp->head = listp->tail = ret;
91 else {
92 listp->tail->next = ret;
93 listp->tail = ret;
94 }
95}
96
97static void free_exclude(struct exclude_struct *ex)
98{
99 free(ex->pattern);
100 free(ex);
101}
102
103void clear_exclude_list(struct exclude_list_struct *listp)
104{
105 struct exclude_struct *ent, *next;
106
107 for (ent = listp->head; ent; ent = next) {
108 next = ent->next;
109 free_exclude(ent);
110 }
111
112 listp->head = listp->tail = NULL;
113}
114
115static int check_one_exclude(char *name, struct exclude_struct *ex,
116 int name_is_dir)
117{
118 char *p, full_name[MAXPATHLEN];
119 int match_start = 0;
120 char *pattern = ex->pattern;
121
122 if (!*name)
123 return 0;
124
125 /* If the pattern does not have any slashes AND it does not have
126 * a "**" (which could match a slash), then we just match the
127 * name portion of the path. */
128 if (!ex->slash_cnt && !(ex->match_flags & MATCHFLG_WILD2)) {
129 if ((p = strrchr(name,'/')) != NULL)
130 name = p+1;
131 }
132 else if (ex->match_flags & MATCHFLG_ABS_PATH && *name != '/'
133 && curr_dir[1]) {
134 pathjoin(full_name, sizeof full_name, curr_dir + 1, name);
135 name = full_name;
136 }
137
138 if (ex->match_flags & MATCHFLG_DIRECTORY && !name_is_dir)
139 return 0;
140
141 if (*pattern == '/') {
142 match_start = 1;
143 pattern++;
144 if (*name == '/')
145 name++;
146 }
147
148 if (ex->match_flags & MATCHFLG_WILD) {
149 /* A non-anchored match with an infix slash and no "**"
150 * needs to match the last slash_cnt+1 name elements. */
151 if (!match_start && ex->slash_cnt
152 && !(ex->match_flags & MATCHFLG_WILD2)) {
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 }
160 if (wildmatch(pattern, name))
161 return 1;
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. */
166 if (pattern[2] == '/' && wildmatch(pattern+3, name))
167 return 1;
168 }
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++;
175 if (wildmatch(pattern, name))
176 return 1;
177 }
178 }
179 } else if (match_start) {
180 if (strcmp(name,pattern) == 0)
181 return 1;
182 } else {
183 int l1 = strlen(name);
184 int l2 = strlen(pattern);
185 if (l2 <= l1 &&
186 strcmp(name+(l1-l2),pattern) == 0 &&
187 (l1==l2 || name[l1-(l2+1)] == '/')) {
188 return 1;
189 }
190 }
191
192 return 0;
193}
194
195
196static void report_exclude_result(char const *name,
197 struct exclude_struct const *ent,
198 int name_is_dir, const char *type)
199{
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
204 if (verbose >= 2) {
205 rprintf(FINFO, "[%s] %scluding %s %s because of %spattern %s%s\n",
206 who_am_i(),
207 ent->match_flags & MATCHFLG_INCLUDE ? "in" : "ex",
208 name_is_dir ? "directory" : "file", name, type,
209 ent->pattern,
210 ent->match_flags & MATCHFLG_DIRECTORY ? "/" : "");
211 }
212}
213
214
215/*
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.
218 */
219int check_exclude(struct exclude_list_struct *listp, char *name, int name_is_dir)
220{
221 struct exclude_struct *ent;
222
223 for (ent = listp->head; ent; ent = ent->next) {
224 if (check_one_exclude(name, ent, name_is_dir)) {
225 report_exclude_result(name, ent, name_is_dir,
226 listp->debug_type);
227 return ent->match_flags & MATCHFLG_INCLUDE ? 1 : -1;
228 }
229 }
230
231 return 0;
232}
233
234
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
238 * it back to ask for the next token. This routine parses the +/- prefixes
239 * and the "!" token unless xflags contains XFLG_WORDS_ONLY. The *flag_ptr
240 * value will also be set to the MATCHFLG_* bits for the current token.
241 */
242static const char *get_exclude_tok(const char *p, unsigned int *len_ptr,
243 unsigned int *flag_ptr, int xflags)
244{
245 const unsigned char *s = (const unsigned char *)p;
246 unsigned int len, mflags = 0;
247
248 if (xflags & XFLG_WORD_SPLIT) {
249 /* Skip over any initial whitespace. */
250 while (isspace(*s))
251 s++;
252 /* Update for "!" check. */
253 p = (const char *)s;
254 }
255
256 /* Is this a '+' or '-' followed by a space (not whitespace)? */
257 if (!(xflags & XFLG_WORDS_ONLY)
258 && (*s == '-' || *s == '+') && s[1] == ' ') {
259 if (*s == '+')
260 mflags |= MATCHFLG_INCLUDE;
261 s += 2;
262 } else if (xflags & XFLG_DEF_INCLUDE)
263 mflags |= MATCHFLG_INCLUDE;
264 if (xflags & XFLG_DIRECTORY)
265 mflags |= MATCHFLG_DIRECTORY;
266
267 if (xflags & XFLG_WORD_SPLIT) {
268 const unsigned char *cp = s;
269 /* Token ends at whitespace or the end of the string. */
270 while (!isspace(*cp) && *cp != '\0')
271 cp++;
272 len = cp - s;
273 } else
274 len = strlen(s);
275
276 if (*p == '!' && len == 1 && !(xflags & XFLG_WORDS_ONLY))
277 mflags |= MATCHFLG_CLEAR_LIST;
278
279 *len_ptr = len;
280 *flag_ptr = mflags;
281 return (const char *)s;
282}
283
284
285void add_exclude(struct exclude_list_struct *listp, const char *pattern,
286 int xflags)
287{
288 unsigned int pat_len, mflags;
289 const char *cp;
290
291 if (!pattern)
292 return;
293
294 cp = pattern;
295 pat_len = 0;
296 while (1) {
297 cp = get_exclude_tok(cp + pat_len, &pat_len, &mflags, xflags);
298 if (!pat_len)
299 break;
300
301 if (mflags & MATCHFLG_CLEAR_LIST) {
302 if (verbose > 2) {
303 rprintf(FINFO,
304 "[%s] clearing %sexclude list\n",
305 who_am_i(), listp->debug_type);
306 }
307 clear_exclude_list(listp);
308 continue;
309 }
310
311 make_exclude(listp, cp, pat_len, mflags);
312
313 if (verbose > 2) {
314 rprintf(FINFO, "[%s] add_exclude(%.*s, %s%sclude)\n",
315 who_am_i(), (int)pat_len, cp, listp->debug_type,
316 mflags & MATCHFLG_INCLUDE ? "in" : "ex");
317 }
318 }
319}
320
321
322void add_exclude_file(struct exclude_list_struct *listp, const char *fname,
323 int xflags)
324{
325 FILE *fp;
326 char line[MAXPATHLEN+3]; /* Room for "x " prefix and trailing slash. */
327 char *eob = line + sizeof line - 1;
328 int word_split = xflags & XFLG_WORD_SPLIT;
329
330 if (!fname || !*fname)
331 return;
332
333 if (*fname != '-' || fname[1])
334 fp = fopen(fname, "rb");
335 else
336 fp = stdin;
337 if (!fp) {
338 if (xflags & XFLG_FATAL_ERRORS) {
339 rsyserr(FERROR, errno,
340 "failed to open %s file %s",
341 xflags & XFLG_DEF_INCLUDE ? "include" : "exclude",
342 fname);
343 exit_cleanup(RERR_FILEIO);
344 }
345 return;
346 }
347
348 while (1) {
349 char *s = line;
350 int ch, overflow = 0;
351 while (1) {
352 if ((ch = getc(fp)) == EOF) {
353 if (ferror(fp) && errno == EINTR)
354 continue;
355 break;
356 }
357 if (word_split && isspace(ch))
358 break;
359 if (eol_nulls? !ch : (ch == '\n' || ch == '\r'))
360 break;
361 if (s < eob)
362 *s++ = ch;
363 else
364 overflow = 1;
365 }
366 if (overflow) {
367 rprintf(FERROR, "discarding over-long exclude: %s...\n", line);
368 s = line;
369 }
370 *s = '\0';
371 /* Skip an empty token and (when line parsing) comments. */
372 if (*line && (word_split || (*line != ';' && *line != '#')))
373 add_exclude(listp, line, xflags);
374 if (ch == EOF)
375 break;
376 }
377 fclose(fp);
378}
379
380
381void send_exclude_list(int f)
382{
383 struct exclude_struct *ent;
384
385 /* This is a complete hack - blame Rusty.
386 *
387 * FIXME: This pattern shows up in the output of
388 * report_exclude_result(), which is not ideal. */
389 if (list_only && !recurse)
390 add_exclude(&exclude_list, "/*/*", 0);
391
392 for (ent = exclude_list.head; ent; ent = ent->next) {
393 unsigned int l;
394 char p[MAXPATHLEN+1];
395
396 l = strlcpy(p, ent->pattern, sizeof p);
397 if (l == 0 || l >= MAXPATHLEN)
398 continue;
399 if (ent->match_flags & MATCHFLG_DIRECTORY) {
400 p[l++] = '/';
401 p[l] = '\0';
402 }
403
404 if (ent->match_flags & MATCHFLG_INCLUDE) {
405 write_int(f, l + 2);
406 write_buf(f, "+ ", 2);
407 } else if ((*p == '-' || *p == '+') && p[1] == ' ') {
408 write_int(f, l + 2);
409 write_buf(f, "- ", 2);
410 } else
411 write_int(f, l);
412 write_buf(f, p, l);
413 }
414
415 write_int(f, 0);
416}
417
418
419void recv_exclude_list(int f)
420{
421 char line[MAXPATHLEN+3]; /* Room for "x " prefix and trailing slash. */
422 unsigned int l;
423
424 while ((l = read_int(f)) != 0) {
425 if (l >= sizeof line)
426 overflow("recv_exclude_list");
427 read_sbuf(f, line, l);
428 add_exclude(&exclude_list, line, 0);
429 }
430}
431
432
433static char default_cvsignore[] =
434 /* These default ignored items come from the CVS manual. */
435 "RCS SCCS CVS CVS.adm RCSLOG cvslog.* tags TAGS"
436 " .make.state .nse_depinfo *~ #* .#* ,* _$* *$"
437 " *.old *.bak *.BAK *.orig *.rej .del-*"
438 " *.a *.olb *.o *.obj *.so *.exe"
439 " *.Z *.elc *.ln core"
440 /* The rest we added to suit ourself. */
441 " .svn/";
442
443void add_cvs_excludes(void)
444{
445 char fname[MAXPATHLEN];
446 char *p;
447
448 add_exclude(&exclude_list, default_cvsignore,
449 XFLG_WORD_SPLIT | XFLG_WORDS_ONLY);
450
451 if ((p = getenv("HOME"))
452 && pathjoin(fname, sizeof fname, p, ".cvsignore") < sizeof fname) {
453 add_exclude_file(&exclude_list, fname,
454 XFLG_WORD_SPLIT | XFLG_WORDS_ONLY);
455 }
456
457 add_exclude(&exclude_list, getenv("CVSIGNORE"),
458 XFLG_WORD_SPLIT | XFLG_WORDS_ONLY);
459}