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