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