- add_exclude() now takes a flag int and can optionally word-split
[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
31 struct exclude_struct **exclude_list;
32 struct exclude_struct **local_exclude_list;
33 struct exclude_struct **server_exclude_list;
34 char *exclude_path_prefix = NULL;
35
36 /** Build an exclude structure given a exclude pattern */
37 static struct exclude_struct *make_exclude(const char *pattern, int pat_len,
38                                            int include)
39 {
40         struct exclude_struct *ret;
41         const char *cp;
42         int ex_len;
43
44         ret = new(struct exclude_struct);
45         if (!ret)
46                 out_of_memory("make_exclude");
47
48         memset(ret, 0, sizeof ret[0]);
49         ret->include = include;
50
51         if (exclude_path_prefix)
52                 ret->match_flags |= MATCHFLG_ABS_PATH;
53         if (exclude_path_prefix && *pattern == '/')
54                 ex_len = strlen(exclude_path_prefix);
55         else
56                 ex_len = 0;
57         ret->pattern = new_array(char, ex_len + pat_len + 1);
58         if (!ret->pattern)
59                 out_of_memory("make_exclude");
60         if (ex_len)
61                 memcpy(ret->pattern, exclude_path_prefix, ex_len);
62         strlcpy(ret->pattern + ex_len, pattern, pat_len + 1);
63         pat_len += ex_len;
64
65         if (strpbrk(ret->pattern, "*[?")) {
66                 ret->match_flags |= MATCHFLG_WILD;
67                 if (strstr(ret->pattern, "**")) {
68                         ret->match_flags |= MATCHFLG_WILD2;
69                         /* If the pattern starts with **, note that. */
70                         if (*ret->pattern == '*' && ret->pattern[1] == '*')
71                                 ret->match_flags |= MATCHFLG_WILD2_PREFIX;
72                 }
73         }
74
75         if (pat_len > 1 && ret->pattern[pat_len-1] == '/') {
76                 ret->pattern[pat_len-1] = 0;
77                 ret->directory = 1;
78         }
79
80         for (cp = ret->pattern; (cp = strchr(cp, '/')) != NULL; cp++)
81                 ret->slash_cnt++;
82
83         return ret;
84 }
85
86 static void free_exclude(struct exclude_struct *ex)
87 {
88         free(ex->pattern);
89         memset(ex, 0, sizeof ex[0]);
90         free(ex);
91 }
92
93
94 void free_exclude_list(struct exclude_struct ***listp)
95 {
96         struct exclude_struct **list = *listp;
97
98         if (verbose > 2)
99                 rprintf(FINFO, "[%s] clearing exclude list\n", who_am_i());
100
101         if (!list)
102                 return;
103
104         while (*list)
105                 free_exclude(*list++);
106
107         free(*listp);
108         *listp = NULL;
109 }
110
111 static int check_one_exclude(char *name, struct exclude_struct *ex,
112                              int name_is_dir)
113 {
114         char *p;
115         int match_start = 0;
116         char *pattern = ex->pattern;
117
118         /* If the pattern does not have any slashes AND it does not have
119          * a "**" (which could match a slash), then we just match the
120          * name portion of the path. */
121         if (!ex->slash_cnt && !(ex->match_flags & MATCHFLG_WILD2)) {
122                 if ((p = strrchr(name,'/')) != NULL)
123                         name = p+1;
124         }
125         else if ((ex->match_flags & MATCHFLG_ABS_PATH) && *name != '/') {
126                 static char full_name[MAXPATHLEN];
127                 extern char curr_dir[];
128                 int plus = curr_dir[1] == '\0'? 1 : 0;
129                 pathjoin(full_name, sizeof full_name, curr_dir+plus, name);
130                 name = full_name;
131         }
132
133         if (!name[0]) return 0;
134
135         if (ex->directory && !name_is_dir) return 0;
136
137         if (*pattern == '/') {
138                 match_start = 1;
139                 pattern++;
140                 if (*name == '/')
141                         name++;
142         }
143
144         if (ex->match_flags & MATCHFLG_WILD) {
145                 /* A non-anchored match with an infix slash and no "**"
146                  * needs to match the last slash_cnt+1 name elements. */
147                 if (!match_start && ex->slash_cnt &&
148                     !(ex->match_flags & MATCHFLG_WILD2)) {
149                         int cnt = ex->slash_cnt + 1;
150                         for (p = name + strlen(name) - 1; p >= name; p--) {
151                                 if (*p == '/' && !--cnt)
152                                         break;
153                         }
154                         name = p+1;
155                 }
156                 if (wildmatch(pattern, name))
157                         return 1;
158                 if (ex->match_flags & MATCHFLG_WILD2_PREFIX) {
159                         /* If the **-prefixed pattern has a '/' as the next
160                          * character, then try to match the rest of the
161                          * pattern at the root. */
162                         if (pattern[2] == '/' && wildmatch(pattern+3, name))
163                                 return 1;
164                 }
165                 else if (!match_start && ex->match_flags & MATCHFLG_WILD2) {
166                         /* A non-anchored match with an infix or trailing "**"
167                          * (but not a prefixed "**") needs to try matching
168                          * after every slash. */
169                         while ((name = strchr(name, '/')) != NULL) {
170                                 name++;
171                                 if (wildmatch(pattern, name))
172                                         return 1;
173                         }
174                 }
175         } else if (match_start) {
176                 if (strcmp(name,pattern) == 0)
177                         return 1;
178         } else {
179                 int l1 = strlen(name);
180                 int l2 = strlen(pattern);
181                 if (l2 <= l1 &&
182                     strcmp(name+(l1-l2),pattern) == 0 &&
183                     (l1==l2 || name[l1-(l2+1)] == '/')) {
184                         return 1;
185                 }
186         }
187
188         return 0;
189 }
190
191
192 static void report_exclude_result(char const *name,
193                                   struct exclude_struct const *ent,
194                                   int name_is_dir)
195 {
196         /* If a trailing slash is present to match only directories,
197          * then it is stripped out by make_exclude.  So as a special
198          * case we add it back in here. */
199
200         if (verbose >= 2) {
201                 rprintf(FINFO, "[%s] %scluding %s %s because of pattern %s%s\n",
202                         who_am_i(), ent->include ? "in" : "ex",
203                         name_is_dir ? "directory" : "file", name, ent->pattern,
204                         ent->directory ? "/" : "");
205         }
206 }
207
208
209 /*
210  * Return true if file NAME is defined to be excluded by either
211  * LOCAL_EXCLUDE_LIST or the globals EXCLUDE_LIST.
212  */
213 int check_exclude(struct exclude_struct **list, char *name, int name_is_dir)
214 {
215         struct exclude_struct *ent;
216
217         while ((ent = *list++) != NULL) {
218                 if (check_one_exclude(name, ent, name_is_dir)) {
219                         report_exclude_result(name, ent, name_is_dir);
220                         return !ent->include;
221                 }
222         }
223
224         return 0;
225 }
226
227
228 /* Get the next include/exclude arg from the string.  The token will not
229  * be '\0' terminated, so use the returned length to limit the string.
230  * Also, be sure to add this length to the returned pointer before passing
231  * it back to ask for the next token.  This routine will not split off a
232  * prefix of "+ " or "- " unless xflags contains XFLG_NO_PREFIXES.
233  */
234 static const char *get_exclude_tok(const char *p, int *len_ptr, int xflags)
235 {
236         const unsigned char *s, *t;
237
238         /* Skip over any initial spaces */
239         for (s = (unsigned char *)p; isspace(*s); s++) {}
240
241         /* Remember the beginning of the token. */
242         t = s;
243
244         /* Do we have a token to parse? */
245         if (*s) {
246                 /* Is this a '+' or '-' followed by a space (not whitespace)? */
247                 if (!(xflags & XFLG_NO_PREFIXES)
248                     && (*s == '+' || *s == '-') && s[1] == ' ')
249                         s += 2;
250
251                 /* Skip to the next space or the end of the string */
252                 while (!isspace(*s) && *s != '\0')
253                         s++;
254         }
255
256         *len_ptr = s - t;
257         return (const char *)t;
258 }
259
260
261 void add_exclude(struct exclude_struct ***listp, const char *pattern, int xflags)
262 {
263         struct exclude_struct **list = *listp;
264         int add_cnt, pat_len, list_len = 0;
265         const char *cp;
266
267         if (!pattern)
268                 return;
269
270         if (xflags & XFLG_WORD_SPLIT) {
271                 /* Count how many tokens we need to add.  Also looks for
272                  * the special "!" token, which clears the list up through
273                  * that token. */
274                 for (add_cnt = 0, cp = pattern; ; cp += pat_len, add_cnt++) {
275                         cp = get_exclude_tok(cp, &pat_len, xflags);
276                         if (!pat_len)
277                                 break;
278                         if (pat_len == 1 && *cp == '!') {
279                                 free_exclude_list(listp);
280                                 add_cnt = -1; /* Will increment to 0. */
281                                 pattern = cp + 1;
282                         }
283                 }
284                 if (!add_cnt)
285                         return;
286                 cp = get_exclude_tok(pattern, &pat_len, xflags);
287         } else {
288                 add_cnt = 1;
289                 cp = pattern;
290                 pat_len = strlen(pattern);
291
292                 if (pat_len == 1 && *cp == '!') {
293                         free_exclude_list(listp);
294                         return;
295                 }
296         }
297
298         if (list)
299                 for ( ; list[list_len]; list_len++) {}
300
301         list = *listp = realloc_array(list, struct exclude_struct *,
302                                       list_len + add_cnt + 1);
303         if (!list)
304                 out_of_memory("add_exclude");
305
306         while (pat_len) {
307                 int incl = xflags & XFLG_DEF_INCLUDE;
308                 if (!(xflags & XFLG_NO_PREFIXES)
309                     && (*cp == '-' || *cp == '+')
310                     && cp[1] == ' ') {
311                         incl = *cp == '+';
312                         cp += 2;
313                         pat_len -= 2;
314                 }
315                 list[list_len++] = make_exclude(cp, pat_len, incl);
316
317                 if (verbose > 2) {
318                         rprintf(FINFO, "[%s] add_exclude(%s,%s)\n",
319                                 who_am_i(), cp,
320                                 incl ? "include" : "exclude");
321                 }
322                 cp += pat_len;
323                 cp = get_exclude_tok(cp, &pat_len, xflags);
324         }
325
326         list[list_len] = NULL;
327 }
328
329
330 void add_exclude_file(struct exclude_struct ***listp, const char *fname,
331                       int xflags)
332 {
333         FILE *fp;
334         char line[MAXPATHLEN];
335         char *eob = line + MAXPATHLEN - 1;
336         extern int eol_nulls;
337
338         if (!fname || !*fname)
339                 return;
340
341         if (*fname != '-' || fname[1])
342                 fp = fopen(fname, "rb");
343         else
344                 fp = stdin;
345         if (!fp) {
346                 if (xflags & XFLG_FATAL_ERRORS) {
347                         rsyserr(FERROR, errno,
348                                 "failed to open %s file %s",
349                                 xflags & XFLG_DEF_INCLUDE ? "include" : "exclude",
350                                 fname);
351                         exit_cleanup(RERR_FILEIO);
352                 }
353                 return;
354         }
355
356         while (1) {
357                 char *s = line;
358                 int ch;
359                 while (1) {
360                         if ((ch = getc(fp)) == EOF) {
361                                 if (ferror(fp) && errno == EINTR)
362                                         continue;
363                                 break;
364                         }
365                         if (eol_nulls? !ch : (ch == '\n' || ch == '\r'))
366                                 break;
367                         if (s < eob)
368                                 *s++ = ch;
369                 }
370                 *s = '\0';
371                 if (*line && *line != ';' && *line != '#') {
372                         /* Skip lines starting with semicolon or pound.
373                          * It probably wouldn't cause any harm to not skip
374                          * them but there's no need to save them. */
375                         add_exclude(listp, line, xflags);
376                 }
377                 if (ch == EOF)
378                         break;
379         }
380         fclose(fp);
381 }
382
383
384 void send_exclude_list(int f)
385 {
386         int i;
387         extern int list_only, recurse;
388
389         /* This is a complete hack - blame Rusty.
390          *
391          * FIXME: This pattern shows up in the output of
392          * report_exclude_result(), which is not ideal. */
393         if (list_only && !recurse)
394                 add_exclude(&exclude_list, "/*/*", 0);
395
396         if (!exclude_list) {
397                 write_int(f, 0);
398                 return;
399         }
400
401         for (i = 0; exclude_list[i]; i++) {
402                 unsigned int l;
403                 char p[MAXPATHLEN+1];
404
405                 l = strlcpy(p, exclude_list[i]->pattern, sizeof p);
406                 if (l == 0 || l >= MAXPATHLEN)
407                         continue;
408                 if (exclude_list[i]->directory) {
409                         p[l++] = '/';
410                         p[l] = '\0';
411                 }
412
413                 if (exclude_list[i]->include) {
414                         write_int(f, l + 2);
415                         write_buf(f, "+ ", 2);
416                 } else if ((*p == '-' || *p == '+') && p[1] == ' ') {
417                         write_int(f, l + 2);
418                         write_buf(f, "- ", 2);
419                 } else
420                         write_int(f, l);
421                 write_buf(f, p, l);
422         }
423
424         write_int(f, 0);
425 }
426
427
428 void recv_exclude_list(int f)
429 {
430         char line[MAXPATHLEN+1]; /* Allows a trailing slash on a max-len dir */
431         unsigned int l;
432
433         while ((l = read_int(f)) != 0) {
434                 if (l >= sizeof line)
435                         overflow("recv_exclude_list");
436                 read_sbuf(f, line, l);
437                 add_exclude(&exclude_list, line, 0);
438         }
439 }
440
441
442 static char default_cvsignore[] = 
443         /* These default ignored items come from the CVS manual. */
444         "RCS SCCS CVS CVS.adm RCSLOG cvslog.* tags TAGS"
445         " .make.state .nse_depinfo *~ #* .#* ,* _$* *$"
446         " *.old *.bak *.BAK *.orig *.rej .del-*"
447         " *.a *.olb *.o *.obj *.so *.exe"
448         " *.Z *.elc *.ln core"
449         /* The rest we added to suit ourself. */
450         " .svn/";
451
452 void add_cvs_excludes(void)
453 {
454         char fname[MAXPATHLEN];
455         char *p;
456
457         add_exclude(&exclude_list, default_cvsignore,
458                     XFLG_WORD_SPLIT | XFLG_NO_PREFIXES);
459
460         if ((p = getenv("HOME"))
461             && pathjoin(fname, sizeof fname, p, ".cvsignore") < sizeof fname) {
462                 add_exclude_file(&exclude_list, fname,
463                                  XFLG_WORD_SPLIT | XFLG_NO_PREFIXES);
464         }
465
466         add_exclude(&exclude_list, getenv("CVSIGNORE"),
467                     XFLG_WORD_SPLIT | XFLG_NO_PREFIXES);
468 }