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