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