Improved the option syntax by eliminating the --inherit=DEPTH option and
[rsync/rsync-patches.git] / filter.diff
CommitLineData
8a529471
WD
1After applying this patch and running configure, you MUST run this
2command before "make":
3
4 make proto
5
524989ae 6This patch adds the ability to merge rules into your excludes/includes
d34d9fad
WD
7using a ". FILE" idiom. If you specify a name with a preceding -p
8option, that filename will be looked for in every subdirectory that
9rsync visits, and the rules found in that subdirectory's file will
10affect either just that dir or, if -i is specified, that dir and its
11subdirs.
a55d21aa
WD
12
13For example:
14
d34d9fad 15 rsync -av --exclude='. -pi .excl' from/ to
a55d21aa
WD
16
17The above will look for a file named ".excl" in every directory of the
524989ae
WD
18hierarchy that rsync visits, and it will exclude (by default) names
19based on the rules found therein. If one of the .excl files contains
20this:
a55d21aa
WD
21
22 + *.c
d34d9fad
WD
23 . -p .excl2
24 . -i .excl3
524989ae 25 *.o
a55d21aa 26
d34d9fad
WD
27Then the file ".excl2" will also be read in from the current dir and all
28its subdirs (due to the -p option) with each file's rules only affecting
29the file's current directory. The file ".excl3" would just be read in
30for the current dir (because it was not specified with the -p option),
31but its rules would be inherited by all its subdirectories (because of
32the -i option).
a55d21aa
WD
33
34..wayne..
35
d34d9fad
WD
36--- orig/exclude.c 2004-08-05 23:16:37
37+++ exclude.c 2004-08-06 09:01:33
38@@ -27,17 +27,66 @@
045caa90
WD
39 #include "rsync.h"
40
41 extern int verbose;
42+extern int am_sender;
a55d21aa
WD
43 extern int eol_nulls;
44 extern int list_only;
45 extern int recurse;
46+extern int io_error;
56babefa 47+extern int module_id;
045caa90
WD
48+extern int delete_mode;
49+extern int delete_excluded;
56babefa 50+extern int sanitize_paths;
a55d21aa
WD
51
52 extern char curr_dir[];
56babefa 53+extern unsigned int curr_dir_len;
a55d21aa 54
d8af8661 55 struct exclude_list_struct exclude_list = { 0, 0, "" };
524989ae 56-struct exclude_list_struct local_exclude_list = { 0, 0, "per-dir .cvsignore " };
d8af8661 57 struct exclude_list_struct server_exclude_list = { 0, 0, "server " };
a55d21aa 58 char *exclude_path_prefix = NULL;
d34d9fad 59
eabda998 60+struct mergelist_save_struct {
d1e7c1c8 61+ struct exclude_list_struct *array;
d8af8661
WD
62+ int count;
63+};
524989ae 64+
a55d21aa
WD
65+static char dirbuf[MAXPATHLEN];
66+static unsigned int dirbuf_offset = 0;
d34d9fad
WD
67+static struct exclude_struct **mergelist_parents;
68+static int mergelist_cnt = 0;
69+static int mergelist_size = 0;
70+static int initialized_mergelist_cnt = -1;
a55d21aa 71+
d1e7c1c8
WD
72+/* Each exclude_list_struct describes a singly-linked list by keeping track
73+ * of both the head and tail pointers. The list is slightly unusual in that
74+ * a parent-dir's content can be appended to the end of the local list in a
75+ * special way: the last item in the local list has its "next" pointer set
0c7d1fd8 76+ * to point to the inherited list, but the local list's tail pointer points
d1e7c1c8 77+ * at the end of the local list. Thus, if the local list is empty, the head
0c7d1fd8 78+ * will be pointing at the inherited content but the tail will be NULL. To
d1e7c1c8
WD
79+ * help you visualize this, here are the possible list arrangements:
80+ *
81+ * Completely Empty Local Content Only
82+ * ================================== ====================================
83+ * head -> NULL head -> Local1 -> Local2 -> NULL
84+ * tail -> NULL tail -------------^
85+ *
86+ * Inherited Content Only Both Local and Inherited Content
87+ * ================================== ====================================
88+ * head -> Parent1 -> Parent2 -> NULL head -> L1 -> L2 -> P1 -> P2 -> NULL
89+ * tail -> NULL tail ---------^
90+ *
91+ * This means that anyone wanting to traverse the whole list to USE it just
92+ * needs to start at the head and use the "next" pointers until it goes
93+ * NULL. To add new local content, we insert the item after the tail item
94+ * and update the tail (obviously, if "tail" was NULL, we insert it at the
95+ * head). To clear the local list, WE MUST NOT FREE THE INHERITED CONTENT
bc95f62b
WD
96+ * because it is shared between the current list and our parent list(s).
97+ * The easiest way to handle this is to simply truncate the list after the
98+ * tail item and then free the local list from the head. When inheriting
99+ * the list for a new local dir, we just save off the exclude_list_struct
0c7d1fd8 100+ * values (so we can pop back to them later) and set the tail to NULL.
d1e7c1c8 101+ */
d34d9fad 102+
0c7d1fd8
WD
103 /** Build an exclude structure given an exclude pattern. */
104 static void make_exclude(struct exclude_list_struct *listp, const char *pat,
d34d9fad
WD
105 unsigned int pat_len, unsigned int mflags)
106@@ -46,6 +95,31 @@ static void make_exclude(struct exclude_
a55d21aa 107 const char *cp;
0c7d1fd8
WD
108 unsigned int ex_len;
109
d34d9fad
WD
110+ if (verbose > 2) {
111+ rprintf(FINFO, "[%s] add_exclude(%.*s, %s%s%sclude)\n",
112+ who_am_i(), (int)pat_len, pat, listp->debug_type,
113+ mflags & MATCHFLG_MERGE_FILE ? "FILE " : "",
114+ mflags & MATCHFLG_INCLUDE ? "in" : "ex");
115+ }
116+
524989ae 117+ if (mflags & MATCHFLG_MERGE_FILE) {
eabda998 118+ int i;
a55d21aa 119+ /* If the local include file was already mentioned, don't
524989ae 120+ * add it again. */
eabda998
WD
121+ for (i = 0; i < mergelist_cnt; i++) {
122+ struct exclude_struct *ex = mergelist_parents[i];
123+ if (strlen(ex->pattern) == pat_len
d8af8661 124+ && memcmp(ex->pattern, pat, pat_len) == 0)
a55d21aa
WD
125+ return;
126+ }
524989ae
WD
127+ if ((pat_len == 10 || (pat_len > 10 && pat[pat_len-11] == '/'))
128+ && strncmp(pat+pat_len-10, ".cvsignore", 10) == 0) {
a55d21aa 129+ mflags |= MATCHFLG_CVSIGNORE;
d34d9fad 130+ mflags &= ~(MATCHFLG_INCLUDE | MATCHFLG_INHERIT);
a55d21aa
WD
131+ } else
132+ mflags &= ~MATCHFLG_CVSIGNORE;
133+ }
0c7d1fd8 134+
a55d21aa
WD
135 ret = new(struct exclude_struct);
136 if (!ret)
137 out_of_memory("make_exclude");
d34d9fad 138@@ -81,14 +155,40 @@ static void make_exclude(struct exclude_
7b22909b 139 mflags |= MATCHFLG_DIRECTORY;
a55d21aa
WD
140 }
141
7b22909b 142- for (cp = ret->pattern; (cp = strchr(cp, '/')) != NULL; cp++)
bc95f62b 143- ret->slash_cnt++;
524989ae 144+ if (mflags & MATCHFLG_MERGE_FILE) {
d8af8661
WD
145+ struct exclude_list_struct *lp
146+ = new_array(struct exclude_list_struct, 1);
147+ if (!lp)
a55d21aa 148+ out_of_memory("make_exclude");
7cb7ae4e 149+ lp->head = lp->tail = NULL;
d34d9fad
WD
150+ if ((cp = strrchr(ret->pattern, '/')) != NULL)
151+ cp++;
152+ else
153+ cp = ret->pattern;
154+ if (asprintf(&lp->debug_type, "per-dir %s ", cp) < 0)
a55d21aa 155+ out_of_memory("make_exclude");
eabda998
WD
156+ ret->u.mergelist = lp;
157+ if (mergelist_cnt == mergelist_size) {
d34d9fad
WD
158+ mergelist_size += 5;
159+ mergelist_parents = realloc_array(mergelist_parents,
160+ struct exclude_struct *,
161+ mergelist_size);
162+ if (!mergelist_parents)
163+ out_of_memory("make_exclude");
eabda998
WD
164+ }
165+ mergelist_parents[mergelist_cnt++] = ret;
7b22909b
WD
166+ } else {
167+ for (cp = ret->pattern; (cp = strchr(cp, '/')) != NULL; cp++)
168+ ret->u.slash_cnt++;
abe86b1f 169+ }
7b22909b 170
0c7d1fd8 171 ret->match_flags = mflags;
a55d21aa 172
7b22909b
WD
173- if (!listp->tail)
174+ if (!listp->tail) {
175+ ret->next = listp->head;
176 listp->head = listp->tail = ret;
177- else {
178+ } else {
179+ ret->next = listp->tail->next;
180 listp->tail->next = ret;
181 listp->tail = ret;
182 }
d34d9fad 183@@ -96,22 +196,180 @@ static void make_exclude(struct exclude_
d8af8661
WD
184
185 static void free_exclude(struct exclude_struct *ex)
186 {
187+ if (ex->match_flags & MATCHFLG_MERGE_FILE) {
eabda998
WD
188+ free(ex->u.mergelist->debug_type);
189+ free(ex->u.mergelist);
d8af8661
WD
190+ }
191 free(ex->pattern);
a55d21aa
WD
192 free(ex);
193 }
194
d8af8661
WD
195-void clear_exclude_list(struct exclude_list_struct *listp)
196+static void clear_exclude_list(struct exclude_list_struct *listp)
a55d21aa 197 {
7cb7ae4e
WD
198- struct exclude_struct *ent, *next;
199-
200- for (ent = listp->head; ent; ent = next) {
201- next = ent->next;
202- free_exclude(ent);
203+ if (listp->tail) {
204+ struct exclude_struct *ent, *next;
bc95f62b 205+ /* Truncate any inherited items from the local list. */
7cb7ae4e 206+ listp->tail->next = NULL;
dc5cce3c 207+ /* Now free everything that is left. */
7cb7ae4e
WD
208+ for (ent = listp->head; ent; ent = next) {
209+ next = ent->next;
210+ free_exclude(ent);
211+ }
524989ae
WD
212 }
213
7cb7ae4e
WD
214 listp->head = listp->tail = NULL;
215 }
a55d21aa 216
d34d9fad
WD
217+static void prep_merge_file(struct exclude_struct *ex,
218+ struct exclude_list_struct *lp, int flags,
219+ char *dir, unsigned int dirlen)
1e476835 220+{
d34d9fad
WD
221+ char buf[MAXPATHLEN];
222+ char *x, *y, *fn = ex->pattern;
56babefa 223+
d34d9fad 224+ if (!(x = strrchr(fn, '/')))
1e476835
WD
225+ return;
226+
d34d9fad
WD
227+ *x = '\0';
228+ if (dir[dirlen])
229+ dir[dirlen] = '\0';
230+ pathjoin(dirbuf, MAXPATHLEN, sanitize_paths ? "" : curr_dir, dir);
231+ if (dirlen == 2 && *dir == '.') {
232+ int len = strlen(dirbuf);
233+ dirbuf[len-2] = '\0';
56babefa 234+ }
d34d9fad
WD
235+ if (!*fn)
236+ fn = "/";
237+ if (*fn == '/')
238+ strcpy(buf, fn); /* safe */
239+ else
240+ pathjoin(buf, MAXPATHLEN, dirbuf, fn);
241+ fn = x + 1;
242+
243+ clean_fname(buf);
244+ if (!*buf || buf[1])
245+ strlcat(buf, "/", MAXPATHLEN);
246+ for (x = buf, y = dirbuf; *x && *x == *y; x++, y++) {}
247+ if (*x)
248+ y += strlen(y);
249+
250+ while (*y) {
251+ char save[MAXPATHLEN];
252+ strcpy(save, y); /* safe */
253+ dirbuf_offset = y - dirbuf;
254+ strlcpy(x, fn, MAXPATHLEN - (x - buf));
255+ lp->tail = NULL;
256+ add_exclude_file(lp, buf, flags);
257+ strcpy(y, save); /* safe */
258+ while ((*x++ = *y++) != '/') {}
1e476835 259+ }
d34d9fad
WD
260+
261+ if (dirlen == 2 && *dir == '.') /* dir[dirlen-1] is always '/' */
262+ dirbuf_offset = 0;
263+ else
264+ dirbuf_offset = dirlen;
265+ memcpy(dirbuf, dir, dirbuf_offset);
266+
267+ memmove(ex->pattern, fn, strlen(fn) + 1);
1e476835
WD
268+}
269+
d34d9fad 270+void *push_local_excludes(char *dir, unsigned int dirlen)
a55d21aa 271+{
eabda998
WD
272+ struct mergelist_save_struct *push;
273+ struct exclude_list_struct *ap;
274+ int i;
275+
276+ /* Make it easy to construct the full path for a merge-file that was
277+ * specified with a relative path by saving off the current dir. */
d34d9fad 278+ if (dirlen == 2 && *dir == '.') /* dir[dirlen-1] is always '/' */
045caa90 279+ dirbuf_offset = 0;
d34d9fad
WD
280+ else
281+ dirbuf_offset = dirlen;
282+ memcpy(dirbuf, dir, dirbuf_offset);
283+
eabda998
WD
284+
285+ if (!(push = new_array(struct mergelist_save_struct, 1)))
286+ out_of_memory("push_local_excludes");
287+
288+ push->count = mergelist_cnt;
289+ push->array = new_array(struct exclude_list_struct, mergelist_cnt);
290+ if (!push->array)
291+ out_of_memory("push_local_excludes");
524989ae 292+
eabda998
WD
293+ for (i = 0, ap = push->array; i < mergelist_cnt; i++) {
294+ memcpy(ap++, mergelist_parents[i]->u.mergelist,
295+ sizeof (struct exclude_list_struct));
296+ }
297+
298+ /* Note: add_exclude_file() might increase mergelist_cnt, so keep
299+ * this loop separate from the above loop. */
300+ for (i = 0; i < mergelist_cnt; i++) {
301+ struct exclude_struct *ex = mergelist_parents[i];
302+ struct exclude_list_struct *lp = ex->u.mergelist;
a55d21aa 303+ int flags;
524989ae
WD
304+
305+ if (verbose > 2) {
306+ rprintf(FINFO, "[%s] pushing %sexclude list\n",
d8af8661 307+ who_am_i(), lp->debug_type);
524989ae 308+ }
d8af8661 309+
d34d9fad 310+ if (ex->match_flags & MATCHFLG_CVSIGNORE)
ee1af13c 311+ flags = XFLG_WORD_SPLIT | XFLG_WORDS_ONLY;
d34d9fad 312+ else {
eabda998 313+ flags = ex->match_flags & MATCHFLG_INCLUDE
524989ae 314+ ? XFLG_DEF_INCLUDE : 0;
a55d21aa 315+ }
d34d9fad
WD
316+
317+ if (initialized_mergelist_cnt < i) {
318+ prep_merge_file(ex, lp, flags, dir, dirlen);
319+ initialized_mergelist_cnt = i;
320+ }
321+
322+ if (!(ex->match_flags & MATCHFLG_INHERIT))
323+ lp->head = NULL;
324+ lp->tail = NULL;
eabda998 325+ if (strlcpy(dirbuf + dirbuf_offset, ex->pattern,
d8af8661
WD
326+ MAXPATHLEN - dirbuf_offset) < MAXPATHLEN - dirbuf_offset)
327+ add_exclude_file(lp, dirbuf, flags);
524989ae 328+ else {
a55d21aa
WD
329+ io_error |= IOERR_GENERAL;
330+ rprintf(FINFO,
331+ "cannot add local excludes in long-named directory %s\n",
d8af8661 332+ full_fname(dirbuf));
a55d21aa
WD
333+ }
334+ }
335+
524989ae 336+ return (void*)push;
a55d21aa
WD
337+}
338+
eabda998 339+void pop_local_excludes(void *mem)
a55d21aa 340+{
eabda998
WD
341+ struct mergelist_save_struct *pop = (struct mergelist_save_struct*)mem;
342+ struct exclude_list_struct *ap;
343+ int i;
d8af8661 344+
066e3b3e 345+ for (i = mergelist_cnt; i-- > 0; ) {
eabda998
WD
346+ struct exclude_struct *ex = mergelist_parents[i];
347+ struct exclude_list_struct *lp = ex->u.mergelist;
524989ae 348+
524989ae
WD
349+ if (verbose > 2) {
350+ rprintf(FINFO, "[%s] popping %sexclude list\n",
d8af8661 351+ who_am_i(), lp->debug_type);
524989ae 352+ }
d8af8661
WD
353+
354+ clear_exclude_list(lp);
a55d21aa 355+ }
d8af8661 356+
d34d9fad 357+ mergelist_cnt = initialized_mergelist_cnt = pop->count;
eabda998
WD
358+ for (i = 0, ap = pop->array; i < mergelist_cnt; i++) {
359+ memcpy(mergelist_parents[i]->u.mergelist, ap++,
360+ sizeof (struct exclude_list_struct));
361+ }
d8af8661
WD
362+
363+ free(pop->array);
364+ free(pop);
7cb7ae4e
WD
365+}
366+
a55d21aa 367 static int check_one_exclude(char *name, struct exclude_struct *ex,
7cb7ae4e
WD
368 int name_is_dir)
369 {
d34d9fad 370@@ -122,7 +380,7 @@ static int check_one_exclude(char *name,
bc95f62b
WD
371 /* If the pattern does not have any slashes AND it does not have
372 * a "**" (which could match a slash), then we just match the
373 * name portion of the path. */
374- if (!ex->slash_cnt && !(ex->match_flags & MATCHFLG_WILD2)) {
375+ if (!ex->u.slash_cnt && !(ex->match_flags & MATCHFLG_WILD2)) {
376 if ((p = strrchr(name,'/')) != NULL)
377 name = p+1;
378 }
d34d9fad 379@@ -133,7 +391,8 @@ static int check_one_exclude(char *name,
045caa90
WD
380 name = full_name;
381 }
382
383- if (!name[0]) return 0;
384+ if (!name[0])
385+ return 0;
386
387 if (ex->match_flags & MATCHFLG_DIRECTORY && !name_is_dir)
388 return 0;
d34d9fad 389@@ -148,9 +407,9 @@ static int check_one_exclude(char *name,
bc95f62b
WD
390 if (ex->match_flags & MATCHFLG_WILD) {
391 /* A non-anchored match with an infix slash and no "**"
392 * needs to match the last slash_cnt+1 name elements. */
0c7d1fd8
WD
393- if (!match_start && ex->slash_cnt
394+ if (!match_start && ex->u.slash_cnt
395 && !(ex->match_flags & MATCHFLG_WILD2)) {
bc95f62b
WD
396- int cnt = ex->slash_cnt + 1;
397+ int cnt = ex->u.slash_cnt + 1;
398 for (p = name + strlen(name) - 1; p >= name; p--) {
399 if (*p == '/' && !--cnt)
400 break;
d34d9fad 401@@ -221,6 +480,13 @@ int check_exclude(struct exclude_list_st
a55d21aa
WD
402 struct exclude_struct *ent;
403
404 for (ent = listp->head; ent; ent = ent->next) {
524989ae 405+ if (ent->match_flags & MATCHFLG_MERGE_FILE) {
eabda998 406+ int rc = check_exclude(ent->u.mergelist, name,
d8af8661 407+ name_is_dir);
a55d21aa
WD
408+ if (rc)
409+ return rc;
410+ continue;
411+ }
412 if (check_one_exclude(name, ent, name_is_dir)) {
413 report_exclude_result(name, ent, name_is_dir,
414 listp->debug_type);
d34d9fad 415@@ -253,12 +519,41 @@ static const char *get_exclude_tok(const
a55d21aa
WD
416 p = (const char *)s;
417 }
418
419- /* Is this a '+' or '-' followed by a space (not whitespace)? */
d34d9fad 420+ /* Check for a +/-/. followed by a space (not whitespace). */
ee1af13c 421 if (!(xflags & XFLG_WORDS_ONLY)
a55d21aa 422- && (*s == '-' || *s == '+') && s[1] == ' ') {
a55d21aa 423+ && (*s == '-' || *s == '+' || *s == '.') && s[1] == ' ') {
0c7d1fd8
WD
424 if (*s == '+')
425 mflags |= MATCHFLG_INCLUDE;
a55d21aa 426+ else if (*s == '.') {
524989ae 427+ mflags |= MATCHFLG_MERGE_FILE;
a55d21aa
WD
428+ if (xflags & XFLG_DEF_INCLUDE)
429+ mflags |= MATCHFLG_INCLUDE;
d34d9fad
WD
430+ while (s[2] == '-') {
431+ s += 2;
432+ do {
433+ switch (*++s) {
434+ case 'i':
435+ mflags |= MATCHFLG_INHERIT;
436+ break;
437+ case 'p':
438+ mflags |= MATCHFLG_PERDIR_MERGE;
439+ break;
440+ case '-':
441+ if (s[1] == ' ')
442+ goto done;
443+ default:
444+ rprintf(FERROR,
445+ "invalid merge options: %s\n",
446+ p);
447+ exit_cleanup(RERR_SYNTAX);
448+ }
449+ } while (s[1] != ' ');
450+ }
a55d21aa 451+ }
d34d9fad 452+ done:
a55d21aa 453 s += 2;
d34d9fad
WD
454+ if (mflags & MATCHFLG_MERGE_FILE && *s == '.' && s[1] == '/')
455+ s += 2;
0c7d1fd8
WD
456 } else if (xflags & XFLG_DEF_INCLUDE)
457 mflags |= MATCHFLG_INCLUDE;
d34d9fad
WD
458
459@@ -292,6 +587,7 @@ void add_exclude(struct exclude_list_str
045caa90
WD
460 cp = pattern;
461 pat_len = 0;
462 while (1) {
463+ /* Remember that the returned string is NOT '\0' terminated! */
464 cp = get_exclude_tok(cp + pat_len, &pat_len, &mflags, xflags);
465 if (!pat_len)
466 break;
d34d9fad 467@@ -306,13 +602,55 @@ void add_exclude(struct exclude_list_str
0c7d1fd8
WD
468 continue;
469 }
a55d21aa 470
d34d9fad
WD
471- make_exclude(listp, cp, pat_len, mflags);
472-
473- if (verbose > 2) {
474- rprintf(FINFO, "[%s] add_exclude(%.*s, %s%sclude)\n",
475- who_am_i(), (int)pat_len, cp, listp->debug_type,
476- mflags & MATCHFLG_INCLUDE ? "in" : "ex");
524989ae 477+ if (mflags & MATCHFLG_MERGE_FILE) {
d34d9fad
WD
478+ char buf1[MAXPATHLEN], buf2[MAXPATHLEN];
479+ unsigned int len = pat_len;
480+ const char *fn = cp;
481+ if (len >= MAXPATHLEN) {
bc95f62b 482+ rprintf(FERROR,
d34d9fad
WD
483+ "merge filename too long: %.*s\n",
484+ (int)len, fn);
bc95f62b
WD
485+ continue;
486+ }
045caa90 487+ /* We need a null-terminated version of the filename. */
d34d9fad
WD
488+ if (fn[len]) {
489+ strlcpy(buf1, fn, len+1);
490+ fn = buf1;
491+ }
492+ if (sanitize_paths) {
493+ dirbuf[dirbuf_offset] = '\0';
494+ if (!sanitize_path(buf2, fn, dirbuf)) {
495+ rprintf(FERROR,
496+ "merge filename too long: %s\n",
497+ fn);
498+ continue;
499+ }
500+ len = strlen(fn = buf2);
501+ }
502+ if (*fn != '/' && dirbuf_offset
503+ && (!(mflags & MATCHFLG_PERDIR_MERGE)
504+ || *dirbuf == '/')) {
505+ len = strlcpy(dirbuf + dirbuf_offset, fn,
506+ MAXPATHLEN - dirbuf_offset)
507+ + dirbuf_offset;
508+ if (len >= MAXPATHLEN) {
509+ rprintf(FERROR,
510+ "merge filename too long: %s...\n",
511+ dirbuf);
512+ continue;
a55d21aa 513+ }
d34d9fad
WD
514+ fn = dirbuf;
515+ }
516+ if (mflags & MATCHFLG_PERDIR_MERGE)
517+ make_exclude(listp, fn, len, mflags);
518+ else {
519+ add_exclude_file(listp, fn,
c4e46f36 520+ xflags | XFLG_FATAL_ERRORS);
0c7d1fd8 521+ }
d34d9fad 522+ continue;
a55d21aa 523 }
d34d9fad
WD
524+
525+ make_exclude(listp, cp, pat_len, mflags);
0c7d1fd8 526 }
d34d9fad
WD
527 }
528
529@@ -343,6 +681,11 @@ void add_exclude_file(struct exclude_lis
c4e46f36
WD
530 return;
531 }
532
533+ if (verbose > 2) {
1e476835
WD
534+ rprintf(FINFO, "[%s] add_exclude_file(%s,%d)\n",
535+ who_am_i(), fname, xflags);
c4e46f36
WD
536+ }
537+
538 while (1) {
539 char *s = line;
540 int ch, overflow = 0;
d34d9fad 541@@ -402,7 +745,11 @@ void send_exclude_list(int f)
0c7d1fd8 542 if (ent->match_flags & MATCHFLG_INCLUDE) {
a55d21aa
WD
543 write_int(f, l + 2);
544 write_buf(f, "+ ", 2);
545- } else if ((*p == '-' || *p == '+') && p[1] == ' ') {
524989ae 546+ } else if (ent->match_flags & MATCHFLG_MERGE_FILE) {
a55d21aa
WD
547+ write_int(f, l + 2);
548+ write_buf(f, ". ", 2);
549+ } else if ((*p == '-' || *p == '+' || *p == '.')
550+ && p[1] == ' ') {
551 write_int(f, l + 2);
552 write_buf(f, "- ", 2);
553 } else
d34d9fad 554@@ -411,6 +758,14 @@ void send_exclude_list(int f)
045caa90
WD
555 }
556
557 write_int(f, 0);
558+
d34d9fad 559+#if 0
045caa90
WD
560+ /* If we're the receiver and we don't need the excludes, dump them. */
561+ if (!am_sender && (!delete_mode || delete_excluded)) {
562+ clear_exclude_list(&exclude_list);
045caa90
WD
563+ mergelist_cnt = 0;
564+ }
d34d9fad 565+#endif
045caa90
WD
566 }
567
568
d34d9fad 569@@ -443,6 +798,7 @@ void add_cvs_excludes(void)
a55d21aa
WD
570 char fname[MAXPATHLEN];
571 char *p;
572
d34d9fad 573+ add_exclude(&exclude_list, ". -p .cvsignore", 0);
a55d21aa 574 add_exclude(&exclude_list, default_cvsignore,
ee1af13c 575 XFLG_WORD_SPLIT | XFLG_WORDS_ONLY);
a55d21aa 576
d34d9fad
WD
577--- orig/flist.c 2004-08-05 21:57:29
578+++ flist.c 2004-08-06 07:56:11
579@@ -39,10 +39,9 @@ extern int module_id;
a55d21aa
WD
580 extern int ignore_errors;
581 extern int numeric_ids;
582
583-extern int cvs_exclude;
584-
585 extern int recurse;
586 extern char curr_dir[MAXPATHLEN];
d34d9fad 587+extern unsigned int curr_dir_len;
a55d21aa 588 extern char *files_from;
d34d9fad
WD
589 extern int filesfrom_fd;
590
9be39c35 591@@ -66,7 +65,6 @@ extern int list_only;
a55d21aa
WD
592
593 extern struct exclude_list_struct exclude_list;
594 extern struct exclude_list_struct server_exclude_list;
595-extern struct exclude_list_struct local_exclude_list;
596
597 int io_error;
598
9be39c35 599@@ -221,8 +219,6 @@ int link_stat(const char *path, STRUCT_S
a55d21aa
WD
600 */
601 static int check_exclude_file(char *fname, int is_dir, int exclude_level)
602 {
603- int rc;
604-
605 #if 0 /* This currently never happens, so avoid a useless compare. */
606 if (exclude_level == NO_EXCLUDES)
607 return 0;
9be39c35 608@@ -244,10 +240,7 @@ static int check_exclude_file(char *fnam
a55d21aa
WD
609 if (exclude_level != ALL_EXCLUDES)
610 return 0;
611 if (exclude_list.head
612- && (rc = check_exclude(&exclude_list, fname, is_dir)) != 0)
613- return rc < 0;
614- if (local_exclude_list.head
615- && check_exclude(&local_exclude_list, fname, is_dir) < 0)
616+ && check_exclude(&exclude_list, fname, is_dir) < 0)
617 return 1;
618 return 0;
619 }
9be39c35 620@@ -954,15 +947,7 @@ void send_file_name(int f, struct file_l
a55d21aa
WD
621
622 if (recursive && S_ISDIR(file->mode)
623 && !(file->flags & FLAG_MOUNT_POINT)) {
624- struct exclude_list_struct last_list = local_exclude_list;
625- local_exclude_list.head = local_exclude_list.tail = NULL;
626 send_directory(f, flist, f_name_to(file, fbuf));
7cb7ae4e
WD
627- if (verbose > 2) {
628- rprintf(FINFO, "[%s] popping %sexclude list\n",
629- who_am_i(), local_exclude_list.debug_type);
630- }
d8af8661 631- clear_exclude_list(&local_exclude_list);
a55d21aa
WD
632- local_exclude_list = last_list;
633 }
634 }
635
9be39c35 636@@ -973,6 +958,7 @@ static void send_directory(int f, struct
a55d21aa
WD
637 struct dirent *di;
638 char fname[MAXPATHLEN];
639 unsigned int offset;
640+ void *save_excludes;
641 char *p;
642
643 d = opendir(dir);
d34d9fad 644@@ -996,18 +982,7 @@ static void send_directory(int f, struct
a55d21aa
WD
645 offset++;
646 }
647
648- if (cvs_exclude) {
649- if (strlcpy(p, ".cvsignore", MAXPATHLEN - offset)
650- < MAXPATHLEN - offset) {
651- add_exclude_file(&local_exclude_list, fname,
ee1af13c 652- XFLG_WORD_SPLIT | XFLG_WORDS_ONLY);
a55d21aa
WD
653- } else {
654- io_error |= IOERR_GENERAL;
655- rprintf(FINFO,
656- "cannot cvs-exclude in long-named directory %s\n",
657- full_fname(fname));
658- }
045caa90 659- }
045caa90
WD
660+ save_excludes = push_local_excludes(fname, offset);
661
a55d21aa
WD
662 for (errno = 0, di = readdir(d); di; errno = 0, di = readdir(d)) {
663 char *dname = d_name(di);
d34d9fad 664@@ -1028,6 +1003,8 @@ static void send_directory(int f, struct
bc95f62b 665 rsyserr(FERROR, errno, "readdir(%s)", dir);
a55d21aa 666 }
a55d21aa 667
eabda998
WD
668+ pop_local_excludes(save_excludes);
669+
a55d21aa
WD
670 closedir(d);
671 }
eabda998 672
d34d9fad
WD
673@@ -1047,6 +1024,7 @@ struct file_list *send_file_list(int f,
674 char *p, *dir, olddir[sizeof curr_dir];
675 char lastpath[MAXPATHLEN] = "";
676 struct file_list *flist;
677+ void *first_push = NULL;
678 int64 start_write;
679 int use_ff_fd = 0;
680
681@@ -1067,6 +1045,14 @@ struct file_list *send_file_list(int f,
682 exit_cleanup(RERR_FILESELECT);
683 }
684 use_ff_fd = 1;
685+ if (curr_dir_len < MAXPATHLEN - 1) {
686+ char buf[MAXPATHLEN];
687+ strcpy(buf, curr_dir);
688+ buf[curr_dir_len] = '/';
689+ buf[curr_dir_len+1] = '\0';
690+ first_push = push_local_excludes(buf,
691+ curr_dir_len+1);
1e476835 692+ }
d34d9fad
WD
693 }
694 }
695
696@@ -1097,6 +1083,22 @@ struct file_list *send_file_list(int f,
697 }
698 }
699
700+ if (!first_push) {
701+ char ch;
702+ if ((p = strrchr(fname, '/')) != NULL) {
703+ dir = fname;
704+ p++;
705+ } else {
706+ dir = "./";
707+ p = dir + 2;
1e476835 708+ }
d34d9fad
WD
709+ if ((ch = *p) != '\0')
710+ *p = '\0';
711+ first_push = push_local_excludes(dir, p - dir);
712+ if (ch)
713+ *p = ch;
714+ }
1e476835 715+
d34d9fad
WD
716 if (link_stat(fname, &st, keep_dirlinks) != 0) {
717 if (f != -1) {
718 io_error |= IOERR_GENERAL;
719--- orig/options.c 2004-08-05 21:57:29
720+++ options.c 2004-08-05 21:57:19
721@@ -389,6 +389,7 @@ static struct poptOption long_options[]
722 {"ignore-errors", 0, POPT_ARG_NONE, &ignore_errors, 0, 0, 0 },
723 {"blocking-io", 0, POPT_ARG_VAL, &blocking_io, 1, 0, 0 },
724 {"no-blocking-io", 0, POPT_ARG_VAL, &blocking_io, 0, 0, 0 },
725+ {0, 'E', POPT_ARG_NONE, 0, 'E', 0, 0 },
726 {0, 'P', POPT_ARG_NONE, 0, 'P', 0, 0 },
727 {"config", 0, POPT_ARG_STRING, &config_file, 0, 0, 0 },
728 {"port", 0, POPT_ARG_INT, &rsync_port, 0, 0, 0 },
729@@ -589,6 +590,11 @@ int parse_arguments(int *argc, const cha
730 am_sender = 1;
731 break;
732
733+ case 'E':
734+ add_exclude(&exclude_list,
735+ ". -ip /.rsync-excludes", 0);
736+ break;
1e476835 737+
d34d9fad
WD
738 case 'P':
739 do_progress = 1;
740 keep_partial = 1;
045caa90 741--- orig/rsync.h 2004-08-03 15:41:32
d34d9fad
WD
742+++ rsync.h 2004-08-06 06:23:10
743@@ -499,11 +499,18 @@ struct map_struct {
0c7d1fd8
WD
744 #define MATCHFLG_INCLUDE (1<<4) /* this is an include, not an exclude */
745 #define MATCHFLG_DIRECTORY (1<<5) /* this matches only directories */
746 #define MATCHFLG_CLEAR_LIST (1<<6) /* this item is the "!" token */
524989ae 747+#define MATCHFLG_MERGE_FILE (1<<7) /* specifies a file to merge */
a55d21aa 748+#define MATCHFLG_CVSIGNORE (1<<8) /* parse this as a .cvsignore file */
d34d9fad
WD
749+#define MATCHFLG_PERDIR_MERGE (1<<9) /* content is inherited by subdirs */
750+#define MATCHFLG_INHERIT (1<<10)/* content is inherited by subdirs */
a55d21aa
WD
751 struct exclude_struct {
752 struct exclude_struct *next;
753 char *pattern;
0c7d1fd8 754 unsigned int match_flags;
bc95f62b 755- int slash_cnt;
bc95f62b
WD
756+ union {
757+ int slash_cnt;
eabda998 758+ struct exclude_list_struct *mergelist;
bc95f62b 759+ } u;
a55d21aa
WD
760 };
761
762 struct exclude_list_struct {
045caa90 763--- orig/rsync.yo 2004-08-03 15:34:32
d34d9fad
WD
764+++ rsync.yo 2004-08-06 09:32:25
765@@ -335,6 +335,7 @@ verb(
1e476835
WD
766 --include=PATTERN don't exclude files matching PATTERN
767 --include-from=FILE don't exclude patterns listed in FILE
1e476835 768 --files-from=FILE read FILE for list of source-file names
d34d9fad 769+ -E same as --exclude='. -pi /.rsync-excludes'
1e476835
WD
770 -0 --from0 all file lists are delimited by nulls
771 --version print version number
d34d9fad
WD
772 --daemon run as an rsync daemon
773@@ -1086,6 +1087,11 @@ itemize(
1e476835
WD
774 then it is always considered an exclude pattern, even if specified as
775 part of an include option. The prefix is discarded before matching.
776
623f2443
WD
777+ it() if the pattern starts with ". " (a dot followed by a space) then its
778+ pattern is taken to be a merge file that is read in to supplement the
1e476835
WD
779+ current rules. See the section on MERGING EXCLUDE FILES for more
780+ information.
781+
782 it() if the pattern is a single exclamation mark ! then the current
783 include/exclude list is reset, removing all previously defined patterns.
784 )
d34d9fad 785@@ -1138,6 +1144,97 @@ itemize(
524989ae
WD
786 it would be excluded by the "*")
787 )
788
789+manpagesection(MERGING EXCLUDE FILES)
790+
d34d9fad
WD
791+You can merge whole files into an exclude file by specifying a rule that
792+starts with a ". " (a dot followed by a space) and putting a filename in
793+place of the pattern. The filename may be preceded by one or more options:
794+
795+startdit()
796+
797+dit(bf(-i)) All subdirectories of the current directory inherit the rules we
798+read in from this file. When applied to a per-directory merge file, the
799+rules read in are prefixed to the inherited rules from a parent directory,
800+which gives the newest rules a higher priority than the inherited rules.
801+
802+Note also that you can eliminate all the inherited rules for a directory
803+and its subdirectories by putting the list-clearing token ! at the start of
804+a per-directory file. This only clears the rules in the current sub-list,
805+not all the rules.
806+
807+dit(bf(-p)) Make the file a per-directory merge-file. Rsync will scan
808+every directory that it traverses for the named file, merging its contents
809+when the file exists.
810+
811+dit(bf(--)) End the scanning of options. Useful if you want to specify a
812+filename that begins with a dash.
813+
814+enddit()
524989ae 815+
bc95f62b 816+Here's an example exclude file (which you'd specify via the normal
d34d9fad 817+--exclude-from=FILE option):
524989ae
WD
818+
819+verb(
820+ . /home/user/.global_excludes
821+ - *.gz
d34d9fad 822+ . -pi .excl
524989ae
WD
823+ + *.[ch]
824+ - *.o
825+)
826+
827+This will merge the contents of the /home/user/.global_excludes file at the
828+start of the list and also turns the ".excl" filename into a per-directory
829+exclude file whose local contents will be merged into the list in place of
d34d9fad
WD
830+the .excl line. The rules read in from the .global_excludes file affect
831+all the directories because it was read in before the directory scanning
832+began (just as if it were an --exclude-from option). The rules read in
833+from each directory's .excl file are inherited by that directory's
834+subdirectories because the -i option was specified.
835+
836+Note also that the parsing of any merge-file named ".cvsignore" is always
837+done in a CVS-compatible manner, even if -C wasn't specified. This means
838+that its rules are always excludes (even if an include option specified the
839+file), tokens are split on whitespace, the rules are never inherited, and
840+no special characters are honored.
524989ae
WD
841+
842+Additionally, you can affect where the --cvs-exclude (-C) option's
843+inclusion of a per-directory .cvsignore file gets placed into your rules by
d34d9fad
WD
844+adding an explicit per-directory merge rule for ".cvsignore". For example,
845+specifying this:
524989ae
WD
846+
847+verb(
d34d9fad 848+ rsync -avC --exclude='. -p .cvsignore' --exclude-from=foo a/ b
524989ae
WD
849+)
850+
851+will merge all the per-directory .cvsignore rules at the start of your list
852+rather than at the end. This allows their dir-specific rules to supersede
853+your rules instead of being subservient to them. (The global rules taken
d34d9fad 854+from the $HOME/.cvsignore file and from $CVSIGNORE are not repositioned by
524989ae
WD
855+this.)
856+
d34d9fad
WD
857+If a per-directory merge file is specified with a path that is a parent
858+directory of the first transfer directory, rsync will scan all the parent
859+dirs from that starting point to the transfer directory for the indicated
860+per-directory file. For instance, the -E option is an abbreviation for
861+this command:
862+
863+verb(
864+ --exclude='. -pi /.rsync-excludes'
865+)
866+
867+That exclude tells rsync to scan for the file .rsync-excludes in all
868+directories from the root up through the source of the transfer. For
869+example:
870+
871+verb(
872+ rsync -avE /src/path/ /dest/dir
873+)
1e476835 874+
d34d9fad
WD
875+For the above command rsync would try to open /.rsync-excludes and
876+/src/.rsync-excludes before looking for the file in /src/path. If you
877+specify the long version of the option manually and leave off the leading
878+slash from "/.rsync-excludes", rsync would start scanning in /src/path.
524989ae
WD
879+
880 manpagesection(BATCH MODE)
881
882 bf(Note:) Batch mode should be considered experimental in this version
13bed3dd 883--- orig/testsuite/exclude.test 2004-05-29 21:25:45
d34d9fad 884+++ testsuite/exclude.test 2004-08-06 09:02:29
c4e46f36 885@@ -23,19 +23,47 @@ export HOME CVSIGNORE
7d31425d
WD
886 makepath "$fromdir/foo/down/to/you"
887 makepath "$fromdir/bar/down/to/foo/too"
888 makepath "$fromdir/mid/for/foo/and/that/is/who"
c4e46f36 889+cat >"$fromdir/.excl" <<EOF
7d31425d
WD
890+.excl
891+*.bak
892+*.old
893+*.junk
c4e46f36 894+EOF
7d31425d
WD
895 echo kept >"$fromdir/foo/file1"
896 echo removed >"$fromdir/foo/file2"
897 echo cvsout >"$fromdir/foo/file2.old"
c4e46f36 898+cat >"$fromdir/foo/.excl" <<EOF
7d31425d
WD
899++ .excl
900+- file1
c4e46f36
WD
901+EOF
902+cat >"$fromdir/bar/.excl" <<EOF
7d31425d 903+home-cvs-exclude
d34d9fad 904+. -pi .excl2
7d31425d 905++ to
c4e46f36 906+EOF
7d31425d 907 echo cvsout >"$fromdir/bar/down/to/home-cvs-exclude"
c4e46f36 908+cat >"$fromdir/bar/down/to/.excl2" <<EOF
7d31425d 909+.excl2
c4e46f36 910+EOF
7d31425d
WD
911 echo keeper >"$fromdir/bar/down/to/foo/file1"
912 echo cvsout >"$fromdir/bar/down/to/foo/file1.bak"
913 echo gone >"$fromdir/bar/down/to/foo/file3"
914 echo lost >"$fromdir/bar/down/to/foo/file4"
915 echo cvsout >"$fromdir/bar/down/to/foo/file4.junk"
916 echo smashed >"$fromdir/bar/down/to/foo/to"
c4e46f36 917+cat >"$fromdir/bar/down/to/foo/.excl2" <<EOF
7d31425d 918++ *.junk
c4e46f36 919+EOF
7d31425d 920+# This one should be ineffectual
c4e46f36 921+cat >"$fromdir/mid/.excl2" <<EOF
7d31425d 922+extra
c4e46f36 923+EOF
7d31425d
WD
924 echo cvsout >"$fromdir/mid/one-in-one-out"
925 echo one-in-one-out >"$fromdir/mid/.cvsignore"
926 echo cvsin >"$fromdir/mid/one-for-all"
c4e46f36 927+cat >"$fromdir/mid/.excl" <<EOF
d34d9fad 928+. -p .cvsignore
c4e46f36 929+EOF
7d31425d
WD
930 echo cvsin >"$fromdir/mid/for/one-in-one-out"
931 echo expunged >"$fromdir/mid/for/foo/extra"
932 echo retained >"$fromdir/mid/for/foo/keep"
c4e46f36
WD
933@@ -100,5 +128,24 @@ $RSYNC -av --existing --include='*/' --e
934 checkit "$RSYNC -avvC --exclude-from=\"$excl\" \
935 --delete-excluded \"$fromdir/\" \"$todir/\"" "$chkdir" "$todir"
7d31425d
WD
936
937+# Modify the chk dir for our merge-exclude test and then tweak the dir times.
938+
939+rm "$chkdir"/.excl
940+rm "$chkdir"/foo/file1
941+rm "$chkdir"/bar/.excl
942+rm "$chkdir"/bar/down/to/.excl2
943+rm "$chkdir"/bar/down/to/foo/.excl2
944+rm "$chkdir"/mid/.excl
945+cp -p "$fromdir"/bar/down/to/foo/*.junk "$chkdir"/bar/down/to/foo
946+cp -p "$fromdir"/bar/down/to/foo/to "$chkdir"/bar/down/to/foo
947+
948+$RSYNC -av --existing --include='*/' --exclude='*' "$fromdir/" "$chkdir/"
949+
950+# Now, test if rsync excludes the same files, this time with a merge-exclude
951+# file.
952+
d34d9fad 953+checkit "$RSYNC -avv --exclude='. -pi .excl' --exclude-from=\"$excl\" \
c4e46f36 954+ --delete-excluded \"$fromdir/\" \"$todir/\"" "$chkdir" "$todir"
7d31425d
WD
955+
956 # The script would have aborted on error, so getting here means we've won.
957 exit 0