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