If we're a "local server" (i.e. we just forked a server for a
[rsync/rsync.git] / exclude.c
1 /* -*- c-file-style: "linux" -*-
2  *
3  * Copyright (C) 1996-2001 by Andrew Tridgell <tridge@samba.org>
4  * Copyright (C) 1996 by Paul Mackerras
5  * Copyright (C) 2002 by Martin Pool
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  */
21
22 /* a lot of this stuff was originally derived from GNU tar, although
23    it has now changed so much that it is hard to tell :) */
24
25 /* include/exclude cluestick added by Martin Pool <mbp@samba.org> */
26
27 #include "rsync.h"
28
29 extern int verbose;
30 extern int am_server;
31 extern int am_sender;
32 extern int eol_nulls;
33 extern int list_only;
34 extern int recurse;
35 extern int io_error;
36 extern int local_server;
37 extern int delete_mode;
38 extern int delete_excluded;
39 extern int cvs_exclude;
40 extern int sanitize_paths;
41 extern int protocol_version;
42 extern int module_id;
43
44 extern char curr_dir[];
45 extern unsigned int curr_dir_len;
46 extern unsigned int module_dirlen;
47
48 struct filter_list_struct filter_list = { 0, 0, "" };
49 struct filter_list_struct cvs_filter_list = { 0, 0, " [cvsignore]" };
50 struct filter_list_struct server_filter_list = { 0, 0, " [server]" };
51
52 /* Need room enough for ":MODS " prefix plus some room to grow. */
53 #define MAX_RULE_PREFIX (16)
54
55 #define MODIFIERS_MERGE_FILE "-+Cenw"
56 #define MODIFIERS_INCL_EXCL "/!C"
57
58 /* The dirbuf is set by push_local_filters() to the current subdirectory
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. */
62 static char dirbuf[MAXPATHLEN+1];
63 static unsigned int dirbuf_len = 0;
64 static int dirbuf_depth;
65
66 /* This is True when we're scanning parent dirs for per-dir merge-files. */
67 static 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. */
72 static struct filter_struct **mergelist_parents;
73 static int mergelist_cnt = 0;
74 static int mergelist_size = 0;
75
76 /* Each filter_list_struct describes a singly-linked list by keeping track
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
103  * the list for a new local dir, we just save off the filter_list_struct
104  * values (so we can pop back to them later) and set the tail to NULL.
105  */
106
107 static void free_filter(struct filter_struct *ex)
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
118 /* Build a filter structure given a filter pattern.  The value in "pat"
119  * is not null-terminated. */
120 static void add_rule(struct filter_list_struct *listp, const char *pat,
121                      unsigned int pat_len, uint32 mflags, int xflags)
122 {
123         struct filter_struct *ret;
124         const char *cp;
125         unsigned int ex_len;
126
127         if (verbose > 2) {
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) ? "/" : "",
132                         listp->debug_type);
133         }
134
135         if (!(ret = new(struct filter_struct)))
136                 out_of_memory("add_rule");
137         memset(ret, 0, sizeof ret[0]);
138
139         if (xflags & XFLG_ANCHORED2ABS && *pat == '/'
140             && !(mflags & (MATCHFLG_ABS_PATH | MATCHFLG_MERGE_FILE))) {
141                 mflags |= MATCHFLG_ABS_PATH;
142                 ex_len = dirbuf_len - module_dirlen - 1;
143         } else
144                 ex_len = 0;
145         if (!(ret->pattern = new_array(char, ex_len + pat_len + 1)))
146                 out_of_memory("add_rule");
147         if (ex_len)
148                 memcpy(ret->pattern, dirbuf + module_dirlen, ex_len);
149         strlcpy(ret->pattern + ex_len, pat, pat_len + 1);
150         pat_len += ex_len;
151
152         if (strpbrk(ret->pattern, "*[?")) {
153                 mflags |= MATCHFLG_WILD;
154                 if ((cp = strstr(ret->pattern, "**")) != NULL) {
155                         mflags |= MATCHFLG_WILD2;
156                         /* If the pattern starts with **, note that. */
157                         if (cp == ret->pattern)
158                                 mflags |= MATCHFLG_WILD2_PREFIX;
159                 }
160         }
161
162         if (pat_len > 1 && ret->pattern[pat_len-1] == '/') {
163                 ret->pattern[pat_len-1] = 0;
164                 mflags |= MATCHFLG_DIRECTORY;
165         }
166
167         if (mflags & MATCHFLG_PERDIR_MERGE) {
168                 struct filter_list_struct *lp;
169                 unsigned int len;
170                 int i;
171
172                 if ((cp = strrchr(ret->pattern, '/')) != NULL)
173                         cp++;
174                 else
175                         cp = ret->pattern;
176
177                 /* If the local merge file was already mentioned, don't
178                  * add it again. */
179                 for (i = 0; i < mergelist_cnt; i++) {
180                         struct filter_struct *ex = mergelist_parents[i];
181                         const char *s = strrchr(ex->pattern, '/');
182                         if (s)
183                                 s++;
184                         else
185                                 s = ex->pattern;
186                         len = strlen(s);
187                         if (len == pat_len - (cp - ret->pattern)
188                             && memcmp(s, cp, len) == 0) {
189                                 free_filter(ret);
190                                 return;
191                         }
192                 }
193
194                 if (!(lp = new_array(struct filter_list_struct, 1)))
195                         out_of_memory("add_rule");
196                 lp->head = lp->tail = NULL;
197                 if (asprintf(&lp->debug_type, " [per-dir %s]", cp) < 0)
198                         out_of_memory("add_rule");
199                 ret->u.mergelist = lp;
200
201                 if (mergelist_cnt == mergelist_size) {
202                         mergelist_size += 5;
203                         mergelist_parents = realloc_array(mergelist_parents,
204                                                 struct filter_struct *,
205                                                 mergelist_size);
206                         if (!mergelist_parents)
207                                 out_of_memory("add_rule");
208                 }
209                 mergelist_parents[mergelist_cnt++] = ret;
210         } else {
211                 for (cp = ret->pattern; (cp = strchr(cp, '/')) != NULL; cp++)
212                         ret->u.slash_cnt++;
213         }
214
215         ret->match_flags = mflags;
216
217         if (!listp->tail) {
218                 ret->next = listp->head;
219                 listp->head = listp->tail = ret;
220         } else {
221                 ret->next = listp->tail->next;
222                 listp->tail->next = ret;
223                 listp->tail = ret;
224         }
225 }
226
227 static void clear_filter_list(struct filter_list_struct *listp)
228 {
229         if (listp->tail) {
230                 struct filter_struct *ent, *next;
231                 /* Truncate any inherited items from the local list. */
232                 listp->tail->next = NULL;
233                 /* Now free everything that is left. */
234                 for (ent = listp->head; ent; ent = next) {
235                         next = ent->next;
236                         free_filter(ent);
237                 }
238         }
239
240         listp->head = listp->tail = NULL;
241 }
242
243 /* This returns an expanded (absolute) filename for the merge-file name if
244  * the name has any slashes in it OR if the parent_dirscan var is True;
245  * otherwise it returns the original merge_file name.  If the len_ptr value
246  * is non-NULL the merge_file name is limited by the referenced length
247  * value and will be updated with the length of the resulting name.  We
248  * always return a name that is null terminated, even if the merge_file
249  * name was not. */
250 static char *parse_merge_name(const char *merge_file, unsigned int *len_ptr,
251                               unsigned int prefix_skip)
252 {
253         static char buf[MAXPATHLEN];
254         char *fn, tmpbuf[MAXPATHLEN];
255         unsigned int fn_len;
256
257         if (!parent_dirscan && *merge_file != '/') {
258                 /* Return the name unchanged it doesn't have any slashes. */
259                 if (len_ptr) {
260                         const char *p = merge_file + *len_ptr;
261                         while (--p > merge_file && *p != '/') {}
262                         if (p == merge_file) {
263                                 strlcpy(buf, merge_file, *len_ptr + 1);
264                                 return buf;
265                         }
266                 } else if (strchr(merge_file, '/') == NULL)
267                         return (char *)merge_file;
268         }
269
270         fn = *merge_file == '/' ? buf : tmpbuf;
271         if (sanitize_paths) {
272                 const char *r = prefix_skip ? "/" : NULL;
273                 /* null-terminate the name if it isn't already */
274                 if (len_ptr && merge_file[*len_ptr]) {
275                         char *to = fn == buf ? tmpbuf : buf;
276                         strlcpy(to, merge_file, *len_ptr + 1);
277                         merge_file = to;
278                 }
279                 if (!sanitize_path(fn, merge_file, r, dirbuf_depth)) {
280                         rprintf(FERROR, "merge-file name overflows: %s\n",
281                                 merge_file);
282                         return NULL;
283                 }
284         } else {
285                 strlcpy(fn, merge_file, len_ptr ? *len_ptr + 1 : MAXPATHLEN);
286                 clean_fname(fn, 1);
287         }
288         
289         fn_len = strlen(fn);
290         if (fn == buf)
291                 goto done;
292
293         if (dirbuf_len + fn_len >= MAXPATHLEN) {
294                 rprintf(FERROR, "merge-file name overflows: %s\n", fn);
295                 return NULL;
296         }
297         memcpy(buf, dirbuf + prefix_skip, dirbuf_len - prefix_skip);
298         memcpy(buf + dirbuf_len - prefix_skip, fn, fn_len + 1);
299         fn_len = clean_fname(buf, 1);
300
301     done:
302         if (len_ptr)
303                 *len_ptr = fn_len;
304         return buf;
305 }
306
307 /* Sets the dirbuf and dirbuf_len values. */
308 void set_filter_dir(const char *dir, unsigned int dirlen)
309 {
310         unsigned int len;
311         if (*dir != '/') {
312                 memcpy(dirbuf, curr_dir, curr_dir_len);
313                 dirbuf[curr_dir_len] = '/';
314                 len = curr_dir_len + 1;
315                 if (len + dirlen >= MAXPATHLEN)
316                         dirlen = 0;
317         } else
318                 len = 0;
319         memcpy(dirbuf + len, dir, dirlen);
320         dirbuf[dirlen + len] = '\0';
321         dirbuf_len = clean_fname(dirbuf, 1);
322         if (dirbuf_len > 1 && dirbuf[dirbuf_len-1] == '.'
323             && dirbuf[dirbuf_len-2] == '/')
324                 dirbuf_len -= 2;
325         if (dirbuf_len != 1)
326                 dirbuf[dirbuf_len++] = '/';
327         dirbuf[dirbuf_len] = '\0';
328         if (sanitize_paths)
329                 dirbuf_depth = count_dir_elements(dirbuf + module_dirlen);
330 }
331
332 /* This routine takes a per-dir merge-file entry and finishes its setup.
333  * If the name has a path portion then we check to see if it refers to a
334  * parent directory of the first transfer dir.  If it does, we scan all the
335  * dirs from that point through the parent dir of the transfer dir looking
336  * for the per-dir merge-file in each one. */
337 static BOOL setup_merge_file(struct filter_struct *ex,
338                              struct filter_list_struct *lp)
339 {
340         char buf[MAXPATHLEN];
341         char *x, *y, *pat = ex->pattern;
342         unsigned int len;
343
344         if (!(x = parse_merge_name(pat, NULL, 0)) || *x != '/')
345                 return 0;
346
347         y = strrchr(x, '/');
348         *y = '\0';
349         ex->pattern = strdup(y+1);
350         if (!*x)
351                 x = "/";
352         if (*x == '/')
353                 strlcpy(buf, x, MAXPATHLEN);
354         else
355                 pathjoin(buf, MAXPATHLEN, dirbuf, x);
356
357         len = clean_fname(buf, 1);
358         if (len != 1 && len < MAXPATHLEN-1) {
359                 buf[len++] = '/';
360                 buf[len] = '\0';
361         }
362         /* This ensures that the specified dir is a parent of the transfer. */
363         for (x = buf, y = dirbuf; *x && *x == *y; x++, y++) {}
364         if (*x)
365                 y += strlen(y); /* nope -- skip the scan */
366
367         parent_dirscan = True;
368         while (*y) {
369                 char save[MAXPATHLEN];
370                 strlcpy(save, y, MAXPATHLEN);
371                 *y = '\0';
372                 dirbuf_len = y - dirbuf;
373                 strlcpy(x, ex->pattern, MAXPATHLEN - (x - buf));
374                 parse_filter_file(lp, buf, ex->match_flags, XFLG_ANCHORED2ABS);
375                 if (ex->match_flags & MATCHFLG_NO_INHERIT)
376                         lp->head = NULL;
377                 lp->tail = NULL;
378                 strlcpy(y, save, MAXPATHLEN);
379                 while ((*x++ = *y++) != '/') {}
380         }
381         parent_dirscan = False;
382         free(pat);
383         return 1;
384 }
385
386 /* Each time rsync changes to a new directory it call this function to
387  * handle all the per-dir merge-files.  The "dir" value is the current path
388  * relative to curr_dir (which might not be null-terminated).  We copy it
389  * into dirbuf so that we can easily append a file name on the end. */
390 void *push_local_filters(const char *dir, unsigned int dirlen)
391 {
392         struct filter_list_struct *ap, *push;
393         int i;
394
395         set_filter_dir(dir, dirlen);
396
397         if (!mergelist_cnt)
398                 return NULL;
399
400         push = new_array(struct filter_list_struct, mergelist_cnt);
401         if (!push)
402                 out_of_memory("push_local_filters");
403
404         for (i = 0, ap = push; i < mergelist_cnt; i++) {
405                 memcpy(ap++, mergelist_parents[i]->u.mergelist,
406                        sizeof (struct filter_list_struct));
407         }
408
409         /* Note: parse_filter_file() might increase mergelist_cnt, so keep
410          * this loop separate from the above loop. */
411         for (i = 0; i < mergelist_cnt; i++) {
412                 struct filter_struct *ex = mergelist_parents[i];
413                 struct filter_list_struct *lp = ex->u.mergelist;
414
415                 if (verbose > 2) {
416                         rprintf(FINFO, "[%s] pushing filter list%s\n",
417                                 who_am_i(), lp->debug_type);
418                 }
419
420                 lp->tail = NULL; /* Switch any local rules to inherited. */
421                 if (ex->match_flags & MATCHFLG_NO_INHERIT)
422                         lp->head = NULL;
423
424                 if (ex->match_flags & MATCHFLG_FINISH_SETUP) {
425                         ex->match_flags &= ~MATCHFLG_FINISH_SETUP;
426                         if (setup_merge_file(ex, lp))
427                                 set_filter_dir(dir, dirlen);
428                 }
429
430                 if (strlcpy(dirbuf + dirbuf_len, ex->pattern,
431                     MAXPATHLEN - dirbuf_len) < MAXPATHLEN - dirbuf_len) {
432                         parse_filter_file(lp, dirbuf, ex->match_flags,
433                                           XFLG_ANCHORED2ABS);
434                 } else {
435                         io_error |= IOERR_GENERAL;
436                         rprintf(FINFO,
437                             "cannot add local filter rules in long-named directory: %s\n",
438                             full_fname(dirbuf));
439                 }
440                 dirbuf[dirbuf_len] = '\0';
441         }
442
443         return (void*)push;
444 }
445
446 void pop_local_filters(void *mem)
447 {
448         struct filter_list_struct *ap, *pop = (struct filter_list_struct*)mem;
449         int i;
450
451         for (i = mergelist_cnt; i-- > 0; ) {
452                 struct filter_struct *ex = mergelist_parents[i];
453                 struct filter_list_struct *lp = ex->u.mergelist;
454
455                 if (verbose > 2) {
456                         rprintf(FINFO, "[%s] popping filter list%s\n",
457                                 who_am_i(), lp->debug_type);
458                 }
459
460                 clear_filter_list(lp);
461         }
462
463         if (!pop)
464                 return;
465
466         for (i = 0, ap = pop; i < mergelist_cnt; i++) {
467                 memcpy(mergelist_parents[i]->u.mergelist, ap++,
468                        sizeof (struct filter_list_struct));
469         }
470
471         free(pop);
472 }
473
474 static int rule_matches(char *name, struct filter_struct *ex, int name_is_dir)
475 {
476         char *p, full_name[MAXPATHLEN];
477         int match_start = 0;
478         int ret_match = ex->match_flags & MATCHFLG_NEGATE ? 0 : 1;
479         char *pattern = ex->pattern;
480
481         if (!*name)
482                 return 0;
483
484         /* If the pattern does not have any slashes AND it does not have
485          * a "**" (which could match a slash), then we just match the
486          * name portion of the path. */
487         if (!ex->u.slash_cnt && !(ex->match_flags & MATCHFLG_WILD2)) {
488                 if ((p = strrchr(name,'/')) != NULL)
489                         name = p+1;
490         }
491         else if (ex->match_flags & MATCHFLG_ABS_PATH && *name != '/'
492             && curr_dir_len > module_dirlen + 1) {
493                 pathjoin(full_name, sizeof full_name,
494                          curr_dir + module_dirlen + 1, name);
495                 name = full_name;
496         }
497
498         if (ex->match_flags & MATCHFLG_DIRECTORY && !name_is_dir)
499                 return !ret_match;
500
501         if (*pattern == '/') {
502                 match_start = 1;
503                 pattern++;
504                 if (*name == '/')
505                         name++;
506         }
507
508         if (ex->match_flags & MATCHFLG_WILD) {
509                 /* A non-anchored match with an infix slash and no "**"
510                  * needs to match the last slash_cnt+1 name elements. */
511                 if (!match_start && ex->u.slash_cnt
512                     && !(ex->match_flags & MATCHFLG_WILD2)) {
513                         int cnt = ex->u.slash_cnt + 1;
514                         for (p = name + strlen(name) - 1; p >= name; p--) {
515                                 if (*p == '/' && !--cnt)
516                                         break;
517                         }
518                         name = p+1;
519                 }
520                 if (wildmatch(pattern, name))
521                         return ret_match;
522                 if (ex->match_flags & MATCHFLG_WILD2_PREFIX) {
523                         /* If the **-prefixed pattern has a '/' as the next
524                          * character, then try to match the rest of the
525                          * pattern at the root. */
526                         if (pattern[2] == '/' && wildmatch(pattern+3, name))
527                                 return ret_match;
528                 }
529                 else if (!match_start && ex->match_flags & MATCHFLG_WILD2) {
530                         /* A non-anchored match with an infix or trailing "**"
531                          * (but not a prefixed "**") needs to try matching
532                          * after every slash. */
533                         while ((name = strchr(name, '/')) != NULL) {
534                                 name++;
535                                 if (wildmatch(pattern, name))
536                                         return ret_match;
537                         }
538                 }
539         } else if (match_start) {
540                 if (strcmp(name,pattern) == 0)
541                         return ret_match;
542         } else {
543                 int l1 = strlen(name);
544                 int l2 = strlen(pattern);
545                 if (l2 <= l1 &&
546                     strcmp(name+(l1-l2),pattern) == 0 &&
547                     (l1==l2 || name[l1-(l2+1)] == '/')) {
548                         return ret_match;
549                 }
550         }
551
552         return !ret_match;
553 }
554
555
556 static void report_filter_result(char const *name,
557                                  struct filter_struct const *ent,
558                                  int name_is_dir, const char *type)
559 {
560         /* If a trailing slash is present to match only directories,
561          * then it is stripped out by add_rule().  So as a special
562          * case we add it back in here. */
563
564         if (verbose >= 2) {
565                 rprintf(FINFO, "[%s] %scluding %s %s because of pattern %s%s%s\n",
566                         who_am_i(),
567                         ent->match_flags & MATCHFLG_INCLUDE ? "in" : "ex",
568                         name_is_dir ? "directory" : "file", name, ent->pattern,
569                         ent->match_flags & MATCHFLG_DIRECTORY ? "/" : "", type);
570         }
571 }
572
573
574 /*
575  * Return -1 if file "name" is defined to be excluded by the specified
576  * exclude list, 1 if it is included, and 0 if it was not matched.
577  */
578 int check_filter(struct filter_list_struct *listp, char *name, int name_is_dir)
579 {
580         struct filter_struct *ent;
581
582         for (ent = listp->head; ent; ent = ent->next) {
583                 if (ent->match_flags & MATCHFLG_PERDIR_MERGE) {
584                         int rc = check_filter(ent->u.mergelist, name,
585                                               name_is_dir);
586                         if (rc)
587                                 return rc;
588                         continue;
589                 }
590                 if (ent->match_flags & MATCHFLG_CVS_IGNORE) {
591                         int rc = check_filter(&cvs_filter_list, name,
592                                               name_is_dir);
593                         if (rc)
594                                 return rc;
595                         continue;
596                 }
597                 if (rule_matches(name, ent, name_is_dir)) {
598                         report_filter_result(name, ent, name_is_dir,
599                                               listp->debug_type);
600                         return ent->match_flags & MATCHFLG_INCLUDE ? 1 : -1;
601                 }
602         }
603
604         return 0;
605 }
606
607
608 /* Get the next include/exclude arg from the string.  The token will not
609  * be '\0' terminated, so use the returned length to limit the string.
610  * Also, be sure to add this length to the returned pointer before passing
611  * it back to ask for the next token.  This routine parses the "!" (list-
612  * clearing) token and (depending on the mflags) the various prefixes.
613  * The *mflags_ptr value will be set on exit to the new MATCHFLG_* bits
614  * for the current token. */
615 static const char *parse_rule_tok(const char *p, uint32 mflags, int xflags,
616                                   unsigned int *len_ptr, uint32 *mflags_ptr)
617 {
618         const uchar *s = (const uchar *)p;
619         uint32 new_mflags;
620         unsigned int len;
621
622         if (mflags & MATCHFLG_WORD_SPLIT) {
623                 /* Skip over any initial whitespace. */
624                 while (isspace(*s))
625                         s++;
626                 /* Update to point to real start of rule. */
627                 p = (const char *)s;
628         }
629         if (!*s)
630                 return NULL;
631
632         new_mflags = mflags & MATCHFLGS_FROM_CONTAINER;
633
634         /* Figure out what kind of a filter rule "s" is pointing at.  Note
635          * that if MATCHFLG_NO_PREFIXES is set, the rule is either an include
636          * or an exclude based on the inheritance of the MATCHFLG_INCLUDE
637          * flag (above).  XFLG_OLD_PREFIXES indicates a compatibility mode
638          * for old include/exclude patterns where just "+ " and "- " are
639          * allowed as optional prefixes.  */
640         if (mflags & MATCHFLG_NO_PREFIXES) {
641                 if (*s == '!')
642                         new_mflags |= MATCHFLG_CLEAR_LIST; /* Tentative! */
643         } else if (xflags & XFLG_OLD_PREFIXES) {
644                 if (*s == '-' && s[1] == ' ') {
645                         new_mflags &= ~MATCHFLG_INCLUDE;
646                         s += 2;
647                 } else if (*s == '+' && s[1] == ' ') {
648                         new_mflags |= MATCHFLG_INCLUDE;
649                         s += 2;
650                 }
651                 if (*s == '!')
652                         new_mflags |= MATCHFLG_CLEAR_LIST; /* Tentative! */
653         } else {
654                 char *mods = "";
655                 switch (*s) {
656                 case ':':
657                         new_mflags |= MATCHFLG_PERDIR_MERGE
658                                     | MATCHFLG_FINISH_SETUP;
659                         /* FALL THROUGH */
660                 case '.':
661                         new_mflags |= MATCHFLG_MERGE_FILE;
662                         mods = MODIFIERS_INCL_EXCL MODIFIERS_MERGE_FILE;
663                         break;
664                 case '+':
665                         new_mflags |= MATCHFLG_INCLUDE;
666                         /* FALL THROUGH */
667                 case '-':
668                         mods = MODIFIERS_INCL_EXCL;
669                         break;
670                 case '!':
671                         new_mflags |= MATCHFLG_CLEAR_LIST;
672                         mods = NULL;
673                         break;
674                 default:
675                         rprintf(FERROR, "Unknown filter rule: %s\n", p);
676                         exit_cleanup(RERR_SYNTAX);
677                 }
678                 while (mods && *++s && *s != ' ' && *s != '_') {
679                         if (strchr(mods, *s) == NULL) {
680                                 if (mflags & MATCHFLG_WORD_SPLIT && isspace(*s)) {
681                                         s--;
682                                         break;
683                                 }
684                             invalid:
685                                 rprintf(FERROR,
686                                         "invalid modifier sequence at '%c' in filter rule: %s\n",
687                                         *s, p);
688                                 exit_cleanup(RERR_SYNTAX);
689                         }
690                         switch (*s) {
691                         case '-':
692                                 if (new_mflags & MATCHFLG_NO_PREFIXES)
693                                     goto invalid;
694                                 new_mflags |= MATCHFLG_NO_PREFIXES;
695                                 break;
696                         case '+':
697                                 if (new_mflags & MATCHFLG_NO_PREFIXES)
698                                     goto invalid;
699                                 new_mflags |= MATCHFLG_NO_PREFIXES
700                                             | MATCHFLG_INCLUDE;
701                                 break;
702                         case '/':
703                                 new_mflags |= MATCHFLG_ABS_PATH;
704                                 break;
705                         case '!':
706                                 new_mflags |= MATCHFLG_NEGATE;
707                                 break;
708                         case 'C':
709                                 if (new_mflags & MATCHFLG_NO_PREFIXES)
710                                     goto invalid;
711                                 new_mflags |= MATCHFLG_NO_PREFIXES
712                                             | MATCHFLG_WORD_SPLIT
713                                             | MATCHFLG_NO_INHERIT
714                                             | MATCHFLG_CVS_IGNORE;
715                                 break;
716                         case 'e':
717                                 new_mflags |= MATCHFLG_EXCLUDE_SELF;
718                                 break;
719                         case 'n':
720                                 new_mflags |= MATCHFLG_NO_INHERIT;
721                                 break;
722                         case 'w':
723                                 new_mflags |= MATCHFLG_WORD_SPLIT;
724                                 break;
725                         }
726                 }
727                 if (*s)
728                         s++;
729         }
730
731         if (mflags & MATCHFLG_WORD_SPLIT) {
732                 const uchar *cp = s;
733                 /* Token ends at whitespace or the end of the string. */
734                 while (!isspace(*cp) && *cp != '\0')
735                         cp++;
736                 len = cp - s;
737         } else
738                 len = strlen((char*)s);
739
740         if (new_mflags & MATCHFLG_CLEAR_LIST) {
741                 if (!(xflags & XFLG_OLD_PREFIXES) && len) {
742                         rprintf(FERROR,
743                                 "'!' rule has trailing characters: %s\n", p);
744                         exit_cleanup(RERR_SYNTAX);
745                 }
746                 if (len > 1)
747                         new_mflags &= ~MATCHFLG_CLEAR_LIST;
748         } else if (!len && !(new_mflags & MATCHFLG_CVS_IGNORE)) {
749                 rprintf(FERROR, "unexpected end of filter rule: %s\n", p);
750                 exit_cleanup(RERR_SYNTAX);
751         }
752
753         *len_ptr = len;
754         *mflags_ptr = new_mflags;
755         return (const char *)s;
756 }
757
758
759 void parse_rule(struct filter_list_struct *listp, const char *pattern,
760                 uint32 mflags, int xflags)
761 {
762         unsigned int pat_len;
763         uint32 new_mflags;
764         const char *cp, *p;
765
766         if (!pattern)
767                 return;
768
769         while (1) {
770                 /* Remember that the returned string is NOT '\0' terminated! */
771                 cp = parse_rule_tok(pattern, mflags, xflags,
772                                     &pat_len, &new_mflags);
773                 if (!cp)
774                         break;
775                 if (pat_len >= MAXPATHLEN) {
776                         rprintf(FERROR, "discarding over-long filter: %s\n",
777                                 cp);
778                         continue;
779                 }
780                 pattern = cp + pat_len;
781
782                 if (new_mflags & MATCHFLG_CLEAR_LIST) {
783                         if (verbose > 2) {
784                                 rprintf(FINFO,
785                                         "[%s] clearing filter list%s\n",
786                                         who_am_i(), listp->debug_type);
787                         }
788                         clear_filter_list(listp);
789                         continue;
790                 }
791
792                 if (new_mflags & MATCHFLG_MERGE_FILE) {
793                         unsigned int len;
794                         if (!pat_len) {
795                                 cp = ".cvsignore";
796                                 pat_len = 10;
797                         }
798                         len = pat_len;
799                         if (new_mflags & MATCHFLG_EXCLUDE_SELF) {
800                                 const char *name = strrchr(cp, '/');
801                                 if (name)
802                                         len -= ++name - cp;
803                                 else
804                                         name = cp;
805                                 add_rule(listp, name, len, 0, 0);
806                                 new_mflags &= ~MATCHFLG_EXCLUDE_SELF;
807                                 len = pat_len;
808                         }
809                         if (new_mflags & MATCHFLG_PERDIR_MERGE) {
810                                 if (parent_dirscan) {
811                                         if (!(p = parse_merge_name(cp, &len,
812                                                                 module_dirlen)))
813                                                 continue;
814                                         add_rule(listp, p, len, new_mflags, 0);
815                                         continue;
816                                 }
817                         } else {
818                                 if (!(p = parse_merge_name(cp, &len, 0)))
819                                         continue;
820                                 parse_filter_file(listp, p, new_mflags,
821                                                   XFLG_FATAL_ERRORS);
822                                 continue;
823                         }
824                 }
825
826                 add_rule(listp, cp, pat_len, new_mflags, xflags);
827
828                 if (new_mflags & MATCHFLG_CVS_IGNORE
829                     && !(new_mflags & MATCHFLG_MERGE_FILE))
830                         get_cvs_excludes();
831         }
832 }
833
834
835 void parse_filter_file(struct filter_list_struct *listp, const char *fname,
836                        uint32 mflags, int xflags)
837 {
838         FILE *fp;
839         char line[MAXPATHLEN+MAX_RULE_PREFIX+1]; /* +1 for trailing slash. */
840         char *eob = line + sizeof line - 1;
841         int word_split = mflags & MATCHFLG_WORD_SPLIT;
842
843         if (!fname || !*fname)
844                 return;
845
846         if (*fname != '-' || fname[1] || am_server) {
847                 if (server_filter_list.head) {
848                         strlcpy(line, fname, sizeof line);
849                         clean_fname(line, 1);
850                         if (check_filter(&server_filter_list, line, 0) < 0)
851                                 fp = NULL;
852                         else
853                                 fp = fopen(line, "rb");
854                 } else
855                         fp = fopen(fname, "rb");
856         } else
857                 fp = stdin;
858
859         if (verbose > 2) {
860                 rprintf(FINFO, "[%s] parse_filter_file(%s,%x,%x)%s\n",
861                         who_am_i(), safe_fname(fname), mflags, xflags,
862                         fp ? "" : " [not found]");
863         }
864
865         if (!fp) {
866                 if (xflags & XFLG_FATAL_ERRORS) {
867                         rsyserr(FERROR, errno,
868                                 "failed to open %sclude file %s",
869                                 mflags & MATCHFLG_INCLUDE ? "in" : "ex",
870                                 safe_fname(fname));
871                         exit_cleanup(RERR_FILEIO);
872                 }
873                 return;
874         }
875         dirbuf[dirbuf_len] = '\0';
876
877         while (1) {
878                 char *s = line;
879                 int ch, overflow = 0;
880                 while (1) {
881                         if ((ch = getc(fp)) == EOF) {
882                                 if (ferror(fp) && errno == EINTR)
883                                         continue;
884                                 break;
885                         }
886                         if (word_split && isspace(ch))
887                                 break;
888                         if (eol_nulls? !ch : (ch == '\n' || ch == '\r'))
889                                 break;
890                         if (s < eob)
891                                 *s++ = ch;
892                         else
893                                 overflow = 1;
894                 }
895                 if (overflow) {
896                         rprintf(FERROR, "discarding over-long filter: %s...\n", line);
897                         s = line;
898                 }
899                 *s = '\0';
900                 /* Skip an empty token and (when line parsing) comments. */
901                 if (*line && (word_split || (*line != ';' && *line != '#')))
902                         parse_rule(listp, line, mflags, xflags);
903                 if (ch == EOF)
904                         break;
905         }
906         fclose(fp);
907 }
908
909 /* If the "sending" flag is > 0, the prefix is made compatible with the
910  * current protocol_version (if possible) or a NULL is returned (if not
911  * possible). */
912 char *get_rule_prefix(int match_flags, const char *pat, int sending,
913                       unsigned int *plen_ptr)
914 {
915         static char buf[MAX_RULE_PREFIX+1];
916         char *op = buf;
917         int legal_len = sending && protocol_version < 29 ? 1 : MAX_RULE_PREFIX;
918
919         if (match_flags & MATCHFLG_PERDIR_MERGE) {
920                 if (legal_len == 1)
921                         return NULL;
922                 *op++ = ':';
923         } else if (match_flags & MATCHFLG_INCLUDE)
924                 *op++ = '+';
925         else if (legal_len != 1
926             || ((*pat == '-' || *pat == '+') && pat[1] == ' '))
927                 *op++ = '-';
928         else
929                 legal_len = 0;
930
931         if (match_flags & MATCHFLG_EXCLUDE_SELF)
932                 *op++ = 'e';
933         if (match_flags & MATCHFLG_CVS_IGNORE)
934                 *op++ = 'C';
935         else {
936                 if (match_flags & MATCHFLG_NO_INHERIT)
937                         *op++ = 'n';
938                 if (match_flags & MATCHFLG_WORD_SPLIT)
939                         *op++ = 'w';
940                 if (match_flags & MATCHFLG_NO_PREFIXES) {
941                         if (match_flags & MATCHFLG_INCLUDE)
942                                 *op++ = '+';
943                         else
944                                 *op++ = '-';
945                 }
946         }
947         if (op - buf > legal_len)
948                 return NULL;
949         if (legal_len)
950                 *op++ = ' ';
951         *op = '\0';
952         if (plen_ptr)
953                 *plen_ptr = op - buf;
954         if (op - buf > MAX_RULE_PREFIX)
955                 overflow("get_rule_prefix");
956         return buf;
957 }
958
959 static void send_rules(int f_out, struct filter_list_struct *flp)
960 {
961         struct filter_struct *ent;
962
963         for (ent = flp->head; ent; ent = ent->next) {
964                 unsigned int len, plen, dlen;
965                 char *p;
966
967                 if (ent->match_flags & MATCHFLG_CVS_IGNORE
968                     && !(ent->match_flags & MATCHFLG_MERGE_FILE)) {
969                         if (am_sender || protocol_version < 29) {
970                                 send_rules(f_out, &cvs_filter_list);
971                                 continue;
972                         }
973                 }
974                 p = get_rule_prefix(ent->match_flags, ent->pattern, 1, &plen);
975                 if (!p) {
976                         rprintf(FERROR,
977                                 "filter rules are too modern for remote rsync.\n");
978                         exit_cleanup(RERR_SYNTAX);
979                 }
980                 len = strlen(ent->pattern);
981                 dlen = ent->match_flags & MATCHFLG_DIRECTORY ? 1 : 0;
982                 if (!(plen + len + dlen))
983                         continue;
984                 write_int(f_out, plen + len + dlen);
985                 if (plen)
986                         write_buf(f_out, p, plen);
987                 write_buf(f_out, ent->pattern, len);
988                 if (dlen)
989                         write_byte(f_out, '/');
990         }
991 }
992
993 /* This is only called by the client. */
994 void send_filter_list(int f_out)
995 {
996         if (local_server || (am_sender && (!delete_mode || delete_excluded)))
997                 f_out = -1;
998         if (cvs_exclude && am_sender) {
999                 if (protocol_version >= 29)
1000                         parse_rule(&filter_list, ":C", 0, 0);
1001                 parse_rule(&filter_list, "-C", 0, 0);
1002         }
1003
1004         /* This is a complete hack - blame Rusty.  FIXME!
1005          * Remove this hack when older rsyncs (below 2.6.4) are gone. */
1006         if (list_only == 1 && !recurse)
1007                 parse_rule(&filter_list, "/*/*", MATCHFLG_NO_PREFIXES, 0);
1008
1009         if (f_out >= 0) {
1010                 send_rules(f_out, &filter_list);
1011                 write_int(f_out, 0);
1012         }
1013
1014         if (cvs_exclude) {
1015                 if (!am_sender || protocol_version < 29)
1016                         parse_rule(&filter_list, ":C", 0, 0);
1017                 if (!am_sender)
1018                         parse_rule(&filter_list, "-C", 0, 0);
1019         }
1020 }
1021
1022 /* This is only called by the server. */
1023 void recv_filter_list(int f_in)
1024 {
1025         char line[MAXPATHLEN+MAX_RULE_PREFIX+1]; /* +1 for trailing slash. */
1026         int xflags = protocol_version >= 29 ? 0 : XFLG_OLD_PREFIXES;
1027         unsigned int len;
1028
1029         if (!local_server && (am_sender || (delete_mode && !delete_excluded))) {
1030                 while ((len = read_int(f_in)) != 0) {
1031                         if (len >= sizeof line)
1032                                 overflow("recv_rules");
1033                         read_sbuf(f_in, line, len);
1034                         parse_rule(&filter_list, line, 0, xflags);
1035                 }
1036         }
1037
1038         if (cvs_exclude) {
1039                 if (local_server || am_sender || protocol_version < 29)
1040                         parse_rule(&filter_list, ":C", 0, 0);
1041                 if (local_server || am_sender)
1042                         parse_rule(&filter_list, "-C", 0, 0);
1043         }
1044 }
1045
1046
1047 static char default_cvsignore[] = 
1048         /* These default ignored items come from the CVS manual. */
1049         "RCS SCCS CVS CVS.adm RCSLOG cvslog.* tags TAGS"
1050         " .make.state .nse_depinfo *~ #* .#* ,* _$* *$"
1051         " *.old *.bak *.BAK *.orig *.rej .del-*"
1052         " *.a *.olb *.o *.obj *.so *.exe"
1053         " *.Z *.elc *.ln core"
1054         /* The rest we added to suit ourself. */
1055         " .svn/";
1056
1057 void get_cvs_excludes(void)
1058 {
1059         static unsigned cvs_mflags = MATCHFLG_WORD_SPLIT|MATCHFLG_NO_PREFIXES;
1060         char *p, fname[MAXPATHLEN];
1061         static int initialized = 0;
1062
1063         if (initialized)
1064                 return;
1065         initialized = 1;
1066
1067         parse_rule(&cvs_filter_list, default_cvsignore, cvs_mflags, 0);
1068
1069         p = module_id >= 0 && lp_use_chroot(module_id) ? "/" : getenv("HOME");
1070         if (p && pathjoin(fname, MAXPATHLEN, p, ".cvsignore") < MAXPATHLEN)
1071                 parse_filter_file(&cvs_filter_list, fname, cvs_mflags, 0);
1072
1073         parse_rule(&cvs_filter_list, getenv("CVSIGNORE"), cvs_mflags, 0);
1074 }