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