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