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