Switching to GPL 3.
[rsync/rsync.git] / exclude.c
... / ...
CommitLineData
1/*
2 * The filter include/exclude routines.
3 *
4 * Copyright (C) 1996-2001 Andrew Tridgell <tridge@samba.org>
5 * Copyright (C) 1996 Paul Mackerras
6 * Copyright (C) 2002 Martin Pool
7 * Copyright (C) 2003-2007 Wayne Davison
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 3 as
11 * published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, visit the http://fsf.org website.
20 */
21
22#include "rsync.h"
23
24extern int verbose;
25extern int am_server;
26extern int am_sender;
27extern int eol_nulls;
28extern int list_only;
29extern int recurse;
30extern int io_error;
31extern int local_server;
32extern int prune_empty_dirs;
33extern int ignore_perishable;
34extern int delete_mode;
35extern int delete_excluded;
36extern int cvs_exclude;
37extern int sanitize_paths;
38extern int protocol_version;
39extern int module_id;
40
41extern char curr_dir[];
42extern unsigned int curr_dir_len;
43extern unsigned int module_dirlen;
44
45struct filter_list_struct filter_list = { 0, 0, "" };
46struct filter_list_struct cvs_filter_list = { 0, 0, " [global CVS]" };
47struct filter_list_struct server_filter_list = { 0, 0, " [daemon]" };
48
49/* Need room enough for ":MODS " prefix plus some room to grow. */
50#define MAX_RULE_PREFIX (16)
51
52#define MODIFIERS_MERGE_FILE "-+Cenw"
53#define MODIFIERS_INCL_EXCL "/!Crsp"
54#define MODIFIERS_HIDE_PROTECT "/!p"
55
56/* The dirbuf is set by push_local_filters() to the current subdirectory
57 * relative to curr_dir that is being processed. The path always has a
58 * trailing slash appended, and the variable dirbuf_len contains the length
59 * of this path prefix. The path is always absolute. */
60static char dirbuf[MAXPATHLEN+1];
61static unsigned int dirbuf_len = 0;
62static int dirbuf_depth;
63
64/* This is True when we're scanning parent dirs for per-dir merge-files. */
65static BOOL parent_dirscan = False;
66
67/* This array contains a list of all the currently active per-dir merge
68 * files. This makes it easier to save the appropriate values when we
69 * "push" down into each subdirectory. */
70static struct filter_struct **mergelist_parents;
71static int mergelist_cnt = 0;
72static int mergelist_size = 0;
73
74/* Each filter_list_struct describes a singly-linked list by keeping track
75 * of both the head and tail pointers. The list is slightly unusual in that
76 * a parent-dir's content can be appended to the end of the local list in a
77 * special way: the last item in the local list has its "next" pointer set
78 * to point to the inherited list, but the local list's tail pointer points
79 * at the end of the local list. Thus, if the local list is empty, the head
80 * will be pointing at the inherited content but the tail will be NULL. To
81 * help you visualize this, here are the possible list arrangements:
82 *
83 * Completely Empty Local Content Only
84 * ================================== ====================================
85 * head -> NULL head -> Local1 -> Local2 -> NULL
86 * tail -> NULL tail -------------^
87 *
88 * Inherited Content Only Both Local and Inherited Content
89 * ================================== ====================================
90 * head -> Parent1 -> Parent2 -> NULL head -> L1 -> L2 -> P1 -> P2 -> NULL
91 * tail -> NULL tail ---------^
92 *
93 * This means that anyone wanting to traverse the whole list to use it just
94 * needs to start at the head and use the "next" pointers until it goes
95 * NULL. To add new local content, we insert the item after the tail item
96 * and update the tail (obviously, if "tail" was NULL, we insert it at the
97 * head). To clear the local list, WE MUST NOT FREE THE INHERITED CONTENT
98 * because it is shared between the current list and our parent list(s).
99 * The easiest way to handle this is to simply truncate the list after the
100 * tail item and then free the local list from the head. When inheriting
101 * the list for a new local dir, we just save off the filter_list_struct
102 * values (so we can pop back to them later) and set the tail to NULL.
103 */
104
105static void free_filter(struct filter_struct *ex)
106{
107 if (ex->match_flags & MATCHFLG_PERDIR_MERGE) {
108 free(ex->u.mergelist->debug_type);
109 free(ex->u.mergelist);
110 mergelist_cnt--;
111 }
112 free(ex->pattern);
113 free(ex);
114}
115
116/* Build a filter structure given a filter pattern. The value in "pat"
117 * is not null-terminated. */
118static void add_rule(struct filter_list_struct *listp, const char *pat,
119 unsigned int pat_len, uint32 mflags, int xflags)
120{
121 struct filter_struct *ret;
122 const char *cp;
123 unsigned int ex_len;
124
125 if (verbose > 2) {
126 rprintf(FINFO, "[%s] add_rule(%s%.*s%s)%s\n",
127 who_am_i(), get_rule_prefix(mflags, pat, 0, NULL),
128 (int)pat_len, pat,
129 (mflags & MATCHFLG_DIRECTORY) ? "/" : "",
130 listp->debug_type);
131 }
132
133 /* These flags also indicate that we're reading a list that
134 * needs to be filtered now, not post-filtered later. */
135 if (xflags & (XFLG_ANCHORED2ABS|XFLG_ABS_IF_SLASH)) {
136 uint32 mf = mflags & (MATCHFLG_RECEIVER_SIDE|MATCHFLG_SENDER_SIDE);
137 if (am_sender) {
138 if (mf == MATCHFLG_RECEIVER_SIDE)
139 return;
140 } else {
141 if (mf == MATCHFLG_SENDER_SIDE)
142 return;
143 }
144 }
145
146 if (!(ret = new(struct filter_struct)))
147 out_of_memory("add_rule");
148 memset(ret, 0, sizeof ret[0]);
149
150 if (!(mflags & (MATCHFLG_ABS_PATH | MATCHFLG_MERGE_FILE))
151 && ((xflags & (XFLG_ANCHORED2ABS|XFLG_ABS_IF_SLASH) && *pat == '/')
152 || (xflags & XFLG_ABS_IF_SLASH && strchr(pat, '/') != NULL))) {
153 mflags |= MATCHFLG_ABS_PATH;
154 if (*pat == '/')
155 ex_len = dirbuf_len - module_dirlen - 1;
156 else
157 ex_len = 0;
158 } else
159 ex_len = 0;
160 if (!(ret->pattern = new_array(char, ex_len + pat_len + 1)))
161 out_of_memory("add_rule");
162 if (ex_len)
163 memcpy(ret->pattern, dirbuf + module_dirlen, ex_len);
164 strlcpy(ret->pattern + ex_len, pat, pat_len + 1);
165 pat_len += ex_len;
166
167 if (strpbrk(ret->pattern, "*[?")) {
168 mflags |= MATCHFLG_WILD;
169 if ((cp = strstr(ret->pattern, "**")) != NULL) {
170 mflags |= MATCHFLG_WILD2;
171 /* If the pattern starts with **, note that. */
172 if (cp == ret->pattern)
173 mflags |= MATCHFLG_WILD2_PREFIX;
174 /* If the pattern ends with ***, note that. */
175 if (pat_len >= 3
176 && ret->pattern[pat_len-3] == '*'
177 && ret->pattern[pat_len-2] == '*'
178 && ret->pattern[pat_len-1] == '*')
179 mflags |= MATCHFLG_WILD3_SUFFIX;
180 }
181 }
182
183 if (pat_len > 1 && ret->pattern[pat_len-1] == '/') {
184 ret->pattern[pat_len-1] = 0;
185 mflags |= MATCHFLG_DIRECTORY;
186 }
187
188 if (mflags & MATCHFLG_PERDIR_MERGE) {
189 struct filter_list_struct *lp;
190 unsigned int len;
191 int i;
192
193 if ((cp = strrchr(ret->pattern, '/')) != NULL)
194 cp++;
195 else
196 cp = ret->pattern;
197
198 /* If the local merge file was already mentioned, don't
199 * add it again. */
200 for (i = 0; i < mergelist_cnt; i++) {
201 struct filter_struct *ex = mergelist_parents[i];
202 const char *s = strrchr(ex->pattern, '/');
203 if (s)
204 s++;
205 else
206 s = ex->pattern;
207 len = strlen(s);
208 if (len == pat_len - (cp - ret->pattern)
209 && memcmp(s, cp, len) == 0) {
210 free_filter(ret);
211 return;
212 }
213 }
214
215 if (!(lp = new_array(struct filter_list_struct, 1)))
216 out_of_memory("add_rule");
217 lp->head = lp->tail = NULL;
218 if (asprintf(&lp->debug_type, " [per-dir %s]", cp) < 0)
219 out_of_memory("add_rule");
220 ret->u.mergelist = lp;
221
222 if (mergelist_cnt == mergelist_size) {
223 mergelist_size += 5;
224 mergelist_parents = realloc_array(mergelist_parents,
225 struct filter_struct *,
226 mergelist_size);
227 if (!mergelist_parents)
228 out_of_memory("add_rule");
229 }
230 mergelist_parents[mergelist_cnt++] = ret;
231 } else {
232 for (cp = ret->pattern; (cp = strchr(cp, '/')) != NULL; cp++)
233 ret->u.slash_cnt++;
234 }
235
236 ret->match_flags = mflags;
237
238 if (!listp->tail) {
239 ret->next = listp->head;
240 listp->head = listp->tail = ret;
241 } else {
242 ret->next = listp->tail->next;
243 listp->tail->next = ret;
244 listp->tail = ret;
245 }
246}
247
248static void clear_filter_list(struct filter_list_struct *listp)
249{
250 if (listp->tail) {
251 struct filter_struct *ent, *next;
252 /* Truncate any inherited items from the local list. */
253 listp->tail->next = NULL;
254 /* Now free everything that is left. */
255 for (ent = listp->head; ent; ent = next) {
256 next = ent->next;
257 free_filter(ent);
258 }
259 }
260
261 listp->head = listp->tail = NULL;
262}
263
264/* This returns an expanded (absolute) filename for the merge-file name if
265 * the name has any slashes in it OR if the parent_dirscan var is True;
266 * otherwise it returns the original merge_file name. If the len_ptr value
267 * is non-NULL the merge_file name is limited by the referenced length
268 * value and will be updated with the length of the resulting name. We
269 * always return a name that is null terminated, even if the merge_file
270 * name was not. */
271static char *parse_merge_name(const char *merge_file, unsigned int *len_ptr,
272 unsigned int prefix_skip)
273{
274 static char buf[MAXPATHLEN];
275 char *fn, tmpbuf[MAXPATHLEN];
276 unsigned int fn_len;
277
278 if (!parent_dirscan && *merge_file != '/') {
279 /* Return the name unchanged it doesn't have any slashes. */
280 if (len_ptr) {
281 const char *p = merge_file + *len_ptr;
282 while (--p > merge_file && *p != '/') {}
283 if (p == merge_file) {
284 strlcpy(buf, merge_file, *len_ptr + 1);
285 return buf;
286 }
287 } else if (strchr(merge_file, '/') == NULL)
288 return (char *)merge_file;
289 }
290
291 fn = *merge_file == '/' ? buf : tmpbuf;
292 if (sanitize_paths) {
293 const char *r = prefix_skip ? "/" : NULL;
294 /* null-terminate the name if it isn't already */
295 if (len_ptr && merge_file[*len_ptr]) {
296 char *to = fn == buf ? tmpbuf : buf;
297 strlcpy(to, merge_file, *len_ptr + 1);
298 merge_file = to;
299 }
300 if (!sanitize_path(fn, merge_file, r, dirbuf_depth, NULL)) {
301 rprintf(FERROR, "merge-file name overflows: %s\n",
302 merge_file);
303 return NULL;
304 }
305 fn_len = strlen(fn);
306 } else {
307 strlcpy(fn, merge_file, len_ptr ? *len_ptr + 1 : MAXPATHLEN);
308 fn_len = clean_fname(fn, 1);
309 }
310
311 /* If the name isn't in buf yet, it's wasn't absolute. */
312 if (fn != buf) {
313 if (dirbuf_len + fn_len >= MAXPATHLEN) {
314 rprintf(FERROR, "merge-file name overflows: %s\n", fn);
315 return NULL;
316 }
317 memcpy(buf, dirbuf + prefix_skip, dirbuf_len - prefix_skip);
318 memcpy(buf + dirbuf_len - prefix_skip, fn, fn_len + 1);
319 fn_len = clean_fname(buf, 1);
320 }
321
322 if (len_ptr)
323 *len_ptr = fn_len;
324 return buf;
325}
326
327/* Sets the dirbuf and dirbuf_len values. */
328void set_filter_dir(const char *dir, unsigned int dirlen)
329{
330 unsigned int len;
331 if (*dir != '/') {
332 memcpy(dirbuf, curr_dir, curr_dir_len);
333 dirbuf[curr_dir_len] = '/';
334 len = curr_dir_len + 1;
335 if (len + dirlen >= MAXPATHLEN)
336 dirlen = 0;
337 } else
338 len = 0;
339 memcpy(dirbuf + len, dir, dirlen);
340 dirbuf[dirlen + len] = '\0';
341 dirbuf_len = clean_fname(dirbuf, 1);
342 if (dirbuf_len > 1 && dirbuf[dirbuf_len-1] == '.'
343 && dirbuf[dirbuf_len-2] == '/')
344 dirbuf_len -= 2;
345 if (dirbuf_len != 1)
346 dirbuf[dirbuf_len++] = '/';
347 dirbuf[dirbuf_len] = '\0';
348 if (sanitize_paths)
349 dirbuf_depth = count_dir_elements(dirbuf + module_dirlen);
350}
351
352/* This routine takes a per-dir merge-file entry and finishes its setup.
353 * If the name has a path portion then we check to see if it refers to a
354 * parent directory of the first transfer dir. If it does, we scan all the
355 * dirs from that point through the parent dir of the transfer dir looking
356 * for the per-dir merge-file in each one. */
357static BOOL setup_merge_file(struct filter_struct *ex,
358 struct filter_list_struct *lp)
359{
360 char buf[MAXPATHLEN];
361 char *x, *y, *pat = ex->pattern;
362 unsigned int len;
363
364 if (!(x = parse_merge_name(pat, NULL, 0)) || *x != '/')
365 return 0;
366
367 y = strrchr(x, '/');
368 *y = '\0';
369 ex->pattern = strdup(y+1);
370 if (!*x)
371 x = "/";
372 if (*x == '/')
373 strlcpy(buf, x, MAXPATHLEN);
374 else
375 pathjoin(buf, MAXPATHLEN, dirbuf, x);
376
377 len = clean_fname(buf, 1);
378 if (len != 1 && len < MAXPATHLEN-1) {
379 buf[len++] = '/';
380 buf[len] = '\0';
381 }
382 /* This ensures that the specified dir is a parent of the transfer. */
383 for (x = buf, y = dirbuf; *x && *x == *y; x++, y++) {}
384 if (*x)
385 y += strlen(y); /* nope -- skip the scan */
386
387 parent_dirscan = True;
388 while (*y) {
389 char save[MAXPATHLEN];
390 strlcpy(save, y, MAXPATHLEN);
391 *y = '\0';
392 dirbuf_len = y - dirbuf;
393 strlcpy(x, ex->pattern, MAXPATHLEN - (x - buf));
394 parse_filter_file(lp, buf, ex->match_flags, XFLG_ANCHORED2ABS);
395 if (ex->match_flags & MATCHFLG_NO_INHERIT)
396 lp->head = NULL;
397 lp->tail = NULL;
398 strlcpy(y, save, MAXPATHLEN);
399 while ((*x++ = *y++) != '/') {}
400 }
401 parent_dirscan = False;
402 free(pat);
403 return 1;
404}
405
406/* Each time rsync changes to a new directory it call this function to
407 * handle all the per-dir merge-files. The "dir" value is the current path
408 * relative to curr_dir (which might not be null-terminated). We copy it
409 * into dirbuf so that we can easily append a file name on the end. */
410void *push_local_filters(const char *dir, unsigned int dirlen)
411{
412 struct filter_list_struct *ap, *push;
413 int i;
414
415 set_filter_dir(dir, dirlen);
416
417 if (!mergelist_cnt)
418 return NULL;
419
420 push = new_array(struct filter_list_struct, mergelist_cnt);
421 if (!push)
422 out_of_memory("push_local_filters");
423
424 for (i = 0, ap = push; i < mergelist_cnt; i++) {
425 memcpy(ap++, mergelist_parents[i]->u.mergelist,
426 sizeof (struct filter_list_struct));
427 }
428
429 /* Note: parse_filter_file() might increase mergelist_cnt, so keep
430 * this loop separate from the above loop. */
431 for (i = 0; i < mergelist_cnt; i++) {
432 struct filter_struct *ex = mergelist_parents[i];
433 struct filter_list_struct *lp = ex->u.mergelist;
434
435 if (verbose > 2) {
436 rprintf(FINFO, "[%s] pushing filter list%s\n",
437 who_am_i(), lp->debug_type);
438 }
439
440 lp->tail = NULL; /* Switch any local rules to inherited. */
441 if (ex->match_flags & MATCHFLG_NO_INHERIT)
442 lp->head = NULL;
443
444 if (ex->match_flags & MATCHFLG_FINISH_SETUP) {
445 ex->match_flags &= ~MATCHFLG_FINISH_SETUP;
446 if (setup_merge_file(ex, lp))
447 set_filter_dir(dir, dirlen);
448 }
449
450 if (strlcpy(dirbuf + dirbuf_len, ex->pattern,
451 MAXPATHLEN - dirbuf_len) < MAXPATHLEN - dirbuf_len) {
452 parse_filter_file(lp, dirbuf, ex->match_flags,
453 XFLG_ANCHORED2ABS);
454 } else {
455 io_error |= IOERR_GENERAL;
456 rprintf(FINFO,
457 "cannot add local filter rules in long-named directory: %s\n",
458 full_fname(dirbuf));
459 }
460 dirbuf[dirbuf_len] = '\0';
461 }
462
463 return (void*)push;
464}
465
466void pop_local_filters(void *mem)
467{
468 struct filter_list_struct *ap, *pop = (struct filter_list_struct*)mem;
469 int i;
470
471 for (i = mergelist_cnt; i-- > 0; ) {
472 struct filter_struct *ex = mergelist_parents[i];
473 struct filter_list_struct *lp = ex->u.mergelist;
474
475 if (verbose > 2) {
476 rprintf(FINFO, "[%s] popping filter list%s\n",
477 who_am_i(), lp->debug_type);
478 }
479
480 clear_filter_list(lp);
481 }
482
483 if (!pop)
484 return;
485
486 for (i = 0, ap = pop; i < mergelist_cnt; i++) {
487 memcpy(mergelist_parents[i]->u.mergelist, ap++,
488 sizeof (struct filter_list_struct));
489 }
490
491 free(pop);
492}
493
494void change_local_filter_dir(const char *dname, int dlen, int dir_depth)
495{
496 static int min_depth = MAXPATHLEN, cur_depth = -1;
497 static void *filt_array[MAXPATHLEN/2+1];
498
499 if (!dname) {
500 while (cur_depth >= min_depth)
501 pop_local_filters(filt_array[cur_depth--]);
502 min_depth = MAXPATHLEN;
503 cur_depth = -1;
504 return;
505 }
506
507 assert(dir_depth < MAXPATHLEN/2+1);
508
509 while (cur_depth >= dir_depth && cur_depth >= min_depth)
510 pop_local_filters(filt_array[cur_depth--]);
511 cur_depth = dir_depth;
512 if (cur_depth < min_depth)
513 min_depth = cur_depth;
514
515 filt_array[cur_depth] = push_local_filters(dname, dlen);
516}
517
518static int rule_matches(char *name, struct filter_struct *ex, int name_is_dir)
519{
520 int slash_handling, str_cnt = 0, anchored_match = 0;
521 int ret_match = ex->match_flags & MATCHFLG_NEGATE ? 0 : 1;
522 char *p, *pattern = ex->pattern;
523 const char *strings[16]; /* more than enough */
524
525 if (*name == '/')
526 name++;
527 if (!*name)
528 return 0;
529
530 if (!ex->u.slash_cnt && !(ex->match_flags & MATCHFLG_WILD2)) {
531 /* If the pattern does not have any slashes AND it does
532 * not have a "**" (which could match a slash), then we
533 * just match the name portion of the path. */
534 if ((p = strrchr(name,'/')) != NULL)
535 name = p+1;
536 } else if (ex->match_flags & MATCHFLG_ABS_PATH && *name != '/'
537 && curr_dir_len > module_dirlen + 1) {
538 /* If we're matching against an absolute-path pattern,
539 * we need to prepend our full path info. */
540 strings[str_cnt++] = curr_dir + module_dirlen + 1;
541 strings[str_cnt++] = "/";
542 } else if (ex->match_flags & MATCHFLG_WILD2_PREFIX && *name != '/') {
543 /* Allow "**"+"/" to match at the start of the string. */
544 strings[str_cnt++] = "/";
545 }
546 strings[str_cnt++] = name;
547 if (name_is_dir) {
548 /* Allow a trailing "/"+"***" to match the directory. */
549 if (ex->match_flags & MATCHFLG_WILD3_SUFFIX)
550 strings[str_cnt++] = "/";
551 } else if (ex->match_flags & MATCHFLG_DIRECTORY)
552 return !ret_match;
553 strings[str_cnt] = NULL;
554
555 if (*pattern == '/') {
556 anchored_match = 1;
557 pattern++;
558 }
559
560 if (!anchored_match && ex->u.slash_cnt
561 && !(ex->match_flags & MATCHFLG_WILD2)) {
562 /* A non-anchored match with an infix slash and no "**"
563 * needs to match the last slash_cnt+1 name elements. */
564 slash_handling = ex->u.slash_cnt + 1;
565 } else if (!anchored_match && !(ex->match_flags & MATCHFLG_WILD2_PREFIX)
566 && ex->match_flags & MATCHFLG_WILD2) {
567 /* A non-anchored match with an infix or trailing "**" (but not
568 * a prefixed "**") needs to try matching after every slash. */
569 slash_handling = -1;
570 } else {
571 /* The pattern matches only at the start of the path or name. */
572 slash_handling = 0;
573 }
574
575 if (ex->match_flags & MATCHFLG_WILD) {
576 if (wildmatch_array(pattern, strings, slash_handling))
577 return ret_match;
578 } else if (str_cnt > 1) {
579 if (litmatch_array(pattern, strings, slash_handling))
580 return ret_match;
581 } else if (anchored_match) {
582 if (strcmp(name, pattern) == 0)
583 return ret_match;
584 } else {
585 int l1 = strlen(name);
586 int l2 = strlen(pattern);
587 if (l2 <= l1 &&
588 strcmp(name+(l1-l2),pattern) == 0 &&
589 (l1==l2 || name[l1-(l2+1)] == '/')) {
590 return ret_match;
591 }
592 }
593
594 return !ret_match;
595}
596
597
598static void report_filter_result(char const *name,
599 struct filter_struct const *ent,
600 int name_is_dir, const char *type)
601{
602 /* If a trailing slash is present to match only directories,
603 * then it is stripped out by add_rule(). So as a special
604 * case we add it back in here. */
605
606 if (verbose >= 2) {
607 static char *actions[2][2]
608 = { {"show", "hid"}, {"risk", "protect"} };
609 const char *w = who_am_i();
610 rprintf(FINFO, "[%s] %sing %s %s because of pattern %s%s%s\n",
611 w, actions[*w!='s'][!(ent->match_flags&MATCHFLG_INCLUDE)],
612 name_is_dir ? "directory" : "file", name, ent->pattern,
613 ent->match_flags & MATCHFLG_DIRECTORY ? "/" : "", type);
614 }
615}
616
617
618/*
619 * Return -1 if file "name" is defined to be excluded by the specified
620 * exclude list, 1 if it is included, and 0 if it was not matched.
621 */
622int check_filter(struct filter_list_struct *listp, char *name, int name_is_dir)
623{
624 struct filter_struct *ent;
625
626 for (ent = listp->head; ent; ent = ent->next) {
627 if (ignore_perishable && ent->match_flags & MATCHFLG_PERISHABLE)
628 continue;
629 if (ent->match_flags & MATCHFLG_PERDIR_MERGE) {
630 int rc = check_filter(ent->u.mergelist, name,
631 name_is_dir);
632 if (rc)
633 return rc;
634 continue;
635 }
636 if (ent->match_flags & MATCHFLG_CVS_IGNORE) {
637 int rc = check_filter(&cvs_filter_list, name,
638 name_is_dir);
639 if (rc)
640 return rc;
641 continue;
642 }
643 if (rule_matches(name, ent, name_is_dir)) {
644 report_filter_result(name, ent, name_is_dir,
645 listp->debug_type);
646 return ent->match_flags & MATCHFLG_INCLUDE ? 1 : -1;
647 }
648 }
649
650 return 0;
651}
652
653#define RULE_STRCMP(s,r) rule_strcmp((s), (r), sizeof (r) - 1)
654
655static const uchar *rule_strcmp(const uchar *str, const char *rule, int rule_len)
656{
657 if (strncmp((char*)str, rule, rule_len) != 0)
658 return NULL;
659 if (isspace(str[rule_len]) || str[rule_len] == '_' || !str[rule_len])
660 return str + rule_len - 1;
661 if (str[rule_len] == ',')
662 return str + rule_len;
663 return NULL;
664}
665
666/* Get the next include/exclude arg from the string. The token will not
667 * be '\0' terminated, so use the returned length to limit the string.
668 * Also, be sure to add this length to the returned pointer before passing
669 * it back to ask for the next token. This routine parses the "!" (list-
670 * clearing) token and (depending on the mflags) the various prefixes.
671 * The *mflags_ptr value will be set on exit to the new MATCHFLG_* bits
672 * for the current token. */
673static const char *parse_rule_tok(const char *p, uint32 mflags, int xflags,
674 unsigned int *len_ptr, uint32 *mflags_ptr)
675{
676 const uchar *s = (const uchar *)p;
677 uint32 new_mflags;
678 unsigned int len;
679
680 if (mflags & MATCHFLG_WORD_SPLIT) {
681 /* Skip over any initial whitespace. */
682 while (isspace(*s))
683 s++;
684 /* Update to point to real start of rule. */
685 p = (const char *)s;
686 }
687 if (!*s)
688 return NULL;
689
690 new_mflags = mflags & MATCHFLGS_FROM_CONTAINER;
691
692 /* Figure out what kind of a filter rule "s" is pointing at. Note
693 * that if MATCHFLG_NO_PREFIXES is set, the rule is either an include
694 * or an exclude based on the inheritance of the MATCHFLG_INCLUDE
695 * flag (above). XFLG_OLD_PREFIXES indicates a compatibility mode
696 * for old include/exclude patterns where just "+ " and "- " are
697 * allowed as optional prefixes. */
698 if (mflags & MATCHFLG_NO_PREFIXES) {
699 if (*s == '!' && mflags & MATCHFLG_CVS_IGNORE)
700 new_mflags |= MATCHFLG_CLEAR_LIST; /* Tentative! */
701 } else if (xflags & XFLG_OLD_PREFIXES) {
702 if (*s == '-' && s[1] == ' ') {
703 new_mflags &= ~MATCHFLG_INCLUDE;
704 s += 2;
705 } else if (*s == '+' && s[1] == ' ') {
706 new_mflags |= MATCHFLG_INCLUDE;
707 s += 2;
708 } else if (*s == '!')
709 new_mflags |= MATCHFLG_CLEAR_LIST; /* Tentative! */
710 } else {
711 char ch = 0, *mods = "";
712 switch (*s) {
713 case 'c':
714 if ((s = RULE_STRCMP(s, "clear")) != NULL)
715 ch = '!';
716 break;
717 case 'd':
718 if ((s = RULE_STRCMP(s, "dir-merge")) != NULL)
719 ch = ':';
720 break;
721 case 'e':
722 if ((s = RULE_STRCMP(s, "exclude")) != NULL)
723 ch = '-';
724 break;
725 case 'h':
726 if ((s = RULE_STRCMP(s, "hide")) != NULL)
727 ch = 'H';
728 break;
729 case 'i':
730 if ((s = RULE_STRCMP(s, "include")) != NULL)
731 ch = '+';
732 break;
733 case 'm':
734 if ((s = RULE_STRCMP(s, "merge")) != NULL)
735 ch = '.';
736 break;
737 case 'p':
738 if ((s = RULE_STRCMP(s, "protect")) != NULL)
739 ch = 'P';
740 break;
741 case 'r':
742 if ((s = RULE_STRCMP(s, "risk")) != NULL)
743 ch = 'R';
744 break;
745 case 's':
746 if ((s = RULE_STRCMP(s, "show")) != NULL)
747 ch = 'S';
748 break;
749 default:
750 ch = *s;
751 if (s[1] == ',')
752 s++;
753 break;
754 }
755 switch (ch) {
756 case ':':
757 new_mflags |= MATCHFLG_PERDIR_MERGE
758 | MATCHFLG_FINISH_SETUP;
759 /* FALL THROUGH */
760 case '.':
761 new_mflags |= MATCHFLG_MERGE_FILE;
762 mods = MODIFIERS_INCL_EXCL MODIFIERS_MERGE_FILE;
763 break;
764 case '+':
765 new_mflags |= MATCHFLG_INCLUDE;
766 /* FALL THROUGH */
767 case '-':
768 mods = MODIFIERS_INCL_EXCL;
769 break;
770 case 'S':
771 new_mflags |= MATCHFLG_INCLUDE;
772 /* FALL THROUGH */
773 case 'H':
774 new_mflags |= MATCHFLG_SENDER_SIDE;
775 mods = MODIFIERS_HIDE_PROTECT;
776 break;
777 case 'R':
778 new_mflags |= MATCHFLG_INCLUDE;
779 /* FALL THROUGH */
780 case 'P':
781 new_mflags |= MATCHFLG_RECEIVER_SIDE;
782 mods = MODIFIERS_HIDE_PROTECT;
783 break;
784 case '!':
785 new_mflags |= MATCHFLG_CLEAR_LIST;
786 mods = NULL;
787 break;
788 default:
789 rprintf(FERROR, "Unknown filter rule: `%s'\n", p);
790 exit_cleanup(RERR_SYNTAX);
791 }
792 while (mods && *++s && *s != ' ' && *s != '_') {
793 if (strchr(mods, *s) == NULL) {
794 if (mflags & MATCHFLG_WORD_SPLIT && isspace(*s)) {
795 s--;
796 break;
797 }
798 invalid:
799 rprintf(FERROR,
800 "invalid modifier sequence at '%c' in filter rule: %s\n",
801 *s, p);
802 exit_cleanup(RERR_SYNTAX);
803 }
804 switch (*s) {
805 case '-':
806 if (new_mflags & MATCHFLG_NO_PREFIXES)
807 goto invalid;
808 new_mflags |= MATCHFLG_NO_PREFIXES;
809 break;
810 case '+':
811 if (new_mflags & MATCHFLG_NO_PREFIXES)
812 goto invalid;
813 new_mflags |= MATCHFLG_NO_PREFIXES
814 | MATCHFLG_INCLUDE;
815 break;
816 case '/':
817 new_mflags |= MATCHFLG_ABS_PATH;
818 break;
819 case '!':
820 new_mflags |= MATCHFLG_NEGATE;
821 break;
822 case 'C':
823 if (new_mflags & MATCHFLG_NO_PREFIXES)
824 goto invalid;
825 new_mflags |= MATCHFLG_NO_PREFIXES
826 | MATCHFLG_WORD_SPLIT
827 | MATCHFLG_NO_INHERIT
828 | MATCHFLG_CVS_IGNORE;
829 break;
830 case 'e':
831 new_mflags |= MATCHFLG_EXCLUDE_SELF;
832 break;
833 case 'n':
834 new_mflags |= MATCHFLG_NO_INHERIT;
835 break;
836 case 'p':
837 new_mflags |= MATCHFLG_PERISHABLE;
838 break;
839 case 'r':
840 new_mflags |= MATCHFLG_RECEIVER_SIDE;
841 break;
842 case 's':
843 new_mflags |= MATCHFLG_SENDER_SIDE;
844 break;
845 case 'w':
846 new_mflags |= MATCHFLG_WORD_SPLIT;
847 break;
848 }
849 }
850 if (*s)
851 s++;
852 }
853
854 if (mflags & MATCHFLG_WORD_SPLIT) {
855 const uchar *cp = s;
856 /* Token ends at whitespace or the end of the string. */
857 while (!isspace(*cp) && *cp != '\0')
858 cp++;
859 len = cp - s;
860 } else
861 len = strlen((char*)s);
862
863 if (new_mflags & MATCHFLG_CLEAR_LIST) {
864 if (!(mflags & MATCHFLG_NO_PREFIXES)
865 && !(xflags & XFLG_OLD_PREFIXES) && len) {
866 rprintf(FERROR,
867 "'!' rule has trailing characters: %s\n", p);
868 exit_cleanup(RERR_SYNTAX);
869 }
870 if (len > 1)
871 new_mflags &= ~MATCHFLG_CLEAR_LIST;
872 } else if (!len && !(new_mflags & MATCHFLG_CVS_IGNORE)) {
873 rprintf(FERROR, "unexpected end of filter rule: %s\n", p);
874 exit_cleanup(RERR_SYNTAX);
875 }
876
877 /* --delete-excluded turns an un-modified include/exclude into a
878 * sender-side rule. We also affect per-dir merge files that take
879 * no prefixes as a simple optimization. */
880 if (delete_excluded
881 && !(new_mflags & (MATCHFLG_RECEIVER_SIDE|MATCHFLG_SENDER_SIDE))
882 && (!(new_mflags & MATCHFLG_PERDIR_MERGE)
883 || new_mflags & MATCHFLG_NO_PREFIXES))
884 new_mflags |= MATCHFLG_SENDER_SIDE;
885
886 *len_ptr = len;
887 *mflags_ptr = new_mflags;
888 return (const char *)s;
889}
890
891
892static char default_cvsignore[] =
893 /* These default ignored items come from the CVS manual. */
894 "RCS SCCS CVS CVS.adm RCSLOG cvslog.* tags TAGS"
895 " .make.state .nse_depinfo *~ #* .#* ,* _$* *$"
896 " *.old *.bak *.BAK *.orig *.rej .del-*"
897 " *.a *.olb *.o *.obj *.so *.exe"
898 " *.Z *.elc *.ln core"
899 /* The rest we added to suit ourself. */
900 " .svn/ .bzr/";
901
902static void get_cvs_excludes(uint32 mflags)
903{
904 static int initialized = 0;
905 char *p, fname[MAXPATHLEN];
906
907 if (initialized)
908 return;
909 initialized = 1;
910
911 parse_rule(&cvs_filter_list, default_cvsignore,
912 mflags | (protocol_version >= 30 ? MATCHFLG_PERISHABLE : 0),
913 0);
914
915 p = module_id >= 0 && lp_use_chroot(module_id) ? "/" : getenv("HOME");
916 if (p && pathjoin(fname, MAXPATHLEN, p, ".cvsignore") < MAXPATHLEN)
917 parse_filter_file(&cvs_filter_list, fname, mflags, 0);
918
919 parse_rule(&cvs_filter_list, getenv("CVSIGNORE"), mflags, 0);
920}
921
922
923void parse_rule(struct filter_list_struct *listp, const char *pattern,
924 uint32 mflags, int xflags)
925{
926 unsigned int pat_len;
927 uint32 new_mflags;
928 const char *cp, *p;
929
930 if (!pattern)
931 return;
932
933 while (1) {
934 /* Remember that the returned string is NOT '\0' terminated! */
935 cp = parse_rule_tok(pattern, mflags, xflags,
936 &pat_len, &new_mflags);
937 if (!cp)
938 break;
939
940 pattern = cp + pat_len;
941
942 if (pat_len >= MAXPATHLEN) {
943 rprintf(FERROR, "discarding over-long filter: %.*s\n",
944 (int)pat_len, cp);
945 continue;
946 }
947
948 if (new_mflags & MATCHFLG_CLEAR_LIST) {
949 if (verbose > 2) {
950 rprintf(FINFO,
951 "[%s] clearing filter list%s\n",
952 who_am_i(), listp->debug_type);
953 }
954 clear_filter_list(listp);
955 continue;
956 }
957
958 if (new_mflags & MATCHFLG_MERGE_FILE) {
959 unsigned int len;
960 if (!pat_len) {
961 cp = ".cvsignore";
962 pat_len = 10;
963 }
964 len = pat_len;
965 if (new_mflags & MATCHFLG_EXCLUDE_SELF) {
966 const char *name = cp + len;
967 while (name > cp && name[-1] != '/') name--;
968 len -= name - cp;
969 add_rule(listp, name, len, 0, 0);
970 new_mflags &= ~MATCHFLG_EXCLUDE_SELF;
971 len = pat_len;
972 }
973 if (new_mflags & MATCHFLG_PERDIR_MERGE) {
974 if (parent_dirscan) {
975 if (!(p = parse_merge_name(cp, &len,
976 module_dirlen)))
977 continue;
978 add_rule(listp, p, len, new_mflags, 0);
979 continue;
980 }
981 } else {
982 if (!(p = parse_merge_name(cp, &len, 0)))
983 continue;
984 parse_filter_file(listp, p, new_mflags,
985 XFLG_FATAL_ERRORS);
986 continue;
987 }
988 }
989
990 add_rule(listp, cp, pat_len, new_mflags, xflags);
991
992 if (new_mflags & MATCHFLG_CVS_IGNORE
993 && !(new_mflags & MATCHFLG_MERGE_FILE))
994 get_cvs_excludes(new_mflags);
995 }
996}
997
998
999void parse_filter_file(struct filter_list_struct *listp, const char *fname,
1000 uint32 mflags, int xflags)
1001{
1002 FILE *fp;
1003 char line[BIGPATHBUFLEN];
1004 char *eob = line + sizeof line - 1;
1005 int word_split = mflags & MATCHFLG_WORD_SPLIT;
1006
1007 if (!fname || !*fname)
1008 return;
1009
1010 if (*fname != '-' || fname[1] || am_server) {
1011 if (server_filter_list.head) {
1012 strlcpy(line, fname, sizeof line);
1013 clean_fname(line, 1);
1014 if (check_filter(&server_filter_list, line, 0) < 0)
1015 fp = NULL;
1016 else
1017 fp = fopen(line, "rb");
1018 } else
1019 fp = fopen(fname, "rb");
1020 } else
1021 fp = stdin;
1022
1023 if (verbose > 2) {
1024 rprintf(FINFO, "[%s] parse_filter_file(%s,%x,%x)%s\n",
1025 who_am_i(), fname, mflags, xflags,
1026 fp ? "" : " [not found]");
1027 }
1028
1029 if (!fp) {
1030 if (xflags & XFLG_FATAL_ERRORS) {
1031 rsyserr(FERROR, errno,
1032 "failed to open %sclude file %s",
1033 mflags & MATCHFLG_INCLUDE ? "in" : "ex",
1034 fname);
1035 exit_cleanup(RERR_FILEIO);
1036 }
1037 return;
1038 }
1039 dirbuf[dirbuf_len] = '\0';
1040
1041 while (1) {
1042 char *s = line;
1043 int ch, overflow = 0;
1044 while (1) {
1045 if ((ch = getc(fp)) == EOF) {
1046 if (ferror(fp) && errno == EINTR) {
1047 clearerr(fp);
1048 continue;
1049 }
1050 break;
1051 }
1052 if (word_split && isspace(ch))
1053 break;
1054 if (eol_nulls? !ch : (ch == '\n' || ch == '\r'))
1055 break;
1056 if (s < eob)
1057 *s++ = ch;
1058 else
1059 overflow = 1;
1060 }
1061 if (overflow) {
1062 rprintf(FERROR, "discarding over-long filter: %s...\n", line);
1063 s = line;
1064 }
1065 *s = '\0';
1066 /* Skip an empty token and (when line parsing) comments. */
1067 if (*line && (word_split || (*line != ';' && *line != '#')))
1068 parse_rule(listp, line, mflags, xflags);
1069 if (ch == EOF)
1070 break;
1071 }
1072 fclose(fp);
1073}
1074
1075/* If the "for_xfer" flag is set, the prefix is made compatible with the
1076 * current protocol_version (if possible) or a NULL is returned (if not
1077 * possible). */
1078char *get_rule_prefix(int match_flags, const char *pat, int for_xfer,
1079 unsigned int *plen_ptr)
1080{
1081 static char buf[MAX_RULE_PREFIX+1];
1082 char *op = buf;
1083 int legal_len = for_xfer && protocol_version < 29 ? 1 : MAX_RULE_PREFIX-1;
1084
1085 if (match_flags & MATCHFLG_PERDIR_MERGE) {
1086 if (legal_len == 1)
1087 return NULL;
1088 *op++ = ':';
1089 } else if (match_flags & MATCHFLG_INCLUDE)
1090 *op++ = '+';
1091 else if (legal_len != 1
1092 || ((*pat == '-' || *pat == '+') && pat[1] == ' '))
1093 *op++ = '-';
1094 else
1095 legal_len = 0;
1096
1097 if (match_flags & MATCHFLG_NEGATE)
1098 *op++ = '!';
1099 if (match_flags & MATCHFLG_CVS_IGNORE)
1100 *op++ = 'C';
1101 else {
1102 if (match_flags & MATCHFLG_NO_INHERIT)
1103 *op++ = 'n';
1104 if (match_flags & MATCHFLG_WORD_SPLIT)
1105 *op++ = 'w';
1106 if (match_flags & MATCHFLG_NO_PREFIXES) {
1107 if (match_flags & MATCHFLG_INCLUDE)
1108 *op++ = '+';
1109 else
1110 *op++ = '-';
1111 }
1112 }
1113 if (match_flags & MATCHFLG_EXCLUDE_SELF)
1114 *op++ = 'e';
1115 if (match_flags & MATCHFLG_SENDER_SIDE
1116 && (!for_xfer || protocol_version >= 29))
1117 *op++ = 's';
1118 if (match_flags & MATCHFLG_RECEIVER_SIDE
1119 && (!for_xfer || protocol_version >= 29
1120 || (delete_excluded && am_sender)))
1121 *op++ = 'r';
1122 if (match_flags & MATCHFLG_PERISHABLE) {
1123 if (!for_xfer || protocol_version >= 30)
1124 *op++ = 'p';
1125 else if (am_sender)
1126 return NULL;
1127 }
1128 if (op - buf > legal_len)
1129 return NULL;
1130 if (legal_len)
1131 *op++ = ' ';
1132 *op = '\0';
1133 if (plen_ptr)
1134 *plen_ptr = op - buf;
1135 return buf;
1136}
1137
1138static void send_rules(int f_out, struct filter_list_struct *flp)
1139{
1140 struct filter_struct *ent, *prev = NULL;
1141
1142 for (ent = flp->head; ent; ent = ent->next) {
1143 unsigned int len, plen, dlen;
1144 int elide = 0;
1145 char *p;
1146
1147 /* Note we need to check delete_excluded here in addition to
1148 * the code in parse_rule_tok() because some rules may have
1149 * been added before we found the --delete-excluded option.
1150 * We must also elide any CVS merge-file rules to avoid a
1151 * backward compatibility problem, and we elide any no-prefix
1152 * merge files as an optimization (since they can only have
1153 * include/exclude rules). */
1154 if (ent->match_flags & MATCHFLG_SENDER_SIDE)
1155 elide = am_sender ? 1 : -1;
1156 if (ent->match_flags & MATCHFLG_RECEIVER_SIDE)
1157 elide = elide ? 0 : am_sender ? -1 : 1;
1158 else if (delete_excluded && !elide
1159 && (!(ent->match_flags & MATCHFLG_PERDIR_MERGE)
1160 || ent->match_flags & MATCHFLG_NO_PREFIXES))
1161 elide = am_sender ? 1 : -1;
1162 if (elide < 0) {
1163 if (prev)
1164 prev->next = ent->next;
1165 else
1166 flp->head = ent->next;
1167 } else
1168 prev = ent;
1169 if (elide > 0)
1170 continue;
1171 if (ent->match_flags & MATCHFLG_CVS_IGNORE
1172 && !(ent->match_flags & MATCHFLG_MERGE_FILE)) {
1173 int f = am_sender || protocol_version < 29 ? f_out : -2;
1174 send_rules(f, &cvs_filter_list);
1175 if (f == f_out)
1176 continue;
1177 }
1178 p = get_rule_prefix(ent->match_flags, ent->pattern, 1, &plen);
1179 if (!p) {
1180 rprintf(FERROR,
1181 "filter rules are too modern for remote rsync.\n");
1182 exit_cleanup(RERR_PROTOCOL);
1183 }
1184 if (f_out < 0)
1185 continue;
1186 len = strlen(ent->pattern);
1187 dlen = ent->match_flags & MATCHFLG_DIRECTORY ? 1 : 0;
1188 if (!(plen + len + dlen))
1189 continue;
1190 write_int(f_out, plen + len + dlen);
1191 if (plen)
1192 write_buf(f_out, p, plen);
1193 write_buf(f_out, ent->pattern, len);
1194 if (dlen)
1195 write_byte(f_out, '/');
1196 }
1197 flp->tail = prev;
1198}
1199
1200/* This is only called by the client. */
1201void send_filter_list(int f_out)
1202{
1203 int receiver_wants_list = prune_empty_dirs
1204 || (delete_mode && (!delete_excluded || protocol_version >= 29));
1205
1206 if (local_server || (am_sender && !receiver_wants_list))
1207 f_out = -1;
1208 if (cvs_exclude && am_sender) {
1209 if (protocol_version >= 29)
1210 parse_rule(&filter_list, ":C", 0, 0);
1211 parse_rule(&filter_list, "-C", 0, 0);
1212 }
1213
1214 /* This is a complete hack - blame Rusty. FIXME!
1215 * Remove this hack when older rsyncs (below 2.6.4) are gone. */
1216 if (list_only == 1 && !recurse)
1217 parse_rule(&filter_list, "/*/*", MATCHFLG_NO_PREFIXES, 0);
1218
1219 send_rules(f_out, &filter_list);
1220
1221 if (f_out >= 0)
1222 write_int(f_out, 0);
1223
1224 if (cvs_exclude) {
1225 if (!am_sender || protocol_version < 29)
1226 parse_rule(&filter_list, ":C", 0, 0);
1227 if (!am_sender)
1228 parse_rule(&filter_list, "-C", 0, 0);
1229 }
1230}
1231
1232/* This is only called by the server. */
1233void recv_filter_list(int f_in)
1234{
1235 char line[BIGPATHBUFLEN];
1236 int xflags = protocol_version >= 29 ? 0 : XFLG_OLD_PREFIXES;
1237 int receiver_wants_list = prune_empty_dirs
1238 || (delete_mode
1239 && (!delete_excluded || protocol_version >= 29));
1240 unsigned int len;
1241
1242 if (!local_server && (am_sender || receiver_wants_list)) {
1243 while ((len = read_int(f_in)) != 0) {
1244 if (len >= sizeof line)
1245 overflow_exit("recv_rules");
1246 read_sbuf(f_in, line, len);
1247 parse_rule(&filter_list, line, 0, xflags);
1248 }
1249 }
1250
1251 if (cvs_exclude) {
1252 if (local_server || am_sender || protocol_version < 29)
1253 parse_rule(&filter_list, ":C", 0, 0);
1254 if (local_server || am_sender)
1255 parse_rule(&filter_list, "-C", 0, 0);
1256 }
1257
1258 if (local_server) /* filter out any rules that aren't for us. */
1259 send_rules(-1, &filter_list);
1260}