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