X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=src%2Fcreate.c;h=641603afef5dd5b8e97434269a0a25d97c2fbfd0;hb=27094c4fc38ca12426ab9f99c1790121f99b0322;hp=6eb6ad259e4b2d2bce8797e726f509994ab6278b;hpb=304d8b9f0cac1e25be00d14c1b643a11879a6f85;p=chaz%2Ftar diff --git a/src/create.c b/src/create.c index 6eb6ad2..641603a 100644 --- a/src/create.c +++ b/src/create.c @@ -33,6 +33,65 @@ struct link size_t nlink; char name[1]; }; + +struct exclude_tag +{ + const char *name; + size_t length; + struct exclude_tag *next; +}; + +static struct exclude_tag *exclude_tags; + +void +add_exclude_tag (const char *name) +{ + struct exclude_tag *tag = xmalloc (sizeof tag[0]); + tag->next = exclude_tags; + tag->name = name; + tag->length = strlen (name); + exclude_tags = tag; +} + +static bool +check_exclude_tags (char *dirname) +{ + static char *tagname; + static size_t tagsize; + struct exclude_tag *tag; + size_t dlen = strlen (dirname); + char *nptr = NULL; + char *ret = NULL; + + for (tag = exclude_tags; tag; tag = tag->next) + { + size_t size = dlen + tag->length + 1; + if (size > tagsize) + { + tagsize = size; + tagname = xrealloc (tagname, tagsize); + } + + if (!nptr) + { + strcpy (tagname, dirname); + nptr = tagname + dlen; + } + strcpy (nptr, tag->name); + if (access (tagname, F_OK) == 0) + { + if (verbose_option) + WARN ((0, 0, + _("%s: contains a cache directory tag %s; not dumped"), + quotearg_colon (dirname), + quotearg_n (1, tag->name))); + return true; + } + } + + return false; +} + /* The maximum uintmax_t value that can be represented with DIGITS digits, assuming that each digit is BITS_PER_DIGIT wide. */ @@ -983,6 +1042,7 @@ dump_regular_file (int fd, struct tar_stat_info *st) return dump_status_ok; } + /* Look in directory DIRNAME for a cache directory tag file with the magic name "CACHEDIR.TAG" and a standard header, as described at: @@ -1000,7 +1060,7 @@ check_cache_directory (char *dirname) static char tagname[] = "CACHEDIR.TAG"; char *tagpath; int fd; - int tag_present = false; + bool tag_present = false; tagpath = xmalloc (strlen (dirname) + strlen (tagname) + 1); strcpy (tagpath, dirname); @@ -1124,6 +1184,9 @@ dump_dir0 (char *directory, return; } + if (check_exclude_tags (st->orig_file_name)) + return; + { char const *entry; size_t entry_len;