16456 lines
566 KiB
Text
16456 lines
566 KiB
Text
2023-07-18 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Version 1.35
|
||
|
||
2023-07-17 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Use full-read instead of safe-read
|
||
|
||
This helps handle archiving on certain filesystems where read()
|
||
returns less bytes than requested when reading from a regular
|
||
file.
|
||
|
||
References:
|
||
|
||
https://savannah.gnu.org/bugs/index.php?64426
|
||
https://lists.gnu.org/archive/html/bug-tar/2021-07/msg00001.html
|
||
|
||
* gnulib.modules: Add full-read.
|
||
* src/common.h: Include full-read.h
|
||
* src/misc.c: Use full_read.
|
||
* src/sparse.c: Likewise.
|
||
* src/update.c: Likewise.
|
||
|
||
2023-07-11 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix typo in comments
|
||
|
||
This and the bug fixed by the previous commit were reported by
|
||
Benno Schulenberg.
|
||
|
||
2023-07-10 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix --update --wildcards
|
||
|
||
* src/common.h (name): New field: is_wildcard.
|
||
(name_scan): Change protoype.
|
||
* src/delete.c: Update calls to name_scan.
|
||
* src/names.c (addname, add_starting_file): Initialize
|
||
is_wildcard.
|
||
(namelist_match): Take two arguments. If second one is true,
|
||
return
|
||
only exact matches.
|
||
(name_scan): Likewise. All callers updated.
|
||
(name_from_list): Skip patterns.
|
||
* src/update.c (remove_exact_name): New function.
|
||
(update_archive): Do not remove matching name, if it is a pattern.
|
||
Instead, add a new entry with the matching file name.
|
||
|
||
* tests/update04.at: New test.
|
||
* tests/Makefile.am: Add new test.
|
||
* tests/testsuite.at: Include new test.
|
||
|
||
* NEWS: Update.
|
||
|
||
2023-07-10 Benno Schulenberg <bensberg@telfort.nl>
|
||
|
||
Various fixes in the documentation
|
||
|
||
* doc/tar.1: Add missing dots, use plural when necessary,
|
||
tweak a wording. Remove an incorrect observation, three times.
|
||
Add some missing articles, correct some formatting,
|
||
and expand the opaque descriptions of two options.
|
||
* doc/tar.texi: Drop a stray `cd` command from an example.
|
||
Correct two cross references, correct the paragraph
|
||
about the manpage, and unbreak a URL.
|
||
* src/names.c: Correct and shorten an error message:
|
||
"non-optional"
|
||
means "mandatory", but "non-option" is what was meant. And the
|
||
phrase "in archive create or update mode" was both unneeded and
|
||
incomplete.
|
||
* tests/positional01.at: Change expected error text.
|
||
* tests/positional02.at: Likewise.
|
||
* tests/positional03.at: Likewise.
|
||
|
||
2023-06-29 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
build: update gnulib submodule to latest
|
||
|
||
2023-06-26 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: extract delayed links in order
|
||
|
||
Extract delayed links in tar file order, rather than
|
||
in hash table order with modifications.
|
||
This is simpler and more likely to use the kernel’s
|
||
cached filesystem data, assuming related delayed links
|
||
are nearby in the tar file.
|
||
* src/extract.c (struct delayed_link.has_predecessor):
|
||
Remove. All uses removed.
|
||
(delayed_link_head, delayed_link_tail): New static vars.
|
||
This resurrects delayed_link_head’s old function
|
||
except that the linked list is now in forward order, not reverse.
|
||
(find_delayed_link_source): Now simply returns bool,
|
||
since the callers no longer need the pointer.
|
||
(create_placeholder_file):
|
||
Put the delayed link at the end of the linked list.
|
||
Omit no-longer-needed last arg. All callers changed.
|
||
(apply_delayed_links): Simplify now that we can just iterate
|
||
through the delayed_link_head list.
|
||
|
||
2023-06-26 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: make safe for -Wunused-parameter
|
||
|
||
This also ports to C23 [[maybe_unused]].
|
||
* configure.ac (WARN_CFLAGS): Do not add -Wno-unused-parameter.
|
||
Add MAYBE_UNUSED where needed in source code.
|
||
Also, put it at the front where C23 requires it.
|
||
|
||
2023-06-26 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* po/.gitignore: Omit redundant *~ entries.
|
||
|
||
2023-06-26 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: omit unnecessary freeing
|
||
|
||
* src/tar.c (main): Omit unnecessary freeing.
|
||
|
||
2023-06-18 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Make sure each delayed link entry is visited once
|
||
|
||
* src/extract.c (create_placeholder_file): Use FLEXNSIZEOF
|
||
(overlooked
|
||
by c542d3d0c8)
|
||
(apply_delayed_links): Don't follow the "next" chain after
|
||
its entries
|
||
have been applied.
|
||
|
||
2023-06-17 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Omit unnecessary freeing
|
||
|
||
* src/extract.c (apply_delayed_link): Don’t bother to
|
||
free memory, as we’re about to exit.
|
||
|
||
2023-06-17 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Port to strict C99 struct hack
|
||
|
||
Portability bug caught by GCC 13 -fstrict-flex-arrays.
|
||
* gnulib.modules: Add flexmember.
|
||
* src/create.c (struct link):
|
||
* src/exclist.c (struct excfile):
|
||
* src/extract.c (struct delayed_link, struct string_list):
|
||
Include <flexmember.h>. Use FLEXIBLE_ARRAY_MEMBER, for
|
||
portability to strict C99 or later. All storage
|
||
allocations changed to use FLEXNSIZEOF.
|
||
|
||
2023-06-17 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Use Gnulib ‘dup2’ module
|
||
|
||
This simplifies code that would otherwise use dup and close.
|
||
* gnulib.modules: Add dup2.
|
||
* src/system.c: Add #pragma to pacify GCC 13.
|
||
(xdup2): Simplify by using dup2.
|
||
|
||
2023-06-17 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Use Gnulib ‘free-posix’ module
|
||
|
||
Paxutils uses it so we should too.
|
||
* gnulib.modules: Add ‘free-posix’.
|
||
* src/misc.c (remove_any_file): Assume ‘free’ keeps errno.
|
||
|
||
2023-06-17 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* buffer.c: work around GCC bug 109856
|
||
|
||
Recommend Y2038 safety
|
||
|
||
build: update gnulib and paxutils submodules to latest
|
||
|
||
* .gitignore: Add slash, as bootstrap does this now.
|
||
|
||
Sync bootstrap from Gnulib
|
||
|
||
2023-06-06 Pavel Raiskup <praiskup@redhat.com>
|
||
|
||
Comment a bit on the xattr extraction logic
|
||
|
||
* src/extract.c (extract_file): Document why we pre-create
|
||
with S_IWUSR.
|
||
(set_xattr): Drop the INVERT_PERMISSIONS doc leftover.
|
||
|
||
2023-06-06 Pavel Raiskup <praiskup@redhat.com>
|
||
|
||
Fix --xattr-include='*' documentation
|
||
|
||
* doc/tar.texi (Extended File Attributes): The default extraction
|
||
pattern consists of just 'user.*' namespace only. While on
|
||
it, try
|
||
to explain the reasons for this default behavior.
|
||
|
||
2023-05-18 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Honor --numeric-owner when storing ACL entries
|
||
|
||
Based on patch from Fabian Grünbichler
|
||
<f.gruenbichler@proxmox.com>
|
||
|
||
* src/xattrs.c (acls_get_text): New function. If given
|
||
--numeric-owner,
|
||
use acl_to_any_text to convert ACL to textual representation.
|
||
Print
|
||
warning if that function is not available.
|
||
(xattrs__acls_get_a, xattrs__acls_get_d): Use acls_get_text.
|
||
|
||
2023-05-18 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Upgrade paxutils to d50ea31268
|
||
|
||
This fixes two bugs related to remote archives:
|
||
|
||
1. Access from unprivileged user accounts.
|
||
2. Malfunctioning seek (L) command.
|
||
|
||
2023-05-18 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Don't copy DISTFILES during bootstrapping
|
||
|
||
DISTFILES are necessary only during bootstrapping and should
|
||
not be
|
||
distributed.
|
||
|
||
This partially reverts commit 9f0e54ab2.
|
||
|
||
2023-05-01 Benno Schulenberg <bensberg@telfort.nl>
|
||
|
||
Add missing option to manpage and remove duplicate operation
|
||
|
||
* doc/tar.1: Add needed option -f after operation -A, sort
|
||
operation -t
|
||
alphabetically, add --file after --concatenate, consistently
|
||
use long
|
||
option --file in the GNU-style section, and delete duplicate
|
||
--update.
|
||
* doc/tar.texi: Add small missing word, and lowercase a letter.
|
||
|
||
2023-04-18 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Change some wording in doc/intern.texi
|
||
|
||
2023-04-18 Anton Makrushin <makrusan@gmail.com>
|
||
|
||
Exclude VCS directory with writing from an archive
|
||
|
||
See https://savannah.gnu.org/bugs/?62859
|
||
|
||
2023-02-21 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Detect EOF when deleting from archive.
|
||
|
||
See https://savannah.gnu.org/bugs/?63823
|
||
|
||
* src/delete.c (flush_file): Break the loop on EOF.
|
||
* tests/delete06.at: New test.
|
||
* tests/Makefile.am: Add new test.
|
||
* tests/testsuite.at: Likewise.
|
||
|
||
2023-02-11 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Changes in extended header decoder
|
||
|
||
* src/xheader.c (decode_time): Fix error detection.
|
||
(raw_path_decoder): Ignore empty paths.
|
||
|
||
2023-02-11 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Prevent dead loop in extract_file
|
||
|
||
* src/extract.c (maybe_recoverable): If make_directories indicates
|
||
success, suppose some intermediate directories have been made,
|
||
even
|
||
if in fact they have not. That's necessary to avoid dead
|
||
loops when
|
||
maybe_recoverable is called with the same arguments again.
|
||
|
||
2023-02-11 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix boundary checking in base-256 decoder
|
||
|
||
* src/list.c (from_header): Base-256 encoding is at least 2 bytes
|
||
long.
|
||
|
||
2023-01-06 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Adjust to Gnulib macro renaming
|
||
|
||
* src/Makefile.am, tests/Makefile.am (LDADD):
|
||
Gnulib renamed LIB_HAS_ACL to FILE_HAS_ACL_LIB.
|
||
|
||
2023-01-06 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
build: update gnulib, paxutils submodules to latest
|
||
|
||
2023-01-06 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Go back to single-file bootstrap
|
||
|
||
Gnulib now supports a single-file bootstrap with --pull
|
||
and --gen options, in place of the three files
|
||
autopull.sh, autogen.sh, bootstrap-funclib.sh.
|
||
This keeps the top level a bit cleaner.
|
||
* bootstrap: Sync from Gnulib build-aux/bootstrap
|
||
instead of from top/bootstrap.
|
||
* autopull.sh, autogen.sh, bootstrap-funclib.sh: Remove.
|
||
|
||
2023-01-06 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Fix ‘assume’ include
|
||
|
||
* src/tar.c: Include verify.h, needed for ‘assume’.
|
||
|
||
2023-01-06 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Update copyright years
|
||
|
||
UPDATE_COPYRIGHT_USE_INTERVALS=1 \
|
||
gnulib/build-aux/update-copyright \
|
||
$(git ls-files | sed -e '/^gnulib$/d
|
||
/^paxutils$/d
|
||
/^COPYING$/d
|
||
/\/fdl.texi$/d')
|
||
|
||
2022-12-29 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Optionally warn about missing zero blocks at the end of the
|
||
archive
|
||
|
||
(In response to savannah bug #63574)
|
||
|
||
* doc/intern.texi: Document actual tar behaviour in regard to
|
||
missing end-of-file marker.
|
||
* doc/tar.texi: Rewrite the "warnings" section. Document
|
||
--warning=missing-zero-blocks
|
||
* src/common.h (WARN_MISSING_ZERO_BLOCKS): New constant.
|
||
(WARN_ALL): Include all warning bits.
|
||
* src/list.c (read_and): If EOF is reached without seeing
|
||
end-of-file
|
||
blocks and the "missing-zero-blocks" warning is requested,
|
||
warn about
|
||
the fact.
|
||
* src/warning.c: New warnings: "missing-zero-blocks", "verbose".
|
||
(warning_option): Change definition to reflect changes in common.h
|
||
|
||
2022-12-27 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix example use of find command in documentation
|
||
|
||
2022-12-26 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix savannah bug #63567
|
||
|
||
* src/buffer.c (short_read): Increase records_read only if a full
|
||
record has been read.
|
||
|
||
2022-11-04 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Fix -Af F bug when F is not a regular file
|
||
|
||
Problem reported by Boris Gjenero in:
|
||
https://lists.gnu.org/r/bug-tar/2022-11/msg00001.html
|
||
* src/update.c (append_file): Don’t assume that FILE_NAME is a
|
||
regular file whose size can be determined before reading.
|
||
Instead, simply read from the file until its end is reached.
|
||
|
||
2022-11-04 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Fix README-* files
|
||
|
||
README-alpha is for alpha releases, which are not from Git or
|
||
CVS, so
|
||
omit mention of that. I'm not sure we'll ever do alpha releases,
|
||
but
|
||
if we do, README-alpha assumes the tarballs are already bit.
|
||
|
||
Update README-hacking with info that was mistakenly put into
|
||
README-alpha. Also mention Bison, needed for parse-date.y.
|
||
|
||
2022-10-27 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Fix undefined behavior on bad extended header
|
||
|
||
* src/xheader.c (locate_handler): Avoid undefined behavior
|
||
if strlen(keyword) < kwlen.
|
||
|
||
2022-10-22 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix savannah bug #63123
|
||
|
||
The bug was introduced by commit 79d1ac38c1, which didn't
|
||
take into
|
||
account all the consequences of returning RECOVER_OK on EEXIST, in
|
||
particular interactions with the delayed_set_stat logic.
|
||
|
||
The commit 79d1ac38c1 is reverted (the bug it was intended to fix
|
||
was actually fixed by 79a442d7b0). Instead:
|
||
|
||
* src/extract.c (maybe_recoverable): Don't call maybe_recoverable
|
||
if EEXIST is reported when UNLINK_FIRST_OLD_FILES option is set.
|
||
|
||
2022-10-22 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix savannah bug #63250
|
||
|
||
* src/buffer.c (magic): Add signature of LZMA files produced
|
||
by xz.
|
||
|
||
2022-10-08 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Mention previous bug fix
|
||
|
||
2022-10-08 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tests: check for recently-fixed bug
|
||
|
||
* tests/exclude17.at: New file.
|
||
* tests/testsuite.at (AT_CHECK_TIMESTAMP): Add it.
|
||
|
||
2022-10-08 Aurélien Martin <amartin@witekio.com> (tiny change)
|
||
|
||
tar: fix --exclude-vcs-ignores memory
|
||
|
||
The function frees the patterns' wordsplit structure without
|
||
asking
|
||
add_exclude to reallocate the strings. In many cases, this
|
||
leads to
|
||
each file name in the directory being checked against the memory
|
||
location where it just got reallocated.
|
||
* src/exclist.c: Use EXCLUDE_ALLOC.
|
||
|
||
2022-09-11 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
build: update submodules to latest
|
||
|
||
* src/common.h: Include <inttostr.h> since paxutils no longer
|
||
does.
|
||
(STRINGIFY_BIGINT): New macro, copied from older paxutils.
|
||
(UINTMAX_STRSIZE_BOUND): New constant, also from older paxutils.
|
||
|
||
2022-09-11 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Fix bootstrap.conf when no paxutils
|
||
|
||
* bootstrap.conf: Don’t assume the paxutils subdirectory already
|
||
exists, when bootstrapping.
|
||
|
||
2022-09-04 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Fix data loss when acting as filter
|
||
|
||
This bug was introduced by the recent lseek-related changes.
|
||
* src/delete.c (delete_archive_members):
|
||
* src/update.c (update_archive):
|
||
Copy the member if acting as a filter, rather than lseeking over
|
||
it, which is possible if stdin is a regular file.
|
||
* src/list.c (skim_file, skim_member):
|
||
* src/sparse.c (sparse_skim_file):
|
||
New functions, for copying when a filter.
|
||
* src/list.c (skip_file): Remove; replaced with skim_file.
|
||
All callers changed.
|
||
(skip_member): Reimplement in terms of skim_member.
|
||
* src/sparse.c (sparse_skip_file):
|
||
Remove; replaced with sparse_skim_file. All callers changed.
|
||
* src/update.c (acting_as_filter): New static var.
|
||
(update_archive): Set it; this is like delete.c.
|
||
* tests/delete01.at (deleting a member after a big one):
|
||
* tests/delete02.at (deleting a member from stdin archive):
|
||
Also test filter case.
|
||
|
||
2022-09-03 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Fix --delete bug with short reads
|
||
|
||
* gnulib.modules: Add idx.
|
||
* src/common.h: Include idx.h.
|
||
* src/delete.c (move_archive): Don’t botch short reads.
|
||
|
||
2022-08-27 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Do not diagnose same xattr file twice
|
||
|
||
* src/extract.c (set_xattr): Simplify, by having it do only
|
||
the mknodat and xattrs_xattrs_set, rather than also
|
||
trying to recover from failure. Caller simplified too.
|
||
* tests/xattr07.at (xattrs: xattrs and --skip-old-files):
|
||
Adjust test to match fixed behavior.
|
||
|
||
2022-08-27 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Fix bug with -x --xattr read-only files
|
||
|
||
Problem reported by Kevin Raymond in:
|
||
https://bugzilla.redhat.com/show_bug.cgi?id=1886540
|
||
* src/extract.c (open_output_file): If we already created the
|
||
empty file, do not open with O_EXCL, or with O_CREAT or O_TRUNC
|
||
for that matter. Instead, use only O_NOFOLLOW to avoid some
|
||
races. When estimating current mode, use openflag & O_EXCL rather
|
||
than overwriting_old_files.
|
||
(extract_file): Also invert S_IWUSR if it’s not set.
|
||
* tests/xattr08.at: New test.
|
||
* tests/Makefile.am, tests/testsuite.at: Add it.
|
||
|
||
2022-08-15 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Avoid quadratic behavior with delayed links
|
||
|
||
Do this by searching a hash table instead of a linked list.
|
||
Problem reported by Martin Dørum in https://mort.coffee/home/tar/
|
||
via Gavin Smith in:
|
||
https://lists.gnu.org/r/bug-tar/2022-07/msg00003.html
|
||
* src/extract.c: Include hash.h.
|
||
Improve performance a bit on non-birthtime hosts
|
||
(struct delayed_link.has_predecessor): New member.
|
||
(delayed_link_head): Remove, replacing with ...
|
||
(delayed_link_table): ... this new variable. All uses
|
||
of linked list replaced with hash table.
|
||
(dl_hash, dl_compare): New functions for hash table.
|
||
(create_placeholder_file): Initialize has_predecessor.
|
||
(apply_delayed_link): New function, with body taken from
|
||
most of the old apply_delayed_link.
|
||
(apply_delayed_links): Use it. Respect has_predecessor.
|
||
Don’t bother freeing as we are about to exit.
|
||
|
||
2022-08-15 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Improve performance a bit on non-birthtime hosts
|
||
|
||
* src/extract.c (HAVE_BIRTHTIME, BIRTHTIME_EQ): New macros.
|
||
(struct delayed_link, create_placeholder_file, extract_link)
|
||
(apply_delayed_links): Avoid unnecessary work on platforms
|
||
like GNU/Linux that lack birthtime.
|
||
|
||
2022-08-15 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Avoid excess lseek etc.
|
||
|
||
* src/buffer.c, src/delete.c: Do not include system-ioctl.h.
|
||
* src/buffer.c (guess_seekable_archive): Remove. This is now done
|
||
by get_archive_status, in a different way.
|
||
(get_archive_status): New function that gets archive_stat
|
||
unless remote, and sets seekable_archive etc.
|
||
(_open_archive): Prefer bool for boolean.
|
||
(_open_archive, new_volume): Get archive status consistently
|
||
by calling get_archive_status in both places.
|
||
* src/buffer.c (backspace_output):
|
||
* src/compare.c (verify_volume):
|
||
* src/delete.c (move_archive):
|
||
Let mtioseek worry about mtio.
|
||
* src/common.h (archive_stat): New global, replacing ar_dev and
|
||
ar_ino. All uses changed.
|
||
* src/delete.c (move_archive): Check for integer overflow.
|
||
Also report overflow if the archive position would go negative.
|
||
* src/system.c: Include system-ioctl.h, for MTIOCTOP etc.
|
||
(mtioseek): New function, which also checks for integer overflow.
|
||
(sys_save_archive_dev_ino): Remove.
|
||
(archive_stat): Now
|
||
(sys_get_archive_stat): Also initialize mtioseekable_archive.
|
||
(sys_file_is_archive): Don’t return true if the archive is
|
||
/dev/null
|
||
since it’s not a problem in that case.
|
||
(sys_detect_dev_null_output): Cache dev_null_stat.
|
||
|
||
doc: omit MS-DOS mentions in doc
|
||
It’s really FAT32 we’re worried about now, not MS-DOS.
|
||
And doschk is no longer a GNU program.
|
||
|
||
2022-08-15 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Omit MS-DOS mentions in doc
|
||
|
||
It’s really FAT32 we’re worried about now, not MS-DOS.
|
||
And doschk is no longer a GNU program.
|
||
|
||
2022-07-25 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Work around GCC bug 106436
|
||
|
||
* src/tar.c (optloc_eq): Use ‘assume’ to pacify GCC bug.
|
||
|
||
2022-07-25 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Avoid unlikely crash when xasprintf returns 0
|
||
|
||
Problem caught by GCC 12.
|
||
* src/tar.c (easprintf): New static function, which never returns
|
||
a null pointer. All uses of xasprintf replaced by uses of this
|
||
function.
|
||
|
||
2022-07-25 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Update .gitignore
|
||
|
||
* .gitignore: Redo for current sources.
|
||
|
||
2022-07-25 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Fix minor type confusion
|
||
|
||
* src/tar.c (decode_options): Don’t assign ‘false’ to
|
||
a pointer.
|
||
|
||
2022-07-25 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Work around GCC bug 106428
|
||
|
||
* src/names.c (read_next_name): Reword and clarify
|
||
to avoid GCC bug 106428.
|
||
|
||
2022-07-25 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Work around GCC bug 106427
|
||
|
||
* lib/wordsplit.c (coalesce_segment): Reword to avoid
|
||
GCC bug 106427.
|
||
|
||
2022-07-24 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Adjust to Gnulib bootstrap revamp
|
||
|
||
* autogen.sh, autopull.sh, bootstrap-funclib.sh:
|
||
New files, copied from gnulib/top.
|
||
* bootstrap: Copy from gnulib/top/bootstrap (as opposed
|
||
to copying from gnulib/build-aux/bootstrap, as we used to).
|
||
* bootstrap.conf (bootstrap_post_pull_hook)
|
||
(bootstrap_post_import_hook): New functions.
|
||
Move commands into these functions as needed.
|
||
|
||
2022-07-11 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* doc/tar.1: Fix --xattrs-exclude typo.
|
||
|
||
2022-06-14 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Avoid EOVERFLOW problems in some symlink tests
|
||
|
||
* src/extract.c (is_directory_link): New arg ST. Caller changed.
|
||
(is_directory_link, open_output_file):
|
||
Use readlinkat, not fstatat, to determine whether a string
|
||
names a symlink. This avoids EOVERFLOW issues.
|
||
(extract_dir): Avoid duplicate calls to fstatat when
|
||
keep_directory_symlink_option && fstatat_flags == 0
|
||
and the file is a symlink to an existing file.
|
||
|
||
2022-06-14 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Fix ‘make dist-xz’ bug
|
||
|
||
Problem reported by Pavel Raiskup in:
|
||
https://lists.gnu.org/r/bug-tar/2022-06/msg00014.html
|
||
* bootstrap.conf (copy_files): Also copy DISTFILES.
|
||
|
||
2022-06-14 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Fix commentary in new test case
|
||
|
||
2022-06-13 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Fix doc -c typo
|
||
|
||
https://lists.gnu.org/r/bug-tar/2022-06/msg00006.html
|
||
* doc/tar.texi (Extended File Attributes): Fix typo.
|
||
|
||
2022-06-13 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Update to current Autoconf & Gettext
|
||
|
||
* acinclude.m4, configure.ac:
|
||
Use AS_HELP_STRING, not AC_HELP_STRING.
|
||
* bootstrap: Sync from Gnulib.
|
||
* configure.ac: Require Autoconf 2.71 and Gettext 0.21.
|
||
Use AC_PROG_CC, not AC_PROG_CC_STDC.
|
||
Prefer AC_COMPILE_IFELSE to AC_TRY_COMPILE.
|
||
Use AC_CONFIG_FILES.
|
||
* gnulib.modules: Use gettext-h, not gettext.
|
||
|
||
2022-06-13 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
build: update gnulib and paxutils submodules to latest
|
||
|
||
2022-06-11 James Abbatiello <abbeyj@gmail.com> (tiny change)
|
||
|
||
tar: fix race condition
|
||
|
||
Problem reported in:
|
||
https://lists.gnu.org/r/bug-tar/2022-03/msg00000.html
|
||
* src/extract.c (make_directories): Retry the file creation as
|
||
long as the directory exists, regardless of whether tar itself
|
||
created the directory.
|
||
|
||
2022-06-11 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: fix race condition
|
||
|
||
Problem reported by James Abbatiello in:
|
||
https://lists.gnu.org/r/bug-tar/2022-03/msg00000.html
|
||
* src/extract.c (make_directories): Do not assume that when
|
||
mkdirat fails with errno == EEXIST that there is an existing file
|
||
that can be statted. It could be a dangling symlink. Instead,
|
||
wait until the end and stat it.
|
||
|
||
2022-06-11 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
test: new test extrac25.at
|
||
|
||
* tests/Makefile.am (TESTSUITE_AT): Add extrac25.at.
|
||
* tests/extrac25.at: New file.
|
||
* tests/testsuite.at: Include it.
|
||
|
||
2022-06-10 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Warn “file changed as we read it” less often
|
||
|
||
* src/create.c (dump_file0): Remove an fstatat call that is
|
||
unnecessary because the file wasn’t read so we can treat
|
||
the first
|
||
fstatat as atomic. Warn “file changed” when the file’s
|
||
size,
|
||
mtime, user ID, group ID, or mode changes, instead of when the
|
||
file’s size or ctime changes. Also, when such a change happens,
|
||
do not change exit status if --ignore-failed-read. Finally,
|
||
don’t
|
||
attempt to change atime back if it didn’t change.
|
||
|
||
2022-06-10 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Modernize NEWS hook to current Emacs
|
||
|
||
2022-05-04 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
doc: fix abrupt sentence in HTML
|
||
|
||
Typo reported by Jackson Dougherty in:
|
||
https://lists.gnu.org/r/bug-tar/2022-05/msg00000.html
|
||
* doc/tar.texi: Don’t assume that tex and info are the only two
|
||
formats.
|
||
|
||
2022-02-16 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: revamp "file is the archive" diagnostic
|
||
|
||
* src/create.c (dump_file0): For clarity, change diagnostic
|
||
wording from "file is the archive; not dumped" to "archive cannot
|
||
contain itself; not dumped". All test cases and documentation
|
||
changed.
|
||
|
||
2022-01-02 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Update copyright years
|
||
|
||
2021-12-14 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Copy COPYING and fdl.texi from upstream
|
||
|
||
2021-12-14 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Format ` and ' more nicely in doc
|
||
|
||
Use @documentencoding and set txicodequoteundirected and
|
||
txicodequotebacktick to get nicer-looking quoting in the manual.
|
||
|
||
2021-12-14 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Don’t recommend delete=mtime
|
||
|
||
That stops working after the year 2242.
|
||
|
||
2021-12-13 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
More reproducible tarball doc
|
||
|
||
* doc/tar.texi (PAX keywords): Improve discussion of how
|
||
to generate reproducible tarballs.
|
||
|
||
2021-12-13 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Raise version number
|
||
|
||
2021-12-13 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
.gitignore maintenance (some automated)
|
||
|
||
bootstrap: copy from Gnulib
|
||
|
||
build: update gnulib and paxutils submodules to latest
|
||
|
||
Add NEWS items for changes since 1.34
|
||
|
||
2021-12-13 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Omit unnecessary devmajor and devminor setting
|
||
|
||
* src/create.c (dump_file0): Omit redundant setting of devmajor
|
||
and devminor; start_header already does this.
|
||
|
||
2021-12-13 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Omit devmajor and devminor for non-special files
|
||
|
||
* src/create.c (start_header): Leave the devmajor and devminor
|
||
fields empty for files that are not character and block special
|
||
devices, even when the archive format is pax, ustar or v7.
|
||
This avoids generating irrelevant differences which helps with
|
||
reproducible builds, and is more compatible with what Solaris 10
|
||
tar does.
|
||
|
||
2021-12-13 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Use ‘bool’ in create.c
|
||
|
||
* src/create.c: Prefer ‘bool’, ‘true’, ‘false’
|
||
for booleans.
|
||
|
||
2021-10-14 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* gnulib.modules: Add year2038.
|
||
|
||
2021-09-20 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
build: improve build-from-git for older GCCs
|
||
|
||
configure.ac: Bump GCC version from 4.6 to 11.2 when deciding
|
||
whether
|
||
to default to enabling GCC warnings when --enable-gcc-warnings
|
||
is not
|
||
specified, as older GCCs can generate too many false alarms. From
|
||
a suggestion by Christian Schoenebeck.
|
||
|
||
2021-09-19 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Simplify wordsplit code a bit
|
||
|
||
These changes pacify gcc -Wanalyzer-null-dereference on x86-64 gcc
|
||
11.2.1 20210728 (Red Hat 11.2.1-1).
|
||
* lib/wordsplit.c (wsnode_tail): Remove unnecessary test.
|
||
(coalesce_segment): Coalesce calls to wsnode_len.
|
||
|
||
2021-09-18 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
build: document WERROR_CFLAGS
|
||
|
||
* README-hacking: Mention 'make WERROR_CFLAGS='.
|
||
|
||
2021-09-17 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
build: update paxutils submodule to latest
|
||
|
||
2021-09-17 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
build: update gnulib submodule to latest
|
||
|
||
* src/common.h (get_directory_entries):
|
||
Add _GL_ATTRIBUTE_MALLOC _GL_ATTRIBUTE_DEALLOC_FREE.
|
||
Problem found by gcc -Wsuggest-attribute=malloc and
|
||
current Gnulib.
|
||
|
||
2021-09-17 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Pacify gcc -Warray-parameter
|
||
|
||
* src/common.h (code_timespec): Declare sbuf arg to be an array,
|
||
to be consistent with definition.
|
||
|
||
2021-09-17 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Fix null rereference if low-memory
|
||
|
||
* src/incremen.c (read_incr_db_01): Use xstrdup not strdup.
|
||
Problem found by gcc -Wanalyzer-possible-null-argument.
|
||
|
||
2021-09-02 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Provide functions for manipulating arrays of extended attributes
|
||
|
||
* src/common.h (xheader_xattr_free,xheader_xattr_copy): Remove
|
||
protos.
|
||
(xattr_map_init,xattr_map_copy)
|
||
(xattr_map_add,xattr_map_free): New protos.
|
||
* src/tar.h (xattr_map): New struct.
|
||
(tar_stat_info): Replace xattr_map_size and xattr_map with one
|
||
field: xattr_map.
|
||
* src/xattrs.c (XATTRS_PREFIX,XATTRS_PREFIX_LEN): New defines.
|
||
(xheader_xattr_init,xattr_map_init)
|
||
(xattr_map_free,xattr_map_add)
|
||
(xheader_xattr_add,xattr_map_copy): New functions.
|
||
All uses changed.
|
||
* src/create.c (start_header): Update to use struct xattr_map.
|
||
* src/extract.c: Update to use struct xattr_map.
|
||
* src/tar.c: Likewise.
|
||
* src/xheader.c (xheader_xattr_init,xheader_xattr_free)
|
||
(xheader_xattr_add,xheader_xattr_copy): Remove.
|
||
(xattr_coder,xattr_decoder): Use xattr_map_ functions.
|
||
|
||
2021-08-28 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix handling of extended header prefixes
|
||
|
||
* src/xheader.c (locate_handler): Recognize prefix keywords only
|
||
when followed by a dot.
|
||
(xattr_decoder): Use xmalloc/xstrdup instead of alloc
|
||
|
||
2021-08-28 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Handle invalid sparse entries in pax header
|
||
|
||
* src/sparse.c (pax_decode_header): Check if sp.offset+sp.numbytes
|
||
falls within the reported file size. Check for possible integer
|
||
overflow.
|
||
|
||
2021-08-28 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
transform: fix replacement of particular pattern instance
|
||
|
||
This fixes handling of expressions like 's/s/@/2'
|
||
|
||
Fix suggested by Anthony Heading.
|
||
|
||
* src/transform.c (_single_transform_name_to_obstack): Avoid
|
||
duplicating
|
||
initial prefix if replace is not needed.
|
||
|
||
2021-07-01 Samanta Navarro <ferivoz@riseup.net>
|
||
|
||
Fix crash on invalid command line argument
|
||
|
||
The copy_string_unquote function does not handle arguments
|
||
which only
|
||
consist of a single quote. A string is only quoted if two quoting
|
||
characters exist.
|
||
|
||
How to reproduce:
|
||
|
||
tar --checkpoint-action exec=\"
|
||
|
||
2021-07-01 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix the use of options with trailing slash in files-from list
|
||
|
||
* src/names.c (read_name_from_file): Do not remove trailing slash
|
||
here, since name_buffer might contain an option (e.g. -C /).
|
||
(read_next_name): Remove trailing slash when we're sure we're
|
||
dealing
|
||
with a file name.
|
||
See 163e96a0.
|
||
|
||
2021-06-01 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Minor fix
|
||
|
||
* scripts/backup-specs: Set standard paths for rsh (patch#9275).
|
||
|
||
2021-06-01 Samanta Navarro <ferivoz@riseup.net>
|
||
|
||
Fix typos
|
||
|
||
Typos found with codespell
|
||
|
||
2021-06-01 Samanta Navarro <ferivoz@riseup.net>
|
||
|
||
Minor changes.
|
||
|
||
* src/xheader.c (decode_record): Fix format specification.
|
||
(xattr_encode_keyword): Allocate space for terminating \0.
|
||
|
||
2021-03-24 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix gendocs_template
|
||
|
||
2021-03-08 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Tune for single-threaded tar
|
||
|
||
This takes advantage of recent optimizations in Gnulib
|
||
for single-threaded programs.
|
||
* configure.ac (GNULIB_EXCLUDE_SINGLE_THREAD)
|
||
(GNULIB_MBRTOWC_SINGLE_THREAD, GNULIB_REGEX_SINGLE_THREAD)
|
||
(GNULIB_WCHAR_SINGLE_LOCALE): Define.
|
||
|
||
2021-03-08 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Port linking to AIX 7.1
|
||
|
||
* src/Makefile.am (LDADD): Remove, folding into tar_LDADD.
|
||
* src/Makefile.am (tar_LDADD), tests/Makefile.am (LDADD):
|
||
Add the libraries gnulib-tool currently recommends: LIB_ACL,
|
||
LIB_CLOCK_GETTIME, LIB_GETRANDOM, LIB_HARD_LOCALE, LIB_HAS_ACL,
|
||
LIB_MBRTOWC, LIB_SETLOCALE_NULL. Otherwise, tar won’t link
|
||
on AIX
|
||
7.1 with xlc because the -lpthread option is missing.
|
||
|
||
2021-03-08 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Port xattr-at.h to AIX 7.1
|
||
|
||
* lib/xattr-at.h: Include <errno.h> before testing whether
|
||
ENOATTR is defined.
|
||
|
||
2021-03-08 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
build: update gnulib submodule to latest
|
||
|
||
2021-03-01 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix building the online version of the manual.
|
||
|
||
* doc/Makefile.am (GENDOCS): Use the version from the tar
|
||
repository.
|
||
(manual): Set the DISTRIN rendition.
|
||
(manual-rebuild): New goal.
|
||
* doc/README.manual: New file. Instructions for maintainers on
|
||
how to
|
||
update web documentation.
|
||
* doc/gendocs.sh: A version from gnulib fixed as per
|
||
https://lists.gnu.org/archive/html/bug-gnulib/2021-03/msg00002.html.
|
||
* doc/gendocs_template: Updated version from gnulib.
|
||
* doc/intern.texi: Fix the use of UNREVISED.
|
||
* doc/tar.texi: Fix the use of GNUTAR.
|
||
|
||
2021-03-01 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Fix unlikely uninitalized var bug with sparse file
|
||
|
||
* src/sparse.c (sparse_extract_file): Set *SIZE to
|
||
stat.st_size so that the caller does not use *SIZE
|
||
when uninitalized. Problem found with GCC 10 and
|
||
--enable-gcc-warnings CFLAGS='-O2 -flto -fanalyzer'.
|
||
|
||
2021-03-01 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Pacify --enable-gcc-warnings -flto -fanalyzer
|
||
|
||
With GCC 10.2.1, ‘./configure --enable-gcc-warnings CFLAGS='-O2
|
||
-flto -fanalyzer' issued a false alarm about uninitialized
|
||
variable use. Pacify GCC by using a variant of the code.
|
||
* src/buffer.c (zip_program): Omit last placeholder entry.
|
||
(n_zip_programs): New constant.
|
||
(find_zip_program): Use it instead of placeholder.
|
||
(first_decompress_program): Set *PSTATE to maximum value
|
||
if skipping the table. This avoids confusing gcc -flto
|
||
into thinking *PSTATE is used uninitialized.
|
||
(next_decompress_program): Simplify now that *PSTATE is maximal
|
||
when skipping.
|
||
|
||
2021-03-01 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Pacify clang for unreachable ‘return’
|
||
|
||
* src/sparse.c (sparse_scan_file_seek): Omit unreachable
|
||
statement.
|
||
|
||
2021-03-01 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Pacify clang char conversion
|
||
|
||
* src/create.c (to_chars): Pacify ‘clang’ about assigning
|
||
128 to ‘char’.
|
||
|
||
2021-03-01 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Omit most uses of ‘inline’
|
||
|
||
With today’s compilers ‘inline’ is typically not needed for
|
||
performance (at least the way GNU Tar uses it) and it gets in the
|
||
way of portability.
|
||
* configure.ac: Omit AC_C_INLINE; no longer needed here.
|
||
* lib/attr-xattr.in.h (setxattr, lsetxattr, fsetxattr, getxattr)
|
||
(lgetxattr, fgetxattr, listxattr, llistxattr, flistxattr):
|
||
* lib/wordsplit.c (skip_delim_internal, skip_delim)
|
||
(skip_delim_real, exptab_matches):
|
||
* src/delete.c (flush_file):
|
||
* src/extract.c (safe_dir_mode):
|
||
* src/misc.c (ptr_align):
|
||
Now just static, not static inline.
|
||
* lib/wordsplit.h (wordsplit_getwords): Remove; no longer used.
|
||
* src/common.h (name_more_files): Now COMMON_INLINE, not
|
||
extern inline - which is not portable according to C99,
|
||
the way we were using it.
|
||
|
||
2021-03-01 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
maint: port better to non-GCC compilers
|
||
|
||
This can be helpful in porting to compilers like Oracle Developer
|
||
Studio that support some but not all GCC attributes.
|
||
* lib/wordsplit.c (FALLTHROUGH): Remove; now done by attribute.h.
|
||
* lib/wordsplit.h (__WORDSPLIT_ATTRIBUTE_FORMAT): Remove;
|
||
all uses replaced by ATTRIBUTE_FORMAT.
|
||
* lib/wordsplit.h, src/buffer.c, src/common.h, src/compare.c:
|
||
* src/sparse.c, src/system.c, src/xheader.c:
|
||
Prefer ATTRIBUTE_FORMAT, MAYBE_UNUSED, _Noreturn, etc. to
|
||
__attribute__.
|
||
|
||
2021-03-01 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Update paxutils from upstream
|
||
|
||
2021-02-28 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
maint: 1.34 announcement update
|
||
|
||
Hand-install 1.34 changes into master.
|
||
Evidently these changes were not pushed to savannah,
|
||
before I installed further changes today.
|
||
|
||
2021-02-28 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
maint: port to Fedora 33
|
||
|
||
Fedora 33 uses GCC 10.2.1, which is a bit pickier.
|
||
* configure.ac: Do not use -Wsystem-headers, as this
|
||
runs afoul of netdb.h on Fedora 33.
|
||
* gnulib.modules: Add ‘attribute’.
|
||
* lib/wordsplit.c (wsnode_new): Return the newly allocated
|
||
pointer instead of a boolean, to pacify GCC 10.2.1 which otherwise
|
||
complains about use of possibly-null pointers. All uses changed.
|
||
* src/buffer.c (try_new_volume): Don’t assume find_next_block
|
||
succeeds.
|
||
(_write_volume_label): Pacify GCC 10.2.1 with an ‘assume’,
|
||
since
|
||
LABEL must be nonnull here.
|
||
* src/common.h (FALLTHROUGH): Remove; now in attribute.h.
|
||
Include attribute.h, for ATTRIBUTE_NONNULL.
|
||
* src/misc.c (assign_string_or_null): New function,
|
||
taking over the old role of assign_string.
|
||
(assign_string): Assume VALUE is non-null.
|
||
(assign_null): New function, taking over the old
|
||
role of assign_string when its VALUE was nonnull.
|
||
All callers of assign_string changed to use these functions.
|
||
(assign_string_n): Clear *STRING if VALUE is null,
|
||
to fix a potential double-free.
|
||
|
||
2021-02-28 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Update gnulib and paxutils from upstream
|
||
|
||
2021-02-08 Pavel Raiskup <praiskup@redhat.com>
|
||
|
||
xattrs: fix capabilities root test
|
||
|
||
Related discussion in the Fedora pull-request:
|
||
https://src.fedoraproject.org/rpms/tar/pull-request/8
|
||
|
||
* tests/capabs_raw01.at: Newer systems (currently e.g. Fedora 34)
|
||
print getcap output in format CAP=VAL, not CAP+VAL.
|
||
|
||
2021-02-08 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Gracefully handle duplicate symlinks when extracting
|
||
|
||
If the archive being extracted contains multiple copies
|
||
of the same symlink, extract only the first of them and
|
||
skip the rest. The use case is described in
|
||
|
||
https://lists.gnu.org/archive/html/bug-tar/2021-01/msg00026.html
|
||
|
||
The bug was introduced by 2d3396c3ea.
|
||
|
||
* src/extract.c (create_placeholder_file): If placeholder already
|
||
exists and is registered in the delayed_link list, return
|
||
immediately.
|
||
|
||
2021-02-04 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix savannah bug #60002
|
||
|
||
Bug was introduced by commit 34d15af1.
|
||
|
||
* src/extract.c (prepare_to_extract): When extracting over pipe,
|
||
process only regular files.
|
||
* tests/extrac24.at: New test case.
|
||
* tests/Makefile.am: Add new test case.
|
||
* tests/testsuite.at: Likewise.
|
||
|
||
2021-01-17 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix memory leak in read_header
|
||
|
||
Bug reported in https://savannah.gnu.org/bugs/?59897
|
||
|
||
* src/list.c (read_header): Don't return directly from the loop.
|
||
Instead set the status and break. Return the status. Free
|
||
next_long_name and next_long_link before returning.
|
||
|
||
2021-01-17 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix improper argument reference.
|
||
|
||
(bug introduced by 1ff0b63f)
|
||
|
||
* src/tar.c (parse_default_options): Pass args as is to the
|
||
argp_parse.
|
||
|
||
2021-01-16 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix regression itroduced by 66162927.
|
||
|
||
* src/misc.c (chdir_arg): Initialize the abspath field to NULL.
|
||
(tar_getcdpath): Actually initialize the abspath field here.
|
||
|
||
2021-01-14 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fixes in the delete_archive_members function
|
||
|
||
* src/delete.c (delete_archive_members): Clean-up the code. Avoid
|
||
entering the loop from the middle. Free the memory allocated for
|
||
current_stat_info.
|
||
|
||
2021-01-08 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Use stdopen from gnulib
|
||
|
||
* gnulib.modules: Request stdopen
|
||
* lib/Makefile.am: Remove stdopen.c and stdopen.h
|
||
* lib/stdopen.c: Remove.
|
||
* lib/stdopen.h: Remove.
|
||
* src/tar.c: stdopen returns 0 on success.
|
||
|
||
2021-01-08 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Actually prefer /dev/full over /dev/null as a replacement
|
||
for stdin
|
||
|
||
* lib/stdopen.c (stdopen): Fix improper condition.
|
||
Avoid leaking extra file descriptor.
|
||
* src/tar.c (main): Set name of the stdout for diagnostics.
|
||
Bail out if stdopen fails.
|
||
|
||
2021-01-07 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Version 1.33
|
||
|
||
* NEWS: Update.
|
||
* configure.ac: Raise version number. Require automake 1.15 and
|
||
autoconf 2.64.
|
||
* gnulib: pull v0.1-4333-g30820c2
|
||
* src/names.c: Use hash_remove instead of the deprecated
|
||
hash_delete.
|
||
|
||
2021-01-06 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Update copyright years
|
||
|
||
2020-07-13 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix typo in the manpage
|
||
|
||
* doc/tar.1: Fix description of the --newer option
|
||
|
||
2020-07-10 Pavel Raiskup <praiskup@redhat.com>
|
||
|
||
Bugfix --sparse --diff mode
|
||
|
||
Originally reported in:
|
||
https://bugzilla.redhat.com/show_bug.cgi?id=1853469
|
||
|
||
* src/sparse.c (check_data_region): Only compare the part
|
||
of buffer
|
||
really fed by safe_read(), not whole rdsize.
|
||
|
||
2020-06-24 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Accept only position-sensitive (file-selection) options in file
|
||
list files.
|
||
|
||
Using such options as -f, -z, etc. is senseless in the file
|
||
list file
|
||
and bypasses the option consistency checks in decode_options.
|
||
Therefore,
|
||
only options related to file selection (a.k.a position-sensitive
|
||
options)
|
||
are allowed in files.
|
||
|
||
* doc/tar.texi: Document changes.
|
||
* src/common.h (tar_args): Move from tar.c
|
||
(TAR_ARGS_INITIALIZER): New macro.
|
||
* src/names.c: Declare option group identifiers as an enum.
|
||
(names_parse_opt): Special handling for ARGP_KEY_ERROR.
|
||
(names_argp): Remove static qualifier.
|
||
(names_argp_children): Remove.
|
||
* src/tar.c: Declare option group identifiers as an enum.
|
||
(parse_opt): Special handling for ARGP_KEY_INIT.
|
||
(argp_children): New static variable.
|
||
(args): Remove static variable.
|
||
(more_options): Allow only options from names_argp.
|
||
(parse_default_options): Take a pointer to struct tar_args
|
||
as argument.
|
||
Replace the loc member during the call to argp_parse and
|
||
restore it
|
||
afterwards.
|
||
(decode_options): Use automatic variable for args.
|
||
|
||
2020-06-22 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix the logic of prepare_to_extract.
|
||
|
||
* src/extract.c (prepare_to_extract): Return true to proceed with
|
||
the extraction, and false to skip the current member.
|
||
If extracting
|
||
over a pipe, skip unlinking logic.
|
||
(extract_archive): Update accordingly.
|
||
|
||
2020-06-15 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Make sure link counting works for file names supplied with -T
|
||
|
||
* src/common.h (name_count): Remove extern.
|
||
(files_count): New enum.
|
||
(filename_args): New extern.
|
||
* src/names.c (name_count): Remove.
|
||
(files_count): New variable.
|
||
(name_add_name,name_add_file): Update filename_args.
|
||
* src/create.c (create_archive): Set trivial_link_count
|
||
depending on
|
||
the filename_args.
|
||
|
||
2020-06-10 Alfred M. Szmidt <ams@gnu.org>
|
||
|
||
Remove freemanuals.texi
|
||
|
||
* doc/Makefile.am (tar_TEXINFOS): Remove freemanuals.texi.
|
||
* doc/freemanuals.texi: Delete file.
|
||
* doc/tar.texi (Free Software Needs Free Documentation): Remove
|
||
appendix.
|
||
|
||
2020-06-03 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix typo in docs
|
||
|
||
2020-06-03 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Bugfix
|
||
|
||
* src/sparse.c (sparse_diff_file): Fix return value.
|
||
|
||
2020-05-19 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: avoid read overrun
|
||
|
||
Problem reported by Timotej Kapus in:
|
||
https://lists.gnu.org/r/bug-tar/2020-05/msg00001.html
|
||
* src/transform.c (parse_transform_expr):
|
||
Diagnose ‘--transform='s'’ instead of continuing past '\0'.
|
||
|
||
2020-02-15 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix handling of linked rename chains in incremental backups
|
||
|
||
* src/incremen.c: Change the meaning of the DIRF_RENAMED flag.
|
||
Now it
|
||
marks a directory which is the last one in a chain of renames.
|
||
Regular renamed directories are recognized by their orig member
|
||
being
|
||
non-NULL. Directories marked with DIRF_RENAMED start encoding
|
||
of renames.
|
||
(procdir): Clear DIRF_RENAMED flag on directories which are
|
||
origins for
|
||
renames.
|
||
(makedumpdir): Use the orig member to check if the directory is a
|
||
result of a rename.
|
||
(store_rename): Move the check for DIR_IS_RENAMED to the
|
||
caller. Don't
|
||
clear the DIRF_RENAMED, it is not needed any more.
|
||
|
||
* tests/rename06.at: New test.
|
||
* tests/Makefile.am: Add rename06.at
|
||
* tests/testsuite.at: Likewise.
|
||
|
||
2020-02-08 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Update copyright years
|
||
|
||
2020-02-08 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix the --no-overwrite-dir option
|
||
|
||
Given this option, tar failed to preserve permissions of empty
|
||
directories
|
||
and to create files under directories owned by the current user
|
||
that did
|
||
not have the S_IWUSR bit set.
|
||
|
||
* src/extract.c (fd_chmod): Rename to fd_i_chmod.
|
||
(fd_chmod): New function.
|
||
(safe_dir_mode): New function.
|
||
(extract_dir): Special handling for existing directories in
|
||
--no-overwrite-dir mode.
|
||
* tests/extrac23.at: New file.
|
||
* tests/Makefile.am: Add new test case.
|
||
* tests/testsuite.at: Likewise.
|
||
|
||
2019-12-03 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Wildcards in exclude-vcs-ignore mode should not match slash
|
||
|
||
* src/exclist.c (info_attach_exclist): Use the FNM_FILE_NAME flag.
|
||
|
||
2019-11-27 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Version 1.32.90
|
||
|
||
2019-11-25 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Testsuite fixes
|
||
|
||
* tests/sparse06.at: Skip the test if genfile is unable to create
|
||
sparse files.
|
||
* tests/sptrcreat.at: Likewise.
|
||
* tests/sptrdiff00.at: Likewise.
|
||
* tests/sptrdiff01.at: Likewise.
|
||
|
||
2019-11-14 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Another testsuite fix.
|
||
|
||
* tests/extrac11.at: Skip test if ulimit fails.
|
||
|
||
2019-11-13 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Testsuite fix.
|
||
|
||
* tests/remfiles10.at: Don't expect EINVAL when trying to remove
|
||
CWD.
|
||
|
||
2019-08-25 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Consistently use x2realloc for buffer reallocation
|
||
|
||
* src/create.c (create_archive): Use x2realloc
|
||
* src/names.c (copy_name)
|
||
(add_hierarchy_to_namelist): Use x2realloc
|
||
|
||
2019-08-18 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix extraction of symbolic links hardlinked to another symbolic
|
||
links
|
||
|
||
* src/extract.c (create_placeholder_file): Take additional
|
||
argument:
|
||
the delayed_link entry after which to the newly created one.
|
||
(extract_link): Create a placeholder file if the target link name
|
||
exists in the delayed_link list.
|
||
|
||
2019-04-11 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix --delay-directory-restore on archives with reversed member
|
||
ordering.
|
||
|
||
* src/extract.c (find_direct_ancestor): Remove useless test.
|
||
(delay_set_stat): If the file name being added is already in
|
||
the list, update stored data instead of creating a new entry.
|
||
This works for archives with reversed order of members.
|
||
* tests/extrac22.at: New testcase.
|
||
* tests/Makefile.am: Add new testcase.
|
||
* tests/testsuite.at: Include new testcase.
|
||
|
||
2019-03-28 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Minor change * scripts/backup.in: Fix typo
|
||
|
||
Typesetting fixes in the manpage
|
||
|
||
2019-03-28 Zachary Vance <za3k@za3k.com>
|
||
|
||
POSIX extended format headers do not include PID by default
|
||
|
||
The intent is to make binary-equivalent PAX archives easy
|
||
to create. If
|
||
POSIXLY_CORRECT is set, the POSIX standard default is used,
|
||
which embeds
|
||
the pid.
|
||
|
||
* src/common.h (posixly_correct): New global.
|
||
* src/tar.c (decode_options): Detect the POSIXLY_CORRECT
|
||
environment
|
||
variable.
|
||
* src/buffer.c (add_chunk_header): Change filenames of multipart
|
||
files to
|
||
omit the pid.
|
||
* src/xheader.c (HEADER_TEMPLATE): New macro.
|
||
(xheader_xhdr_name, xheader_ghdr_name): Use HEADER_TEMPLATE
|
||
to select
|
||
the template for the POSIX extended header name.
|
||
* doc/tar.texi: Document the change.
|
||
|
||
2019-03-03 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Check return value from xgetcwd
|
||
|
||
* src/misc.c (chdir_arg,tar_getcdpath): Check for non-NULL
|
||
return from xgetcwd. The function returns NULL for any
|
||
error originating from getcwd.
|
||
|
||
2019-02-23 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Version 1.32
|
||
|
||
2019-02-04 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Minor fixes in docs.
|
||
|
||
* doc/tar.1: Remove description of the --preserve option
|
||
Document verbosity levels.
|
||
* doc/tar.texi: Fix description of the -o option.
|
||
|
||
2019-01-15 Daniel Le <greenrecyclebin@gmail.com>
|
||
|
||
Fix typos in the documentation
|
||
|
||
Short option "t" was mistranslated to "--test" instead of "--list"
|
||
in commit
|
||
67cad0792b4e6cf22c6cb1b167b149cd176d49f9.
|
||
|
||
2019-01-15 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix build on AIX
|
||
|
||
* src/unlink.c (flush_deferred_unlinks): Avoid possible duplicate
|
||
case
|
||
(if ENOTEMPTY==EEXIST)
|
||
|
||
2019-01-15 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Version 1.31.90
|
||
|
||
2019-01-14 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Ensure gnu format when running checkpoint tests
|
||
|
||
2019-01-14 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix compression tests
|
||
|
||
Existing compression tests used tar with compiled-in
|
||
defaults. However,
|
||
some of the defaults are sure to create archives that are not
|
||
byte-to-byte
|
||
reproducible (e.g. DEFAULT_ARCHIVE_FORMAT=POSIX, because the
|
||
name field
|
||
in posix extended headers uses PID of the creating process
|
||
by default).
|
||
Moreover, some compressors (e.g. gzip) store current timestamp in
|
||
the file header when compressing from stdin, so that using cmp
|
||
on the
|
||
two created archives as the tests did is error-prone. Another
|
||
problem
|
||
is that the tests implicitly assumed that tar uses archive
|
||
suffix to
|
||
recognize its format when extracting, which isn't the
|
||
case. Finally,
|
||
there's hardly any reason in using sed to create m4 sources, when
|
||
everything can be achieved by m4 itself.
|
||
|
||
* tests/Makefile.am: Remove generation of compress-*.at files.
|
||
* tests/compress.at.in: Remove.
|
||
* tests/compress.m4: New file.
|
||
* tests/testsuite.at: Include compress.m4, use TAR_CHECK_COMPRESS
|
||
to
|
||
check compression options.
|
||
|
||
2019-01-14 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix possible NULL dereference (savannah bug #55369)
|
||
|
||
* src/sparse.c (pax_decode_header): Check return from
|
||
find_next_block.
|
||
|
||
2019-01-14 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix compilation without iconv.
|
||
|
||
2019-01-14 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix iconv usage.
|
||
|
||
Patch by Christian Weisgerber.
|
||
|
||
* src/utf8.c (utf8_convert): non-zero return from iconv means
|
||
failure.
|
||
|
||
2019-01-14 Pavel Raiskup <praiskup@redhat.com>
|
||
|
||
tests: fix numeric.at for BSD
|
||
|
||
While creating file, BSD kernels inherit the group ownership from
|
||
parent directory.
|
||
http://lists.gnu.org/archive/html/bug-tar/2016-06/msg00000.html
|
||
|
||
* tests/numeric.at: Attempt to 'chown' the newly created directory
|
||
to proper group (at least on affected machines that command is
|
||
expected to succeed).
|
||
|
||
2019-01-14 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix typo in manpage.
|
||
|
||
2019-01-14 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix expected output in dirrem tests.
|
||
|
||
In both tests, the "file changed as we read it" warning might be
|
||
produced for dir/sub, depending on the ctime resolution and
|
||
timing.
|
||
The problem was fixed by 64b43fdf70d82c39eb2ca900cd4f8e49,
|
||
but regressed
|
||
after e7cd377f7801d42aa8e07addff93d2150666c237, which removed
|
||
1 second
|
||
delays between each pair of checkpoints. Since the presense
|
||
or absense
|
||
of this warning is irrelevant for the test, it is now suppressed.
|
||
|
||
* tests/dirrem01.at: Suppress the file-changed warning.
|
||
* tests/dirrem02.at: Likewise.
|
||
|
||
2019-01-12 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix the use of --checkpoint without explicit --checkpoint-action
|
||
|
||
* src/checkpoint.c (checkpoint_finish_compile): Set default
|
||
action,
|
||
if necessary.
|
||
* tests/checkpoint/defaults.at: New testcase.
|
||
* tests/checkpoint/dot-compat.at: New testcase.
|
||
* tests/checkpoint/dot-int.at: New testcase.
|
||
* tests/checkpoint/dot.at: New testcase.
|
||
* tests/checkpoint/interval.at: New testcase.
|
||
* tests/Makefile.am: Add new testcases.
|
||
* tests/testsuite.at Include new testcases.
|
||
|
||
2019-01-10 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Remove erroneous abort() call
|
||
|
||
The call was introduced by commit ccef8581. It caused tar to abort
|
||
on perfectly normal operations, like untarring archives containing
|
||
./ with the -U option,
|
||
|
||
See
|
||
http://lists.gnu.org/archive/html/bug-tar/2019-01/msg00019.html
|
||
for details.
|
||
|
||
* src/extract.c (maybe_recoverable): Remove misplaced call
|
||
to abort().
|
||
|
||
2019-01-02 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Version 1.31
|
||
|
||
2018-12-28 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix the difflink test
|
||
|
||
Hardlinking a symlink produces hardlink on BSD and symlink
|
||
on GNU/Linux. Avoid the ambiguity.
|
||
|
||
* tests/difflink.at: Create hard link from a regular file.
|
||
|
||
2018-12-28 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Work over a bug in gnulib error()
|
||
|
||
The error() function from glibc correctly prefixes each message it
|
||
prints with program_name as set by set_program_name. However, its
|
||
replacement from gnulib, which is linked in on systems where this
|
||
function is not available, prints the name returned by
|
||
getprogname()
|
||
instead. Due to this messages output by tar subprocess (which
|
||
sets its
|
||
program name to 'tar (child)') become indiscernible from those
|
||
printed
|
||
by the main process. In particular, this breaks the remfiles01.at
|
||
and
|
||
remfiles02.at test cases.
|
||
|
||
* configure.ac: Define ENABLE_ERROR_PRINT_PROGNAME if using
|
||
gnulib error().
|
||
* src/tar.c [ENABLE_ERROR_PRINT_PROGNAME] (tar_print_progname):
|
||
New function.
|
||
(main) [ENABLE_ERROR_PRINT_PROGNAME]: Set error_print_progname.
|
||
|
||
2018-12-28 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Implement the "wait" checkpoint action.
|
||
|
||
This action instructs tar to pause until given signal is
|
||
delivered.
|
||
The newer genfile tool uses this action for communication between
|
||
genfile and tar in exec mode. This eliminates race conitions and
|
||
speeds up the tests based on exec mode.
|
||
|
||
* doc/tar.texi: Document changes.
|
||
* paxutils: Upgrade.
|
||
* src/checkpoint.c: Implement the wait action.
|
||
* src/common.h (decode_signal): New proto.
|
||
* src/tar.c (decode_signal): New function.
|
||
(set_stat_signal): Rewrite.
|
||
* tests/dirrem01.at: Adjust genfile and tar command line arguments
|
||
to use the new feature.
|
||
* tests/dirrem02.at: Likewise.
|
||
* tests/filerem01.at: Likewise.
|
||
* tests/filerem02.at: Likewise.
|
||
* tests/grow.at: Likewise.
|
||
* tests/sptrcreat.at: Likewise.
|
||
* tests/sptrdiff00.at: Likewise.
|
||
* tests/sptrdiff01.at: Likewise.
|
||
* tests/truncate.at: Likewise.
|
||
|
||
2018-12-27 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix CVE-2018-20482
|
||
|
||
* NEWS: Update.
|
||
* src/sparse.c (sparse_dump_region): Handle short read condition.
|
||
(sparse_extract_region,check_data_region): Fix dumped_size
|
||
calculation.
|
||
Handle short read condition.
|
||
(pax_decode_header): Fix dumped_size calculation.
|
||
* tests/Makefile.am: Add new testcases.
|
||
* tests/testsuite.at: Likewise.
|
||
|
||
* tests/sptrcreat.at: New file.
|
||
* tests/sptrdiff00.at: New file.
|
||
* tests/sptrdiff01.at: New file.
|
||
|
||
2018-12-21 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Disallow modifications to the global pax extended header in
|
||
update mode.
|
||
|
||
Updating global headers in update mode is not possible, because:
|
||
|
||
1) If the original archive was not in PAX format, writing the
|
||
global header would overwrite first member header (and eventually
|
||
data blocks) in the archive.
|
||
2) Otherwise, using the --pax-option can make the updated header
|
||
occupy more blocks than the original one, which would lead to the
|
||
same effect as in 1.
|
||
|
||
This also fixes
|
||
http://lists.gnu.org/archive/html/bug-tar/2018-12/msg00007.html
|
||
|
||
* src/xheader.c (xheader_forbid_global): New function.
|
||
* src/common.h (xheader_forbid_global): New prototype.
|
||
* src/update.c (update_archive): Use xheader_forbid_global,
|
||
instead
|
||
of trying to write global extended header record.
|
||
|
||
2018-12-21 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Bugfix
|
||
|
||
Bug reported in
|
||
http://lists.gnu.org/archive/html/bug-tar/2018-12/msg00014.html
|
||
|
||
* src/names.c (collect_and_sort_names): Fix iteration over
|
||
namelist.
|
||
|
||
2018-12-21 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix semantics of -K used together with explicit member names.
|
||
|
||
This also fixes the bug reported in
|
||
http://lists.gnu.org/archive/html/bug-tar/2018-12/msg00012.html
|
||
|
||
* src/common.h (starting_file_option): Describe the variable.
|
||
* src/names.c (add_starting_file): New function.
|
||
(name_match): Ignore everything before the member indicated by the
|
||
--starting-file option
|
||
* src/tar.c: Use add_starting_file to handle the -K option.
|
||
|
||
2018-12-21 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix error handling when reading incremental snapshots
|
||
|
||
Bug reported in
|
||
http://lists.gnu.org/archive/html/bug-tar/2018-12/msg00008.html
|
||
|
||
* incremen.c (read_incr_db_01): Don't try to continue after
|
||
errors.
|
||
|
||
2018-12-21 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Reject pax options starting with equals sign
|
||
|
||
Bug reported in
|
||
http://lists.gnu.org/archive/html/bug-tar/2018-12/msg00010.html
|
||
|
||
* xheader.c (xheader_set_keyword_equal): Bail out if the keyword
|
||
starts
|
||
with =
|
||
|
||
2018-12-21 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix buffer overflow
|
||
|
||
Bug reported in
|
||
http://lists.gnu.org/archive/html/bug-tar/2018-12/msg00011.html
|
||
|
||
* src/xheader.c (xheader_format_name): fix length calculation
|
||
|
||
2018-12-21 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix improper memory access
|
||
|
||
Bug reported in
|
||
http://lists.gnu.org/archive/html/bug-tar/2018-12/msg00009.html
|
||
|
||
* src/transform.c (parse_transform_expr): Check if re is not empty
|
||
before accessing its last byte.
|
||
|
||
2018-11-24 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix parsing of ACLs
|
||
|
||
Text returned by acl_to_text can contain comments (introduced
|
||
by #).
|
||
Strip comments and horizontal tabs prior to storing ACLs in PAX
|
||
headers.
|
||
|
||
* src/xattrs.c (xattrs_acls_cleanup): New function.
|
||
(xattrs__acls_get_a,xattrs__acls_get_d): Use xattrs_acls_cleanup.
|
||
|
||
2018-11-24 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Don't try to read past the end of header string fields
|
||
|
||
* src/common.h (assign_string_n): New proto.
|
||
(ASSIGN_STRING_N): New macro.
|
||
* src/misc.c (assign_string_n): New function.
|
||
* gnulib.modules: Add strnlen.
|
||
* src/buffer.c: Use assign_string_n where appropriate.
|
||
* src/list.c: Likewise.
|
||
|
||
2018-11-12 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix verbose ACL listing
|
||
|
||
* src/xattrs.c (acls_one_line): Advance pos.
|
||
(xattrs_print): Insert a comma between ACL and default ACL if both
|
||
are non-empty.
|
||
|
||
2018-10-29 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: fix numbered backup bug
|
||
|
||
* src/misc.c (maybe_backup_file): Pass chdir_fd, not AT_FDCWD,
|
||
to find_backup_file_name. This fixes a bug whereby the wrong
|
||
backup file name was chosen for numbered backups.
|
||
|
||
2018-10-29 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* src/tar.c (expand_pax_option): Pacify recent GCC.
|
||
|
||
2018-10-29 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
build: update gnulib submodule to latest
|
||
|
||
* src/misc.c (maybe_backup_file): Adjust to Gnulib change.
|
||
|
||
2018-08-02 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Minor fixes in wordsplit.c
|
||
|
||
2018-08-02 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
build: update gnulib submodule to latest
|
||
|
||
2018-07-31 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Silence gcc warnings in wordsplit
|
||
|
||
2018-07-31 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix double-free introduced by 577dc345
|
||
|
||
* src/utf8.c (utf8_convert): Don't store freed value in *output
|
||
|
||
2018-07-31 Pavel Raiskup <praiskup@redhat.com>
|
||
|
||
Report race on systems without O_DIRECTORY
|
||
|
||
* src/names.c (collect_and_sort_names): Report ENOTDIR after
|
||
successful fstat() but !S_ISDIR.
|
||
|
||
2018-07-31 Pavel Raiskup <praiskup@redhat.com>
|
||
|
||
Avoid some resource leaks
|
||
|
||
* src/incremen.c (store_rename): Free temp_name, leaked before for
|
||
each renamed directory with --listed-incremental.
|
||
* src/transform.c (add_literal_segment): Tighten arguments by
|
||
const.
|
||
(parse_transform_expr): Free 'str', leaked storage for each
|
||
--transform option before.
|
||
* src/utf8.c (utf8_convert): Deallocate buffer for failed iconv()
|
||
call so callers don't have to.
|
||
|
||
2018-07-31 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Sync wordsplit and paxutils with the most recent versions
|
||
|
||
2018-06-14 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* doc/tar.1: Fix font typo noted by esr.
|
||
|
||
2018-05-16 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* doc/tar.1: Don't refer to nonexistent tar(5).
|
||
|
||
2018-04-13 Jim Meyering <meyering@fb.com>
|
||
|
||
--one-top-level: avoid a heap-buffer-overflow
|
||
|
||
* NEWS: Mention this.
|
||
* src/suffix.c (strip_compression_suffix): Fix string comparison
|
||
guard.
|
||
Without this change, some ASAN-enabled test runs would fail
|
||
with the
|
||
following. Also, strip an additional .tar suffix only if
|
||
the just-
|
||
stripped suffix did not match /^\.t/".
|
||
|
||
==30815==ERROR: AddressSanitizer: heap-buffer-overflow on
|
||
address 0x6020000002ed at pc 0x00000049d1f4 bp 0x7ffeb5906d50
|
||
sp 0x7ffeb5906500
|
||
READ of size 1 at 0x6020000002ed thread T0
|
||
SCARINESS: 12 (1-byte-read-heap-buffer-overflow)
|
||
#0 0x49d1f3 in __interceptor_strncmp
|
||
/j/gcc/libsanitizer/sanitizer_common/sanitizer_common_interceptors.inc:407
|
||
#1 0x5670f3 in strip_compression_suffix
|
||
/j/tar/src/suffix.c:107
|
||
#2 0x575788 in decode_options /j/tar/src/tar.c:2545
|
||
#3 0x5760c0 in main /j/tar/src/tar.c:2708
|
||
#4 0x7f105090df29 in __libc_start_main ../csu/libc-start.c:308
|
||
#5 0x408629 in _start (/j/tar/src/tar+0x408629)
|
||
|
||
0x6020000002ed is located 3 bytes to the left of 6-byte region
|
||
[0x6020000002f0,0x6020000002f6)
|
||
allocated by thread T0 here:
|
||
#0 0x4d0710 in __interceptor_malloc
|
||
/j/gcc/libsanitizer/asan/asan_malloc_linux.cc:86
|
||
#1 0x4908ad in __interceptor_strndup
|
||
/j/gcc/libsanitizer/sanitizer_common/sanitizer_common_interceptors.inc:326
|
||
#2 0x5cbcbd in xstrndup /j/tar/gnu/xstrndup.c:32
|
||
#3 0x5a325b in base_name /j/tar/gnu/basename.c:57
|
||
#4 0x575772 in decode_options /j/tar/src/tar.c:2544
|
||
#5 0x5760c0 in main /j/tar/src/tar.c:2708
|
||
#6 0x7f105090df29 in __libc_start_main ../csu/libc-start.c:308
|
||
|
||
2018-04-07 Andrew Hounsell <andrewhounsell@gmail.com>
|
||
|
||
Tiny fix
|
||
|
||
* doc/snapshot.texi: Fix a typo
|
||
* scripts/tar-snapshot-edit: Fix a typo
|
||
|
||
2018-04-07 Jim Meyering <jim@meyering.net>
|
||
|
||
tests: avoid test failure with non-ancient autoconf
|
||
|
||
Running "make check" would fail with this:
|
||
T-nonl.at:30: error: m4_divert_push: cannot change diversion
|
||
to `GROW' inside m4_expand
|
||
* tests/T-nonl.at: Use printf in place of AS_ECHO_N.
|
||
These days, printf should work for everyone.
|
||
|
||
2018-04-07 Jim Meyering <meyering@fb.com>
|
||
|
||
maint: avoid -Wstringop-truncation warnings from upcoming GCC8
|
||
|
||
* src/create.c (start_private_header, start_header): Convert
|
||
trivial uses of strncpy to memcpy, to avoid warnings like this:
|
||
In function 'strncpy',
|
||
inlined from 'start_private_header' at create.c:522:3:
|
||
/usr/include/bits/string_fortified.h:106:10: warning: \
|
||
'__builtin_strncpy' output truncated before terminating nul \
|
||
copying 2 bytes from a string of the same length \
|
||
[-Wstringop-truncation]
|
||
|
||
2018-04-07 Jim Meyering <meyering@fb.com>
|
||
|
||
maint: avoid -Wstringop-truncation warnings upcoming GCC8
|
||
|
||
* src/buffer.c (gnu_add_multi_volume_header): Convert a use of
|
||
strncpy to memcpy, to avoid this warning:
|
||
In function 'strncpy',
|
||
inlined from 'gnu_add_multi_volume_header' at buffer.c:1782:3,
|
||
...
|
||
/usr/include/bits/string_fortified.h:106:10: error:
|
||
'__builtin_strncpy'\
|
||
specified bound 100 equals destination size \
|
||
[-Werror=stringop-truncation]
|
||
|
||
2018-04-07 Jim Meyering <meyering@fb.com>
|
||
|
||
maint: avoid warnings from upcoming GCC8
|
||
|
||
* src/transform.c (_single_transform_name_to_obstack): Mark with
|
||
FALLTHROUGH statement rather than /* FALL THROUGH */ comment.
|
||
Only the former works with gcc-8.
|
||
* src/extract.c (maybe_recoverable): Call abort to tell gcc-8 that
|
||
this code is unreachable.
|
||
|
||
2018-04-07 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Rewrite struct tm formatting
|
||
|
||
* src/list.c (tartime): Use strftime instead of manually
|
||
formatting
|
||
fields of the struct tm. This should also suppress some gcc
|
||
warnings.
|
||
|
||
2018-04-07 Jim Meyering <jim@meyering.net>
|
||
|
||
tests: add coverage for new --zstd and all other compression tools
|
||
|
||
* tests/compress.at.in: New file: template from which each
|
||
per-compression-tool test is derived.
|
||
* tests/Makefile.am (TESTSUITE_AT): Add it.
|
||
(EXTRA_DIST): Add compress.at.in.
|
||
(compress-*.at): New rules to generate a file/tests for each
|
||
compression tool.
|
||
* tests/testsuite.at (Compression): Add each of these generated
|
||
files in a new section.
|
||
* tests/.gitignore: Ignore the new generated files.
|
||
|
||
2018-03-18 Aaron Schrab <aaron@schrab.com>
|
||
|
||
Fix typo
|
||
|
||
2018-03-18 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Version 1.30.90
|
||
|
||
* NEWS: Update.
|
||
* configure.ac: Update.
|
||
* THANKS: Add Adam Borowski.
|
||
|
||
2018-03-18 Adam Borowski <kilobyte@angband.pl>
|
||
|
||
Add support for zstd compression
|
||
|
||
* configure.ac (zstd): Register compression program.
|
||
* doc/tar.1: Mention --zstd.
|
||
* doc/tar.texi: Document zstd support.
|
||
* src/buffer.c: Register zstd compression.
|
||
* src/suffix.c: Add suffixes zst and tzst.
|
||
* src/tar.c: New compression option --zstd.
|
||
|
||
2018-03-18 Pavel Raiskup <praiskup@redhat.com>
|
||
|
||
tests: fix race in dirrem01 and dirrem02
|
||
|
||
Previously the '--checkpoint-action=echo' was triggered after
|
||
'--checkpoint-action=sleep=1' - so the order of events *usually*
|
||
was (for --format='gnu'):
|
||
|
||
...
|
||
1. checkpoint handler before write of 'dir/sub' member
|
||
2. one-second delay
|
||
3. stderr write: 'tar: Write checkpoint 3'
|
||
4. write the member 'dir/sub' into the archive
|
||
5. check that the member's ctime has not been changed
|
||
6. genfile's detecting 'Write checkpoint', doing unlink
|
||
...
|
||
|
||
But sometimes, the genfile was fast enough to win the race and
|
||
unlinked the directory before the member was written into the
|
||
archive (IOW, the order was 1-2-3-6-4-5). This led to the
|
||
occasional warning 'tar: dir/sub: file changed as we read it'.
|
||
|
||
Swap the order of 'sleep=1' and 'echo' actions so the genfile
|
||
utility has (hopefully) enough time to do the unlink before
|
||
writing the file into the archive (enforce 1-2-3-6-4-5 order).
|
||
|
||
* tests/dirrem01.at: Swap 'sleep=1' and 'echo' actions.
|
||
* tests/dirrem02.at: Likewise.
|
||
|
||
2018-03-13 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix typos in the docs
|
||
|
||
2018-03-13 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Provide a way to skip tests that create very large files
|
||
|
||
Define environment variable TARTEST_SKIP_LARGE_FILES=1 in order
|
||
to skip tests that require lots of disk space.
|
||
|
||
* tests/testsuite.at (AT_SKIP_LARGE_FILES): New macro.
|
||
* tests/sparse03.at: Mark test with AT_SKIP_LARGE_FILES.
|
||
* tests/sparse05.at: Likewise.
|
||
* tests/star/pax-big-10g.at: Likewise.
|
||
* tests/star/ustar-big-2g.at: Likewise.
|
||
* tests/star/ustar-big-8g.at: Likewise.
|
||
|
||
2018-03-13 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Testsuite bugfix
|
||
|
||
* tests/difflink.at: Define order of files within tested archive.
|
||
|
||
2018-03-13 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
testsuite: account for absolute file names starting with double
|
||
slash
|
||
|
||
* tests/incr08.at: Absolute file names can start with //
|
||
* tests/xform03.at: Likewise.
|
||
|
||
2017-12-17 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Version 1.30
|
||
|
||
* configure.ac: Set version 1.30
|
||
* NEWS: Update.
|
||
|
||
2017-11-20 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Fix "concatenating" typo.
|
||
|
||
Problem reported by Rodrigo Queiro in:
|
||
https://lists.gnu.org/r/bug-tar/2017-11/msg00021.html
|
||
* doc/intern.texi (Extensions): Fix typo.
|
||
|
||
2017-11-18 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Port to gcc -Wimplicit-fallthrough=5
|
||
|
||
* src/common.h (FALLTHROUGH): New macro, for use with gcc
|
||
-Wimplicit-fallthrough=5, which is now the default when used with
|
||
Gnulib after commit 2017-05-16T16:23:52!eggert@cs.ucla.edu
|
||
and with --enable-gcc-warnings
|
||
|
||
2017-11-18 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Port to Texinfo 6.4
|
||
|
||
* doc/tar.texi (Sparse Recovery): Omit ‘.’ from anchor name,
|
||
as ‘makeinfo’ now complains about it. All uses changed.
|
||
|
||
2017-11-18 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Document base-256 representation in GNU format
|
||
|
||
Problem reported by Rodrigo Queiro in:
|
||
https://lists.gnu.org/r/bug-tar/2017-11/msg00018.html
|
||
* doc/intern.texi (Standard, Extensions):
|
||
Document base-256 representations.
|
||
|
||
2017-11-18 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
build: update gnulib submodule to latest
|
||
|
||
2017-11-18 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Fix typo caught by GCC 7.2.1
|
||
|
||
* lib/wordsplit.c (wordsplit_perror): Add missing "break;".
|
||
|
||
2017-11-16 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Update docs
|
||
|
||
* doc/Makefile.am: Add recipes.texi
|
||
* doc/recipes.texi: New file.
|
||
* doc/tar.texi: New appendix "Recipes"
|
||
|
||
2017-11-16 Pavel Raiskup <praiskup@redhat.com>
|
||
|
||
tests: more deterministic xattr07
|
||
|
||
* tests/xattr07.at: Define order of files within tested archive.
|
||
|
||
2017-11-16 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Minor improvements in the docs.
|
||
|
||
2017-11-16 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
New option --warning=failed-read
|
||
|
||
* NEWS: Document the --warning=failed-read option.
|
||
* doc/tar.texi: Likewise.
|
||
* doc/tar.1: Likewise.
|
||
* src/common.h (WARN_FAILED_READ): New constant.
|
||
(WARNING_ENABLED): New macro.
|
||
* src/misc.c (close_diag, open_diag)
|
||
(read_diag_details, readlink_diag)
|
||
(savedir_diag, seek_diag_details)
|
||
(stat_diag): Suppress warnings if WARN_FAILED_READ is set.
|
||
* src/warning.c (failed-read): New keyword.
|
||
|
||
2017-11-16 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix docs
|
||
|
||
* doc/tar.texi: Fix description of the argument to
|
||
--xattrs-exclude
|
||
and --xattrs-include option. It is a globbing pattern, not
|
||
a regex.
|
||
|
||
Fix a typo (LZOP)
|
||
|
||
2017-11-16 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix the --delay-directory-restore option
|
||
|
||
* src/extract.c (find_direct_ancestor): New function.
|
||
(create_placeholder_file): Set after_links member on
|
||
delayed_set_stat
|
||
entries starting from the direct ancestor of the placeholder file.
|
||
|
||
* tests/extrac21.at: New testcase.
|
||
* tests/testsuite.at: Add extrac21
|
||
* tests/Makefile.am: Likewise.
|
||
|
||
* NEWS: Update.
|
||
|
||
2017-11-09 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix reporting of hardlink mismatch during compare
|
||
|
||
* src/common.h (quote_n_colon): New prototype.
|
||
* src/misc.c (quote_n_colon): New function.
|
||
* src/compare.c (report_difference, diff_link): Use quote_n_colon.
|
||
|
||
* tests/difflink.at: New file.
|
||
* tests/Makefile.am: Add difflink.at
|
||
* tests/testsuite.at: Likewise.
|
||
|
||
2017-11-09 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix --verbatim-files-from
|
||
|
||
* src/names.c (read_next_name): Don't unquote name read from the
|
||
file, if --verbatim-files-from option is in effect.
|
||
(names_options): improve description of --verbatim-files-from
|
||
* tests/T-null2.at: Test the change.
|
||
|
||
2017-11-09 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix typo
|
||
|
||
* doc/tar.texi
|
||
|
||
2017-09-30 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix the effect of --transform over hard link targets without
|
||
the --absolute-names
|
||
|
||
* src/create.c (file_count_links): Apply safer_name_suffix to the
|
||
hard link name prior to transforming it.
|
||
* tests/xform03.at: New test case.
|
||
* tests/Makefile.am: Add xform03.at
|
||
* tests/testsuite.at: Likewise.
|
||
|
||
2017-08-24 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Bugfix
|
||
|
||
* src/tar.c (tar_help_filter): Add missing break statement
|
||
|
||
2017-06-29 Troels Thomsen <troels@thomsen.io>
|
||
|
||
Fix typo
|
||
|
||
2017-05-29 Pavel Raiskup <praiskup@redhat.com>
|
||
|
||
Fix non-deterministic archive type detection
|
||
|
||
Due to analysis of partly uninitialized read-ahead buffer
|
||
(short_read call), we sometimes mistakenly classified very small
|
||
compressed archives as non-compressed; which in turn caused
|
||
extraction failure.
|
||
|
||
* src/buffer.c (check_compressed_archive): Don't assume that
|
||
archives smaller than BLOCKSIZE could be non-compressed, as tar
|
||
header always has at least one block.
|
||
|
||
2017-05-29 Jonas Julino <ml-julino@1und1.de>
|
||
Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix handling of directories removed during incremental tar run
|
||
|
||
* paxutils: Upgrade
|
||
* src/create.c (create_archive): Use file_removed_diag
|
||
instead of calling the corresponding *_diag function
|
||
directly.
|
||
* tests/dirrem01.at: New testcase.
|
||
* tests/dirrem02.at: New testcase.
|
||
* tests/Makefile.am: Add new tests.
|
||
* tests/testsuite.at: Likewise.
|
||
|
||
2017-05-29 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix a bug in multi-volume archive creation.
|
||
|
||
When creating multivolume archives, the bufmap code in buffer.c
|
||
implicitly assumed that the members are stored in the archive
|
||
contiguously, ignoring the member (and eventual extended) headers
|
||
between them. This worked until the member header happened to be
|
||
at the very beginning of the volume, in which case its length was
|
||
included in the calculation of the stored size and size left to
|
||
store. Due to this, the GNUFileParts extended header contained
|
||
invalid GNU.volume.offset value, and the resulting archive failed
|
||
to extract properly.
|
||
|
||
This patch also eliminates improper listing of file part headers
|
||
as regular files, when creating multivolume posix archives
|
||
with -v.
|
||
|
||
* src/buffer.c (bufmap): New member nblocks. Counts number
|
||
of blocks
|
||
of file data written since reset.
|
||
(bufmap_reset): Reset nblocks to 0.
|
||
(_flush_write): Update nblocks. When computing offset difference
|
||
for
|
||
bufmap_reset, count only data blocks, not headers.
|
||
(close_archive): Flush archive until all blocks are written.
|
||
(add_chunk_header): Use simple_finish_header instead of
|
||
finish_header
|
||
to avoid listing chunk header as regular file in verbose mode.
|
||
* tests/multiv10.at: New test case.
|
||
* tests/Makefile.am: Add new test.
|
||
* tests/testsuite.at: Add new test.
|
||
|
||
2017-04-07 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
--numeric-owner now affects private headers too
|
||
|
||
Problem reported by Daniel Peebles in:
|
||
http://lists.gnu.org/archive/html/bug-tar/2017-04/msg00004.html
|
||
* NEWS: Document this.
|
||
* src/create.c (write_gnu_long_link): If --numeric-owner,
|
||
leave the user and group empty in a private header. Cache the
|
||
names for 0.
|
||
|
||
2017-02-28 Pavel Raiskup <praiskup@redhat.com>
|
||
|
||
Test and document --keep-directory-symlink
|
||
|
||
* doc/tar.1: Document the option.
|
||
* tests/extrac20.at: New testcase.
|
||
* tests/Makefile.am: Mention extrac20.
|
||
* tests/testsuite.at: Likewise.
|
||
|
||
2017-02-14 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Fix incompatibility with PGI 16.10
|
||
|
||
* src/tar.c (options): Fix incompatibility with the C standard,
|
||
which says that arguments to macro calls cannot contain #
|
||
directives.
|
||
|
||
2017-01-02 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Update copyright years
|
||
|
||
2016-11-12 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix description of the "escape" quoting style
|
||
|
||
2016-11-12 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Better error checking in the backup script.
|
||
|
||
* scripts/backup.in: Check exit code of MT_BEGIN
|
||
* scripts/backup.sh.in (backup_host): Return meaningful code
|
||
in case of remote execution. See the comment, though.
|
||
|
||
2016-11-12 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Minor documentation fix
|
||
|
||
* doc/tar.texi: Fix example about use of --no-recursion with -T
|
||
|
||
2016-11-12 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix the --add-file option.
|
||
|
||
* src/common.h (name_more_files): New proto.
|
||
(files_from_option): Remove.
|
||
* src/names.c (name_more_files): New file.
|
||
(names_options): Fix declaration of the
|
||
add-file option.
|
||
(names_parse_opt): Handle --add-file.
|
||
* src/tar.c (struct tar_args): Remove the input_files member.
|
||
Change all uses: use name_more_files() instead.
|
||
* tests/Makefile.am: Add new test.
|
||
* tests/add-file.at: New testcase.
|
||
* tests/testsuite.at: Add new test.
|
||
|
||
2016-11-11 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Add missing files
|
||
|
||
2016-11-11 Pavel Raiskup <praiskup@redhat.com>
|
||
|
||
don't set xattrs when --skip-old-files is used
|
||
|
||
* src/extract.c (set_xattr): Properly handle maybe_recoverable()
|
||
output. Throw warnings to not complicate caller.
|
||
(extract_file): Don't handle set_xattr's error.
|
||
* tests/xattr07.at: New testcase.
|
||
* tests/Makefile.am: Mention new testcase.
|
||
* tests/testsuite.at: Likewise.
|
||
* THANKS: Dawid.
|
||
|
||
2016-11-11 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Minor fix
|
||
|
||
* src/tar.h (tar_stat_info): Change type of real_size_set to bool
|
||
|
||
2016-11-11 Pavel Raiskup <praiskup@redhat.com>
|
||
|
||
sparse: fix pax extraction for unicode filenames
|
||
|
||
Make sure that 'GNU.sparse.name' header has higher priority than
|
||
(for sparse-purposes artificially modified) 'path' pax header.
|
||
|
||
Historically, the 'GNU.sparse.name' header comes before 'path';
|
||
this caused that modified 'path' header won and that is not what
|
||
we want in sparse "capable" tar implementation.
|
||
|
||
* src/tar.h (tar_stat_info): New argument sparse_name_done.
|
||
* src/xheader.c (raw_path_decoder): Move here the unconditional
|
||
code from path_decoder.
|
||
(path_decoder): Apply raw_path_decoder only if sparse_path_decoder
|
||
was not yet called.
|
||
(sparse_path_decoder): New wrapper around raw_path_decoder.
|
||
* tests/sparse07.at: New testcase.
|
||
* tests/testsuite.at: Mention new testcase.
|
||
* tests/Makefile.am: Likewise.
|
||
|
||
2016-11-10 Pavel Raiskup <praiskup@redhat.com>
|
||
|
||
* tests/xattr06.at: Test include/exclude during archive/exctract.
|
||
|
||
2016-11-10 Ian McLeod <imcleod@redhat.com>
|
||
|
||
Bugfix - fix xattr exclude/include for archive create
|
||
|
||
This makes archive create behavior consistent with the
|
||
documentation. Without this change xattr include/exclude options
|
||
are accepted when creating an archive but are silently ignored.
|
||
|
||
* src/xattrs.c (xattrs_xattrs_get): Apply exclude/include mask
|
||
when fetching extended attributes
|
||
* tests/Makefile.am: Add new test case.
|
||
* tests/testsuite.at: Likewise.
|
||
|
||
2016-10-30 Paul Eggert <eggert@Penguin.CS.UCLA.EDU>
|
||
|
||
When extracting, skip ".." members
|
||
|
||
* NEWS: Document this.
|
||
* src/extract.c (extract_archive): Skip members whose names
|
||
contain "..".
|
||
|
||
2016-09-26 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Mark all tests related to -C option with the "chdir" keyword
|
||
|
||
2016-09-26 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix interaction of -u with -C
|
||
|
||
* src/update.c (update_archive): Pass correct change_dir
|
||
value for addname
|
||
* tests/update03.at: New file.
|
||
* tests/Makefile.am: Add update03.at
|
||
* tests/testsuite.at: Include update03.at
|
||
|
||
2016-09-21 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix passing string values via TAR_OPTIONS
|
||
|
||
* src/tar.c (parse_default_options): Don't free parsed words.
|
||
* tests/options03.at: New testcase.
|
||
* tests/Makefile.am: Add options03.at
|
||
* tests/testsuite.at: Include options03.at
|
||
|
||
2016-05-28 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Tiny bugfix
|
||
|
||
2016-05-27 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Report positional options that were used but had no effect during
|
||
archive creation
|
||
|
||
* src/names.c (file_selection_option)
|
||
(file_selection_option_name): New functions.
|
||
(unconsumed_option_push, unconsumed_option_free)
|
||
(unconsumed_option_report): New functions.
|
||
(name_list_advance): Maintain a list
|
||
of eventually unconsumed options during archive creation.
|
||
Report unconsumed options, if any.
|
||
|
||
* tests/positional01.at: New test case.
|
||
* tests/positional02.at: New test case.
|
||
* tests/positional03.at: New test case.
|
||
* tests/Makefile.am: Add new test cases.
|
||
* tests/testsuite.at: Likewise.
|
||
|
||
* NEWS: Document the changes.
|
||
* configure.ac: Version 1.29.90
|
||
* doc/tar.texi: Document the changes.
|
||
|
||
2016-05-16 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Version 1.29
|
||
|
||
2016-05-16 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Minor fix
|
||
|
||
* src/names.c (new_name): rename to make_file_name. All uses
|
||
changed.
|
||
|
||
2016-04-14 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix argument handling when running external commands.
|
||
|
||
* src/system.c (xexec): Use sh -c to run the command. This fixed
|
||
bug introduced by 7b5e80396 (tar 1.27)
|
||
* doc/tar.texi: Fix checkpoint examples: (1) $TAR_FILENAME
|
||
is not available when creating archive and (2) --checkpoint
|
||
can't be used as abbreviation of --checkpoint-action
|
||
|
||
2016-04-06 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Remove iotty test
|
||
|
||
The auxiliary utility ttyemu proved to be unreliable.
|
||
Given existing
|
||
differences between pty implementations and termios ioctls
|
||
on various
|
||
platforms, writing it in a portable way requires effort
|
||
disproportional
|
||
to its actual purpose.
|
||
|
||
* configure.ac: Remove check for grantpt
|
||
* gnulib.modules: Remove posix_openpt, ptsname, and unlockpt
|
||
* tests/Makefile.am (TESTSUITE_AT): Remove iotty.at
|
||
(check_PROGRAMS): Remove ttyemu.
|
||
* tests/testsuite.at: Remove iotty.at
|
||
* tests/iotty.at: Remove.
|
||
* tests/ttyemu.c: Remove.
|
||
|
||
2016-04-05 Pavel Raiskup <praiskup@redhat.com>
|
||
|
||
xattrs: fix build on Darwin
|
||
|
||
Be careful to define HAVE_XATTRS when not all needed xattr-related
|
||
functions are properly defined either in libc or libattr.
|
||
|
||
Reported independently by Denis Excoffier and Dominyk Tille.
|
||
|
||
* acinclude.m4 (TAR_HEADERS_ATTR_XATTR_H): Check for each xattr
|
||
function separately. Don't AC_CHECK_LIB (LIBS is filled by
|
||
AC_SEARCH_LIBS when necessary).
|
||
* src/Makefile.am: The LDADD -lattr was redundant.
|
||
|
||
2016-03-24 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Remove --preserve option
|
||
|
||
* src/tar.c: Remove --preserve option
|
||
* NEWS: Update.
|
||
* doc/tar.texi: Update.
|
||
|
||
2016-03-24 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix testcase
|
||
|
||
* tests/time02.at: Sort tar -d output
|
||
|
||
2016-03-24 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Update THANKS file
|
||
|
||
2016-03-24 Jeremy Bobbio <lunar@debian.org>
|
||
|
||
New option --clamp-mtime
|
||
|
||
The new `--clamp-mtime` option will change the behavior of
|
||
`--mtime` to only
|
||
use the time specified if the file mtime is newer than the
|
||
given time.
|
||
The `--clamp-mtime` option can only be used together with
|
||
`--mtime`.
|
||
|
||
Typical use case is to make builds reproducible: to loose less
|
||
information, it's better to keep the original date of an archive,
|
||
except for
|
||
files modified during the build process. In that case, using
|
||
a reference
|
||
(and thus reproducible) timestamps for the latter is good
|
||
enough. See
|
||
<https://wiki.debian.org/ReproducibleBuilds> for more information.
|
||
|
||
Patch submitted by Jeremy Bobbio and
|
||
Daniel Kahn Gillmor <dkg@fifthhorseman.net>
|
||
|
||
* doc/tar.1: Document --clamp-mtime
|
||
* doc/tar.texi: Likewise.
|
||
|
||
* src/common.h (set_mtime_option_mode): New enum
|
||
(set_mtime_option): Change type to enum set_mtime_option_mode.
|
||
(NEWER_OPTION_INITIALIZED): Rename to NEWER_OPTION_INITIALIZED.
|
||
* src/create.c (start_header): Set mtime depending on
|
||
set_mtime_option.
|
||
* src/tar.c (options,parse_opt): New option --clamp-mtime
|
||
(decode_options): Initialize mtime_option
|
||
|
||
* tests/time02.at: New testcase.
|
||
* tests/Makefile.am: Add new testcase
|
||
* tests/testsuite.at: Likewise.
|
||
|
||
2016-03-21 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Acknowledgments
|
||
|
||
* THANKS: Add Dagobert Michelsen
|
||
|
||
2016-03-21 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix the testsuite
|
||
|
||
* tests/sparse06.at: Don't use timeout: depending on the
|
||
filesystem
|
||
mounted, current LA and lots of other factors, creation of
|
||
archive can
|
||
take much more time than the expected 2 seconds.
|
||
|
||
2016-03-21 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix ckmtime
|
||
|
||
* gnulib.modules: Use timespec-sub
|
||
* tests/ckmtime.c: Use second resolution.
|
||
|
||
2016-03-20 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix the testsuite
|
||
|
||
* tests/sparse05.at: Use autom4te magic to generate mapfile,
|
||
instead of the shell command seq, which is not always available.
|
||
* tests/listed03.at: Skip the test if xgetcwd fails.
|
||
* tests/ckmtime.c: New file.
|
||
* tests/Makefile.am: Build ckmtime
|
||
* tests/testsuite.at (AT_CHECK_TIMESTAMP): Check whether newly
|
||
created
|
||
files have timestamps consistent with the creation time.
|
||
Skip the test
|
||
if not.
|
||
* tests/incr01.at: Use AT_CHECK_TIMESTAMP
|
||
* tests/incr02.at: Likewise.
|
||
* tests/incr03.at: Likewise.
|
||
* tests/incr04.at: Likewise.
|
||
* tests/incr05.at: Likewise.
|
||
* tests/incr06.at: Likewise.
|
||
* tests/incr07.at: Likewise.
|
||
* tests/incr08.at: Likewise.
|
||
* tests/incr09.at: Likewise.
|
||
* tests/incr10.at: Likewise.
|
||
* tests/incr11.at: Likewise.
|
||
* tests/incremental.at: Likewise.
|
||
* tests/listed01.at: Likewise.
|
||
* tests/listed02.at: Likewise.
|
||
* tests/listed04.at: Likewise.
|
||
* tests/listed05.at: Likewise.
|
||
|
||
2016-03-18 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Testsuite fixes.
|
||
|
||
* paxutils: Update.
|
||
* src/unlink.c (flush_deferred_unlinks): OpenSolaris sets EEXIST
|
||
instead of ENOTEMPTY if trying to remove a non-empty directory.
|
||
* tests/numeric.at: Avoid using awk -v: some older awks don't
|
||
support
|
||
that option. Also fix environment variable usage.
|
||
* tests/onetop05.at: Skip test if unable to set initial directory
|
||
mode bits.
|
||
* tests/sparse06.at: Use --quiet option.
|
||
|
||
2016-03-18 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Revise docs
|
||
|
||
2016-03-18 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix build with --enable-gcc-warnings
|
||
|
||
* configure.ac: Disable stack-protector warnings
|
||
|
||
2016-03-17 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Improve testsuite
|
||
|
||
* tests/iotty.at: Skip test if ttyemu can't do its job
|
||
|
||
2016-03-16 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Document xattrs, ACL and SELinux-related options.
|
||
|
||
* doc/tar.1: Document all options.
|
||
* doc/tar.texi: Likewise.
|
||
|
||
2016-03-15 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix appending to archive with changed blocking factor.
|
||
|
||
* src/buffer.c (flush_archive): If previous reading attempt
|
||
resulted
|
||
in short read, correctly use the remaining record space.
|
||
(backspace_output): Fix position calculation (still has to be
|
||
improved).
|
||
|
||
* tests/append05.at: New test case.
|
||
* tests/Makefile.am: Add new test.
|
||
* tests/testsuite.at: Likewise.
|
||
|
||
2016-03-14 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix coredump on parsing invalid traditional option
|
||
|
||
* src/tar.c (find_argp_option): Fix loop termination condition.
|
||
|
||
2016-01-20 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Update copyright years
|
||
|
||
2016-01-20 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Allow escaped delimiters in transform expressions.
|
||
|
||
Patch provided by Charles McGarvey and Flavio Poletti.
|
||
|
||
* src/transform.c (parse_transform_expr): Allow escaped delimiters
|
||
in transform expressions.
|
||
* tests/xform02.at: New test case.
|
||
* tests/Makefile.am: Add xform02.at
|
||
* tests/testsuite.at: Include xform02.at
|
||
* THANKS: Update.
|
||
|
||
2015-12-17 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix eventual dereference of uninitialized pointer.
|
||
|
||
* src/exclist.c (hg_initfn): Initialize hgopt.
|
||
|
||
2015-12-17 Pavel Raiskup <praiskup@redhat.com>
|
||
|
||
sparse: fix use of indeterminate value
|
||
|
||
* src/xheader.c (sparse_map_decoder): Move 'e' up from loop-block.
|
||
|
||
2015-12-11 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
fix a typo
|
||
|
||
* doc/tar.texi (Incremental Dumps): Add missing --file to the
|
||
'--list' example.
|
||
|
||
2015-12-11 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Minor fixes.
|
||
|
||
* doc/tar.texi: Document position-sensitive options in a
|
||
separate subsection.
|
||
* src/names.c (names_argp,names_argp_children): Explicitly
|
||
initialize
|
||
all members.
|
||
|
||
2015-12-11 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Minor fix
|
||
|
||
2015-12-11 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix handling of filename-selection options.
|
||
|
||
Filename-selection options are --wildcards, --recursive, etc. (see
|
||
names.c for a complete list). These options are
|
||
position-sensitive,
|
||
i.e. each such option affects all filenames and filename-selection
|
||
options that appear after it until eventually cancelled by a
|
||
corresponding counterpart option.
|
||
|
||
These options can appear in "file-from" file lists, which
|
||
means that
|
||
they cannot be handled right away, but instead should be put on
|
||
the "name_elt" list and processed sequentionally, as file name
|
||
arguments
|
||
are.
|
||
|
||
* src/common.h (warn_regex_usage): Remove.
|
||
(name_add_name): Change signature.
|
||
(name_add_dir, name_add_file): Remove prototypes.
|
||
* src/names.c (name_add_option, name_add_dir)
|
||
(name_add_file): Static functions.
|
||
(names_options, is_file_selection_option, names_parse_opt):
|
||
Static functions.
|
||
(names_argp_children): New variable.
|
||
(NELT_NAME, NELT_CHDIR)
|
||
(NELT_FILE, NELT_NOOP): Redefine as enum nelt_type.
|
||
(NELT_FMASK): Remove.
|
||
(NELT_OPTION): New constant.
|
||
(name_elt) <type>: Change type.
|
||
<v.opt>: New member.
|
||
(name_elt_alloc_matflags): Remove.
|
||
(name_add_name): Take one argument.
|
||
(name_add_option): New static function.
|
||
(name_add_file): Take one argument.
|
||
(read_next_name): Use filename_terminator and
|
||
verbatim_files_from_option to initialize file.term and
|
||
file.verbatim.
|
||
* src/tar.c: Move handling of filename-selection options to
|
||
names.c
|
||
|
||
* tests/T-dir00.at: Fix typo.
|
||
* tests/T-recurse.at: Remove expected failure.
|
||
|
||
2015-12-10 Pavel Raiskup <praiskup@redhat.com>
|
||
|
||
better test --{,no-}recursion options
|
||
|
||
* tests/recurs02.at: Also test --list mode.
|
||
* tests/T-recurse.at: New test case. Test that -T option works
|
||
correctly together with --{,no-}recursion.
|
||
* tests/Makefile.am: Mention new test T-recurse.at.
|
||
* tests/testsuite.at: Likewise.
|
||
|
||
2015-12-06 Pavel Raiskup <praiskup@redhat.com>
|
||
|
||
Bugfix
|
||
|
||
* src/buffer.c (try_new_volume): Warn if user supplied malformed
|
||
tar archive.
|
||
Consistently use WARN (instead of ERROR) when reporting.
|
||
|
||
2015-12-06 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix segfault when extracting from a multi-volume archive.
|
||
|
||
Fix suggested by Pavel Raiskup.
|
||
|
||
* src/buffer.c (try_new_volume): Fix dereferencing NULL pointer.
|
||
* tests/multiv09.at: New testcase.
|
||
* tests/Makefile.am: Add new testcase.
|
||
* tests/testsuite.at: Likewise.
|
||
|
||
2015-12-06 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix NEWS
|
||
|
||
2015-12-06 Pavel Raiskup <praiskup@redhat.com>
|
||
|
||
numeric-owner: print big UID/GID correctly
|
||
|
||
* src/list.c (simple_print_header): Do not parse ustar header
|
||
for UID/GID again (tar_stat_info has already been correctly
|
||
filled with respect to possible uid/gid extended headers).
|
||
* tests/numeric.at: New testcase for --numeric-owner option.
|
||
* tests/Makefile.am: Add new testcase.
|
||
* tests/testsuite.at: Likewise.
|
||
|
||
2015-12-06 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Use SEEK_HOLE for hole detection
|
||
|
||
Based on patch by Pavel Raiskup.
|
||
|
||
Use SEEK_HOLE/SEEK_DATA feature of lseek on systems that support
|
||
it. This can make archiving of sparse files much faster.
|
||
|
||
Implement the --hole-detection option to allow users to select
|
||
hole-detection method.
|
||
|
||
* src/common.h (hole_detection_method): New enum.
|
||
(hole_detection): New global.
|
||
* src/sparse.c (sparse_scan_file_wholesparse): New function as a
|
||
method for detecting sparse files without any data.
|
||
(sparse_scan_file_raw): Rename from sparse_scan_file; with edits.
|
||
(sparse_scan_file_seek): New function.
|
||
(sparse_scan_file): Reimplement function.
|
||
* src/tar.c: New option --hole-detection
|
||
|
||
* tests/checkseekhole.c: New file.
|
||
* tests/.gitignore: Mention two test binaries.
|
||
* tests/Makefile.am: Add new tests.
|
||
* tests/testsuite.at (AT_SEEKHOLE_PREREQ): New macro.
|
||
Include sparse06.at.
|
||
* tests/sparse06.at: New test case.
|
||
* tests/sparse02.at: Force raw hole-detection method.
|
||
* tests/sparsemv.at: Likewise.
|
||
* tests/sparsemvp.at: Likewise.
|
||
|
||
* doc/tar.1: Document --hole-detection option.
|
||
* doc/tar.texi: Document hole-detection algorithms and
|
||
command-line options.
|
||
* NEWS: Document hole-detection.
|
||
|
||
2015-12-05 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Catch compressor execution errors.
|
||
|
||
* src/misc.c (write_fatal_details): Move to buffer.c
|
||
* src/buffer.c (write_fatal_details): Close the archive and
|
||
wait for
|
||
the compressor program to terminate in order to catch eventual
|
||
execution
|
||
errors.
|
||
* src/system.c (sys_child_open_for_compress): Ignore SIGPIPE so
|
||
tar will
|
||
not silently terminate when unable to write to the compressor.
|
||
* tests/comperr.at: New file.
|
||
* tests/Makefile.am: Add comperr.at
|
||
* tests/testsuite.at: Include comperr.at
|
||
|
||
2015-12-05 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Upgrade paxutils
|
||
|
||
2015-11-29 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix extraction from concatenated incremental archives with
|
||
renamed directories.
|
||
|
||
Complements 15c02c2b.
|
||
|
||
* src/extract.c (delayed_set_stat): Change type of file_name.
|
||
(delay_set_stat): Allocate file_name member.
|
||
(free_delayed_set_stat): Free file_name.
|
||
(fixup_delayed_set_stat): New function.
|
||
(rename_directory): Call fixup_delayed_set_stat on success.
|
||
|
||
* tests/incr11.at: New testcase.
|
||
* tests/incr10.at: Improve description.
|
||
* tests/Makefile.am: Add incr11.at
|
||
* tests/testsuite.at: Add incr11.at
|
||
|
||
2015-11-21 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix bug in the inplementation of --one-top-level.
|
||
|
||
When extracting an archive that contains './' with the
|
||
--one-top-level option,
|
||
the mode and ownership of '.' would be incorrectly applied to
|
||
the current
|
||
working directory, instead of the requested top-level directory.
|
||
|
||
* src/list.c (enforce_one_top_level): Map '.' to the top-level
|
||
directory.
|
||
* tests/Makefile.am: Add onetop05.at
|
||
* tests/testsuite.at: Include onetop05.at.
|
||
* tests/onetop05.at: New file.
|
||
* tests/onetop01.at: Fix keywords.
|
||
* tests/onetop02.at: Likewise.
|
||
* tests/onetop03.at: Likewise.
|
||
* tests/onetop04.at: Likewise.
|
||
|
||
2015-11-11 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Work around unlinkat bug on FreeBSD and GNU/Hurd
|
||
|
||
* src/unlink.c (dunlink_insert): New function.
|
||
(flush_deferred_unlinks): Skip cwds and nonempty directories
|
||
at the first pass. If force is requested, run a second pass
|
||
removing them.
|
||
(queue_deferred_unlink): Make sure current working directory
|
||
entries are sorted in descending order by the value of dir_idx.
|
||
This makes sure they will be removed in right order, which works
|
||
around unlinkat bug on FreeBSD and GNU/Hurd.
|
||
* tests/remfiles08b.at: Remove expected failure.
|
||
* tests/remfiles09b.at: Likewise.
|
||
|
||
2015-11-10 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix coredump on FreeBSD when TAR_OPTIONS is set
|
||
|
||
* src/tar.c (parse_default_options): Use program_name instead of
|
||
program_invocation_short_name. On some systems the latter is
|
||
NULL when
|
||
the function is called, which causes coredumps.
|
||
(tar_set_quoting_style): Likewise.
|
||
* src/names.c: Likewise.
|
||
|
||
2015-11-02 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Use sort in T-dir tests.
|
||
|
||
2015-11-02 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix distclean in tests/
|
||
|
||
* tests/Makefile.am: Remove "download"
|
||
|
||
2015-11-02 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
New options: --owner-map and --group-map.
|
||
|
||
* NEWS: Update.
|
||
* doc/tar.1: Document --owner-map and --group-map
|
||
* doc/tar.texi: Likewise.
|
||
|
||
* src/map.c: New file.
|
||
* src/Makefile.am: Add map.c
|
||
* src/common.h (owner_map_read, owner_map_translate)
|
||
(group_map_read, group_map_translate): New protos.
|
||
* src/create.c (start_header): Use owner_map_translate
|
||
and group_map_translate to optionally translate user/group
|
||
names/ids.
|
||
* src/tar.c: New options --owner-map and --group-map.
|
||
|
||
* tests/map.at: New file.
|
||
* tests/Makefile.am: Add map.at
|
||
* tests/testsuite.at: Include map.at.
|
||
|
||
2015-09-24 Kir Kolyshkin <kir@openvz.org> (tiny change)
|
||
|
||
doc: fix font and spelling typos
|
||
|
||
* doc/tar.1: Fix font and spelling typos in man page.
|
||
|
||
2015-09-24 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Fix problems caught by static checking
|
||
|
||
Most of these can be caught by configuring with
|
||
--enable-gcc-warnings.
|
||
Problem reported by Pavel Raiskup in:
|
||
http://lists.gnu.org/archive/html/bug-tar/2015-09/msg00001.html
|
||
* src/buffer.c (format_total_stats):
|
||
Prefer pointer to const when it’s OK to use const.
|
||
(default_total_format): Now const.
|
||
* src/buffer.c (default_total_format):
|
||
* src/exclist.c (excfile_head, excfile_tail, vcs_ignore_files):
|
||
* src/misc.c (namebuf_add_dir, namebuf_finish):
|
||
* src/tar.c (verbatim_files_from_option, option_set_in_cl)
|
||
(optloc_eq, set_old_files_option):
|
||
Now static.
|
||
* src/common.h: Adjust to match the other changes described here.
|
||
* src/exclist.c (info_cleanup_exclist):
|
||
* src/tar.c (argp_program_version, argp_program_bug_address):
|
||
Remove; unused.
|
||
(parse_default_options): Define via prototype instead of old
|
||
style.
|
||
(parse_default_options, decode_options):
|
||
Fill out incomplete initializers.
|
||
|
||
2015-08-31 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Improve option sanity checking
|
||
|
||
Any two conflicting options are reported only if they both
|
||
occur in
|
||
the command line. Otherwise, options defined in the command line
|
||
silently override those set in the TAR_OPTIONS environment
|
||
variable.
|
||
|
||
* src/common.h (option_source): New enum.
|
||
(option_locus): New struct.
|
||
* src/names.c (name_elt): New member: line.
|
||
(name_add_file): Initialize line.
|
||
(read_name_from_file): Keep track of input line number for
|
||
diagnostic
|
||
purposes.
|
||
(handle_option): Take a pointer to struct name_elt as 2nd
|
||
parameter;
|
||
pass locus info to more_options().
|
||
* src/tar.c (tar_args): New member: loc.
|
||
(option_class): New enum.
|
||
(optloc_save,optloc_lookup)
|
||
(option_set_in_cl,optloc_eq): New functions.
|
||
(set_use_compress_program_option): Take into account option
|
||
location.
|
||
(set_old_files_option): New function.
|
||
(parse_opt): Keep track of option locations.
|
||
(more_options): Improve error reporting.
|
||
(parse_default_options): New function.
|
||
(decode_options): Parse TAR_OPTION and command line separately.
|
||
Options from the latter silently override those from the former.
|
||
|
||
* lib/prepargs.c: Remove.
|
||
* lib/prepargs.h: Remove.
|
||
* lib/Makefile.am: Update.
|
||
|
||
2015-08-24 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Improve check-full
|
||
|
||
* tests/atlocal.in: Download external archives to
|
||
$abs_builddir/download.
|
||
(tarball_prereq): Create destination directory if necessary.
|
||
* tests/.gitignore: Add download
|
||
|
||
2015-08-24 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix check-full
|
||
|
||
* tests/atlocal.in (TAR_DATA_URL): Berlios is dead. Get
|
||
test archives from gnu.org.ua
|
||
|
||
2015-08-24 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Include gnulib and paxutils as submodules.
|
||
|
||
* .gitmodules: New file.
|
||
* README-alpha: Update.
|
||
* README-hacking: Update.
|
||
* bootstrap: Install slightly modified version from the gnulib
|
||
repo.
|
||
* bootstrap.conf: Add paxutils-related stuff.
|
||
* .gitignore: Update.
|
||
* doc/.gitignore: Update.
|
||
* po/.gitignore: Update.
|
||
* gnu/Makefile.am
|
||
|
||
2015-08-24 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Update docs.
|
||
|
||
* doc/tar.1: Document --verbatim-files-from option.
|
||
|
||
2015-08-20 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Add missing VCS files to --exclude-vcs list
|
||
|
||
* src/tar.c (vcs_file_table): Add .gitmodules and .gitattributes
|
||
* doc/tar.texi: Update.
|
||
|
||
2015-08-03 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Options to control option handling in file lists.
|
||
|
||
The --verbatim-files-from option disables option handling in
|
||
file lists. The --no-verbatim-files-from reverts its effect.
|
||
|
||
The --null option implies --verbatim-files-from. This restores
|
||
the documented behavior, broken by 26538c9b.
|
||
|
||
* src/common.h (verbatim_files_from_option): New global.
|
||
* src/names.c (name_elt): New member: file.verbatim
|
||
(name_add_file): Take 'verbatim' state as its third parameter.
|
||
(read_next_name): Don't call handle_option if file.verbatim
|
||
is set.
|
||
* src/tar.c: New options --verbatim-files-from and
|
||
--no-verbatim-files-from.
|
||
|
||
* doc/tar.texi: Document --verbatim-files-from and
|
||
--no-verbatim-files-from options.
|
||
* NEWS: Update.
|
||
* configure.ac: Version 1.28.90
|
||
|
||
* tests/T-null2.at: New testcase.
|
||
* tests/Makefile.am: Update.
|
||
* tests/testsuite.at: Update.
|
||
|
||
2015-07-25 Anders Jonsson <anders.jonsson@norsjovallen.se> (tiny
|
||
change)
|
||
|
||
Fix typos (preceeded etc.)
|
||
|
||
2015-07-13 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: fix symlink race and symlink transform bug
|
||
|
||
Problem reported by Tobias Stoeckmann in:
|
||
http://lists.gnu.org/archive/html/bug-tar/2015-07/msg00004.html
|
||
* gnulib.modules: Add areadlinkat-with-size.
|
||
* src/create.c: Include areadlink.h.
|
||
(dump_file0): Use areadlinkat_with_size, rather than trying to do
|
||
it by hand, incorrectly. This also avoids assumption that
|
||
the symlink contents fit on the stack. Also, use the transformed
|
||
link name, not the original link name, when deciding whether the
|
||
name is long enough to require writing a long link.
|
||
|
||
2015-07-13 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: port -d to longer symlinks
|
||
|
||
* src/compare.c (diff_symlink):
|
||
Don't use alloca on symlink length; it might be too big for
|
||
the stack.
|
||
Don't assume that readlinkat's return value fits in 'int'.
|
||
Prefer memcmp to strncmp where either will do.
|
||
|
||
2015-07-13 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: port to recent gnulib
|
||
|
||
* gnulib.modules: Remove 'acl' and add 'file-has-acl'.
|
||
|
||
2015-07-13 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: pacify GCC 5.1 -Wformat-signedness
|
||
|
||
* lib/wordsplit.c (struct wordsplit_node.flags):
|
||
Now unsigned, so that 'printf ("%x", p->flags)' doesn't provoke
|
||
GCC.
|
||
* src/incremen.c (read_num, dumpdir_ok):
|
||
Don't printf an int with %x or %o.
|
||
|
||
2015-04-16 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix extraction from concatenated incremental archives.
|
||
|
||
* src/common.h (remove_delayed_set_stat): New proto.
|
||
* src/extract.c (free_delayed_set_stat)
|
||
(remove_delayed_set_stat): New function.
|
||
(apply_nonancestor_delayed_set_stat): Use free_delayed_set_stat.
|
||
* src/misc.c (safer_rmdir): Remove delayed_set_stat entry
|
||
corresponding to the removed directory.
|
||
* tests/incr10.at: New test case.
|
||
* tests/Makefile.am: Add new test.
|
||
* tests/testsuite.at: Likewise.
|
||
|
||
2015-04-10 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix make installcheck
|
||
|
||
Make installcheck would fail unless make check had been run
|
||
before it.
|
||
Reported by Erik Brangs <erik.brangs@gmx.de>
|
||
|
||
* tests/Makefile.am (installcheck-local): Depend on
|
||
$(check_PROGRAMS)
|
||
|
||
2015-03-18 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: don't assume GZIP
|
||
|
||
* Makefile.am (dist-hook): Port to gzip implementations that
|
||
warn about nontrivial settings in the GZIP environment var.
|
||
|
||
2015-03-17 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: don't suggest GZIP
|
||
|
||
* doc/tar.texi (gzip): Don't suggest using the GZIP environment
|
||
variable, as it will be deprecated in the next gzip release.
|
||
|
||
2015-02-19 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Improve compression format recognition
|
||
|
||
Some comressed archives can pass the checksum test, which
|
||
makes tar
|
||
treat them as uncompressed archives.
|
||
|
||
* src/buffer.c (check_compressed_archive): Test the checksum only
|
||
if the block we read looks like a valid tar header (i.e. has
|
||
a magic string).
|
||
|
||
2015-01-06 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: port xattr-at.c to Solaris 10
|
||
|
||
* lib/xattr-at.c (setxattrat, lsetxattrat, getxattrat,
|
||
lgetxattrat)
|
||
(listxattrat, llistxattrat): Compile only if HAVE_XATTRS, so that
|
||
the code doesn't call functions that are not declared.
|
||
|
||
2015-01-06 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: port wordsplit attribute to Sun C
|
||
|
||
Reported by Ted Carr in:
|
||
http://lists.gnu.org/archive/html/bug-tar/2015-01/msg00002.html
|
||
* lib/wordsplit.h (__WORDSPLIT_ATTRIBUTE_FORMAT):
|
||
New macro, taken from Gnulib.
|
||
(struct wordsplit): Use it.
|
||
* lib/wordsplit.c (_wsplt_error): Use it.
|
||
|
||
2014-12-17 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Silent a cc warning
|
||
|
||
* src/xheader.c (xheader_string_end): Make sure pointer
|
||
arithmetics applies on char*.
|
||
|
||
2014-12-12 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: port ISFOUND, WASFOUND to C89
|
||
|
||
Problem reported by Romano Maspero in:
|
||
http://lists.gnu.org/archive/html/bug-tar/2014-12/msg00010.html
|
||
* src/common.h (ISFOUND, WASFOUND): Port to C89.
|
||
|
||
2014-12-10 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix tar -c -l file file
|
||
|
||
When the same file is added several times to the archive, count
|
||
correctly the number of hard links. See also 37ddfb0b.
|
||
|
||
* src/create.c (dump_hard_link): Don't decrease nlink if it is 0.
|
||
* tests/link04.at: Test -cl options.
|
||
|
||
2014-11-07 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Honor the pax-option overrides when creating archive.
|
||
|
||
Changes proposed by Denis Excoffier.
|
||
|
||
* NEWS: Fix typos.
|
||
* doc/tar.texi: Fix typos. Improve recipe for creation of binary
|
||
equivalent archives.
|
||
* src/create.c (write_extended): Use the value of the
|
||
--mtime option (if specified) as the default for exthdr.mtime.
|
||
* src/xheader.c (xheader_store): Create the header if at least
|
||
one override is supplied in --pax-option.
|
||
|
||
2014-11-07 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Add testcase for the previous commit.
|
||
|
||
* tests/sparse05.at: New file.
|
||
* tests/Makefile.am: Add sparse05.at
|
||
* tests/testsuite.at: Include sparse05.at
|
||
|
||
2014-11-07 Pavel Raiskup <praiskup@redhat.com>
|
||
|
||
Fix bug in sparse file listing
|
||
|
||
List posix archives containing sparse files >8GB correctly and
|
||
do not fail.
|
||
This fixes also bug in format of listing for sparse files >8GB -
|
||
now the
|
||
real size is printed instead of the effective one (this is
|
||
not strictly
|
||
posix format related).
|
||
|
||
* src/list.c: Remove redundant assignment.
|
||
* src/tar.h: Add new 'real_size' and 'real_size_set' fields in
|
||
tar_stat_info struct.
|
||
* src/xheader.c: Correctly handle (especially sparse) file sizes
|
||
directly in
|
||
xheader_decode().
|
||
|
||
2014-10-15 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix a typo
|
||
|
||
2014-10-01 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix README
|
||
|
||
Remove the reference to PORTS
|
||
|
||
2014-09-25 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Bugfixes.
|
||
|
||
* doc/tar.1: Fix typo in font spec.
|
||
* src/tar.c (sort_mode_arg, sort_mode_flag): Protect "inode"
|
||
(SAVEDIR_SORT_INODE) with D_INO_IN_DIRENT
|
||
|
||
2014-09-18 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Bugfix: entries read from the -T file did not get proper
|
||
matching_flag.
|
||
|
||
* src/common.h (name_add_file): Change signature.
|
||
* src/names.c (name_elt_alloc_matflags): New function.
|
||
(name_add_name): Use name_elt_alloc_matflags.
|
||
(name_add_file): Take matching flags as third argument.
|
||
(read_next_name): Remove trailing slashes.
|
||
* src/tar.c (parse_opt): Pass matching_flags to name_add_file.
|
||
|
||
* tests/T-dir00.at: New file.
|
||
* tests/T-dir01.at: New file.
|
||
* tests/Makefile.am: Add new testcases.
|
||
* tests/testsuite.at: Likewise.
|
||
|
||
2014-08-16 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Improve documentation.
|
||
|
||
* doc/tar.1: Document --skip-old-files and --warning=existing-file
|
||
* doc/tar.texi: Document --warning=existing-file
|
||
|
||
2014-07-27 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Version 1.28
|
||
|
||
2014-07-27 Nathan Stratton Treadway <nathanst@ontko.com>
|
||
|
||
Minor change in docstrings. nor ch#
|
||
|
||
Restructure the remfiles testsuite.
|
||
|
||
2014-07-22 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Don't build ttyemu and run tty I/O test if grantpt is not
|
||
available.
|
||
|
||
* configure.ac (TAR_COND_GRANTPT): Define conditional depending
|
||
on whether grantpt is available.
|
||
* gnulib.modules: Remove grantpt. It relies upon a helper binary
|
||
pt_chown which it installs and which is useless in the testsuite.
|
||
* tests/Makefile.am [TAR_COND_GRANTPT]: Build ttyemu
|
||
* tests/iotty.at: Skip test if ttyemu is not build.
|
||
* tests/ttyemu.c (noecho): Fix error message
|
||
(main): Use TIOCSCTTY if it is defined.
|
||
|
||
2014-07-22 Benno Schulenberg <bensberg@justemail.net>
|
||
|
||
Fix a typo and some wordings in the documentation.
|
||
|
||
* doc/tar.texi: Fix some missing articles, and make it clearer
|
||
that "any" does not mean "anything" but "either of the two".
|
||
|
||
2014-07-22 Nathan Stratton Treadway <nathanst@ontko.com>
|
||
|
||
Fix the testsuite
|
||
|
||
* tests/incr07.at: Don't assume case-sensitive filesystem.
|
||
|
||
2014-07-11 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: minor fixups related to recent checkpoint.c change
|
||
|
||
* src/checkpoint.c (getwidth, format_checkpoint_string):
|
||
Use long and strtol, not int, to avoid overflow issues.
|
||
(getwidth): Don't assume termios.h defines TIOCGWINSZ,
|
||
as it doesn't on some older hosts.
|
||
|
||
2014-07-11 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Bugfixes
|
||
|
||
* gnulib.modules: Add faccessat
|
||
* src/checkpoint.c: Include termios.h
|
||
|
||
2014-06-29 Nathan Stratton Treadway <nathanst@ontko.com>
|
||
|
||
tar: document xgetcwd test case better
|
||
|
||
* src/misc.c (normalize_filename): Add commentary for clarity.
|
||
* tests/extrac09.at: Retitle test case and add comments for
|
||
clarity.
|
||
|
||
2014-06-24 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix typos in ChangeLog
|
||
|
||
* ChangeLog.CVS: Fix typos.
|
||
* ChangeLog.amend: New file.
|
||
* Makefile.am: Define changelog_amend_file.
|
||
|
||
2014-04-30 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: do not dereference NULL pointer with '--remove-files .'
|
||
|
||
Problem reported by Thorsten Hirsch in:
|
||
http://lists.gnu.org/archive/html/bug-tar/2014-04/msg00011.html
|
||
* src/unlink.c (flush_deferred_unlinks):
|
||
Do not attempt to find the parent of "." when "." is
|
||
at the top level.
|
||
* tests/remfiles10.at: New file.
|
||
* tests/Makefile.am (TESTSUITE_AT):
|
||
* tests/testsuite.at: Add it.
|
||
|
||
2014-03-27 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Refuse to write archive contents to a tty.
|
||
|
||
* NEWS: Update.
|
||
* src/buffer.c (_open_archive): Refuse to write to a tty.
|
||
* tests/iotty.at: Test output to a tty.
|
||
|
||
2014-03-26 Vitezslav Cizek <vcizek@suse.cz>
|
||
|
||
fix an eternal loop in handle_option
|
||
|
||
* src/names.c (handle_option): increment loop counter
|
||
|
||
2014-03-20 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fail if archive comes from a terminal.
|
||
|
||
Based on patch from Pavel Raiskup <praiskup@redhat.com>.
|
||
|
||
* gnulib.modules: Add new modules.
|
||
* src/buffer.c (_open_archive): Refuse to read archive from a tty.
|
||
* tests/Makefile.am (TESTSUITE_AT): Add iotty.at
|
||
(check_PROGRAMS): New program ttyemu
|
||
* tests/testsuite.at: Include iotty.at
|
||
* tests/iotty.at: New file.
|
||
* tests/ttyemu.c: New file.
|
||
|
||
2014-03-13 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: port to Solaris 9
|
||
|
||
Problem reported by Jesse C in:
|
||
http://lists.gnu.org/archive/html/bug-tar/2014-03/msg00034.html
|
||
* gnulib.modules: Add strtoimax and strtoumax, since tar invokes
|
||
these functions directly and they don't exist on Solaris 9.
|
||
|
||
2014-02-25 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Test the --[no-]recursive options (see commit 2bd9c153).
|
||
|
||
* tests/recurs02.at: New test case.
|
||
* tests/Makefile.am: Add new file.
|
||
* tests/testsuite.at: Add new file.
|
||
|
||
2014-02-22 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Support exclusion patterns from various VCS ignore lists.
|
||
|
||
* src/Makefile.am (tar_SOURCES): Add exclist.c
|
||
* src/common.h (EXCL_DEFAULT, EXCL_RECURSIVE)
|
||
(EXCL_NON_RECURSIVE): New flags.
|
||
(excfile_add, info_attach_exclist)
|
||
(info_cleanup_exclist,info_free_exclist)
|
||
(exclude_vcs_ignores): New prototypes.
|
||
* src/create.c (dump_dir0): Call info_attach_exclist.
|
||
* src/exclist.c: New file.
|
||
* src/incremen.c (scan_directory): Call info_attach_exclist.
|
||
* src/names.c (excluded_name): Moved to exclist.c. Change
|
||
signature.
|
||
All uses updated.
|
||
* src/tar.c: New options: --exclude-ignore,
|
||
--exclude-ignore-recursive
|
||
and --exclude-vcs-ignores.
|
||
(tar_stat_destroy): Free exclist.
|
||
* src/tar.h (tar_stat_info): New member exclude_list.
|
||
|
||
* NEWS: Document new exclusion options.
|
||
* doc/tar.texi: Likewise.
|
||
* doc/tar.1: Likewise.
|
||
|
||
2014-02-14 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix in testsuite
|
||
|
||
* acls03.at: Fix improper invocation of setfacl.
|
||
|
||
2014-02-14 Pavel Raiskup <praiskup@redhat.com>
|
||
|
||
testsuite: add test for buggy default ACLs
|
||
|
||
* tests/Makefile.am: Mention acls03.at.
|
||
* tests/testsuite.at: Likewise.
|
||
* tests/acls03.at: New testcase.
|
||
|
||
2014-02-14 Pavel Raiskup <praiskup@redhat.com>
|
||
|
||
acls: bugfix for default ACLs extraction
|
||
|
||
When --acls option is on (regardless of tarball contents or
|
||
tarball format), we should explicitly set OR delete default ACLs
|
||
for extracted directories. Prior to this update, we always
|
||
created arbitrary default ACLs based standard file permissions.
|
||
|
||
* configure.ac (with_posix_acls): Check also for acl_free and
|
||
acl_delete_def_file to mark IEEE 1003.1e ACLs as supported.
|
||
* src/xattrs.c (acl_delete_def_file_at): New function.
|
||
(xattrs__acls_set): Do not treat acls_option at all; Delete
|
||
default ACLs if appropriate.
|
||
|
||
References:
|
||
http://www.mail-archive.com/bug-tar@gnu.org/msg04355.html
|
||
Thanks: Juan J. Martínez and Mark Steinborn
|
||
|
||
2014-02-14 Pavel Raiskup <praiskup@redhat.com>
|
||
|
||
tar: imply --xattrs when --xattrs-{inc,exc}lude used
|
||
|
||
Options --xattrs-include=MASK and --xattrs-exclude=MASK now turn
|
||
on the --xattrs option.
|
||
|
||
Fix also bug in printing in xattrs.c - don't print when option is
|
||
negative.
|
||
|
||
* src/tar.c (set_xattr_option): New static function.
|
||
(parse_opt): Call new function when --xatrrs, --xattrs-include or
|
||
--xattrs-exclude option is used.
|
||
* src/xattrs.c (xattrs_print, xattrs_print_char): Expect positive
|
||
values in options.
|
||
|
||
2014-02-14 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
THANKS: Add Anthony G. Basile.
|
||
|
||
2014-02-14 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Use correct headers/libraries when providing xattr support
|
||
|
||
See https://savannah.gnu.org/patch/index.php?8252. Patch provided
|
||
by Anthony G. Basile.
|
||
|
||
* acinclude.m4 (TAR_HEADERS_ATTR_XATTR_H): Look for <sys/xattr.h>
|
||
first and then for <attr/xattr.h>. Link against libattr.so if
|
||
needed.
|
||
* lib/xattr-at.h: Include sys/xattr.h or attr/xattr.h, depending
|
||
on which one is detected.
|
||
* src/Makefile.am [TAR_LIB_ATTR] (tar_LDADD): Link against -lattr.
|
||
|
||
2014-02-14 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Minor change
|
||
|
||
* src/tar.c (decode_options): Silently ignore --one-top-level
|
||
if used with a non-reading command.
|
||
|
||
2014-02-14 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
New option --sort=ORDER
|
||
|
||
This option makes tar sort the entries of directories that will be
|
||
added to an archive according to ORDER (none, name, or inode).
|
||
|
||
Based on proposition by Dick Streefland
|
||
(https://savannah.gnu.org/patch/?7892).
|
||
|
||
* src/common.h (savedir_sort_order): New global.
|
||
* src/create.c: Pass savedir_sort_order to streamsavedir.
|
||
* src/misc.c: Likewise.
|
||
* src/tar.c: New option --sort.
|
||
|
||
* NEWS: Update.
|
||
* doc/tar.texi: Document the --sort option.
|
||
* doc/tar.1: Likewise.
|
||
|
||
2014-02-13 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix the testsuite
|
||
|
||
* tests/opcomp01.at: Update expected error messages.
|
||
* tests/opcomp03.at: Likewise.
|
||
|
||
2014-02-13 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix --one-top-level used together with --list.
|
||
|
||
* src/extract.c: Move one_top_level stuff to tar.c
|
||
(decode_options).
|
||
* src/tar.c (option_conflict_error): New function.
|
||
(decode_options): Use option_conflict_error to complain about
|
||
conflicting options in a uniform manner.
|
||
Process one_top_level options here.
|
||
(request_stdin): Fix error message.
|
||
* tests/onetop04.at: New testcase: check --one-top-level with
|
||
--list.
|
||
* tests/Makefile.am: Add new testcase.
|
||
* tests/testsuite.at: Add new testcase.
|
||
|
||
2014-02-13 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix NEWS
|
||
|
||
* NEWS: Remove duplicate description of the --one-top-level
|
||
option.
|
||
|
||
2014-02-12 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
configure.ac: look for host-prefixed ar
|
||
|
||
See https://savannah.gnu.org/patch/?8183
|
||
|
||
2014-02-10 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Bugfix
|
||
|
||
* src/suffix.c (find_compression_suffix): Fix eventual coredump.
|
||
|
||
2014-02-10 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix docs.
|
||
|
||
2014-02-10 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Update docs.
|
||
|
||
* NEWS: Document --one-top-level
|
||
* THANKS: Mention Connor Behan
|
||
|
||
2014-01-30 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Update copyright years.
|
||
|
||
2014-01-28 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Improve one-top-level functionality
|
||
|
||
Make sure the changes become visible with
|
||
--show-transformed-names.
|
||
|
||
* src/common.h (strip_compression_suffix): New function.
|
||
(one_top_level): Rename to one_top_level_dir. All uses changed.
|
||
* src/extract.c (extr_init): Use strip_compression_suffix.
|
||
Bail out if unable to determine top-level directory.
|
||
(maybe_prepend_name): Remove. All uses removed.
|
||
* src/tar.c (options): --one-top-level takes optional argument.
|
||
(parse_opt): Handle it.
|
||
* src/list.c (enforce_one_top_level): New function.
|
||
(transform_stat_info): Call enforce_one_top_level if required.
|
||
* src/suffix.c (compression_suffixes): List "tar" (no
|
||
compression);
|
||
terminate with NULL entry.
|
||
(find_compression_suffix): New static.
|
||
(strip_compression_suffix): New function.
|
||
|
||
* doc/tar.1: Update.
|
||
* doc/tar.texi: Update.
|
||
|
||
* tests/onetop01.at: New testcase.
|
||
* tests/onetop02.at: New testcase.
|
||
* tests/onetop03.at: New testcase.
|
||
* tests/Makefile.am: Add new testcases.
|
||
* tests/testsuite.at: Likewise.
|
||
|
||
2014-01-27 Connor Behan <connor.behan@gmail.com>
|
||
|
||
Detect tarbombs while extracting
|
||
|
||
* src/common.h (one_top_level_option): New global.
|
||
(one_top_level): New global.
|
||
* src/extract.c (extr_init): If one_top_level_option is set,
|
||
determine
|
||
the name one_top_level that might have to be prepended.
|
||
(extract_archive): If one_top_level_option is set, prepend
|
||
one_top_level
|
||
to all names that don't already start with it.
|
||
* src/tar.c (ONE_TOP_LEVEL_OPTION): New content.
|
||
(options): New option --one-top-level.
|
||
(parse_opt): Handle this option.
|
||
(decode_options): Make it conflict with --absolute-names.
|
||
|
||
2014-01-27 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Don't install rmt.8 if rmt is not built.
|
||
|
||
* doc/Makefile.am [PU_RMT_COND]: Define RMT_8
|
||
(dist_man_MANS): use RMT_8 instead of the hardcoded rmt.8
|
||
|
||
2014-01-27 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Provide tar(1) and rmt(8) manpages.
|
||
|
||
* NEWS: Update.
|
||
* doc/Makefile.am: Add manpages.
|
||
* doc/tar.1: New file.
|
||
|
||
* src/tar.c (tar_help_filter): Handle LZOP_OPTION.
|
||
|
||
2014-01-23 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Make sure transformed file names retain trailing slash in listing.
|
||
|
||
* src/list.c (simple_print_header): Print trailing slash
|
||
if using the transformed name.
|
||
Use had_trailing_slash instead of analyzing last byte if temp_name
|
||
|
||
2014-01-22 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
checkpoint actions: further improvements.
|
||
|
||
* NEWS: Update.
|
||
* doc/tar.texi: Update.
|
||
* src/buffer.c (print_stats): Avoid use of additional string
|
||
buffer.
|
||
Allow for text to be NULL.
|
||
Call gettext if it is not.
|
||
(format_total_stats): Don't use gettext when calling print_stats.
|
||
* src/checkpoint.c (def_format): Change default format.
|
||
(format_checkpoint_string): Implement optional arguments for
|
||
T conversion.
|
||
(finish_checkpoint_actions): Rename to checkpoint_flush_actions,
|
||
make extern. All uses changed.
|
||
* src/common.h (checkpoint_flush_actions): New proto.
|
||
* src/tar.c (main): Set error_hook
|
||
|
||
2014-01-22 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Improve checkpoint interface.
|
||
|
||
* src/buffer.c (format_total_stats): The format arg is const
|
||
All uses updated.
|
||
(default_total_format): const
|
||
* src/checkpoint.c (tty, tty_cleanup): New static.
|
||
(format_checkpoint_string): New "canned" format %c
|
||
(checkpoint_finish): New function.
|
||
* src/common.h (checkpoint_finish): New proto.
|
||
* src/tar.c (main): Call checkpoint_finish.`
|
||
|
||
2014-01-21 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Implement statistics display in checkpoint actions.
|
||
|
||
* NEWS: Update.
|
||
* configure.ac: Version 1.27.90
|
||
* gnulib.modules: Add fprintftime.
|
||
* doc/tar.texi: Document the "totals" action and new format
|
||
specifiers
|
||
for echo and ttyout checkpoint actions.
|
||
* src/buffer.c (compute_duration): Return computed value.
|
||
(print_stats): Don't print trailing newline. Return number of
|
||
characters output.
|
||
(format_total_stats): New function.
|
||
(print_total_stats): Rewrite via format_total_stats.
|
||
* src/checkpoint.c (checkpoint_opcode) <cop_totals>: New opcode.
|
||
(checkpoint_compile_action): Handle cop_totals.
|
||
(expand_checkpoint_string): Remove.
|
||
(format_checkpoint_string): New function to be used instead of
|
||
expand_checkpoint_string. All callers updated.
|
||
* src/common.h (TF_READ,TF_WRITE)
|
||
(TF_DELETED): New constants.
|
||
(format_total_stats,print_total_stats): New protos.
|
||
|
||
2014-01-10 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Remove shar archives from distribution.
|
||
|
||
These are going to phase out in automake 2.0
|
||
|
||
2014-01-10 Sergey Poznyakoff <gray@gnu.org>
|
||
|
||
Fix the use of --no-recursion and --recursion options.
|
||
|
||
Each option remains in effect until cancelled by the next
|
||
occurrence
|
||
of its counterpart, as stated in the documentation.
|
||
|
||
* src/names.c (name_next_elt): Restore recursion_option from the
|
||
value of matching_flags.
|
||
|
||
2014-01-09 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Minor bugfixes
|
||
|
||
* src/compare.c (diff_dumpdir): Close descriptor if fstat failed.
|
||
(diff_multivol): Make sure the descriptor is closed and eventual
|
||
errors reported if lseek fails.
|
||
Both reported by Jiri Kukacka.
|
||
|
||
2014-01-07 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: work around IBM XL C bug
|
||
|
||
* src/incremen.c (show_snapshot_field_ranges)
|
||
(write_directory_file_entry): Use simpler array size expression,
|
||
one that evaluates to the same value. This works around
|
||
a compiler
|
||
bug with IBM XL C. Problem reported by Yannick Bergeron in
|
||
<http://lists.gnu.org/archive/html/bug-tar/2014-01/msg00009.html>.
|
||
|
||
2014-01-03 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: update ancient configure cruft
|
||
|
||
* configure.ac: Use AC_PROG_CC_STDC, not just AC_PROG_CC.
|
||
Remove obsolete macros AC_ISC_POSIX, AC_HEADER_SYS_WAIT,
|
||
AC_HEADER_DIRENT, AC_HEADER_STAT, AC_HEADER_STDC, AC_TYPE_SIGNAL,
|
||
AC_TYPE_SIZE_T.
|
||
* lib/prepargs.c (IN_CTYPE_DOMAIN): Remove. All uses removed.
|
||
* src/list.c (from_header): Use isspace, not ISSPACE.
|
||
* src/system.c (pipe_handler, sys_exec_info_script):
|
||
* src/tar.c (sigstat):
|
||
Use void, not RETSIGTYPE.
|
||
|
||
2013-11-17 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Version 1.27.1
|
||
|
||
2013-11-17 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix star compatibility (sparse headers)
|
||
|
||
* src/sparse.c (star_get_sparse_info): Update file->dumped_size
|
||
|
||
2013-11-17 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix GNU long link header.
|
||
|
||
* src/create.c (write_gnu_long_link): Set timestamp to
|
||
0 for backward compatibility. Bug reported by David Barri.
|
||
* THANKS: Update.
|
||
|
||
2013-11-17 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix unquoting of input file names.
|
||
|
||
* src/names.c (read_next_name): Unquote file names coming from the
|
||
-T argument. Bug reported by Nicolas Dudebout.
|
||
* THANKS: Update.
|
||
|
||
2013-10-24 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
build: fix bug where 'configure --with-posix-acls' disables ACLs
|
||
|
||
Reported by Lars Wendler in
|
||
<http://lists.gnu.org/archive/html/bug-tar/2013-10/msg00022.html>.
|
||
* configure.ac (with_posix_acls): Fix typo.
|
||
|
||
2013-10-23 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Fix core dump on Solaris 10 when "." isn't readable.
|
||
|
||
Reported by Peter Kruse in
|
||
<http://lists.gnu.org/archive/html/bug-tar/2013-10/msg00017.html>.
|
||
This doesn't fix all the Solaris 10 test failures, just the
|
||
core dump.
|
||
* src/common.h, src/misc.c (tar_getcdpath): Now static.
|
||
* src/misc.c (normalize_filename): Report a fatal error
|
||
if cdpath is null, since we don't know the absolute name
|
||
of the working directory in that case. FIXME: there should
|
||
be no need to know absolute file names.
|
||
(chdir_arg): Simplify wd allocation.
|
||
Don't assume that xgetcwd returns non-null.
|
||
|
||
2013-10-06 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Version 1.27
|
||
|
||
* NEWS: Update.
|
||
* configure.ac: Update.
|
||
|
||
2013-10-06 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Minor fixes.
|
||
|
||
* src/names.c: Include argp.h
|
||
* tests/testsuite.at (AT_XATTRS_UTILS_PREREQ)
|
||
(AT_SELINUX_UTILS_PREREQ,AT_ACLS_UTILS_PREREQ)
|
||
(AT_CAPABILITIES_UTILS_PREREQ)
|
||
(AT_XATTRS_PREREQ,AT_SELINUX_PREREQ)
|
||
(AT_ACLS_PREREQ): Use POSIX-compatible syntax for
|
||
mktemp.
|
||
* tests/incr08.at: Fix find usage.
|
||
|
||
2013-10-05 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Xfail the remfiles09b test.
|
||
|
||
* tests/remfiles09b.at: Turn into expected failure.
|
||
|
||
2013-10-05 Nathan Stratton Treadway <nathanst@ontko.com>
|
||
|
||
Tiny change
|
||
|
||
* scripts/tar-snapshot-edit: Mention --show-snapshot-field-ranges
|
||
option
|
||
|
||
2013-10-05 Pavel Raiskup <praiskup@redhat.com>
|
||
|
||
Tiny change
|
||
|
||
* configure.ac (RSH): Define as AC_ARG_VAR.
|
||
|
||
2013-10-05 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix namespace contamination in testsuite.
|
||
|
||
* tests/append01.at: Use m4_pushdef/m4_popdef to define local
|
||
macros.
|
||
* tests/delete03.at: Likewise.
|
||
* tests/exclude06.at: Likewise.
|
||
* tests/incr04.at: Likewise.
|
||
* tests/link03.at: Likewise.
|
||
* tests/long01.at: Likewise.
|
||
* tests/longv7.at: Likewise.
|
||
* tests/lustar01.at: Likewise.
|
||
* tests/lustar02.at: Likewise.
|
||
* tests/lustar03.at: Likewise.
|
||
* tests/multiv05.at: Likewise.
|
||
* tests/sparse04.at: Likewise.
|
||
|
||
2013-10-05 Nathan Stratton Treadway <nathanst@ontko.com>
|
||
|
||
Provide comprehensive testcases for various file removal modes.
|
||
|
||
* tests/Makefile.am: Add new testcases.
|
||
* tests/testsuite.at: Likewise.
|
||
* tests/incr09.at: Add description.
|
||
* tests/remfiles04a.at: New file.
|
||
* tests/remfiles05.at: Rename to ...
|
||
* tests/remfiles04b.at: ... this.
|
||
* tests/remfiles04.at: Rename to ...
|
||
* tests/remfiles04c.at: ... this.
|
||
* tests/remfiles05a.at: New file.
|
||
* tests/remfiles05b.at: New file.
|
||
* tests/remfiles06.at: Rename to ...
|
||
* tests/remfiles05c.at: ... this.
|
||
* tests/remfiles06a.at: New file.
|
||
* tests/remfiles06b.at: New file.
|
||
* tests/remfiles06c.at: New file.
|
||
* tests/remfiles07a.at: New file.
|
||
* tests/remfiles07b.at: New file.
|
||
* tests/remfiles07c.at: New file.
|
||
* tests/remfiles08a.at: New file.
|
||
* tests/remfiles08b.at: New file.
|
||
* tests/remfiles08c.at: New file.
|
||
* tests/remfiles08.at: Rename to ...
|
||
* tests/remfiles09a.at: ... this.
|
||
* tests/remfiles09b.at: New file.
|
||
* tests/remfiles07.at: Rename to ...
|
||
* tests/remfiles09c.at: ... this.
|
||
|
||
2013-10-03 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Tiny changes.
|
||
|
||
* src/misc.c: Fix comments, rename wd.cwd to wd.abspath (Nathan
|
||
Stratton
|
||
Treadway);
|
||
* src/tar.c (options): Reword description of the --starting-file
|
||
and
|
||
--preserve-order options.
|
||
(decode_options): Both --starting-file and --preserve-order
|
||
have meaning
|
||
only when used together with an archive reading command. (Pavel
|
||
Raiskup).
|
||
|
||
2013-10-01 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Revamp tar_getcwd/normalize_filename stuff.
|
||
|
||
The changes are based on the discussion with Nathan.
|
||
|
||
* src/common.h (normalize_filename): Take two arguments. All
|
||
callers updated.
|
||
(tar_getcwd): Replaced with ..
|
||
(tar_getcdpath): New proto.
|
||
* src/misc.c (normalize_filename): Take two arguments.
|
||
(chdir_arg): Populate cwd along with creating the
|
||
structure.
|
||
(tar_getcwd): Removed.
|
||
(tar_getcdpath): New function.
|
||
|
||
* tests/incr09.at: New test case.
|
||
* tests/Makefile.am: Add new tests.
|
||
* tests/testsuite.at: Likewise.
|
||
|
||
2013-09-27 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Bugfix
|
||
|
||
* tests/remfiles08.at: Restore missing find
|
||
|
||
2013-09-26 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Use relative addressing in deferred unlinks.
|
||
|
||
* src/common.h (tar_dirname): New function.
|
||
* src/misc.c (normalize_filename_x): Make extern.
|
||
(tar_dirname): New function.
|
||
(tar_getcwd): Take into account absolute pathnames.
|
||
* src/unlink.c (deferred_unlink) <dir_idx>: New member; keeps the
|
||
value of chdir_current at the moment of structure allocation.
|
||
(flush_deferred_unlinks): Use chdir_do and relative addressing.
|
||
(queue_deferred_unlink): Initialize dir_idx.
|
||
* tests/Makefile.am: Add new tests.
|
||
* tests/testsuite.at: Add new tests.
|
||
* tests/remfiles06.at: Fix description.
|
||
* tests/remfiles07.at: Fix description.
|
||
* tests/remfiles08.at: New test case.
|
||
|
||
2013-09-25 Nathan Stratton Treadway <nathanst@ontko.com>
|
||
|
||
Improve tar-snapshot-edit
|
||
|
||
Support architecture-specific field ranges for the "-c" function.
|
||
Better handle negative or larger-than-32-bit field values even
|
||
when running in 32-bit Perl (for the default "print a summary"
|
||
function)
|
||
|
||
2013-09-25 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Improve tar_getcwd
|
||
|
||
* src/common.h (tar_getcwd): Return pointer is const.
|
||
* src/misc.c (wd) <cwd>: New member.
|
||
(chdir_arg): Initialize cwd.
|
||
(tar_getcwd): Use cwd member to cache the result. Take into
|
||
account absolute pathnames,
|
||
(normalize_filename): Don't free the value
|
||
returned from tar_getcwd.
|
||
* src/names.c (name_next_elt): Remove leftover call chdir().
|
||
* tests/Makefile.am: Add new tests.
|
||
* tests/testsuite.at: Likewise.
|
||
|
||
* tests/incr08.at: New testcase.
|
||
* tests/remfiles04.at: New testcase.
|
||
* tests/remfiles05.at: New testcase.
|
||
* tests/remfiles06.at: New testcase.
|
||
* tests/remfiles07.at: New testcase.
|
||
|
||
2013-09-24 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix normalize_filename.
|
||
|
||
The function did not take into account eventual -C options, which
|
||
in particular led to various problems when using -C and
|
||
--remove-files
|
||
together.
|
||
|
||
* src/common.h (namebuf_add_dir,namebuf_finish)
|
||
(tar_getcwd): New prototypes.
|
||
* src/misc.c (namebuf_add_dir,namebuf_finish)
|
||
(tar_getcwd): New functions.
|
||
(normalize_filename): Use tar_getcwd.
|
||
|
||
2013-09-23 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Changes for compatibility with Slackware installation scripts.
|
||
|
||
* src/buffer.c (short_read): the "Record size" message
|
||
is controlled by the WARN_RECORD_SIZE warning_option bit.
|
||
* src/common.h (keep_directory_symlink_option): New global.
|
||
(WARN_RECORD_SIZE): New constant.
|
||
(WARN_VERBOSE_WARNINGS): Add WARN_RECORD_SIZE.
|
||
* src/extract.c (extract_dir): If keep_directory_symlink_option is
|
||
set, follow symlinks to directories.
|
||
* src/suffix.c (compression_suffixes): Add support for txz
|
||
suffix.
|
||
* src/tar.c (KEEP_DIRECTORY_SYMLINK_OPTION): New constant.
|
||
(options): New option --keep-directory-symlink.
|
||
(parse_opt): Handle this option.
|
||
* src/warning.c: Implement "record-size" warning control.
|
||
|
||
* NEWS: Update.
|
||
* doc/tar.texi: Document new features.
|
||
|
||
2013-09-21 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix error message (complements 0ea6e686)
|
||
|
||
* src/tar.c (set_subcommand_option): Mention --delete in the
|
||
error message.
|
||
|
||
2013-09-15 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Improve the incr07 test
|
||
|
||
2013-09-15 Nathan Stratton Treadway <nathanst@ontko.com>
|
||
|
||
Implement the --show-snapshot-field-ranges option
|
||
|
||
* src/common.h (show_snapshot_field_ranges): New prototype.
|
||
* src/incremen.c (show_snapshot_field_ranges): New function.
|
||
* src/tar.c: New option --show-snapshot-field-ranges.
|
||
* doc/snapshot.texi: Document the --show-snapshot-field-ranges
|
||
option.
|
||
* doc/tar.texi: Likewise.
|
||
|
||
2013-09-15 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Take into account chdir_fd when extracting from incremental dumps.
|
||
|
||
* src/common.h (tar_savedir): New prototype.
|
||
* src/misc.c (tar_savedir): New function.
|
||
(remove_any_file): Use tar_savedir.
|
||
* src/incremen.c (try_purge_directory): Use tar_savedir.
|
||
* src/update.c (update_archive): Use tar_savedir.
|
||
* tests/incr07.at: New testcase.
|
||
* tests/Makefile.am (TESTSUITE_AT): Add new test.
|
||
* tests/testsuite.at: Likewise.
|
||
* THANKS: Updated.
|
||
|
||
2013-09-15 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Minor fix
|
||
|
||
* src/tar.c (main): Mention --delete in the error message.
|
||
* THANKS: Update
|
||
|
||
2013-09-13 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* src/names.c (file_list_name): Properly prototype.
|
||
|
||
2013-09-13 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: don't warn about zero timestamps
|
||
|
||
* src/extract.c (check_time): Suppress warning when t.tv_sec == 0.
|
||
Problem reported by Denis Excoffier.
|
||
|
||
2013-08-19 Pavel Raiskup <praiskup@redhat.com>
|
||
|
||
Minor fix in the testsuite.
|
||
|
||
* tests/T-cd.at: sort the 'tar cf' output.
|
||
|
||
2013-08-17 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Improve error diagnostics
|
||
|
||
* src/names.c (file_list_name): New static function.
|
||
(add_file_id): If a filelist is being read twice, print the names
|
||
of the files that caused it.
|
||
* tests/T-rec.at: New test case.
|
||
* tests/Makefile.am: Add new file.
|
||
* tests/testsuite.at: Include new file.
|
||
|
||
2013-08-16 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Revamp initial name collection functions to ensure proper
|
||
argument ordering.
|
||
|
||
* src/names.c (NELT_NOOP): New constant
|
||
(name_elt) <next,prev>: New members.
|
||
(name_array,allocated_entries,entries,scanned): Remove.
|
||
(check_name_alloc): Remove function.
|
||
(name_elt_alloc): New static.
|
||
(name_list_adjust,name_list_advance): New functions.
|
||
(name_add_name,name_add_dir)
|
||
(name_add_file): Use new allocation functions.
|
||
(read_next_name): Advance list head pointer as necessary
|
||
before returning.
|
||
(name_next_elt): Read elements from list.
|
||
* tests/T-cd.at: New file.
|
||
* tests/T-mult.at: New file.
|
||
* tests/T-nest.at: New file.
|
||
* tests/Makefile.am: Add new testcases.
|
||
* tests/testsuite.at: Likewise.
|
||
|
||
2013-08-16 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Don't treat attempts to read an already read file list as
|
||
fatal errors.
|
||
|
||
* src/names.c (add_file_id): Report error and return 1 if the file
|
||
has already been read.
|
||
(read_next_name): Don't try to open file if add_file_id returns 1.
|
||
(name_next_elt): Simplify conditional.
|
||
|
||
2013-08-16 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Minor change.
|
||
|
||
* src/names.c (name_next_elt): Simplify conditional.
|
||
|
||
2013-08-15 Pavel Raiskup <praiskup@redhat.com>
|
||
|
||
Fix use of uninitialized memory
|
||
|
||
* src/names.c (name_add_file): Initialize the ep->v.file.fp
|
||
pointer
|
||
after structure allocation.
|
||
|
||
2013-08-05 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Minor changes
|
||
|
||
* src/names.c (handle_option): Use program_invocation_short_name
|
||
instead of the constant string.
|
||
(read_next_name): Remove unused variable.
|
||
|
||
2013-08-04 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Update the docs.
|
||
|
||
* doc/tar.texi: Parsing of the options found in the file list
|
||
follows the same rules as for command line. Remove the obsolete
|
||
description. This complements 26538c9b.
|
||
|
||
2013-08-04 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix interaction of --verbose and --append.
|
||
|
||
* src/buffer.c (_open_archive): don't overwrite existing archive
|
||
if given the --verify option.
|
||
* tests/append04.at: New file.
|
||
* tests/Makefile.am: Add new testcase.
|
||
* tests/testsuite.at: Add new testcase.
|
||
* THANKS: Update.
|
||
|
||
2013-08-04 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Bugfix.
|
||
|
||
* src/names.c (read_name_from_file): Fix a typo. Remove
|
||
unused variable.
|
||
|
||
2013-08-04 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Reduce memory consumption when handling the -T option.
|
||
|
||
The commit cdb27293 made the -T option more flexible, but
|
||
incurred a very considerable memory overhead by storing
|
||
all file names in the argument array. In case of very
|
||
big file lists this caused tar to run out of memory. This
|
||
was reported by Christian Wetzel <wetzel@phoenix-pacs.de>
|
||
on March 14, 2013
|
||
(http://lists.gnu.org/archive/html/bug-tar/2013-03/msg00018.html).
|
||
|
||
On the other hand, Michal Žeidl discovered that tar malfunctioned
|
||
when given empty file lists or lists with the trailing newline
|
||
missing in the last entry. This was reported by Pavel Raiskup
|
||
on July 23
|
||
(http://lists.gnu.org/archive/html/bug-tar/2013-07/msg00009.html
|
||
and
|
||
msg00010.html).
|
||
|
||
This change fixes both issues.
|
||
|
||
* src/common.h (name_add_file,request_stdin): New prototype.
|
||
(more_options): New prototype.
|
||
* src/names.c (NELT_FILE): New entry type.
|
||
(name_elt) <file>: New union member.
|
||
(name_add_file): New function.
|
||
(read_name_from_file): New function, a rewrite of
|
||
the same function from tar.c
|
||
(read_next_name,copy_name): New static functions.
|
||
(name_next_elt): Handle NELT_FILE entries.
|
||
* src/tar.c (request_stdin): Make extern.
|
||
(read_name_from_file,add_file_id)
|
||
(update_argv): Removed.
|
||
(parse_opt): Change handling of the -T option.
|
||
(more_options): New function.
|
||
|
||
* tests/T-null.at: Rewrite test.
|
||
* tests/T-zfile.at: New file.
|
||
* tests/T-nonl.at: New file.
|
||
* tests/Makefile.am: Add new testcases.
|
||
* tests/testsuite.at: Likewise.
|
||
|
||
* THANKS: Update.
|
||
|
||
2013-06-29 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix the compatibility check for the --occurrence option.
|
||
|
||
* src/tar.c (SUBCL_OCCUR): New class.
|
||
(subcommand_class): Update.
|
||
(decode_options): Accept the --occurrence option
|
||
with any subcommand from the SUBCL_OCCUR class.
|
||
|
||
2013-06-29 Pavel Raiskup <praiskup@redhat.com>
|
||
|
||
testsuite: do not resist on file order in archive
|
||
|
||
On my Fedora 19 box, the exclude08 & exclude11 tests failed before
|
||
this fix. The reason was that the directory traversing chosen the
|
||
file order differently than the testsuite expected.
|
||
|
||
* tests/exclude08.at: Sort the tarball content output.
|
||
* tests/exclude09.at: Likewise.
|
||
* tests/exclude10.at: Likewise.
|
||
* tests/exclude11.at: Likewise.
|
||
* tests/exclude12.at: Likewise.
|
||
* tests/exclude13.at: Likewise.
|
||
* tests/exclude14.at: Likewise.
|
||
* tests/exclude15.at: Likewise.
|
||
* tests/exclude16.at: Likewise.
|
||
|
||
2013-06-29 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Improve checks for incompatible options.
|
||
|
||
* src/common.h (READ_LIKE_SUBCOMMAND): Remove define.
|
||
* src/tar.c (IS_SUBCOMMAND_CLASS): New macro.
|
||
(decode_options): Use IS_SUBCOMMAND_CLASS in checking
|
||
option compatibility.
|
||
Accept the --verify option only with subcommands that
|
||
write to the archive.
|
||
|
||
* tests/opcomp01.at: New test case.
|
||
* tests/opcomp02.at: New test case.
|
||
* tests/opcomp03.at: New test case.
|
||
* tests/opcomp04.at: New test case.
|
||
* tests/opcomp05.at: New test case.
|
||
* tests/opcomp06.at: New test case.
|
||
* tests/Makefile.am: Add new testcases.
|
||
* tests/testsuite.at: Likewise.
|
||
|
||
2013-06-28 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: port to Mingw Shell
|
||
|
||
* src/extract.c (extract_symlink) [!HAVE_SYMLINK]:
|
||
Fix typo by replacing WARN_SYMBOLIC_CAST with WARN_SYMLINK_CAST.
|
||
Problem reported by kaka in
|
||
<http://lists.gnu.org/archive/html/bug-tar/2013-06/msg00008.html>.
|
||
|
||
2013-05-06 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
maint: revert previous change
|
||
|
||
It wasn't actually needed. Reported by Stefano Lattarini in
|
||
<http://lists.gnu.org/archive/html/bug-tar/2013-04/msg00041.html>.
|
||
* configure.ac (AM_GNU_GETTEXT_VERSION): Decrease from 0.18.2
|
||
back to 0.16.
|
||
|
||
2013-04-25 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
maint: port to bleeding-edge Automake by assuming Gettext 0.18.2
|
||
|
||
Reported by Stefano Lattarini in
|
||
<http://lists.gnu.org/archive/html/bug-tar/2013-04/msg00009.html>.
|
||
* configure.ac (AM_GNU_GETTEXT_VERSION): Increase from 0.16
|
||
to 0.18.2.
|
||
README-alpha says that we do not make any efforts to accommodate
|
||
older versions of Gettext.
|
||
|
||
2013-04-25 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: port to --without-xattrs --enable-gcc-warnings
|
||
|
||
Reported by Pavel Raiskup in
|
||
<http://lists.gnu.org/archive/html/bug-tar/2013-03/msg00029.html>.
|
||
* src/xattrs.c (xattrs__fd_set) [!HAVE_XATTRS]: Omit.
|
||
|
||
2013-04-25 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
doc: port to texinfo 5
|
||
|
||
* doc/tar.texi (Reports, assumptions, Mixing):
|
||
Put FIXMEs at line start.
|
||
|
||
2013-03-12 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Continue extracting from a separate volume after skipping a
|
||
partial member.
|
||
|
||
Reported by Göran Udeborg on 2013-03-09.
|
||
|
||
* src/extract.c (extract_skip): New function.
|
||
(prepare_to_extract): Set extractor to extract_skip if starting
|
||
at a partial member.
|
||
|
||
2013-03-12 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix interaction of various --exclude-tag options with
|
||
--listed-incremental.
|
||
|
||
* src/incremen.c (procdir): Set directory->tagfile in
|
||
the exclusion_tag_contents case.
|
||
(makedumpdir): Mark all entries as ignored if directory->tagfile
|
||
is set.
|
||
Free new_dump before returning.
|
||
(maketagdumpdir): New function.
|
||
(scan_directory): If directory->children is set to
|
||
NO_CHILDREN and directory->tagfile is set, create a
|
||
dumpdir consisting of the tagfile only.
|
||
|
||
* tests/exclude08.at: New testcase.
|
||
* tests/exclude09.at: New testcase.
|
||
* tests/exclude10.at: New testcase.
|
||
* tests/exclude11.at: New testcase.
|
||
* tests/exclude12.at: New testcase.
|
||
* tests/exclude13.at: New testcase.
|
||
* tests/exclude14.at: New testcase.
|
||
* tests/exclude15.at: New testcase.
|
||
* tests/exclude16.at: New testcase.
|
||
* tests/Makefile.am: Add new tests.
|
||
* tests/testsuite.at: Include new tests.
|
||
* tests/atlocal.in (mkexcltest): New function.
|
||
* tests/chtype.at: Update keywords.
|
||
* tests/filerem01.at: Likewise.
|
||
* tests/filerem02.at: Likewise.
|
||
* tests/incremental.at: Likewise.
|
||
* tests/multiv04.at: Likewise.
|
||
|
||
2013-02-20 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: remove lint
|
||
|
||
* lib/wordsplit.c (_wsplit_error): Mark with printf attribute.
|
||
(expvar): "Use" defstr to pacify GCC.
|
||
* src/system.c (xexec): Now _Noreturn, to pacify GCC.
|
||
(run_decompress_program): Add cast to pacify GCC.
|
||
(sys_exec_command, sys_exec_info_script,
|
||
sys_exec_checkpoint_script):
|
||
Remove unused variables.
|
||
|
||
2013-02-10 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Pass command line arguments to external commands.
|
||
|
||
Any option taking a command name as its argument accepts
|
||
additional arguments as well.
|
||
|
||
* lib/wordsplit.c: New file.
|
||
* lib/wordsplit.h: New file.
|
||
* lib/Makefile.am: Add new files.
|
||
* src/system.c (xexec): New function.
|
||
(run_decompress_program): Use wordsplit.
|
||
(sys_child_open_for_compress,sys_exec_command)
|
||
(sys_exec_info_script)
|
||
(sys_exec_checkpoint_script): Use xexec to invoke external
|
||
command.
|
||
|
||
* NEWS: Update.
|
||
* doc/tar.texi: Update.
|
||
|
||
2013-01-29 Nathan Stratton Treadway <nathanst@ontko.com>
|
||
|
||
tar: improve compile-time diagnostics
|
||
|
||
* src/misc.c (sysinttostr, strtosysint): Improve #error wording.
|
||
|
||
2013-01-27 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: improve quality of diagnostics with incrementals
|
||
|
||
Inspired by a prototype by Nathan Stratton Treadway in
|
||
<http://lists.gnu.org/archive/html/bug-tar/2013-01/msg00000.html>.
|
||
* src/incremen.c (read_num): Rewrite by merging read_negative_num
|
||
and read_unsigned_num. Use strtosysint rather than rolling this
|
||
stuff ourselves. Change return type to bool. All uses changed.
|
||
(read_negative_num, read_unsigned_num): Remove.
|
||
(read_num, read_timespec, read_incr_db_2): Improve quality of
|
||
diagnostics, e.g., by supplying byte offset of error.
|
||
|
||
2013-01-26 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: fix bug with sparse files with effective size of 8 GiB
|
||
or more
|
||
|
||
Reported by Pavel Raiskup in
|
||
<http://lists.gnu.org/archive/html/bug-tar/2013-01/msg00001.html>.
|
||
* NEWS: Document the fix.
|
||
* src/sparse.c (pax_start_header): New function.
|
||
(pax_dump_header_0, pax_dump_header_1): Use it.
|
||
|
||
2012-12-31 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
maint: update copyrights for 2013 and as per current GNU standards
|
||
|
||
2012-12-31 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
maint: remove unnecessary file
|
||
|
||
* src/configure.in: Remove. This file has been obsolete for
|
||
a while.
|
||
|
||
2012-12-24 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
maint: don't enable warnings by default unless GCC 4.6 or later
|
||
|
||
* configure.ac (gl_GCC_VERSION_IFELSE): New macro, from coreutils.
|
||
(gl_gcc_warnings): By default, disable warnings for GCC versions
|
||
before 4.6. This works around a failure when building from git on
|
||
Ubuntu 10, reported privately by Nathan Stratton Treadway.
|
||
|
||
2012-12-23 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Handle incremental format 2 with negative numbers, too.
|
||
|
||
* src/incremen.c (read_unsigned_num): Last arg is intmax_t *, not
|
||
uintmax_t, for consistency with other readers. All callers
|
||
changed.
|
||
Avoid signed integer overflow.
|
||
(read_num):
|
||
|
||
2012-12-23 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Fix some problems with negative and out-of-range integers.
|
||
|
||
Original problem reported for HP-UX LVM v2.2 by Michael White in
|
||
<http://lists.gnu.org/archive/html/bug-tar/2012-10/msg00000.html>.
|
||
This patch fixes some other gotchas that I noticed.
|
||
* gnulib.modules: Add extern-inline.
|
||
* src/common.h: Use _GL_INLINE_HEADER_BEGIN,
|
||
_GL_INLINE_HEADER_END.
|
||
(COMMON_INLINE, max, min): New macros.
|
||
(represent_uintmax, valid_timespec): New inline functions.
|
||
(SYSINT_BUFSIZE): New constant.
|
||
(sysinttostr, strtosysint, decode_timespec): New decls.
|
||
* src/create.c (start_private_header): Silently bring the time_t
|
||
value into range; it is now the caller's responsibility to deal
|
||
with any overflow error. Use uid 0 and gid 0 rather than the
|
||
user's uid/gid, since the faked header isn't "owned" by the user
|
||
and the uid/gid could in theory be out of range. Leave major and
|
||
minor zeroed.
|
||
(FILL): Remove.
|
||
(write_gnu_long_link): Let start_private_header zero things out.
|
||
* src/create.c (write_gnu_long_link, write_extended):
|
||
* src/xheader.c (xheader_write_global):
|
||
Use start_time, not current time; no point hammering on the clock.
|
||
* src/compare.c (diff_multivol): Check that offset, size are
|
||
in range.
|
||
* src/incremen.c (read_incr_db_01, write_directory_file_entry):
|
||
Allow negative time_t, dev_t, and ino_t.
|
||
* src/list.c (max): Remove (moved to common.h).
|
||
(read_header): Check that size is in range.
|
||
(from_header): Return intmax_t, not uintmax_t, to allow negative.
|
||
All callers changed. At compile time, check assumptions about
|
||
intmax_t and uintmax_t. Use bool for booleans. Avoid overflow
|
||
hassles on picky hosts.
|
||
(mode_from_header): Last arg is now bool *, not unsigned *.
|
||
All callers changed.
|
||
(simple_print_header): Do not assume UID, GID fit in 'long'.
|
||
* src/list.c (from_header):
|
||
* src/xheader.c (out_of_range_header):
|
||
Arg is now a plain minimum value, not minus minval converted to
|
||
uintmax_t. All callers changed.
|
||
* src/misc.c (COMMON_INLINE): New macro.
|
||
(sysinttostr, strtosysint, decode_timespec): New functions.
|
||
* src/sparse.c (oldgnu_add_sparse, oldgnu_fixup_header)
|
||
(star_fixup_header):
|
||
Check for offset overflow.
|
||
(decode_num): Clear errno before calling strtoumax.
|
||
* src/tar.c (expand_pax_option): Don't discard nanoseconds.
|
||
* src/xheader.c (assign_time_option): Allow negative time_t.
|
||
(decode_record): Simplify, since out-of-range string is guaranteed
|
||
to produce a value exceeding len_max.
|
||
(xheader_read): Last arg is off_t, not size_t.
|
||
Caller should diagnose negative arg, as needed.
|
||
Check that it's in range.
|
||
(enum decode_time_status): Remove.
|
||
(_decode_time): Remove, folding into decode_time.
|
||
(decode_time): Return bool, not enum decode_time_status.
|
||
Rely on decode_timespec to do most of the work.
|
||
(code_signed_num): New function.
|
||
(code_num): Use it.
|
||
(decode_signed_num): New function.
|
||
(decode_num): Use it.
|
||
(gid_coder, gid_decoder, uid_coder, uid_decoder,
|
||
sparse_map_decoder)
|
||
(sparse_map_decoder): Code and decode negative values.
|
||
(sparse_map_decoder): Improve check for out-of-range values.
|
||
* tests/time01.at: New file.
|
||
* tests/Makefile.am (TESTSUITE_AT): Add it.
|
||
* tests/testsuite.at: Include it.
|
||
|
||
2012-12-22 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Port use of mkdirat etc. to Solaris 10.
|
||
|
||
* gnulib.modules (fchmodat, fchownat, fstatat, mkdirat, unlinkat):
|
||
Add. These were split out in gnulib, so we now need to request
|
||
them separately. mkdirat, for example, is not in Solaris 10.
|
||
|
||
2012-12-22 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Port ACL configuration to Solaris 10.
|
||
|
||
* configure.ac (with_posix_acls): Fix misspellings.
|
||
Stop checking at the first failure, to speed up 'configure'.
|
||
|
||
2012-12-19 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: remove unused externs, or make them static
|
||
|
||
* src/buffer.c (record_buffer_aligned, flush_write_ptr,
|
||
flush_read_ptr)
|
||
(duration):
|
||
* src/list.c (recent_global_header):
|
||
* src/unlink.c (deferred_unlink_delay):
|
||
* src/transform.c (transform_flags):
|
||
* src/xattrs.c (acl_get_file_at, acl_set_file_at,
|
||
file_has_acl_at):
|
||
Now static.
|
||
* src/common.h (rmt_command_option): Remove; unused.
|
||
* src/tar.c (check_links_option, allocated_archive_names):
|
||
Move decls here from common.h; these are now static.
|
||
|
||
2012-12-19 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* .gitignore: Regenerate.
|
||
|
||
2012-12-19 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
build: new configure option --enable-gcc-warnings
|
||
|
||
This has a similar meaning as in other GNU applications
|
||
such as coreutils and Emacs.
|
||
* NEWS: Document it.
|
||
* .gitignore: Remove redundant build-aux.
|
||
Remove gnu, since gnu/Makefile.am is now in git.
|
||
Add gnu/.gitignore, gnu/charset.alias, gnu/*.h, gnu/*/ to cover
|
||
autogenerated files.
|
||
* bootstrap.conf (gnulib_mk): Remove.
|
||
* configure.ac: Add support for --enable-gcc-warnings,
|
||
taken from coreutils and simplified.
|
||
* gnu/Makefile.am: New file. Formerly this was autogenerated,
|
||
but the autogenerated file has been renamed to gnulib.mk,
|
||
its usual name when bootstrapping from gnulib.
|
||
This way, AM_CFLAGS can incorporate warning options.
|
||
* gnulib.modules: Add manywarnings.
|
||
* lib/Makefile.am, src/Makefile.am (AM_CFLAGS): New macro,
|
||
incorporating warning options.
|
||
* lib/attr-xattr.in.h (ENOATTR): New macro, if not already
|
||
defined.
|
||
* src/buffer.c (magic): Don't rely on incomplete initializers.
|
||
* src/common.h (report_difference): Add printf format attribute.
|
||
* src/system.c (sys_exec_command, sys_exec_info_script)
|
||
(sys_exec_checkpoint_script):
|
||
* src/tar.c (update_argv):
|
||
Add casts to char * to pacify GCC warnings about using string
|
||
literals in a char * context.
|
||
* src/xattrs.c, src/xattrs.h (xattrs_clear_setup):
|
||
Declare parameters as (void), not ().
|
||
* src/xheader.c (xheader_format_name): Initialize pptr to null,
|
||
to pacify GCC. Remove unnecessary test of nptr versus null.
|
||
|
||
2012-12-19 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: don't truncate diagnostic
|
||
|
||
* src/list.c (from_header): Fix buffer size calculation when
|
||
generating a diagnostic.
|
||
|
||
2012-12-03 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Bugfix.
|
||
|
||
* tests/Makefile.am: Fix double AM_CPPFLAGS
|
||
|
||
2012-12-01 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Use AM_CPPFLAGS instead of INCLUDES.
|
||
|
||
2012-11-19 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Housekeeping.
|
||
|
||
* NEWS: Mention the support for POSIX ACLs, extended
|
||
attributes and SELinux context.
|
||
* THANKS: List James Antill and Pavel Raiskup.
|
||
|
||
2012-11-19 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix indentation.
|
||
|
||
2012-11-19 Pavel Raiskup <praiskup@redhat.com>
|
||
|
||
Allow to store/extract '=' character in xattr keyword
|
||
|
||
* src/xheader.c (xattr_decode_keyword)
|
||
(xattr_encode_keyword): New functions.
|
||
(xheader_print_n,xattr_decoder): Use them.
|
||
* tests/xattr05.at: New test case.
|
||
* tests/Makefile.am: Add new test case.
|
||
* tests/testsuite.at: Likewise.
|
||
|
||
2012-11-19 Pavel Raiskup <praiskup@redhat.com>
|
||
|
||
Bugfixes.
|
||
|
||
* configure.ac: Avoid linking against -lacl when
|
||
--without-posix-acls is given.
|
||
* tests/selacl01.at: Call restorecon
|
||
* tests/selnx01.at: Likewise.
|
||
* tests/testsuite.at (AT_SELINUX_UTILS_PREREQ): Likewise.
|
||
(AT_SELINUX_PREREQ,AT_ACLS_PREREQ): Use the right _PREREQ macros.
|
||
|
||
2012-11-19 Pavel Raiskup <praiskup@redhat.com>
|
||
|
||
Fix bootstrapping.
|
||
|
||
* bootstrap (gnulib_extra_files): Remove $build_aux/missing
|
||
|
||
2012-11-19 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Various fixes.
|
||
|
||
* src/xattrs.c: Don't mix variable declarations and statements.
|
||
Use proper data types. Remove improper use of const qualifiers.
|
||
Use x2nrealloc to reallocate memory buffers.
|
||
|
||
2012-11-18 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Minor change.
|
||
|
||
* src/xattrs.c: Fix indentation. Fix copyleft statement, promote
|
||
to GPLv3+.
|
||
* src/xattrs.h: Likewise
|
||
|
||
2012-11-18 Pavel Raiskup <praiskup@redhat.com>
|
||
|
||
Add SELinux context store/restore/list support.
|
||
|
||
* gnulib.modules: Add selinux-at.
|
||
* src/Makefile.am (tar_LDADD): Add LIB_SELINUX.
|
||
|
||
* src/create.c (start_header, dump_file0): Handle selinux
|
||
contexts.
|
||
* src/extract.c (delayed_set_stat) <cntx_name>: New member.
|
||
(delayed_link) <cntx_name>: New member.
|
||
(set_stat, delay_set_stat)
|
||
(apply_nonancestor_delayed_set_stat): Handle selinux contexts.
|
||
* src/tar.c: New options: "--selinux", "--no-selinux".
|
||
(tar_stat_destroy): Free cntx_name.
|
||
* src/tar.h (tar_stat_info) <cntx_name>: New member.
|
||
* src/xattrs.c (xattrs_selinux_get)
|
||
(xattrs_selinux_set): New functions.
|
||
(xattrs_print_char): Honor selinux_context_option.
|
||
(xattrs_print): Print selinux context.
|
||
* src/xheader.c: Handle new keyword "RHT.security.selinux".
|
||
* tests/Makefile.am: Add new tests.
|
||
* tests/testsuite.at: Likewise.
|
||
* tests/selacl01.at: New test.
|
||
* tests/selnx01.at: New test.
|
||
|
||
2012-11-18 Pavel Raiskup <praiskup@redhat.com>
|
||
|
||
Support for POSIX ACLs
|
||
|
||
* configure.ac: Check whether ACLs are available on the
|
||
host system.
|
||
* gnulib.modules: Add acl
|
||
* src/create.c (start_header): Store ACLs when creating
|
||
a POSIX archive.
|
||
(dump_file0): Handle ACLs.
|
||
* src/extract.c (delayed_set_stat) <acls_a_ptr, acls_a_len>
|
||
<acls_d_ptr, acls_d_len>: New members.
|
||
(delayed_link): Likewise.
|
||
(set_stat,delay_set_stat)
|
||
(apply_nonancestor_delayed_set_stat): Set ACLs.
|
||
* src/tar.c: New options: "--acls", "--no-acls"
|
||
(tar_stat_destroy): Free acls_a_ptr and acls_d_ptr fields.
|
||
* src/tar.h (tar_stat_info) <acls_a_ptr, acls_a_len>
|
||
<acls_d_ptr, acls_d_len>: New members.
|
||
* src/xattrs.c (xattrs_acls_get, xattrs_acls_set): New functions.
|
||
* src/xheader.c: Support new keywors: "SCHILY.acl.access" and
|
||
"SCHILY.acl.default".
|
||
* tests/Makefile.am: Add new tests.
|
||
* tests/testsuite.at: Likewise.
|
||
* tests/acls01.at: New test.
|
||
* tests/acls02.at: New test.
|
||
|
||
2012-11-18 Pavel Raiskup <praiskup@redhat.com>
|
||
|
||
Add basic support for extended attributes.
|
||
|
||
* src/Makefile.am: Add xattrs.[ch]
|
||
* src/xattrs.c: New file.
|
||
* src/xattrs.h: New file.
|
||
* src/common.h (READ_LIKE_SUBCOMMAND): New define.
|
||
(selinux_context_option, acls_option, xattrs_option): New globals.
|
||
(xheader_xattr_init, xheader_xattr_free)
|
||
(xheader_xattr_copy, xheader_xattr_add): New protos.
|
||
(WARN_XATTR_WRITE): New mask.
|
||
* src/create.c (start_header): Handle xattrs pairs if in POSIX
|
||
format.
|
||
(dump_file0): Handle extended attributes.
|
||
* src/extract.c (delayed_set_stat,delayed_link) <xattr_map_size>
|
||
<xattr_map>: New members.
|
||
(set_xattr): New static function.
|
||
(open_output_file): Accept an additional argument indicating
|
||
whether the file has already been created.
|
||
(set_stat,delay_set_stat)
|
||
(apply_nonancestor_delayed_set_stat)
|
||
(extract_file): Handle extended attributes.
|
||
* src/list.c (decode_header, simple_print_header): Display
|
||
extended attributes.
|
||
* src/tar.c: New options --xattrs, --no-xattrs, --xattrs-include,
|
||
--xattrs-exclude
|
||
(tar_stat_destroy): Free the xattr_map storage.
|
||
* src/tar.h (xattr_array): New struct.
|
||
(tar_stat_info) <xattr_map_size, xattr_map>: New members.
|
||
* src/warning.c: New warning control keyword "xattr-write".
|
||
* src/xheader.c (xheader_xattr_init)
|
||
(xheader_xattr_free, xheader_xattr_add)
|
||
(xheader_xattr_copy): New functions.
|
||
(struct xhdr_tab) <prefix>: New member.
|
||
(locate_handler): Permit selecting the keyword based on its
|
||
prefix.
|
||
(xheader_protected_pattern_p)
|
||
(xheader_protected_keyword_p): Likewise.
|
||
(xattr_coder, xattr_decoder): New functions.
|
||
(xhdr_tab): Reflect the changes to struct xhdr_tab.
|
||
New keyword "SCHILY.xattr".
|
||
* tests/Makefile.am: Add new tests.
|
||
* tests/testsuite.at: Likewise.
|
||
(AT_CHECK_UTIL, AT_XATTRS_UTILS_PREREQ)
|
||
(AT_CAPABILITIES_UTILS_PREREQ, AT_XATTRS_PREREQ): New defuns.
|
||
* tests/xattr01.at: New test.
|
||
* tests/xattr02.at: New test.
|
||
* tests/xattr03.at: New test.
|
||
* tests/xattr04.at: New test.
|
||
* tests/capabs_raw01.at: New test.
|
||
|
||
2012-11-18 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Prepare for implementing extended attribute support.
|
||
|
||
This patch adds *xattr() stubs in case extended attribute
|
||
support is
|
||
not present and implements the *attrat() family of functions.
|
||
Based
|
||
on the patch by Pavel Raiskup <pavel@raiskup.cz> for gnulib.
|
||
|
||
* acinclude.m4 (TAR_HEADERS_ATTR_XATTR_H): New defun.
|
||
* configure.ac: Call TAR_HEADERS_ATTR_XATTR_H
|
||
* lib/Makefile.am: Add xattr-at.[ch], distribute attr-xattr.in.h
|
||
[!TAR_COND_XATTR_H]: Build attr/xattr.h
|
||
* lib/attr-xattr.in.h: New file.
|
||
* lib/xattr-at.c: New file.
|
||
* lib/xattr-at.h: New file.
|
||
|
||
2012-11-14 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix creation of incremental archives when a subdirectory becomes
|
||
a mountpoint.
|
||
|
||
When used with --listed-incremental and --one-file-system, tar
|
||
was unable to cope with directories that had once been part of the
|
||
dumped system and became separate mount points afterward. The bug
|
||
has been reported and a fix proposed by Nathan Stratton Treadway.
|
||
|
||
* src/incremen.c (procdir): If one_file_system_option is in
|
||
effect,
|
||
clear out dumpdir info from the directory.
|
||
* tests/Makefile.am: Add new testcase.
|
||
* tests/listed05.at: New testcase.
|
||
* tests/testsuite.at (AT_PRIVILEGED_PREREQ): New macro.
|
||
include listed05.at.
|
||
* THANKS: Update.
|
||
|
||
2012-07-27 Jim Meyering <jim@meyering.net>
|
||
|
||
maint: try to avoid unwanted chatter in ChangeLog
|
||
|
||
* bootstrap.conf: Do not alter ChangeLog if it already exists.
|
||
|
||
2012-07-26 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
doc: improve discussion of compressed archives
|
||
|
||
* doc/tar.texi (gzip): Don't claim that -I 'gzip --best' works.
|
||
Problem reported by Davide Brini in
|
||
<http://lists.gnu.org/archive/html/bug-tar/2012-07/msg00025.html>.
|
||
Also, improve some of the surrounding text.
|
||
|
||
This file is a placeholder. It will be replaced with the actual
|
||
ChangeLog
|
||
by make dist. Run make ChangeLog if you wish to create it
|
||
earlier.
|
||
|
||
2012-06-27 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tests: fix permissions-assumption bug in test
|
||
|
||
* tests/owner.at: Don't assume umask is 022.
|
||
Reported by Pavel Raiskup in
|
||
<http://lists.gnu.org/archive/html/bug-tar/2012-06/msg00015.html>.
|
||
|
||
2012-06-27 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: don't assume root is uid 0
|
||
|
||
This is not true for Tandem NonStop Kernel. See Joachim Schmitz's
|
||
comment in <http://bugs.gnu.org/10305#111>.
|
||
* gnulib.modules: Add root-uid.
|
||
* src/extract.c: Include <root-uid.h>.
|
||
(extr_init): Don't assume root is uid 0.
|
||
|
||
2012-04-25 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* src/compare.c (diff_dumpdir): Omit useless 'stat'.
|
||
|
||
2012-04-25 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* doc/tar.texi (Option Summary): Fix xref typo.
|
||
|
||
Reported by Nathan Stratton Treadway in
|
||
<http://lists.gnu.org/archive/html/bug-tar/2012-04/msg00035.html>.
|
||
|
||
This file is a placeholder. It will be replaced with the actual
|
||
ChangeLog
|
||
by make dist. Run make ChangeLog if you wish to create it
|
||
earlier.
|
||
|
||
2012-03-29 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix unrecognized option.
|
||
|
||
* src/tar.c (parse_opt): Handle OLD_ARCHIVE_OPTION.
|
||
|
||
2012-03-11 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: remove lint
|
||
|
||
This lint was found by GCC 4.6.2 on Fedora 15 x86-64.
|
||
* src/buffer.c (buffer_write_global_xheader, mv_end,
|
||
set_start_time)
|
||
(compute_duration, print_total_stats, flush_read, flush_write):
|
||
* src/checkpoint.c (checkpoint_finish_compile):
|
||
* src/list.c (test_archive_label):
|
||
* src/misc.c (chdir_count):
|
||
* src/names.c (const):
|
||
* src/unlink.c (finish_deferred_unlinks):
|
||
Define with (void) instead of with (), for slightly-better C type
|
||
checking and to avoid a GCC warning.
|
||
* src/compare.c (diff_dumpdir):
|
||
* src/tar.c (parse_owner_group): Remove unused local.
|
||
* src/misc.c (chdir_do):
|
||
* src/tar.c (add_exclude_array): Rename local to avoid shadowing.
|
||
(LOW_DENSITY_NUM, MID_DENSITY_NUM, HIGH_DENSITY_NUM):
|
||
Define only if needed.
|
||
* src/update.c (update_archive): Initialize a local; this fixes
|
||
what appears to be a real bug.
|
||
|
||
2012-02-14 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
doc: suggest Bash for large-fd script
|
||
|
||
* doc/tar.texi (Multi-Volume Archives): Suggest Bash for shell
|
||
script that might use >&10. Problem reported by Edward F
|
||
Eaglehouse in
|
||
<http://lists.gnu.org/archive/html/bug-tar/2012-02/msg00002.html>.
|
||
|
||
2012-01-18 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: quote 'like this', not `like this'
|
||
|
||
This fixes some test failures recently introduced by gnulib
|
||
updates
|
||
prompted by recent changes to the GNU coding standards,
|
||
which now advise to use quotes 'like this' or "like this"
|
||
rather than `like this'.
|
||
* NEWS: Document this.
|
||
* README, README-hacking, doc/Makefile.am, scripts/backup.in:
|
||
* scripts/backup.sh.in, scripts/dump-remind.in:
|
||
* src/buffer.c, src/checkpoint.c, src/create.c, src/incremen.c:
|
||
* src/misc.c, src/names.c, src/sparse.c, src/transform.c:
|
||
* tests/incr02.at, tests/incremental.at, tests/multiv08.at:
|
||
* tests/sparse04.at, tests/star/README, tests/update01.at:
|
||
Quote 'like this' in comments.
|
||
* src/tar.h:
|
||
Quote "like this" in comments, when quoting English phrases rather
|
||
than code.
|
||
* configure.ac:
|
||
* scripts/xsparse.c (get_var, read_xheader, main):
|
||
* src/compare.c (diff_archive):
|
||
* src/extract.c (prepare_to_extract):
|
||
* src/tar.c (request_stdin, tar_set_quoting_style, doc, options)
|
||
(set_subcommand_option, report_textual_dates, parse_opt)
|
||
(decode_options, main):
|
||
* src/xheader.c (decx):
|
||
Quote 'like this' in diagnostics.
|
||
* doc/tar.texi (list, warnings, override)
|
||
(Selecting Archive Members, quoting styles, after, hard links)
|
||
(Sparse Recovery, Multi-Volume Archives, label):
|
||
Adjust documentation to match new output.
|
||
* tests/backup01.at, tests/incr01.at, tests/incr04.at:
|
||
* tests/label04.at, tests/label05.at, tests/link03.at:
|
||
* tests/listed02.at, tests/multiv03.at, tests/multiv05.at:
|
||
* tests/rename01.at, tests/rename02.at, tests/rename03.at:
|
||
* tests/volume.at:
|
||
Adjust tests to match new quoting behavior.
|
||
|
||
2012-01-18 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: port --overwrite symlink test to GNU/Hurd
|
||
|
||
Problem reported by Pino Toscano in
|
||
<http://lists.gnu.org/archive/html/bug-tar/2012-01/msg00040.html>.
|
||
* gnulib.modules: Add fcntl-h, which defines
|
||
HAVE_WORKING_O_NOFOLLOW.
|
||
* src/extract.c (open_output_file): Use HAVE_WORKING_O_NOFOLLOW,
|
||
not O_NOFOLLOW, when testing whther O_NOFOLLOW works.
|
||
|
||
This file is a placeholder. It will be replaced with the actual
|
||
ChangeLog
|
||
by make dist. Run make ChangeLog if you wish to create it
|
||
earlier.
|
||
|
||
2012-01-11 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: fix core dump with --index-file=bad_path
|
||
|
||
* src/tar.c (decode_options): Exit cleanly if index file won't
|
||
open.
|
||
Problem reported by Khanh-Dang Nguyen Thu Lam in
|
||
<http://lists.gnu.org/archive/html/bug-tar/2012-01/msg00018.html>.
|
||
|
||
2012-01-06 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: don't assume O_NONBLOCK is benign on regular files
|
||
|
||
On Data Migration Facility (DMF), High Performance Storage System
|
||
(HPSS),
|
||
and presumably other file systems based on hierarchical storage,
|
||
opening
|
||
a regular file with O_NONBLOCK can cause later reads to fail with
|
||
errno == EAGAIN. We need the O_NONBLOCK to avoid some security
|
||
races.
|
||
Work around the problem by using fcntl to clear the O_NONBLOCK
|
||
flag if I/O fails with that errno value.
|
||
Problem reported by Vitezslav Cizek in
|
||
<http://lists.gnu.org/archive/html/bug-tar/2012-01/msg00000.html>.
|
||
* src/common.h (blocking_read, blocking_write): New decls.
|
||
* src/misc.c (blocking_read, blocking_write): New functions.
|
||
* src/compare.c (process_rawdata):
|
||
* src/create.c (dump_regular_file):
|
||
* src/extract.c (extract_file):
|
||
* src/sparse.c (sparse_scan_file, sparse_extract_region):
|
||
|
||
2011-11-26 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix --keep-old-files option.
|
||
|
||
The regression was introduced by 8f390db9. This patch implements
|
||
additional
|
||
option --skip-old-files, which silently skips members which
|
||
would cause
|
||
writing over existing files, and restores --keep-old-files to
|
||
its traditional
|
||
behavior.
|
||
|
||
* NEWS: Update.
|
||
* configure.ac: Update.
|
||
* doc/tar.texi: Document the changes.
|
||
* src/common.h (SKIP_OLD_FILES): New old_files mode.
|
||
* src/extract.c (maybe_recoverable): Restore KEEP_OLD_FILES
|
||
behavior.
|
||
Handle SKIP_OLD_FILES.
|
||
* src/tar.c: New option --skip-old-files.
|
||
* tests/extrac18.at: New file.
|
||
* tests/extrac19.at: New file.
|
||
* tests/Makefile.am: Add new test cases.
|
||
* tests/testsuite.at: Likewise.
|
||
|
||
2011-11-17 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Warn about existing files in keep-old-files mode (complements
|
||
8f390db9).
|
||
|
||
This is controlled by "existing-file" warning code, which is off
|
||
by default.
|
||
|
||
* src/common.h (WARN_EXISTING_FILE): New warning code.
|
||
(WARN_VERBOSE_WARNINGS): Add WARN_EXISTING_FILE.
|
||
* src/extract.c (maybe_recoverable): warn about existing file
|
||
if WARN_EXISTING_FILE is set.
|
||
* src/warning.c: New warning type: "existing-file"
|
||
|
||
2011-11-17 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix the "Creating directory:" output
|
||
|
||
* src/list.c (print_for_mkdir): don't use unquoted name length for
|
||
computing its output width.
|
||
|
||
2011-11-15 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix operation of --verify in conjunction with --listed-incremental
|
||
|
||
* src/common.h (clear_directory_table): New proto.
|
||
* src/incremen.c (clear_directory_table): New function.
|
||
* src/compare.c (diff_dumpdir): Take a pointer to struct
|
||
tar_stat_info as argument.
|
||
Initialize its fd.
|
||
(diff_archive): Update call to diff_dumpdir.
|
||
(verify_volume): Call clear_directory_table.
|
||
|
||
2011-10-18 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* doc/tar.texi (Option Summary, absolute): Document -P better,
|
||
|
||
by describing how it deals with symbolic links on extraction.
|
||
|
||
2011-09-28 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
2011-09-27 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* src/tar.c (stat_on_signal): Use SA_RESTART if available.
|
||
|
||
2011-09-20 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* doc/tar.texi: Remove front- and back-cover texts.
|
||
|
||
These are no longer needed for this manual, according to the
|
||
GNU maintainers guide. Update copyright date to 2011.
|
||
|
||
2011-09-19 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Minor changes.
|
||
|
||
* scripts/tar-snapshot-edit: License under GPLv3+.
|
||
Remove trailing whitespace.
|
||
|
||
2011-09-19 Nathan Stratton Treadway <nathanst+bugtar@ontko.com>
|
||
|
||
Minor changes.
|
||
|
||
* doc/snapshot.texi: Clarify the use of nfs field in 0 and
|
||
1 formats.
|
||
Give more precise information about which versions of tar
|
||
used each
|
||
format.
|
||
|
||
2011-09-19 Nathan Stratton Treadway <nathanst+bugtar@ontko.com>
|
||
|
||
Upgrade tar-snapshot-edit script.
|
||
|
||
* scripts/tar-snapshot-edit: Update Perl syntax to work
|
||
correctly with more recent versions of Perl. (The original
|
||
code worked with in the v5.8 timeframe but not with
|
||
Perl v5.10.1 and later.)
|
||
Add a "-c" option to check the snapshot file for invalid
|
||
field values.
|
||
Handle NFS indicator character ("+") in version 0 and 1 files.
|
||
Preserve the original header/version line when editing version 1
|
||
or 2 files.
|
||
Tweak output formatting.
|
||
* doc/tar-snapshot-edit.texi: Update documentation.
|
||
|
||
2011-08-13 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: --owner and --group names and numbers
|
||
|
||
The --owner and --group options now accept operands of the form
|
||
NAME:NUM, so that you can specify both symbolic name and numeric
|
||
ID for owner and group. Also, in these options, NAME no longer
|
||
needs to be present in the current host's user and group
|
||
databases; this implements Debian enhancement request 136231
|
||
<http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=136231> reported
|
||
by Mark W. Eichin, communicated by Thayne Harbaugh to bug-tar in
|
||
<http://lists.gnu.org/archive/html/bug-tar/2011-08/msg00001.html>.
|
||
* NEWS, doc/tar.texi (Option Summary, override): Document
|
||
enhancement.
|
||
* src/common.h (group_name_option, owner_name_option): New decls.
|
||
* src/create.c (start_header): Don't assume owner and group names
|
||
are in current host database.
|
||
* src/tar.c (parse_owner_group): New function, for parsing
|
||
NAME:NUM.
|
||
(parse_opt): Use it.
|
||
(decode_options): Initialize owner_name_option, group_name_option.
|
||
* tests/owner.at: New file, to test this enhancement.
|
||
* tests/Makefile.am (TESTSUITE_AT): Add it.
|
||
* tests/testsuite.at: Include it.
|
||
|
||
2011-08-13 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
.gitignore: update
|
||
|
||
* .gitignore: Add rmt.
|
||
* lib/.gitignore: New file.
|
||
|
||
2011-07-30 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix the --exclude-backups option.
|
||
|
||
* src/tar.c (add_exclude_array): Take exclude option flags in its
|
||
second argument.
|
||
(parse_opt): Register backup_file_table with the EXCLUDE_WILDCARDS
|
||
flag.
|
||
* tests/exclude07.at: New testcase.
|
||
* tests/Makefile.am (TESTSUITE_AT): Add testsuite.at.
|
||
* tests/testsuite.at: Include exclude07.at.
|
||
|
||
2011-06-08 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: simplify birthtime calculations
|
||
|
||
* src/extract.c (same_birthtime): Remove.
|
||
(extract_link, apply_delayed_links): Go back to using
|
||
timestamp_cmp
|
||
instead of same_birthtime, as this is a bit simpler. This fix
|
||
relies
|
||
on an up-to-date gnulib.
|
||
|
||
2011-06-08 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: use birthtime rather than ctime when checking identity
|
||
|
||
Without this fix, tar would sometimes mishandle the extraction of
|
||
hard links to symbolic links. Problem reported in
|
||
<http://lists.gnu.org/archive/html/bug-tar/2011-06/msg00000.html>
|
||
by Andreas Stolcke.
|
||
* src/extract.c (struct delayed_link): Change ctime member
|
||
to birthtime.
|
||
(same_birthtime): New function.
|
||
(create_placeholder_file, extract_link, apply_delayed_links):
|
||
Use it to compare birthtimes (when available) instead of ctime.
|
||
|
||
2011-05-26 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* doc/tar.texi (Old Options): Clarify distinction from short
|
||
options.
|
||
|
||
Adjust other parts of the manual to use examples that parse the
|
||
same regardless of whether "-" is in front of the option clump.
|
||
See
|
||
<http://lists.gnu.org/archive/html/bug-tar/2011-05/msg00022.html>.
|
||
|
||
2011-03-12 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Testsuite fix.
|
||
|
||
* tests/sparse04.at: Use the -f option.
|
||
|
||
2011-03-12 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Version 1.26
|
||
|
||
* NEWS, configure.ac: Update.
|
||
* po/POTFILES.in: Remove paxexit.c (see bb971a1e).
|
||
|
||
2011-03-08 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
--atime-preserve=replace: fix correctness and performance bugs
|
||
|
||
reported by Eric Blake in
|
||
<http://lists.gnu.org/archive/html/bug-tar/2011-03/msg00000.html>.
|
||
* src/compare.c (diff_file): Do not restore atime of size-zero
|
||
files.
|
||
* src/create.c (dump_file0): Likewise. Also, do not restore atime
|
||
when fd is zero, because that indicates a file we haven't opened.
|
||
|
||
2011-02-23 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* doc/tar.texi: Adjust example commands and output for accuracy.
|
||
|
||
The original problem was reported by Michael Witten in
|
||
<http://lists.gnu.org/archive/html/bug-tar/2011-02/msg00033.html>.
|
||
|
||
2011-02-16 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: if (p) free (p); -> free (p);
|
||
|
||
There is no longer (since SunOS 4) any need to guard against
|
||
free (NULL), so replace each "if (p) free (p);" with "free (p);".
|
||
From Jim Meyering in
|
||
<http://lists.gnu.org/archive/html/bug-tar/2011-01/msg00026.html>.
|
||
* src/incremen.c (scan_directory, read_directory_file): As above.
|
||
(try_purge_directory): Likewise.
|
||
* src/list.c (read_header): Likewise.
|
||
* src/misc.c (assign_string): Likewise.
|
||
|
||
2010-12-14 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Correctly store long sparse file names in PAX archives.
|
||
|
||
* src/sparse.c (pax_dump_header_1): Make sure the created header
|
||
name is
|
||
shorter than NAME_FIELD_SIZE bytes.
|
||
* tests/sparse04.at: New testcase.
|
||
* tests/Makefile.am (TESTSUITE_AT): Add sparse04.at.
|
||
* tests/testsuite.at: Include sparse04.at.
|
||
* NEWS: Update.
|
||
|
||
2010-12-07 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tests: make the truncate test smaller and less buggy (tiny change)
|
||
|
||
Reported by Solar Designer in
|
||
<http://lists.gnu.org/archive/html/bug-tar/2010-12/msg00003.html>.
|
||
* tests/truncate.at: Use a smaller test case, and make its
|
||
race condition less likely.
|
||
|
||
2010-11-27 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tests: skip SIGPIPE-dependent tests in environments ignoring
|
||
SIGPIPE
|
||
|
||
Problem reported by Sven Joachim in
|
||
<http://lists.gnu.org/archive/html/bug-tar/2010-11/msg00043.html>.
|
||
* tests/remfiles01.at: Use AT_SIGPIPE_PREREQ.
|
||
* tests/sigpipe.at: Likewise.
|
||
* tests/testsuite.at (AT_SIGPIPE_PREREQ): New macro.
|
||
|
||
2010-11-25 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: work around NetBSD and Tru64 symlink incompatibility
|
||
with POSIX
|
||
|
||
Problem reported by Bruno Haible in
|
||
<http://lists.gnu.org/archive/html/bug-gnulib/2010-11/msg00306.html>.
|
||
* src/extract.c (maybe_recoverable): Also treat EFTYPE (if
|
||
defined)
|
||
and ENOTSUP like ELOOP.
|
||
|
||
2010-11-24 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: adjust to paxutils change: paxexit.c -> paxexit-status.c
|
||
|
||
* lib/Makefile.am (libtar_a_SOURCES): paxexit.c renamed to
|
||
paxexit-status.c.
|
||
|
||
2010-11-24 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: remove unused function dir_removed_diag
|
||
|
||
* src/common.h (dir_removed_diag): Remove unused decl.
|
||
* src/misc.c (dir_removed_diag): Remove unused function.
|
||
|
||
2010-11-23 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: work around FreeBSD symlink incompatibility with POSIX
|
||
|
||
* src/extract.c (maybe_recoverable): Treat EMLINK like ELOOP, for
|
||
FreeBSD. Problem reported by Christian Weisgerber in
|
||
<http://lists.gnu.org/archive/html/bug-tar/2010-11/msg00080.html>.
|
||
|
||
2010-11-23 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* src/names.c: tar: fix bug with --one-file-system
|
||
--listed-incremental
|
||
|
||
Problem (and idea for fix) reported by Martin Weigel
|
||
<http://lists.gnu.org/archive/html/bug-tar/2010-11/msg00071.html>.
|
||
* src/common.h (is_individual_file): Remove decl.
|
||
* src/create.c (dump_file0): Replace "is_individual_file (p)"
|
||
with "top_level".
|
||
* src/incremen.c (procdir): Replace "!is_individual_file
|
||
(name_buffer)" with "st->parent". Fix bug with --one-file-system
|
||
and --listed-incremental.
|
||
* src/names.c (individual_file_table, register_individual_file):
|
||
(is_individual_file): Remove. All uses removed.
|
||
|
||
2010-11-23 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tests: new test listed04 for --one-file-system
|
||
--listed-incremental
|
||
|
||
* tests/Makefile.am (TESTSUITE_AT): Add listed04.at.
|
||
* tests/listed04.at: New file.
|
||
* tests/testsuite.at: Include it.
|
||
|
||
2010-11-23 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
scripts: fix option parsing
|
||
|
||
Problem reported by Dennis Wydra in
|
||
<http://lists.gnu.org/archive/html/bug-tar/2010-11/msg00082.html>.
|
||
* scripts/backup.in: Accept "-l LEVEL". Be more systematic about
|
||
backslashes inside ``; it shouldn't matter for modern shells but
|
||
it might matter for older ones.
|
||
* scripts/restore.in: Likewise.
|
||
* scripts/backup.in: Adjust implementation of -t/--time to match
|
||
the new implementation of -l/--level.
|
||
|
||
2010-11-15 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Issue a warning if the archive being compared contains transformed
|
||
file names.
|
||
|
||
* src/common.h (transform_program_p): New proto.
|
||
* src/transform.c (transform_program_p): New function.
|
||
* src/compare.c (verify_volume): Warn if the archive contains
|
||
transformed file names.
|
||
|
||
2010-11-15 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Minor change.
|
||
|
||
* doc/tar.texi: Reword the description of decompress-program.
|
||
|
||
2010-11-15 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: fix --verify option, which broke in 1.24
|
||
|
||
* NEWS: Document this.
|
||
* src/compare.c (verify_volume): Decode the header before invoking
|
||
diff_archive, as diff_archive no longer does this as of the
|
||
2010-06-28 commit. Also, don't try to invoke diff_archive on a
|
||
zero block.
|
||
* tests/Makefile.am (TESTSUITE_AT): Add verify.at.
|
||
* tests/testsuite.at: Include verify.at.
|
||
* tests/verify.at: New file.
|
||
|
||
2010-11-08 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Merge branch 'master' of ssh://git.sv.gnu.org/srv/git/tar
|
||
|
||
2010-11-08 Jim Meyering <meyering@redhat.com>
|
||
|
||
tests: avoid spurious failure when VERSION_CONTROL envvar is set
|
||
|
||
* tests/backup01.at: Unset VERSION_CONTROL. Otherwise,
|
||
when set to e.g., 'always', it would cause this test to fail.
|
||
|
||
2010-11-07 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Version 1.25
|
||
|
||
* configure.ac: Version 1.25
|
||
* NEWS: Describe the changes.
|
||
|
||
2010-11-05 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Run alternative decompression programs if the principal one is
|
||
not available.
|
||
|
||
Some compression programs are able to handle various compression
|
||
formats
|
||
(e.g. `gzip' can decompress files created by `compress', `xz'
|
||
is able
|
||
to handle lzma, etc.) Tar tries to use such programs for
|
||
decompression
|
||
if the principal decompressor cannot be started.
|
||
|
||
* src/buffer.c (compress_type): Swap ct_none and ct_tar.
|
||
(archive_compression_type): New static variable.
|
||
(zip_magic): Remove program and option fields.
|
||
(zip_program): New structure and static.
|
||
(compress_program): Remove macro.
|
||
(find_zip_program): New static function.
|
||
(first_decompress_program,next_decompress_program): New functions.
|
||
(open_compressed_archive): Set archive_compression_type instead of
|
||
use_compress_program_option.
|
||
* src/common.h (first_decompress_program)
|
||
(next_decompress_program): New functions.
|
||
(WARN_DECOMPRESS_PROGRAM): New flag.
|
||
(WARN_VERBOSE_WARNINGS): Include WARN_DECOMPRESS_PROGRAM.
|
||
* src/warning.c (warning_args): Add "decompress-program".
|
||
(warning_types): Add WARN_DECOMPRESS_PROGRAM.
|
||
* src/system.c (run_decompress_program): New function.
|
||
(sys_child_open_for_uncompress): Use run_decompress_program
|
||
instead of calling execlp directly.
|
||
|
||
2010-11-02 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tests: fix some issues with signals, timestamps, "test" typo
|
||
|
||
* tests/extrac17.at: Add --warning=no-timestamp, to avoid
|
||
bogus warning due to NFS clock skew.
|
||
* tests/remfiles01.at: Discard diagnostics that some shells
|
||
generate about broken pipes.
|
||
* tests/sigpipe.at: Likewise.
|
||
* tests/remfiles01.at: Fix typo: "test $EC" was written where
|
||
"test $EC -ne 0" was intended.
|
||
|
||
2010-11-01 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix extraction of device nodes.
|
||
|
||
* src/extract.c (extract_node): Do not mask out node type.
|
||
The bug was introduced in commit ea964cce.
|
||
|
||
2010-10-28 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: don't cross struct member boundaries with OLDGNU_MAGIC
|
||
|
||
* src/create.c (write_gnu_long_link, start_header): Access
|
||
header->buffer + offsetof (struct posix_header, magic), instead of
|
||
header->header.magic, when reading or writing the OLDGNU_MAGIC
|
||
pattern. The code violates the C standard without this change,
|
||
and GCC warns about this if fortify checking is enabled. It's not
|
||
a bug on traditional (i.e., non-debugging) platforms, but it does
|
||
violate the C standard so it should be fixed. Problem originally
|
||
reported by John Emil Karlson in
|
||
<http://lists.gnu.org/archive/html/bug-tar/2010-04/msg00023.html>.
|
||
* src/list.c (decode_header): Likewise.
|
||
|
||
2010-10-28 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tests: port to sh variants that squirrel away file descriptors
|
||
|
||
OpenBSD /bin/sh, and some other sh variants, squirrel away file
|
||
descriptors before closing them. For example, for "cat 3<&-" they
|
||
first dup file descriptor 3 to a fd that is 10 or greater, then
|
||
close 3 (because if "cat" had been a builtin command like ":" then
|
||
they would have wanted to avoid the fork and restore the fd after
|
||
":" finished); and they treat ordinary (forking) commands the same
|
||
as builtin commands. This approach fails after "ulimit -n 10".
|
||
Work around this deficiency by closing the file descriptors before
|
||
invoking ulimit. Problem reported by Christian Weisgerber in
|
||
<http://lists.gnu.org/archive/html/bug-tar/2010-10/msg00041.html>;
|
||
solution suggested by Jilles Tjoelker in
|
||
<http://article.gmane.org/gmane.comp.shells.dash/415>.
|
||
|
||
* tests/extrac11.at (scarce file descriptors): Close file
|
||
descriptors before invoking ulimit -n.
|
||
|
||
2010-10-27 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Transform file names when updating and appending to archives.
|
||
|
||
This complements 28e91b48.
|
||
|
||
* src/common.h (transform_stat_info): New prototype.
|
||
* src/list.c (transform_stat_info): Remove static qualifier.
|
||
* src/update.c (update_archive): Call transform_stat_info.
|
||
* tests/Makefile.am (TESTSUITE_AT): Add append03.at
|
||
* tests/testsuite.at: Include append03.at
|
||
|
||
2010-10-27 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tests: port to Solaris diff
|
||
|
||
* tests/extrac13.at: Don't assume that "diff -c" outputs nothing
|
||
when there are no differences. This is not true on Solaris,
|
||
where it outputs "No differences encountered".
|
||
|
||
2010-10-27 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: fix -x --overwrite bug (no --dereference, ! O_NOFOLLOW)
|
||
|
||
This bug was discovered on Solaris 8. On older hosts lacking
|
||
O_NOFOLLOW, tar -x --overwrite (without --dereference) follows
|
||
symbolic links, causing the "extract over symlinks" test to fail.
|
||
|
||
* src/extract.c (open_output_file): If O_NOFOLLOW is needed but
|
||
does not work, check for a symlink separately.
|
||
|
||
2010-10-27 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: don't use "((" in shell scripts
|
||
|
||
* tests/extrac11.at: Replace "((" with "( (" in shell scripts, as
|
||
"((" is not portable to the Korn shell, and POSIX 1003.1-2008 says
|
||
that "((" is not portable.
|
||
|
||
2010-10-26 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Make sure name matching occurs before name transformation.
|
||
|
||
The commit 9c194c99 altered that order.
|
||
|
||
* src/list.c (transform_stat_info): New function. Split off from
|
||
decode_header.
|
||
(read_and): Call transform_stat_info right before do_something,
|
||
and after deciding if we should proceed with this member name,
|
||
so that name matching occurs before name transformation.
|
||
|
||
* tests/extrac17.at: New file.
|
||
* tests/Makefile.am (TESTSUITE_AT): Add extrac17.at
|
||
* tests/testsuite.at: Include extrac17.at.
|
||
|
||
2010-10-26 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: don't assume stdin is open when testing fd limits
|
||
|
||
* tests/extrac11.at: Redirect stdin from /dev/null, in case
|
||
the parent 'make' is running with stdin closed.
|
||
|
||
2010-10-26 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Further fixes in bootstrap.
|
||
|
||
* bootstrap: Restore the default for gnulib_path
|
||
(symlink_to_dir): Re-apply 67cad07.
|
||
|
||
2010-10-26 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: fix bug with -C and extracting directories
|
||
|
||
Problem reported by Denis Excoffier in
|
||
<http://lists.gnu.org/archive/html/bug-tar/2010-10/msg00034.html>.
|
||
|
||
* src/extract.c (extract_dir): Use mkdirat, not mkdir.
|
||
* tests/extrac16.at: New file, to test for this bug.
|
||
* tests/Makefile.am (TESTSUITE_AT): Add it.
|
||
* tests/testsuite.at: Include it.
|
||
|
||
This file is a placeholder. It will be replaced with the actual
|
||
ChangeLog
|
||
by make dist. Run make ChangeLog if you wish to create it
|
||
earlier.
|
||
|
||
2010-10-25 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Version 1.24
|
||
|
||
* configure.ac, NEWS: Version 1.24
|
||
* bootstrap: Restore tar-specific code lost during last
|
||
sync from gnulib (241b72ffad).
|
||
* src/misc.c (chdir_do): Remove unused automatic variable.
|
||
|
||
2010-10-16 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: use more-accurate diagnostic when intermediate mkdir fails
|
||
|
||
Without this change, if tar tried to extract a file A/B/C, noticed
|
||
that A/B didn't exist, attempted to mkdir A/B, and the mkdir
|
||
failed, it did not diagnose the mkdir failure, but simply reported
|
||
the failure to open A/B/C. This sometimes led to confusion
|
||
because it wasn't clear what tar was trying to do, in particular
|
||
that tar tried to mkdir A/B. With this patch, tar issues two
|
||
diagnostics in this case: one for A/B and the other for A/B/C.
|
||
Problem reported by Hauke Laging in
|
||
<http://lists.gnu.org/archive/html/bug-tar/2010-10/msg00020.html>.
|
||
* gnulib.modules: Remove faccessat.
|
||
* src/extract.c (make_directories): New arg INTERDIR_MADE.
|
||
Diagnose mkdir failure. Return 0 on success, nonzero on failure,
|
||
as opposed to nonzero iff some directory was created. All callers
|
||
changed. Simplify the code when mkdir fails, by checking whether
|
||
the desired file exists unless errno==EEXIST: this is more robust.
|
||
* tests/extrac15.at: New test, to check this.
|
||
* tests/Makefile.am (TESTSUITE_AT): Add it.
|
||
* tests/testsuite.at: Include it.
|
||
|
||
2010-10-16 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tests: port to NFS file servers with clock skew
|
||
|
||
Several of the tests assumed that a newly created file cannot
|
||
have a time stamp dated in the future. This assumption is not
|
||
true when files are served by a remote host whose clock is
|
||
slightly in advance of ours. Fix the problems that I observed
|
||
when running "make check" a couple of times on such a server.
|
||
|
||
* tests/backup01.at: Use --warning=no-timestamp to suppress
|
||
clock-skew warnings.
|
||
* tests/chtype.at, tests/comprec.at, tests/exclude06.at:
|
||
* tests/extrac01.at, tests/extrac03.at, tests/extrac05.at:
|
||
* tests/extrac06.at, tests/extrac08.at, tests/extrac13.at:
|
||
* tests/extrac14.at, tests/incr01.at, tests/incr03.at,
|
||
tests/link01.at:
|
||
* tests/multiv01.at, tests/multiv02.at, tests/multiv03.at:
|
||
* tests/pipe.at, tests/rename02.at, tests/rename03.at:
|
||
* tests/rename05.at, tests/same-order01.at, tests/same-order02.at:
|
||
* tests/sparse01.at:
|
||
Likewise.
|
||
|
||
2010-10-12 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
gnulib: sync from latest gnulib, notably bootstrap and
|
||
parse-datetime
|
||
|
||
* bootstrap: Sync from gnulib.
|
||
* doc/.gitignore: Rename getdate.texi to parse-datetime.texi.
|
||
* doc/Makefile.am (tar_TEXINFOS): Likewise.
|
||
* doc/tar.texi (Top): Adjust to renaming of getdate to
|
||
parse-datetime.
|
||
* gnulib.modules: Likewise. Also, remove ftruncate (now
|
||
obsolete).
|
||
And add inttostr (we missed this dependency).
|
||
* src/tar.c: Include parse-datetime.h, not getdate.h. All calls
|
||
to get_date replaced with parse_datetime.
|
||
|
||
2010-09-24 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: -x -C symlink fix
|
||
|
||
* src/misc.c (chdir_do): Don't use O_NOFOLLOW when opening the
|
||
argument to -C. This is for consistency with "tar -c -C FOO", and
|
||
matches the new documentation.
|
||
* tests/extrac14.at: New file.
|
||
* tests/Makefile.am (TESTSUITE_AT): Add it.
|
||
* tests/testsuite.at: Include it.
|
||
|
||
2010-09-24 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: --dereference consistency
|
||
|
||
This closes another race condition, that occurs when overwriting a
|
||
symlink with a regular file.
|
||
* NEWS (--dereference consistency): New section.
|
||
* doc/tar.texi (Option Summary): Describe new --deference
|
||
behavior.
|
||
(dereference): Likewise. Remove discussion that I didn't follow,
|
||
even before --dereference was changed.
|
||
* src/common.h (deref_stat, set_file_atime): Adjust signatures.
|
||
* src/compare.c (diff_file, diff_multivol): Respect
|
||
open_read_flags
|
||
instead of rolling our own flags. This implements the new
|
||
behavior
|
||
for --dereference.
|
||
(diff_file, diff_dumpdir): Likewise, for fstatat_flags.
|
||
* src/create.c: Adjust to set_file_atime signature change.
|
||
* src/extract.c (mark_after_links, file_newer_p, extract_dir):
|
||
Likewise.
|
||
* src/incremen.c (try_purge_directory): Likewise.
|
||
* src/misc.c (maybe_backup_file): Likewise.
|
||
* src/extract.c (file_newer_p): New arg STP. All callers changed.
|
||
(maybe_recoverable): New arg REGULAR. All callers changed.
|
||
Handle the case of overwriting a symlink with a regular file,
|
||
when --overwrite is specified but --dereference is not.
|
||
(open_output_file): Add O_CLOEXEC, O_NOCTTY, O_NONBLOCK for
|
||
consistency with file creation. Add O_NOFOLLOW if
|
||
overwriting_old_files && ! dereference_option.
|
||
* src/incremen.c (update_parent_directory): Use fstat, not
|
||
fstatat;
|
||
there's less to go wrong.
|
||
* src/misc.c (deref_stat): Remove DEREF arg. All callers changed.
|
||
Instead, use fstatat_flags.
|
||
(set_file_atime): Remove ATFLAG arg. All callers changed.
|
||
Instead, use fstatat_flags.
|
||
* src/names.c, src/update.c: Adjust to deref_stat signature
|
||
change.
|
||
* src/tar.c (get_date_or_file): Use stat, not deref_stat, as this
|
||
is not a file to be archived.
|
||
* tests/Makefile.am (TESTSUITE_AT): Add extrac13.at.
|
||
* tests/extrac13.at: New file.
|
||
* tests/testsuite.at: Include it.
|
||
|
||
2010-09-20 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: do not crash with --listed-incremental
|
||
|
||
Problem reported by Frantisek Hanzlik in
|
||
<https://bugzilla.redhat.com/635318> via Kamil Dudka in
|
||
<http://lists.gnu.org/archive/html/bug-tar/2010-09/msg00066.html>.
|
||
I don't understand this code either, but Sergey can take a look at
|
||
this patch, and perhaps install a better one, when he has
|
||
the time.
|
||
* src/incremen.c (append_incremental_renames): Don't actually
|
||
append
|
||
anything to DIR if DIR is null.
|
||
|
||
2010-09-19 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: prefer openat-style functions
|
||
|
||
This change replaces traditional functions like 'open' with the
|
||
POSIX.1-2008 functions like 'openat'. Mostly this is an internal
|
||
refactoring change, in preparation for further changes to close
|
||
some races.
|
||
* gnulib.modules: Add faccessat, linkat, mkfifoat, renameat,
|
||
symlinkat.
|
||
Remove save-cwd.
|
||
* src/Makefile.am (tar_LDADD): Add $(LIB_EACCESS).
|
||
* tests/Makefile.am (LDADD): Likewise.
|
||
* src/common.h (chdir_fd): New extern var.
|
||
* src/compare.c (diff_file, diff_multivol): Use openat instead
|
||
of open.
|
||
* src/create.c (create_archive, restore_parent_fd): Likewise.
|
||
* src/extract.c (create_placeholder_file): Likewise.
|
||
* src/names.c (collect_and_sort_names): Likewise.
|
||
* src/update.c (append_file): Likewise.
|
||
* src/compare.c (diff_symlink): Use readlinkat instead of
|
||
readlink.
|
||
* src/compare.c (diff_file): Use chdir_fd instead of AT_FDCWD.
|
||
* src/create.c (subfile_open, dump_file0): Likewise.
|
||
* src/extract.c (fd_chmod, fd_chown, fd_stat, set_stat):
|
||
(repair_delayed_set_stat, apply_nonancestor_delayed_set_stat):
|
||
Likewise.
|
||
* src/extract.c (mark_after_links, file_newer_p, extract_dir):
|
||
(extract_link, apply_delayed_links):
|
||
Use fstatat rather than stat or lstat.
|
||
* src/misc.c (maybe_backup_file, deref_stat): Likewise.
|
||
* src/extract.c (make_directories): Use mkdirat rather than mkdir.
|
||
Use faccessat rather than access. This fixes a minor permissions
|
||
bug when tar is running setuid (who would want to do that?!).
|
||
(open_output_file): Use openat rather than open.
|
||
In the process, this removes support for Masscomp's O_CTG files,
|
||
which aren't compatible with openat's signature. Masscomp! Wow!
|
||
That's a blast from the past. As far as I know, that operating
|
||
system hasn't been supported for more than 20 years.
|
||
(extract_link, apply_delayed_links):
|
||
Use linkat rather than link.
|
||
(extract_symlink, apply_delayed_links):
|
||
Use symlinkat rather than symlink.
|
||
(extract_node): Use mknodat rather than mknod.
|
||
(extract_fifo): Use mkfifoat rather than mkfifo.
|
||
(apply_delayed_links): Use unlinkat rather than unlink or rmdir.
|
||
* src/misc.c (safer_rmdir, remove_any_file): Likewise.
|
||
* src/unlink.c (flush_deferred_unlinks): Likewise.
|
||
* src/extract.c (rename_directory): Use renameat rather than
|
||
rename.
|
||
* src/misc.c (maybe_backup_file, undo_last_backup): Likewise.
|
||
* src/misc.c: Don't include <save-cwd.h>; no longer needed now
|
||
that we're using openat etc.
|
||
(struct wd): Add member fd. Remove members err and fd. All uses
|
||
changed.
|
||
(CHDIR_CACHE_SIZE): New constant.
|
||
(wdcache, wdcache_count, chdir_fd): New vars.
|
||
(chdir_do): Use openat rather than save_cwd. Keep the cache up
|
||
to date. This code won't scale well, but is good enough for now.
|
||
* src/update.c (update_archive): Use openat + fdopendir +
|
||
streamsavedir rather than savedir.
|
||
|
||
This file is a placeholder. It will be replaced with the actual
|
||
ChangeLog
|
||
by make dist. Run make ChangeLog if you wish to create it
|
||
earlier.
|
||
|
||
2010-09-18 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: add utimens.h includes
|
||
|
||
* src/extract.c: Include <utimens.h>, needed for fdutimens
|
||
prototype.
|
||
* src/misc.c: Likewise.
|
||
|
||
2010-09-18 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: switch to gnulib fdutimensat module
|
||
|
||
* gnulib.modules: Add fdutimensat.
|
||
* src/common.h (fd_utimensat): Remove decl.
|
||
* src/extract.c (set_stat): Call fdutimensat, not fd_utimensat.
|
||
* src/misc.c (set_file_atime): Likewise.
|
||
(fd_utimensat): Remove.
|
||
|
||
2010-09-17 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: extract permissions for . last
|
||
|
||
* src/common.h (must_be_dot_or_slash): New decl.
|
||
* src/extract.c (mark_after_links): New function, taking code
|
||
that used to be in create_placeholder_file.
|
||
(create_placeholder_file): Use it.
|
||
(delay_set_stat): Always delay setting status for . and /.
|
||
* src/misc.c (must_be_dot_or_slash): Now extern.
|
||
* tests/extrac12.at: New file.
|
||
* tests/Makefile.am (TESTSUITE_AT): Add it.
|
||
* tests/testsuite.at: Likewise.
|
||
|
||
2010-09-17 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: don't check for getdtablesize; use AC_CHECK_FUNCS_ONCE
|
||
|
||
* configure.ac: Don't check for getdtablesize; no longer needed.
|
||
Use AC_CHECK_FUNCS_ONCE rather than AC_CHECK_FUNCS, for
|
||
efficiency.
|
||
|
||
2010-09-17 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: extract symlink attributes, close some symlink-related races
|
||
|
||
* NEWS: Describe symlink-extraction improvements.
|
||
* src/extract.c (enum permstatus): Remove.
|
||
(fchmod, fchown): Define dummy replacement macros if the system
|
||
does not supply them.
|
||
(implemented): New function.
|
||
(struct delayed_set_stat): Remove members invert_permissions,
|
||
permstatus. They were too confusing, and tried to do too much
|
||
in too-little space. Instead, add members current_mode,
|
||
current_mode_mask, interdir, atflag. All users changed.
|
||
(struct delayed_link): Add members mode, atime, mtime, to support
|
||
platforms such as BSD where symlinks have these attributes.
|
||
All users changed.
|
||
(fd_chmod): Renamed from fdchmod. New argument atflag. Check for
|
||
operation not supported at run-time, not at configure-time. Put
|
||
fd argument first. All callers changed.
|
||
(fd_chown): Likewise, renaming from fdchown.
|
||
(fd_stat): Likewise, renaming from fdstat.
|
||
(set_mode): Remove args stat_info, cur_info, invert_permissions,
|
||
permstatus. Add args mode, mode_mask, current_mode,
|
||
current_mode_mask,
|
||
atflag. All callers changed. Close some races. Use an easier-to
|
||
understand method for computing permissions. Work around POSIX
|
||
incompatibility in Linux fchmodat. Support extraction of symlink
|
||
modes, if the OS allows it.
|
||
(set_stat): Remove args cur_info, invert_permissions, permstatus.
|
||
Add args current_mode, current_mode_mask, interdir, atflag.
|
||
All callers changed. Close some races. Support extraction of
|
||
attributes on symlinks, if the OS allows it.
|
||
(delay_set_stat): Remove args invert_permissions, permstatus.
|
||
Add args current_mode, current_mode_mask, mode, atflag.
|
||
The ST arg can be null now, indicating that it's an intermediate
|
||
directory. All callers changed.
|
||
(repair_delayed_set_stat, apply_nonancestor_delayed_set_stat):
|
||
Close some races.
|
||
(extract_dir): Also be paranoid if only --same-permissions, due
|
||
to semantics of setgid and setuid directories on some hosts.
|
||
This closes a race on those hosts. Simplify calculation of
|
||
delay_set_stat arguments; the old code was truly strange and
|
||
probably wrong in some border cases.
|
||
(extract_dir, extract_file, extract_node, extract_fifo): Don't
|
||
rely on
|
||
unspecified behavior in mode arg of open, mknod, etc. Instead,
|
||
mask out those bits when creating the file, and add them later via
|
||
fchmod or chmodat.
|
||
(open_output_file): file_name is now const. Add arg current_mode,
|
||
current_mode_mask. All callers changed. When overwriting
|
||
old files,
|
||
refuse to overwrite something that is not a regular file, since
|
||
we're extracting a regular file.
|
||
(extract_file): Remove the FIXME comment. Whatever the protection
|
||
issues were, they should be fixed now. As a result of all
|
||
the other
|
||
API changes, we now use fchmod etc. rather than chmod etc.,
|
||
closing
|
||
some races.
|
||
(create_placeholder_file, apply_delayed_links): Record desired
|
||
mode and times for symlinks, for OSes that support that.
|
||
|
||
2010-09-16 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: tar -x without --incremental no longer sets atime again
|
||
|
||
* src/extract.c (set_stat): Use UTIME_OMIT rather than UTIME_NOW.
|
||
The UTIME_NOW was there only to emulate the previous behavior of
|
||
using the current time, and the previous behavior was there only
|
||
because before we started assuming POSIX.1-2008 there was no
|
||
portable way to get the effect of UTIME_NOW.
|
||
|
||
2010-09-16 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: another --atime-preserve race fix
|
||
|
||
* src/common.h (set_file_atime): Add parentfd arg.
|
||
* src/compare.c (diff_file): Use it.
|
||
* src/create.c (dump_file0): Likewise. This closes yet another
|
||
race condition with symbolic links.
|
||
* src/misc.c (set_file_atime): Add parentfd arg.
|
||
|
||
2010-09-16 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: --atime-preserve fixes for races etc.
|
||
|
||
This patch fixes a race condition in the --atime-preserve=replace
|
||
option, which might cause tar to improperly follow a symbolic
|
||
link.
|
||
|
||
It also drops the use of the _FIOSATIME ioctl of Solaris 2.x
|
||
and later, which loses resolution on time stamps. Modern Solaris
|
||
systems support full-resolution time stamps in the kernel, and
|
||
it's not worth the hassle of testing this call, useful only in
|
||
no-longer-supported Solaris variants.
|
||
|
||
Also, it undoes a change I recently introduced to the --compare
|
||
option, which caused it to not follow symbolic links unless the
|
||
--dereference option was also used. Quite possibly this change is
|
||
a good idea, but the old behavior was documented and the change
|
||
should not have been installed casually.
|
||
|
||
* configure.ac: Don't check for stropts.h and sys/filio.h.
|
||
* gnulib.modules: Add futimens, utimensat. Remove futimens.
|
||
* src/common.h (fd_utimensat): New decl.
|
||
* src/compare.c (diff_file, diff_multivol):
|
||
Don't use open_read_flags: those are for --create only.
|
||
* src/create.c (dump_file0): Adjust to set_file_atime changes.
|
||
Pass fstatat_flags to set_file_atime, so that symbolic links are
|
||
not followed inadvertently.
|
||
* src/extract.c: Don't include utimens.h.
|
||
(set_stat): Use fd_utimensat ant UTIME_NOW rather than fdutimens.
|
||
* src/misc.c: Don't include utimens.h, stropts.h, sys/filio.h.
|
||
(fd_utimensat): New function.
|
||
(set_file_atime): Use it. New arg atflag, controlling symlink
|
||
handling. All callers changed.
|
||
|
||
2010-09-14 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* configure.ac: tar: close some race conditions when extracting
|
||
|
||
* configure.ac: Check for fchmod and fchown. Don't check
|
||
for utimes.
|
||
* src/extract.c (fdchmod, fdchown, fdstat): New functions.
|
||
(set_mode, set_stat): New arg FD. All callers changed.
|
||
This avoids some race conditions between closing a regular file
|
||
and setting its metadata, and it's a bit faster.
|
||
|
||
2010-09-13 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: don't worry about fdopendir closing its argument
|
||
|
||
* NEWS: Don't mention dirfd; no longer needed.
|
||
* gnulib.modules: Remove dirfd.
|
||
* src/create.c (get_directory_entries): Remove the code dealing
|
||
with dirfd failures, as the new fdopendir replacement doesn't
|
||
close its argument so we don't need to call dirfd. See
|
||
<http://lists.gnu.org/archive/html/bug-gnulib/2010-09/msg00208.html>
|
||
and gnulib commit 970c9038e4cca46e1b037ae0a6d574dfae6a7327.
|
||
|
||
2010-09-13 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* NEWS: Fix wording typo in previous change.
|
||
|
||
Reported by Jim Meyering.
|
||
|
||
2010-09-13 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: live within system-supplied limits on file descriptors
|
||
|
||
* NEWS: Note the change. Mention dirfd and fdopendir.
|
||
* gnulib.modules: Add dirfd and fdopendir. The code was already
|
||
using fdopendir; dirfd is a new need.
|
||
* src/common.h (open_searchdir_flags, get_directory_entries):
|
||
(subfile_open, restore_parent_fd, tar_stat_close): New decls.
|
||
(check_exclusion_tags): Adjust signature to match code change.
|
||
* src/create.c (IMPOSTOR_ERRNO): New constant.
|
||
(check_exclusion_tags): First arg is now a struct tar_stat_info
|
||
const *, not an fd. All callers changed.
|
||
(dump_regular_file, dump_file0): A zero fd represents an unused
|
||
slot, so play it safe if the fd member is zero here. A negative
|
||
fd represents the negation of an errno value, so play it safe and
|
||
do not assign -1 to fd merely because an open fails.
|
||
(open_failure_recover, get_directory_entries, restore_parent_fd):
|
||
(subfile_open): New functions. These help to recover from file
|
||
descriptor exhaustion.
|
||
(dump_dir, dump_file0): Use them.
|
||
(dump_file0): Use tar_stat_close instead of rolling our own close.
|
||
* src/incremen.c (scan_directory): Use get_directory_entries,
|
||
subfile_open, etc., to recover from file descriptor exhaustion.
|
||
* src/names.c (add_hierarchy_to_namelist): Likewise.
|
||
(collect_and_sort_names): A negative fd represents the negation
|
||
of an errno value, so play it safe and do not assign -1 to fd.
|
||
* src/tar.c (decode_options): Set open_searchdir_flags.
|
||
Add O_CLOEXEC to all the open flags.
|
||
(tar_stat_close): New function, which knows how to deal with
|
||
new convention for directory streams and file descriptors.
|
||
Diagnose 'close' failures.
|
||
(tar_stat_destroy): Use it.
|
||
* src/tar.h (struct tar_stat_info): New member dirstream.
|
||
fd now has the negative of an errno value, not merely -1, if
|
||
the file could not be opened, so that failures to reopen
|
||
directories
|
||
are better-diagnosed later.
|
||
* tests/Makefile.am (TESTSUITE_AT): Add extrac11.at.
|
||
* tests/testsuite.at: Likewise.
|
||
* tests/extrac11.at: New file.
|
||
|
||
2010-09-08 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: improve documentation of reliability and security issues
|
||
|
||
* doc/tar.texi (Reliability and security, Reliability):
|
||
(Permissions problems, Data corruption and repair, Race
|
||
conditions):
|
||
(Security, Privacy, Integrity, Live untrusted data):
|
||
(Security rules of thumb): New nodes.
|
||
|
||
2010-09-06 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: more reliable directory traversal when creating archives
|
||
|
||
* NEWS: Document this.
|
||
* gnulib.modules: Add openat, readlinkat.
|
||
* src/common.h (open_read_flags, fstatat_flags): New global
|
||
variables.
|
||
(cachedir_file_p, dump_file, check_exclusion_tags,
|
||
scan_directory):
|
||
Adjust to new signatures, described below.
|
||
(name_fill_directory): Remove.
|
||
* src/compare.c (diff_file, diff_multivol): Use open_read_flags.
|
||
* src/create.c (struct exclusion_tag): Exclusion predicates
|
||
now take
|
||
a file descriptor, not a file name.
|
||
(add_exclusion_tag): Likewise. All uses changed.
|
||
(cachedir_file_p): Likewise.
|
||
(check_exclusion_tags): The directory is now a file descriptor,
|
||
not a file name. All uses changed. Use openat for better
|
||
traversal.
|
||
(file_dumpable_p): Arg is now a struct stat, not a struct
|
||
tar_stat_info. All uses changed. Check the arg's file types too.
|
||
(dump_dir0, dump_dir, dump_file0, dump_file): Omit top_level and
|
||
parent_device args, since st->parent tells us that now. All uses
|
||
changed.
|
||
(dump_dir): Likewise. Also, omit fd arg for similar reasons.
|
||
Apply fdsavedir to a dup of the file descriptor, since we need a
|
||
file descriptor for openat etc. as well, and fdsavedir (perhaps
|
||
unwisely) consumes its file descriptor when successful.
|
||
Do not consume st->fd when successful; this simplifies the caller.
|
||
(create_archive): Allocate a file descriptor when retraversing
|
||
a directory, during incremental dumps.
|
||
(dump_file0): Use fstatat, openat, and readlinkat for better
|
||
traversal.
|
||
When opening a file, use the result of fstat on the file
|
||
descriptor
|
||
rather than the fstatat on the directory entry, to avoid some race
|
||
conditions. No need to reopen the directory since we now
|
||
no longer
|
||
close it. Change "did we open the file?" test from 0 <= fd to
|
||
0 < fd since fd == 0 now represents uninitialized.
|
||
(dump_file): Now accepts struct tar_stat_info describing parent,
|
||
not parent_device. Also, accept basename and fullname of entry.
|
||
All uses changed.
|
||
* src/incremen.c (update_parent_directory): Accept struct
|
||
tar_stat_info for parent, not name. All callers changed.
|
||
Use fstatat for safer directory traversal.
|
||
(procdir): Accept struct tar_stat_info, not struct stat and
|
||
dev_t, for info about directory. All callers changed.
|
||
(scan_directory): Accept struct tar_stat_info, not name,
|
||
device, and cmdline, for info about directory. All callers
|
||
changed. Do not consume the file descriptor, since caller
|
||
might need it. Use fstatat and openat for safer directory
|
||
traversal; also, use fstat after opening to double-check.
|
||
(name_fill_directory): Remove.
|
||
* src/names.c (add_hierarchy_to_namelist): Accept struct
|
||
tar_stat_info instead of device and cmdline. All callers changed.
|
||
When descending into a subdirectory, use openat and fstat for
|
||
safer directory traversal.
|
||
(collect_and_sort_names): Use open and fstat for safer directory
|
||
traversal. Set up struct tar_stat_info for callee's new API.
|
||
* src/tar.c (decode_options): Initialize open_read_flags
|
||
and fstatat_flags.
|
||
(tar_stat_destroy): Close st->fd if it is positive (not zero!).
|
||
* src/tar.h (struct tar_stat_info): New members parent, fd.
|
||
* src/update.c (update_archive): Adjust to dump_file's API change.
|
||
* tests/filerem02.at: Ignore stderr since its contents now depend
|
||
on the file system implementation.
|
||
|
||
2010-09-05 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: remove lint discovered by Sun C compiler
|
||
|
||
* src/common.h (WARN_ALL): Don't mask with 0xffffffff; on a 32-bit
|
||
host, 0xffffffff is of type 'unsigned int', which makes WARN_ALL
|
||
an unsigned int value that is too large to fit into an int, and
|
||
the C standard says that this has undefined behavior. The mask is
|
||
not needed, so omit it.
|
||
|
||
2010-09-04 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: restore macros that are used in some cases
|
||
|
||
* src/tar.c (LOW_DENSITY_NUM, MID_DENSITY_NUM, HIGH_DENSITY_NUM):
|
||
Restore these macros, undoing the previous change to this file.
|
||
The macros are used after all, in some cases. Sorry about that.
|
||
|
||
2010-09-03 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: remove unused macros
|
||
|
||
* src/create.c (UINTMAX_TO_CHARS): Remove; no longer used.
|
||
* src/tar.c (LOW_DENSITY_NUM, MID_DENSITY_NUM, HIGH_DENSITY_NUM):
|
||
Likewise.
|
||
* src/incremen.c (DIR_IS_NEW): Comment out; not used.
|
||
Mark this with a FIXME, since it looks like it should be used.
|
||
|
||
2010-08-27 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix --remove-files in update/append mode.
|
||
|
||
* src/update.c (update_archive): Call finish_deferred_unlinks when
|
||
done.
|
||
|
||
2010-08-26 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: avoid assumptions about root access and chmod -w in test
|
||
cases
|
||
|
||
* tests/extrac07.at, tests/extrac09.at, tests/listed03.at: Use
|
||
AT_UNPRIVILEGED_PREREQ, since this test requires non-root
|
||
privileges.
|
||
* tests/extrac07.at: Don't use "chmod -w", as POSIX says it's not
|
||
portable to start a chmod permissions-list with "-" as it may be
|
||
confused with an option. Use "chmod a-w" instead.
|
||
|
||
2010-08-26 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: fix bug with -C and delayed setting of metadata
|
||
|
||
* src/common.h (chdir_current): New decl.
|
||
* src/extract.c (struct delayed_set_stat, struct delayed_link):
|
||
New member change_dir.
|
||
(delay_set_stat, create_placeholder_file): Set it.
|
||
(apply_nonancestor_delayed_set_stat, apply_delayed_links): Use it.
|
||
(extract_link): Check that the links are all relative to the same
|
||
directory.
|
||
(extract_archive): Restore the current directory after
|
||
apply_nonancestor_delayed_set_stat has possibly changed it.
|
||
* src/misc.c (chdir_current): New external var; this used to
|
||
be the private static variable 'previous' inside chdir_dir.
|
||
All uses changed.
|
||
* tests/Makefile.am (TESTSUITE_AT): New test extrac10.at.
|
||
* tests/extrac10.at: New file.
|
||
* tests/testsuite.at: Include it.
|
||
|
||
2010-08-25 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Don't apply file transformations to volume names.
|
||
|
||
* src/list.c (decode_header): Don't apply file transformations
|
||
to volume names.
|
||
* tests/xform01.at: New testcase.
|
||
* tests/xform-h.at (xform): Rename macro to xformtest. Use
|
||
pushdef/popdef.
|
||
* tests/Makefile.am, tests/testsuite.at: Add xform01.at
|
||
|
||
2010-08-25 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: optimize -c --sparse when file is entirely sparse
|
||
|
||
* src/sparse.c (sparse_scan_file): If the file is entirely sparse,
|
||
that is, if ST_NBLOCKS is zero, don't bother scanning for nonzero
|
||
blocks. Idea by Kit Westneat, communicated by Bernd Schubert in
|
||
<http://lists.gnu.org/archive/html/bug-tar/2010-08/msg00038.html>.
|
||
Also, omit unnecessary lseek at start of file.
|
||
|
||
2010-08-25 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: don't assume size of a sparse file chunk fits in size_t
|
||
|
||
* src/tar.h (struct sp_array): Change numbytes from size_t
|
||
to off_t.
|
||
All uses changed.
|
||
* scripts/xsparse.c (struct sp_array): Likewise.
|
||
Include <stdint.h>, for SIZE_MAX.
|
||
(expand_sparse): Don't try to allocate a buffer bigger than
|
||
SIZE_MAX bytes.
|
||
* src/common.h (SIZE_TO_CHARS, size_to_chars, SIZE_FROM_HEADER):
|
||
(size_from_header): Remove decls.
|
||
* src/create.c (size_to_chars): Remove.
|
||
* src/list.c (size_from_header): Remove.
|
||
* src/sparse.c (sparse_extract_region, check_data_region):
|
||
(oldgnu_add_sparse, oldgnu_store_sparse_info, pax_decode_header):
|
||
Don't assume chunk sizes fit in size_t.
|
||
(oldgnu_add_sparse): Check for off_t overflow.
|
||
* src/xheader.c (sparse_numbytes_decoder, sparse_map_decoder):
|
||
Likewise.
|
||
|
||
2010-08-25 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: use ctime, not mtime, when checking placeholders
|
||
|
||
* src/extract.c (struct delayed_link): Rename member mtime
|
||
to ctime.
|
||
All uses changed to use ctime rather than mtime.
|
||
|
||
2010-08-24 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: add comment to link04.at test
|
||
|
||
* tests/link04.at: Add explanatory comment at head.
|
||
|
||
2010-08-24 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: fix 1.23 Solaris regression related to PRIV_SYS_LINKDIR
|
||
|
||
The idea was suggested by Petr Sumbera in the thread starting
|
||
here:
|
||
http://lists.gnu.org/archive/html/bug-tar/2010-08/msg00000.html
|
||
* src/extract.c (set_mode): Save the errno of the chmod that
|
||
failed, for the benefit of chmod_error_details. Do not bother
|
||
retrying chmod unless the mode suggests setuid is the issue.
|
||
(extract_archive): Remove redundant call to
|
||
priv_set_remove_linkdir.
|
||
* src/system.c: Include priv-set.h.
|
||
(sys_spawn_shell, sys_child_open_for_compress):
|
||
(sys_child_open_for_uncompress, sys_exec_command):
|
||
(sys_exec_info_script, sys_exec_checkpoint_script):
|
||
Invoke priv_set_restore_linkdir before execv or execlp, so that
|
||
the subprocess has the same privileges that tar originally did.
|
||
|
||
2010-08-24 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: handle files that occur multiple times but have link count 1
|
||
|
||
This patch was inspired by the following patch that addressed a
|
||
similar problem in GNU coreutils du:
|
||
http://git.savannah.gnu.org/gitweb/?p=coreutils.git;h=efe53cc72b599979ea292754ecfe8abf7c839d22
|
||
* src/common.h (name_count): New decl.
|
||
* src/create.c (trivial_link_count): New static var.
|
||
(create_archive): Initialize it.
|
||
(dump_hard_link, file_count_links): Use it, so that files with
|
||
link count 1 are handled correctly when they are found multiple
|
||
times.
|
||
* src/names.c (allocated_entries): Renamed from allocated_names,
|
||
since the identifier's name was misleading. All uses changed.
|
||
(entries): Renamed from names. All uses changed.
|
||
(scanned): Renamed from name_index. All uses changed.
|
||
(name_count): New var.
|
||
(name_add_name): Increment it.
|
||
* tests/link04.at: New file.
|
||
* tests/testsuite.at: Add it.
|
||
* tests/Makefile.am (TESTSUITE_AT): Likewise.
|
||
|
||
2010-08-23 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: use nlink_t for link counts
|
||
|
||
* src/create.c (struct link): nlink is now of type nlink_t,
|
||
not size_t.
|
||
|
||
2010-08-23 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: don't export names that aren't used elsewhere
|
||
|
||
* src/common.h (file_dumpable_p, gid_to_chars, major_to_chars):
|
||
(minor_to_chars, mode_to_chars, uid_to_chars, uintmax_to_chars):
|
||
(string_to_chars, dumpdir_creat0, dumpdir_create, dumpdir_free):
|
||
(dumpdir_locate, dumpdir_next, dumpdir_first, gid_from_header):
|
||
(major_from_header, minor_from_header, mode_from_header):
|
||
(time_from_header, uid_from_header, quote_copy_string,
|
||
request_stdin):
|
||
(xheader_init, transform_header_name):
|
||
Remove declarations; these are no longer exported from their
|
||
modules.
|
||
(GID_TO_CHARS, MAJOR_TO_CHARS, MINOR_TO_CHARS, MODE_TO_CHARS):
|
||
(UID_TO_CHARS, UINTMAX_TO_CHARS, UNAME_TO_CHARS, GNAME_TO_CHARS):
|
||
Move to src/create.c, since no other module uses these.
|
||
(GID_FROM_HEADER, MAJOR_FROM_HEADER, MINOR_FROM_HEADER):
|
||
(MODE_FROM_HEADER, TIME_FROM_HEADER, UID_FROM_HEADER):
|
||
Move to src/extract.c, since no other module uses these.
|
||
(dumpdir_t, dumpdir_iter_t): Remove; no longer used.
|
||
* src/create.c (gid_to_chars, major_to_chars, minor_to_chars):
|
||
(mode_to_chars, uid_to_chars, uintmax_to_chars, string_to_chars):
|
||
(file_dumpable_p): Now static.
|
||
* src/incremen.c (dumpdir_create0, dumpdir_create, dumpdir_free):
|
||
(dumpdir_locate, dumpdir_next, dumpdir_first): Now static.
|
||
(scan_directory, write_directory_file_entry):
|
||
Use struct dumpdir_iter * rather than dumpdir_iter_t.
|
||
* src/list.c (gid_from_header, major_from_header,
|
||
minor_from_header):
|
||
(mode_from_header, time_from_header, uid_from_header):
|
||
(transform_member_name): Now static.
|
||
* src/misc.c (quote_copy_string): #if 0 out, as it's not used
|
||
anywhere.
|
||
* src/system.c (wait_for_grandchild): Now static.
|
||
* src/tar.c (request_stdin): Now static.
|
||
* src/xheader.c (xheader_init): Now static.
|
||
|
||
2010-08-23 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: fix misspelled identifier "set_comression_program_by_suffix"
|
||
|
||
* src/suffix.c (set_compression_program_by_suffix): Renamed from
|
||
set_comression_program_by_suffix.
|
||
* src/buffer.c, src/common.h, src/tar.c: All uses changed.
|
||
|
||
2010-08-20 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: change interdir_made from int to bool
|
||
|
||
* src/extract.c (maybe_recoverable, create_placeholder_file):
|
||
Change interdir_made from int * to bool *, since the flag has just
|
||
two values 0 and 1. All uses changed. This does not affect tar's
|
||
behavior.
|
||
|
||
2010-08-20 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: remove trailing white space from source files
|
||
|
||
* ChangeLog.1, ChangeLog.CVS, Makefile.am, NEWS, README:
|
||
* README-hacking, directory, doc/Makefile.am, doc/dumpdir.texi:
|
||
* doc/gendocs_template, doc/intern.texi, doc/mastermenu.el:
|
||
* doc/snapshot.texi, doc/sparse.texi, doc/tar-snapshot-edit.texi:
|
||
* doc/value.texi, lib/Makefile.am, scripts/backup-specs:
|
||
* scripts/dump-remind.in, scripts/tar-snapshot-edit,
|
||
scripts/tarcat:
|
||
* scripts/xsparse.c, src/arith.h, src/buffer.c, src/compare.c:
|
||
* src/create.c, src/delete.c, src/exit.c, src/suffix.c, src/tar.c:
|
||
* src/tar.h, src/update.c, src/warning.c, src/xheader.c:
|
||
* tests/append01.at, tests/append02.at, tests/atlocal.in:
|
||
* tests/delete03.at, tests/exclude.at, tests/exclude06.at:
|
||
* tests/extrac04.at, tests/extrac05.at, tests/extrac06.at:
|
||
* tests/extrac07.at, tests/filerem01.at, tests/filerem02.at:
|
||
* tests/incr01.at, tests/incr02.at, tests/incr03.at,
|
||
tests/incr06.at:
|
||
* tests/label02.at, tests/label03.at, tests/label04.at:
|
||
* tests/label05.at, tests/link02.at, tests/link03.at:
|
||
* tests/listed01.at, tests/listed02.at, tests/long01.at:
|
||
* tests/longv7.at, tests/multiv01.at, tests/multiv02.at:
|
||
* tests/multiv03.at, tests/multiv05.at, tests/multiv06.at:
|
||
* tests/multiv07.at, tests/multiv08.at, tests/options.at:
|
||
* tests/options02.at, tests/remfiles03.at, tests/rename01.at:
|
||
* tests/rename02.at, tests/rename03.at, tests/rename04.at:
|
||
* tests/rename05.at, tests/same-order01.at, tests/same-order02.at:
|
||
* tests/shortfile.at, tests/shortupd.at, tests/sparse01.at:
|
||
* tests/sparse02.at, tests/sparsemv.at, tests/sparsemvp.at:
|
||
* tests/star/README, tests/star/gtarfail2.at:
|
||
* tests/star/multi-fail.at:
|
||
* tests/star/pax-big-10g.at, tests/star/quicktest.sh:
|
||
* tests/star/ustar-big-2g.at, tests/star/ustar-big-8g.at:
|
||
* tests/update01.at, tests/update02.at, tests/volsize.at:
|
||
* tests/volume.at:
|
||
Remove trailing spaces and tabs from lines, and remove
|
||
trailing empty lines from files. This makes it a bit easier
|
||
to share code among coreutils and other projects that do this.
|
||
|
||
2010-08-19 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: update licenses to latest versions from www.gnu.org
|
||
|
||
* COPYING: Update to latest version; this is just minor
|
||
formatting.
|
||
* doc/fdl.texi: Update from GFDL 1.2 to 1.3.
|
||
* doc/tar.texi: Adjust to new format of fdl.texi. Omit trailing
|
||
white space.
|
||
|
||
2010-07-18 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* src/misc.c (struct wd): Fix comment to match code.
|
||
|
||
2010-07-18 Paul R. Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: no need to report getcwd error if never using the result
|
||
|
||
* src/misc.c (struct wd): Rename 'saved' to 'err', with new
|
||
semantics.
|
||
(chdir_arg, chdir_do): Adjust to new semantics. Do not report an
|
||
error merely because save_cwd fails; report an error only if
|
||
save_cwd's result is needed later.
|
||
* tests/extrac09.at: New file, to test for bug that was fixed.
|
||
* tests/testsuite.at: Include it.
|
||
* tests/Makefile.am (TESTSUITE_AT): Add it.
|
||
|
||
2010-07-18 Paul R. Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: go back to absolutifying filenames in normalize_filename
|
||
for now
|
||
|
||
* src/misc.c (normalize_filename): For now, go back to making
|
||
filenames absolute, even though this causes 'tar' to fail when
|
||
getcwd fails. However, do not attempt to resolve ".." as this
|
||
does not work with symlinks. Also, do the right thing with
|
||
leading file system prefixes and on hosts where // != /.
|
||
|
||
2010-07-17 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Allow for size suffixes in -L and --record-size options.
|
||
|
||
* src/tar.c (TAR_SIZE_SUFFIXES): New define.
|
||
(parse_opt): Allow for size suffixes in arguments to
|
||
-L and --record-size options.
|
||
* NEWS, doc/tar.texi: Update.
|
||
|
||
2010-07-15 Paul R. Eggert <eggert@cs.ucla.edu>
|
||
|
||
tar: don't crash if getcwd fails
|
||
|
||
* src/extract.c: Don't include xgetcwd.h.
|
||
(extract_dir): stat "." rather than statting getcwd's output.
|
||
* src/misc.c (normalize_filename_x): Rewrite so as not to resolve
|
||
/../, which can't be done reliably in the presence of symlinks.
|
||
Don't reject valid names such as ".".
|
||
(normalize_filename): Don't make it absolute; that way, we don't
|
||
have to invoke xgetcwd which might fail. Don't bother to realloc
|
||
at the end, since that uses time and now saves little space.
|
||
(chdir_do): Don't crash if xgetcwd fails.
|
||
* tests/Makefile.am (TESTSUITE_AT): Add listed03.at.
|
||
* tests/listed03.at: New file.
|
||
* tests/testsuite.at: Include listed03.at.
|
||
|
||
2010-07-11 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Keep a detailed map of archive members stored in the record
|
||
buffer.
|
||
|
||
A separate map (bufmap) provides information for creating
|
||
multi-volume continuation headers.
|
||
|
||
* src/buffer.c (bufmap): New struct.
|
||
(bufmap_head, bufmap_tail, inhibit_map): New variables.
|
||
(mv_begin_write): New function.
|
||
(mv_begin): Rename to mv_begin_read. Rewrite using mv_begin_write.
|
||
All callers changed.
|
||
(mv_total_size): Remove.
|
||
(bufmap_locate, bufmap_free, bufmap_reset): New functions.
|
||
(_flush_write): Update bufmap.
|
||
(close_archive): Free bufmap.
|
||
(add_chunk_header): Take a bufmap argument.
|
||
(gnu_add_multi_volume_header): Likewise.
|
||
(add_multi_volume_header): Likewise.
|
||
(_gnu_flush_write): Rewrite using bufmap.
|
||
(real_s_name, real_s_totsize)
|
||
(real_s_sizeleft)
|
||
(save_name, save_totsize, save_sizeleft): Removed. All
|
||
uses updated.
|
||
(mv_size_left): Update bufmap_head.
|
||
(mv_end): Rewrite.
|
||
(multi_volume_sync): Remove.
|
||
|
||
* src/common.h (mv_begin_write): New prototype.
|
||
(mv_begin): Rename to mv_begin_read.
|
||
* src/create.c: Use mv_begin_write instead of mv_begin.
|
||
Remove calls to mv_size_left and mv_end.
|
||
* src/sparse.c: Likewise.
|
||
|
||
* tests/multiv07.at: Close stdin.
|
||
* tests/spmvp00.at: Update AT_KEYWORDS.
|
||
* tests/spmvp10.at: Likewise.
|
||
|
||
* tests/multiv08.at: New testcase.
|
||
* tests/Makefile.am, tests/testsuite.at: Add multiv08.at.
|
||
|
||
2010-07-11 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Version 1.23.90
|
||
|
||
* NEWS, configure.ac: Version 1.23.90
|
||
* doc/tar.texi: Document the use of lbzip2.
|
||
|
||
2010-06-28 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix exclusion of long file names when extracting from pax format
|
||
archives.
|
||
|
||
* src/list.c (read_and): Call decode_header before attempting
|
||
name_match.
|
||
(list_archive): Remove call to decode_header.
|
||
|
||
* src/compare.c (diff_archive): Remove call to decode_header.
|
||
* src/extract.c (extract_archive): Likewise.
|
||
|
||
* test/exclude06.at: New test case.
|
||
* tests/testsuite.at: Include exclude06.at.
|
||
* tests/Makefile.am (TESTSUITE_AT): Add exclude06.at.
|
||
|
||
2010-06-28 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Minor fix.
|
||
|
||
* src/buffer.c (magic): Split the character constant to help
|
||
cc recognize character boundaries (7 is a valid hex character).
|
||
|
||
2010-06-27 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Minor fix.
|
||
|
||
* src/buffer.c (magic): Fix xz magic.
|
||
|
||
2010-06-16 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Remove some lint, found by gcc -W etc.
|
||
|
||
* src/common.h (label_notfound): New decl.
|
||
* src/buffer.c (set_volume_start_time, compress_type):
|
||
(guess_seekable_archive, open_compressed_archive, init_buffer):
|
||
(_flush_write, archive_is-dev, increase_volume_number):
|
||
(change_tape_menu, try_new_volume, add_chunk_header):
|
||
(multi_volume_sync):
|
||
Declare as 'static' if it's not exported.
|
||
Use function prototype (void) rather than old-style ().
|
||
* src/checkpoint.c (expand_checkpoint_string): Likewise.
|
||
* src/incremen.c (dirlist_replace_prefix, makedumpdir,
|
||
read_incr_db_2):
|
||
Likewise.
|
||
* src/list.c (print_volume_label): Likewise.
|
||
* src/misc.c (normalize_filename_x): Likewise.
|
||
* src/names.c (make_name, free_name, check_name_alloc,
|
||
name_next_elt):
|
||
Likewise.
|
||
* src/tar.c (tar_list_quoting_style, add_exclude_array):
|
||
(set_stat_signal): Likewise.
|
||
* src/transform.c (new_transform,
|
||
_single_transform_name_to_obstack):
|
||
(_transform_name_to_obstack): Likewise.
|
||
* src/unlink.c (dunlink_alloc): Likewise.
|
||
|
||
* src/buffer.c (struct zip_magic): Use const when appropriate.
|
||
* src/incremen.c (obstack_code_rename,
|
||
write_directory_file_entry):
|
||
Likewise.
|
||
* src/sparse.c (COPY_STRING): Likewise.
|
||
* src/system.c (dec_to_env, time_to_env, oct_to_env, str_to_env):
|
||
(chr_to_env): Likewise.
|
||
* src/tar.c (tar_list_quoting_style, set_stat_signal): Likewise.
|
||
|
||
* src/extract.c (extract_node): Don't return garbage.
|
||
|
||
* src/names.c: Remove old-style declarations of getgrnam etc.
|
||
All modern systems declare these, and it's not worth the hassle
|
||
of ignoring the warnings on modern systems for old-style decls.
|
||
|
||
2010-05-17 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Bugfix.
|
||
|
||
* src/incremen.c (make_directory): Retain the slash if it is the
|
||
only character in a filename.
|
||
|
||
2010-04-02 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Recode NEWS back to UTF-8
|
||
|
||
2010-04-01 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix the gzip.at test case.
|
||
|
||
* tests/gzip.at: Suppress gzip error output, as it can differ
|
||
depending on its version etc. Bug reported by Ludovic Courtès.
|
||
|
||
2010-03-28 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
New option --full-time.
|
||
|
||
* src/common.h (full_time_option): New global.
|
||
* src/tar.c (FULL_TIME_OPTION): New constant.
|
||
(options): New option --full-time.
|
||
(parse_opt): Handle the --full-time option.
|
||
* src/list.c (simple_print_header): Pass full_time_option
|
||
as the 2nd argument to tartime.
|
||
* doc/tar.texi: Update.
|
||
* NEWS: Update.
|
||
|
||
2010-03-27 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Minor fixes in the testsuite.
|
||
|
||
* tests/extrac07.at: Fix a typo (invalid number
|
||
of arguments before format list).
|
||
* tests/link02.at: Use `ln' instead of `link'.
|
||
* tests/link03.at: Likewise.
|
||
|
||
2010-03-27 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix coredump.
|
||
|
||
* src/names.c (collect_and_sort_names): Remove
|
||
entry from the table before freeing it.
|
||
|
||
2010-03-27 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix dead loop on extracting existing symlinks with the -k option.
|
||
|
||
* src/extract.c (create_placeholder_file)
|
||
(extract_link, extract_symlink)
|
||
(extract_node, extract_fifo): Handle all possible
|
||
return values from maybe_recoverable. This complements
|
||
8f390db92fc. Reported by Ico Doornekamp <bug-tar@zevv.nl>.
|
||
* NEWS: Update.
|
||
|
||
2010-03-20 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix undesired error exit on receiving SIGPIPE.
|
||
|
||
* src/tar.c: Do not ignore SIGPIPE.
|
||
* tests/sigpipe.at: New testcase.
|
||
* tests/Makefile.am, tests/testsuite.at: Add sigpipe.at
|
||
* tests/remfiles01.at: Fix error code expectation.
|
||
* NEWS: Update.
|
||
|
||
2010-03-17 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix --remove-files.
|
||
|
||
Tar --remove-files relied on canonicalize_file_name,
|
||
which replaces symlinks in file name components with
|
||
the directories they point to. Due to this, tar
|
||
effectively ignored existence of symbolic links and
|
||
was unable to remove a directory that contained any
|
||
(Alexander Kozlov <akozlov@nada.kth.se>, 2010-03-15).
|
||
|
||
* gnulib.modules: Remove canonicalize.
|
||
* src/misc.c (normalize_filename): Rewrite
|
||
from scratch. The function operates only on
|
||
its input string, it makes no attempt to test
|
||
components for existence or to resolve symbolic
|
||
links.
|
||
* tests/Makefile.am (TESTSUITE_AT): Add remfiles03.at.
|
||
* tests/testsuite.at: Likewise.
|
||
* tests/remfiles03.at: New test case.
|
||
* NEWS: Update.
|
||
|
||
2010-03-12 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Bugfixes.
|
||
|
||
* src/buffer.c (check_label_pattern): Initialize result.
|
||
* tests/remfiles01.at: Skip if run with root privileges.
|
||
|
||
2010-03-11 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix `--test-label' and `--label -r' behavior.
|
||
|
||
* doc/tar.texi (Including a Label in the Archive): Revise
|
||
the section.
|
||
* NEWS: Update
|
||
|
||
* src/buffer.c (open_archive): Check volume label on
|
||
ACCESS_UPDATE as well.
|
||
* src/list.c (test_archive_label): Rewrite to match the
|
||
documentation.
|
||
* src/names.c (regex_usage_warning): Return int.
|
||
(names_notfound): Rewrite the conditional.
|
||
(label_notfound): New function.
|
||
|
||
* tests/label03.at: New testcase.
|
||
* tests/label04.at: New testcase.
|
||
* tests/label05.at: New testcase.
|
||
* tests/Makefile.am: Add new testcases.
|
||
* tests/testsuite.at: Likewise.
|
||
|
||
2010-03-11 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Doc fixes.
|
||
|
||
* doc/tar.texi: Consistently use lowercase `see' within sentences.
|
||
More fixes spotted by Denis Excoffier.
|
||
* THANKS: Update.
|
||
|
||
2010-03-11 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Shut up a gcc warning message.
|
||
|
||
* src/tar.c (tar_help_filter): Use a separate const
|
||
variable to hold returns from gettext. Reported by
|
||
Peter Breitenlohner.
|
||
|
||
2010-03-11 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Bugfix.
|
||
|
||
* src/names.c (collect_and_sort_names): Initialize prev_name.
|
||
Reported by Dmitry V. Levin.
|
||
|
||
2010-03-10 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Version 1.23
|
||
|
||
* configure.ac, NEWS: Update version number.
|
||
|
||
2010-03-10 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Doc changes.
|
||
|
||
* NEWS: Update.
|
||
* THANKS: Update.
|
||
* doc/snapshot.texi, doc/snapshot.texi,
|
||
doc/sparse.texi, doc/tar-snapshot-edit.texi,
|
||
doc/tar.texi: Spellchecked and proof-read. Thanks
|
||
to Denis Excoffier.
|
||
* gnulib.modules: Remove utime.
|
||
|
||
2010-03-08 Kamil Dudka <kdudka@redhat.com>
|
||
|
||
Fix possible overflow in code_timespec (tiny change)
|
||
|
||
* src/misc.c (code_timespec): ignore invalid values of ns
|
||
|
||
2010-03-08 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Minor fix in the testsuite.
|
||
|
||
* tests/extrac05.at: Skip test if creating
|
||
sparse file fails.
|
||
|
||
2010-03-08 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix eventual memory override and fd exhaustion in create.c Both
|
||
bugs reported by Kamil Dudka.
|
||
|
||
* src/create.c (check_exclusion_tags): Do not keep
|
||
pointer to a location within tagname: it may change
|
||
after xrealloc. Use byte offset instead.
|
||
(dump_file0): Close fd before returning without
|
||
dumping the directory.
|
||
|
||
2010-03-02 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Minor change.
|
||
|
||
* doc/tar.texi: Improve some wording.
|
||
|
||
2010-03-02 Antonio Diaz Diaz <ant_diaz@teleline.es>
|
||
|
||
Add Lzip support
|
||
|
||
* configure.ac: Add TAR_COMPR_PROGRAM(lzip)
|
||
* doc/tar.texi: Reflect lzip support.
|
||
* src/buffer.c (compress_type) <ct_lzip>: New constant.
|
||
(magic): Add magic for lzip.
|
||
* src/suffix.c (compression_suffixes): Add lz.
|
||
* src/tar.c: New option --lzip.
|
||
|
||
2010-03-02 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Minor fix.
|
||
|
||
* tests/exclude05.at: Rewrite awk invocation to avoid
|
||
overflowing awk's file table on Solaris.
|
||
|
||
2010-03-02 Eric Blake <ebb9@byu.net>
|
||
|
||
Fix large file support.
|
||
|
||
* scripts/xsparse.c (read_map): Use fseeko.
|
||
* src/incremen.c (write_directory_file): Likewise.
|
||
|
||
2010-03-02 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Bugfix
|
||
|
||
* src/buffer.c (seek_archive): Rewrite size computation
|
||
to prevent it from reaching negative values. Based on
|
||
report by Denis Excoffier <Denis.Excoffier@free.fr>.
|
||
|
||
2010-02-25 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Supply more information to the --to-command script.
|
||
|
||
* src/system.c (stat_to_env): Pass information about the current
|
||
volume in variables TAR_ARCHIVE, TAR_VOLUME, TAR_BLOCKING_FACTOR,
|
||
TAR_FORMAT.
|
||
* doc/tar.texi: Document new environment variables.
|
||
* NEWS: Likewise.
|
||
* configure.ac: Version number 1.22.91.
|
||
|
||
2010-02-17 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Minor change.
|
||
|
||
* src/names.c (regex_usage_warning): Fix warning message.
|
||
|
||
2010-02-05 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Update THANKS
|
||
|
||
2010-02-05 Ondřej Vašík <ovasik@redhat.com>
|
||
|
||
Bugfix (tiny change)
|
||
|
||
* src/xheader.c (xheader_read): Remove unnecessary call
|
||
to xheader_init.
|
||
|
||
2010-01-26 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Enable silent build mode.
|
||
|
||
* configure.ac: Require automake 1.11, autoconf 2.63. Enable
|
||
silent rules.
|
||
* NEWS: Update.
|
||
* lib/Makefile.am (rmt-command.h): Silent the rule.
|
||
|
||
2010-01-25 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Read POSIX multivolume archives split at the header boundary.
|
||
|
||
* src/common.h (read_header_mode): New enum.
|
||
(read_header): Change type of the 3rd argument.
|
||
* src/list.c (read_header): Change type of the 3rd argument.
|
||
All callers updated.
|
||
* src/buffer.c (try_new_volume): Allow for volumes split at the
|
||
extended/ustar header boundary. This is against POSIX specs, but
|
||
we must be able to read such archives anyway.
|
||
|
||
* tests/multiv07.at: New test case.
|
||
* tests/Makefile.am: Add multiv07.at
|
||
* tests/testsuite.at: Likewise.
|
||
|
||
* src/compare.c: Update calls to read_header.
|
||
* src/delete.c: Likewise.
|
||
* src/update.c: Likewise.
|
||
|
||
2010-01-24 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Minor change.
|
||
|
||
* NEWS: Update.
|
||
* doc/tar.texi: Update.
|
||
* src/create.c (finish_header): Minor change.
|
||
|
||
2010-01-24 Rob Vermaas <rob.vermaas@gmail.com>
|
||
|
||
Bugfix (tiny change).
|
||
|
||
* src/tar.c (format_default_settings)[REMOTE_SHELL]: Fix
|
||
misplaced comma.
|
||
|
||
2010-01-24 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Minor fix.
|
||
|
||
* src/incremen.c (read_incr_db_01)
|
||
(read_directory_file): Initialize bufsize to 0.
|
||
Suggested by noordsij@cs.helsinki.fi.
|
||
|
||
2010-01-24 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Improve handling of --test-label.
|
||
|
||
* src/list.c (print_volume_label): New function.
|
||
(print_header): Call print_volume_label.
|
||
(test_archive_label): New function.
|
||
* src/buffer.c (VOLUME_LABEL_APPEND): Remove.
|
||
(VOLUME_TEXT, VOLUME_TEXT_LEN): New macros
|
||
(drop_volume_label_suffix): New function.
|
||
(check_label_pattern): Use drop_volume_label_suffix.
|
||
* src/common.h (subcommand): New constant TEST_LABEL_SUBCOMMAND.
|
||
(test_label_option): Remove.
|
||
(drop_volume_label_suffix): New proto.
|
||
(test_archive_label): New proto.
|
||
* src/names.c (all_names_found): Remove test for
|
||
test_label_option.
|
||
* src/tar.c (subcommand_string): Handle TEST_LABEL_SUBCOMMAND.
|
||
(set_subcommand_option): Improve diagnostics.
|
||
(parse_opt): Set subcommand if --test-label is given.
|
||
(main): Handle TEST_LABEL_SUBCOMMAND.
|
||
|
||
2010-01-24 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix listing of volume labels (in particular in PAX archives).
|
||
|
||
* src/buffer.c (match_volume_label): Call set_volume_label.
|
||
(check_label_pattern): Get label string
|
||
as argument.
|
||
(match_volume_label): Handle volume labels stored in
|
||
global PAX headers.
|
||
* src/common.c (print_header,read_header): Change signature.
|
||
(read_header_primitive): Remove prototype.
|
||
* src/list.c (recent_global_header): New static.
|
||
(list_archive): Always print volume labels.
|
||
(read_header_primitive): Remove.
|
||
(read_header): Change the signature (all callers updated)
|
||
Save the recent global header.
|
||
(volume_label_printed): New static.
|
||
(simple_print_header): New function (ex-print_header).
|
||
(print_header): Change the signature (all callers updated).
|
||
For POSIX formats, print first volume header (if set).
|
||
* src/xheader.c (xheader_write_global): Write the data
|
||
accumulated in xhdr->stk even if keyword_global_override_list
|
||
is empty.
|
||
(xheader_read): On unexpected EOF, report error instead of
|
||
coredumping.
|
||
(XHDR_PROTECTED, XHDR_GLOBAL): New defines.
|
||
(struct xhdr_tab): Remove `protected' with `flags'. All uses
|
||
updated.
|
||
(decg): If XHDR_GLOBAL bit is set, call the keyword's decode
|
||
method instead of adding it to `kwl'.
|
||
|
||
* src/compare.c: Update calls to read_header.
|
||
* src/create.c: Likewise.
|
||
* src/delete.c: Likewise.
|
||
* src/update.c: Likewise.
|
||
* src/extract.c: Likewise.
|
||
(extract_volhdr): Do not print "Reading <label>" statement,
|
||
because
|
||
it is inconsistent: it is not printed if the volume begins with a
|
||
member continued from the previous volume.
|
||
|
||
* tests/label01.at: New testcase.
|
||
* tests/label02.at: New testcase.
|
||
* tests/Makefile.am, tests/testsuite.at: Add new testcases.
|
||
|
||
2010-01-22 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix prefix length calculation in ustar mode.
|
||
|
||
* src/create.c (split_long_name): Fix prefix length
|
||
calculation.
|
||
(write_ustar_long_name): Improve ustar mode compatibility
|
||
with the Sun version.
|
||
|
||
2009-10-14 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Rewrite update algorithm.
|
||
|
||
* src/common.h (namebuf_t): New typedef.
|
||
(namebuf_create, namebuf_free)
|
||
(namebuf_name): New prototypes.
|
||
(remname): New prototype.
|
||
* src/misc.c (struct namebuf): New structure.
|
||
(namebuf_create, namebuf_free)
|
||
(namebuf_name): New functions.
|
||
* src/create.c (dup_dir0): Remove is_avoided_name
|
||
checks. This is taken care of in update_archive.
|
||
* src/incremen.c (scan_directory): Use namebuf
|
||
to produce full file names.
|
||
* src/names.c (nametail): Remove extra level of
|
||
indirection. All uses updated.
|
||
(avoided_name_table, add_avoided_name)
|
||
(is_avoided_name): Remove.
|
||
* src/update.c (update_archive): Change algorithm.
|
||
Instead of adding unmodified files to the avoided_name
|
||
table, create namelist so that it contains only
|
||
modified files.
|
||
|
||
* tests/Makefile.am: Add update01.at, update02.at
|
||
* tests/testsuite.at: Likewise.
|
||
* tests/update.at (AT_KEYWORDS): Add update00.
|
||
|
||
2009-10-14 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Minor changes.
|
||
|
||
* src/tar.c (main): Ignore SIGPIPE.
|
||
* src/system.c (sys_child_open_for_compress)
|
||
(sys_child_open_for_uncompress): Reset SIGPIPE
|
||
in child to default.
|
||
* tests/remfiles01.at: Avoid race conditions.
|
||
* tests/remfiles02.at: Likewise.
|
||
|
||
2009-10-14 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Bugfix.
|
||
|
||
* src/buffer.c (_open_archive): Call guess_seekable_archive
|
||
only if the call to open_compressed_archive succeeded.
|
||
|
||
2009-10-10 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Improve previous changes.
|
||
|
||
* acinclude.m4: Fix typos.
|
||
* gnulib.modules: Add xvasprintf.
|
||
* src/common.h: Include xvasprintf.h.
|
||
* src/tar.c (options): Remove docstrings for --gzip, --bzip2,
|
||
--compress, --lzop, --lzma and --xz.
|
||
(tar_help_filter): Generate these using actual values of
|
||
*_PROGRAM constants.
|
||
(format_default_settings): Use xasprintf.
|
||
(parse_opt): Use *_PROGRAM defines instead of hardcoded
|
||
program names.
|
||
|
||
2009-10-10 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Allow installers to specify alternative program names for
|
||
compression programs.
|
||
|
||
This adds --with-gzip, --with-bzip2 etc. switches to the
|
||
configure, so that
|
||
one can do, e.g. ./configure --with-bzip2=lbzip2 and have
|
||
lbzip2 executed
|
||
whenever user calls `tar --bzip2'.
|
||
|
||
* acinclude.m4: New file.
|
||
* configure.ac: Add TAR_COMPR_PROGRAM invocations for
|
||
the supported compressors.
|
||
* src/buffer.c (magic): Use *_COMPRESSOR defines instead
|
||
of hardcoded program names.
|
||
* src/suffix.c (compression_suffixes): Likewise.
|
||
|
||
2009-10-09 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Minor fix.
|
||
|
||
* src/buffer.c (magic): Fix `xz' entry: add the name of the
|
||
program.
|
||
* src/suffix.c (compression_suffixes, nsuffixes): Mark as static.
|
||
|
||
2009-10-07 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Provide a way to explicitly set mtime for extended header
|
||
ustar blocks.
|
||
|
||
* src/tar.c (struct textual_date): ts is a copy of the structure,
|
||
not a pointer to it. Date is a copy as well, hence the `const' is
|
||
taken away.
|
||
(get_date_or_file): Return 0/1 depending on success/failure.
|
||
Copy timestamp to the `ts' member. Store a copy of the string
|
||
in `date'.
|
||
(report_textual_dates): Report only if verbose_option is set,
|
||
but always free the list.
|
||
(expand_pax_option): New function.
|
||
(parse_opt): Preprocess the argument to xheader_set_option with
|
||
expand_pax_option.
|
||
(decode_options): Call report_textual_dates unconditionally.
|
||
* src/xheader.c (exthdr_mtime_option, exthdr_mtime)
|
||
(globexthdr_mtime_option, globexthdr_mtime): New statics.
|
||
(xheader_set_keyword_equal): handle exthdr.mtime and
|
||
globexthdr.mtime.
|
||
(xheader_write): Override `t' argument if a corresponding
|
||
exthdr.mtime or globexthdr.mtime option is set.
|
||
* NEWS: Update
|
||
* doc/tar.texi: Document the changes.
|
||
|
||
2009-10-07 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Use file's mtime as mtime for its extended header.
|
||
|
||
This makes two pax archives binary equivalent if they
|
||
have the same contents and care is taken to make extended
|
||
headers otherwise reproducible, e.g. by using:
|
||
|
||
--pax-option=exthdr.name=%d/PaxHeaders/%f,atime:=0
|
||
|
||
Proposed by Michael D. Adams <mdmkolbe@gmail.com>.
|
||
|
||
* src/common.h (start_private_header): Take time_t as 3rd param.
|
||
(xheader_write): Likewise.
|
||
* src/create.c (start_private_header): Take time_t as 3rd param.
|
||
All callers updated.
|
||
(write_extended): Use file's mtime as mtime for its extended
|
||
header,
|
||
Use current time stamp as mtime for global headers.
|
||
(xheader_write): Take time_t as 3rd param.
|
||
|
||
2009-10-07 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix bugs in handling the --remove-files option.
|
||
|
||
Make sure the files are deleted only if they were successfully
|
||
stored
|
||
to the archive.
|
||
|
||
* src/exit.c: New file.
|
||
* src/unlink.c: New file.
|
||
* src/Makefile.am (tar_SOURCES): Add exit.c and unlink.c.
|
||
* src/common.h: Include progname.h
|
||
(program_name): Remove global.
|
||
(records_written): New extern.
|
||
(queue_deferred_unlink, finish_deferred_unlinks): New prototypes.
|
||
(fatal_exit_hook): New extern.
|
||
* src/create.c (create_archive): Call finish_deferred_unlinks.
|
||
(dump_hard_link, dump_file0): Don't actually unlink the file,
|
||
queue it to deferred_unlinks instead.
|
||
* src/delete.c (records_written): Remove extern: declared in
|
||
common.h.
|
||
* src/extract.c (extract_archive): Set fatal_exit_hook.
|
||
(fatal_exit, xalloc_die): Move to exit.c
|
||
* src/system.c (sys_wait_for_child): Exit immediately
|
||
if the child dies or exits with a non-zero status.
|
||
(sys_child_open_for_compress)
|
||
(sys_child_open_for_uncompress): Use set_program_name,
|
||
instead of setting program_name directly.
|
||
* src/tar.c (main): Use set_program_name,
|
||
instead of setting program_name directly.
|
||
|
||
* tests/Makefile.am (TESTSUITE_AT): Add remfiles01.at
|
||
and remfiles02.at.
|
||
* tests/testsuite.at: Likewise.
|
||
* tests/gzip.at: Reflect the above changes.
|
||
|
||
2009-10-04 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix bug in OLDGNU format creation.
|
||
|
||
See tests/append02.at for a detailed description
|
||
|
||
* src/common.h (MODE_FROM_HEADER): Take additional argument.
|
||
(mode_from_header): Likewise.
|
||
* src/create.c (mode_to_chars): Store all mode bits if
|
||
using OLDGNU_FORMAT. This reverses f4e4adea80a.
|
||
* src/list.c (decode_header): Use header mode field
|
||
to discern between GNU and OLDGNU formats.
|
||
(mode_from_header): Store unrecognized mode bits (from 10th up)
|
||
in the location pointed to by the third parameter.
|
||
* tests/append02.at: Update documentation and references.
|
||
|
||
2009-09-16 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Restore extra help output.
|
||
|
||
* src/tar.c (tar_list_quoting_styles): Change first argument to
|
||
struct obstack.
|
||
(format_default_settings): New function.
|
||
(show_default_settings)
|
||
(show_default_settings_fs): Removed.
|
||
(tar_help): Removed.
|
||
(tar_help_filter): New function.
|
||
(argp): Set help_filter.
|
||
(parse_opt): Fix error message.
|
||
|
||
2009-09-08 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Improve command line option handling.
|
||
|
||
* gnulib.modules: Add argp-version-etc and progname,
|
||
use getopt-gnu instead of getopt.
|
||
* src/tar.c (HANG_OPTION, USAGE_OPTION)
|
||
(VERSION_OPTION): Remove.
|
||
(options): Remove corresponding options. Let argp
|
||
handle them.
|
||
(parse_opt): Likewise.
|
||
(_argp_hang): Removed.
|
||
(tar_authors): New variable.
|
||
(decode_options): Call argp_version_setup.
|
||
Do not use ARGP_NO_HELP flag in the call to argp_parse.
|
||
|
||
2009-09-08 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Avoid overwriting exit_status with a value indicating less
|
||
important condition.
|
||
|
||
* src/tar.c (set_exit_status): New function.
|
||
* src/common.h (set_exit_status): New prototype.
|
||
* src/compare.c: Use set_exit_status instead of
|
||
exit_status assignments.
|
||
* src/create.c: Likewise.
|
||
* src/misc.c: Likewise.
|
||
|
||
* src/system.c (wait_for_grandchild): Use auto variable
|
||
instead of the global exit_status.
|
||
* src/incremen.c (scan_directory): Use file_removed_diag
|
||
instead of stat_diag.
|
||
|
||
2009-09-08 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Automatic detection of seekable archives.
|
||
|
||
* src/buffer.c (guess_seekable_archive): New function.
|
||
(_open_archive): Call guess_seekable_archive for archives
|
||
open for reading.
|
||
(new_volume): Likewise.
|
||
* src/common.h (seek_option): New global.
|
||
* src/tar.c (options): New option --no-seek.
|
||
(parse_opt): --seek and --no-seek set seek_option,
|
||
not seekable_archive.
|
||
(decode_options): Initialize seek_option to -1.
|
||
|
||
* NEWS: Update.
|
||
* doc/tar.texi: Update.
|
||
|
||
2009-08-27 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix testcases.
|
||
|
||
* tests/extrac08.at: Ensure a predictable umask value.
|
||
* tests/xform-h.at (xform): do not depend on file name
|
||
ordering.
|
||
|
||
2009-08-13 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix interaction between --listed-incremental and -C
|
||
|
||
* src/incremen.c (read_directory_file): Execute eventual -C dir
|
||
after opening the snapshot file.
|
||
(collect_and_sort_names): Remove call to chdir_do
|
||
* tests/incr05.at, tests/incr06.at: Use relative file names for
|
||
snapshot files.
|
||
|
||
2009-08-12 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Update for new exclude module from gnulib. Add testcases by
|
||
Phil Proudman.
|
||
|
||
* src/names.c (is_pattern): Remove.
|
||
(regex_usage_warning): Use fnmatch_pattern_has_wildcards
|
||
instead of
|
||
is_pattern.
|
||
* src/tar.c: New option --exclude-backups.
|
||
(vcs_file_table, backup_file_table): New globals.
|
||
(add_exclude_array): New function.
|
||
* tests/exclude01.at, tests/exclude02.at,
|
||
tests/exclude03.at, tests/exclude04.at,
|
||
tests/exclude05.at: New testcases. Supplied by Phil Proudman.
|
||
* tests/Makefile.am (TESTSUITE_AT): Add new tests.
|
||
* tests/testsuite.at: Add new tests.
|
||
* THANKS: Update.
|
||
|
||
2009-08-10 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Remove src/version.c (reappeared after migration to Git)
|
||
|
||
2009-08-09 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Minor fixes.
|
||
|
||
* src/misc.c (file_removed_diag): Set exit code to
|
||
TAREXIT_DIFFERS.
|
||
|
||
2009-08-08 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Minor fixes
|
||
|
||
2009-08-08 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix handling of files removed during incremental dumps.
|
||
|
||
Changes to src/create.c and src/incremen.c are partially
|
||
based on patch from Alexander Peslyak <solar at openwall.com>.
|
||
|
||
The new testcases require paxutils commit f653a2b or later.
|
||
|
||
* src/common.h (struct name): New member `cmdline'.
|
||
(dump_file): Change type of the 2nd argument to bool.
|
||
(file_removed_diag, dir_removed_diag): New prototypes.
|
||
(addname): New argument `cmdline'.
|
||
(name_from_list): Change return value.
|
||
* src/create.c (dump_dir0, dump_dir): top_level is bool.
|
||
(create_archive): Update calls to name_from_list.
|
||
Take advantage of the name->cmdline to set top_level argument
|
||
during incremental backups.
|
||
(dump_file0): top_level is bool.
|
||
Do not bail out if a no-top-level file disappears during
|
||
incremental
|
||
backup, use file_removed_diag instead.
|
||
(dump_filed): top_level is bool.
|
||
* src/incremen.c (update_parent_directory): Silently ignore
|
||
ENOENT. It should have already been reported elsewhere.
|
||
(scan_directory): Use dir_removed_diag to report missing
|
||
directories.
|
||
* src/misc.c (file_removed_diag, dir_removed_diag): New functions.
|
||
* src/names.c (name_gather): Set ->cmdname.
|
||
(addname): Likewise. All uses updated.
|
||
(name_from_list): Return struct name const *. All uses updated.
|
||
|
||
* tests/filerem01.at: New testcase.
|
||
* tests/filerem02.at: New testcase.
|
||
* tests/Makefile.am, tests/testsuite.at: Add filerem01.at,
|
||
filerem02.at
|
||
* tests/grow.at, test/truncate.at: Use new syntax for genfile
|
||
--run.
|
||
|
||
* NEWS: Update.
|
||
* doc/tar.texi: Minor fix.
|
||
|
||
2009-08-08 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Optimize searches for directory structures by keeping a pointer
|
||
to struct directory in struct name.
|
||
|
||
* src/common.h (struct name): New member `directory' replaces
|
||
dir_contents. Rearrange members.
|
||
(rebase_directory): Change signature.
|
||
(scan_directory): Change signature.
|
||
(name_fill_directory)
|
||
(directory_contents, safe_directory_contents): New prototypes.
|
||
(append_incremental_renames): Change signature.
|
||
(replace_prefix): New proto.
|
||
* src/compare.c (diff_dumpdir): Use directory_contents +
|
||
scan_directory.
|
||
* src/create.c
|
||
* src/incremen.c (replace_prefix): Move to misc.c
|
||
(rebase_directory): Rewrite.
|
||
(scan_directory): Return pointer to struct directory.
|
||
(directory_contents, safe_directory_contents): New functions.
|
||
(get_directory_contents): Remove.
|
||
(name_fill_directory): New function.
|
||
(append_incremental_renames): Rewrite. This also fixes a memory
|
||
leak.
|
||
* src/names.c (name_gather, addname): Reflect changes in struct
|
||
name.
|
||
(add_hierarchy_to_namelist): Rewrite using name_fill_directory and
|
||
directory_contents.
|
||
(rebase_child_list): Update call to rebase_directory.
|
||
(collect_and_sort_names): Optimize
|
||
|
||
* src/misc.c (replace_prefix): New function.
|
||
* src/names.c (add_hierarchy_to_namelist): Use new
|
||
get_directory_contents.
|
||
|
||
* tests/incr05.at: New test case.
|
||
* tests/incr06.at: New test case.
|
||
* tests/Makefile.am, test/testsuite.at: Add incr05.at and
|
||
incr06.at.
|
||
|
||
* doc/Makefile.am (check-options): Improve rule.
|
||
* doc/tar.texi, NEWS: Update.
|
||
|
||
2009-08-07 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Minor fixes.
|
||
|
||
* src/common.h (rebase_directory): New prototype.
|
||
* src/incremen.c (rebase_directory): Use replace_prefix.
|
||
* src/names.c (collect_and_sort_names): Abort if
|
||
hash_insert fails.
|
||
|
||
2009-08-07 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Improve listed incremental dumps.
|
||
|
||
The modified algorithm tries to avoid dumping the same
|
||
directory twice and ensures the order of the directories
|
||
in the resulting archive is the same, whatever their order
|
||
on the command line. It also fixes the operation of
|
||
--listed-incremental -C.
|
||
|
||
* gnulib.modules: Add canonicalize
|
||
* src/common.h (incremental_level): New global.
|
||
(check_exclusion_tags): first argument is const.
|
||
(get_directory_contents): Add third argument.
|
||
(zap_slashes, normalize_filename): New prototypes.
|
||
(chdir_count): New prototype.
|
||
(WARN_VERBOSE_WARNINGS): New define.
|
||
(WARN_ALL): Exclude WARN_VERBOSE_WARNINGS.
|
||
* src/compare.c (diff_dumpdir): Update the call to
|
||
get_directory_contents.
|
||
* src/create.c (check_exclusion_tags): First argument is const.
|
||
Use ISSLASH and DIRECTORY_SEPARATOR instead of referring to '/'.
|
||
|
||
* src/incremen.c (struct directory): New member `caname'.
|
||
(hash_directory_name): Rename to
|
||
hash_directory_canonical_name. Operate
|
||
on the canonical name.
|
||
(compare_directory_names): Rename to
|
||
compare_directory_canonical_names.
|
||
Operate on the canonical name.
|
||
(make_directory): Take two arguments.
|
||
(free_directory): Free caname.
|
||
(attach_directory): Create caname.
|
||
(find_directory): Use caname for lookups.
|
||
(PD_VERBOSE): Remove.
|
||
(PD_FORCE_INIT): New define.
|
||
(procdir): First argument is const.
|
||
Reinitialize directory if PD_FORCE_INIT bit is set.
|
||
Do not use PD_VERBOSE or verbose_option for issuing warnings.
|
||
Rely on WARNOPT instead.
|
||
Always set *entry.
|
||
(scan_directory): Take three arguments. The third one is a boolean
|
||
which is true if the directory is explicitly mentioned on
|
||
the command
|
||
line.
|
||
(get_directory_contents): Remove. Use scan_directory instead.
|
||
All callers updated.
|
||
(read_directory_file): Truncate the file if --level=0 is given.
|
||
* src/misc.c: Include canonicalize.h
|
||
(zap_slashes, normalize_filename): New functions.
|
||
(chdir_count): New function.
|
||
* src/names.c (add_hierarchy_to_namelist): Take three arguments,
|
||
as
|
||
get_directory_contents and scan_directory.
|
||
(collect_and_sort_names): Allow at most one -C, before file name
|
||
arguments.
|
||
Read directory file after eventual changing to another directory.
|
||
Avoid adding the same directory under different pathnames to
|
||
the list.
|
||
* src/tar.c: New option --level.
|
||
|
||
* tests/incr03.at, tests/incr04.at, tests/listed01.at,
|
||
tests/listed02.at, tests/rename01.at, tests/rename02.at,
|
||
tests/rename03.at: Update for new tar behavior.
|
||
* tests/multiv01.at: Do not use --listed-incremental.
|
||
|
||
2009-08-05 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Forgotten to push src/warning.c
|
||
|
||
2009-08-05 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Implement the --warning option.
|
||
|
||
* src/warning.c: New file.
|
||
* src/Makefile.am: Add warning.c
|
||
* src/common.h: Provide definitions for warning classes.
|
||
(warning_option): New global.
|
||
(WARNOPT): New define.
|
||
(set_warning_option): New prototype.
|
||
* src/tar.c: New option `--warning'.
|
||
* src/compare.c: When applicable WARNOPT instead of WARN.
|
||
* src/create.c: Likewise.
|
||
* src/extract.c: Likewise.
|
||
* src/incremen.c: Likewise.
|
||
* src/list.c: Likewise.
|
||
|
||
* NEWS, doc/tar.texi: Update.
|
||
|
||
2009-08-05 Carl Worth <cworth@cworth.org>
|
||
|
||
Fix descriptions of some options (tiny change)
|
||
|
||
2009-08-05 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix backup handling and restoring file modes of existing
|
||
directories
|
||
|
||
* NEWS, THANKS: Update
|
||
* src/extract.c (extract_dir): reset status to 0 if the
|
||
directory already exists.
|
||
* src/misc.c (maybe_backup_file): Assign before_backup_name
|
||
and clear after_backup_name before checking if we really need
|
||
to backup the file.
|
||
* tests/backup01.at: New testcase.
|
||
* tests/extrac08.at: New testcase.
|
||
* tests/Makefile.am, tests/testsuite.at: Add extrac08.at and
|
||
backup01.at
|
||
|
||
2009-07-30 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix hard links recognition with -c --remove-files
|
||
|
||
* src/create.c (dump_hard_link): Always look up in the link table
|
||
if remove_files_option is set. Patch suggested by Theodore Ts'o
|
||
<tytso@mit.edu>.
|
||
(check_links): Remove extra newline from the warning message.
|
||
* tests/link02.at, tests/link03.at: New testcases.
|
||
* tests/Makefile.am (TESTSUITE_AT): Add link02.at and link03.at
|
||
* tests/testsuite.at: Include link02.at and link03.at
|
||
|
||
2009-07-30 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix handling of hard link targets by -c --transform
|
||
|
||
* src/create.c (file_count_links): Transform link target
|
||
before the look up.
|
||
* tests/xform-h.at: New test case.
|
||
* tests/Makefile.am (TESTSUITE_AT): Add xform-h.at.
|
||
* tests/testsuite.at: Add xform-h.at
|
||
|
||
2009-06-23 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Minor fix.
|
||
|
||
* src/extract.c (file_newer_p): Do not report error on ENOENT
|
||
|
||
2009-06-19 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Remove rebox.el (reappeared after migration to Git)
|
||
|
||
2009-06-18 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Remove files that were removed in CVS, but reappeared after
|
||
migration to Git
|
||
|
||
2009-06-18 David Bartley <dtbartle@csclub.uwaterloo.ca>
|
||
|
||
Fix Solaris bug where chmod fails if we don't have
|
||
PRIV_SYS_LINKDIR
|
||
|
||
* gnulib.modules: Add priv-set.
|
||
* src/extract.c (set_mode, extract_archive): Restore
|
||
PRIV_SYS_LINKDIR on chmod failure.
|
||
* src/tar.c (main): Drop PRIV_SYS_LINKDIR on startup.
|
||
|
||
2009-06-18 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Ensure default behavior for SIGPIPE
|
||
|
||
* src/tar.c (main): Install default handler for SIGPIPE.
|
||
Proposed by Bastian Blank.
|
||
|
||
2009-06-18 Eric Blake <ebb9@byu.net>
|
||
|
||
Follow autoconf recommendation for TESTSUITEFLAGS.
|
||
|
||
* tests/Makefile.am (check-local, installcheck-local): Honor
|
||
TESTSUITEFLAGS.
|
||
|
||
2009-06-18 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix handling of sub-subprocess returns.
|
||
|
||
* src/system.c (wait_for_grandchild): New function.
|
||
(sys_child_open_for_compress)
|
||
(sys_child_open_for_uncompress): Use wait_for_grandchild
|
||
to manage grandchild return.
|
||
|
||
2009-05-25 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Report record size only if the archive refers to a device.
|
||
|
||
* Makefile.am (INCLUDES): Add ../lib, for rmt-command.h
|
||
* src/buffer.c (short_read): Report the actual record size
|
||
only if the archive descriptor refers to a device.
|
||
* tests/pipe.at, tests/shortrec.at,
|
||
tests/sparsemvp.at: Reflect the above change.
|
||
* NEWS, configure.ac: Version 1.22.90
|
||
|
||
2009-05-14 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Do not issue errors on existing files when given the -k option
|
||
|
||
* Makefile.am (dist-hook): Fix rule.
|
||
* src/extract.c (maybe_recoverable): Return three-state value.
|
||
(extract_dir): Skip extraction if maybe_recoverable indicates so.
|
||
(extract_file): Likewise.
|
||
|
||
2009-05-12 Eric Blake <ebb9@byu.net>
|
||
|
||
Avoid undefined behavior
|
||
|
||
* src/xheader.c (xheader_set_keyword_equal): Pass correct type to
|
||
ctype macros.
|
||
* src/transform.c (run_case_conv): Likewise.
|
||
|
||
2009-05-12 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Remove src/Makefile.in
|
||
|
||
2009-03-12 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Bugfixes.
|
||
|
||
* bootstrap (symlink_to_dir): Fix symlink calculation.
|
||
* doc/tar.texi: Minor fixes by Victor Villa and Stepan Kasal.
|
||
|
||
2009-03-07 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Remove Makefile.in
|
||
|
||
Migrate to Git
|
||
|
||
Currently the ChangeLog is generated automatically from the Git
|
||
revision history, but from 1997 to 2009 the ChangeLog file was
|
||
maintained by hand, under CVS. This file records the older log.
|
||
|
||
Copyright 1997-2001, 2003-2009, 2013, 2023 Free Software Foundation,
|
||
Inc.
|
||
|
||
This file is part of GNU tar.
|
||
|
||
GNU tar is free software; you can redistribute it and/or modify
|
||
it under the terms of the GNU General Public License as published by
|
||
the Free Software Foundation; either version 3 of the License, or
|
||
(at your option) any later version.
|
||
|
||
GNU tar is distributed in the hope that it will be useful,
|
||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
GNU General Public License for more details.
|
||
|
||
You should have received a copy of the GNU General Public License
|
||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||
|
||
2009-03-05 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/incremen.c: --no-recursive works with --incremental.
|
||
|
||
2009-03-04 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Add xz support.
|
||
|
||
* src/buffer.c, src/suffix.c: Add support for xz compression.
|
||
* src/tar.c: New option --xz, for compression/decompression using xz.
|
||
Re-assign -J as a short equivalent of --xz.
|
||
|
||
2009-01-19 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* doc/tar.texi: Fix typo.
|
||
|
||
2008-12-29 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* bootstrap.conf: Include size_max.
|
||
* gnulib.modules: Remove memset, rmdir. Replace strdup with
|
||
strdup-posix. Patch by Eric Blake.
|
||
* src/tar.c: Implement -I as a shorthand for --use-compress-program.
|
||
* doc/tar.texi: Document -I.
|
||
* tests/pipe.at, tests/shortrec.at: Account for eventual 'Record
|
||
size' output.
|
||
* tests/testsuite.at (AT_TAR_CHECK_HOOK): New define
|
||
(AT_TAR_WITH_HOOK, TAR_IGNREC_HOOK): New macros.
|
||
|
||
2008-11-30 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/xheader.c: Remove duplicate inclusion of fnmatch.h. Reported
|
||
by Jim Meyering.
|
||
|
||
2008-11-25 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Do not try to drain the input pipe before closing the
|
||
archive.
|
||
|
||
* src/buffer.c (close_archive): Remove call to
|
||
sys_drain_input_pipe. Pass hit_eof as the second
|
||
argument to sys_wait_for_child.
|
||
* src/common.h (sys_drain_input_pipe): Remove
|
||
(sys_wait_for_child): Declare second argument.
|
||
* src/system.c (sys_drain_input_pipe): Remove.
|
||
(sys_wait_for_child): Take two arguments. The second one helps to
|
||
decide whether to tolerate child termination on SIGPIPE.
|
||
|
||
2008-11-03 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/buffer.c (_write_volume_label): Fix typo, which prevented
|
||
`-V label -M' from working.
|
||
|
||
2008-10-30 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* NEWS, configure.ac: Version 1.20.91
|
||
* doc/tar.texi: Document transformation scope flags.
|
||
* src/common.h (transform_symlinks_option): Remove in favor of
|
||
transformation scope flags.
|
||
(XFORM_REGFILE, XFORM_LINK, XFORM_SYMLINK, XFORM_ALL): New macros.
|
||
(transform_name, transform_member_name, transform_name_fp): Take
|
||
an additional argument, specifying scope flags.
|
||
* src/create.c: Reflect changes to transform_name.
|
||
* src/extract.c (extract_link, extract_symlink): Remove calls to
|
||
transform_member_name. It is done in read_header.
|
||
* src/list.c (decode_xform): Reflect change in data type of 2nd
|
||
argument.
|
||
(transform_member_name): 2nd arg is int.
|
||
(decode_header): Transform file name and link target names.
|
||
* src/tar.c: Remove --transform-symlinks.
|
||
* src/transform.c (struct transform): New member `flags'.
|
||
(transform_flags): New variable.
|
||
(parse_transform_expr): Parse transformation scope flags. Allow to
|
||
set global flags using `flags=' syntax.
|
||
(_transform_name_to_obstack, transform_name_fp)
|
||
(transform_name): Take an additional argument, specifying scope
|
||
flags.
|
||
|
||
2008-10-19 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* THANKS: Add Ed Leaver.
|
||
* src/buffer.c (short_read): Remove !read_full_records condition,
|
||
which was always false on a first record and thus disabled record
|
||
size autodetection. Thanks Ed Leaver for the patch.
|
||
(_gnu_flush_read): Handle blocking_factor == 1.
|
||
* tests/sparsemv.at: Reflect changes to buffer.c.
|
||
* tests/sparsemvp.at: Likewise.
|
||
* tests/volsize.at: Likewise.
|
||
* NEWS: Update.
|
||
|
||
2008-10-16 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/common.h (transform_symlinks_option): New global.
|
||
* src/create.c (dump_file0): Transform symlink targets only if
|
||
explicitly required. Thanks Cyril Strejc for reporting the
|
||
problem.
|
||
* src/tar.c (parse_opt): New options --transform-symlinks and
|
||
--no-transform-symlinks. New alias --xform to the --transform
|
||
option.
|
||
* doc/tar.texi: Document --transform-symlinks
|
||
* NEWS: Update.
|
||
* THANKS: Update.
|
||
|
||
* src/names.c (name_gather): Use xzalloc.
|
||
* src/buffer.c (short_read): Move record size detection before
|
||
the loop.
|
||
|
||
2008-10-07 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/tar.c (options): Add --lzop option.
|
||
|
||
2008-10-05 Xavier Hienne <xavier.hienne@free.fr> (tiny change)
|
||
|
||
* src/checkpoint.c (checkpoint_compile_action): Add missing
|
||
`else'.
|
||
|
||
2008-09-24 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* NEWS: Update.
|
||
* doc/tar.texi: Update.
|
||
* src/tar.c: New option --no-null.
|
||
|
||
2008-09-23 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/common.h (filename_terminator): Remove global.
|
||
* src/tar.c (filename_terminator): New static.
|
||
* src/names.c (name_next_elt): Do not depend on
|
||
filename_terminator, this was a leftover from 1.13.
|
||
|
||
2008-09-18 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* doc/tar.texi: Remove incorrect example.
|
||
|
||
2008-09-07 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/incremen.c (dumpdir_create0): Eliminate gcc warning.
|
||
(attach_directory): Bugfix - add missing return statement.
|
||
* THANKS: Add Enric Hernandez
|
||
|
||
2008-07-31 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/incremen.c (struct directory): New member `next'. Change
|
||
type of `name'.
|
||
(dirhead, dirtail): New statics.
|
||
(make_directory): Reflect changes to struct directory.
|
||
(free_directory, attach_directory): New functions.
|
||
(dirlist_replace_prefix): New function.
|
||
(note_directory): Use attach_directory, instead of make_directory,
|
||
(find_directory, find_directory_meta): Use free_directory.
|
||
(procdir): Replace directory prefixes in directory list to avoid
|
||
marking subdirectories as renamed after renaming their parent
|
||
directory.
|
||
(append_incremental_renames): Iterate over directory list, not
|
||
hash table, to preserve logical ordering of renames.
|
||
* tests/rename04.at, tests/rename05.at: New test cases.
|
||
* tests/Makefile.am, tests/testsuite.at: Add rename04.at and
|
||
rename05.at.
|
||
* tests/atlocal.in (decho): New function.
|
||
* tests/multiv06.at: Use decho instead of echo2.
|
||
* tests/incremental.at: Raise wait interval to 2 seconds.
|
||
|
||
2008-07-24 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/tar.c (decode_options): Do not allow volume length less
|
||
than record size.
|
||
* src/buffer.c (_gnu_flush_write): Compensate for the effect
|
||
of eventual flush_archive occurring in the middle of buffer
|
||
move.
|
||
Increment records_written only if _flush_write was able to write
|
||
something.
|
||
* tests/multiv06.at: New testcase.
|
||
* tests/Makefile.am, test/testsuite.at: Add tests/multiv06.at
|
||
|
||
2008-06-26 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* configure.ac, NEWS: Version 1.20.90
|
||
* doc/tar.texi: Document -J, --no-auto-compress, etc.
|
||
* src/buffer.c (ct_tar): New constant.
|
||
(magic): Add lzop support. Proposed by Kevin Day
|
||
<thekevinday@gmail.com>.
|
||
(check_compressed_archive): Do not use autodetect if the
|
||
compression program was specified explicitly.
|
||
Fall back to analyzing archive name, if the autodetection fails.
|
||
* src/suffix.c: Add .lzo
|
||
* src/tar.c: New options --lzop and --no-auto-compress.
|
||
New short option -J (alias for --lzma).
|
||
|
||
* src/buffer.c (try_new_volume): Print more information with error
|
||
diagnostics.
|
||
(_gnu_flush_write): Improve error checking. Adjust
|
||
real_s_sizeleft before calling new_volume to avoid creating
|
||
malformed multivolume headers.
|
||
* tests/delete05.at, tests/gzip.at, tests/ignfail.at,
|
||
tests/longv7.at, tests/lustar01.at, tests/lustar02.at,
|
||
tests/shortfile.at: Update to match new diagnostic wording
|
||
(see 2008-05-06).
|
||
|
||
* NEWS: Update.
|
||
|
||
2008-06-14 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* doc/tar.texi (exclude): Document support for new VCS.
|
||
* THANKS: Update.
|
||
* NEWS: Update.
|
||
* tests/multiv05.at: Fix typos.
|
||
* tests/volsize.at: Remove a TZ dependency.
|
||
|
||
2008-06-14 Dan Drake <dan@dandrake.org> (tiny change)
|
||
|
||
* src/tar.c (exclude_vcs_files): Support for Bazaar, Mercurial and
|
||
Darcs.
|
||
|
||
2008-05-06 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/tar.c (main): Reword the "delayed error" message. New
|
||
wording proposed by Karl Berry.
|
||
|
||
2008-02-20 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* configure.ac: Raise version number to 1.20
|
||
* src/compare.c (diff_dumpdir): const.
|
||
* src/common.h (dumpdir_t,dumpdir_iter_t): New data types.
|
||
(dumpdir_create0,dumpdir_create,dumpdir_free,dumpdir_locate)
|
||
(dumpdir_first,dumpdir_next): New functions.
|
||
* src/incremen.c (dumpdir_create0,dumpdir_create,dumpdir_free)
|
||
(dumpdir_first,dumpdir_next): New functions.
|
||
(dumpdir_locate): Rewrite using binary search.
|
||
(struct directory): Change members char *contents, *icontents to
|
||
struct dumpdir *dump, *idump. All references updated.
|
||
(note_directory): Last arg is const.
|
||
* src/names.c (add_hierarchy_to_namelist): buffer is const.
|
||
* tests/incr03.at, tests/incr04.at, tests/rename02.at,
|
||
tests/rename03.at: Insert calls to sleep between creation of files
|
||
and adding them to the archive.
|
||
|
||
2008-03-31 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/create.c (dump_file0): Count links only for actually dumped
|
||
files.
|
||
|
||
2008-03-27 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* NEWS: Document --no-check-device and --check-device.
|
||
* doc/rendition.texi: Change the way FIXME-*refs are handled in
|
||
!PROOF.
|
||
* doc/intern.texi, doc/tar.texi: Update.
|
||
* doc/untabify.el: New file.
|
||
* doc/Makefile.am (EXTRA_DIST): Add untabify.el
|
||
(untabify, final, check-format, check-refs, check-fixmes)
|
||
(check-unrevised, all-check-docs, check-docs): New rules.
|
||
|
||
* src/common.h (check_device_option): New global.
|
||
* src/incremen.c (procdir): Use boolean and instead of bitwise
|
||
one. Patch by Jean-Louis Martineau.
|
||
Compare device numbers only if check_device_option is set.
|
||
* src/tar.c: New command line options --no-check-device and
|
||
--check-device. Proposed by Jean-Louis Martineau.
|
||
(parse_opt): Hanlde new options.
|
||
(decode_options): Initialize check_device_option to true.
|
||
|
||
* THANKS: Update
|
||
|
||
2008-03-06 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* bootstrap: Use rsync to get translations.
|
||
* doc/tar.texi: Minor change.
|
||
* lib/.cvsignore: Update
|
||
* po/.cvsignore: Update
|
||
* src/system.c: Remove include setenv.h.
|
||
* tests/atlocal.in (STAR_DATA_URL): Update.
|
||
* tests/star/README: Update URL.
|
||
|
||
2008-02-09 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* doc/tar.texi: Fix a typo. Reported by Denis Excoffier.
|
||
|
||
2008-02-08 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* NEWS: Update.
|
||
* configure.ac: Version 1.19.90
|
||
* po/POTFILES.in: Add missing files.
|
||
* src/compare.c (verify_volume): Honor --ignore-zeros.
|
||
Proposed by Jan-Benedict Glaw.
|
||
* tests/shortfile.at (AT_KEYWORDS): Add shortfile0.
|
||
|
||
2008-02-07 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* NEWS: Update.
|
||
* src/create.c (dump_file0): Apply transform_name to symlink
|
||
targets.
|
||
|
||
2008-02-04 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/transform.c: Support multiple --transform options. Support
|
||
semicolon-separated lists of replace expressions.
|
||
* NEWS, tar.texi: Document changes to the --transform option.
|
||
|
||
2008-01-30 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* doc/tar.texi: Update Back-Cover text to reflect new GNU wording.
|
||
|
||
2007-12-17 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Exit with nonzero status if a close fails on an archive.
|
||
Problem (and initial trivial fix)
|
||
* src/buffer.c (close_archive, new_volume): close_error, not
|
||
close_warn.
|
||
|
||
2007-12-05 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/buffer.c (check_compressed_archive): Do not bail out if the
|
||
file is too short, set boolean flag, passed as an argument
|
||
instead. This fixes a bug introduced on 2007-08-24. See also
|
||
tests/shortupd.at.
|
||
|
||
* tests/Makefile.am, tests/testsuite.at: Add shortupd.at.
|
||
* tests/shortupd.at: New test.
|
||
|
||
2007-11-12 Jim Meyering <meyering@redhat.com>
|
||
|
||
Don't read from name[-1].
|
||
* src/incremen.c (make_directory): Handle namelen == 0, since
|
||
find_directory_meta calls make_directory ("").
|
||
|
||
2007-11-07 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* bootstrap (checkout): Use URL of the gnulib CVS mirror.
|
||
* gnulib.modules: Add fseeko and snprintf.
|
||
|
||
2007-10-31 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/checkpoint.c: New actions: bell and ttyout
|
||
* src/system.c (sys_exec_info_script)
|
||
(sys_exec_checkpoint_script): pass the current blocking factor in
|
||
TAR_BLOCKING_FACTOR environment variable.
|
||
* doc/tar.texi: Update
|
||
* NEWS: Update
|
||
|
||
2007-10-30 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* doc/Makefile.am: Use texi2html and the CVS version of gendocs.sh
|
||
to create HTML versions of the manual.
|
||
* doc/gendocs_template: Likewise.
|
||
* doc/tar.texi: Document --hard-dereference and
|
||
--checkpoint-action options. Improve documentation of
|
||
--check-links.
|
||
|
||
2007-10-29 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* NEWS: Update
|
||
* configure.ac: Version 1.19.1
|
||
* po/POTFILES.in: Add src/checkpoint.c
|
||
* src/Makefile.am (tar_SOURCES): add checkpoint.c
|
||
* src/checkpoint.c: New file - checkpoint handling.
|
||
* src/buffer.c (checkpoint, do_checkpoint): Remove.
|
||
(_flush_write, simple_flush_read, _gnu_flush_read): Use
|
||
checkpoint_run.
|
||
* src/common.h (enum checkpoint_style): Remove.
|
||
(checkpoint_style): Remove.
|
||
(DEFAULT_CHECKPOINT): New define.
|
||
(hard_dereference_option): New variable.
|
||
(sys_exec_checkpoint_script): New declaration.
|
||
* src/create.c (file_count_links): do nothing if
|
||
hard_dereference_option is set.
|
||
* src/system.c (sys_exec_checkpoint_script): New function.
|
||
(sys_exec_info_script): Restore SIGPIPE handler.
|
||
* src/tar.c: (parse_opt): New options --hard-dereference,
|
||
--checkpoint-action.
|
||
(decode_options): Call checkpoint_finish_compile.
|
||
|
||
* src/system.c (sys_exec_info_script): Initialize buf. Problem
|
||
reported by Bengt-Arne Fjellner.
|
||
|
||
2007-10-18 Jim Meyering <jim@meyering.net>
|
||
|
||
Avoid compiler warnings.
|
||
* src/list.c (read_header_primitive): Define two locals, to
|
||
avoid incorrect "may be used uninitialized" warnings.
|
||
* src/incremen.c (procdir): Remove decl of unused local, "len".
|
||
|
||
2007-10-18 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* doc/tar.texi (gzip): Remove compression patent
|
||
warning. According to Brett Smith, the patent is
|
||
expired.
|
||
|
||
2007-10-17 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/suffix.c: New file. Compress format detection by archive
|
||
suffix (when creating). Suggested by Jean-Pierre Demailly.
|
||
* src/Makefile.am: Add suffix.c
|
||
* src/buffer.c (magic): Add an entry for new lzma format. Proposed
|
||
by Lasse Collin.
|
||
* src/common.h (set_comression_program_by_suffix): New prototype.
|
||
* src/tar.c: New options --auto-compress (-a) and --lzma
|
||
* THANKS: Add Lasse Collin and Jean-Pierre Demailly.
|
||
* NEWS: Update
|
||
* doc/tar.texi: Update
|
||
|
||
2007-10-12 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* src/utf8.c (string_ascii_p): Recode to avoid bogus GCC 4.2.1
|
||
warning about "comparison is always true due to limited range of
|
||
data type" when char is unsigned.
|
||
|
||
2007-10-11 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Adjust to recent gnulib changes.
|
||
* configure.ac: Dont' check for strerror, since gnulib now does this.
|
||
* .cvsignore: Add m4, tar-[0-9]*.
|
||
* lib/.cvsignore: Adjust to various gnulib file name changes.
|
||
Add .deps, rmt-command.h.
|
||
|
||
2007-10-10 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* configure.ac, NEWS: Raise version number to 1.19
|
||
* tests/star/README: Update
|
||
|
||
2007-10-05 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/create.c (dump_regular_file): Fix file padding in case of
|
||
truncation to zero size.
|
||
* NEWS: Update
|
||
|
||
2007-10-04 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* tests/T-null.at: Use AT_DATA for sample output.
|
||
|
||
2007-10-03 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/incremen.c (try_purge_directory): Ensure that arguments to T
|
||
and R are safe.
|
||
|
||
2007-09-29 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/incremen.c (obstack_code_rename): Apply safer_name_suffix to
|
||
name arguments before storing them in T and R records. Reported by
|
||
Nicholas Cole.
|
||
|
||
2007-09-27 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* configure.ac: Raise version number to 1.18.90
|
||
* NEWS: Likewise
|
||
|
||
* doc/snapshot.texi: Document version 2.
|
||
* doc/dumpdir.texi: Update.
|
||
|
||
Implement --exclude-tag* and --exclude-cache* options for listed
|
||
incremental archives.
|
||
New option --exclude-vcs to exclude VCS-specific files and
|
||
directories.
|
||
|
||
* NEWS: Update
|
||
* doc/tar.texi: Document --exclude-vcs option
|
||
* src/common.h (exclusion_tag_warning, check_exclusion_tags): New
|
||
prototypes.
|
||
* src/create.c (exclusion_tag_warning, check_exclusion_tags):
|
||
Remove static qualifier.
|
||
(check_exclusion_tags): account for dirname without terminating
|
||
slash.
|
||
(dump_dir0): exclusion_tag_all is handled elsewhere.
|
||
* src/incremen.c (struct directory): New member tagfile
|
||
(make_directory): Initialize tagfile to NULL
|
||
(procdir): New argument: entry
|
||
Hanlde exclusion tags.
|
||
(makedumpdir): Take into account directory->tagfile.
|
||
(scan_directory): Hanlde exclusion tags.
|
||
* src/tar.c: New option --exclude-vcs
|
||
(exclude_vcs_files): New function
|
||
|
||
2007-09-14 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* AUTHORS: Remove unnecessary information. Just list the
|
||
principal authors.
|
||
* THANKS: Remove info duplicated from AUTHORS.
|
||
|
||
2007-08-25 Jim Meyering <jim@meyering.net>
|
||
|
||
Don't include <getline.h>. No longer needed.
|
||
* src/incremen.c: Don't include <getline.h>. No longer needed.
|
||
* src/buffer.c: Likewise.
|
||
* src/system.c: Likewise.
|
||
* src/tar.c: Likewise.
|
||
|
||
Avoid shadowing and unused-variable warnings.
|
||
* src/create.c (check_exclusion_tags): Remove declaration of unused
|
||
local, "ret".
|
||
* src/compare.c (diff_dumpdir): Rename stat->stat_data to avoid
|
||
shadowing the syscall.
|
||
* src/buffer.c (do_checkpoint): Don't shadow the write syscall.
|
||
(try_new_volume): Avoid shadowing "access".
|
||
* src/tar.c (decode_options): Rename index->idx to avoid shadowing.
|
||
(find_argp_option): Rename option->o to avoid shadowing.
|
||
* src/incremen.c (scan_directory): Rename local, dir_name->dir,
|
||
to avoid shadowing the function.
|
||
(get_directory_contents): Likewise.
|
||
* src/system.c (global_pid): Rename from "pid", to avoid being
|
||
shadowed by locals.
|
||
* src/extract.c (apply_nonancestor_delayed_set_stat):
|
||
Rename st->sb to avoid shadowing another local.
|
||
|
||
2007-08-24 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* configure.ac, NEWS: Raise version number to 1.18.1
|
||
|
||
* src/buffer.c (check_compressed_archive): Detect files smaller
|
||
than 512 bytes.
|
||
* tests/shortfile.at: New test case for the above change.
|
||
* tests/testsuite.at, tests/Makefile.am: Add shortfile.at
|
||
|
||
2007-08-19 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* bootstrap: Gnulib initialization destroyed paxutils m4 files.
|
||
Initialize paxutils structure after that of gnulib.
|
||
|
||
2007-08-12 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/names.c (contains_dot_dot): Fix double-dot recognition in
|
||
case of duplicate /. Patch by Dmitry V. Levin.
|
||
|
||
* bootstrap (symlink_to_gnulib): Make sure the target directory
|
||
exists and create it if it does not.
|
||
|
||
* doc/tar.texi: Fix a typo.
|
||
|
||
2007-06-28 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* bootstrap: Update for the change of the TP URL
|
||
|
||
2007-06-27 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Relicense under GPLv3
|
||
|
||
2007-06-21 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* tests/testsuite.at (AT_TAR_MKHIER): Skip test if genfile is
|
||
unable to create the file
|
||
* tests/lustar01.at: Likewise
|
||
|
||
2007-06-21 Eric Blake <ebb9@byu.net>
|
||
|
||
Resolve testsuite failures 40-42 on cygwin.
|
||
* tests/testsuite.at (AT_TAR_MKHIER): Skip tests when long
|
||
file names cannot be created.
|
||
|
||
2007-06-16 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* doc/Makefile.am (tar_TEXINFOS): Add tar-snapshot-edit.texi
|
||
* doc/tar-snapshot-edit.texi: New file
|
||
* doc/tar.texi (Fixing Snapshot Files): New appendix
|
||
|
||
* scripts/tar-snapshot-edit: New file
|
||
* tests/extrac07.at: Add back write permissions on dir
|
||
|
||
2007-06-09 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* tests/exclude.at: Sort the output.
|
||
|
||
2007-06-08 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* configure.ac, NEWS: Raise version number to 1.17
|
||
|
||
* doc/tar.texi, doc/intern.texi: Replace: s/filename/file name/;
|
||
s/(ASCII|ID|BSD)/@acronym{&}/;s/"[^"]+"/``&''/
|
||
Use `path' only when it refers to search paths, use
|
||
`file name' otherwise.
|
||
Fix various errors (based on patch by Benno Schulenberg)
|
||
|
||
* doc/tar.texi (Operation Summary): Restore alphabetical order of
|
||
the options.
|
||
|
||
2007-06-02 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix bug, introduced on 2007-03-30.
|
||
|
||
* src/common.h (xform_type): New data type
|
||
(transform_member_name): Last argument is of xform_type type
|
||
All callers updated
|
||
|
||
* src/extract.c: Update calls to transform_member_name
|
||
* src/list.c (decode_xform): Exempt symbolic links from component
|
||
stripping and name suffix normalization.
|
||
|
||
* tests/extrac07.at: Update
|
||
|
||
2007-05-30 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/xheader.c (decx): Unknown pax keywords produce a warning,
|
||
not error.
|
||
|
||
2007-05-29 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* src/misc.c (set_file_atime): Use gl_futimens, not futimens,
|
||
due to gnulib change.
|
||
|
||
2007-05-19 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/common.h (buffer_write_global_xheader): New function
|
||
(struct xheader): Move definition to tar.h
|
||
(extended_header): Remove global
|
||
(xheader_init): New function
|
||
(xheader_decode_global,xheader_store,xheader_read)
|
||
(xheader_write_global,xheader_write,xheader_string_begin)
|
||
(xheader_string_add,xheader_string_end): Take xhdr as first
|
||
argument.
|
||
* src/tar.h (struct xheader): New definition
|
||
(struct tar_stat_info): New member xhdr (extended header).
|
||
|
||
* src/xheader.c (xheader_init): New function
|
||
(xheader_decode_global,xheader_store,xheader_read)
|
||
(xheader_write_global,xheader_write,xheader_string_begin)
|
||
(xheader_string_add,xheader_string_end): Take xhdr as first
|
||
argument.
|
||
|
||
* src/buffer.c (buffer_write_global_xheader): New function
|
||
Update to use new xheader calls.
|
||
|
||
* src/compare.c, src/create.c, src/delete.c, src/list.c,
|
||
src/sparse.c, src/tar.c, src/update.c: Global extended_header
|
||
removed, use new xheader calls instead.
|
||
|
||
* tests/T-null.at: Minor fix
|
||
* tests/atlocal.in (tarball_prereq): Discard eventual md5sum
|
||
output.
|
||
|
||
2007-05-18 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/create.c (dump_file0): Original ctime cannot be used as a
|
||
directory change indicator if --remove-files is given.
|
||
|
||
2007-04-12 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Adjust to latest Gnulib.
|
||
* lib/.cvsignore: Add dirfd.c, dirfd.h, float+.h, mbscasecmp.c,
|
||
stdio.h, stdio_.h, stdlib.h, stdlib_.h, time.h, time_.h, unistd.h.
|
||
Remove exit.h, getcwd.h, mempcpy.h, memrchr.h, mkdtemp.h, stpcpy.h,
|
||
strcase.h, strchrnul.h, strdup.h, strndup.h, strnlen.h, time_r.h,
|
||
vsnprintf.h.
|
||
* m4/.cvsignore: Remove localedir.h. Sort.
|
||
|
||
2007-04-03 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* src/common.h (closeopen): Remove decl.
|
||
* src/misc.c: Don't include <sys/time.h>, <sys/resource.h>; no longer
|
||
needed.
|
||
(get_max_open_files, closeopen): Remove. All callers removed.
|
||
(chdir_dir): Use a different technique, which doesn't rely on closing
|
||
all open files.
|
||
* src/tar.c (main): Don't call closeopen.
|
||
|
||
2007-04-04 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* NEWS: Update
|
||
* doc/tar.texi: Update
|
||
* src/system.c (sys_exec_info_script): Store the
|
||
inter-communication fd in the environment variable TAR_FD
|
||
|
||
2007-04-03 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/tar.c (main): Move closeopen after decode_options to
|
||
allow shell process substitution to work.
|
||
* tests/extrac07.at: Expect a warning on stderr.
|
||
|
||
2007-03-30 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/common.h (transform_name_fp): Change signature
|
||
(transform_member_name): New function
|
||
* src/extract.c (extract_link, extract_symlink): Use
|
||
transform_member_name instead of safer_name_suffix so that
|
||
--transform and --strip-components affect links as well.
|
||
* src/list.c (transform_member_name): New function
|
||
(decode_header): Use transform_member_name
|
||
* src/names.c (all_names_found): Remove check for matching_flags.
|
||
* NEWS: Update
|
||
|
||
* TODO: Update
|
||
* bootstrap (slurp): Remove any occurrences of $bt from the
|
||
generated gnulib.mk
|
||
* src/incremen.c: Do not include mkdtemp.h
|
||
|
||
2007-01-26 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Adjust to recent gnulib changes.
|
||
* lib/.cvsignore: Add fchownat.c, rmt-command.h, strerror.c, string.h,
|
||
string_.h, sys, sys_time_.h, unistd_.h, wchar_.h, wctype_.h.
|
||
Remove localedir.h, size_max.h, xsize.h.
|
||
* src/xheader.c: Don't include stpcpy.h; no longer needed, now that
|
||
gnulib string.h defines stpcpy on all platforms.
|
||
|
||
2007-01-23 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* doc/tar.texi: Document --exclude-caches* and --exclude-tag*
|
||
options.
|
||
* src/common.h (exclude_caches_option): Remove
|
||
(enum exclusion_tag_type): New data type
|
||
(add_exclude_tag): Rename to add_exclusion_tag
|
||
(cachedir_file_p): New prototype
|
||
* src/create.c (struct exclude_tag): rename to exclusion_tag
|
||
(check_exclusion_tags): New function
|
||
(cachedir_file_p): New function (from check_cache_directory)
|
||
(dump_dir0,dump_file0): Use check_exclusion_tags
|
||
* src/tar.c: New options --exclude-caches-all,
|
||
--exclude-caches-under, --exclude-tag-all, --exclude-tag-under
|
||
* tests/exclude.at: New file
|
||
* tests/Makefile.am (TESTSUITE_AT): Add exclude.at
|
||
* tests/testsuite.at: Add exclude.at
|
||
|
||
2007-01-19 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* gnulib.modules: Require strerror
|
||
* doc/gendocs_template: Fix typos
|
||
* scripts/xsparse.c (expand_sparse): use ftruncate to handle the
|
||
trailing hole
|
||
* src/sparse.c (sparse_skip_file,pax_dump_header_1)
|
||
(pax_decode_header): Keep track of the number of bytes
|
||
written.
|
||
* configure.ac: Version 1.16.2
|
||
* NEWS: Update
|
||
|
||
2007-01-04 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/compare.c (diff_dumpdir): Compare directory contents using
|
||
dumpdir_cmp. Do not free dumpdir_buffer, it will leave the
|
||
incremental directory table in the inconsistent state and trigger
|
||
full dump.
|
||
(read_and_process): Process dumpdirs no matter what the archive
|
||
format.
|
||
* src/incremen.c (list_dumpdir): Minor fixes.
|
||
|
||
* src/compare.c (read_and_process): Fix type of "size"
|
||
|
||
2006-12-13 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* tests/T-null.at: Skip the test if genfile is not able to create
|
||
the filename with an embedded newline.
|
||
|
||
2006-12-12 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Port to Forte Developer 7 C 5.4 and C99.
|
||
* src/common.h (add_exclude_tag): Add decl; C99 requires this
|
||
and Forte warns about it.
|
||
* src/incremen.c: Include <mkdtemp.h> for mkdtemp prototype,
|
||
for same reason.
|
||
* src/misc.c (get_max_open_files): Rewrite to avoid code that
|
||
Forte C complains about as being unreachable.
|
||
* src/xheader.c (mtime_code): Rewrite to avoid Forte error
|
||
reported by Trond Hasle Amundsen.
|
||
|
||
* src/incremen.c (compare_dirnames): Rewrite to avoid casts.
|
||
* src/utf8.c (string_ascii_p): Likewise.
|
||
* src/xheader.c (mtime_coder, volume_size_coder, volume_offset_coder):
|
||
Likewise.
|
||
|
||
2006-12-08 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* bootstrap: Add paxutils files to dot_ignore.
|
||
|
||
* configure.ac: Raise version number to 1.16.1
|
||
* bootstrap (slurp): Create .(cvs|git)ignore if not present
|
||
* po/.cvsignore, m4/.cvsignore: Remove automatically generated
|
||
files.
|
||
|
||
2006-12-07 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* NEWS: Update
|
||
* Makefile.am (distclean-local): Fixed
|
||
* doc/tar.texi: Update documentation of --exclude-tag
|
||
* src/create.c (dump_dir0): Move checks for exclude tags to
|
||
dump_file0.
|
||
(dump_dir): Move calls to ensure_slash to dump_file0
|
||
* src/extract.c (extract_file): Call skip_member if open fails.
|
||
Patch proposed by Jan-Benedict Glaw <jbglaw@lug-owl.de>
|
||
* tests/truncate.at: Use genfile instead of dd, because on some
|
||
systems /dev/zero is not available.
|
||
|
||
2006-12-04 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* NEWS: Fix some race conditions with tar -x --same-owner.
|
||
* src/extract.c (ARCHIVED_PERMSTATS): Add a comment saying that
|
||
S_IRWXG | S_IRWXO might be masked out.
|
||
(set_mode): Set the mode if some bits were masked out originally.
|
||
(set_stat): Don't chmod before chown, as that might temporarily
|
||
grant permissions that we don't want to grant. The chmod was
|
||
there only to work around broken hosts, so add a comment advising
|
||
users not to use those broken hosts instead.
|
||
(repair_delayed_set_stat, extract_dir):
|
||
Remember to mask out current umask before inverting permissions.
|
||
(extract_dir): If the owner might change, or if the mode has
|
||
special bits, create the directory 700 at first, but restore it later.
|
||
(open_output_file): New arg mode; all uses changed.
|
||
(extract_file, extract_node, extract_fifo): If the owner might
|
||
change, omit group and other bits at first, but restore them after
|
||
changing the owner.
|
||
|
||
2006-12-04 Jim Meyering <jim@meyering.net>
|
||
|
||
* doc/tar.texi (Long Options): Remove doubled word.
|
||
|
||
2006-11-30 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/xheader.c (xheader_read): Remove unused variable
|
||
|
||
* po/POTFILES.in: Remove src/mangle.c
|
||
|
||
* bootstrap: Implement --update-po and .bootstrap
|
||
|
||
* src/create.c (dump_dir0): Implement --exclude-tag option
|
||
* src/tar.c: Likewise
|
||
* doc/tar.texi (exclude): Document --exclude-tag
|
||
|
||
2006-11-29 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* NEWS: Remove support for mangled names.
|
||
* doc/tar.texi (verbose tutorial): Likewise.
|
||
* src/Makefile.am (tar_SOURCES): Remove mangle.c.
|
||
* src/common.h (extract_mangle): Remove decl.
|
||
* src/extract.c (extract_mangle_wrapper): Remove.
|
||
(prepare_to_extract): Remove support for mangled names.
|
||
* src/list.c (read_and, print_header): Likewise.
|
||
* src/mangle.c: Remove.
|
||
* src/tar.h (GNUTYPE_NAMES): Remove.
|
||
|
||
Port to latest gnulib. There were a lot of changes, so the
|
||
simplest way to get this up and running was to switch to coreutils
|
||
bootstrap procedure. I noticed one feature missing after this
|
||
merge: the ability to update a single .po file. I can add that
|
||
later if need be.
|
||
* README-cvs, bootstrap.conf: New files.
|
||
* lib/.cvsignore: Remove Makefile.am, printf-parse.c, vasnprintf.c.
|
||
Add fstatat.c, gnulib.mk, openat-proc.c, same-inode.h, stat_.h,
|
||
tempname.c, tempname.h, uinttostr.c.
|
||
* lib/printf-parse.c, lib/vasnprintf.c: New files, from coreutils,
|
||
to override gnulib, so that we don't need xsize.h.
|
||
* bootstrap: Replace with coreutils bootstrap, except add support
|
||
for paxutils.
|
||
* configure.ac (gl_USE_SYSTEM_EXTENSIONS): Remove, as gl_EARLY now
|
||
does this.
|
||
(gl_EARLY, gl_INIT): Add.
|
||
(tar_GNULIB): Remove.
|
||
* gnulib.modules: Add configmake.
|
||
* lib/Makefile.tmpl: Remove, replacing with....
|
||
* lib/Makefile.am: New file.
|
||
* src/Makefile.am (tar.o): Remove dependency: Automake does this
|
||
for us.
|
||
* src/tar.c: Include <configmake.h> and <rmt-command.h>, not
|
||
<localedir.h>.
|
||
|
||
2006-11-13 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/xheader.c (mtime_coder): Treat non-null data as a pointer to
|
||
struct timespec, overriding st->mtime
|
||
* src/create.c (start_header): Pass mtime as a call-specific data
|
||
to xheader_store.
|
||
|
||
* tests/truncate.at: Do not use 'k' modifier in dd options.
|
||
* tests/append02.at: Do not depend on command timing.
|
||
|
||
2006-11-01 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/tar.c (enum read_file_list_state.file_list_skip): New value
|
||
(read_name_from_file): Skip zero-length entries
|
||
|
||
* tests/T-empty.at: New test case
|
||
* tests/T-null.at: New test case
|
||
* tests/extrac07.at: New test case
|
||
* tests/Makefile.am: Add new test cases.
|
||
* tests/testsuite.at: Add new test cases.
|
||
* tests/extrac02.at: Add more keywords
|
||
* tests/extrac04.at: Likewise
|
||
* tests/extrac06.at: Likewise
|
||
* tests/shortrec.at: Do not assume tar's default archive is stdout
|
||
|
||
2006-10-31 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/extract.c, src/xheader.c: Call last_component instead of
|
||
base_name. The latter returns a malloced string since 2006-03-11.
|
||
|
||
2006-10-21 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* NEWS, configure.ac: Version 1.16
|
||
* Makefile.am (distclean-local): New rule
|
||
|
||
2006-10-17 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/tar.c: Fix help output formatting. Thanks Benno
|
||
Schulenberg.
|
||
|
||
2006-10-16 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* Makefile.am (dist-hook): Create a cpio archive.
|
||
* NEWS: Update
|
||
|
||
2006-10-14 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* doc/tar.texi (Synopsis): Document tar exit codes.
|
||
* src/create.c (dump_regular_file,dump_file0): Set exit_status to
|
||
TAREXIT_DIFFERS if the file being dumped was truncated or
|
||
otherwise changed.
|
||
* src/tar.c: Do not attempt to close stderr after call to
|
||
close_stdout.
|
||
* tests/grow.at: New test case
|
||
* tests/Makefile.am: New test grow.at
|
||
* tests/testsuite.at: Likewise
|
||
* tests/truncate.at (AT_KEYWORDS): Keyword `filechange'
|
||
Test tar exit status.
|
||
|
||
* src/buffer.c (_open_archive): Make sure stdlis is set to stderr
|
||
when we are writing archive to stdout (unless --index-file is
|
||
used). Bug introduced on 2006-07-06.
|
||
* tests/Makefile.am: New test verbose.at
|
||
* tests/testsuite.at: Likewise
|
||
* tests/indexfile.at (AT_KEYWORDS): Add stdout keyword
|
||
* tests/verbose.at: New test case
|
||
|
||
2006-10-02 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* THANKS: Add Joerg Weilbier
|
||
* src/buffer.c (new_volume): Initialize current_block
|
||
* src/xheader.c (xheader_string_end): Fix diagnostic message.
|
||
* tests/multiv05.at: New testcase.
|
||
* tests/Makefile.am, tests/testsuite.at: Add multiv05.at
|
||
|
||
2006-09-27 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* bootstrap: Use ${package} instead of hardcoding package name
|
||
* doc/tar.texi: Minor fix
|
||
* src/tar.c (doc0, doc1, initialize_argp_doc): Removed. Rely on
|
||
the new argp method instead.
|
||
|
||
2006-09-12 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* README: Fix a typo
|
||
|
||
2006-09-08 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Adjust to latest gnulib.
|
||
* lib/.cvsignore: Add at-func.c, configmake.h, fchmodat.c,
|
||
fcntl.h, fcntl_.h, inttypes_.h, lstat.c, lstat.h.
|
||
* tests/testsuite.at (AT_TAR_MKHIER): Use install-sh -d
|
||
rather than the no-longer-included mkinstalldirs.
|
||
|
||
2006-09-08 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/incremen.c (try_purge_directory): Initialize struct st. Fix
|
||
condition for selecting candidates for removal.
|
||
* README-alpha: List texinfo among build prerequisites for the CVS
|
||
version.
|
||
|
||
* bootstrap (intl_files_to_remove): Do not remove m4/inttypes-h.m4
|
||
and m4/inttypes-pri.m4
|
||
|
||
2006-08-11 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* bootstrap: Set XGETTEXT_OPTIONS to flag our printf-format functions,
|
||
so that translators are warned about strings that are formats but
|
||
don't look like formats. This might help prevent core dumps.
|
||
* configure.ac (AM_GNU_GETTEXT): Upgrade to need-formatstring-macros.
|
||
Suggested by Eric Blake to avoid problems like
|
||
<http://lists.gnu.org/archive/html/bug-coreutils/2006-07/msg00087.html>.
|
||
(AM_GNU_GETTEXT_VERSION): Upgrade from 0.12.1 to 0.15. The gettext
|
||
manual says we should use the version number normally expected of
|
||
maintainers, neither more nor less.
|
||
|
||
* bootstrap (get_translations):
|
||
Don't exclude ky.po; it is working again.
|
||
|
||
2006-08-09 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* bootstrap (get_translations):
|
||
Don't exclude ja.po; it is working again.
|
||
Don't remove all old .po files if we're merely updating one.
|
||
* po/.cvsignore: Add Makevars.
|
||
|
||
2006-08-07 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* src/tar.c: Work around limitation imposed by gettext 0.15
|
||
by concatenating strings with "\v" after translation.
|
||
(doc): Remove, splitting into:
|
||
(doc0, doc1): New constants.
|
||
(argp): Don't use doc; just initialize to NULL.
|
||
(initialize_argp_doc): New function.
|
||
(decode_options): Use it.
|
||
|
||
* bootstrap: Redo po file retrieval to match Bison's method,
|
||
since the translation project changed its index format.
|
||
Don't use --assume-autoconf; it's now replaced
|
||
by looking in configure.ac.
|
||
(m4/codeset.m4, m4/intdiv.m4, m4/inttypes-pri.m4, m4/isc-posix.m4):
|
||
(m4/lcmessage.m4, m4/onceonly_2_57.m4, m4/gettext.m4, m4/glibc21.m4):
|
||
(m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-prefix.m4, m4/po.m4):
|
||
(m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4):
|
||
Don't rename to ..._gl.m4, as this is no longer needed.
|
||
(m4/geteext.m4): Patch to remove the need for intl/*.
|
||
Use autopoint manually, then remove the intl files,
|
||
then undo changes to gnulib files that autoreconf made,
|
||
and then run aclocal/autoconf/autoheader/automake.
|
||
This makes our bootstrap procedure closer to Bison's.
|
||
(po/Makevars): Generate automatically.
|
||
* configure.ac (AC_PREREQ): Update from 2.59 to 2.60.
|
||
(gl_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T): Remove.
|
||
* gnulib.modules: Add inttypes, stdint.
|
||
* lib/.cvsignore: Add close-stream.c, close-stream.h,
|
||
stdint.h, stdint_.h.
|
||
* po/Makefile: Remove; now automatically generated.
|
||
|
||
* src/incremen.c (read_incr_db_01): Check input strings more
|
||
carefully. Do not pass arbitrary char values to isspace, as
|
||
this has undefined behavior. Likewise for assigning arbitrary
|
||
uintmax_t values to other types.
|
||
(read_negative_num, read_unsigned_num, read_timespec):
|
||
New functions, to check input values a bit more carefully.
|
||
(read_num): Use read_unsigned_num. New arg MAX_VAL;
|
||
all callers changed.
|
||
(read_incr_db_2): Use these new functions.
|
||
Use a consistent diagnostic for unexpected EOF.
|
||
(read_directory_file): Do not assign arbitrary uintmax_t value
|
||
to int.
|
||
(read_timespec, write_directory_file_entry, write_directory_file):
|
||
Handle negative time_t values correctly. We don't bother to do
|
||
this with pre-2 formats, since presumably the time stamps were
|
||
output incorrectly.
|
||
|
||
* src/tar.c (doc): Don't use \v in an argument to gettext;
|
||
gettext 0.15 rejects this.
|
||
|
||
2006-07-24 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/tar.c (decode_options): Do not require -L with -M -Hpax.
|
||
It could be needed in future, but currently it is not.
|
||
* src/create.c (to_chars_subst): Update comment regarding OLDGNU
|
||
vs. GNU format differences.
|
||
(mode_to_chars): Treat OLDGNU_FORMAT same as GNU_FORMAT. Fixes bug
|
||
reported by TAMUKI Shoichi <tamuki@linet.gr.jp>, which caused
|
||
equivalent `tar cf ...' and `tar rf ...' commands to produce
|
||
different archives.
|
||
|
||
* tests/append02.at: New test case
|
||
* tests/Makefile.am, tests/testsuite.at: Add append02.at
|
||
|
||
2006-07-20 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* bootstrap: Adjust to today's change to gnulib-tool by invoking
|
||
it with --assume-autoconf='latest-stable'.
|
||
|
||
2006-07-16 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Adjust to recent gnulib changes.
|
||
* lib/.cvsignore: Remove atexit.c, exit.c, getndelim2.c, getndelim2.h,
|
||
pathmax.h, paxconvert.c, paxerror.h, xstrdup.c.
|
||
Add inttypes.h, mktime.c, wcwidth.h, xstrndup.c, xstrndup.h.
|
||
* src/create.c (start_header): Adjust to API change to mode_adjust.
|
||
|
||
2006-07-09 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* THANKS: Add Ralf Wildenhues
|
||
* NEWS: Update
|
||
|
||
2006-07-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
||
|
||
* doc/dumpdir.texi, doc/snapshot.texi, doc/sparse.texi,
|
||
doc/tar.texi: Fix some typos.
|
||
|
||
2006-07-06 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
tar --index-file=FILE --file=- sent the archive to FILE, and
|
||
the listing to stderr. Bug reported by Marcin Gryszkalis
|
||
<mg@fork.pl>
|
||
|
||
* src/buffer.c (_open_archive): Remove stdlis initialization
|
||
* src/tar.c (decode_options): Initialize stdlis
|
||
* tests/indexfile.at: New test case
|
||
* tests/testsuite.at: Include indexfile.at
|
||
* tests/Makefile.am (TESTSUITE_AT): Add indexfile.at
|
||
|
||
2006-07-05 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* doc/Makefile.am (manual): Fix TEXINPUTS
|
||
* doc/rendition.texi (FIXME): Do not use deprecated @quote-args.
|
||
Do not use @allow-recursion. In its current form the macro is not
|
||
recursive.
|
||
|
||
2006-07-03 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* bootstrap (update_po): Fix single translation update
|
||
|
||
2006-07-03 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* configure.ac (AC_CHECK_FUNCS): Check for getdtablesize
|
||
* src/common.h (closeopen): New function
|
||
* src/misc.c (chdir_arg): Use x2nrealloc to reallocate wd.
|
||
(get_max_open_files,closeopen): New functions
|
||
(chdir_do): Do not use save_cwd if it was already used more than
|
||
max_open_files-4 times to avoid running off the file
|
||
descriptors.
|
||
* src/tar.c (main): Call closeopen
|
||
* doc/tar.texi: Update --directory description
|
||
* NEWS: Update
|
||
|
||
2006-06-26 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* doc/tar.texi: Update. Add cross-references.
|
||
* doc/sparse.texi: Add cross-references.
|
||
|
||
2006-06-25 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* scripts/xsparse.c: A sample utility to expand sparse files
|
||
extracted by third-party tars. It is not meant to be installed nor
|
||
to be included in the distribution. It is here, so that it can be
|
||
obtained either from CVS or from the tar web site.
|
||
* doc/Makefile.am (tar_TEXINFOS): Sorted
|
||
* doc/tar.texi (Other Tars): New node describing how to extract
|
||
GNU-specific member formats using third-party tars.
|
||
* src/common.h (sparse_file_p): Remove
|
||
* src/sparse.c: Likewise
|
||
* src/create.c: Use ST_IS_SPARSE instead of sparse_file_p (update
|
||
paxutils first)
|
||
* src/tar.c: --sparse-version turns on --sparse
|
||
|
||
2006-06-24 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/buffer.c (print_total_stats): Add default case.
|
||
* src/common.h (name_init): New prototype.
|
||
(xheader_string_end): Return bool.
|
||
* src/extract.c (extract_volhdr): Add missing return
|
||
* src/incremen.c: Remove not used variables
|
||
* src/sparse.c (pax_dump_header_0): Return false if
|
||
xheader_string_end fails (for 0.1 formats).
|
||
(pax_dump_header): Return meaningful value
|
||
* src/transform.c (segm_count): Change type to size_t
|
||
* src/xheader.c (xhdr_tab.decoder): pass keyword as a second
|
||
argument. All callers changed.
|
||
(decode_record): Check for numeric overflow
|
||
(xheader_string_end): Return boolean value. Check for possible
|
||
numeric overflow
|
||
|
||
2006-06-23 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* doc/sparse.texi: New file
|
||
* doc/Makefile.am (tar_TEXINFOS): Add sparse.texi
|
||
* doc/intern.texi (Sparse Formats): New node
|
||
* doc/tar.texi: Update master menu
|
||
|
||
* src/common.h (tar_sparse_major,tar_sparse_minor): New globals.
|
||
* src/sparse.c: Implement sparse format versioning. Implement new
|
||
version (1.0) of PAX sparse format.
|
||
(pax_sparse_member_p): Fix condition
|
||
(pax_dump_header): A dispatcher function
|
||
(pax_dump_header_0,pax_dump_header_1): New functions.
|
||
(pax_optab): Update
|
||
(oldgnu_dump_header): Minor fix: make sure
|
||
sparse_header.isextended is set before calling
|
||
set_next_block_after
|
||
* src/tar.c: New option --sparse-version
|
||
* src/tar.h (struct tar_stat_info.sparse_major,sparse_minor): New
|
||
members.
|
||
* src/xheader.c: Implement new keywords: GNU.sparse.name,
|
||
GNU.sparse.major, GNU.sparse.minor, GNU.sparse.realsize
|
||
|
||
* tests/spmpv00.at, tests/spmvp01.at, tests/spmvp10.at: New
|
||
testcases.
|
||
|
||
* tests/Makefile.am: Add spmvp00.at, spmpv01.at, spmpv10.at
|
||
* tests/shortrec.at: Explicitely give `-f -' to the tar invocation
|
||
* tests/sparsemvp.at: Rewritten as an include file.
|
||
(TAR_MVP_TEST): New macro
|
||
* tests/testsuite.at: Include sparsemvp.at, spmvp00.at,
|
||
spmvp01.at, spmvp10.at
|
||
|
||
2006-06-21 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* doc/tar.texi (Overriding File Metadata): New node
|
||
Document --mtime option.
|
||
* src/common.h (set_mtime_option,mtime_option): New globals
|
||
* src/create.c (start_header): Override mtime if requested
|
||
* src/tar.c: Implement new option, --mtime, allowing to set
|
||
modification times for all archive members during creation.
|
||
(struct tar_args): textual_date_option replaced with a linked list
|
||
textual_date. All references updated.
|
||
(get_date_or_file,report_textual_dates): New functions.
|
||
* configure.ac: Raise version number to 1.15.92
|
||
* NEWS: Update
|
||
|
||
2006-06-20 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/common.h (struct name.explicit): Remove
|
||
Use variable names in all declarations
|
||
(name_scan): Remove second argument
|
||
* src/delete.c: Remove second argument from calls to name_scan
|
||
* src/update.c: Likewise
|
||
* src/incremen.c (procdir): Use is_individual_file to check for
|
||
files explicitly specified in the command line. Fixes bug
|
||
reported by Dat Head on 19 Jun 2006 (descending into mountpoints
|
||
with --one-file-system in use)
|
||
* src/misc.c (maybe_backup_file): Second argument is bool
|
||
* src/names.c (name_next_elt): Call register_individual_file
|
||
(namelist_match): Remove third argument
|
||
(name_match): Change return type to bool
|
||
(name_scan): Remove second argument
|
||
* src/sparse.c (pax_dump_header): Store original sparse file name
|
||
in GNU.sparse.name variable. The name field in the ustar header
|
||
now contains generated name (%d/GNUSparseFile.%p/%f), so that
|
||
non-pax-aware tars won't extract the file under the original
|
||
filename.
|
||
* src/xheader.c (GNU.sparse.name): New variable for storing sparse
|
||
file name.
|
||
|
||
2006-06-13 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* doc/Makefile.am (check-options): Expand macros before grepping
|
||
in $(info_TEXINFOS)
|
||
* doc/rendition.texi (FIXME) [!PROOF_FOOTNOTED]: Enclose in a
|
||
cartouche
|
||
* doc/tar.texi: Define op as codeindex. Use special macros to
|
||
populate it
|
||
Consequently prefer @dfn{long options} over @dfn{mnemonic
|
||
options}.
|
||
Document --unquote, --no-unquote
|
||
(Short Option Summary): Build a table of cross-references to the
|
||
corresponding long options.
|
||
(Using Multiple Tapes,Multi-Volume Archives): Rewritten
|
||
|
||
* doc/value.texi (xopindex,opsummary): New macros
|
||
|
||
* doc/Makefile.am (check-options): New goal
|
||
* doc/tar.texi: Update
|
||
* src/tar.c: Implement --overwrite-dir option (long ago
|
||
documented).
|
||
|
||
2006-06-12 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* doc/tar.texi: Document better the --totals option
|
||
* NEWS: Update
|
||
* src/buffer.c (total_blocks_deleted): New variable
|
||
(set_start_time): Set volume_start_time and last_stat_time as well
|
||
(set_volume_start_time): New function
|
||
(compute_duration): Do not call set_start_time, update
|
||
last_stat_time instead. Use it in calculation instead of
|
||
start_time, which is now set only once, upon startup.
|
||
(print_total_written): Removed.
|
||
(print_total_stats): New function for printing byte/speed statistics.
|
||
(_open_archive): Detect attempts to update compressed archives.
|
||
(_gnu_flush_write): Always update prev_written.
|
||
(open_archive): Call set_volume_start_time.
|
||
* src/common.h (volume_start_time,last_stat_time): New globals
|
||
(print_total_written): Replaced with:
|
||
(print_total_stats): New function
|
||
* src/delete.c (records_skipped): Remove static qualifier, the
|
||
variable is used by print_total_stats in buffer.c
|
||
* src/extract.c (check_time): Use volume_start_time when checking
|
||
for timestamp plausibility.
|
||
* src/tar.c: (options, parse_opt): Allow for optional argument to
|
||
the --totals option, which specifies a signal upon delivery of which
|
||
the statistics must be output.
|
||
(main): Call print_total_stats if total_option is set.
|
||
|
||
2006-06-11 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/xheader.c (xheader_set_single_keyword): Fix typo.
|
||
(decode_time): Avoid using gotos.
|
||
|
||
* doc/mastermenu.el: New file
|
||
* doc/Makefile.am (master-menu): New goal
|
||
* doc/tar.texi: Update master menu
|
||
|
||
2006-06-10 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* doc/tar.texi: Remove leftover include
|
||
|
||
2006-06-09 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* doc/Makefile.am (tar_TEXINFOS): Add intern.texi
|
||
(EXTRA_DIST): Remove convtexi.pl, add texify.sed
|
||
* doc/intern.texi: New file
|
||
* doc/convtexi.pl: Remove
|
||
* doc/texify.sed: Auxiliary script to convert ../src/tar.h to
|
||
header.texi
|
||
* doc/rendition.texi: Fix typo
|
||
* doc/tar.texi: Update
|
||
* src/tar.h: Fix indentation, introduce end-of-format marker for
|
||
texify.sed
|
||
|
||
* THANKS: Add Jason Armistead
|
||
* doc/tar.texi: Update
|
||
* NEWS: Update
|
||
* src/buffer.c: Implement more flexible checkpoint style
|
||
* src/common.h (checkpoint_option): Change type to unsigned
|
||
(checkpoint_style): New variable.
|
||
* src/tar.c: --checkpoint takes an optional argument specifying
|
||
number of records between two successive checkpoints (proposed
|
||
by Jason Armistead on 2004-06-22). Optional dot starting the
|
||
argument means "print dots instead of textual checkpoints".
|
||
(tar_help): New function
|
||
* src/transform.c: Minor fixes.
|
||
|
||
2006-06-08 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* gnulib.modules: Add mkdtemp
|
||
* doc/dumpdir.texi: New file
|
||
* doc/Makefile.am (tar_TEXINFOS): Add dumpdir.texi
|
||
* doc/tar.texi: Document dumpdir format
|
||
* src/incremen.c (dumpdir_locate,obstack_code_rename):
|
||
(purge_directory): Re-implement renaming. Introduce
|
||
'X' control code.
|
||
(make_tmp_dir_name): Remove
|
||
|
||
* src/transform.c (set_transform_expr,_transform_name_to_obstack):
|
||
Implement NUMBER flag.
|
||
(add_char_segment): Fix length assignment
|
||
|
||
* doc/tar.texi: Update
|
||
|
||
2006-06-07 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/transform.c (transform_name_fp): Run fun even if
|
||
_transform_name_to_obstack returns false.
|
||
(_transform_name_to_obstack,set_transform_expr): Implement GNU
|
||
extension case conversion operations.
|
||
|
||
* doc/tar.texi (transform): Document the option.
|
||
|
||
2006-06-02 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* NEWS: Update
|
||
* src/common.h (set_transform_expr): New function
|
||
* tests/Makefile.am: Add incr04.at
|
||
* tests/testsuite.at: Likewise
|
||
* tests/incr04.at: New test case
|
||
* tests/long01.at: Fix typo in the comment
|
||
* tests/multiv04.at: Use genfile --files-from
|
||
|
||
(Above changes need new genfile.c from paxutils)
|
||
|
||
* TODO: Update
|
||
* NEWS: Update
|
||
* doc/tar.texi: Update
|
||
* src/transform.c: New file
|
||
* src/Makefile.am (tar_SOURCES): New module transform.c
|
||
* src/common.h (transform_name, transform_name_fp): New functions
|
||
(show_stored_names_option): Renamed to
|
||
show_transformed_names_option. All uses changed
|
||
* src/create.c (dump_file0): Transform file name
|
||
* src/extract.c (extract_archive): safer_name_suffix and
|
||
stripped_prefix_len are now called by decode_header
|
||
* src/list.c (print_header): Update displayable name selection.
|
||
* src/tar.c: New option --transform
|
||
New option --show-transformed-names generalizes
|
||
--show-stored-names. The latter is retained as an alias.
|
||
|
||
2006-05-31 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/incremen.c (make_directory): Fix initialization of struct
|
||
directory.
|
||
|
||
2006-05-25 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* doc/tar.texi: Document use of globbing patterns.
|
||
* src/tar.c (parse_opt): Add comment before --preserve case.
|
||
|
||
2006-05-24 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* NEWS: Update
|
||
* doc/tar.texi: Update
|
||
* configure.ac (AM_INIT_AUTOMAKE): Use tar-ustar option. Raise
|
||
version requirement to 1.9
|
||
* src/common.h (struct name): Refactored
|
||
(warn_regex_usage): New variable.
|
||
(dump_file): First argument is const char*.
|
||
(name_init,name_add): Removed
|
||
(name_add_name,name_add_dir): New functions
|
||
(name_next): Return const char*.
|
||
* src/create.c: (dump_file,dump_file0): First argument is const
|
||
char*. All callers updated.
|
||
* src/names.c: Rewritten handling of member names in the command
|
||
line. Tar no longer attempts to guess globbing patterns, instead
|
||
it relies on --wildcard option.
|
||
(init_names): Removed.
|
||
(struct name_elt): New structure.
|
||
(name_array): Change type to struct name_elt. All references updated
|
||
(name_add_name,name_add_dir): New functions
|
||
(name_next_elt): New function
|
||
(name_next): Rewritten using name_next_elt.
|
||
(namelist_match): Rewritten pattern matching using
|
||
exclude_fnmatch.
|
||
(names_notfound): Warn if globbing patterns were used without
|
||
--wildcards option
|
||
* src/tar.c (options): Move globbing-related options into a
|
||
separate group. Set -l as an alias to --check-links, as required
|
||
by UNIX98
|
||
(struct tar_args): New fields
|
||
wildcards,matching_flags,include_anchored
|
||
(MAKE_EXCL_OPTIONS,MAKE_INCL_OPTIONS): New macros
|
||
(parse_opt): Use x2nrealloc to grow archive_name_array.
|
||
Use MAKE_EXCL_OPTIONS,MAKE_INCL_OPTIONS to create appropriate
|
||
fnmatch options, and name_add_name,name_add_dir to handle member
|
||
name and -C arguments.
|
||
(decode_options): Likewise
|
||
(main): Remove call to init_names.
|
||
|
||
* tests/append.at, tests/append01.at, tests/extrac01.at,
|
||
tests/options.at, tests/options02.at, tests/same-order01.at,
|
||
tests/same-order02.at: Make AT_SETUP more readable.
|
||
|
||
2006-05-23 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/buffer.c (change_tape_menu): Fix typo (uninitialized
|
||
variable) introduced yesterday.
|
||
|
||
2006-05-22 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* doc/tar.texi: Use @var{file_name} instead of @var{file name}
|
||
* src/buffer.c (change_tape_menu): Break the loop after obtaining
|
||
new archive name. Check for empty input line.
|
||
|
||
2006-05-15 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* tests/atlocal.in (XFAILFILE): New variable
|
||
* tests/version.at: Create $XFAILFILE on failure
|
||
* tests/testsuite.at (AT_TAR_CHECK): Declare expected failure if
|
||
$XFAILFILE exists.
|
||
|
||
2006-05-13 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* THANKS: Update
|
||
* src/buffer.c (read_header0): Use read_header_primitive to avoid
|
||
clubbering current_tar_info. All callers updated.
|
||
* src/common.h (read_header_primitive): New function
|
||
* src/extract.c (extract_volhdr): New function
|
||
(prepare_to_extract): Use extract_volhdr as extractor for volume
|
||
names.
|
||
* src/list.c (read_header_primitive): New function
|
||
(read_header): Front end for read_header_primitive
|
||
* tests/chtype.at: New file
|
||
* tests/volsize.at: New file
|
||
* tests/Makefile.am (TESTSUITE_AT): Add chtype.at, volsize.at
|
||
(check-full): New target.
|
||
* tests/atlocal.in (TEST_DATA_URL,STAR_DATA_URL)
|
||
(STAR_TESTSCRIPTS): Provide default values.
|
||
(tarball_prereq): New function
|
||
* tests/testsuite.at (AT_TARBALL_PREREQ): New defun
|
||
(AT_STAR_PREREQ): Rewrite using tarball_prereq
|
||
Include chtype.at and volsize.at
|
||
* tests/volume.at: Add keywords.
|
||
|
||
* tests/star/gtarfail.at, tests/star/gtarfail2.at,
|
||
tests/star/multi-fail.at, tests/star/pax-big-10g.at,
|
||
tests/star/ustar-big-2g.at, tests/star/ustar-big-8g.at
|
||
(AT_STAR_PREREQ): Provide md5 sum.
|
||
|
||
* lib/.cvsignore: Update
|
||
|
||
2006-05-08 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* tests/testsuite.at (AT_SORT_PREREQ, AT_UNPRIVILEGED_PREREQ): New
|
||
defines
|
||
|
||
* tests/extrac04.at, tests/incr03.at, tests/listed02.at,
|
||
tests/pipe.at, tests/rename01.at, tests/rename02.at,
|
||
tests/rename03.at, tests/same-order01.at: Call
|
||
AT_SORT_PREREQ. Remove fd 2 redirection after calls to sort
|
||
* ignfail.at: Call AT_UNPRIVILEGED_PREREQ
|
||
|
||
2006-05-08 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Listed incremental backups: keep more information about
|
||
directories. Handle renamed directories more effectively
|
||
(initial implementation, more updates to follow).
|
||
Source tree before this point is tagged
|
||
alpha_1_15_90_incremental_1.
|
||
|
||
* NEWS: Update
|
||
* configure.ac: Raise version number to 1.15.91
|
||
* src/common.h (rename_directory,append_incremental_renames): New
|
||
functions.
|
||
* src/extract.c (rename_directory): New function
|
||
* src/incremen.c (struct directory.contents, flags): New members
|
||
(nfs,found,new): Remove. Replaced by appropriate bitmask values in
|
||
`flags' field. All uses updated.
|
||
(directory_meta_table): New table.
|
||
(hash_directory): Rename to hash_directory_name
|
||
(compare_directories): Rename to compare_directory_names
|
||
(hash_directory_meta,compare_directory_meta,find_directory_meta):
|
||
New functions
|
||
(compare_dirents): Removed
|
||
(note_directory): Get 7th argument: directory contents.
|
||
All callers updated
|
||
(dumpdir_locate,makedumpdir): New functions
|
||
(scan_directory): Rewritten. Use makedumpdir to create a sorted
|
||
dumpdir array. This makes the obstack argument unnecessary. Besides,
|
||
ALL_CHILDREN flag is set only for new directories.
|
||
(procdir): Change return type to struct directory. Return
|
||
immediately if the directory was already initialized. Discover
|
||
directory renames using directory_meta_table.
|
||
(append_incremental_renames): New function.
|
||
(read_directory_file, write_directory_file): Use new snapshot file
|
||
format.
|
||
* src/names.c (collect_and_sort_names): Update dir_contents of the
|
||
first non-fake name entry when in listed incremental mode.
|
||
|
||
* tests/incr03.at: New testcase
|
||
* tests/rename01.at: New testcase
|
||
* tests/rename02.at: New testcase
|
||
* tests/rename03.at: New testcase
|
||
* tests/Makefile.am: Add
|
||
incr03.at,rename01.at,rename02.at,rename03.at
|
||
* tests/testsuite.at: Likewise.
|
||
* tests/listed02.at: Update for the new behavior
|
||
* tests/multiv04.at (AT_KEYWORDS): Add missing incremental kw.
|
||
|
||
2006-05-02 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/buffer.c (try_new_volume): Attempt to continue if the name
|
||
is apparently truncated in a GNU format volume.
|
||
|
||
* tests/comprec.at, tests/delete01.at, tests/delete02.at,
|
||
tests/delete04.at, tests/delete05.at, tests/extrac05.at,
|
||
tests/listed01.at, tests/multiv01.at, tests/multiv02.at,
|
||
tests/pipe.at, tests/same-order01.at, tests/same-order02.at,
|
||
tests/sparse01.at, tests/sparse03.at: Always use genfile --file,
|
||
this enables extra error checking.
|
||
|
||
* tests/multiv03.at: Attempt to extract a member with truncated
|
||
file name from the archive.
|
||
|
||
* src/buffer.c (_open_archive): Remove unnecessary argument to
|
||
check_compressed_archive.
|
||
|
||
2006-04-25 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* tests/sparse01.at, tests/sparse02.at, tests/sparse03.at,
|
||
tests/sparsemv.at, tests/sparsemvp.at: Skip the test if the file
|
||
system does not support sparse files.
|
||
* doc/tar.texi (@copying): Remove the reference to not existing
|
||
invariant section.
|
||
|
||
2006-04-11 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/extract.c (extract_dir): Fix toggling existing directory
|
||
permissions (Debian bug #361077). Use parts of patch provided by
|
||
Ian Jackson <iwj@ubuntu.com>.
|
||
* src/compare.c: Minor changes
|
||
* src/incremen.c (directory.new): New member
|
||
(note_directory,find_directory: Use make_directory to create
|
||
struct directory entries
|
||
(procdir): Avoid duplicating directories in the incremental
|
||
backup map.
|
||
* tests/Makefile.am (TESTSUITE_AT): Add extrac06.at
|
||
* tests/testsuite.at: Include extrac06.at
|
||
|
||
2006-03-18 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (trivial change)
|
||
|
||
* tests/atlocal.in (PATH): Add build-aux from the source tree,
|
||
not the build tree.
|
||
|
||
2006-03-13 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* THANKS: Add Benno Schulenberg
|
||
|
||
2006-03-13 Jim Meyering <jim@meyering.net>
|
||
|
||
* tests/listed02.at: Sort the two lines of stderr from the
|
||
first `tar -v --listed-incremental'. They would come out
|
||
reversed and provoke a test failure on a tmpfs
|
||
file system.
|
||
|
||
2006-03-13 Benno Schulenberg <benno@nietvergeten.nl>
|
||
|
||
* doc/tar.texi: Minor fixes.
|
||
* src/tar.c (options): Consistently begin help messages with a
|
||
lowercase letter.
|
||
|
||
2006-03-12 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* tests/Makefile.am (AM_CPPFLAGS): Define LOCALEDIR
|
||
|
||
2006-03-07 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* src/buffer.c (record_buffer_aligned): New var.
|
||
(init_buffer): Use it to ensure that the buffer is aligned.
|
||
This doesn't result in any measurable performance improvement
|
||
on my host (Debian GNU/Linux 3.1 stable, with default block size),
|
||
but I assume it does help on some hosts.
|
||
|
||
* lib/.cvsignore: Sort.
|
||
|
||
2006-03-04 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* tests/shortrec.at: Use -f - to read from stdin.
|
||
|
||
2006-02-21 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* doc/tar.texi: Fix typo: --to-command instead of --to-program
|
||
|
||
2006-02-20 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* tests/multiv04.at (split directory members in a MV archive):
|
||
Don't use %X in an awk printf format; this doesn't work with
|
||
Solaris 10 /usr/bin/awk. Use %x instead.
|
||
|
||
2006-02-20 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/create.c (split_long_name): Fix maximum length estimation.
|
||
Patch by Jim Lowe.
|
||
* tests/Makefile.am (lustar01.at,lustar02.at,lustar03.at): New
|
||
tests.
|
||
* tests/atlocal.in: Add build-aux to the PATH
|
||
* tests/long01.at: Remove mkhier, use AT_TAR_MKHIER instead
|
||
* tests/longv7.at: Reword test title
|
||
* tests/lustar01.at: New test
|
||
* tests/lustar02.at: New test
|
||
* tests/lustar03.at: New test
|
||
* tests/testsuite.at (AT_TAR_MKHIER): New macro
|
||
(lustar01.at,lustar02.at,lustar03.at): New tests.
|
||
|
||
2006-02-20 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* bootstrap: Don't claim lib/Makefile.am is generated automatically
|
||
from itself.
|
||
|
||
Avoid installation glitches on Solaris 8 with Sun C 5.4.
|
||
* lib/.cvsignore: Add system-ioctl.h.
|
||
* lib/Makefile.tmpl (noinst_HEADERS): Add system-ioctl.h.
|
||
* src/buffer.c: Include system-ioctl.h.
|
||
* src/compare.c: Likewise.
|
||
* src/delete.c: Likewise.
|
||
* src/system.c: Include <getline.h>, <setenv.h>.
|
||
* src/tar.c: Include <getline.h>.
|
||
|
||
2006-02-19 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/buffer.c (add_chunk_header): Free st.orig_file_name after
|
||
calling finish_header().
|
||
(new_volume): Prompt the user for archive name if unable to open
|
||
next archive.
|
||
|
||
* src/create.c (dump_file0): Restore file_count_links,
|
||
accidentally removed on 2005-11-29.
|
||
* configure.ac: Raise version number to 1.15.90
|
||
* NEWS: Likewise.
|
||
|
||
2006-02-08 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/tar.c (tar_set_quoting_style): Provide second argument to
|
||
the format spec: program_invocation_short_name. Reported by Jim
|
||
Meyering.
|
||
|
||
2006-02-07 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* gnulib.modules: Add closeout, exitfial.
|
||
* lib/.cvsignore: Add __fpending.c, __fpending.h, closeout.c,
|
||
closeout.h.
|
||
* src/buffer.c: Incluse closeout.h.
|
||
(_open_archive): Use freopen rather than fopen, so
|
||
that stdlis is always either stdout or stderr. Use
|
||
close_stdout_set_file_name to report its name.
|
||
* src/tar.c: Include closeout.h and exitfail.h.
|
||
(parse_opt, usage): Call close_stdout as appropriate, to check for
|
||
write errors.
|
||
(decode_options): Exit with status TAREXIT_FAILURE, not 1.
|
||
(main): Set exit_failure, to exit with proper status on memory
|
||
allocation failure and the like.
|
||
Use close_stdout rather than rolling our own test.
|
||
|
||
* NEWS: --version now outputs copyright etc., to conform to the
|
||
GNU coding standards. Remove --license.
|
||
* gnulib.modules: Add version-etc-fsf.
|
||
* doc/tar.texi: Document the change.
|
||
* lib/.cvsignore: Add version-etc-fsf.c, version-etc.c, version-etc.h.
|
||
* scripts/Makefile.am (SED_CMD): Update PAKCAGE_NAME, not PACKAGE.
|
||
* scripts/backup.in: Remove --license. Change --version to conform
|
||
to GCS.
|
||
* scripts/restore.in: Likewise.
|
||
* scripts/backup.sh.in (license): Output briefer license in the
|
||
style of coreutils, for consistency with other changes.
|
||
* src/tar.c: Include <version-etc.h>.
|
||
(LICENSE_OPTION): Remove.
|
||
(options): Remove --license.
|
||
(license): Remove.
|
||
(parse_opt): Use version_etc instead of rolling it ourselves.
|
||
Remove --license.
|
||
* tests/version.at (tar --version): Check only the first line of
|
||
output.
|
||
|
||
* ChangeLog, NEWS, src/common.h, src/extract.c, src/incremen.c:
|
||
* src/list.c, src/names.c, src/tar.h, src/xheader.c:
|
||
Update copyright year to 2006.
|
||
|
||
2006-02-07 Jim Meyering <jim@meyering.net>
|
||
|
||
* src/xheader.c (sparse_map_decoder): Fix misleading diagnostic.
|
||
|
||
2006-01-31 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/common.h (get_gnu_dumpdir): Remove prototype
|
||
(is_dumpdir): New function
|
||
* src/extract.c (prepare_to_extract): Use is_dumpdir member to
|
||
check for dumpdirs.
|
||
* src/incremen.c (get_gnu_dumpdir): Static
|
||
(is_dumpdir): New function
|
||
(purge_directory): Use is_dumpdir
|
||
* src/list.c (list_archive): Use is_dumpdir
|
||
Do not wrap skip_member in mv_begin/mv_end, the function itself
|
||
takes care of it.
|
||
(decode_header): Set stat_info->is_dumpdir
|
||
(skip_member): Do nothing if skipped is true
|
||
* src/tar.h (struct tar_stat_info): New members is_dumpdir and skipped.
|
||
|
||
2006-01-22 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/tar.c (decode_options): Refuse using --delete with
|
||
compression options.
|
||
|
||
2006-01-18 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* NEWS: Updated.
|
||
* configure.ac (DEFAULT_QUOTING_STYLE): New configuration variable
|
||
* doc/tar.texi: Initial documentation for --quoting-style,
|
||
--quote-chars and --no-quote-chars option.
|
||
* src/tar.c: Implement new options --quoting-style, --quote-chars
|
||
and --no-quote-chars.
|
||
|
||
2006-01-09 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* bootstrap: Default to pserver, and switch to cvs.sv.gnu.org,
|
||
to accommodate recent changes to the GNU CVS server.
|
||
* lib/.cvsignore: Add argp-pin.c, mkdirat.c, openat-priv.h.
|
||
|
||
2005-12-14 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/names.c (name_scan): Take an additional argument requesting
|
||
exact matching.
|
||
* src/common.h (name_scan): Change prototype.
|
||
* src/delete.c, src/incremen.c, src/update.c: Update invocations
|
||
of name_scan.
|
||
|
||
2005-12-13 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/common.h (struct name): New member `explicit'. Remove unused
|
||
member `isdir'.
|
||
* src/incremen.c (procdir): If name_scan() returns something,
|
||
check if it was explicitly given in the command line
|
||
* src/names.c (addname,add_hierarchy_to_namelist): Initialize
|
||
explicit member appropriately.
|
||
|
||
* src/incremen.c (procdir): If --one-file-system is given and a
|
||
directory is found to be on another device, *and* this directory
|
||
is explicitly given in the command line, then do not omit it.
|
||
|
||
2005-12-11 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* NEWS: Update
|
||
* doc/tar.texi: Document --delay-directory-restore option.
|
||
(Configuring Help Summary): Document usage of ARGP_HELP_FMT
|
||
variable to customize help output.
|
||
* src/common.h (delay_directory_restore_option): New global.
|
||
* src/extract.c (directories_first): Replaced by
|
||
delay_directory_restore_option. All uses changed.
|
||
* src/tar.c (options,parse_opt): New options
|
||
--delay-directory-restore and --no-delay-directory-restore
|
||
|
||
2005-12-09 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/buffer.c (open_archive): Add default case to shut up gcc.
|
||
* src/common.h (set_file_atime): Add prototype.
|
||
* src/create.c (to_chars_subst): Remove unused variable
|
||
Make sure useful result code is returned.
|
||
* src/incremen.c (read_directory_file): Fix format string
|
||
Thanks Eric Blake for reporting.
|
||
|
||
2005-12-08 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* doc/tar.texi (Current status): Renamed to 'Changes' and moved to
|
||
appendices.
|
||
(Large or Negative Values): Rewritten
|
||
* src/common.h (gid_to_chars, major_to_chars, minor_to_chars)
|
||
(mode_to_chars, off_to_chars, size_to_chars, time_to_chars)
|
||
(uid_to_chars, uintmax_to_chars): Return bool
|
||
* src/create.c (gid_to_chars, major_to_chars, minor_to_chars)
|
||
(mode_to_chars, off_to_chars, size_to_chars, time_to_chars)
|
||
(uid_to_chars, uintmax_to_chars): Return bool
|
||
(to_chars): Return bool
|
||
(start_header): Check return values of conversion routines. Fail
|
||
if unable to store data in the header.
|
||
|
||
2005-12-07 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* doc/tar.texi: Following the discussion with Karl Berry,
|
||
discontinue using @value{} substitutions for Texinfo commands.
|
||
Properly index all long options. Print a
|
||
separate long option index.
|
||
* doc/value.texi: Remove @set's
|
||
|
||
* doc/tar.texi: Update --info-script documentation
|
||
Resolve some more FIXMEs.
|
||
* scripts/dump-remind.in: Use TAR_VOLUME instead of reading volno
|
||
file.
|
||
* src/buffer.c (new_volume): Update invocation
|
||
(change_tape_menu): New function. Disable '!' command if given
|
||
--restrict option.
|
||
* src/common.h (sys_exec_info_script): Update declaration
|
||
(restrict_option): New global
|
||
* src/system.c (sys_exec_info_script): The script can supply new
|
||
archive name to use by writing it to file descriptor 3.
|
||
* src/tar.c (options): Add --restrict option. Use macros for
|
||
option grouping.
|
||
(license): Print full list of copyright years
|
||
* NEWS: Update
|
||
|
||
2005-12-06 Eric Blake <ebb9@byu.net> (trivial changes)
|
||
|
||
* configure.ac (DENSITY_LETTER): Fix m4 overquoting.
|
||
* .cvsignore: Ignore .bootstrap.
|
||
|
||
2005-12-06 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* doc/tar.texi: Document --to-command and --info-script
|
||
options. Add missing xrefs.
|
||
* src/buffer.c (new_volume): Use sys_exec_info_script() instead of
|
||
system().
|
||
* src/common.h (archive_format_string,subcommand_string)
|
||
(sys_exec_info_script): New prototypes.
|
||
* src/system.c (sys_exec_info_script): New function.
|
||
* src/tar.c (archive_format_string): Remove static qualifier.
|
||
(subcommand_string): New function.
|
||
|
||
2005-12-01 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/extract.c: Fix restoring of directory timestamps from
|
||
incremental archives.
|
||
(directories_first): New variable.
|
||
(prepare_to_extract): Set directories_first
|
||
(extract_archive): Call apply_nonancestor_delayed_set_stat() only
|
||
if not extracting from an incremental archive
|
||
(extract_dir): Obtain root_device here, to make sure it works
|
||
correctly with -C.
|
||
|
||
* src/incremen.c (purge_directory): Skip the member and return if
|
||
the archive is not in incremental format.
|
||
* tests/incr02.at: New testcase
|
||
* tests/Makefile.am: Add incr02.at
|
||
* tests/testsuite.at: Likewise
|
||
|
||
* THANKS: Add Guerkan Karaman.
|
||
* NEWS: Update
|
||
|
||
2005-11-30 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* doc/tar.texi (Option Summary): Rewrite the
|
||
--atime-preserve=system description in response to Ian Turner's
|
||
proposed patch.
|
||
|
||
2005-11-30 Ian Turner <ian@zmanda.com>
|
||
|
||
* doc/tar.texi (Extracting Specific Files): Remove obsolescent
|
||
FIXME.
|
||
|
||
2005-11-29 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* NEWS: New option --atime-preserve=system, which uses O_NOATIME.
|
||
* THANKS: Add Ian Turner.
|
||
|
||
* configure.ac: Prefer AC_CHECK_HEADERS_ONCE to AC_CHECK_HEADERS.
|
||
Check for stropts.h and sys/filio.h too, for _FIOSATIME.
|
||
* doc/tar.texi: Change "modification time" to "data modification
|
||
time", "change time" to "status change time", and "filesystem" to
|
||
"file system", so that we use terminology consistent with POSIX.
|
||
Use American spacing rather than French for sentence ends.
|
||
"non-dependable" -> "undependable".
|
||
(Option Summary, Attributes): Explain better the pitfalls of the
|
||
--atime-preserve option, and suggest read-only mounts,loopback
|
||
mounts, and noatime mounts for older systems.
|
||
* doc/value.texi (op-atime-preserve-system): Renamed from
|
||
op-atime-preserver-system to fix a misspelling.
|
||
* src/common.h (enum atime_preserve): Use lower case for enum values.
|
||
* src/compare.c: Don't include utimens.h; no longer needed.
|
||
(diff_file): Use set_file_atime rather than utimens; avoid closing
|
||
diff_handle until after this, so that we can set the file time stamp
|
||
via the file descriptor rather than via its name.
|
||
* src/create.c: Don't include utimens.h; no longer needed.
|
||
(dump_regular_finish): Remove. All callers now do its work inline.
|
||
(dump_dir): New arg FD. All callers changed.
|
||
Use fdsavedir rather than savedir.
|
||
(unknown_file_error): Arg is a const pointer now.
|
||
(dump_file0): 2nd arg is a const pointer now.
|
||
Treat directories more like files, with respect to --atime-preserve.
|
||
For example, also warn if a directory changes while we are dumping it.
|
||
Prefer file descriptors to file names when retrieving/setting file
|
||
attributes; this saves path-resolution time and allows us to avoid
|
||
changing mtime/ctime on Solaris when restoring atime as root.
|
||
Use O_DIRECTORY when opening directories, to avoid some race conditions.
|
||
Do not reset atime if mtime has changed. Report an error if
|
||
we cannot reset atime.
|
||
|
||
* lib/.cvsignore: Add malloc.h, regcomp.c, regex.c, regex.h,
|
||
regex_internal.c, regex_internal.h, regexc.c; used by rpmatch.
|
||
|
||
2005-11-29 Ian Turner <ian@zmanda.com>
|
||
|
||
First cut at adding support for --atime-preserve=system.
|
||
* doc/tar.texi (Option Summary): First cut at documenting it.
|
||
All other uses of --atime-preserve changed to --atime-preserve=replace.
|
||
* doc/value.texi (op-atime-preserve-replace, op-atime-preserver-system):
|
||
New.
|
||
(op-atime-preserve): Mention METHOD.
|
||
* src/common.h (atime_preserve): New enum.
|
||
(atime_preserve_option): Now of the enum type rather than bool.
|
||
All uses changed.
|
||
* src/compare.c (diff_file): Read with O_NOATIME if asked for.
|
||
* src/create.c (dump_file0): Read regular and CTG files with O_NOATIME
|
||
if asked for.
|
||
* src/tar.c (usage): Mention new usage.
|
||
(parse_opt): Parse new usage.
|
||
|
||
2005-11-29 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* THANKS: Convert back to UTF-8, sort (using LC_ALL=C on Debian
|
||
stable), and consistently use tabs rather than spaces.
|
||
|
||
2005-11-27 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/xheader.c: Remove parts of code prematurely introduced
|
||
yesterday. Thanks Eric Blake.
|
||
|
||
2005-11-26 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/xheader.c (xheader_format_name): Fix memory leak.
|
||
|
||
2005-11-11 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* gnulib.modules: Add rpmatch
|
||
* lib/stdopen.h, lib/stdopen.c: New file. Imported from coreutils.
|
||
* lib/Makefile.tmpl: Add stdopen.h, stdopen.c
|
||
* po/POTFILES.in: Add rpmatch.c
|
||
* src/tar.c (confirm): Rewritten using rpmatch.
|
||
(decode_options): Minor optimizations
|
||
(main): Call stdopen() to ensure the first three descriptors are
|
||
open.
|
||
|
||
* tests/multiv01.at, tests/multiv02.at, tests/multiv03.at,
|
||
tests/multiv04.at, tests/sparsemv.at, tests/sparsemvp.at,
|
||
tests/star/multi-fail.at: Close stdin so that if something fails
|
||
causing tar to ask for the next volume, it won't hang the
|
||
testsuite.
|
||
|
||
* src/buffer.c (flush_write,flush_read): Change data type.
|
||
(flush_archive): Compute actual buffer fill level before calling
|
||
low level function.
|
||
(close_archive): Call flush_archive again if the first call
|
||
resulted in partially filled buffer.
|
||
(try_new_volume): Rewritten handling of initial headers.
|
||
(add_chunk_header): New function. Write an additional header
|
||
before the continuation chunk. The purpose of the header is to
|
||
allow third-party tars to extract the member.
|
||
(simple_flush_write): Take an argument.
|
||
(_gnu_flush_write): Correctly handle partially filled buffers.
|
||
* src/common.h (flush_read,flush_write): Functions, again.
|
||
(write_extended): Changed declaration
|
||
(xheader_format_name): New declaration
|
||
* src/create.c (write_extended): Change type and meaning of
|
||
the first argument. All callers updated
|
||
* src/xheader.c (xheader_format_name): Remove static
|
||
qualifier. Change last argument.
|
||
Correct buffer size calculation (allocated too much space).
|
||
(xheader_write): Increase global_header_count here ...
|
||
(xheader_write_global): ... instead of here
|
||
|
||
* tests/testsuite.at (AT_TAR_CHECK): Define TEST_TAR_FORMAT
|
||
* tests/multiv01.at: Update
|
||
* tests/multiv02.at: Update
|
||
* tests/multiv03.at: Update
|
||
* tests/sparsemvp.at: Update
|
||
* tests/star/multi-fail.at: Update
|
||
|
||
* scripts/tarcat: Handle archives in pax format. Improve handling
|
||
of traditional archives.
|
||
* doc/tar.texi (Tarcat): New node
|
||
|
||
2005-11-10 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Fix splitting of sparse files between the volumes.
|
||
|
||
* src/buffer.c (try_new_volume): Bugfix. Always check
|
||
continued_file_name. If it is absent, the volume is out
|
||
of sync.
|
||
(add_multi_volume_header): Create GNU.volume.filename keyword in
|
||
the extended header.
|
||
* src/sparse.c (sparse_dump_region): Call mv_size_left.
|
||
(sparse_dump_file): Enclose the loop in mv_begin/mv_end.
|
||
* src/system.c: Do not pad compressed output if it goes to
|
||
stdout.
|
||
* src/xheader.c (xhdr_tab): New keyword GNU.volume.filename.
|
||
|
||
* tests/sparsemv.at: New testcase
|
||
* tests/sparsemvp.at: New testcase
|
||
* tests/Makefile.am: Add sparsemv.at and sparsemvp.at.
|
||
* tests/testsuite.at: Likewise.
|
||
|
||
2005-11-09 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/buffer.c: Rewritten in a more modular fashion to provide
|
||
GNU extensions (multi-volume archives and archive labels) in
|
||
pax format.
|
||
NOTICE, that some of the aspects (e.g. splitting the archive
|
||
on the extended header boundary) are still not solved, others
|
||
(splitting a sparse file between the volume) require additional
|
||
testing. Wait for the next commit.
|
||
|
||
(volume_label,continued_file_name,continued_file_size)
|
||
(continued_file_offset): New globals.
|
||
(save_name,save_totsize,save_sizeleft): Make static
|
||
(mv_begin,mv_end,mv_total_size,mv_size_left): New functions
|
||
(open_archive,flush_write,flush_read): Rewritten
|
||
|
||
* src/common.h (save_name,save_sizeleft,save_totsize): Remove
|
||
globals.
|
||
(volume_label,continued_file_name,continued_file_size): New
|
||
variables.
|
||
(flush_read,flush_write): Pointers to functions
|
||
(mv_begin,mv_end,mv_total_size,mv_size_left): New functions
|
||
(write_extended): New function.
|
||
|
||
* src/compare.c, src/create.c, src/extract.c, src/incremen.c,
|
||
src/list.c: Use mv_.* functions uniformly instead of fiddling
|
||
with the global variables.
|
||
* src/sparse.c: Use mv_.* functions where necessary.
|
||
* src/tar.c (decode_options): Allow to use --multi-volume and
|
||
--label with pax archives.
|
||
* src/xheader.c (xhdr_tab): Support for new GNU keywords.
|
||
|
||
* tests/delete01.at, tests/delete02.at, tests/delete03.at,
|
||
tests/delete04.at, tests/delete05.at, tests/extrac01.at,
|
||
tests/extrac02.at, tests/extrac03.at, tests/extrac04.at,
|
||
tests/extrac05.at, tests/incr01.at, tests/incremental.at,
|
||
tests/listed01.at, tests/listed02.at, tests/long01.at,
|
||
tests/longv7.at, tests/multiv01.at, tests/multiv02.at,
|
||
tests/multiv03.at, tests/multiv04.at, tests/options.at,
|
||
tests/options02.at, tests/same-order01.at, tests/same-order02.at,
|
||
tests/sparse01.at, tests/sparse02.at, tests/sparse03.at,
|
||
tests/star/multi-fail.at (AT_KEYWORDS): Improve to allow execution
|
||
of related tests in groups.
|
||
|
||
* doc/tar.texi: Update
|
||
|
||
2005-11-07 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* src/xheader.c (struct xhdr_tab.coder): Last arg is void const *,
|
||
not void *, to avoid create.c warning from GCC "passing argument 3
|
||
of 'xheader_store' discards qualifiers from pointer target type".
|
||
(dummy_coder, atime_coder, gid_coder, gname_coder, linkpath_coder):
|
||
(ctime_coder, mtime_coder, path_coder, size_coder, uid_coder):
|
||
(uname_coder, sparse_size_coder, sparse_numblocks_coder):
|
||
(sparse_offset_coder, sparse_numbytes_coder, dumpdir_coder):
|
||
(xheader_store): Likewise.
|
||
* src/common.h (xheader_store): Likewise.
|
||
|
||
2005-11-07 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
and Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* src/tar.c (NS_PRECISION_FORMAT_MASK): New macro.
|
||
(tar_timespec_cmp): New function. Wrapper over
|
||
timespec_cmp using the timespec precision provided by the
|
||
current archive format.
|
||
* src/common.h (tar_timespec_cmp): New declaration.
|
||
* src/compare.c (diff_file): Use tar_timespec_cmp.
|
||
* src/extract.c (file_newer_p): Likewise.
|
||
* src/update.c (update_archive): Likewise.
|
||
* tests/truncate.at: Reverted changes
|
||
* tests/update.at: Reverted changes
|
||
|
||
2005-11-07 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Support for incremental formats in pax archives.
|
||
Fixed POSIX compatibility of `sparse' extended header keywords.
|
||
|
||
* src/common.h (dumpdir_size,get_gnu_dumpdir)
|
||
(xheader_string_begin,xheader_string_add)
|
||
(xheader_string_end): New functions.
|
||
* src/create.c (dump_dir0): Handle incremental backups in pax
|
||
archives.
|
||
* src/incremen.c (dumpdir_size, get_gnu_dumpdir): New functions.
|
||
(purge_directory): Use stat_info.dumpdir instead of getting its
|
||
value explicitly.
|
||
* src/list.c (list_archive): Handle incremental backups in pax
|
||
format.
|
||
(decode_header): Initialize stat_info.dumpdir
|
||
* src/sparse.c (sparse_diff_file): Bugfix: set seekable.
|
||
(pax_dump_header): Store sparse map in GNU.sparse.map. If this
|
||
variable has been explicitly deleted, use GNU.sparse.offset/
|
||
GNU.sparse.numbytes variables.
|
||
* src/tar.c (decode_options): Incremental options are allowed with
|
||
--format=pax
|
||
(tar_stat_destroy): Free dumpdir
|
||
* src/tar.h (struct tar_stat_info.dumpdir): New member.
|
||
* src/xheader.c (xheader_keyword_deleted_p): Remove static
|
||
qualifier.
|
||
(struct xhdr_tab.decoder): Change prototype. POSIX allows string
|
||
values to contain embedded nulls, so take an extra argument
|
||
specifying the length of the string.
|
||
(decx,decg,dummy_decoder,atime_decoder,gid_decoder)
|
||
(gname_decoder,linkpath_decoder,ctime_decoder,mtime_decoder)
|
||
(path_decoder,size_decoder,uid_decoder,uname_decoder)
|
||
(sparse_size_decoder,sparse_numblocks_decoder)
|
||
(sparse_offset_decoder,sparse_numbytes_decoder): Likewise.
|
||
(decode_record): Pass value length to the handler
|
||
(run_override_list): Pass value length to the decoder
|
||
(xheader_print_n): New function
|
||
(xheader_print): Rewritten using xheader_print_n
|
||
(xheader_finish): Do not rely om strlen to compute the length of
|
||
the collected string: it can contain embedded nulls
|
||
(xheader_string_begin,xheader_string_add,xheader_string_end): New
|
||
functions.
|
||
(sparse_map_decoder,dumpdir_coder,dumpdir_decoder): New
|
||
functions. Handle GNU.sparse.map and GNU.dumpdir variables.
|
||
(xhdr_tab): Add new variables.
|
||
|
||
* tests/incr01.at: Test gnu, oldgnu, and posix formats
|
||
* tests/incremental.at: Likewise
|
||
|
||
2005-11-06 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* NEWS: Minor language and white space fixes.
|
||
|
||
* tests/truncate.at: Create files whose time stamps must fall on
|
||
1-second boundaries. This prevents tests from failing on hosts
|
||
like Solaris 8 that have nanosecond-resolution file time stamps.
|
||
* tests/update.at: Likewise.
|
||
|
||
* src/xheader.c (strtoimax, strtoumax): Remove decls; now done
|
||
in system.h.
|
||
|
||
2005-11-06 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* doc/tar.texi: Properly document incremental dumps
|
||
* doc/value.texi: Likewise.
|
||
* doc/snapshot.texi: Likewise.
|
||
|
||
2005-11-05 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
Improve listed incremental format:
|
||
|
||
* src/common.h (update_parent_directory): New prototype.
|
||
* src/create.c (dump_file): Call update_parent_directory.
|
||
* src/incremen.c (struct directory.mtime): New member.
|
||
(note_directory): Take additional arguments. All callers updated.
|
||
(scan_directory): Updated to use more metadata. In particular,
|
||
this allows to correctly detect renamed files.
|
||
(read_directory_file,write_directory_file)
|
||
(write_directory_file_entry): Support new directory file format.
|
||
* tests/listed01.at: Sleep 1 sec before creating second file.
|
||
* tests/listed02.at: Never skip the test. It should work on any
|
||
filesystem.
|
||
|
||
* doc/snapshot.texi: New file
|
||
* doc/tar.texi: Update.
|
||
* doc/Makefile.am: Update.
|
||
|
||
2005-11-04 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* src/extract.c (set_stat): Rewrite to avoid bug in Forte
|
||
Developer 7 C 5.4 Patch 111708-09 (2004-02-19).
|
||
|
||
2005-11-04 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* bootstrap: Fix quoting in help output.
|
||
(update_po): Use backward-compatible wget option --cache instead
|
||
of deprecated -C to accommodate for wget 1.10.
|
||
Changes proposed by Eric Blake
|
||
* THANKS: Add Eric Blake
|
||
|
||
2005-11-02 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* doc/tar.texi: Consistently put two spaces after sentences,
|
||
and put commas after "i.e." and "e.g.". This is the usual GNU
|
||
style in manuals.
|
||
|
||
* lib/.cvsignore: Add creat-safer.c, fcntl--.h, fcntl-safer.h,
|
||
open-safer.c, openat-die.c, verify.h, to accommodate recent gnulib
|
||
changes.
|
||
|
||
2005-10-27 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/compare.c (diff_dumpdir): Pass a valid device number to
|
||
get_directory_contents.
|
||
|
||
* THANKS: Add John Thomas McDole
|
||
|
||
* bootstrap: If file `.bootstrap' exists in the cwd and is
|
||
readable, prepend its contents to the command line
|
||
|
||
2005-10-21 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* tests/link01.at: Skip test if ln fails (suppose the OS does
|
||
not support hard links).
|
||
|
||
2005-10-04 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/tar.c (decode_options): Report error if -A or -r is used
|
||
together with compression option.
|
||
|
||
2005-09-29 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* doc/tar.texi: Use @option and @kbd consistently.
|
||
Document new options.
|
||
|
||
2005-09-28 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* NEWS: Updated
|
||
* src/common.h (show_stored_names_option): New variable
|
||
* src/list.c (print_header): If show_stored_names_option is given,
|
||
list member names as stored in the archive. Patch proposed by Erik
|
||
Cumps <erik.cumps@icos.be>
|
||
* src/tar.c: Implement --show-stored-names option
|
||
|
||
* src/common.h (test_label_option): New variable;
|
||
* src/list.c (print_header): Special handling if test_label_option
|
||
is set.
|
||
* src/names.c (all_names_found): If test_label_option is set
|
||
return true.
|
||
* src/tar.c: New option --test-label tests the archive volume
|
||
label. The option proposed by Wouter Verhelst <wouter@nixsys.be>
|
||
|
||
2005-09-21 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* tests/Makefile.am (clean-local): Don't attempt to run
|
||
$(TESTSUITE) if it doesn't exist. Problem reported by
|
||
Eric Blake.
|
||
|
||
2005-09-16 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Don't filter time stamps through the resolution supported
|
||
by struct stat; keep them to full nanosecond resolution.
|
||
This affects behavior only on older hosts or file systems
|
||
that have lower-resolution time stamps.
|
||
* src/common.h (OLDER_STAT_TIME): Parenthesize arg.
|
||
(OLDER_TAR_STAT_TIME): New macro.
|
||
(code_timespec): New function.
|
||
(BILLION, LOG10_BILLION, TIMESPEC_STRSIZE_BOUND): New constants.
|
||
* src/compare.c (diff_file): Use full time stamp resolution.
|
||
* src/create.c (start_header, dump_file0): Likewise.
|
||
(start_header, dump_file0): Adjust to new structure layout.
|
||
(dump_regular_finish): Simplify by using timespec_cmp.
|
||
* src/extract.c (struct delayed_set_stat): Don't store stat info
|
||
that we don't need, to save space. All uses changed.
|
||
(struct delayed_set_stat, struct delayed_link, file_newer_p):
|
||
(create_placeholder_file, extract_link, apply_delayed_links):
|
||
Use full time stamp resolution.
|
||
(check_time): Use code_timespec rather than rolling our own code.
|
||
(set_stat, delay_set_stat): Arg now points to tar_stat_info to
|
||
avoid losing time information. All callers changed.
|
||
* src/list.c (read_and, decode_header, print_heaeder):
|
||
Use full time stamp resolution.
|
||
* src/misc.c (code_timespec): New function.
|
||
* src/tar.h (struct tar_stat_info): Record atime, mtime, ctime
|
||
separately, for benefit of hosts with lower resolution.
|
||
* src/update.c (update_archive): Use full time stamp resolution.
|
||
* src/xheader.c (code_time): Use new code_timespec function
|
||
to simplify code.
|
||
(atime_coder, atime_decoder, ctime_coder, ctime_decoder):
|
||
(mtime_coder, mtime_decoder): Use full time stamp resolution.
|
||
|
||
Report time stamps to full resolution in environment.
|
||
Report memory allocation failures rather than ignoring them.
|
||
* src/system.c (time_to_env): New function.
|
||
(oct_to_env, str_to_env, chr_to_env): Report memory allocation failures.
|
||
(stat_to_env): Report full resolution in time stamps.
|
||
|
||
2005-09-16 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Merge changes from gnulib for file system sub-second time stamps.
|
||
* configure.ac: Remove checks for struct stat.st_spare1, struct
|
||
stat.st_atim.tv_nsec, struct stat.st_atimespec.tv_nsec, struct
|
||
stat.st_atimensec, as gnulib now does this for us.
|
||
Similarly for LIB_CLOCK_GETTIME.
|
||
* gnulib.modules: Add stat-time.
|
||
* lib/.cvsignore: Add stat-time.h.
|
||
* src/common.h: Include stat-time.h.
|
||
(timespec_lt): Remove. All callers changed to use timespec_cmp.
|
||
(get_stat_atime, get_stat_ctime, get_stat_mtime):
|
||
(set_stat_atime, set_stat_ctime, set_stat_mtime):
|
||
Remove; now defined by stat-time.h.
|
||
|
||
2005-09-14 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/incremen.c (list_dumpdir): New function. Used to dump
|
||
contents of GNUTYPE_DUMPDIR blocks.
|
||
* src/common.h (list_dumpdir): Likewise.
|
||
* src/list.c (list_archive): Use list_dumpdir() to display
|
||
GNUTYPE_DUMPDIR blocks. Do that only if two or more -v options are
|
||
given.
|
||
|
||
2005-09-12 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* lib/.cvsignore: Adjust to current gnulib and modules used.
|
||
Add getdelim.c, getdelim.h, mbchar.c, mbchar.h, mbuiter.h, memchr.c,
|
||
pipe-safer.c, size_max.h, strdup.c, strdup.h, strnlen.h, strnlen1.c,
|
||
strnlen1.h, unistd--.h.
|
||
Remove getndelim2.c, getndelim2.h, pathmax.h, sysexits.h, xstrdup.c.
|
||
|
||
Treat fishy-looking hard links like fishy-looking symlinks.
|
||
* src/extract.c (struct delayed_set_stat): Rename after_symlinks
|
||
member to after_links. All uses changed.
|
||
(struct delayed_link): Renamed from struct delayed_symlink.
|
||
All uses changed. New member is_symlink.
|
||
(delayed_link_head): Renamed from delayed_symlink_head. All uses
|
||
changed.
|
||
(create_placeholder_file): New function, taken from extract_symlink.
|
||
(extract_link): Create placeholders for fishy-looking hard links.
|
||
(extract_symlink): Move code into create_placeholder_file.
|
||
(apply_delayed_links): Renamed from apply_delayed_symlinks.
|
||
All uses changed. Create both hard links and symlinks.
|
||
|
||
2005-09-03 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* README-alpha: Modernize description of software required for
|
||
developers.
|
||
|
||
2005-09-03 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* gnulib.modules: Add strdup
|
||
* src/incremen.c (purge_directory): Do not dereference symbolic
|
||
links. Bug reported by Ralph Corderoy <ralph@inputplus.co.uk> and
|
||
David Brown <davidb@davidb.org>
|
||
* tests/incr01.at: New test.
|
||
* tests/Makefile.am: Add incr01.at
|
||
* tests/testsuite.at: Likewise
|
||
* THANKS: Updated
|
||
|
||
2005-08-17 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/incremen.c (read_directory_file): Use strtoumax to read
|
||
snapshot file contents.
|
||
(write_directory_file_entry): Use umaxtostr().
|
||
|
||
2005-07-31 Sergey Poznyakoff <gray@gnu.org.ua>
|
||
|
||
* src/create.c (file_dumpable_p,dump_file0): Fix handling of
|
||
sparse files to /dev/null with --totals option.
|
||
* tests/update.at: Remove dependency on file order.
|
||
|
||
2005-07-08 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* doc/tar.texi: Fix typo.
|
||
|
||
2005-07-07 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* tests/pipe.at: Pipe the output from `tar xfv' through sort.
|
||
|
||
2005-06-25 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* src/sparse.c (tar_sparse_init): Fill structure with zeros. Call
|
||
sparse_select_optab(). All callers updated.
|
||
(sparse_member_p, sparse_fixup_header): Use tar_sparse_init().
|
||
|
||
2005-06-23 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* src/sparse.c (pax_sparse_member_p): Checking member size
|
||
vs. file size is not reliable enough. Use sparse_map_avail.
|
||
|
||
* tests/star/gtarfail.at: Adapt to the new output format
|
||
* tests/star/gtarfail2.at: Likewise
|
||
* tests/star/multi-fail.at: Likewise
|
||
* tests/star/pax-big-10g.at: Likewise
|
||
* tests/star/ustar-big-2g.at: Likewise
|
||
* tests/star/ustar-big-8g.at: Likewise
|
||
|
||
* tests/sparse03.at: New test.
|
||
* tests/Makefile.am: Add sparse03.at
|
||
* tests/testsuite.at: Likewise
|
||
|
||
* src/xheader.c (size_decoder): Do not set archive_file_size.
|
||
|
||
Fix bugs introduced yesterday:
|
||
|
||
* src/sparse.c (tar_sparse_init): Initialize
|
||
dimped_size to 0.
|
||
(sparse_scan_file): Initialize archive_file_size to 0. The
|
||
variable keeps size of the file *as stored in the archive*, not
|
||
the size reported by stat.
|
||
|
||
2005-06-22 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
A sweep of the sparse code prompted by a bug report by Jim Meyering.
|
||
* src/sparse.c: Include <inttostr.h>.
|
||
(struct tar_sparse_file): offset and dumped_size are off_t, not
|
||
size_t. optab is now const *.
|
||
(dump_zeros): Return bool success flag, not off_t.
|
||
All callers changed.
|
||
Use a constant-zero buffer rather than clearing a buffer each time.
|
||
Don't mess up if write fails.
|
||
(dump_zeros, check_sparse_region):
|
||
Don't assume off_t is no wider than size_t.
|
||
(tar_sparse_init): Don't bother clearing a field that is already clear.
|
||
(zero_block_p): First arg is const *, not *.
|
||
(clear_block, SPARSES_INIT_COUNT): Remove.
|
||
(sparse_add_map): First arg is now struct start_stat_info *, not
|
||
struct tar_sparse_file *. All callers changed.
|
||
Use x2nrealloc to check for size_t overflow.
|
||
(parse_scan_file): Cache commonly-used parts of file.
|
||
Use an auto buffer, not a static one.
|
||
Don't bother clearing the buffer; not needed.
|
||
Don't bother clearing items that are already clear.
|
||
(oldgnu_optab, star_optab, pax_optab): Now const.
|
||
(sparse_dump_region): Don't bother clearing the buffer before
|
||
reading into it; just clear the parts that aren't read into.
|
||
(sparse_dump_file): Clear the whole local variable 'file'.
|
||
(diff_buffer): Remove; now a local var.
|
||
(check_sparse_region): Don't bother clearing buffer before
|
||
reading into it. Don't assume off_t is promoted to long.
|
||
(oldgnu_get_sparse_info, star_get_sparse_info):
|
||
Use an auto status, not static.
|
||
* src/tar.h (struct tar_stat_info): had_trailing_slash is
|
||
now bool, not int.
|
||
* src/xheader.c (sparse_offset_coder, sparse_numbytes_coder):
|
||
Rewrite to avoid cast.
|
||
(sparse_offset_decoder, sparse_numbytes_decoder):
|
||
Diagnose excess entries rather than crashing.
|
||
|
||
2005-06-22 Jim Meyering <jim@meyering.net>
|
||
|
||
* src/common.h (timespec_lt): Add a return type: bool.
|
||
|
||
2005-06-21 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Further improvements inspired by Jim Meyering's fixes.
|
||
|
||
* NEWS: Better support for full-resolution time stamps.
|
||
The -v option now prints time stamps only to 1-minute resolution.
|
||
* gnulib.modules: Add utimens.
|
||
* lib/.cvsignore: Add imaxtostr.c, inttostr.c, inttostr.h,
|
||
offtostr.c, umaxtostr.c, utimens.c, utimens.h. Remove paxconvert.c.
|
||
* lib/Makefile.tmpl (libtar_a_SOURCES): Remove paxconvert.c.
|
||
* lib/paxconvert.c: Remove; superseded by umaxtostr.c.
|
||
* po/POTFILES.in: Remove lib/paxconvert.c. Add lib/xalloc-die.c,
|
||
lib/obstack.c.
|
||
* src/buffer.c (set_start_time, compute_duration, start_time):
|
||
Use gettime rather than rolling our own code.
|
||
* src/common.h (OLDGNU_NAME_FIELD_SIZE, MAXOCTAL11, MAXOCTAL7): Remove.
|
||
(newer_ctime_option): Remove.
|
||
(timespec_lt): New function.
|
||
(OLDER_STAT_TIME): Use it.
|
||
(string_to_chars): First arg is char const *, not char *.
|
||
(tartime): Time arg is now struct timespec. New bool arg.
|
||
All callers changed.
|
||
(code_ns_fraction): New decl.
|
||
(sys_stat_nanoseconds): Remove decl.
|
||
(get_stat_atime, get_stat_ctime, get_stat_mtime): New functions.
|
||
(set_stat_atime, set_stat_ctime, set_stat_mtime): New functions.
|
||
* src/compare.c: Include utimens.h rather than rolling our own.
|
||
(diff_dir, diff_file, diff_link, diff_symlink, diff_special):
|
||
Prototype.
|
||
(diff_dumpdir, diff_multivol): Prototype.
|
||
(diff_file): Support higher-resolution time stamps.
|
||
* src/create.c: Include utimens.h rather than rolling our own.
|
||
(MAX_OCTAL_VAL): New macro.
|
||
(tar_copy_str, string_to_chars): Don't bother to zero-fill;
|
||
the destination is already zeroed.
|
||
(string_to_chars): First arg is char const *.
|
||
(start_private_header): Use MINOR_TO_CHARS, not MAJOR_TO_CHARS,
|
||
for minor device number.
|
||
(write_header_name, dump_hard_link, dump_file0):
|
||
Simplify test for old GNU format.
|
||
(start_header): Put in placeholders for uid, etc., even when
|
||
using extended headers, for benefit of older "tar" implementations.
|
||
Don't assume uintmax_t is wider than 32 bits.
|
||
Output extended header for mtime if needed.
|
||
(dump_regular_finish, dump_file0):
|
||
Support extended time stamp resolution.
|
||
* src/extract.c: Include utimens.h rather than rolling our own.
|
||
(check_time): Support extended time stamp resolution.
|
||
* src/list.c: Include <inttostr.h>.
|
||
(tartime): Use umaxtostr rather than stringify_uintmax_t_backwards.
|
||
* src/xheader.c: Include <inttostr.h>.
|
||
Do not include <xstrtol.h>.
|
||
(strtoimax) [!HAVE_DECL_STRTOIMAX && !defined strtoimax]: New decl.
|
||
(strtoumax) [!HAVE_DECL_STRTOUMAX && !defined strtoumax]: New decl.
|
||
(BILLION, LOG10_BILLION): New constants.
|
||
(to_decimal): Remove; superseded by inttostr. All callers changed
|
||
to use umaxtostr.
|
||
(xheader_format_name): Don't assume pids and uintmax_t values
|
||
fit in 63 bytes (!) when printed.
|
||
(decode_record): Don't bother to check for ERANGE; an out of range
|
||
value must be treater than len_max anyway.
|
||
If the length is out of range, output it in the diagnostic.
|
||
(format_uintmax): Remove; all callers changed to use umaxtostr.
|
||
(xheader_print): Don't assume sizes can be printed in 99 bytes (!).
|
||
(out_of_range_header): New function.
|
||
(decode_time): Use it.
|
||
(code_time): Accept struct timespec, not time_t and unsigned long.
|
||
All callers changed. Size sbuf properly, and remove unnecessary check.
|
||
Don't assume time stamps can fit in 199 bytes.
|
||
Handle negative time stamps. Handle fractional time stamps
|
||
more consistently. Don't output unnecessary trailing zeros.
|
||
(decode_time): Yield struct timespec, not time_t and unsigned long.
|
||
All callers changed.
|
||
Handle negative time stamps. Truncate towards minus infinity
|
||
consistently. Improve overflow checks, and output a better
|
||
diagnostic on overflow.
|
||
(code_num): Don't assume uintmax_t can be printed in 99 bytes (!).
|
||
(decode_num): New function, for better diagnostics.
|
||
(atime_coder, atime_decoder, gid_decoder, ctime_coder):
|
||
(ctime_decoder, mtime_coder, mtime_decoder, size_decoder):
|
||
(uid_decoder, sparse_size_decoder, sparse_numblocks_decoder):
|
||
(sparse_offset_decoder, sparse_numbytes_decoder):
|
||
Use decode_num, etc., instead of xstrtoumax, etc.
|
||
|
||
2005-06-21 Jim Meyering <jim@meyering.net>
|
||
|
||
Carefully crafted invalid headers can cause buffer overrun.
|
||
Invalid header fields go undiagnosed.
|
||
Some valid time strings are ignored.
|
||
|
||
* src/xheader.c (sparse_numblocks_decoder): Remove unchecked use
|
||
of `calloc'. Use xcalloc instead.
|
||
(decode_time, gid_decoder, size_decoder, uid_decoder):
|
||
(sparse_size_decoder, sparse_offset_decoder, sparse_numblocks_decoder):
|
||
Ensure that the result of calling xstrtoumax is no larger than
|
||
the maximum value for the target type. Upon any failure, exit with
|
||
a diagnostic.
|
||
(sparse_numblocks_decoder): Avoid buffer overrun/heap corruption:
|
||
use x2nrealloc, rather than `n *= 2' and xrealloc(p, n,....
|
||
(decode_time): Rewrite to accept time strings like
|
||
1119018481.000000000. Before, such strings were always ignored.
|
||
|
||
2005-06-13 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* src/create.c (dump_file0): Check for is_avoided_name()
|
||
first. Fixes bug reported by Martin Lohmeier
|
||
<martin@mein-horde.de>
|
||
* tests/update.at: New file
|
||
* tests/Makefile.am (TESTSUITE_AT): Add update.at
|
||
* tests/testsuite.at: Likewise
|
||
|
||
2005-06-13 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* configure.ac (AC_STRUCT_ST_BLKSIZE)
|
||
(AC_STRUCT_ST_BLOCKS): Removed. Handled by system.m4.
|
||
|
||
2005-06-02 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* src/names.c (excluded_name): excluded_filename ->
|
||
excluded_file_name, because the name was changed in gnulib.
|
||
|
||
2005-05-30 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* src/tar.c (read_name_from_file,update_argv): Automatically
|
||
detect nul-terminated list files.
|
||
* NEWS: Updated
|
||
|
||
2005-05-27 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* scripts/backup.sh.in: Bugfixes.
|
||
|
||
2005-05-26 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* scripts/backup.in: Minor fixes
|
||
* scripts/backup.sh.in (mt_begin,mt_rewind)
|
||
(mt_offline,mt_status): Use $MT to invoke mt
|
||
(init_common): Set --rsh-command option for mt if TAPE_FILE is a
|
||
remote archive.
|
||
* doc/tar.texi: Document new backup scripts behavior
|
||
|
||
2005-05-22 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* lib/.cvsignore: Updated
|
||
* lib/Makefile.tmpl: Add new paxutils files
|
||
* po/POTFILES.in: Likewise
|
||
* src/buffer.c: Update invocations of safer_name_suffix()
|
||
* src/create.c: Likewise
|
||
* src/extract.c: Likewise
|
||
* src/xheader.c: Likewise
|
||
* src/common.h: Include paxlib.h instead of paxerror.h
|
||
(safer_name_suffix,removed_prefixes_p): Removed. The functions are
|
||
imported from paxutils
|
||
* src/names.c (hash_string_hasher,hash_string_compare)
|
||
(hash_string_insert,hash_string_lookup,removed_prefixes_p)
|
||
(safer_name_suffix): Moved to paxutils
|
||
|
||
2005-05-19 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* bootstrap (copy_files): Accept optional third argument: a prefix
|
||
to be appended to destination file names.
|
||
Import paxutils/paxlib files.
|
||
* configure.ac: Remove checking for LIB_SETSOCKOPT, it is handled
|
||
by paxutils.
|
||
* lib/Makefile.tmpl (libtar_a_SOURCES): Add paxerror.c paxexit.c
|
||
paxconvert.c
|
||
* po/POTFILES.in: Likewise.
|
||
* src/common.h: Remove defines and declarations imported from
|
||
paxutils
|
||
* src/misc.c: Likewise
|
||
* src/list.c (stringify_uintmax_t_backwards): Moved to paxutils
|
||
|
||
2005-05-17 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* src/misc.c (remove_any_file): Fix typo in previous change.
|
||
|
||
2005-05-14 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Port to Solaris 10's treatment of unlinking directories.
|
||
* gnulib-modules: Add unlinkdir.
|
||
* lib/.cvsignore: Add unlinkdir.h, unlinkdir.c.
|
||
* src/common.h (we_are_root): Remove extern decl; it's now static.
|
||
* src/extract.c (we_are_root): Now static.
|
||
* src/misc.c: Include <unlinkdir.h>.
|
||
(remove_any_file): Use cannot_unlink_dir () rather than we_are_root.
|
||
|
||
* ChangeLog, ChangeLog.1, Makefile.am, NEWS, PORTS, README,
|
||
README-alpha, TODO, bootstrap, configure.ac, doc/Makefile.am,
|
||
doc/convtexi.pl, doc/fdl.texi, doc/gendocs_template,
|
||
lib/Makefile.tmpl, lib/prepargs.c, lib/waitpid.c, po/POTFILES.in,
|
||
scripts/Makefile.am, scripts/backup-specs, scripts/backup.in,
|
||
scripts/backup.sh.in, scripts/restore.in, src/Makefile.am,
|
||
src/arith.h, src/buffer.c, src/common.h, src/compare.c,
|
||
src/create.c, src/delete.c, src/extract.c, src/incremen.c,
|
||
src/list.c, src/mangle.c, src/misc.c, src/names.c, src/sparse.c,
|
||
src/system.c, src/tar.c, src/tar.h, src/update.c, src/utf8.c,
|
||
src/xheader.c, tests/Makefile.am, tests/append.at,
|
||
tests/append01.at, tests/comprec.at, tests/delete01.at,
|
||
tests/delete02.at, tests/delete03.at, tests/delete04.at,
|
||
tests/delete05.at, tests/extrac01.at, tests/extrac02.at,
|
||
tests/extrac03.at, tests/extrac04.at, tests/extrac05.at,
|
||
tests/gzip.at, tests/ignfail.at, tests/incremental.at,
|
||
tests/link01.at, tests/listed01.at, tests/listed02.at,
|
||
tests/long01.at, tests/longv7.at, tests/multiv01.at,
|
||
tests/multiv02.at, tests/multiv03.at, tests/multiv04.at,
|
||
tests/old.at, tests/options.at, tests/options02.at, tests/pipe.at,
|
||
tests/recurse.at, tests/same-order01.at, tests/same-order02.at,
|
||
tests/shortrec.at, tests/sparse01.at, tests/sparse02.at,
|
||
tests/testsuite.at, tests/truncate.at, tests/version.at,
|
||
tests/volume.at, tests/star/gtarfail.at, tests/star/gtarfail2.at,
|
||
tests/star/multi-fail.at, tests/star/pax-big-10g.at,
|
||
tests/star/quicktest.sh, tests/star/ustar-big-2g.at,
|
||
tests/star/ustar-big-8g.at:
|
||
Update FSF postal mail address.
|
||
|
||
2005-05-12 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* NEWS: Updated
|
||
* THANKS: Updated
|
||
* bootstrap: Install files from paxutils/doc
|
||
* doc/Makefile.am (tar_TEXINFOS): Add genfile.texi
|
||
* doc/tar.texi (Genfile): New appendix
|
||
* src/compare.c (diff_file): diff_handle was not initialized
|
||
* src/create.c (dump_regular_file): Correctly pad archive members
|
||
that shrunk during archiving. Repored by Frank Heckenbach.
|
||
* src/extract.c (file_newer_p): Return false if file does not
|
||
exist
|
||
(prepare_to_extract): Correct warning wording.
|
||
* tests/truncate.at: New test case
|
||
* tests/Makefile.am: Add truncate.at
|
||
* tests/testsuite.at: Likewise.
|
||
|
||
* doc/.cvsignore: Updated
|
||
* lib/.cvsignore: Updated
|
||
* tests/.cvsignore: Updated
|
||
|
||
2005-05-02 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* tests/multivol04.at: Tell awk to read from /dev/null.
|
||
|
||
Adjust to recent gnulib changes.
|
||
* lib/.cvsignore: Add dup-safer.c, fd-safer.c, unistd-safer.h.
|
||
* src/common.h (initial_umask): New var.
|
||
* src/create.c (start_ueader): Use it, and adjust to new modechange
|
||
API.
|
||
(hash_link): unsigned -> size_t parameters and result.
|
||
* src/incremen.c (hash_directory): Likewise.
|
||
* src/names.c (hash_string_hasher): Likewise.
|
||
* src/tar.c (parse_opt): Set it, and adjust to new modechange API.
|
||
|
||
2005-04-19 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* tests/Makefile.am: Add shortrec.at.
|
||
|
||
2005-04-18 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* src/buffer.c (reading_from_pipe): Remove. All uses removed.
|
||
(short_read): Don't warn about short reads; they're normal.
|
||
* tests/shortrec.at: New file.
|
||
* tests/testsuite.at: Include it.
|
||
|
||
* bootstrap (gnulib_modules): Don't create a file modlist.tmp, as
|
||
it is sometimes left behind as a garbage file (maybe due to the
|
||
multiple traps?).
|
||
|
||
2005-04-14 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* src/list.c: Handle Solaris 'X' type flag
|
||
* src/tar.h (SOLARIS_XHDTYPE): New define
|
||
|
||
2005-04-06 Sergey Poznyakoff <gray@mirddin.farlep.net>
|
||
|
||
* src/tar.c: Minor fixes to text messages. Proposed by Benno
|
||
Schulenberg.
|
||
* src/extract.c: Likewise
|
||
(extract_file): Assign orig_file_name
|
||
to save_name uniformly over the program. This fixes matching
|
||
directory names at the start of an archive volume.
|
||
* src/buffer.c (flush_write): Warn when the name of the archive
|
||
straddling volume boundary is longer than 100 characters. Earlier
|
||
behavior was to issue a fatal error.
|
||
(struct zip_magic): Reverted part of changes from 2005-04-04.
|
||
They make the maintenance too costly. Removing `unsigned'
|
||
qualifier from `magic' member should be enough.
|
||
* src/compare.c (diff_init): Read directory file if in listed
|
||
incremental. This prevents spurious 'Contents differ' diagnostics.
|
||
(diff_archive): Minor fixes to text messages
|
||
(diff_file,diff_dumpdir,diff_multivol): Assign orig_file_name
|
||
to save_name uniformly over the program. This fixes matching
|
||
directory names at the start of an archive volume.
|
||
* src/create.c: Assign orig_file_name
|
||
to save_name uniformly over the program. This fixes matching
|
||
directory names at the start of an archive volume.
|
||
* src/list.c: Likewise
|
||
|
||
* tests/multiv03.at: Modified to match the new behavior
|
||
* tests/multiv04.at: New file. Test splitting directory members between
|
||
the archive volumes.
|
||
* tests/Makefile.am: Add multiv04.at
|
||
* tests/testsuite.at: Likewise.
|
||
|
||
2005-04-04 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* configure.ac (AC_CONFIG_AUX_DIR): Rename from config to build-aux,
|
||
for reasons discussed in the thread beginning at
|
||
<http://lists.gnu.org/archive/html/bug-gnulib/2005-03/msg00119.html>.
|
||
* .cvsignore: Remove config; add build-aux.
|
||
|
||
* src/buffer.c (struct zip_magic): Use char arrays, not pointers.
|
||
The unsigned char * pointer ran afoul of pedantic C compilers, and
|
||
we didn't need pointers anyway. Put the size field before the
|
||
data to avoid unnecessary padding. All uses changed.
|
||
(magic) Make it const, since it doesn't change. All uses changed.
|
||
|
||
2005-04-02 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* src/xheader.c (decode_record): Don't dump core when given
|
||
a corrupted extended header. Problem reported by Jim Meyering.
|
||
Also, check for other ways that the header might be invalid,
|
||
e.g., missing newline at end. Do not allow keys with nulls.
|
||
Allow blanks before and after length, as POSIX requires.
|
||
Do not allow leading "-" in length. Check for length overflow.
|
||
(xheader_decode, xheader_decode_global): Let decode_record
|
||
check for exhaustion of record.
|
||
(xheader_read): Null-terminate the extended record;
|
||
decode_record relies on this.
|
||
|
||
2005-03-21 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* bootstrap (TP_URL): Change from
|
||
<http://www2.iro.umontreal.ca/~gnutra/po/maint/tar/> to
|
||
<http://www.iro.umontreal.ca/translation/maint/tar/> to avoid
|
||
some redirection glitches.
|
||
Use "trap - 0" rather than "trap 0" to fix a POSIX-conformance bug.
|
||
* doc/.cvsignore: Change "tar.info" to "tar.info*". Sort.
|
||
* lib/.cvsignore: Add intprops.h (new gnulib file).
|
||
|
||
2005-03-04 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* src/list.c (print_header): Print UID/GID in case of
|
||
empty user/group name. This could occur when dumping
|
||
files belonging to non-existing users and when listing
|
||
broken archives.
|
||
Reported by Igor Lautar.
|
||
|
||
* src/create.c: Correctly parse empty uname/gname
|
||
* src/sparse.c (sparse_scan_file): Bugfix. offset had
|
||
incorrect type.
|
||
|
||
* scripts/backup.in: Use `head -n 1'. Provide missing
|
||
argument to ${MT_STATUS}. Proposed by Jan Merka.
|
||
* scripts/backup.sh.in: Likewise. Fixed typo in
|
||
MT_OFFLINE assignment.
|
||
* scripts/restore.in (restore_fs): Use root_fs
|
||
|
||
2005-02-15 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* src/create.c: Replace strdup with xstrdup
|
||
* src/names.c: Likewise
|
||
* src/tar.c: Likewise
|
||
|
||
* tests/append01.at: Added reference to bug-tar archive
|
||
* tests/listed02.at: Use -print with find.
|
||
|
||
2005-02-11 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* THANKS: Added Tim Adye. Fixed UTF.
|
||
* src/list.c (read_header): Removed assignment to
|
||
oldgnu_header.isextended. It was breaking append mode.
|
||
|
||
* tests/append01.at: New test.
|
||
* tests/Makefile.am: Added append01.at
|
||
* tests/testsuite.at: Likewise
|
||
|
||
2005-02-06 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* gnulib.modules: New file. List of required gnulib
|
||
modules.
|
||
* bootstrap: Merge list of required modules from
|
||
paxutils with that from tar proper.
|
||
* src/tar.c: Various fixes in help and diagnostic messages.
|
||
|
||
2005-02-05 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* src/common.h (EXTRACT_OVER_PIPE): New macro
|
||
* src/compare.c: Code clean up.
|
||
* src/extract.c (extract_archive): Do not check for
|
||
EXTRACT_OVER_PIPE, decode_options() does this.
|
||
* src/misc.c (exec_error,fork_error,dup2_error)
|
||
(pipe_error): Removed unneeded functions.
|
||
* src/system.c (sys_exec_command): Use xclose, xpipe,
|
||
xfork, xdup2 and exec_fatal.
|
||
* src/tar.c (options): Improved sorting. Document --backup=off.
|
||
(decode_options): Clear backup_option if necessary.
|
||
|
||
2005-02-05 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
Initial implementation of --to-command option proposed
|
||
by Hansjoerg Lipp.
|
||
|
||
* bootstrap: Get setenv module from gnulib
|
||
* src/buffer.c: Do not use 8-bit chars in comments
|
||
* src/common.h (to_command_option)
|
||
(ignore_command_error_option): New globals
|
||
(sys_exec_command,sys_wait_command): New commands
|
||
* src/extract.c (extract_file): Handle to_command_option
|
||
Fix error recovery: decrease `size' by `written', not
|
||
by `count', otherwise tar misses the next header
|
||
Do not diagnose write error if to_command_option
|
||
is set, since the command may have exited prematurely.
|
||
It would be better to check for sigpipe, though.
|
||
(prepare_to_extract): Handle to_command_option
|
||
* src/misc.c (exec_error, fork_error, dup_error)
|
||
(pipe_error): New functions
|
||
* src/system.c (sys_exec_command)
|
||
(sys_wait_command): New functions
|
||
* src/tar.c: Handle new options --to-command,
|
||
--ignore-command-error
|
||
* THANKS: Added Hansjoerg Lipp
|
||
|
||
2005-02-03 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* src/list.c (from_header): New arg OCTAL_ONLY, normally false.
|
||
All uses changed. Fix typo that sometimes suppressed all "Archive
|
||
contains obsolescent base-64 headers" warnings, not just the first
|
||
one.
|
||
(tar_checksum): Accept only octal checksums, since they aren't
|
||
supposed to overflow into weird formats.
|
||
|
||
Adjust to gnulib changes.
|
||
* lib/.cvsignore: Add chdir-long.c, chdir-long.h, memrchr.c,
|
||
memrchr.h, openat.c, openat.h. Remove pathmax.h (added by
|
||
mistake, perhaps?), sysexit.h (my typo), xstrdup.c (gnulib removed
|
||
this file). Sort entries.
|
||
|
||
2005-02-04 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* src/extract.c: Further rewrite.
|
||
* src/buffer.c: Removed unused variables.
|
||
* src/list.c: Likewise
|
||
* src/tar.c (update_argv): Changed type to void
|
||
|
||
* src/common.h (OLDGNU_NAME_FIELD_SIZE): New constant
|
||
* src/create.c (start_private_header,write_header_name)
|
||
(dump_hard_link): Restore compatibility with 1.13.25
|
||
* src/extract.c (extract_archive): Rewritten
|
||
* src/list.c: Add translators' comments
|
||
* src/tar.c (options) Minor spelling fix
|
||
* tests/star/quicktest.sh: Determine path to the tar executable.
|
||
|
||
2005-02-03 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* po/POTFILES.in: Added tests/genfile.c
|
||
* src/buffer.c (short_read): Use ngettext()
|
||
(new_volume): use quote().
|
||
* src/create.c: Use quote()
|
||
* src/extract.c: Likewise
|
||
* src/xheader.c: Likewise
|
||
* src/misc.c: Add comments to translators
|
||
|
||
* tests/same-order01.at: sort ls output
|
||
* tests/sparse01.at (RE_CHECK): Added missing space
|
||
|
||
* tests/sparse02.at: Test extracting sparse files over a pipe.
|
||
* tests/Makefile.am: Added sparse02.at
|
||
* tests/testsuite.at: Likewise
|
||
* tests/listed02.at: Skip the test on filesystems that do not
|
||
update ctime of a file when renaming it. To be reverted when
|
||
the new incremental mode is ready.
|
||
* tests/sparse01.at: Extract and compare sparse file
|
||
|
||
2005-02-02 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* src/sparse.c: Extract sparse files even if the output
|
||
fd is not seekable.
|
||
|
||
2005-02-01 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* bootstrap: Add a comment to lib/Makefile.am saying that this
|
||
is an autogenerated file.
|
||
Exit with code 1 if any of autotools fails.
|
||
* lib/Makefile.tmpl: Insert Emacs magic to the first line.
|
||
* tests/Makefile.am: Add append.at
|
||
|
||
* m4/.cvsignore: Ignore all *.m4 files
|
||
|
||
2005-01-18 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
Rewritten handling of -T (--files-from) option. Now it
|
||
inserts the file names immediately into argv array which allows
|
||
for:
|
||
1) any valid tar options (including another -T) to be used in the file
|
||
2) any number of -T options to be given in command line
|
||
|
||
* configure.ac: Raised version number to 1.15.2
|
||
* src/common.h: Include obstack.h
|
||
(files_from_option): Removed
|
||
(unquote_option): New variable
|
||
(stat_fatal): New function
|
||
(name_close): Removed function.
|
||
* src/incremen.c: Remove inclusion of obstack.h
|
||
* src/xheader.c: Likewise.
|
||
* src/misc.c (stat_fatal): New function
|
||
* src/names.c (name_file): Removed variable.
|
||
(read_name_from_file): Removed function. All callers changed.
|
||
(name_close): Removed function. All callers changed.
|
||
* src/tar.c: New options --unquote (--no-unquote) and
|
||
--add-file
|
||
(add_file_id,read_name_from_file,update_argv): New functions
|
||
(parse_opt): Rewritten handling of -T option. Handle hidden
|
||
--HANG option for debugging purposes.
|
||
(decode_options): Init unquote_option to true. Init argv_stk.
|
||
Remove unneeded references to files_from_option
|
||
|
||
* doc/tar.texi: Document new options.
|
||
Moved rendition macros and option value definitions into
|
||
separate files
|
||
* doc/rendition.texi: New file
|
||
* doc/value.texi: New file
|
||
* doc/Makefile.am: Updated
|
||
|
||
2005-01-13 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* tests/testsuite.at (RE_CHECK): Use "join - file", not
|
||
"join file -", to work around a bug in Solaris 8 join.
|
||
Problem reported by Tomohiro Suzuki.
|
||
|
||
2005-01-13 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* src/list.c (read_header): Fixed calculation of the
|
||
size for GNU long name/link. Tar was reading one block
|
||
more if name_size was divisible by 512. Thanks Josef
|
||
Bauer.
|
||
* tests/long01.at: New file. Test listing of GNU long names
|
||
divisible by 512.
|
||
* tests/pipe.at: Sort tar output.
|
||
* tests/Makefile.am: Added long01.at
|
||
* tests/testsuite.at: Likewise.
|
||
* THANKS: Added Josef Bauer
|
||
* lib/.cvsignore: Updated
|
||
* m4/.cvsignore: Updated
|
||
* NEWS: Updated
|
||
|
||
2005-01-11 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* directory: Updated for 1.15.1
|
||
* doc/Makefile.am: Use gendocs.sh to generate web documentation
|
||
* doc/gendocs_template: Template file for gendocs.sh
|
||
* doc/tar.texi: Updated docs for --[no-]same-permissions
|
||
* src/tar.c: Reworded docstrings for --[no-]same-permissions
|
||
|
||
2005-01-06 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* bootstrap: Create m4/paxutils.m4
|
||
* configure.ac: Call tar_PAXUTILS
|
||
* tests/options02.at: Test that tar correctly handles non-option
|
||
arguments interspersed with options.
|
||
* tests/Makefile.am: Add options02.at
|
||
* tests/testsuite.at: Likewise
|
||
* tests/listed02.at: Do not create useless directory
|
||
|
||
2005-01-05 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* src/tar.c (parse_opt): Bugfix: Use ARGP_KEY_ARG. Thanks
|
||
Mike Frysinger <vapier@gentoo.org> for reporting.
|
||
|
||
2005-01-04 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* lib/Makefile.tmpl (localedir.h): Omit needless quotes and a
|
||
needless sed command. Problem reported by Paul Jarc.
|
||
|
||
2004-12-23 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Accommodate latest gnulib.
|
||
* doc/.cvsignore: Add getdate.texi.
|
||
* bootstrap: Do not treat alloca-opt specially; this is no
|
||
longer needed (and breaks builds) with latest gnulib.
|
||
|
||
2004-12-22 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* src/tar.c (main): Reverted recent changes (#ifdef).
|
||
|
||
2004-12-21 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* configure.ac: Raise version number to 1.15.1
|
||
Check for locale.h
|
||
* NEWS: Entry for 1.15.1
|
||
* src/buffer.c: Bugfix. Changes introduced 2004-11-26
|
||
broke extraction from stdin.
|
||
* src/list.c (from_header, tar_checksum): Changed declaration.
|
||
All callers updated.
|
||
* src/common.h: Likewise
|
||
* src/tar.c (main): Protect invocation of setlocale by
|
||
ifdef.
|
||
|
||
* tests/comprec.at: New test
|
||
* tests/pipe.at: New test
|
||
* tests/Makefile.am (comprec.at,pipe.at): New tests
|
||
* tests/testsuite.at: Likewise
|
||
* tests/gzip.at: Use AT_GZIP_PREREQ
|
||
* tests/star/pax-big-10g.at: Likewise
|
||
* tests/star/ustar-big-2g.at: Likewise
|
||
* tests/star/ustar-big-8g.at: Likewise
|
||
|
||
* tests/extrac04.at: Discard stderr from sort, on some
|
||
systems it spits out lots of irrelevant info.
|
||
* tests/listed02.at: Likewise
|
||
|
||
* doc/index.html.in: Rewritten in xhtml to follow recent
|
||
GNU site standards.
|
||
* THANKS: Updated
|
||
|
||
2004-12-20 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
Released version 1.15. Sources up to this point are
|
||
tagged release_1_15.
|
||
|
||
* configure.ac: Raised version number to 1.15
|
||
* NEWS: Likewise
|
||
* directory: Updated
|
||
* bootstrap (update_po): Give -r to wget. Always remove index.html
|
||
Ignore alloca-opt module (it duplicates alloca)
|
||
|
||
* tests/Makefile.am: Distribute star/quicktest.sh
|
||
* tests/star/README: Document quicktest.sh
|
||
* tests/star/qucktest.sh: Removed.
|
||
* tests/star/quicktest.sh: New file.
|
||
|
||
2004-12-18 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* NEWS: Updated
|
||
* doc/tar.texi: Document auto-detection of compressed archive
|
||
formats.
|
||
* src/tar.c (decode_options): Ignore --seek if used with --delete.
|
||
Delete.c is based on the assumption that the archive is being
|
||
actually read, not lseeked.
|
||
|
||
* tests/delete05.at: New file
|
||
* tests/extrac02.at: Fixed typo in AT_SETUP
|
||
* tests/Makefile.am: Added delete05.at
|
||
* tests/testsuite.at: Likewise.
|
||
|
||
2004-12-17 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* src/delete.c (delete_archive_members): Bugfix: when
|
||
attempting to delete an nonexistent member, the last
|
||
blocking_factor blocks were zeroed.
|
||
|
||
2004-12-14 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* TODO: Mention sub-second resolution, lutimes, lchmod.
|
||
|
||
2004-11-27 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Adjust to recent gnulib changes.
|
||
* doc/getdate.texi: Remove, since bootstrap gets it from gnulib now.
|
||
* .cvsignore: Add rmt, rmt/*, rmt/*/*.
|
||
* lib/.cvsignore: Add allocsa.c, allocsa.h, allocsa.valgrind,
|
||
charset.alias, config.charset, getcwd.c, getcwd.h, localcharset.c,
|
||
localcharset.h, ref-add.sed, ref-add.sin, ref-del.sed,
|
||
ref-del.sin, setenv.c, setenv.h, unsetenv.c. Remove pathmax.h,
|
||
xstrdup.c.
|
||
* m4/.cvsignore: Add allocsa.m4, eealloc.m4, getcwd-path-max.m4,
|
||
localcharset.m4, realloc.m4, setenv.m4. Remove malloc.m4,
|
||
pathmax.m4, realloc.m4.
|
||
|
||
2004-11-26 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* configure.ac: Raised version number to 1.14.91
|
||
* scripts/tarcat: New file
|
||
* scripts/Makefile.am: Added tarcat
|
||
* src/buffer.c (hit_eof): Changed type to boolean
|
||
(read_full_records,reading_from_pipe): New variables
|
||
(check_compressed_archive,open_compressed_archive): New functions
|
||
(open_archive): Autodetect compressed archives and act accordingly.
|
||
Set reading_from_pipe. This fixes controversial set of changes
|
||
introduced 2004-05-11,2004-03-22.
|
||
* src/list.c (tar_checksum): New function
|
||
(read_header): Use tar_checksum().
|
||
* src/common.h (tar_checksum): New function
|
||
|
||
* tests/star/README: Updated
|
||
* NEWS: Updated
|
||
* PORTS: Updated
|
||
|
||
2004-11-16 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* src/tar.c (decode_options): Fixed -o semantics. Thanks
|
||
Jean Delvare <khali@linux-fr.org>
|
||
|
||
2004-10-25 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* bootstrap: Add localcharset
|
||
* lib/Makefile.tmpl: Initialize SUFFIXES and CLEANFILES since the
|
||
makefile snippet from localcharset uses '+=' on them.
|
||
* src/Makefile.am (LDADD): Add LIBICONV
|
||
* src/list.c (decode_header): Set uname/gname to NULL if their
|
||
header counterparts are empty
|
||
* src/tar.c (options): Use OPTION_NO_TRANS
|
||
* src/utf8.c: Use locale_charset() from gnulib
|
||
|
||
* tests/star/README: Updated
|
||
|
||
* NEWS: Updated
|
||
* TODO: Minor fix
|
||
|
||
2004-10-04 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* THANKS: Added Bryan Ford
|
||
* doc/Makefile.am (.text): Fixed rule
|
||
* po/POTFILES.in: Added argp-help.c
|
||
|
||
2004-10-04 Bryan Ford <baford@mit.edu>
|
||
|
||
* src/tar.c: New option --exclude-caches, to exclude
|
||
cache directories automatically on archive creation.
|
||
Cache directories are directories containing a
|
||
standardized tag file, as specified at:
|
||
http://www.brynosaurus.com/cachedir/spec.html
|
||
* src/common.h: New variable exclude_caches_option.
|
||
* src/create.c: New function check_cache_directory(),
|
||
called from dump_dir0() if exclude_caches_option is set,
|
||
to check for a cache directory tag and exclude the directory
|
||
if such a tag is found.
|
||
* doc/tar.texi: Updated accordingly.
|
||
|
||
2004-09-16 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* doc/tar.texi: Minor fix
|
||
* src/tar.c (options): Minor fix
|
||
|
||
2004-09-12 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* TODO: Updated
|
||
* lib/Makefile.tmpl: Added 'rtapelib.o: localedir.h' dependency
|
||
* src/common.h: Comment WANT_DIRECTORY_REMOVE_OPTION.
|
||
* src/extract.c: Normalized use of remove_any_file().
|
||
* src/misc.c: Likewise.
|
||
* src/tar.c (parse_opt): Emit warning if -l option is used.
|
||
(show_default_settings): REMOTE_SHELL may be undefined
|
||
|
||
2004-09-07 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
Test suite rewritten in autotest.
|
||
|
||
* configure.ac: Updated for autotest
|
||
* src/tar.c (argp_program_version): Modified.
|
||
* tests/Makefile.am: Rewritten for autotest.
|
||
|
||
* tests/.cvsignore: Updated
|
||
* tests/append.at: New file
|
||
* tests/atlocal.in: New file
|
||
* tests/delete01.at: New file
|
||
* tests/delete02.at: New file
|
||
* tests/delete03.at: New file
|
||
* tests/delete04.at: New file
|
||
* tests/extrac01.at: New file
|
||
* tests/extrac02.at: New file
|
||
* tests/extrac03.at: New file
|
||
* tests/extrac04.at: New file
|
||
* tests/extrac05.at: New file
|
||
* tests/gzip.at: New file
|
||
* tests/ignfail.at: New file
|
||
* tests/incremental.at: New file
|
||
* tests/link01.at: New file
|
||
* tests/listed01.at: New file
|
||
* tests/listed02.at: New file
|
||
* tests/longv7.at: New file
|
||
* tests/multiv01.at: New file
|
||
* tests/multiv02.at: New file
|
||
* tests/multiv03.at: New file
|
||
* tests/old.at: New file
|
||
* tests/options.at: New file
|
||
* tests/recurse.at: New file
|
||
* tests/same-order01.at: New file
|
||
* tests/same-order02.at: New file
|
||
* tests/sparse01.at: New file
|
||
* tests/testsuite.at: New file
|
||
* tests/version.at: New file
|
||
* tests/volume.at: New file
|
||
* tests/star/gtarfail.at: New file
|
||
* tests/star/gtarfail2.at: New file
|
||
* tests/star/multi-fail.at: New file
|
||
* tests/star/pax-big-10g.at: New file
|
||
* tests/star/ustar-big-2g.at: New file
|
||
* tests/star/ustar-big-8g.at: New file
|
||
|
||
* tests/preset.in: Removed
|
||
* tests/before: Removed
|
||
* tests/after: Removed
|
||
* tests/version.sh: Removed.
|
||
* tests/append.sh: Removed.
|
||
* tests/delete01.sh: Removed.
|
||
* tests/delete02.sh: Removed.
|
||
* tests/delete03.sh: Removed.
|
||
* tests/delete04.sh: Removed.
|
||
* tests/extrac01.sh: Removed.
|
||
* tests/extrac02.sh: Removed.
|
||
* tests/extrac03.sh: Removed.
|
||
* tests/extrac04.sh: Removed.
|
||
* tests/extrac05.sh: Removed.
|
||
* tests/gzip.sh: Removed.
|
||
* tests/incremen.sh: Removed.
|
||
* tests/ignfail.sh: Removed.
|
||
* tests/link01.sh: Removed.
|
||
* tests/listed01.sh: Removed.
|
||
* tests/listed02.sh: Removed.
|
||
* tests/longv7.sh: Removed.
|
||
* tests/multiv01.sh: Removed.
|
||
* tests/multiv02.sh: Removed.
|
||
* tests/multiv03.sh: Removed.
|
||
* tests/old.sh: Removed.
|
||
* tests/options.sh: Removed.
|
||
* tests/same-order01.sh: Removed.
|
||
* tests/same-order02.sh: Removed.
|
||
* tests/volume.sh: Removed.
|
||
* tests/recurse.sh: Removed.
|
||
* tests/sparse01.sh: Removed.
|
||
* tests/star/gtarfail.sh: Removed.
|
||
* tests/star/gtarfail2.sh: Removed.
|
||
* tests/star/multi-fail.sh: Removed.
|
||
* tests/star/ustar-big-2g.sh: Removed.
|
||
* tests/star/ustar-big-8g.sh: Removed.
|
||
* tests/star/pax-big-10g.sh: Removed.
|
||
|
||
2004-09-07 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* bootstrap: Install genfile.c from paxutils
|
||
* tests/genfile.c: Removed. Integrated into
|
||
paxutils.
|
||
* tests/mksparse.c: Removed. Integrated into
|
||
(paxutils) genfile.c
|
||
* tests/Makefile.am: Removed mksparse
|
||
* tests/sparse01.sh: Use genfile instead of mksparse
|
||
|
||
2004-09-06 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
Started merging with cpio into paxutils. Sources before
|
||
this point are tagged alpha-1_14_90
|
||
|
||
* Makefile.am: Updated for use with paxutils
|
||
* README-alpha: Likewise
|
||
* bootstrap: Likewise
|
||
* configure.ac: Likewise
|
||
* lib/Makefile.tmpl: Likewise
|
||
* po/POTFILES.in: Likewise
|
||
* src/Makefile.am: Likewise
|
||
* src/buffer.c: Likewise
|
||
* src/common.h: Likewise
|
||
* src/compare.c: Likewise
|
||
* src/create.c: Likewise
|
||
* src/delete.c: Likewise
|
||
* src/extract.c: Likewise
|
||
* src/incremen.c: Likewise
|
||
* src/list.c: Likewise
|
||
* src/mangle.c: Likewise
|
||
* src/misc.c: Likewise
|
||
* src/names.c: Likewise
|
||
* src/sparse.c: Likewise
|
||
* src/system.c: Likewise
|
||
* src/tar.c: Likewise
|
||
* src/update.c: Likewise
|
||
* src/utf8.c: Likewise
|
||
* src/xheader.c: Likewise
|
||
|
||
* src/system.h: Removed
|
||
* src/rmt.c: Removed
|
||
* src/rmt.h: Removed
|
||
* src/rtapelib.c: Removed
|
||
|
||
2004-09-03 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* tests/listed02.sh: Do not depend on any particular ordering
|
||
of output.
|
||
|
||
2004-09-02 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* doc/tar.texi: Document the use of -C option in
|
||
file lists. Document --seek option.
|
||
* configure.ac: New option --with-rmt. New configuration variable
|
||
DEFAULT_RMT_DIR. Removed DEFAULT_RMT_COMMAND.
|
||
* src/Makefile.am: Install rmt into rmtdir
|
||
* src/tar.c (usage): Minor fix.
|
||
* NEWS: Updated.
|
||
* README: Updated.
|
||
|
||
2004-09-01 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* configure.ac: Raised version number to 1.14.90
|
||
* src/common.h (is_individual_file): New prototype
|
||
* src/create.c (dump_file0): Fix bug introduced
|
||
2004-02-21.
|
||
* src/names.c (register_individual_file)
|
||
(is_individual_file): New functions.
|
||
* tests/listed01.sh: Use genfile instead of dd.
|
||
* tests/listed02.sh: New file.
|
||
* tests/Makefile.am: Added listed02.sh
|
||
|
||
* NEWS: Updated
|
||
|
||
2004-08-31 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* src/sparse.c (sparse_add_map): Fixed improper initializations
|
||
of sparse_map_size. We assume that whatever number it contains
|
||
describes adequately the current size of sparse_map. The only
|
||
number we need to reset is sparse_map_avail.
|
||
* src/compare.c (verify_volume): Call set_next_block_after
|
||
if read_header returns HEADER_FAILURE
|
||
Destroy and reinitialize content of current_stat_info and
|
||
extended_header after each iteration (bug reported by
|
||
John L. Males <jlmales@yahoo.com>).
|
||
Issue a warning if the created archive contains some members
|
||
whose file names were stripped off their leading prefixes.
|
||
This is a temporary fix of the issue reported by Bdale Garbee
|
||
<bdale@gag.com> (Refs: Debian bug 230064, Message-Id
|
||
<87n07kyzhi.fsf@rover.gag.com>, Sun, 15 Feb 2004 11:22:17 -0700)
|
||
|
||
* src/names.c (removed_prefixes_p): New function.
|
||
|
||
* src/buffer.c: When computing write rate do not take
|
||
into account the time needed to verify the archive(s).
|
||
The bug reported by John L. Males <jlmales@yahoo.com>
|
||
(set_start_time,compute_duration): New functions.
|
||
(print_total_written): Use the result of compute_duration().
|
||
(close_archive): Call compute_duration.
|
||
* src/common.h (set_start_time, removed_prefixes_p): New prototypes.
|
||
* src/list.c (decode_header): Fixed initialization
|
||
of stat_info->is_sparse
|
||
* src/tar.c (main): Call set_start_time().
|
||
|
||
* src/misc.c (unquote_string): Unquote '\a' and '\v'.
|
||
Reported by Helmut Waitzmann <helmut.waitzmann@web.de>.
|
||
|
||
* NEWS: Updated
|
||
* THANKS: Updated
|
||
|
||
2004-08-30 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* src/tar.c: Fix copy-n-paste errors in the license
|
||
|
||
2004-08-19 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* scripts/backup.in: Renamed LIBPATH to LIBDIR.
|
||
Use ROOT_FS with -C option. Do not send mail
|
||
if ADMINISTRATOR is set to NONE.
|
||
* scripts/backup.sh.in (test_root): Append / to
|
||
ROOT_FS if it does not already end in it.
|
||
* scripts/restore.in: Renamed LIBPATH to LIBDIR.
|
||
New option -a (--all). Do not start restore unless
|
||
-a or patterns are given.
|
||
(restore_fs,restore_files): Fixed use of --listed option.
|
||
* doc/tar.texi: Updated
|
||
* NEWS: Updated
|
||
|
||
2004-08-17 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* src/tar.c (find_argp_option): Fixed typo
|
||
|
||
2004-08-12 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Merge argp, getopt, xalloc changes from gnulib.
|
||
* bootstrap (gnulib_modules): Add xalloc-die.
|
||
Remove code to test for patches; we don't have patches now.
|
||
Set LC_ALL=C so that file names sort consistently.
|
||
Prefer the gnulib copies of gettext.m4, glibc21.m4,
|
||
lib-ld.m4, lib-prefix.m4, po.m4 too.
|
||
|
||
* patches/getopt.diff: Remove; gnulib now works unpatched.
|
||
* configure.ac (_getopt_long_only_r): Remove check.
|
||
gl_ARGP now does this for us.
|
||
* lib/.cvsignore: Add fnmatch.h, getopt_.h, sysexit.h,
|
||
xalloc-die.c.
|
||
* src/extract.c: Adjust to changes to gnulib xalloc module.
|
||
(extr_init): Remove assignment to xalloc_fail_func; no longer needed.
|
||
(xalloc_die): New function.
|
||
|
||
2004-08-10 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* NEWS: Updated
|
||
|
||
* src/buffer.c (flush_write): Limit filenames
|
||
of the members that straddle multivolume archive
|
||
boundary to 100 characters.
|
||
(flush_read): Use strncmp when comparing multivolume member
|
||
names.
|
||
* tests/multiv03.sh: New file
|
||
* tests/Makefile.am: Added multiv03.sh
|
||
|
||
2004-08-09 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* src/list.c (read_and): Call decode_header before
|
||
calling skip_member()
|
||
(skip_member): Use is_sparse field to determine if the
|
||
member is a sparse file.
|
||
|
||
* tests/Makefile.am: Added extrac05.sh
|
||
* tests/extrac05.sh: New file
|
||
* tests/append.sh: Rearranged leading comments. Added explicit
|
||
references to report messages wherever available.
|
||
* tests/delete01.sh: Likewise
|
||
* tests/delete02.sh: Likewise
|
||
* tests/delete03.sh: Likewise
|
||
* tests/delete04.sh: Likewise
|
||
* tests/extrac01.sh: Likewise
|
||
* tests/extrac02.sh: Likewise
|
||
* tests/extrac03.sh: Likewise
|
||
* tests/extrac04.sh: Likewise
|
||
* tests/gzip.sh: Likewise
|
||
* tests/ignfail.sh: Likewise
|
||
* tests/incremen.sh: Likewise
|
||
* tests/link01.sh: Likewise
|
||
* tests/listed01.sh: Likewise
|
||
* tests/longv7.sh: Likewise
|
||
* tests/multiv01.sh: Likewise
|
||
* tests/multiv02.sh: Likewise
|
||
* tests/old.sh: Likewise
|
||
* tests/options.sh: Likewise
|
||
* tests/recurse.sh: Likewise
|
||
* tests/same-order01.sh: Likewise
|
||
* tests/same-order02.sh: Likewise
|
||
* tests/sparse01.sh: Likewise
|
||
* tests/version.sh: Likewise
|
||
* tests/volume.sh: Likewise
|
||
|
||
2004-08-08 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* bootstrap: Extended --update-po option to take an
|
||
optional argument specifying the po file to update.
|
||
* src/create.c: Improved compatibility with 1.13.25
|
||
* tests/link01.sh: New file.
|
||
* tests/Makefile.am: Added link01.sh
|
||
|
||
2004-08-06 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
Merge from gnulib.
|
||
|
||
* patches/argp.diff: Remove; no longer needed.
|
||
|
||
* lib/.cvsignore: Add stat-macros.h.
|
||
Remove addext.c, malloc.c, realloc.c.
|
||
|
||
* src/extract.c: Include <getcwd.h>.
|
||
(extract_archive): Rewrite with new macro IS_ABSOLUTE_FILE_NAME.
|
||
* src/extract.c (make_directories):
|
||
FILESYSTEM_PREFIX_LEN -> FILE_SYSTEM_PREFIX_LEN.
|
||
* src/misc.c (must_be_dot_or_slash): Likewise.
|
||
* src/names.c (excluded_name, safer_name_suffix, stripped_prefix_len):
|
||
Likewise.
|
||
* src/tar.c (parse_opt): Likewise.
|
||
* src/incremen.c (purge_directory): Fix format buffer typos in warning
|
||
strings.
|
||
* src/tar.c (options): Add missing initializers to pacify gcc.
|
||
(decode_options): Remove unused var.
|
||
|
||
2004-08-02 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* bootstrap (gnulib_modules): Add getpagesize.
|
||
* configure.ac (valloc): Remove check; valloc no longer used.
|
||
* lib/.cvsignore: Add getpagesize.h.
|
||
* m4/.cvsignore: Add getpagesize.m4.
|
||
* src/buffer.c (record_buffer): New var.
|
||
(open_archive): Don't use valloc; on older or buggy hosts, you can't
|
||
free the result. Use page_aligned_alloc instead.
|
||
* src/compare.c (diff_init): Likewise.
|
||
* src/buffer.c (open_archive): Record the pointer to be freed
|
||
into record_buffer.
|
||
(close_archive): Free record_buffer.
|
||
* src/common.h (page_aligned_alloc): New decl.
|
||
* src/misc.c (quote_n, quote): Remove these redundant functions.
|
||
(ptr_align): New function, from coreutils/src/system.h.
|
||
(page_aligned_alloc): New function.
|
||
* src/system.h (valloc): Remove.
|
||
|
||
2004-07-09 Paul Eggert <eggert@cs.ucla.edu>
|
||
|
||
* src/extract.c (extract_archive): Do not report an error
|
||
when hard-linking X to X when X exists. Problem reported by
|
||
Toby Peterson.
|
||
* lib/.cvsignore: Add fchown-stub.c.
|
||
|
||
2004-06-29 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* NEWS: Updated
|
||
* src/common.h (root_device): New global.
|
||
(gnu_restore): Renamed to purge_directory().
|
||
* src/extract.c (extr_init): Save the device number
|
||
of the root device.
|
||
(extract_archive): Renamed gnu_restore() to purge_directory().
|
||
* src/incremen.c (gnu_restore): Renamed to purge_directory().
|
||
Do not attempt to purge the directory if it is on a different
|
||
device and one_file_system_option is set.
|
||
|
||
2004-06-25 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* doc/tar.texi: The actual default for exclude patterns
|
||
is --no-anchored. Fixed.
|
||
* src/tar.c (options): Likewise.
|
||
Thanks "Felix Natter" <felix.natter@ldc.de> for noticing.
|
||
|
||
2004-06-22 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* doc/tar.texi: Fixed several inconsistencies.
|
||
* src/tar.c: Fixed docstring for --checkpoint option.
|
||
|
||
2004-05-19 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* src/buffer.c (seek_archive): New function
|
||
* src/common.h (seek_archive): New function
|
||
(seekable_archive): New global.
|
||
* src/list.c (skip_file): Use seek_archive() if
|
||
possible.
|
||
* src/tar.c (struct fmttab): Accept 'pax' as alias
|
||
for 'posix'
|
||
(options): New option -n (--seek).
|
||
* src/update.c: Determine type of the archive before
|
||
appending to it.
|
||
|
||
* TODO: Updated.
|
||
|
||
2004-05-19 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* bootstrap: New option --update-po
|
||
* src/tar.c: New option -H (short alias to --format)
|
||
* doc/tar.texi: Document -H option
|
||
* src/names.c (safer_name_suffix): Fixed bug introduced
|
||
2004-05-11.
|
||
|
||
2004-05-16 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* bootstrap: Apply patches from patch subdirectory
|
||
* patches: New dir
|
||
* patches/argp.diff: New file
|
||
* patches/getopt.diff: New file
|
||
* configure.ac: Check for _getopt_long_only_r and
|
||
force using included version of getopt if the function
|
||
is not available.
|
||
* src/tar.c: Use argp for command line parsing.
|
||
* src/system.h: Minor formatting fix
|
||
* m4/.cvsignore: Updated
|
||
* lib/.cvsignore: Updated
|
||
* doc/tar.texi: Minor fix.
|
||
* src/extract.c: Fix improper use of 'path' term
|
||
* src/incremen.c: Likewise
|
||
* src/list.c: Likewise
|
||
* src/misc.c: Likewise
|
||
* src/names.c: Likewise
|
||
* src/rmt.h: Likewise
|
||
* src/rtapelib.c: Likewise
|
||
* src/update.c: Likewise
|
||
* src/xheader.c: Likewise
|
||
* tests/star/README: Minor fix
|
||
|
||
2004-05-13 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* configure.ac: Raised version number to 1.14.1
|
||
* src/tar.c: Renamed --strip-path to --strip-components
|
||
Changed improper use of _() to ngettext().
|
||
* src/extract.c: Renamed strip_path_option to strip_components_option
|
||
* src/common.h: Likewise.
|
||
* NEWS: Updated.
|
||
* doc/tar.texi: Updated
|
||
|
||
2004-05-11 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* src/system.c (sys_child_open_for_uncompress): Do not
|
||
set read_full_records_option: the compressed archive is
|
||
likely not to contain integer number of records. Should
|
||
the user wish to use reblocking, he may always give tar
|
||
-B option. This is a minor improvement over the change
|
||
dated 2004-03-22.
|
||
* src/buffer.c (open_archive): Removed assignment to
|
||
read_full_records_option.
|
||
|
||
* src/names.c (safer_name_suffix): (safer_name_suffix): Use "%s"
|
||
as the format argument, rather than a possibly-translated variable
|
||
string. Patch provided by Jim Meyering <jim@meyering.net>
|
||
* src/tar.c (decode_options): Fixed typo in the comment.
|
||
* tests/star/README: Minor correction
|
||
|
||
2004-05-11 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* directory: New file. GNU directory entry for tar.
|
||
* doc/Makefile.am: Rewritten. Added rules for generating
|
||
documentation for the project's website.
|
||
* doc/.cvsignore: Updated
|
||
* doc/index.html.in: New file.
|
||
|
||
2004-05-11 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* configure.ac: Raised version number to 1.14
|
||
* NEWS: Updated.
|
||
* tests/after: Added copyleft statement
|
||
* tests/before: Added copyleft statement
|
||
* tests/preset.in: Added copyleft statement
|
||
|
||
Tar 1.14 is released. Sources up to this point are tagged
|
||
release_1_14
|
||
|
||
2004-05-10 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* configure.ac: Fixed prerequisite headers for sys/buf.h
|
||
(needed on FreeBSD)
|
||
* src/system.h: Likewise.
|
||
* tests/after (compare): Fixed argument quoting under eval
|
||
* tests/before: Quote TAR_ARCHIVE_FORMATS
|
||
|
||
2004-05-10 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* NEWS: Updated
|
||
* README: Updated
|
||
* PORTS: Updated
|
||
* configure.ac: Call gl_AC_TYPE_INTMAX_T. Document
|
||
DEFAULT_.* variables. Use DEFAULT_RMT_COMMAND to set
|
||
the pathname of the rmt utility.
|
||
New option --enable-backup-scripts.
|
||
* doc/tar.texi: Updated
|
||
* scripts/Makefile.am: Install the scripts only if requested
|
||
by the configure.
|
||
* scripts/backup.in: Fixed --version output.
|
||
Fixed initialization of the listing files and printing
|
||
the time of the last previous level dump.
|
||
* scripts/restore.in: Fixed --version output.
|
||
* src/Makefile.am (localedir.h rule): Generate correct
|
||
DEFAULT_RMT_COMMAND variable.
|
||
* src/common.h (rmt_command_option): New variable.
|
||
* src/list.c (read_and): Print block number before
|
||
issuing 'Skipping to next header' diagnostics, if
|
||
requested by block_number_option.
|
||
* src/rtapelib.c: Use rmt_command_option instead of
|
||
hardcoded "/etc/rmt".
|
||
* src/tar.c: New option --rmt-command.
|
||
(decode_options): Handle --rmt-command. Initialize
|
||
rmt_command_option to DEFAULT_RMT_COMMAND.
|
||
|
||
2004-05-09 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* doc/tar.texi: Further update.
|
||
|
||
2004-05-08 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* configure.ac: Minor fix
|
||
* scripts/Makefile.am: Updated
|
||
* scripts/backup-specs: Updated
|
||
* scripts/backup.in: Minor fixes
|
||
* scripts/backup.sh: Removed
|
||
* scripts/backup.sh.in: New file. Source for backup.sh
|
||
* scripts/restore.in: New file
|
||
* scripts/.cvsignore: Updated
|
||
* scripts/WARNING: Removed
|
||
* doc/tar.texi: Updated
|
||
* NEWS: Updated
|
||
|
||
2004-05-07 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* src/names.c (name_gather): Bugfix: Honor single -C with
|
||
--same-order.
|
||
* tests/same-order01.sh: New file
|
||
* tests/same-order02.sh: New file
|
||
* tests/Makefile.am: Updated
|
||
|
||
* tests/append.sh: Added copyleft header
|
||
* tests/delete01.sh: Likewise
|
||
* tests/delete02.sh: Likewise
|
||
* tests/delete04.sh: Likewise
|
||
* tests/extrac01.sh: Likewise
|
||
* tests/extrac02.sh: Likewise
|
||
* tests/extrac03.sh: Likewise
|
||
* tests/extrac04.sh: Likewise
|
||
* tests/gzip.sh: Likewise
|
||
* tests/ignfail.sh: Likewise
|
||
* tests/incremen.sh: Likewise
|
||
* tests/multiv01.sh: Likewise
|
||
* tests/old.sh: Likewise
|
||
* tests/options.sh: Likewise
|
||
* tests/recurse.sh: Likewise
|
||
* tests/version.sh: Likewise
|
||
* tests/volume.sh: Likewise
|
||
* tests/star/gtarfail.sh: Likewise
|
||
* tests/star/gtarfail2.sh: Likewise
|
||
* tests/star/multi-fail.sh: Likewise
|
||
* tests/star/pax-big-10g.sh: Likewise
|
||
* tests/star/qucktest.sh: Likewise
|
||
* tests/star/ustar-big-2g.sh: Likewise
|
||
* tests/star/ustar-big-8g.sh: Likewise
|
||
|
||
* doc/.cvsignore: Updated
|
||
|
||
2004-05-06 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* configure.ac: Check whether date accepts +format argument
|
||
(for backup scripts).
|
||
* scripts/level-0: Removed
|
||
* scripts/level-1: Removed
|
||
* scripts/weekly.new: Removed
|
||
* scripts/dump-remind: Removed
|
||
* scripts/backup.in: New file
|
||
* scripts/backup.sh: New file
|
||
* scripts/dump-remind.in: New file
|
||
* scripts/backup-specs: Updated
|
||
* scripts/Makefile.am: Updated for new directory contents.
|
||
* scripts/.cvsignore: Updated
|
||
|
||
2004-05-05 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* TODO: Updated
|
||
* doc/tar.texi: Updated
|
||
* src/tar.c: --utc implies -vv
|
||
|
||
2004-04-28 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* src/utf8.c: Make sure ICONV_CONST is defined. AM_ICONV
|
||
does not define it if it fails to find iconv.h.
|
||
|
||
2004-04-26 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* bootstrap: Use gnulib-tool to generate lib/Makefile.am
|
||
and parts of configure.ac
|
||
* configure.ac: Invoke tar_GNULIB to configure gnulib stuff.
|
||
* lib/Makefile.am: Removed
|
||
* lib/Makefile.tmpl: New file.
|
||
* lib/.cvsignore: Updated
|
||
* m4/.cvsignore: Updated
|
||
* src/xheader.c: Include stpcpy.h
|
||
|
||
* src/create.c: Produce an error, not warning, if the
|
||
filename is too long.
|
||
* tests/longv7.sh: Synchronized with the recent changes.
|
||
|
||
2004-04-20 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* configure.ac: Fixed test for iconv_t
|
||
* src/rmt.h: Bugfix by Jürgen Weigert
|
||
* THANKS: Add Jürgen Weigert
|
||
* tests/star/README: Fixed typo
|
||
|
||
2004-04-04 Paul Eggert <eggert@twinsun.com>
|
||
|
||
Merge getdate documentation changes from coreutils.
|
||
|
||
* doc/getdate.texi: Update from coreutils CVS.
|
||
* doc/tar.texi: Fix getdate menu to match getdate.texi's.
|
||
|
||
Merge recent gnulib changes, and remove some lint.
|
||
|
||
Improve support for nanosecond-resolution time stamps.
|
||
* bootstrap: Add gettime, timespec modules.
|
||
* configure.ac (gl_GETTIME, gl_TIMESPEC): Add.
|
||
* lib/.cvsignore (getopt_int.h, gettime.c, gettimeofday.c,
|
||
timespec.h): Add.
|
||
* lib/Makefile.am (libtar_a_SOURCES): Add gettime.c, timespec.h.
|
||
* m4/.cvsignore: Add clock_time.m4, gettime.m4, gettimeofday.m4,
|
||
st_mtim.m4, timespec.m4. Remove malloc.m4, realloc.m4.
|
||
* src/common.h (newer_mtime_option): Now a struct timespec, not
|
||
time_t. All uses changed.
|
||
(NEWER_OPTION_INITIALIZED, OLDER_STAT_MTIME): New macros.
|
||
* src/create.c (dump_file0): Use OLDER_STAT_TIME to compare times.
|
||
* src/incremen.c (scan_path): Likewise.
|
||
* src/list.c (read_and): Likewise.
|
||
* src/list.c (read_and): Use NEWER_OPTION_INITIALIZED to decide
|
||
whether newer_mtime_option is initialized.
|
||
* src/tar.c (decode_options): Likewise.
|
||
* src/tar.c (decode_options): Adjust to new signature for get_date.
|
||
|
||
* src/buffer.c (short_read, flush_read): Use size_t, not ssize_t, for
|
||
result of safe_read, full_write, and similar functions.
|
||
Detect safe_read error by comparing to SAFE_READ_ERROR;
|
||
detect full_write error by comparing to 0.
|
||
All uses changed.
|
||
* src/common.h (write_error_details, sys_write_archive_buffer):
|
||
Likewise.
|
||
* src/misc.c (write_error_details): Likewise.
|
||
* src/rmt.c (main): Likewise.
|
||
* src/rmt.h (rmt_read__, rmt_write__): Likewise.
|
||
* src/rtapelib.c (rmt_read__, rmt_write__, rmt_ioctl__): Likewise.
|
||
* src/sparse.c (sparse_scan_file, sparse_dump_region,
|
||
check_sparse_region, check_data_region): Likewise.
|
||
* src/system.c (sys_write_archive_buffer, sys_drain_input_pipe,
|
||
sys_child_open_for_compress, sys_child_open_for_uncompress): Likewise.
|
||
* src/update.c (append_file): Likewise.
|
||
|
||
* src/buffer.c (clear_read_error_count): Use explicit (void)
|
||
to indicate a function with no arguments.
|
||
* src/create.c (check_links): Likewise.
|
||
* src/system.c (sys_get_archive_stat, sys_save_archive_dev_ino,
|
||
sys_detect_dev_null_output, sys_drain_input_pipe, sys_spawn_shell,
|
||
sys_reset_uid_gid, sys_get_archive_stat, sys_save_archive_dev_ino,
|
||
sys_detect_dev_null_output, sys_drain_input_pipe, sys_spawn_shell):
|
||
Likewise.
|
||
* src/utf8.c (get_input_charset): Likewise.
|
||
* src/xheader.c (xheader_ghdr_name, xheader_write_global,
|
||
xheader_decode_global, extended_header_init): Likewise.
|
||
* tests/mksparse.c (usage): Likewise.
|
||
|
||
* src/buffer.c (new_volume): Rename local variables to avoid
|
||
shadowing warnings.
|
||
* src/common.h (file_dumpable_p, sys_stat_nanoseconds,
|
||
sparse_file_p, sparse_member_p, sparse_fixup_header,
|
||
sparse_dump_file, sparce_extract_file, sparse_skip_file,
|
||
sparse_diff_file): Likewise.
|
||
* src/compare.c (diff_archive): Likewise.
|
||
* src/create.c (file_dumpable_p, dump_regular_file, dump_dir0,
|
||
dump_dir, dump_hard_link, file_count_links, dump_file0, dump_file):
|
||
Likewise.
|
||
* src/extract.c (repair_delayed_set_stat): Likewise.
|
||
* src/misc.c (maybe_backup_file, add_hierarchy_to_namelist):
|
||
Likewise.
|
||
* src/sparse.c (struct tar_sparse_optab, tar_sparse_dump_region,
|
||
tar_sparse_extract_region, sparse_dump_region, sparse_extract_region,
|
||
sparse_dump_file, sparse_file_p, sparse_member_p,
|
||
sparse_fixup_header, sparse_extract_file, sparse_skip_file,
|
||
check_data_region, sparse_diff_file): Likewise.
|
||
* src/system.c (sys_stat_nanoseconds): Likewise.
|
||
* src/xheader.c (xheader_format_name): Likewise.
|
||
|
||
* src/common.h (enum old_files): Remove comma before }; not portable.
|
||
|
||
* src/common.h (read_fatal_details): Add __attribute__ ((noreturn)).
|
||
* src/rmt.c (usage): Likewise.
|
||
* src/xheader.c (xheader_set_single_keyword): Likewise.
|
||
* tests/genfile.c (usage): Likewise.
|
||
* tests/mksparse.c (die, usage): Likewise. Also add printf attribute
|
||
to die.
|
||
|
||
* src/common.h (gname_to_gid, uname_to_uid): Add const to avoid
|
||
some gcc warnings.
|
||
* src/names.c (uname_to_uid, gname_to_gid): Likewise.
|
||
* src/utf8.c (struct langtab.lang, struct langtab.terr, struct
|
||
langtab.charset, charset_lookup): Likewise.
|
||
|
||
* src/common.h (name_init): Remove unused args. All callers changed.
|
||
* src/names.c (name_init): Likewise.
|
||
|
||
* src/common.h (usage, xheader_write, xheader_write_global,
|
||
sys_reset_uid_gid): New decls.
|
||
|
||
* src/compare.c (report_difference, process_noop): Add
|
||
__attribute__ ((unused)) for unused attributes.
|
||
* src/sparse.c (oldgnu_sparse_member_p, star_sparse_member_p):
|
||
Likewise.
|
||
* src/xheader.c (dummy_coder, dummy_decoder, atime_coder,
|
||
gid_coder, gname_coder, linkpath_coder, ctime_coder, mtime_coder,
|
||
path_coder, size_coder, uid_coder, uname_coder,
|
||
sparse_numblocks_coder): Likewise.
|
||
|
||
* src/create.c (dump_regular_finish, dump_dir0, dump_dir,
|
||
dump_file0): Now static.
|
||
* src/utf8.c (charset_lookup): Likewise.
|
||
* src/xheader.c (xheader_protected_pattern_p,
|
||
xheader_protected_keyword_p, xheader_set_single_keyword,
|
||
xheader_keyword_deleted_p, xheader_keyword_override_p,
|
||
xheader_list_append, xheader_list_destroy, xheader_set_keyword_equal):
|
||
Likewise.
|
||
* tests/genfile.c (usage): Likewise.
|
||
* tests/mksparse.c (die, mkhole, mksparse, usage, xlat_suffix):
|
||
Likewise.
|
||
|
||
* src/create.c (hash_link): Rewrite to avoid cast.
|
||
|
||
* src/extract.c (file_newer_p): Use parameter, not global var.
|
||
* src/misc.c (write_error_details): Likewise.
|
||
|
||
* src/extract.c (prepare_to_extract): Remove directory arg; not
|
||
used. All callers changed.
|
||
|
||
* src/misc.c (close_fatal): Remove; not used.
|
||
* src/system.c (sys_utimes): Likewise.
|
||
|
||
* src/rmt.c (get_string): Avoid buffer overrun (off by 1 error).
|
||
|
||
* src/rmt.c (main): Update copyright date to 2004.
|
||
* src/tar.c (decode_options): Likewise.
|
||
|
||
* src/rtapelib.c (get_status_string): Don't lose errno when
|
||
skipping the error messages.
|
||
(get_status): Report an error if atol returns a negative number.
|
||
|
||
* src/utf8.c (struct langtab, langtab, charset_lookup,
|
||
get_input_charset) [!defined HAVE_LIBCONV]: Omit unused
|
||
definitions.
|
||
(iconv_open, iconv, iconv_close) [!defined HAVE_LIBCONV]:
|
||
Use macros, not definitions, to avoid type clashes with system
|
||
headers.
|
||
(charset_lookup): Local var is now auto, not static.
|
||
(utf8_convert): Use ICONV_CONST instead of const, to avoid
|
||
type clashes.
|
||
|
||
* src/utf8.c (langtab): Initialize all elements of struct, to
|
||
avoid gcc warning.
|
||
* src/xheader.c (xhdr_tab): Likewise.
|
||
|
||
* src/xheader.c: Include fnmatch.h, since we use fnmatch.
|
||
|
||
* tests/mksparse.c (mkhole): Fix typo: bool was assigned to off_t.
|
||
|
||
2004-04-04 Sergey Poznyakoff <gray@Noldor.runasimi.org>
|
||
|
||
* NEWS: Updated
|
||
* configure.ac: Raised version number to 1.13.94
|
||
* src/system.h: Protect inclusion of <sys/time.h>
|
||
by ifdef.
|
||
Declare time() if HAVE_DECL_TIME is 0
|
||
* tests/.cvsignore: Added mksparse
|
||
|
||
* tests/sparse01.sh: New file
|
||
* tests/multiv02.sh: New file
|
||
* tests/Makefile.am: Add sparse01.sh and multiv02.sh
|
||
* tests/longv7.sh: Added missing call to 'after'
|
||
|
||
* src/common.h: Added missing prototypes
|
||
* src/compare.c (diff_archive): Use is_sparse member
|
||
instead of GNUTYPE_SPARSE.
|
||
* src/create.c: Removed unused variables
|
||
* src/extract.c (extract_archive): Use sparse_member_p instead
|
||
of GNUTYPE_SPARSE.
|
||
Removed unused variables
|
||
* src/list.c (decode_header): Use sparse_fixup_header to correct
|
||
the st_size value.
|
||
(print_header): Do not rely on GNUTYPE_SPARSE type.
|
||
Use st->stat.st_size to print real file size.
|
||
(skip_member): Assign stat_info.file_name to save_name. This fixes
|
||
bug reported by Mads Martin Joergensen <mmj@suse.de>
|
||
Use sparse_skip_file() to skip sparse members.
|
||
* src/rtapelib.c: include "common.h"
|
||
* src/sparse.c (struct tar_sparse_optab.sparse_member_p)
|
||
(struct tar_sparse_optab.fixup_header): New member
|
||
(tar_sparse_member_p): New function.
|
||
(tar_sparse_init): Return true if decode_header is not provided
|
||
(tar_sparse_fixup_header)
|
||
(sparse_member_p,sparse_fixup_header)
|
||
(sparse_skip_file)
|
||
(oldgnu_sparse_member_p,oldgnu_fixup_header,star_sparse_member_p)
|
||
(star_fixup_header, pax_sparse_member_p): New function
|
||
(pax_decode_header): Remove
|
||
* src/system.h: Include <sys/time.h> and <utime.h> when available
|
||
* src/tar.c (usage): Prototype moved to common.h
|
||
* src/tar.h (struct tar_stat_info.is_sparse): New member
|
||
* src/utf8.c (utf8_convert): Changed prototype
|
||
(get_input_charset): Removed unused variable
|
||
* src/xheader.c: include <fnmatch.h>
|
||
(size_decoder): Assign to both st->archive_file_size and
|
||
st->stat.st_size.
|
||
(st->stat.st_size): Assign to st->stat.st_size
|
||
(sparse_numbytes_decoder): Removed unused variable
|
||
* src/.cvsignore: Added .gdbinit
|
||
* THANKS: Added Mads Martin Joergensen
|
||
|
||
2004-03-26 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* src/create.c (write_long_name): Do not allow more than
|
||
NAME_FIELD_SIZE-1 characters in a file name for V7 format
|
||
archives.
|
||
* tests/longv7.sh: New file.
|
||
* tests/Makefile.am: Add longv7.sh
|
||
|
||
2004-03-22 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* src/buffer.c (open_archive): Clear read_full_records_option
|
||
if reading from a pipe.
|
||
(short_read): Display warning about the deduced record size
|
||
if version > 1
|
||
* tests/star/pax-big-10g.sh: Updated to match the above changes.
|
||
* tests/star/ustar-big-2g.sh: Likewise.
|
||
* tests/star/ustar-big-8g.sh: Likewise.
|
||
|
||
* configure.ac: Added gl_FUNC_STRTOULL
|
||
* src/create.c (start_header): Check for GNU_FORMAT
|
||
if incremental_option is set.
|
||
* src/xheader.c (to_decimal): New function.
|
||
(xheader_format_name): Use to_decimal() instead of snprintf.
|
||
* tests/listed01.sh: Use genfile instead of dd
|
||
* tests/multiv01.sh: Likewise.
|
||
|
||
2004-03-12 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* src/list.c (read_and): Stop processing the archive after
|
||
encountering a single zero record. Many old archives contain
|
||
arbitrary garbage after it.
|
||
The warning is issued anyway.
|
||
|
||
2004-03-02 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* src/rtapelib.c (rmt_lseek__,rmt_ioctl__): Bugfix. The
|
||
conversion buffer was not null terminated. Fix provided
|
||
by Leland Lucius <llucius@tiny.net>
|
||
* THANKS: Added Leland Lucius
|
||
* src/utf8.c (utf8_convert): Indentation fix.
|
||
|
||
2004-02-29 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* src/buffer.c (flush_read): Bugfix: the
|
||
condition at line 714 included
|
||
|
||
|| (status > 0 && !read_full_records_option)
|
||
|
||
which is grossly wrong, since even if new_volume() below succeeds,
|
||
the subsequent call to rmtread will overwrite the chunk of data
|
||
already read in the buffer and thus spoil everything.
|
||
* src/system.c (sys_child_open_for_uncompress): Minor stylistic
|
||
fix.
|
||
* tests/star/multi-fail.sh: New test.
|
||
* tests/Makefile.am: Added multi-fail.sh
|
||
* tests/star/README: Updated
|
||
|
||
2004-02-29 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* NEWS: Updated
|
||
* configure.ac: Removed spurious AC_CHECK_LIB(iconv)
|
||
* src/common.h (utc_option): new global
|
||
(enum old_files.KEEP_NEWER_FILES): New element
|
||
* src/extract.c: Handle --keep-newer-files option
|
||
* src/list.c (tartime): Print UTC if --utc was given.
|
||
* src/tar.c: New options: --utc and keep-newer-files
|
||
|
||
* tests/Makefile.am: Added new tests
|
||
* tests/after: Rewritten
|
||
* tests/before: Rewritten
|
||
* tests/preset.in: Rewritten
|
||
* tests/delete03.sh: Accommodate for the new testsuite logic
|
||
* tests/gzip.sh: Likewise
|
||
* tests/incremen.sh: Likewise
|
||
* tests/listed01.sh: Likewise
|
||
* tests/multiv01.sh: Likewise
|
||
* tests/old.sh: Likewise
|
||
* tests/options.sh: Likewise
|
||
* tests/version.sh: Likewise
|
||
* tests/volume.sh: Likewise
|
||
|
||
* tests/star: New directory
|
||
* tests/star/README: New file
|
||
* tests/star/gtarfail.sh: New file
|
||
* tests/star/gtarfail2.sh: New file
|
||
* tests/star/pax-big-10g.sh: New file
|
||
* tests/star/qucktest.sh: New file
|
||
* tests/star/ustar-big-2g.sh: New file
|
||
* tests/star/ustar-big-8g.sh: New file
|
||
|
||
2004-02-26 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* doc/tar.texi (dircategory Individual utilities): Append period,
|
||
as suggested by Karl Berry.
|
||
|
||
2004-02-24 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* src/list.c (decode_header): Call xheader_decode before
|
||
the assignment to current_stat_info.archive_file_size.
|
||
|
||
2004-02-23 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* configure.ac: Invoke AM_ICONV, to define ICONV_CONST if needed.
|
||
|
||
2004-02-23 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
1.13.93 released.
|
||
|
||
* NEWS: Updated
|
||
* tests/before: Move testing of the prerequisite archive formats
|
||
to the separate function 'prereq'. Do not expect any arguments
|
||
* tests/delete03.sh: Use prereq() instead of passing arguments
|
||
to 'before'.
|
||
* tests/incremen.sh: Likewise.
|
||
* tests/listed01.sh: Likewise.
|
||
* tests/multiv01.sh: Likewise.
|
||
|
||
2004-02-22 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
Added UTF-8 support. Finished global extended header
|
||
support.
|
||
|
||
* NEWS: Minor fix
|
||
* configure.ac: Detect libiconv
|
||
* src/utf8.c: New file. Conversions to and from utf-8.
|
||
* src/Makefile.am: Added utf8.c
|
||
* src/create.c (write_header_name) In pax format, use
|
||
"path" keyword if the file name is not ASCII
|
||
(start_header): Likewise for uname and gname.
|
||
* src/list.c: Decode encountered global headers.
|
||
* src/xheader.c: Use keywords from the global
|
||
headers.
|
||
Correctly handle UTF-8 conversions.
|
||
(xheader_list_destroy): New function.
|
||
(xheader_set_single_keyword,xheader_set_keyword_equal): Added
|
||
missing gettext markers
|
||
(decode_record): Rewritten using caller-provided handler and
|
||
data closure.
|
||
* tests/listed01.sh: Give credit to Andreas Schuldei.
|
||
|
||
2004-02-21 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* src/create.c (dump_file0): The conditional at line
|
||
1296 prevented incremental backups on individual files
|
||
from working, as reported by Andreas Schuldei
|
||
<andreas@schuldei.org>.
|
||
|
||
This is due to the condition
|
||
|
||
(0 < top_level || !incremental_option)
|
||
|
||
Removing it makes incremental backups work for individual
|
||
files as well as for directories. On the other hand, it does
|
||
not affect other functionality, as shown by the reasoning below:
|
||
|
||
To begin with, the two parts of this condition are mutually
|
||
superfluous, because
|
||
|
||
1) when top_level < 0, incremental_option == 1
|
||
so the condition yields false
|
||
2) when top_level >= 0, incremental_option == 0
|
||
so the condition yields true.
|
||
|
||
In other words, it is completely equivalent to
|
||
|
||
(!incremental_option)
|
||
|
||
Now, let's consider the effect of its removal. There are two cases:
|
||
|
||
1) when incremental_option==1
|
||
This means incremental backup in progress. In this case dump_file
|
||
is invoked only for directories or for files marked with 'Y' by
|
||
get_directory_contents. The latter are those that did not meet the
|
||
condition in incremen.c:242, which is exactly the same condition
|
||
as this at create.c:1296. So, for these files the check
|
||
(!incremental_option) is useless, since the rest of the
|
||
conditional will yield false anyway. On the other hand, if
|
||
dump_file is invoked on a directory, the conditional will yield
|
||
false due to !S_ISDIR assertion, so these will be processed as usual.
|
||
|
||
Thus, for this case the extra condition (!incremental_option) is
|
||
irrelevant, and its removal won't alter the behavior of tar,
|
||
*except* that it will enable incremental backups on individual
|
||
files, which is the wanted effect.
|
||
|
||
2) when incremental_option==0
|
||
In this case the condition yields true and its removal does not
|
||
affect the functionality.
|
||
|
||
* THANKS: Updated
|
||
* configure.ac: Raised patchlevel to 93
|
||
* src/incremen.c: Minor stylistic fixes.
|
||
* tests/listed01.sh: New test. Check listed incremental
|
||
backups on individual files.
|
||
* tests/Makefile.am: Added listed01.sh
|
||
|
||
2004-02-20 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* src/common.h (simple_finish_header,start_private_header): New
|
||
declarations
|
||
(xheader_ghdr_name): Changed declaration
|
||
* src/create.c (start_private_header): Removed static qualifier.
|
||
(write_extended): Removed superfluous last argument. Use
|
||
xheader_write()
|
||
(simple_finish_header): New function.
|
||
(finish_header): Use simple_finish_header() to break recursive
|
||
dependency between this function and write_extended().
|
||
* src/tar.c (assert_format): Do not bail out if several
|
||
--format arguments are given. This is a common case when
|
||
TAR_OPTIONS are used.
|
||
(decode_options): New option --show-defaults displays the
|
||
compiled-in defaults.
|
||
Use POSIX format if no --format option was given and
|
||
--pax-option was specified.
|
||
Do not allow to use --pax-option unless the archive format is
|
||
set to POSIX (or reading subcommand is requested).
|
||
|
||
* src/update.c (update_archive): Write global extended header if
|
||
constructed.
|
||
* src/xheader.c (xheader_format_name): Bugfix.
|
||
(xheader_xhdr_name): Changed the default extended header name
|
||
to '%d/PaxHeaders.%p/%f', as POSIX requires.
|
||
(xheader_ghdr_name): Removed unused argument.
|
||
(xheader_write,xheader_write_global): New function.
|
||
(xheader_decode): Modified to honor overrides whatever
|
||
the current archive format is.
|
||
|
||
* src/delete.c (delete_archive_members): Call xheader_decode
|
||
unconditionally.
|
||
* src/list.c (decode_header): Likewise.
|
||
* src/incremen.c (sort_obstack): Fixed typo in the comment
|
||
|
||
* doc/tar.texi: Document new default for extended
|
||
header names.
|
||
|
||
* tests/before: Accept an optional list of allowed archive
|
||
formats. Exit with the status 77 if the current archive
|
||
format does not match any of them.
|
||
* tests/delete03.sh: Require gnu, oldgnu or posix format
|
||
* tests/incremen.sh: Require gnu or oldgnu format
|
||
* tests/multiv01.sh: Likewise
|
||
|
||
2004-02-20 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* doc/tar.texi (Option Summary): Documented --pax-option
|
||
* src/tar.c: Likewise.
|
||
* NEWS: Likewise.
|
||
* src/create.c (to_chars): Added a comment.
|
||
* src/tar.h: Comment to GNU_FORMAT
|
||
|
||
2004-02-18 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* README: Updated
|
||
* configure.ac: Added stpcpy
|
||
* bootstrap: Likewise
|
||
* lib/Makefile.am: Likewise
|
||
* src/common.h (xheader_xhdr_name,xheader_ghdr_name): New
|
||
functions
|
||
* src/create.c (write_extended): Call xheader_xhdr_name
|
||
instead of using hardcoded "././@PaxHeader" name.
|
||
* src/tar.c: New option --pax-option (equivalent to -o option
|
||
of pax).
|
||
* src/xheader.c: Implement pax -o option. Fixed misleading
|
||
heading comment (introduced 2003-09-02).
|
||
* src/incremen.c: Minor fixes
|
||
* m4/.cvsignore: Updated
|
||
|
||
2004-02-17 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* src/incremen.c: Removed accumulator stuff in favor of obstack.
|
||
(get_directory_contents): Split into two functions
|
||
* src/update.c: Minor changes
|
||
* doc/tar.texi: Fixed typo
|
||
|
||
2004-02-15 Paul Eggert <eggert@twinsun.com>
|
||
|
||
Fix Debian bug 230872, originally reported by Jeff King in
|
||
<http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=230872>.
|
||
|
||
* doc/tar.texi (posix compliance): Remove. The whole section
|
||
was a misunderstanding of what POSIXLY_CORRECT is supposed to
|
||
mean. The GNU Coding Standards says that POSIXLY_CORRECT
|
||
is for disabling extensions that are incompatible with POSIX:
|
||
it is not for disabling compatible extensions. All references
|
||
to this section removed.
|
||
(posix): This format is created only if the posix format is
|
||
specified; it is no longer created if gnu format is specified
|
||
and POSIXLY_CORRECT is set.
|
||
* src/tar.c (decode_options): Ignore POSIXLY_CORRECT.
|
||
POSIX does not specify the behavior of tar, so we should
|
||
not worry about POSIXLY_CORRECT here.
|
||
|
||
2004-01-21 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* Makefile.am: Removed m4
|
||
* configure.ac: Require automake-1.8/autoconf-2.59. Removed
|
||
m4/Makefile.
|
||
* README-alpha: Updated
|
||
* bootstrap: Updated TP URL, improved help output. Default
|
||
to :ext:anoncvs and set CVS_RSH, unless already set.
|
||
* m4/Makefile.am: Removed
|
||
|
||
2004-01-21 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* bootstrap: Bugfix by Marco Gerards <metgerards@student.han.nl>:
|
||
Use $option instead of $1 so all options will be parsed.
|
||
|
||
2004-01-04 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
Started rewriting buffer.c ...
|
||
|
||
* bootstrap: New option --no-po
|
||
* src/buffer.c (new_volume,check_label_pattern): Changed return type.
|
||
(time_to_start_writing): Changed data type
|
||
(file_to_switch_to): Removed. Variable never assigned to.
|
||
(open_archive) Moved option compatibility checks to tar.c
|
||
Other minor changes.
|
||
* src/common.h (maybe_backup_file): Changed return type
|
||
* src/misc.c: Likewise.
|
||
* src/create.c: Updated invocations of safer_name_suffix
|
||
* src/extract.c: Likewise
|
||
* src/delete.c: Updated assignment to write_archive_to_stdout
|
||
* src/tar.c (decode_options): More option compatibility checks
|
||
(moved from buffer.c)
|
||
* src/update.c (time_to_start_writing): Changed data type.
|
||
* tests/recurse.sh: New test case.
|
||
* tests/mksparse.c: New file.
|
||
* tests/Makefile.am: Added recurse.sh and mksparse.c
|
||
|
||
2004-01-02 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* src/sparse.c (sparse_diff_file): Bugfix. Thanks
|
||
Martin Simmons for the patch.
|
||
* src/create.c (dump_dir0): Bugfix. Thanks Piotr Czerwinski
|
||
<pius@pld-linux.org> for the patch.
|
||
|
||
2003-12-26 Paul Eggert <eggert@twinsun.com>
|
||
|
||
Synchronize with Gettext 0.13.1, Automake 1.8, Autoconf 2.59,
|
||
and translation website.
|
||
|
||
* bootstrap: Don't bother skipping codeset.m4, glibc21.m4,
|
||
intdiv0.m4, inttypes_h.m4, inttypes.m4, inttypes-pri.m4,
|
||
isc-posix.m4, and lcmessage.m4 from gnulib. This list of files is
|
||
a bit obsolete anyway, now that gettext 0.13.1 is out. Also, the
|
||
files are replaced by autoreconf. Also, there seems to be a bug
|
||
in gettext/autoconf/automake if we try to omit these files after
|
||
autoreconf has replaced them, even though the gettext manual says
|
||
they're optional. So give up and just include them for now, even
|
||
though they make 'configure' longer and slower.
|
||
|
||
Change translation URL from
|
||
<http://www.iro.umontreal.ca/contrib/po/maint/tar/> to
|
||
<http://www2.iro.umontreal.ca/~gnutra/po/maint/tar/> to
|
||
accommodate translator website revamp.
|
||
|
||
Fail if autoreconf fails.
|
||
|
||
* m4/.cvsignore: Add intmax.m4, longdouble.m4, printf-posix.m4,
|
||
signed.m4, size_max.m4, wchar_t.m4, wint_t.m4, xsize.m4, to
|
||
ignore files now supplied by gettext 0.13.1.
|
||
|
||
2003-12-25 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
Synchronized with the backup repository on Mirddin
|
||
|
||
2003-12-19 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* configure.ac: Check for varios members of struct stat
|
||
that may represent file modification times with a subsecond
|
||
precision.
|
||
Check for utimes (for future use)
|
||
* src/buffer.c (short_read): Issue a warning on short reads.
|
||
* src/common.h (sys_stat_nanoseconds): New function
|
||
* src/create.c (dump_file0): Use sys_stat_nanoseconds().
|
||
* src/list.c (read_and): Treat only two successive zero
|
||
filled blocks as an EOF indicator. Issue a warning if
|
||
a single one is encountered.
|
||
* src/system.c (sys_stat_nanoseconds): New function
|
||
* src/tar.h (tar_stat_info.atime_nsec,mtime_nsec,ctime_nsec): New
|
||
members.
|
||
* src/xheader.c (code_time,decode_time): Support for subsecond
|
||
precision.
|
||
(atime_coder,atime_decoder,ctime_coder,ctime_decoder)
|
||
(mtime_coder,mtime_decoder): Update invocations of code_time and
|
||
decode_time.
|
||
(gid_decoder,size_decoder,uid_decoder,sparse_size_decoder)
|
||
(sparse_numblocks_decoder,sparse_offset_decoder)
|
||
(sparse_numbytes_decoder): Updated
|
||
|
||
2003-12-18 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* src/names.c (safer_name_suffix): Reverted change made
|
||
2003-11-14. Reason: Discussion with Paul Eggert and
|
||
Jean-Louis Martineau. See also ChangeLog entry from
|
||
1999-08-14.
|
||
* tests/delete03.sh: Likewise.
|
||
* tests/extrac04.sh: Likewise.
|
||
* tests/multiv01.sh: Likewise.
|
||
|
||
2003-12-12 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* src/incremen.c (write_directory_file): Use sys_truncate
|
||
* src/list.c (print_header): Use archive_file_size member
|
||
when printing real file size.
|
||
* src/sparse.c (sparse_scan_file): Correctly handle files with
|
||
a hole at the end.
|
||
(sparse_dump_region,sparse_extract_region): Allow for zero size
|
||
trailing blocks
|
||
|
||
2003-12-12 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* configure.ac: Raised version number to 1.13.92
|
||
* src/list.c (decode_header): Discern between pax and ustar
|
||
formats
|
||
Initialize current_stat_info.archive_file_size.
|
||
|
||
NOTE: Modifications from this date on are temporarily
|
||
stored on local CVS on mirddin. This repository will
|
||
be synchronized with Savannah as soon as the latter
|
||
becomes operational again.
|
||
|
||
2003-12-01 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* TODO: Updated
|
||
* src/sparse.c: Initial implementation of GNU/pax sparse
|
||
file format.
|
||
* src/common.h (xheader_store): Changed prototype.
|
||
* src/create.c: Update calls to xheader_store
|
||
* src/extract.c (extract_archive): Check reported size vs.
|
||
archive file size to determine if we have to do with a
|
||
sparse file.
|
||
* src/tar.c (usage): Cleaned up the sample argument to --newer
|
||
option.
|
||
(decode_options): Allow --sparse for POSIX_FORMAT archives.
|
||
* src/xheader.c (struct xhdr_tab.coder; all coder function): Added
|
||
extra argument
|
||
Implemented GNU.sparse.* keywords.
|
||
|
||
2003-11-30 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* configure.ac: Check for setlocale. Thanks Bruno Haible for
|
||
reporting.
|
||
|
||
2003-11-25 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* src/create.c (write_gnu_long_link): Use oldgnu
|
||
magic with @LongLink blocks.
|
||
|
||
2003-11-17 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* src/tar.h: Support for star sparse format.
|
||
* src/sparse.c: Likewise.
|
||
|
||
2003-11-17 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* src/sparse.c (sparse_diff_file): New function
|
||
* src/common.h (sys_compare_uid,sys_compare_gid): New functions
|
||
(sys_compare_uid_gid): Removed.
|
||
(sys_compare_links,report_difference): Changed prototype
|
||
(sparse_diff_file): New function
|
||
* src/system.c (sys_compare_uid,sys_compare_gid): New functions
|
||
(sys_compare_uid_gid): Removed.
|
||
(sys_compare_links): Changed declaration
|
||
* src/compare.c (diff_archive): Use sparse_diff_file.
|
||
|
||
2003-11-16 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
Rewritten sparse file handling.
|
||
|
||
* src/sparse.c: New file. Provides a universal framework
|
||
for various methods for sparse files handling.
|
||
* src/Makefile.am: Added sparse.c
|
||
* src/common.h (struct sp_array,sparsearray,sp_array_size)
|
||
(init_sparsearray,fill_in_sparse_array): Removed
|
||
(enum dump_status): New data type
|
||
(pad_archive,close_diag,open_diag,read_diag_details)
|
||
(readlink_diag,savedir_diag,seek_diag_details,stat_diag): New
|
||
functions.
|
||
(sparse_file_p,sparse_dump_file,sparse_extract_file): New
|
||
functions.
|
||
(print_header): Changed prototype declaration.
|
||
* src/tar.h (struct sp_array): Declaration from common.h
|
||
(struct tar_stat_info): New members archive_file_size,
|
||
sparse_map_avail,sparse_map.
|
||
* src/create.c: Major rewrite.
|
||
* src/extract.c: Use new sparse file interface.
|
||
* src/compare.c (diff_sparse_files): Temporary placeholder.
|
||
|
||
* src/buffer.c: Minor changes
|
||
* src/tar.c: Likewise.
|
||
* src/list.c: Likewise.
|
||
* src/misc.c (close_diag,open_diag,read_diag_details)
|
||
(readlink_diag,savedir_diag,seek_diag_details,stat_diag): New
|
||
diagnostics functions.
|
||
* src/incremen.c: Use new diagnostics functions.
|
||
* src/names.c: Likewise.
|
||
|
||
2003-11-14 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* configure.ac: Fixed check for setsockopt
|
||
|
||
* src/create.c: Do not zero-terminate name field if
|
||
the name is exactly 100 characters long.
|
||
(write_ustar_long_name): Fixed checking for unsplittable
|
||
names.
|
||
|
||
2003-11-14 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* src/create.c (start_header): Removed debugging hook
|
||
(dump_file): Fixed handling of linkname field.
|
||
* src/names.c (safer_name_suffix): If the input
|
||
file name ends with a slash, output one should do so
|
||
as well.
|
||
* doc/tar.texi: Documented --format=ustar
|
||
|
||
2003-11-14 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* src/tar.h (archive_format): USTAR_FORMAT: New type.
|
||
* src/create.c: Added POSIX.1-1988 support.
|
||
* src/names.c (safer_name_suffix): Skip leading ./
|
||
* src/tar.c: New option --format=ustar forces
|
||
POSIX.1-1988 archive format.
|
||
* tests/delete03.sh: Updated.
|
||
* tests/extrac04.sh: Updated.
|
||
* tests/multiv01.sh: Updated.
|
||
|
||
2003-11-13 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* src/list.c (read_and): Initialize current_stat_info
|
||
and extended_header at the start of the loop.
|
||
* src/names.c (all_names_found): Check if the argument
|
||
contains valid filename. Fixes coredump on `not_a_tar_file'
|
||
* src/xheader.c (atime_decoder,gid_decoder,ctime_decoder)
|
||
(mtime_decoder,size_decoder,uid_decoder): Use xstrtoumax.
|
||
Fixes `pax-big-10g' bug.
|
||
|
||
2003-11-12 Paul Eggert <eggert@twinsun.com>
|
||
|
||
Fix some C compatibility bugs reported by Joerg Schilling.
|
||
|
||
* src/common.h (stripped_prefix_len): Fix misspelling
|
||
"stripped_path_len" in declaration.
|
||
* src/rmt.c (main): Use "return FOO;" rather than
|
||
"exit (FOO);"; we no longer have to worry about
|
||
pre-ANSI hosts that mishandled returned values from "main".
|
||
* src/tar.c (main): Likewise. This avoids warnings on some
|
||
compilers.
|
||
* src/system.c: Include signal.h, for 'kill'.
|
||
* src/system.h (DEV_BSIZE): Remove.
|
||
(DEFAULT_ST_BLKSIZE): New macro.
|
||
(ST_BLKSIZE): Use it, instead of DEV_BSIZE.
|
||
* src/tar.c (enum): Remove comma just before }.
|
||
|
||
2003-11-12 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* src/list.c (decode_header): Initialize st_atime and
|
||
st_ctime.
|
||
|
||
2003-11-11 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* configure.ac (tar_save_LIBS): Bugfix. Thanks Adrian
|
||
Bunk <bunk@fs.tum.de> for reporting.
|
||
* doc/tar.texi: Fixed spelling. Thanks Martin Buchholz
|
||
<martin@xemacs.org> for spotting.
|
||
|
||
2003-11-04 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* src/xheader.c (xhdr_tab): Make it extern, not static, as C89 and
|
||
C99 require this.
|
||
|
||
2003-10-26 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* src/system.c (sys_spawn_shell): Cast trailing null to (char *).
|
||
Bug reported by Christian Weisgerber.
|
||
|
||
2003-10-19 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* AUTHORS: Updated
|
||
* NEWS: Updated
|
||
* src/tar.c (decode_options): Removed superfluous archive format
|
||
check
|
||
* doc/tar.texi: Documented new features.
|
||
|
||
2003-10-08 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* NEWS: Updated
|
||
* THANKS: Added Wojciech Polak
|
||
* configure.ac: Added checks for missing functions. Raised
|
||
version number to indicate alpha release.
|
||
* lib/Makefile.am: Added missing headers
|
||
* lib/waitpid.c: Added missing includes.
|
||
* src/extract.c: Likewise.
|
||
* src/names.c: Removed spurious includes.
|
||
* src/xheader.c: Likewise.
|
||
* src/system.h [MSDOS]: Fixed spelling of EACCES. Added
|
||
macro overriding broken mkdir prototypes.
|
||
|
||
2003-10-04 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* configure.ac: Check for dev_t and ino_t.
|
||
* m4/Makefile.am: Added missing files.
|
||
* src/system.c: New file.
|
||
* src/Makefile.am: Added system.c
|
||
* src/common.h: Prototypes for functions from system.c
|
||
* src/system.h (SET_BINARY_MODE, ERRNO_IS_EACCESS): New defines
|
||
* src/buffer.c: Moved system dependencies to system.c
|
||
* src/compare.c: Likewise.
|
||
* src/create.c: Likewise.
|
||
* src/delete.c: Likewise.
|
||
* src/extract.c: Likewise.
|
||
* src/rtapelib.c: Likewise.
|
||
|
||
2003-10-04 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
Implemented --occurrence option.
|
||
|
||
* NEWS: Updated.
|
||
* src/tar.c: New option --occurrence.
|
||
* src/common.h (occurrence_option): New global
|
||
(struct name): Changed `found' member to `uintmax_t
|
||
found_count'.
|
||
(names_done): Removed
|
||
(all_names_found): Changed prototype.
|
||
(ISFOUND,WASFOUND): New macros
|
||
* src/delete.c (delete_archive_members): Honor --occurrence
|
||
option.
|
||
* src/list.c (read_and): Likewise.
|
||
* src/names.c: Count number of occurrences of each name in the
|
||
archive.
|
||
(name_match): Honor --occurrence option.
|
||
(names_done): Removed
|
||
(all_names_found,names_notfound): Rewritten.
|
||
|
||
2003-10-02 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* src/tar.c: Removed extra precaution regarding
|
||
subcommand_option == CAT_SUBCOMMAND
|
||
* lib/Makefile.am: Updated
|
||
|
||
2003-10-02 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* src/common.h (names_done): New function.
|
||
* src/names.c: Likewise.
|
||
* src/list.c (read_and): Use all_names_found() as `while'
|
||
condition.
|
||
* src/tar.c: New option --first-copy
|
||
* NEWS: Updated
|
||
|
||
2003-09-24 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* src/rmt.c (main): Don't translate Copyright string; international
|
||
law says the word "Copyright" should be in English.
|
||
* src/tar.c (decode_options): Likewise.
|
||
|
||
2003-09-22 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* doc/tar.texi (extracting untrusted archives): New section.
|
||
|
||
* src/common.h (stripped_path_len): Renamed from cut_path_elements.
|
||
Return size_t, not pointer, so that we don't have to worry about
|
||
violating the C standard by converting char const * to char *.
|
||
All callers changed.
|
||
* src/names.c (stripped_path_len): Likewise. Strip file system
|
||
prefix, too. Count adjacent slashes as if they were one slash;
|
||
that is the POSIX standard.
|
||
|
||
2003-09-17 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* README-alpha: Document maintainer tool assumptions a bit. GNU
|
||
'sed' is no longer required. For GNU m4 1.4, suggest the patch in
|
||
Debian bug 211447. Fix minor misspellings/whitespace nits.
|
||
|
||
* configure.ac (AC_AIX, AC_MINIX): Remove; subsumed by
|
||
gl_USE_SYSTEM_EXTENSIONS.
|
||
|
||
* lib/.cvsignore: Add exit.h, time_r.c, time_r.h.
|
||
* m4/.cvsignore: Add restrict.m4, time_r.m4.
|
||
|
||
2003-09-17 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* bootstrap: Don't use "for option; do";
|
||
Solaris 8 /bin/sh doesn't like that.
|
||
|
||
2003-09-17 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* README-alpha: Updated
|
||
* bootstrap: Updated
|
||
|
||
2003-09-17 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* README-alpha: Updated
|
||
* bootstrap: Updated
|
||
* po/POTFILES.in: Added src/xheader.c
|
||
* src/common.h (cut_path_elements): Added proto.
|
||
|
||
2003-09-05 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* src/buffer.c: Use ngettext where appropriate.
|
||
* src/compare.c: Likewise.
|
||
* src/create.c: Likewise.
|
||
* src/misc.c: Likewise.
|
||
* src/tar.c: Likewise.
|
||
* src/update.c: Likewise.
|
||
|
||
2003-09-04 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* .cvsignore: Added *.shar.gz
|
||
* NEWS: Updated
|
||
* TODO: Updated
|
||
* src/common.h (strip_path_elements): New variable.
|
||
* src/extract.c (extract_archive): Implemented --strip-path
|
||
* src/names.c (cut_path_elements): New function.
|
||
* src/tar.c: New option --strip-path=NUM.
|
||
(decode_options) Assign boolean values to bool variables.
|
||
|
||
2003-09-04 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* src/delete.c: Fixed deletion from the POSIX archives.
|
||
* src/list.c (read_header): Minor change.
|
||
* src/tar.c (main): Do not check for volume_label_option
|
||
if subcommand_option is not CREATE_SUBCOMMAND.
|
||
* src/xheader.c (xheader_decode): Store the header as
|
||
well (for eventual delete).
|
||
|
||
* tests/incremen.sh: Explicitly request GNU format. This will
|
||
disappear when GNU extended header keywords are working.
|
||
* tests/multiv01.sh: Likewise
|
||
* tests/volume.sh: Likewise
|
||
|
||
2003-09-04 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* src/create.c: Support for "linkpath" extended keyword.
|
||
* src/xheader.c (decode_record): Reversed the return
|
||
condition.
|
||
|
||
2003-09-03 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* configure.ac: Allow to redefine the default output format.
|
||
* src/tar.c: Use DEFAULT_ARCHIVE_FORMAT macro
|
||
(archive_format_string): New function.
|
||
(usage): Updated help output.
|
||
* README: Updated.
|
||
* NEWS: Updated.
|
||
* TODO: Updated.
|
||
|
||
2003-09-02 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* src/common.h (destroy_stat, xheader_decode, xheader_store,
|
||
xheader_read, xheader_finish, xheader_destroy): Add decls;
|
||
C99 requires this.
|
||
|
||
* src/create.c (write_extended): Remove unused local 'bufsize'.
|
||
|
||
* src/delete.c (delete_archive_members): Handle case of
|
||
HEADER_SUCCESS_EXTENDED followed by HEADER_FAILURE.
|
||
* src/list.c (read_and): Abort if HEADER_SUCCESS_EXTENDED
|
||
occurs, as it's not possible.
|
||
* src/update.c (update_archive): Likewise.
|
||
|
||
Use "const" when possible in new code.
|
||
* src/tar.c (struct fmttab.name): Now char const *. All uses changed.
|
||
(fmttab): Now const. All uses changed.
|
||
* src/xheader.c (struct xhdr_tab.keyword): Now pointer to const.
|
||
(struct xhdr_tab.coder, struct xhdr_tab.decoder, locate_handler,
|
||
decode_record, xheader_store, xheader_print, code_string, code_time,
|
||
code_num, dummy_coder, dummy_decoder, atime_coder, atime_decoder,
|
||
gid_coder, gid_decoder, gname_coder, gname_decoder, linkpath_coder,
|
||
linkpath_decoder, ctime_coder, ctime_decoder, mtime_coder,
|
||
mtime_decoder, path_coder, path_decoder, size_coder, size_decoder,
|
||
uid_coder, uid_decoder, uname_coder, uname_decoder):
|
||
Use pointers to const when possible.
|
||
(xhdr_tab): Now const.
|
||
|
||
* src/tar.c (fmttab): Avoid GCC warning by not eliding initializers.
|
||
(set_archive_format): Report an error if no format name matches,
|
||
instead of returning an undefined value.
|
||
|
||
* src/xheader.c (struct xhdr_tab.decoder, dummy_decoder,
|
||
atime_decoder, gid_decoder, gname_decoder, linkpath_decoder,
|
||
ctime_decoder, mtime_decoder, path_decoder, size_decoder,
|
||
uid_decoder, uname_decoder): Remove unused keyword arg.
|
||
All uses changed.
|
||
|
||
* src/tar.c (set_archive_format): Now static.
|
||
* src/xheader.c (xhdr_tab, format_uintmax): Now static.
|
||
|
||
* src/xheader.c (dummy_coder, dummy_decoder, atime_coder,
|
||
atime_decoder, gid_coder, gid_decoder, gname_coder, gname_decoder,
|
||
linkpath_coder, linkpath_decoder, mtime_coder, mtime_decoder,
|
||
ctime_coder, ctime_decoder, path_coder, path_decoder, size_coder,
|
||
size_decoder, uid_coder, uid_decoder, uname_coder, uname_decoder):
|
||
Remove forward decls; no longer needed.
|
||
(xhdr_tab): Move to end, so that the forward decls aren't needed.
|
||
Add a forward declaration.
|
||
|
||
Use 'bool' in new code, when appropriate.
|
||
* src/xheader.c (decode_record): Return bool, not int.
|
||
* src/common.h (read_header): Since it accepts bool, change
|
||
all callers to use false and true rather than 0 and 1.
|
||
|
||
* src/xheader.c (decode_record): Fix misspelling in diagnostic
|
||
"extended headed" -> "extended header".
|
||
|
||
GNU coding style fixes.
|
||
* src/xheader.c (decode_record, xheader_decode):
|
||
Do not use decls like "char *p, *q;".
|
||
|
||
Minor style fixes.
|
||
(xheader_store): Avoid parentheses around object operand of sizeof.
|
||
|
||
2003-09-03 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* src/create.c (start_header): Store long file names
|
||
in "path" keyword of an extended header if in POSIX
|
||
mode.
|
||
(finish_header): print header before calling write_extended().
|
||
* src/list.c (list_archive): Always decode the header. This
|
||
is necessary so the extended header is processed and the correct
|
||
filename is printed no matter what the state of verbose_option.
|
||
* src/xheader.c (xhdr_tab): Reserved GNU keywords (commented out
|
||
for the time being).
|
||
|
||
2003-09-01 Paul Eggert <eggert@twinsun.com>
|
||
|
||
Update from gnulib, and correct fnmatch to fnmatch-gnu.
|
||
* bootstrap (gnulib_modules): Change fnmatch to fnmatch-gnu.
|
||
Sort.
|
||
* configure.ac (gl_USE_SYSTEM_EXTENSIONS): Use this instead
|
||
of AC_GNU_SOURCE.
|
||
* lib/.cvsignore: Add alloca.h, stdbool.h. Sort. Append newline.
|
||
* lib/Makefile.am (lib_OBJECTS): New macro, for convenience when
|
||
copying rules from gnulib module descriptions.
|
||
(BUILT_SOURCES, EXTRA_DIST, all-local, alloca.h):
|
||
Update from gnulib modules alloca, fnmatch, getline, stdbool.
|
||
* m4/.cvsignore: Add utimes-null.m4. Sort.
|
||
|
||
2003-09-01 Sergey Poznyakoff
|
||
|
||
Added initial support for creating POSIX headers.
|
||
|
||
* src/common.h (MAXOCTAL11,MAXOCTAL7): New defines
|
||
(string_to_chars): New functions
|
||
(struct xheader): Changed structure
|
||
(gid_to_gname,gname_to_gid,uid_to_uname,uname_to_uid): Changed
|
||
prototypes.
|
||
* src/create.c (string_to_chars): New function.
|
||
(write_extended): New function
|
||
(start_header): Create extended POSIX headers if necessary.
|
||
(finish_header): Likewise.
|
||
* src/list.c (print_header): Take user/group from
|
||
current_stat_info.
|
||
* src/names.c (gid_to_gname,gname_to_gid)
|
||
(uid_to_uname,uname_to_uid): Changed prototypes.
|
||
* src/tar.c: New option --format.
|
||
* src/tar.h (OLDGNU_COMPATIBILITY): Removed
|
||
(struct extra_header): Removed unused structure.
|
||
(union block.extra_header): Removed unused member.
|
||
* src/xheader.c: Implemented coder functions.
|
||
* bootstrap: Added obstack.
|
||
* lib/.cvsignore: Likewise.
|
||
* configure.ac: Added 'gl_OBSTACK'
|
||
* m4/Makefile.am: Added new files.
|
||
* m4/.cvsignore: Likewise.
|
||
* TODO: Minor formatting change
|
||
|
||
2003-08-31 Sergey Poznyakoff
|
||
|
||
Added initial support for POSIX extended and STAR headers
|
||
(only for listing/extracting).
|
||
|
||
* src/xheader.c: New file.
|
||
* src/Makefile.am: Added xheader.c
|
||
* src/tar.h (struct star_header): New datatype
|
||
(XHDTYPE,XGLTYPE): New defines
|
||
(enum archive_format:STAR_FORMAT): New member
|
||
(struct tar_stat_info): New datatype.
|
||
(union block.star_header): New member.
|
||
* src/common.h (orig_file_name,current_file_name)
|
||
(current_trailing_slash,current_link_name): Removed variables.
|
||
(current_stat_info): New variable
|
||
(current_stat): Removed
|
||
(extended_header): New variable
|
||
(decode_header): Changed prototype.
|
||
* src/list.c (decode_header): Added initial support for POSIX extended
|
||
and STAR headers.
|
||
(skip_member): Check oldgnu_header only if current_format is set
|
||
to OLDGNU_FORMAT.
|
||
* src/buffer.c: Use current_stat_info
|
||
* src/compare.c: Likewise.
|
||
* src/create.c: Likewise.
|
||
* src/delete.c: Likewise.
|
||
* src/incremen.c: Likewise.
|
||
* src/mangle.c: Likewise.
|
||
* src/update.c: Likewise.
|
||
* src/extract.c: Likewise.
|
||
(make_directories): Improved check for the existence of the directory
|
||
* src/tar.c (destroy_stat): New function.
|
||
|
||
2003-08-29 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* NEWS, bootstrap: Drop en_GB locale; it was more trouble than it
|
||
was worth (e.g., different users in en_GB disagree about -ize
|
||
versus -ise).
|
||
* po/en_GB.po: Remove.
|
||
|
||
2003-07-28 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* TODO: Updated
|
||
* NEWS: Updated
|
||
* src/tar.c: Removed support for the obsolete command line
|
||
options.
|
||
* doc/tar.texi: Removed references to the obsolete command
|
||
line options.
|
||
|
||
2003-07-27 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* TODO: Updated
|
||
* NEWS: Updated
|
||
* doc/tar.texi: Updated
|
||
* src/common.h (check_links_option): New variable
|
||
(orig_file_name): New variable
|
||
(check_links): New proto.
|
||
* src/create.c (struct link.nlink): New member
|
||
(link_table): Static for the module.
|
||
(dump_file): Update `link' member when adding new links
|
||
to the link_table.
|
||
(check_links): New function.
|
||
* src/list.c (print_header): Use orig_file_name.
|
||
* src/tar.c: New option --check-links. Changed semantics of
|
||
-o to comply to UNIX98 when extracting and to its previous
|
||
semantics otherwise.
|
||
(main): Call check_links if --check-links. was given.
|
||
|
||
2003-07-25 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* src/list.c (print_header): Revised
|
||
* NEWS: Started the entry for 1.13.26
|
||
* doc/Makefile.am (tar.dvi): Fixed TEXINPUTS value.
|
||
|
||
2003-07-24 Sergey Poznyakoff <gray@Mirddin.farlep.net>
|
||
|
||
* .cvsignore: Added to the repository.
|
||
* doc/.cvsignore: Likewise.
|
||
* lib/.cvsignore: Likewise.
|
||
* m4/.cvsignore: Likewise.
|
||
* po/.cvsignore: Likewise.
|
||
* scripts/.cvsignore: Likewise.
|
||
* src/.cvsignore: Likewise.
|
||
* tests/.cvsignore: Likewise.
|
||
|
||
* lib/Makefile.am: Added exitfail.[hc]
|
||
* src/misc.c (chdir_do): Fixed call to restore_cwd
|
||
* src/buffer.c (flush_read): Fixed behavior on short
|
||
reads right after opening the new archive (multiv01.sh test).
|
||
(new_volume): Special handling for "-".
|
||
* src/list.c (print_header): Print trailing slash if
|
||
current_trailing_slash was set (extrac03.sh,extrac04.sh tests).
|
||
* tests/multiv01.sh: Minor changes.
|
||
* m4/Makefile.am: Added missing files.
|
||
|
||
2003-07-05 Paul Eggert <eggert@twinsun.com>
|
||
|
||
Finish the checkin begin yesterday.
|
||
|
||
* NEWS: Document the user-visible changes installed in the last
|
||
two days.
|
||
|
||
* TODO: New file (actually, resurrected; but with new contents).
|
||
|
||
* src/list.c (read_and): Give full type for procedure arg.
|
||
(read_header): Strip trailing slashes, setting current_trailing_slash.
|
||
(tartime): Avoid int overflow when printing year (!).
|
||
(print_header): New arg specifying block ordinal. All uses changed.
|
||
Print link as 'h' type. Give labels for long links and names.
|
||
|
||
* src/misc.c (contains_dot_dot): Moved to names.c
|
||
(must_be_dot_or_slash): New function.
|
||
(safer_rmdir): Use it.
|
||
(remove_any_file): Now takes enum as option, not boolean.
|
||
Check for (Linux) EISDIR as well as (POSIX) EPERM when attempting
|
||
to unlink a directory.
|
||
(deref_stat): Accept bool, not int.
|
||
|
||
* src/names.c (namelist_match): Allow partial matches only if
|
||
recursive.
|
||
(hash_string_hasher): Renamed from hash_avoided_name.
|
||
(hash_string_compare): Renamed from compare_avoided_anames.
|
||
(hash_string_insert, hash_string_lookup): New functions.
|
||
(add_avoided_name, is_avoided_name): Use them.
|
||
(safer_name_suffix): New function.
|
||
(contains_dot_dot): Moved here from misc.c. Now returns bool, not int.
|
||
|
||
* src/rmt.c: Don't include print-copyr.h.
|
||
(prepare_input_buffer): New arg FD.
|
||
Do not read more than INT_MAX bytes at once,
|
||
since it breaks on some brain damaged Tru64 hosts.
|
||
Divide size by two
|
||
when retrying instead of subtracting 1024; for speed.
|
||
(main): Use gettext to translate (C), not print_copyright.
|
||
|
||
* src/system.h: Include <alloca.h> and <stdbool.h> unconditionally,
|
||
now that gnulib handles this.
|
||
Include <stddef.h> and <limits.h> unconditionally, now that we assume
|
||
C89 or better.
|
||
Assume that offsetof is defined in stddef.h.
|
||
Do not include <sys/param.h>.
|
||
(realloc, lseek): Do not declare.
|
||
(HAVE_DECL_VALLOC): Renamed from HAVE_VALLOC.
|
||
(CHAR_BIT, CHAR_MAX, UCHAR_MAX, LONG_MAX): Remove
|
||
declarations, since we now assume C89 or better.
|
||
(PARAMS): Remove, as we now assume C89. All uses changed.
|
||
(bindtextdomain, textdomain): Include <gettext.h> to define.
|
||
Include <unlocked-io.h>.
|
||
(valloc): Define if not defined, and if valloc is not declared.
|
||
(xstrdup): Remove decl.
|
||
|
||
* src/tar.c: Do not include <print-copyr.h>.
|
||
Include <getdate.h>.
|
||
(get_date): Remove decl.
|
||
(ATIME_PRESERVE_OPTION, CHECKPOINT_OPTION, FORCE_LOCAL_OPTION,
|
||
IGNORE_FAILED_READ_OPTION, INDEX_FILE_OPTION, NO_OVERWRITE_DIR_OPTION,
|
||
NUMERIC_OWNER_OPTION, RECURSIVE_UNLINK_OPTION, REMOVE_FILES_OPTION,
|
||
SHOW_OMITTED_DIRS_OPTION, TOTALS_OPTION): New constants.
|
||
(long_options, decode_options): Use them.
|
||
(OVERWRITE_DIR_OPTION): Remove.
|
||
(long_options): New options --index-file, --no-overwrite-dir.
|
||
Remove --overwrite-dir option.
|
||
(usage): Use PACKAGE_BUGREPORT.
|
||
(decode_options): Terminate new argv properly.
|
||
Use PACKAGE_NAME, PACKAGE_VERSION.
|
||
If verbose, report how we grokked any textual date option.
|
||
(main): Add support for index-file.
|
||
|
||
* tests/Makefile.am: Convert to UTF-8.
|
||
(AUTOMAKE_OPTIONS): Remove.
|
||
(TESTS): Add delete04.sh, multiv01.sh, options.sh.
|
||
(INCLUDES): Remove ../intl.
|
||
(LDADD): Don't link libtar.a twice.
|
||
|
||
* tests/genfile.c: Convert to UTF-8.
|
||
Don't include <print-copyr.h>.
|
||
(DEFAULT_PATTERN): Renamed from DEFAULT.
|
||
(ZEROS_PATTERN): Renamed from ZEROS.
|
||
(main): Use gettext to translate (C), not print_copyright.
|
||
|
||
2003-07-04 Paul Eggert <eggert@twinsun.com>
|
||
|
||
Revamp to meet current standards of autoconf, automake,
|
||
gettext, and gnulib, and incorporate new translations.
|
||
|
||
* config/config.guess, config/config.sub, config/depcomp,
|
||
config/install-sh, config/mdate-sh, config/missing,
|
||
config/mkinstalldirs, config/texinfo.texi:
|
||
Moved here from parent directory, or from doc.
|
||
* config.hin: Renamed from config.h.in.
|
||
* config/config.rpath: New file.
|
||
|
||
* intl: Remove this subdirectory.
|
||
|
||
* lib/fnmatch_.h: Renamed from lib/fnmatch.hin.
|
||
|
||
* lib/getstr.c, lib/getstr.h, lib/msleep.c, lib/print-copyr.c,
|
||
lib/print-copyr.h, lib/readutmp.c, lib/rename.c, lib/stpcpy.c,
|
||
lib/strstr.c, lib/strtoimax.c, lib/strtoll.c, lib/strtoull.c,
|
||
lib/strtoumax.c, lib/unicodeio.c, lib/unicodeio.h,
|
||
lib/xstrtoimax.c, m4/c-bs-a.m4, m4/ccstdc.m4, m4/check-decl.m4,
|
||
m4/decl.m4, m4/jm-mktime.m4, m4/prereq.m4, m4/xstrtoimax.m4,
|
||
stamp-h.in: Remove.
|
||
|
||
* lib/alloca_.h, lib/fnmatch_loop.c, lib/gettext.h, lib/pathmax.h,
|
||
lib/safe-write.c, lib/safe-write.h, lib/stdbool_.h, lib/strcase.h,
|
||
lib/stripslash.c, lib/unlocked-io.h, lib/xgetcwd.h, m4/alloca.m4,
|
||
m4/backupfile.m4, m4/bison.m4, m4/chown.m4, m4/dirname.m4,
|
||
m4/dos.m4, m4/exclude.m4, m4/fileblocks.m4, m4/ftruncate.m4,
|
||
m4/getdate.m4, m4/getopt.m4, m4/hash.m4, m4/human.m4,
|
||
m4/intdiv0.m4, m4/intmax_t.m4, m4/inttypes-pri.m4,
|
||
m4/inttypes_h.m4, m4/isc-posix.m4, m4/lchown.m4, m4/lib-ld.m4,
|
||
m4/lib-link.m4, m4/lib-prefix.m4, m4/memset.m4, m4/mktime.m4,
|
||
m4/modechange.m4, m4/nls.m4, m4/onceonly.m4, m4/pathmax.m4,
|
||
m4/po.m4, m4/quote.m4, m4/quotearg.m4, m4/rmdir.m4,
|
||
m4/safe-read.m4, m4/safe-write.m4, m4/save-cwd.m4, m4/savedir.m4,
|
||
m4/ssize_t.m4, m4/stdbool.m4, m4/stdint_h.m4, m4/strcase.m4,
|
||
m4/strtoimax.m4, m4/strtol.m4, m4/strtoll.m4, m4/strtoul.m4,
|
||
m4/strtoull.m4, m4/strtoumax.m4, m4/tm_gmtoff.m4, m4/uintmax_t.m4,
|
||
m4/unlocked-io.m4, m4/xalloc.m4, m4/xgetcwd.m4, m4/xstrtol.m4,
|
||
po/LINGUAS, po/Makevars, po/Rules-quot, po/boldquot.sed,
|
||
po/en@boldquot.header, po/en@quot.header, po/en_GB.po,
|
||
po/insert-header.sin, po/remove-potcdate.sin, po/stamp-po: New files.
|
||
|
||
* ABOUT-NLS, INSTALL, lib/addext.c, lib/alloca.c, lib/argmatch.c,
|
||
lib/argmatch.h, lib/backupfile.c, lib/backupfile.h, lib/dirname.c,
|
||
lib/dirname.h, lib/error.c, lib/exclude.c, lib/exclude.h,
|
||
lib/fnmatch.h, lib/full-write.c, lib/full-write.h, lib/getdate.h,
|
||
lib/getdate.y, lib/getline.c, lib/getline.h, lib/getopt.c,
|
||
lib/getopt.h, lib/getopt1.c, lib/hash.c, lib/hash.h, lib/human.c,
|
||
lib/human.h, lib/lchown.c, lib/malloc.c, lib/mktime.c,
|
||
lib/modechange.c, lib/modechange.h, lib/quote.c, lib/quote.h,
|
||
lib/quotearg.c, lib/quotearg.h, lib/realloc.c, lib/safe-read.c,
|
||
lib/safe-read.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
|
||
lib/savedir.h, lib/strcasecmp.c, lib/utime.c, lib/xalloc.h,
|
||
lib/xgetcwd.c, lib/xmalloc.c, lib/xstrdup.c, lib/xstrtol.c,
|
||
lib/xstrtol.h, lib/xstrtoumax.c, m4/codeset.m4, m4/d-ino.m4,
|
||
m4/error.m4, m4/fnmatch.m4, m4/getcwd.m4, m4/getline.m4, m4/gettext.m4,
|
||
m4/glibc21.m4, m4/iconv.m4, m4/inttypes.m4, m4/lcmessage.m4,
|
||
m4/longlong.m4, m4/malloc.m4, m4/mbrtowc.m4, m4/mbstate_t.m4,
|
||
m4/progtest.m4, m4/realloc.m4, m4/strerror_r.m4, m4/ulonglong.m4,
|
||
m4/utimbuf.m4, m4/utime.m4, m4/utimes.m4, m4/xstrtoumax.m4,
|
||
po/Makefile.in.in:
|
||
Upgrade to latest version from external source. The file "bootstrap"
|
||
now grabs these automatically, so we needn't keep track of them
|
||
in this change long any longer.
|
||
|
||
* Makefile.am (AUTOMAKE_OPTIONS): Remove. Now done by configure.ac.
|
||
(SUBDIRS): Remove intl.
|
||
* PORTS: Update for star, Macintosh.
|
||
* README, README-alpha: Suggest Autoconf 2.57, Automake 1.7.5,
|
||
Bison 1.875, gettext 0.12.1.
|
||
* THANKS: Add Bernhard Rosenkraenzer, Solar Designer.
|
||
* configure.ac (AC_INIT, AM_INIT_AUTOMAKE): Convert to modern form.
|
||
(AC_CONFIG_AUX_DIR): New.
|
||
(AC_CONFIG_HEADERS): Rename config.h.in to config.hin, to be more
|
||
like coreutils.
|
||
(AC_PREREQ): Bump from 2.52 to 2.57.
|
||
(AC_GNU_SOURCE): New.
|
||
(AC_PROG_GCC_TRADITIONAL, AM_C_PROTOTYPES, AC_C_CONST): Remove;
|
||
we no longer support K&R C.
|
||
(YACC): Remove.
|
||
(AC_CHECK_HEADERS): Remove limits.h, poll.h, stdbool.h, stropts.h,
|
||
sys/ioccom.h, sys/param.h, sys/time.h, sys/timeb.h, wchar.h, wctype.h.
|
||
(AC_MBSTATE_T): Remove.
|
||
(HAVE_UTIME_H, HAVE_DECL_FREE, HAVE_DECL_GETGRGID, HAVE_DECL_GETPWUID,
|
||
HAVE_DECL_GETENV, HAVE_DECL_MALLOC, HAVE_DECL_STRTOUL,
|
||
HAVE_DECL_STRTOULL, HAVE_MKNOD): Remove our special code.
|
||
(AM_STDBOOL_H): Add.
|
||
(AC_HEADER_TIME, AC_STRUCT_TIMEZONE,
|
||
jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Remove.
|
||
(AC_CHECK_TYPE): Remove ssize_t.
|
||
(gt_TYPE_SSIZE_T): Add.
|
||
(jm_AC_PREREQ_XSTRTOUMAX, jm_PREREQ_ADDEXT, jm_PREREQ_ERROR,
|
||
jm_PREREQ_HUMAN, jm_PREREQ_QUOTEARG, jm_PREREQ_XGETCWD,
|
||
AC_FUNC_ALLOCA, AC_FUNC_CLOSEDIR_VOID, AC_FUNC_STRERROR_R,
|
||
AC_FUNC_FNMATCH, AC_FUNC_VPRINTF, AM_FUNC_GETLINE, jm_FUNC_MALLOC,
|
||
jm_FUNC_MKTIME, jm_FUNC_REALLOC):
|
||
Remove. Switch to gnulib macros like gl_BACKUPFILE instead.
|
||
(tar_LDADD): Rename to LIB_CLOCK_GETTIME. All uses changed.
|
||
(rmt_LDADD): Rename to LIB_SETSOCKOPT. All uses changed.
|
||
(AC_CHECK_FUNCS): Remove fchdir, ftime, getcwd, isascii, nap,
|
||
napms, poll, select, strstr, usleep.
|
||
(AC_REPLACE_FUNCS): Remove ftruncate, lchown, memset, rename,
|
||
rmdir, strcasecmp, strncasecmp, strtol, strtoul.
|
||
(AM_GNU_GETTEXT): Use external and need-ngettext options.
|
||
(AM_GNU_GETTEXT_VERSION): New.
|
||
(AC_OUTPUT): Remove intl/Makefile.
|
||
|
||
* doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
|
||
($(srcdir)/tar.info, tar.dvi): Remove obsolete warnings.
|
||
* doc/fdl.texi: Update to current GNU version.
|
||
* doc/gettext.texi: Update to current coreutils version,
|
||
plus a copyright notice.
|
||
* doc/tar.texi: Switch to new method for doing copyright notices.
|
||
Use @acronym instead of @sc where appropriate.
|
||
Remove empty examples. Give a few more examples.
|
||
|
||
* lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
|
||
(EXTRA_DIST, libtar_a_SOURCES): Switch to gnulib, so that they
|
||
are built up in pieces with +=.
|
||
(noinst_HEADERS, INCLUDES): Remove.
|
||
(BUILT_SOURCES, MAINTAINERCLEANFILES, MOSTLYCLEANFILES): New.
|
||
(libtar_a_LIBADD): Use $ rather than @.
|
||
(all-local, alloca.h, fnmatch.h, stdbool.h): New rules, from gnulib.
|
||
|
||
* m4/Makefile.am (EXTRA_DIST): Add alloca.m4, backupfile.m4,
|
||
bison.m4, chown.m4, dirname.m4, dos.m4, exclude.m4, fileblocks.m4,
|
||
ftruncate.m4, getdate.m4, getopt.m4, hash.m4, human.m4,
|
||
intdiv0.m4, intmax_t.m4, inttypes_h.m4, inttypes-pri.m4,
|
||
isc-posix.m4, lcown.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
|
||
memset.m4, mktime.m4, modechange.m4, nls.m4, onceonly.m4,
|
||
pathmax.m4, po.m4, quotearg.m4, quote.m4, rmdir.m4, safe-read.m4,
|
||
safe-write.m4, save-cwd.m4, savedir.m4, ssize_t.m4, stdbool.m4,
|
||
stdint_h.m4, strcase.m4, strtoimax.m4, strtoll.m4, strtol.m4,
|
||
strtoull.m4, strtoul.m4, strtoumax.m4, tm_gmtoff.m4, uintmax_t.m4,
|
||
unlocked-io.m4, xalloc.m4, xgetcwd.m4, xstrtol.m4.
|
||
Remove c-bs-a.m4, ccstdc.m4, check-decl.m4, decl.m4, jm-mktime.m4,
|
||
prereq.m4, xstrtoimax.m4.
|
||
|
||
* po/POTFILES.in: Remove tests/genfile.c; it doesn't need to
|
||
be translated, since it's not a user-visible tool.
|
||
|
||
* scripts/Makefile.am (AUTOMAKE_OPTIONS): Remove.
|
||
|
||
* src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
|
||
(INCLUDES): Remove ../intl. Put top-srcdir before ., for
|
||
consistency with coreutils.
|
||
(LDADD): Link LIBINTL after libtar.a, since
|
||
it's now external and should stand by itself.
|
||
|
||
* src/buffer.c (print_total_written): Adjust to new human.h
|
||
interface.
|
||
(child_open_for_compress): Do not increase size to BLOCKSIZE.
|
||
(open_archive): Open index file name.
|
||
Strip trailing slashes from file names.
|
||
(flush_write): Set size to 0 if not saving names.
|
||
(flush_write, flush_read): Use safer_name_suffix rather than
|
||
inline code.
|
||
|
||
* src/common.h: Include <quote.h>.
|
||
(absolute_names_option, atime_preserve_option, backup_option,
|
||
block_number_option, checkpoint_option, dereference_option,
|
||
force_local_option, ignore_failed_read_option, ignore_zeros_option,
|
||
incremental_option, interactive_option, multi_volume_option,
|
||
numeric_owner_option, one_file_system_option, recursive_unlink_option,
|
||
read_full_records_option, remove_files_option, same_order_option,
|
||
show_omitted_dirs_option, sparse_option, starting_file_option,
|
||
to_stdout_option, totals_option, touch_option, verify_option,
|
||
dev_null_output, now_verifying, we_are_root): Now bool, not int.
|
||
(current_trailing_slash, index_file_name, recent_long_name_blocks,
|
||
recent_long_link_blocks): New vars.
|
||
(NO_OVERWRITE_DIR_OLD_FILES): New constant.
|
||
(OVERWRITE_OLD_DIRS): Remove.
|
||
(enum remove_option): New enum.
|
||
(remove_any_file): Use it as option arg, not int.
|
||
(is_avoided_name, contains_dot_dot): Return bool, not int.
|
||
(safer_name_suffix): New decl.
|
||
|
||
* src/compare.c (now_verifying): Now bool, not int.
|
||
(fill_in_sparse_array): Move to extract.c. Now returns bool;
|
||
all callers changed to test for failure.
|
||
(diff_sparse_files): Take size from current_stat, not from param.
|
||
(diff_archive): Do not count trailing slashes in archives.
|
||
(verify_volume): Test for header failure after loop, not before.
|
||
|
||
* src/create.c (relativize): Remove; replaced by safer_name_suffix.
|
||
All callers changed.
|
||
(start_header): Clear devmajor and devminor fields, too.
|
||
(finish_header): New arg block_ordinal.
|
||
(init_sparsearray): Now extern. Set sp_array_size to
|
||
SPARSES_IN_OLDGNU_HEADER if it is zero.
|
||
(dump_file): Keep link table as a hash.
|
||
Do not count "file changed as we read it" as a failure.
|
||
|
||
* src/delete.c (recent_long_name_blocks, recent_long_link_blocks):
|
||
Move extern decl to common.h.
|
||
|
||
* src/extract.c (we_are_root): Now bool, not int.
|
||
(check_time): Warn about implausibly old time stamps.
|
||
(set_stat): Use utimbuf, not stat_info.
|
||
(prepare_to_extract): New arg DIRECTORY.
|
||
(fill_in_sparse_array): Moved here from compare.c.
|
||
(extract_sparse_file): Now returns off_t, giving size left.
|
||
Truncate file at end.
|
||
(extract_archive): Use safer_name_suffix rather than rolling our own.
|
||
Use fill_in_sparse_array rather than rolling our own.
|
||
Strip trailing slashes more effectively.
|
||
Check for unsafe names.
|
||
|
||
* src/incremen.c (struct directory): nfs and found are now of type
|
||
bool, not int.
|
||
(gnu_restore): Now takes directory name as argument, not offset
|
||
of directory name in a global. All uses changed.
|
||
(CURRENT_FILE_NAME): Remove.
|
||
|
||
New tests.
|
||
* tests/delete04.sh, tests/multiv01.sh, tests/options.sh: New
|
||
files.
|
||
|
||
2002-09-30 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* src/rmt.c (prepare_input_buffer): Renamed form
|
||
prepare_record_buffer. All uses changed. Do not assume that
|
||
size_t is the same width as int.
|
||
|
||
2002-03-29 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* src/incremen.c (get_directory_contents):
|
||
If ignore_failed_read_option, only warn about
|
||
get_directory_contents failures. Fix suggested by
|
||
Mark Costlow.
|
||
|
||
2002-01-31 Mark W. Eichin <eichin@thok.org>
|
||
|
||
* src/buffer.c (child_open_for_compress): Don't try to read
|
||
past the end of the buffer.
|
||
|
||
2001-10-11 Jim Meyering <meyering@lucent.com>
|
||
|
||
* argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
|
||
and quote_n (1, ... to avoid clobbering a buffer.
|
||
|
||
2001-09-26 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* NEWS, configure.ac (AM_INIT_AUTOMAKE): Version 1.13.25.
|
||
|
||
* src/buffer.c (flush_read): Don't diagnose partial blocks before
|
||
end of file; just ignore them silently.
|
||
|
||
* src/list.c (read_header): Don't keep around extended name
|
||
and link info indefinitely; keep it only for the next file.
|
||
This fixes a bug introduced in 1.13.24, and removes the need
|
||
for some static variables. Set recent_long_name and
|
||
recent_long_link to zero if there were no long links; this
|
||
avoids a violation of ANSI C rules for pointers in delete.c.
|
||
* THANKS: Add Christian Laubscher.
|
||
|
||
2001-09-26 Jim Meyering <meyering@lucent.com>
|
||
|
||
* doc/tar.texi (Remote Tape Server): is know -> is known
|
||
|
||
2001-09-25 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* lib/unicodeio.c (EILSEQ): Include <iconv.h> first, since
|
||
<iconv.h> may define EILSEQ (e.g. libiconv). Define a
|
||
replacement EILSEQ to be ENOENT, not EINVAL, since callers may
|
||
want to distinguish EINVAL and EILSEQ.
|
||
|
||
2001-09-24 Christophe Kalt <Christophe.Kalt@kbcfp.com>
|
||
|
||
* src/extract.c (maybe_recoverable):
|
||
Treat OVERWRITE_OLD_DIRS like DEFAULT_OLD_FILES.
|
||
|
||
2001-09-22 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* NEWS, configure.ac (AM_INIT_AUTOMAKE): Version 1.13.24.
|
||
|
||
* ABOUT-NLS, intl/*: Update to gettext-0.10.40, replacing LGPL
|
||
with GPL.
|
||
|
||
* INSTALL, mkinstalldirs: Update to autoconf 2.52 version.
|
||
* PORTS: Add copyright notice, 'star' reference.
|
||
* README-alpha: Add copyright notice, autoconf 2.52 patch.
|
||
* THANKS: Add Christophe Kalt.
|
||
* config.sub: Upgrade to 2001-09-14 version.
|
||
|
||
* configure.ac (ALL_LINGUAS): Add ko.
|
||
* po/ko.po: Resurrected file.
|
||
|
||
* doc/convtexi.pl: Add coding advice for Emacs.
|
||
|
||
* doc/getdate.texi: Add copyright notice.
|
||
|
||
* doc/mdate-sh: Upgrade to automake 1.5 version.
|
||
|
||
* doc/tar.texi (extracting files): Mention --to-stdout.
|
||
(Option Summary, Dealing with Old Files): New option --overwrite-dir.
|
||
(Overwrite Old Files): Likewise.
|
||
|
||
* lib/Makefile.am (noinst_HEADERS):
|
||
Remove copysym.h. Add print-copyr.h, unicodeio.h.
|
||
(libtar_a_SOURCES): Remove copysym.c, Add print-copyr.c, unicodeio.c.
|
||
|
||
* lib/copysym.c, lib/copysym.h: Remove.
|
||
* lib/print-copyr.c, lib/print-copyr.h, lib/unicodeio.c,
|
||
lib/unicodeio.h: New files.
|
||
|
||
* lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
|
||
lib/mktime.c, lib/strtoll.c: Switch from LGPL to GPL.
|
||
|
||
* lib/quotearg.c (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
|
||
(mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
|
||
|
||
* m4/Makefile.am (EXTRA_DIST): Remove isc-posix.m4.
|
||
* m4/isc-posix.m4: Remove.
|
||
|
||
* m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit.
|
||
|
||
* po/POTFILES.in: Add copyright notice.
|
||
|
||
* src/Makefile.am (LDADD): Like libtar.a before @INTLLIBS@ as
|
||
well as after.
|
||
* tests/Makefile.am (LDADD): Likewise.
|
||
|
||
* src/buffer.c (write_archive_buffer, close_archive):
|
||
If an archive is a socket, treat it like a FIFO.
|
||
(records_read, records_written): New vars.
|
||
(write_archive_to_stdout): Now bool, not int.
|
||
(open_archive, flush_write, flush_read): Keep records_read and
|
||
records_written up to date.
|
||
|
||
* src/common.h (enum old_files): New value OVERWRITE_OLD_DIRS.
|
||
(write_archive_to_stdout): Now bool, not int.
|
||
(enum read_header): New value HEADER_SUCCESS_EXTENDED.
|
||
(read_header): Now takes bool arg. Existing callers modified
|
||
to pass 0, unless otherwise specified.
|
||
|
||
* src/delete.c (records_read): Remove; now a global.
|
||
(acting_as_filter): Now bool, not int.
|
||
(recent_long_name, recent_long_link, recent_long_name_blocks,
|
||
recent_long_link_blocks, records_read, records_written): New decls.
|
||
(records_skipped): New var.
|
||
(move_archive): Don't divide by zero if arg is 0.
|
||
Use the above vars to compute how far to move.
|
||
(write_recent_blocks): New function.
|
||
(delete_archive_member): Pass 1 to read_header, so that it doesn't
|
||
read more than 1 block. Handle resulting HEADER_SUCCESS_EXTENDED code.
|
||
Keep track of how many records have been skipped.
|
||
Let the buffer code count records.
|
||
When copying a header, copy any extended headers that came before it.
|
||
|
||
* src/extract.c (extract_archive): When marking a directory to be
|
||
updated after symlinks, stat all directories after it in the
|
||
delayed-set-stat list too, since they will be checked after
|
||
symlinks. Add support for --overwrite-dir.
|
||
|
||
* src/list.c (recent_long_name, recent_long_link,
|
||
recent_long_name_blocks, recent_long_link_blocks): New vars.
|
||
(read_and): Pass 0 to read_header.
|
||
(read_header): New arg RAW_EXTENDED_HEADERS. Store away extended
|
||
headers into new vars. Null-terminate incoming symbolic links.
|
||
|
||
* src/rmt.c: Include print-copyr.h, not copysym.h.
|
||
(main): Use print_copyright, not copyright_symbol.
|
||
* src/tar.c (decode_options): Likewise.
|
||
(OVERWRITE_DIR_OPTION): New constant.
|
||
(long_options, usage, decode_options): Add --overwrite-dir.
|
||
|
||
* src/tar.h: Put copyright notice into documentation.
|
||
|
||
* tests/Makefile.am (TESTS): Add delete03.sh.
|
||
* tests/delete03.sh: New file.
|
||
|
||
* tests/genfile.c: Include print-copyr.h, not copysym.h.
|
||
(main): Use print_copyright, not copyright_symbol.
|
||
Include <argmatch.h>.
|
||
(pattern_strings): Remove.
|
||
(pattern_args, pattern_types): New constants.
|
||
(main): Use XARGMATCH, not argmatch.
|
||
|
||
2001-09-20 Jim Meyering <meyering@lucent.com>
|
||
|
||
* lib/xstrtol.c (strtoimax): Guard declaration with
|
||
`#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
|
||
The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
|
||
have their own, conflicting declaration of strtoimax in sys/inttypes.h.
|
||
(strtoumax): Likewise, for completeness (it wasn't necessary).
|
||
* m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
|
||
Check for declaration of strtoimax.
|
||
* m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
|
||
Check for declaration of strtoumax.
|
||
|
||
2001-09-16 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* fnmatch.m4 (jm_FUNC_FNMATCH): Fix typo in previous patch: yes -> no.
|
||
|
||
2001-09-14 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* NEWS, configure.ac (AC_INIT_AUTOMAKE): Version 1.13.23.
|
||
|
||
* README-alpha: Describe automake patch.
|
||
|
||
* configure.ac (LIBOBJS):
|
||
Remove automake 1.4 workaround, as we're using 1.5 now.
|
||
(USE_INCLUDED_LIBINTL): New AC_DEFINE.
|
||
|
||
* lib/copysym.c: Include stddef.h, for size_t.
|
||
Include langinfo.h if needed.
|
||
Use locale_charset only if USE_INCLUDED_LIBINTL;
|
||
if not, use nl_langinfo (CODESET) if available.
|
||
|
||
2001-09-13 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* config.guess, config.sub: Sync with canonical versions.
|
||
|
||
* configure.ac (jm_PREREQ_XGETCWD): Add.
|
||
|
||
* lib/Makefile.am (noinst_HEADERS): Add copysym.h.
|
||
(libtar_a_SOURCES): Add copysym.c.
|
||
* copysym.c, copysym.h: New files.
|
||
|
||
* lib/error.c: Sync with fileutils version.
|
||
|
||
* m4/Makefile.am (EXTRA_DIST): Add getcwd.m4; remove uintmax_t.m4.
|
||
* m4/getcwd.m4: New file.
|
||
* m4/uintmax_t.m4: Remove.
|
||
|
||
* m4/gettext.m4 (AM_WITH_NLS):
|
||
Fix bug with calculating version of Bison 1.29.
|
||
Reported by Karl Berry.
|
||
|
||
* src/Makefile.am (datadir): Remove.
|
||
|
||
* src/rmt.c: Include copysym.h.
|
||
(main): Use copyright_symbol to translate copyright notice,
|
||
instead of gettext.
|
||
* src/tar.c: Likewise.
|
||
* tests/genfile.c: Likewise.
|
||
|
||
* src/system.h (MB_LEN_MAX): New symbol.
|
||
|
||
2001-09-11 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* src/extract.c (struct delayed_set_stat): New member
|
||
'after_symlinks'.
|
||
(delay_set_stat): Initialize it to 0.
|
||
(set_mode): New arg current_stat_info. Use it (if nonnull) to avoid
|
||
taking an extra stat ourselves. All callers changed.
|
||
(set_stat): Likewise.
|
||
(apply_nonancestor_delayed_set_stat): New arg 'after_symlinks'.
|
||
If false, stop when encountering a struct whose 'after_symlinks'
|
||
member is true. Otherwise, go through all structures but check
|
||
them more carefully. All callers changed.
|
||
(extract_archive): When extracting a deferred symlink, if its parent
|
||
directory's status needs fixing, then mark the directory as needing
|
||
to be fixed after symlinks.
|
||
(extract_finish): Fix status of ordinary directories, then apply
|
||
delayed symlinks, then fix the status of directories that are
|
||
ancestors of delayed symlinks.
|
||
|
||
* src/rtapelib.c (rexec):
|
||
Remove declaration; it ran afoul of prototypes on Crays.
|
||
Reported by Wendy Palm of Cray.
|
||
|
||
2001-09-06 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* lib/strtoimax.c (HAVE_LONG_LONG):
|
||
Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
|
||
(strtoimax): Use sizeof (long), not
|
||
sizeof strtol (ptr, endptr, base),
|
||
to work around bug in IBM C compiler.
|
||
|
||
2001-09-04 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* lib/xgetcwd.c: Include "xalloc.h".
|
||
(xgetcwd): Do not return NULL when memory is exhausted; instead,
|
||
report an error and exit.
|
||
|
||
* m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
|
||
(jm_PREREQ): Use it.
|
||
|
||
2001-09-03 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
|
||
(jm_PREREQ_XGETCWD): New macro.
|
||
|
||
* lib/exclude.c (fnmatch_no_wildcards):
|
||
Fix typo that caused us to do case-folding
|
||
search even when that was not desired. This occurred only in the
|
||
no-wildcard case.
|
||
|
||
* lib/xgetcwd.c: Include pathmax.h if not HAVE_GETCWD.
|
||
Do not include xalloc.h.
|
||
(INITIAL_BUFFER_SIZE): New symbol.
|
||
Do not use xmalloc / xrealloc, since the caller is responsible for
|
||
handling errors. Preserve errno around `free' during failure.
|
||
Do not overrun buffer when using getwd.
|
||
|
||
* lib/xgetcwd.c (xgetcwd):
|
||
Use HAVE_GETCWD_NULL, not defined __GLIBC__ && __GLIBC__ >= 2,
|
||
to decide whether to use getcwd (NULL, 0).
|
||
|
||
2001-09-02 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* lib/xgetcwd.c: Fix typo in local var; from Jim Meyering.
|
||
|
||
2001-09-01 Jim Meyering <meyering@lucent.com>
|
||
|
||
* exclude.c: Use `""', not `<>' to #include non-system header files.
|
||
(fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
|
||
and strncasecmp as r-values. Unixware didn't have declarations.
|
||
|
||
2001-08-31 Jim Meyering <meyering@lucent.com>
|
||
|
||
* lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
|
||
Use an initial, malloc'd, buffer of length 128 rather than
|
||
a statically allocated one of length 1024.
|
||
|
||
2001-08-30 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* lib/utime.c: Include full-write.h.
|
||
* lib/xstrtol.c (strtoimax): New decl.
|
||
|
||
2001-08-29 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* NEWS, configure.ac (AC_INIT_AUTOMAKE): Version 1.13.22.
|
||
|
||
* src/create.c (dump_file): Relativize link names before dumping.
|
||
This fixes a bug reported by Jose Pedro Oliveira.
|
||
|
||
* src/create.c (dump_file): Use offsetof when computing sizes for
|
||
struct hack; this avoids wasted space in some cases.
|
||
* src/incremen.c (note_directory, find_directory): Likewise.
|
||
* src/names.c (name_gather, addname): Likewise.
|
||
|
||
* src/extract.c (extract_archive): Use strcpy, not memcpy,
|
||
for consistency with other code that does similar things.
|
||
* src/names.c (name_gather): Likewise.
|
||
|
||
* src/names.c (read_name_from_file, name_next, name_gather,
|
||
add_hierarchy_to_namelist): Avoid quadratic behavior when
|
||
reallocating buffers. Check for buffer size overflow.
|
||
(addname): Avoid unnecessary clearing of memory.
|
||
|
||
2001-08-29 "Jan D." <Jan.Djarv@mbox200.swipnet.se>
|
||
|
||
* src/extract.c (delay_set_stat): Fix off-by-one error in file
|
||
name size allocation that caused core dumps.
|
||
|
||
2001-08-28 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* NEWS, configure.ac (AC_INIT_AUTOMAKE): Version 1.13.21.
|
||
|
||
* configure.ac (GNU_SOURCE): Define to 1, not /**/.
|
||
(major_t, minor_t, ssize_t): Use new-style AC_CHECK_TYPE.
|
||
(daddr_t): Remove; no longer used.
|
||
(jm_PREREQ_HUMAN): Add.
|
||
|
||
* acconfig.h: Remove; no longer needed.
|
||
|
||
* config.guess, config.sub:
|
||
New files, from automake 1.5. Gettext 0.10.39 needs them.
|
||
* depcomp, missing, mkinstalldirs: Upgrade to automake 1.5.
|
||
|
||
* Makefile.am (AUTOMAKE_OPTIONS): Add dist-bzip2.
|
||
(SUBDIRS): Put intl before lib, as gettext requires.
|
||
|
||
* ABOUT-NLS: Upgrade to gettext 0.10.39.
|
||
* intl: Upgrade entire directory to gettext 0.10.39.
|
||
* m4/codeset.m4, m4/glibc21.m4, m4/iconv.m4:
|
||
New files, from gettext 0.10.39.
|
||
* m4/gettext.m4, m4/isc-posix.m4, m4/lcmessage.m4, m4/progtest.m4,
|
||
Upgrade to gettext 0.10.39,
|
||
* po/Makefile.in.in: Likewise, except fix a typo in its copying
|
||
permissions.
|
||
* po/cat-id-tbl.c, po/stamp-cat-id:
|
||
Remove; no longer used by gettext 0.10.39.
|
||
* po/ChangeLog: New file.
|
||
|
||
* doc/Makefile.am (EXTRA_DIST): Add freemanuals.texi.
|
||
$(srcdir)/tar.texi: Likewise.
|
||
* doc/freemanuals.texi: New file.
|
||
* doc/tar.texi (Free Software Needs Free Documentation): New appendix.
|
||
`fileds' -> `fields'
|
||
* doc/texinfo.tex: Upgrade to version 2001-07-25.07.
|
||
|
||
* lib/Makefile.am (EXTRA_DIST): Add strtoll.c, strtoimax.c.
|
||
(noinst_HEADERS): Add quote.h.
|
||
(libtar_a_SOURCES): Add quote.c, xstrtoimax.c.
|
||
|
||
* lib/exclude.c: Fix typo in '#include <stdint.h>' directive.
|
||
|
||
* lib/full-write.c, lib/savedir.c: Comment fix.
|
||
|
||
* lib/pathmax.h: Remove.
|
||
|
||
* lib/quote.c, lib/quote.h: New files.
|
||
|
||
* lib/xgetcwd.c: Don't include pathmax.h.
|
||
Include stdlib.h and unistd.h if available.
|
||
Include xalloc.h.
|
||
(xmalloc, xstrdup, free): Remove decls.
|
||
(xgetcwd): Don't assume sizes fit in unsigned.
|
||
Check for overflow when computing sizes.
|
||
Simplify reallocation code.
|
||
|
||
* lib/xmalloc.c: Quote failure tests.
|
||
|
||
* lib/strtoumax.c, lib/xstrtoimax.c: New files.
|
||
|
||
* lib/strtoimax.c: Renamed from strtouxmax.c. Make it more
|
||
similar to strtol.c.
|
||
(UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.
|
||
(verify): New macro.
|
||
(strtoumax, uintmax_t, strtoull, strtol): Remove.
|
||
(intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
|
||
(strtoimax): Renamed from strtoumax. All uses of unsigned values
|
||
changed to signed values. Check sizes at compile-time, not
|
||
run-time. Prefer strtol to strtoll if both work.
|
||
(main): Remove.
|
||
|
||
* lib/xstrtol.h (xstrtoimax): New decl.
|
||
|
||
* m4/Makefile.am (EXTRA_DIST):
|
||
Add codeset.m4, glibc21.m4, iconv.m4, inttypes.m4,
|
||
longlong.m4, xstrtoimax.m4.
|
||
|
||
* m4/inttypes.m4 (jm_AC_HEADER_INTTYPES_H):
|
||
Remove; now done by autoconf.
|
||
(jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T): Replace with
|
||
Use AC_CHECK_TYPE instead of merely looking for the header.
|
||
|
||
* m4/uintmax_t.m4: Use shorter comment.
|
||
|
||
* m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
|
||
Quote first arg of AC_DEFUN.
|
||
Require jm_AC_TYPE_INTMAX_T and jm_AC_TYPE_LONG_LONG since they
|
||
is needed to parse the include file.
|
||
Simplify logic behind the args to AC_REPLACE.
|
||
|
||
* src/Makefile.am (OMIT_DEPENDENCIES): Remove.
|
||
|
||
* src/ansi2knr.1, src/ansi2knr.c: Remove; wasn't being used.
|
||
|
||
* src/rmt.c (main):
|
||
Use "Copyright %d" to simplify the translator's job in the future.
|
||
Advise translator about circle-C.
|
||
* src/tar.c: (decode_options): Likewise.
|
||
* tests/genfile.c (main): Likewise.
|
||
|
||
2001-08-28 Jim Meyering <meyering@lucent.com>
|
||
|
||
* lib/argmatch.c: Include "quote.h".
|
||
(argmatch_invalid): Quote the context.
|
||
|
||
* lib/dirname.c (dir_name): Fix typo on PC platforms.
|
||
|
||
* lib/backupfile.c, lib/basename.c, lib/dirname.c, lib/strtoul.c:
|
||
Use single-quote for local .h files.
|
||
|
||
* lib/error.h (__attribute__): Don't depend on __STRICT_ANSI__.
|
||
|
||
* lib/getopt.c, lib/getopt.h, lib/getopt1.c: Upgrade to recent
|
||
glibc versions.
|
||
|
||
* lib/getdate.y (get_date): Initialize tm_isdst to -1 before
|
||
invoking mktime the last time.
|
||
|
||
* lib/pathmax.h: Use #if rather than #ifdef for HAVE_UNISTD_H.
|
||
|
||
* lib/rename.c: Major rewrite by Volker Borchert to use system
|
||
rename function, but to work around problems with trailing
|
||
slashes.
|
||
|
||
* lib/strtoll.c: New file, from glibc.
|
||
* lib/strtoul.c: Update from glibc.
|
||
|
||
* lib/strtouxmax.c: Renamed from lib/strtoumax.c.
|
||
Add support for signed numbers, too.
|
||
(strtoul, strtoull): Do not declare if STRTOUXMAX_UNSIGNED
|
||
is not defined.
|
||
(strtol, strtoll): Declare as needed, if STRTOUXMAX_UNSIGNED is
|
||
not defined.
|
||
(strtoumax, uintmax_t, strtoull, strtoul): New macros.
|
||
(main): Use generic names in debugging output.
|
||
* lib/strtoimax.c: Plus add the following changes of my own:
|
||
(main): Use accurate names in debugging output.
|
||
|
||
* lib/xgetcwd.c (xgetcwd): Use getcwd if glibc 2 or later.
|
||
Don't use PATH_MAX.
|
||
|
||
* m4/c-bs-a.m4, m4/check-decl.m4, m4/d-ino.m4, m4/error.m4,
|
||
m4/getline.m4, m4/jm-mktime.m4, m4/malloc.m4, m4/mbrtowc.m4,
|
||
m4/mbstate_t.m4, m4/realloc.m4, m4/uintmax_t.m4, m4/utimbuf.m4,
|
||
m4/utime.m4, m4/utimes.m4:
|
||
Quote the first argument in each use of AC_DEFUN.
|
||
|
||
* m4/getline.m4: Don't use string.h.
|
||
|
||
* m4/inttypes.m4, m4/longlong.m4, m4/xstrtoimax.m4: New files.
|
||
|
||
* m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): @%:@ -> #.
|
||
|
||
2001-08-27 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* NEWS, configure.ac (AC_INIT_AUTOMAKE): Version 1.13.20.
|
||
|
||
The biggest change is the new --exclude semantics and options.
|
||
The basic idea was suggested by Gerhard Poul; thanks!
|
||
|
||
* NEWS: Describe new --exclude semantics and options, and bug fixes.
|
||
* README: ignfail.sh fails on some NFS hosts.
|
||
* NEWS, README, lib/xstrtol.h: Add copyright notice.
|
||
|
||
* Makefile.am (ACLOCAL_AMFLAGS): Add -I m4.
|
||
(M4DIR, ACINCLUDE_INPUTS, $(srcdir)/acinclude.m4):
|
||
Remove; the automake bug has been fixed.
|
||
* acinclude.m4: Remove.
|
||
|
||
* configure.ac: Renamed from configure.in.
|
||
(AC_PREREQ): Bump from 2.13 to 2.52.
|
||
(ALL_LINGUAS): Add id, tr. Remove ko, as po/ko.po (dated
|
||
1997-05-30) has an encoding error.
|
||
(jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf.
|
||
(AC_FUNC_FNMATCH): Use AC_CONFIG_LINKS, not AC_LINK_FILES.
|
||
|
||
* doc/fdl.texi: Update to current GNU version.
|
||
|
||
* doc/tar.texi: Put leading '*' in direntry.
|
||
Accommodate new gfdl sectioning.
|
||
New option --recursion (the default) that is the inverse of
|
||
--no-recursion.
|
||
|
||
New options --anchored, --ignore-case, --wildcards,
|
||
--wildcards-match-slash, and their negations (e.g., --no-anchored).
|
||
Along with --recursion and --no-recursion, these control how exclude
|
||
patterns are interpreted. The default interpretation of exclude
|
||
patterns is now --no-anchored --no-ignore-case --recursion
|
||
--wildcards --wildcards-match-slash.
|
||
|
||
* lib/Makefile.am (OMIT_DEPENDENCIES): Remove.
|
||
|
||
* lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
|
||
(<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
|
||
(<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
|
||
Include if available.
|
||
(<xalloc.h>): Include
|
||
(SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
|
||
(verify): New macro. Use it to verify that EXCLUDE macros do not
|
||
collide with FNM macros.
|
||
(struct patopts): New struct.
|
||
(struct exclude): Use it, as exclude patterns now come with options.
|
||
(new_exclude): Support above changes.
|
||
(new_exclude, add_exclude_file):
|
||
Initial size must now be a power of two to simplify overflow checking.
|
||
(free_exclude, fnmatch_no_wildcards): New function.
|
||
(excluded_filename): No longer requires options arg, as the options
|
||
are determined by add_exclude. Now returns bool, not int.
|
||
(excluded_filename, add_exclude):
|
||
Add support for the fancy new exclusion options.
|
||
(add_exclude, add_exclude_file): Now takes int options arg.
|
||
Check for arithmetic overflow when computing sizes.
|
||
(add_exclude_file): xrealloc might modify errno, so don't
|
||
realloc until after errno might be used.
|
||
|
||
* lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
|
||
New macros.
|
||
(free_exclude): New decl.
|
||
(add_exclude, add_exclude_file): Now takes int options arg.
|
||
(excluded_filename): No longer requires options arg, as the options
|
||
are determined by add_exclude. Now returns bool, not int.
|
||
|
||
* lib/prepargs.c: Include <string.h>; required for C99 since
|
||
we use strlen.
|
||
|
||
* lib/quotearg.c:
|
||
BSD/OS 4.1 wchar.h requires FILE and struct tm to be declared.
|
||
|
||
* lib/xstrtol.h (_DECLARE_XSTRTOL): Improve quality of
|
||
diagnostic for LONGINT_INVALID_SUFFIX_CHAR.
|
||
|
||
* m4/Makefile.am (EXTRA_DIST): Add check-decl.m4, mbrtowc.m4.
|
||
Remove inttypes_h.m4, largefile.m4, mktime.m4.
|
||
|
||
* m4/inttypes_h.m4, m4/largefile.m4, m4/mktime.m4: Remove;
|
||
subsumed by Autoconf 2.50.
|
||
|
||
* m4/error.m4: Upgrade to serial 2.
|
||
|
||
* m4/fnmatch.m4 (jm_FUNC_FNMATCH): Upgrade to serial 4, but
|
||
remove test for GNU C library. It's not correct, as some
|
||
older glibcs are buggy.
|
||
|
||
* m4/getline.m4, m4/malloc.m4: Upgrade to serial 4.
|
||
|
||
* m4/prereq.m4: Upgrade to serial 20, but then:
|
||
(jm_PREREQ): Add jm_PREREQ_EXCLUDE.
|
||
(jm_PREREQ_EXCLUDE): New macro.
|
||
(jm_PREREQ_HUMAN): Remove jm_AC_HEADER_INTTYPES_H, as it is subsumed
|
||
by autoconf 2.5x.
|
||
|
||
* m4/realloc.m4: Upgrade to serial 4.
|
||
|
||
* m4/strerror_r.m4: Revert to serial 1002.
|
||
|
||
* m4/uintmax_t.m4: Upgrade to autoconf 2.5x.
|
||
|
||
* m4/utimes.m4: Upgrade to latest version (still "serial 3").
|
||
|
||
* m4/xstrtoumax.m4: Upgrade to serial 3, but then:
|
||
(jm_AC_PREREQ_XSTRTOUMAX): Remove jm_AC_HEADER_INTTYPES_H, as
|
||
it is now subsumed by autoconf. Add inttypes.h.
|
||
|
||
* po/cs.po, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
|
||
po/it.po, po/pl.po, po/sl.po, po/sv.po: Sync with translation project.
|
||
|
||
* src/buffer.c (new_volume): Stop if the script exits with an error.
|
||
|
||
* src/common.h (excluded_with_slash, excluded_without_slash):
|
||
Remove, replacing by:
|
||
(excluded): New decl.
|
||
(link_error): New decl.
|
||
(excluded_name): Now returns bool.
|
||
|
||
* src/extract.c:
|
||
(struct delayed_symlinks, extract_archive, apply_delayed_symlinks):
|
||
Support hard links to symbolic links.
|
||
|
||
(struct delayed_symlink): Remove 'names' member, replacing it with
|
||
'sources' and 'target' member. All uses changed.
|
||
|
||
(struct string_list): New type.
|
||
|
||
(delayed_set_stat, extract_archive): Use offsetof when computing sizes
|
||
for struct hack; this avoids wasted space in some cases.
|
||
|
||
(extract_archive): Fix test for absolute pathnames and/or "..".
|
||
Use link_error to report errors for links.
|
||
Remove redundant trailing '/' at "really_dir", for all uses, not
|
||
just before invoking mkdir.
|
||
If overwriting old files, do not worry so much about existing
|
||
directories.
|
||
Fix mode computation in the case where the directory exists.
|
||
|
||
(apply_delayed_symlinks): If we can't make a hard link to a symbolic
|
||
link, make a copy of the symbolic link.
|
||
|
||
* src/incremen.c (get_directory_contents):
|
||
If ignore_failed_read_option, only warn about
|
||
stat failures.
|
||
|
||
* src/list.c (from_header): Do not issue a diagnostic if TYPE is zero.
|
||
However, check for error even for '-' or '+' case.
|
||
|
||
(print_header): Try parsing uids and gids as unsigned integers first,
|
||
and as a uid_t or gid_t only if that fails. This adds support for
|
||
listing positive uids and gids that are greater than UID_MAX and
|
||
GID_MAX.
|
||
|
||
* src/misc.c (link_error): New function.
|
||
|
||
* src/names.c (collect_and_sort_names):
|
||
If ignore_failed_read_option, only warn about
|
||
stat errors.
|
||
|
||
(excluded_name): Now returns bool. Simplify, as the fancy
|
||
features are now all in excluded_filename.
|
||
|
||
* src/rtapelib.c (base_name): Remove decl, as system.h now
|
||
declares it.
|
||
|
||
* src/system.h: Include stddef.h if available.
|
||
(offsetof): Declare if stddef.h doesn't.
|
||
|
||
Include <dirname.h>.
|
||
(FILESYSTEM_PREFIX_LEN, ISSLASH): Remove; now defined by dirname.h.
|
||
|
||
* src/tar.c (ANCHORED_OPTION, IGNORE_CASE_OPTION,
|
||
NO_ANCHORED_OPTION, NO_IGNORE_CASE_OPTION, NO_WILDCARDS_OPTION,
|
||
NO_WILDCARDS_MATCH_SLASH_OPTION, WILDCARDS_OPTION,
|
||
WILDCARDS_MATCH_SLASH_OPTION):
|
||
New enum values.
|
||
|
||
(long_options, usage, decode_options): Add support for --anchored,
|
||
--ignore-case, --no-anchored, --no-ignore-case, --no-wildcards,
|
||
--no-wildcards-match-slash, --recursion, --wildcards,
|
||
--wildcards-match-slash.
|
||
|
||
(decode_options): Implement the new way of interpreting exclude
|
||
patterns.
|
||
|
||
(usage): --newer-mtime takes a DATE operand. DATE may be a file name.
|
||
|
||
(OPTION_STRING, decode_options): Add -I, -y. Currently these options
|
||
just print error messages suggesting alternatives.
|
||
|
||
(add_filtered_exclude): Remove.
|
||
|
||
* tests/Makefile.am (TESTS): Alphabetize, except put version.sh first.
|
||
|
||
* tests/extrac04.sh (out): Remove
|
||
directory/subdirectory/file1, as the new semantics for
|
||
--exclude exclude it.
|
||
|
||
* tests/genfile.c (main): Don't use non-ASCII char in msgid.
|
||
|
||
2001-08-12 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* lib/addext.c (<errno.h>): Include.
|
||
(errno): Declare if not defined.
|
||
(addext): Work correctly on the Hurd, where pathconf returns -1 and
|
||
leaves errno alone, because there is no limit. Also, work even if
|
||
size_t is narrower than long.
|
||
|
||
2001-07-08 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
|
||
|
||
2001-05-10 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* lib/addext.c (ISSLASH, base_name): Remove decls; now in dirname.h.
|
||
Include <backupfile.h> and <dirname.h> after size_t is defined.
|
||
(addext): Use base_len to trim redundant trailing slashes instead of
|
||
doing it ourselves.
|
||
|
||
* lib/backupfile.c (ISSLASH, base_name):
|
||
Remove decls; now in dirname.h.
|
||
Include <argmatch.h>, <backupfile.h>, <dirname.h> after size_t
|
||
is defined.
|
||
(find_backup_file_name): Rename locals to avoid new functions.
|
||
Use base_len instead of rolling it ourselves.
|
||
Work even if dirlen is 0.
|
||
Use a dir of '.' if given the empty string.
|
||
|
||
* lib/basename.c:
|
||
Do not include <stdio.h>, <assert.h>; no longer needed.
|
||
(FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Remove; now in dirname.h.
|
||
Include <string.h>, <dirname.h>.
|
||
(base_name): Allow file names ending in slashes, other than names
|
||
that are all slashes. In this case, return the basename followed
|
||
by the slashes.
|
||
|
||
* lib/dirname.c: Include <string.h> instead of <stdlib.h>.
|
||
(FILESYSTEM_PREFIX_LEN, ISSLASH): Remove; now in dirname.h.
|
||
(dir_len): Renamed from dirlen.
|
||
All callers changed.
|
||
|
||
* lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
|
||
New macros.
|
||
(base_name, base_len, dir_len, strip_trailing_slashes): New decls.
|
||
|
||
2001-02-16 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* lib/quotearg.c (mbrtowc, mbrtowc, mbsinit):
|
||
Do not declare or define if HAVE_MBRTOWC,
|
||
since the test for HAVE_MBRTOWC now requires proper declarations.
|
||
|
||
* lib/alloca.c (malloc): Undef before defining.
|
||
|
||
2001-02-13 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* src/compare.c (read_and_process): Use off_t for size.
|
||
From Maciej W. Rozycki.
|
||
|
||
2001-01-26 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* lib/quotearg.c: Include stddef.h. From Jim Meyering.
|
||
|
||
2001-01-12 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* NEWS, configure.in (AC_INIT_AUTOMAKE): Version 1.13.19.
|
||
|
||
* lib/savedir.h (savedir): Remove size arg.
|
||
|
||
* doc/tar.texi: Add @setchapternewpage odd.
|
||
Remove -I as an alias for -T, for now.
|
||
Add @dircategory.
|
||
Update copyright. Remove "Published by".
|
||
Dates beginning with / or . are taken to be file names.
|
||
|
||
* src/tar.c (<time.h>): Do not include;
|
||
(time): Do not declare.
|
||
(usage): Remove -I as an alias for -T.
|
||
(OPTION_STRING): Remove -I.
|
||
(decode_options): Dates that look like an absolute path name,
|
||
or that start with '.', are presumed to be file names whose
|
||
dates are taken.
|
||
Remove 'I' as an alias for 'T'.
|
||
Update copyright.
|
||
|
||
* src/extract.c (<time.h>): Do not include; system.h now does this.
|
||
(make_directories): Skip filesystem prefixes.
|
||
Don't assume '/' is the only separator.
|
||
(extract_sparse_file): Use new full_write semantics.
|
||
On write error, return instead of invoking skip_file.
|
||
Do not free sparsearray; caller does this now.
|
||
(apply_nonancestor_delayed_set_stat): Do not assume '/' is the only
|
||
separator.
|
||
(extract_archive): Don't assume file name lengths fit in int.
|
||
Report what got stripped from member name; it might be more than '/'.
|
||
Use new full_write semantics.
|
||
Do not pass redundant trailing "/" to mkdir, as POSIX does not allow
|
||
mkdir to ignore it.
|
||
Do not report mkdir error if old_files_option == KEEP_OLD_FILES.
|
||
|
||
* src/buffer.c (<time.h>): Do not include; system.h now does this.
|
||
(time): Remove decl; likewise.
|
||
(child_open_for_uncompress): Use new full_write semantics.
|
||
(flush_write): Use ISSLASH instead of testing for '/'.
|
||
(flush_read): Likewise.
|
||
|
||
* src/rmt.h (_remdev): Look for / anywhere in Path.
|
||
|
||
* src/misc.c (contains_dot_dot): Skip filesystem prefix.
|
||
Don't assume '/' is the only separator.
|
||
(safer_rmdir): Don't assume '/' is the only separator.
|
||
|
||
* src/compare.c (diff_archive): Don't assume '/' is the only separator.
|
||
|
||
* lib/dirname.h (dirlen): New decl.
|
||
|
||
* src/incremen.c (get_directory_contents):
|
||
Remove path_size arg; all callers changed.
|
||
Don't assume '/' is the only directory separator.
|
||
(gnu_restore): Work even if file name length doesn't fit in int.
|
||
|
||
* lib/addext.c (ISSLASH): New macro.
|
||
(addext): Trim any redundant trailing slashes.
|
||
|
||
* src/names.c (name_next):
|
||
Don't assume '/' is the only directory separator.
|
||
(namelist_match): Likewise.
|
||
(add_hierarchy_to_namelist): Remove dirsize arg.
|
||
Do not assume '/' is the only directory separator.
|
||
(new_name): Likewise.
|
||
|
||
* lib/Makefile.am (noinst_HEADERS): Add dirname.h, full-write.h.
|
||
(libtar_a_SOURCES): Add dirname.c.
|
||
|
||
* src/create.c (relativize):
|
||
New function, with much of old start_header's guts.
|
||
Handle filesystem prefixes.
|
||
(start_header): Use this new function.
|
||
(init_sparsearray): Don't bother to zero out the new array;
|
||
it's not needed.
|
||
(deal_with_sparse): Fix array allocation bug.
|
||
(create_archive): Don't assume '/' is the only separator.
|
||
(dump_file): Likewise.
|
||
Don't worry about leading / in symlink targets.
|
||
|
||
* lib/savedir.c (savedir):
|
||
Remove size arg; it wasn't portable. All callers changed.
|
||
|
||
* lib/utime.c (utime_null): Adjust to new full_write convention.
|
||
|
||
* configure.in (YACC): Avoid portability problem with Ultrix sh.
|
||
|
||
* lib/backupfile.c: Include <dirname.h>.
|
||
(ISSLASH): New macro.
|
||
(find_backup_file_name): Use dirlen to calculate directory lengths.
|
||
(max_backup_version): Strip redundant trailing slashes.
|
||
|
||
* src/common.h: Include <full-write.h>.
|
||
(get_directory_contents): No longer has size arg.
|
||
(gnu_restore): Arg is size_t, not int.
|
||
|
||
* src/system.h: Include <time.h>.
|
||
(time): Declare if not defined.
|
||
|
||
* lib/full-write.c: Include full-write.h, not safe-read.h.
|
||
full_write returns size_t, with short writes meaning failure.
|
||
All callers changed.
|
||
|
||
* src/rtapelib.c: Include full-write.h.
|
||
|
||
* src/rmt.c: Include full-write.h.
|
||
(main): Update copyright.
|
||
|
||
* doc/getdate.texi: Mention that only English is supported.
|
||
Show how to use "date" so that the output is acceptable to getdate.
|
||
Mention Z as an abbreviation for UTC.
|
||
|
||
* lib/full-write.h: New file.
|
||
|
||
* src/list.c: system.h now does time.h stuff.
|
||
|
||
* lib/dirname.c:
|
||
Use HAVE_STDLIB_H, not STDC_HEADERS, to decide whether to include
|
||
stdlib.h.
|
||
Do not include string.h, strings.h, or assert.h; no longer needed.
|
||
(strrchr, memrchr, malloc): Remove decls; no longer needed.
|
||
Include <xalloc.h>.
|
||
(base_name): New decl.
|
||
(BACKSLASH_IS_PATH_SEPARATOR): Remove.
|
||
(dir_name_r): Remove.
|
||
(dirlen): New function.
|
||
(dir_name): Use dirlen instead of dir_name_r.
|
||
(<string.h>, <strings.h>): Include only if test program.
|
||
(main): Use "return 0", not "exit (0)".
|
||
|
||
2000-12-08 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* lib/dirname.h: New file.
|
||
|
||
2000-11-02 Vesselin Atanasov <vesselin@bgnet.bg>
|
||
|
||
* lib/fnmatch.c: Do not comment out all the code if we are using
|
||
the GNU C library, because in some cases we are replacing buggy
|
||
code in the GNU C library itself.
|
||
|
||
2000-10-30 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
|
||
|
||
2000-10-29 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* NEWS, configure.in (AC_INIT_AUTOMAKE): Version 1.13.18.
|
||
|
||
* src/tar.c: Include <fnmatch.h>, for FNM_LEADING_DIR.
|
||
|
||
2000-10-28 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* doc/tar.texi: --no-recursion now applies to extraction, too.
|
||
* src/create.c (dump_file): no_recurse_option -> ! recursion_option
|
||
* src/names.c (namelist_match, excluded_name):
|
||
Do not match subfiles of a directory
|
||
if --no-recursion is specified.
|
||
* src/tar.c (NO_RECURSE_OPTION): Remove.
|
||
(long_options): Have getopt set the --no-recursion flag.
|
||
(decode_options): Initialize recursion_option to FNM_LEADING_DIR.
|
||
Remove case for NO_RECURSE_OPTION.
|
||
* src/common.h (recursion_option):
|
||
Renamed from no_recurse_option, with sense
|
||
negated, and with FNM_LEADING_DIR being the nonzero value.
|
||
|
||
* names.c (namelist_match): New function.
|
||
(name_match, name_scan): Use it to eliminate duplicate code.
|
||
(names_notfound): Remove special case for Amiga.
|
||
|
||
2000-10-27 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* src/misc.c (read_error_details, read_warn_details,
|
||
read_fatal_details): Don't assume size_t is unsigned long.
|
||
|
||
* src/buffer.c (flush_read): If read_full_records_option, try to
|
||
fill the input buffer, as --delete -f - needs this.
|
||
|
||
2000-10-24 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Port to autoconf 2.13.
|
||
|
||
* src/buffer.c (check_label_pattern):
|
||
Make sure header name is a string before
|
||
passing it to fnmatch.
|
||
(init_volume_number): Check for global_volno overflow.
|
||
(new_volume): Check for global_volno overflow.
|
||
|
||
* src/tar.c (decode_options):
|
||
Check that volume label is not too long to overflow
|
||
name in tar header block.
|
||
|
||
* Makefile.am (EXTRA_DIST): Remove rebox.el.
|
||
|
||
* configure.in (HAVE_DECL_STRERROR_R): Remove our handwritten code.
|
||
(AC_FUNC_STRERROR_R): Use this instead.
|
||
|
||
2000-10-23 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* src/extract.c: Include <time.h>, since we invoke "time".
|
||
|
||
* lib/prepargs.c (prepend_default_options):
|
||
Don't use NULL, for portability.
|
||
|
||
* m4/fnmatch.m4: Add "working" to message.
|
||
|
||
* src/names.c: (_GNU_SOURCE): Remove; autoconf now does this.
|
||
Include <hash.h>.
|
||
(getpwuid, getgrgid): Declare only if system headers don't.
|
||
(gid_to_gname): Don't invoke setgrent.
|
||
(namelist): Now static, not global.
|
||
(nametail): New var. All uses of namelast changed to use
|
||
nametail, with one extra level of indirection.
|
||
(name_gather): Use memcpy instead of strncpy + assignment of NUL.
|
||
(name_match): Set nametail too, when setting namelist to null.
|
||
(add_hierarchy_to_namelist): Change type of dir arg from char * to
|
||
struct name *, so that we don't have to look up the name again
|
||
here. Get change_dir from dir rather than as a separate arg. Add
|
||
dirsize arg, and pass it along to get_directory_contents. Remove
|
||
unnecessary check of directory type.
|
||
(new_name): Do not append a slash if PATH already ends in one.
|
||
(avoided_names, struct avoided_name): Remove.
|
||
(avoided_name_table): New var, replacing avoided_names.
|
||
(hash_avoided_name, compare_avoided_names): New function.
|
||
(add_avoided_name, is_avoided_name): Use hash table rather than
|
||
linked list.
|
||
|
||
* src/buffer.c (_GNU_SOURCE): Remove; autoconf now does this.
|
||
(child_open_for_compress, child_open_for_uncompress,
|
||
close_archive): Propagate any failure of the compression process
|
||
back to "tar".
|
||
(open_archive, flush_write, flush_read, close_archive): Do not
|
||
allocate an array of size PATH_MAX, as PATH_MAX might be (size_t)
|
||
-1. Instead, allocate an array with the size that's needed.
|
||
(open_archive): Don't bother checking S_ISCHR of /dev/null.
|
||
(backspace_output): Don't try to backspace past start of archive.
|
||
(close_archive): Remove special case for DELETE_SUBCOMMAND.
|
||
|
||
* acconfig.h (_GNU_SOURCE, DEFAULT_ARCHIVE, DEFAULT_BLOCKING,
|
||
DENSITY_LETTER, DEVICE_PREFIX, EMUL_OPEN3, HAVE_GETGRGID,
|
||
HAVE_GETPWUID, HAVE_MKNOD, HAVE_RTAPELIB, HAVE_ST_FSTYPE_STRING,
|
||
HAVE_UNION_WAIT, HAVE_UTIME_H, HAVE_VALLOC, MTIO_CHECK_FIELD, PACKAGE,
|
||
PROTOTYPES, REMOTE_SHELL, STD_INC_PATH, VERSION, WITH_CATALOGS,
|
||
WITH_DMALLOC, WITH_REGEX):
|
||
Remove; now generated automatically.
|
||
|
||
* configure.in (_GNU_SOURCE): Define to empty, not 1, for
|
||
compatibility for glibc fragments.
|
||
(_GNU_SOURCE, HAVE_UTIME_H, MTIO_CHECK_FIELD,
|
||
HAVE_ST_FSTYPE_STRING, HAVE_MKNOD, REMOTE_SHELL, DENSITY_LETTER,
|
||
DEVICE_PREFIX, DEFAULT_ARCHIVE, DEFAULT_BLOCKING): Add comment so
|
||
that we needn't put an entry into acconfig.h.
|
||
(ALL_LINGUAS): Add da.
|
||
(AC_C_BACKSLASH_A): Remove; jm_PREREQ_QUOTEARG now does this.
|
||
(AC_CHECK_HEADERS): Add stdbool.h (for hash.h users), wctype.h
|
||
(for strtol.c).
|
||
(AC_MBSTATE_T): Add.
|
||
(RMT): Append $(EXEEXT).
|
||
(HAVE_GETGRGID, HAVE_GETPWUID, pe_AC_TYPE_SIGNED_CHAR): Remove.
|
||
(HAVE_DECL_FREE, HAVE_DECL_GETGRGID, HAVE_DECL_GETPWUID,
|
||
HAVE_DECL_GETENV, HAVE_DECL_MALLOC, HAVE_DECL_STRTOUL,
|
||
HAVE_DECL_STRTOULL, HAVE_DECL_STRERROR_R): New macros.
|
||
(jm_PREREQ_ADDEXT, jm_PREREQ_ERROR, jm_PREREQ_QUOTEARG): Add.
|
||
(AC_REPLACE_FUNCS): Remove execlp; no longer needed.
|
||
(AC_CHECK_FUNCS): Add clock_gettime; AC_SEARCH_LIBS wasn't enough.
|
||
Remove mbrtowc; jm_PREREQ_QUOTEARG now does this.
|
||
(EMUL_OPEN3): Remove; no longer needed.
|
||
(DENSITY_LETTER, DEVICE_PREFIX): Simplify m4 quoting.
|
||
|
||
* m4/fnmatch.m4 (AC_FUNC_FNMATCH): Detect d*/*1 vs d/s/1 bug.
|
||
|
||
* src/common.h: Do not include basename.h.
|
||
* src/rtapelib.c (base_name): Do not include basename.h;
|
||
declare base_name instead.
|
||
|
||
* lib/basename.h, lib/execlp.c, lib/getpagesize.h, lib/mkdir.c:
|
||
Remove these files.
|
||
* lib/getstr.c, lib/getstr.h, lib/hash.h, lib/hash.h, lib/prepargs.c,
|
||
lib/prepargs.h, lib/savedir.c, lib/savedir.h: New files.
|
||
* lib/Makefile.am (EXTRA_DIST, noinst_HEADERS, libtar_a_SOURCES):
|
||
Adjust to the above changes.
|
||
|
||
* lib/Makefile.am (AUTOMAKE_OPTIONS): Remove ../src/ansi2knr.
|
||
|
||
* src/open3.c: Remove.
|
||
|
||
* src/Makefile.am (AUTOMAKE_OPTIONS): Remove ansi2knr.
|
||
(tar_SOURCES): Remove open3.c.
|
||
(INCLUDES): Remove -I.., as automake does that.
|
||
(OMIT_DEPENDENCIES): ../lib/fnmatch.h -> fnmatch.h. Add localedir.h.
|
||
|
||
The following changes are to put LOCALEDIR into localedir.h instead
|
||
of passing it on the command line.
|
||
(DEFS): Remove.
|
||
(DISTCLEANFILES): New macro.
|
||
(localedir.h): New rule.
|
||
(rmt.o tar.o): Now depend on localedir.h.
|
||
|
||
* tests/delete02.sh, tests/extrac04.sh: New files.
|
||
|
||
* tests/Makefile.am (AUTOMAKE_OPTIONS): Remove ansi2knr.
|
||
(TESTS): Add extrac04.sh, and restore delete02.sh.
|
||
(DEFS): Remove; LOCALEDIR is now done via localedir.h.
|
||
(INCLUDES): Remove -I.. as automake does this now.
|
||
|
||
* src/rtapelib.c (rexec): Don't declare unless using it.
|
||
(do_command): Simplify signal-handling code slightly.
|
||
|
||
* src/delete.c (blocks_needed): Remove. All uses changed to use
|
||
blocking_factor - new_blocks.
|
||
(acting_as_filter): New var.
|
||
(write_record, delete_archive_members): Use acting_as_filter
|
||
rather than archive == STDIN_FILENO to detect whether we're acting
|
||
as a filter, as open can return STDIN_FILENO in some cases.
|
||
(delete_archive_members): Ignore zero blocks if
|
||
ignore_zeros_option is nonzero. Fix bug that messed up last
|
||
output block: write_eot can't be used here, as it gets confused
|
||
when the input is at end of file.
|
||
|
||
* src/compare.c (diff_archive): Do not impose an arbitrary limit on
|
||
symbolic link contents length. Pass directory size to
|
||
get_directory_contents.
|
||
|
||
* m4/decl.m4, m4/error.m4, m4/mbstate_t.m4, m4/prereq.m4,
|
||
m4/strerror_r.m4: New files.
|
||
* m4/signedchar.m4: Remove this file.
|
||
* Makefile.am (ACINCLUDE_INPUTS): Adjust to above changes.
|
||
* m4/Makefile.am (EXTRA_DIST): Likewise.
|
||
|
||
* Makefile.am (DISTCLEANFILES): Add intl/libintl.h.
|
||
|
||
* po/da.po: New translation file.
|
||
|
||
* src/mangle.c (extract_mangle):
|
||
Fix diagnostic with wrong number of %s'es.
|
||
|
||
* lib/fnmatch.c (fnmatch):
|
||
Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
|
||
e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
|
||
|
||
* lib/full-write.c (full_write): Some buggy drivers return 0 when you
|
||
fall off a device's end. Detect this.
|
||
|
||
* src/system.h (IN_CTYPE_DOMAIN): Renamed from CTYPE_DOMAIN. All
|
||
uses changed.
|
||
(open): Remove macro; we no longer support EMUL_OPEN3. Do not
|
||
include <pathmax.h> and directory include files like <dirent.h>;
|
||
no longer used. Include <savedir.h> instead.
|
||
(closedir, signed_char): remove macro; no longer used.
|
||
(bool, false, true): Include <stdbool.h> if you have the include
|
||
file, otherwise define.
|
||
|
||
* src/misc.c:
|
||
(is_dot_or_dotdot, closedir_error, closedir_warn, opendir_error,
|
||
opendir_warn, readdir_error): Remove; no longer needed.
|
||
(safer_rmdir): Strip leading ./ (or .// or ./// or ././ or etc.)
|
||
before deciding whether we're trying to remove ".".
|
||
(remove_any_file): Try unlink first if we are not root. Use
|
||
savedir when recursively removing directories, to avoid exhausting
|
||
file descriptors.
|
||
(savedir_error, savedir_warn, symlink_error): New functions.
|
||
|
||
* src/list.c: (read_and): Do not invoke
|
||
apply_nonancestor_delayed_set_stat; DO_SOMETHING is now
|
||
responsible for that. Do not invoke apply_delayed_set_stat; our
|
||
caller is now responsible for that.
|
||
(read_header): Use signed char instead of signed_char. Prevent
|
||
later references to current_header from mistakenly treating it as
|
||
an old GNU header.
|
||
(from_header): Quote invalid base-64 strings in diagnostics.
|
||
(time_from_header): Do not warn about future timestamps in
|
||
archive; check_time now does that.
|
||
(print_header): Quote unknown file types.
|
||
(skip_member): New function, replacing skip_extended_headers and
|
||
now skipping the whole member instead of just the extended
|
||
headers. All callers changed. This makes the code handle
|
||
extended headers uniformly, and fixes some bugs.
|
||
|
||
* src/update.c (update_archive): Use skip_member.
|
||
|
||
* src/extract.c (we_are_root): Now global.
|
||
(struct delayed_symlink): New type.
|
||
(delayed_symlink_head): New var.
|
||
(extr_init, fatal_exit): Invoke extract_finish on fatal errors,
|
||
not apply_delayed_set_stat.
|
||
(set_mode, set_stat): Pointer args are now const pointers.
|
||
(check_time): New function.
|
||
(set_stat): Warn if setting a file's timestamp to be the future.
|
||
(make_directories): Do not save and restore errno.
|
||
(maybe_recoverable): Set errno to ENOENT if we cannot make missing
|
||
intermediate directories.
|
||
(extract_archive): Invoke apply_nonancestor_delayed_set_stat here,
|
||
not in caller. Extract potentially dangerous symbolic links more
|
||
carefully, deferring their creation until the end, and using a
|
||
regular file placeholder in the meantime. Do not remove trailing
|
||
/ and /. from file names. Do not bother checking for ".." when
|
||
checking whether a directory loops back on itself, as loopbacks
|
||
can occur with symlinks too. Also, in that case, do not bother
|
||
saving and restoring errno; just set it to EEXIST.
|
||
(apply_nonancestor_delayed_set_stat): A prefix is a potential
|
||
ancestor if it ends in slash too (as well as ending in a char just
|
||
before slash).
|
||
(apply_delayed_set_stat): Remove.
|
||
(apply_delayed_symlinks, extract_finish): New functions.
|
||
|
||
* doc/fdl.texi: New file.
|
||
* doc/Makefile.am (EXTRA_DIST): Add fdl.texi.
|
||
($(srcdir)/tar.info): Add fdl.texi. Invoke makeinfo with --no-split.
|
||
* doc/tar.texi: Add Free Documentation License. New section
|
||
"Overwrite Old Files", and revamp that section to make it easier to
|
||
follow. "tar" -> "GNU tar" where appropriate. Migrate getdate
|
||
documentation into getdate.texi. Fix several minor typos. Describe
|
||
TAR_OPTIONS. Describe incompatibility between incremental backups and
|
||
--atime-preserve. Describe incompatibility between --verify and other
|
||
options. Mention that tar normally removes symbolic links rather than
|
||
following them, when extracting a file of the same name.
|
||
|
||
* THANKS: Add gpoul. Change skip's address.
|
||
|
||
* po/POTFILES.in: Add lib/human.c.
|
||
|
||
* src/common.h (namelist, namelast): Remove decls.
|
||
(we_are_root, extract_finish, skip_member, savedir_error,
|
||
savedir_warn, symlink_error, gnu_list_name): New decls.
|
||
(apply_delayed_set_stat, apply_nonancestor_delayed_set_stat,
|
||
skip_extended_headers, is_dot_or_dotdot, closedir_error,
|
||
closedir_warn, opendir_error, opendir_warn, readdir_error,
|
||
readdir_warn): Remove decls.
|
||
(get_directory_contents): New off_t arg.
|
||
(addname): Now returns struct name *.
|
||
|
||
* src/tar.h, tests/genfile.c: Fix comments.
|
||
|
||
* src/create.c: Include hash.h.
|
||
(gnu_list_name): Remove decl.
|
||
(struct link): Remove "next" member.
|
||
(linklist): Remove.
|
||
(start_header): Say "leading `FOO'" rather than "`FOO' prefix" for
|
||
consistency with other diagnostics.
|
||
(deal_with_sparse): Check for I/O error when closing the file.
|
||
(create_archive): Do not allocate an array of size PATH_MAX, as
|
||
PATH_MAX might be (size_t) -1. Instead, allocate an array with
|
||
the size that's needed.
|
||
(hash_link, compare_links): New functions.
|
||
(dump_file): Do not exhaust open file descriptors when descending
|
||
deeply into a directory, by using savedir rather than
|
||
opendir/readdir. Do not zero-fill the name buffer unnecessarily.
|
||
Hash the set of links already created, instead of using a linked
|
||
list. Fix some bugs in outputting sparse files which caused the
|
||
sparse tables to be incorrect. When a file unexpectedly shrinks,
|
||
output zeros rather than garbage. Do not allocate an array of
|
||
size PATH_MAX, as PATH_MAX might be (size_t) -1. Instead,
|
||
allocate an array with the size that's needed.
|
||
|
||
* src/incremen.c: Include hash.h.
|
||
(struct directory): Remove "next", "dir_text". Change "name" to
|
||
be char[1] with struct hack, not const char *. Add "found".
|
||
(directory_list): Remove. Replaced by directory_table.
|
||
(directory_table): New var.
|
||
(nfs_string): Renamed from nfs.
|
||
(hash_directory, compare_directories): New functions.
|
||
(note_directory): Now returns struct directory *. First arg is
|
||
now const pointer. struct stat arg is now dev_t, ino_t, nfs.
|
||
Remove text arg. New "found" arg, basically corresponding to the
|
||
old text arg not being null. All callers changed.
|
||
(note_directory, find_directory): Use hash table rather than
|
||
linked list.
|
||
(get_directory_contents): New arg "device". Use savedir to do the
|
||
hard work. Save the nfs-ness of stat_data, since it might change
|
||
under us. Use note_directory instead of find_directory to save
|
||
some work. When adding an "A" record, do it with
|
||
add_to_accumulator instead of cheating with strcat.
|
||
(read_directory_file): Use "+" flag before device to indicate
|
||
whether it was NFS. Fix typo in checking for strtoul error.
|
||
(write_directory_file_entry): New function.
|
||
(write_directory_file): Use it, and use the hash routines to
|
||
traverse the directory table.
|
||
(gnu_restore): Use savedir rather than opendir/readdir.
|
||
|
||
* src/tar.c: Include localedir.h, prepargs.h.
|
||
(long_options): Now static.
|
||
(long_options, usage, decode_options): -j is now short for
|
||
--bzip2, and -I is now an alias for -T.
|
||
(decode_options, main): argv is not const pointer now.
|
||
(decode_options): Invoke prepend_default_options to support
|
||
TAR_OPTIONS. In diagnostic, mention the string that was the
|
||
invalid blocking factor, tape length, group, owner, or record
|
||
size. --delete is no longer incompatible with -f -, undoing
|
||
2000-01-07 change.
|
||
(main): Invoke extract_finish at end of extraction.
|
||
|
||
* src/rmt.c: Include localedir.h.
|
||
(main): Update copyright date to 2000.
|
||
|
||
* doc/getdate.texi: New file, taken from fileutils 4.0.27, with the
|
||
following changes: Use @sc where appropriate. Document the ranges of
|
||
supported times more precisely. Add Eggert to getdate authors.
|
||
Document old Latin 12m/12pm tradition. Remove list of alphabetic time
|
||
zone names, as it wasn't correct and people shouldn't be relying on it
|
||
anyway. Relative items also account for non-DST adjustments. Fix
|
||
some misspellings.
|
||
|
||
* lib/prepargs.c, lib/prepargs.h, tests/extrac04.sh: New file.
|
||
|
||
* tests/ignfail.sh: opendir -> savedir in diagnostics.
|
||
|
||
* tests/preset.in: Set LANGUAGE to the empty string, for some
|
||
brain damaged host.
|
||
|
||
2000-10-20 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* m4/fnmatch.m4: Mention the GNU C library.
|
||
|
||
2000-10-19 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* m4/fnmatch.m4: Add a couple more test cases to catch bugs in
|
||
glibc 2.1.95.
|
||
|
||
2000-10-17 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* lib/human.c (<limits.h>): Do not include; human.h does it if needed.
|
||
(CHAR_BIT): Remove.
|
||
|
||
* lib/human.h (<limits.h>): Include if HAVE_LIMITS_H.
|
||
(CHAR_BIT): Define if not defined.
|
||
|
||
2000-09-09 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* lib/quotearg.c: From fileutils: rename ISASCII to IN_CTYPE_DOMAIN.
|
||
|
||
2000-08-07 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* lib/xmalloc.c: Memory exhausted -> memory exhausted
|
||
|
||
* lib/xalloc.h (xalloc_msg_memory_exhausted):
|
||
change to array from char *.
|
||
|
||
2000-08-06 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* m4/mbstate_t.m4: Define mbstate_t to be int, not char, for
|
||
compatibility with glibc 2.1.3 strftime.c.
|
||
|
||
2000-07-31 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* lib/quotearg.c (quotearg_n_options):
|
||
Don't make the initial slot vector a constant,
|
||
since it might get modified.
|
||
|
||
* lib/quotearg.c: Add support for more than one preallocated slot.
|
||
|
||
2000-07-30 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* lib/quotearg.c (quotearg_n_options):
|
||
Preallocate a slot 0 buffer, so that the caller
|
||
can always quote one small component of a "memory exhausted" message
|
||
in slot 0.
|
||
|
||
2000-07-23 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* lib/quotearg.c:
|
||
Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX), so that
|
||
mbstate_t is always defined.
|
||
|
||
Do not inspect MB_LEN_MAX, since it's incorrectly defined to be 1 in
|
||
some GCC installations, and this configuration error is likely to be
|
||
common.
|
||
|
||
2000-07-22 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* lib/quotearg.c:
|
||
When the system forces us to redefine mbstate_t, shadow its mbsinit
|
||
function. From Bruno Haible.
|
||
|
||
2000-07-14 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* lib/xmalloc.c: Simplify exhausted message.
|
||
|
||
* lib/quotearg.h: Update copyright date; from Jim Meyering.
|
||
|
||
2000-07-13 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* lib/quotearg.h (enum quoting style):
|
||
New constant clocale_quoting_style.
|
||
|
||
* lib/quotearg.c:
|
||
(quoting_style_args, quoting_style_vals, quotearg_buffer_restyled):
|
||
Add support for clocale_quoting_style, undoing previous change to
|
||
locale_quoting_style.
|
||
|
||
2000-07-10 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* lib/quotearg.c:
|
||
<wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX,
|
||
since otherwise we don't need it.
|
||
(MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
|
||
since we don't do multibytes in that case.
|
||
(quotearg_buffer_restyled): If a unibyte locale, don't bother to
|
||
invoke multibyte primitives.
|
||
|
||
* m4/mbstate_t.m4 (AC_MBSTATE_T):
|
||
Renamed from AC_MBSTATE_T_OBJECT. All uses changed.
|
||
Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
|
||
and mbstate_t, to a single-part test that simply defines mbstate_t.
|
||
|
||
* lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
|
||
Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
|
||
to decide whether to define the BeOS workaround macro;
|
||
this adjusts to the change to AC_MBSTATE_T.
|
||
|
||
* m4/strerror_r.m4: New file.
|
||
|
||
2000-07-05 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* lib/quotearg.c: Use double-quote to quote.
|
||
|
||
* lib/quotearg.c (N_): New macro.
|
||
(gettext_default): New function.
|
||
(quotearg_buffer_restyled): Use gettext_default ("{LEFT QUOTATION MARK}",
|
||
"\"") for left quote, and gettext_default ("{RIGHT QUOTATION MARK}", "\"")
|
||
for right quote.
|
||
|
||
* lib/quotearg.c (struct quoting_options):
|
||
Simplify quote_these_too dimension.
|
||
From Bruno Haible <haible@clisp.cons.org>.
|
||
|
||
* m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT):
|
||
Test for mbstate_t only if the test
|
||
for an object-type mbstate_t fails.
|
||
|
||
* lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
|
||
|
||
2000-07-03 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
|
||
Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
|
||
|
||
* lib/quotearg.c (mbrtowc):
|
||
Assign to *pwc, and return 1 only if result is nonzero.
|
||
(iswprint): Define to ISPRINT if we are substituting our own mbrtowc.
|
||
|
||
2000-07-02 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* lib/quotearg.c (mbstate_t):
|
||
Do not define; it should be defined with AC_CHECK_TYPE.
|
||
|
||
2000-06-26 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* m4/mbstate_t.m4: Include stdio.h before wchar.h, to work around
|
||
a bug in glibc 2.1.3.
|
||
|
||
* lib/xmalloc.c: Fix inaccurate comment for xrealloc.
|
||
|
||
2000-06-19 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* lib/quotearg.c (ISASCII): Add #undef and move definition to follow
|
||
inclusion of wctype.h to work around solaris2.6 namespace pollution.
|
||
(ISPRINT): Likewise.
|
||
Reported by Tom Tromey.
|
||
|
||
2000-06-15 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* lib/human.c (adjust_value): New function.
|
||
(human_readable_inexact): Apply rounding style even when printing
|
||
approximate values.
|
||
|
||
* lib/human.c: Avoid shadowing warnings.
|
||
From Jim Meyering.
|
||
|
||
2000-06-14 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* lib/human.c (human_readable_inexact): Allow an input block size
|
||
that is not a multiple of the output block size, and vice versa.
|
||
|
||
* lib/getdate.y (get_date): Apply relative times after time zone
|
||
indicator, not before.
|
||
|
||
2000-05-31 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* m4/largefile.m4: Rewrite so that we don't need to run getconf,
|
||
and thus don't need AC_CANONICAL_HOST.
|
||
|
||
(AC_SYS_LARGEFILE_FLAGS, AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
|
||
(AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
|
||
(AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
|
||
CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY. All uses
|
||
changed. Instead of inspecting the output of getconf, try to
|
||
compile the test program without and with the macro definition.
|
||
(AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check for
|
||
getconf. Instead, check for the needed flags by compiling test
|
||
programs.
|
||
|
||
* configure.in (AC_CANONICAL_HOST): Remove; the largefile stuff no
|
||
longer needs it.
|
||
* config.guess, config.sub: Remove these files, for similar reasons.
|
||
|
||
2000-05-03 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to be
|
||
500, instead of _GNU_SOURCE to be 1, to work around glibc 2.1.3
|
||
bug. This avoids a clash when files like regex.c that define
|
||
_GNU_SOURCE.
|
||
|
||
2000-05-02 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* m4/largefile.m4 (AC_SYS_LARGEFILE):
|
||
Define _GNU_SOURCE if this is needed to make
|
||
ftello visible (e.g. glibc 2.1.3). Use compile-time test, rather than
|
||
inspecting host and OS, to decide whether to define _LARGEFILE_SOURCE.
|
||
|
||
* lib/quotearg.c (mbrtowc, mbstat_t):
|
||
Add definitions if !HAVE_MBSTATE_T_OBJECT.
|
||
(<wctype.h>): Include if HAVE_WCTYPE_H.
|
||
(iswprint): Define to 1 if we lack it
|
||
|
||
2000-04-18 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* m4/mbstate_t.m4: New file.
|
||
|
||
2000-04-17 Bruno Haible <haible@clisp.cons.org>
|
||
|
||
* tests/ignfail.sh: Test for uid 0 along with user "root".
|
||
|
||
2000-04-05 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS):
|
||
Don't use -n32 on IRIX if the installer said
|
||
otherwise.
|
||
|
||
2000-02-28 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* lib/quotearg.c (ALERT_CHAR): New macro.
|
||
(quotearg_buffer_restyled): Use it.
|
||
|
||
2000-02-23 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
|
||
|
||
* src/list.c (tartime): Fix off-by-one error when copying year if
|
||
OLD_CTIME.
|
||
|
||
2000-02-18 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* lib/getdate.y: Handle two-digit years with leading zeros correctly.
|
||
(textint): New typedef.
|
||
(parser_control): Changed from struct parser_control to typedef
|
||
(for consistency). Member year changed from int to textint. All
|
||
uses changed.
|
||
(YYSTYPE): Removed; replaced by %union with int and textint
|
||
members.
|
||
(tID): Removed; not used.
|
||
(tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE,
|
||
tMERIDIAN, tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER,
|
||
tUNUMBER, tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
|
||
(tSNUMBER, tUNUMBER): Now of type <textintval>.
|
||
(date, number, to_year): Use width of number in digits, not its
|
||
value, to determine whether it's a 2-digit year, or a 2-digit
|
||
time.
|
||
(yylex): Store number of digits of numeric tokens. Return '?' for
|
||
unknown identifiers, rather than (unused) tID.
|
||
|
||
2000-01-16 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* lib/quotearg.c (quotearg_buffer_restyled):
|
||
Do not quote alert, backslash, formfeed,
|
||
and vertical tab unnecessarily in shell quoting style.
|
||
|
||
2000-01-15 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* m4/c-bs-a.m4:
|
||
Change quoting to be compatible with future autoconf versions.
|
||
|
||
2000-01-11 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* lib/exclude.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Remove unused macros.
|
||
|
||
2000-01-07 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* NEWS, configure.in (AC_INIT_AUTOMAKE): Version 1.13.17.
|
||
|
||
Fix bug with fnmatch.h dependency, as follows:
|
||
* src/Makefile.am (OMIT_DEPENDENCIES): New macro.
|
||
* lib/Makefile.am (OMIT_DEPENDENCIES): New macro.
|
||
|
||
* src/common.h (apply_nonancestor_delayed_set_stat):
|
||
Renamed from apply_delayed_set_stat.
|
||
(apply_delayed_set_stat, decode_mode, chmod_error_details,
|
||
chown_error_details, close_warn, closedir_warn, mkdir_error,
|
||
read_error_details, read_fatal_details, read_warn_details,
|
||
seek_error_details, seek_warn_details, utime_error,
|
||
write_error_details, write_fatal_details): New decls.
|
||
|
||
Make diagnostic messages more regular.
|
||
* src/create.c (dump_file): Quote file names with colons if possible.
|
||
* src/compare.c (diff_archive): Likewise.
|
||
* src/extract.c (repair_delayed_set_stat, extract_archive): Likewise.
|
||
* src/incremen.c (get_directory_contents, gnu_restore): Likewise.
|
||
* src/mangle.c (extract_mangle): Likewise.
|
||
* src/misc.c (call_arg_error, call_arg_fatal, call_arg_warn):
|
||
Likewise.
|
||
* src/buffer.c (archive_write_error, flush_archive, close_archive,
|
||
new_volume, xclose):
|
||
Use error message functions to report errors consistently.
|
||
* src/compare.c (diff_sparse_files, diff_archive): Likewise.
|
||
* src/create.c (finish_sparse_file, dump_file): Likewise.
|
||
* src/extract.c (set_mode, set_stat, extract_sparse_file,
|
||
extract_archive): Likewise.
|
||
* src/list.c (list_archive): Likewise.
|
||
* src/update.c (append_file): Likewise.
|
||
* src/compare.c (diff_init, diff_sparse_files):
|
||
Use xalloc_die to report memory exhaustion.
|
||
* src/incremen.c (gnu_restore): Likewise.
|
||
* src/list.c (read_header): Likewise.
|
||
* src/mangle.c (extract_mangle): Likewise.
|
||
* src/misc.c (maybe_backup_file): Likewise.
|
||
* src/tar.c (decode_options): Likewise.
|
||
* src/compare.c (read_and_process, fill_in_sparse_array,
|
||
diff_sparse_files):
|
||
Use consistent terminology for unexpected-EOF message.
|
||
* src/extract.c (extract_sparse_file, extract_archive): Likewise.
|
||
* src/list.c (list_archive, read_header, skip_file,
|
||
skip_extended_headers): Likewise.
|
||
* src/buffer.c (archive_write_error): Add noreturn attribute to decl.
|
||
(xdup2): Regularize messages with rest of tar.
|
||
|
||
* src/buffer.c (flush_read): Don't read past EOF.
|
||
|
||
* src/extract.c (extr_init):
|
||
If we run out of memory, invoke apply_delayed_set_stat.
|
||
(prepare_to_extract): Don't complain if we can't remove ".".
|
||
(apply_delayed_set_stat): New function.
|
||
(apply_nonancestor_delayed_set_stat):
|
||
Renamed from apply_delayed_set_stat. All uses changed.
|
||
Don't remove head if it doesn't apply.
|
||
|
||
* src/create.c (find_new_file_size):
|
||
Return size instead of storing through pointer.
|
||
All callers changed.
|
||
(deal_with_sparse): Don't keep reading after read errors.
|
||
(finish_sparse_file): Just abort if there is an internal error.
|
||
(dump_file): Fix typo: stat_warn and stat_error were interchanged.
|
||
Don't restore access times on directories during incremental dumps
|
||
until after dealing with the directory.
|
||
If ignoring failed reads, count closedir, read, and unknown
|
||
file errors as warnings, not errors.
|
||
Fix buffer overrun problem when dumping sparse files.
|
||
|
||
* src/list.c (read_and):
|
||
Invoke apply_nonancestor_delayed_set_stat on file names
|
||
after handling them.
|
||
(decode_mode): Remove; moved to misc.c.
|
||
|
||
* src/misc.c (safer_rmdir): New function.
|
||
(remove_any_file): Use it to avoid problems with rmdir(".").
|
||
(maybe_backup_file): Regularize diagnostics.
|
||
(undo_backup_file): Likewise.
|
||
(decode_mode): Moved here from list.c.
|
||
(chmod_error_details, chown_error_details, close_fatal,
|
||
close_warn, closedir_warn, mkdir_error, read_error_details,
|
||
read_warn_details, read_fatal_details, seek_error_details,
|
||
seek_warn_details, utime_error, write_error_details,
|
||
write_fatal_details): New functions.
|
||
|
||
* src/delete.c (save_record): Remove static variable (now local).
|
||
(move_archive): Don't position before start of archive.
|
||
(write_record): Abort if count is zero at inopportune time.
|
||
Plug memory leak.
|
||
|
||
* src/tar.c (decode_options): --delete and -f - are now
|
||
incompatible, since we didn't have time to fix their bugs.
|
||
|
||
* tests/Makefile.am (TESTS): Remove delete02.sh.
|
||
* tests/ignfail.sh: Adjust to new quoting scheme again.
|
||
|
||
2000-01-06 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* lib/getdate.y: Sync tm_diff with the GNU C Library.
|
||
(TM_YEAR_BASE): Renamed from TM_YEAR_ORIGIN. All uses changed.
|
||
(tm_diff): Renamed from difftm. All uses changed.
|
||
Replace body with that taken from GNU C Library 2.1.3pre1.
|
||
(get_date): Prefer tm_gmtoff to tm_diff if available.
|
||
|
||
1999-12-29 "Melissa O'Neill" <oneill@cs.sfu.ca>
|
||
|
||
* tests/incremen.sh: Invoke stat on newly created file so that its
|
||
ctime is updated on Nextstep.
|
||
|
||
1999-12-21 Machael Stone <mstone@cs.loyola.edu>
|
||
|
||
* lib/getdate.y (get_date):
|
||
Fix typo when checking for time_t overflow in time zone calculations.
|
||
|
||
1999-12-13 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* NEWS, configure.in (AC_INIT_AUTOMAKE): Version 1.13.16.
|
||
|
||
* README-alpha: New file.
|
||
* README: New sections for gzip and bzip2, Solaris.
|
||
Remove mention of BACKLOG.
|
||
|
||
* configure.in (AC_C_BACKSLASH_A): Add.
|
||
(AC_CHECK_HEADERS): Add wchar.h.
|
||
(AC_CHECK_FUNCS): Add mbrtowc.
|
||
(AC_FUNC_CLOSEDIR_VOID): Add.
|
||
|
||
* tests/Makefile.am (TESTS): Add delete02.sh.
|
||
(POSTPONED_TESTS): Remove.
|
||
(EXTRA_DIST): Remove $(POSTPONED_TESTS).
|
||
|
||
* tests/preset.in:
|
||
Set LC_ALL rather than LANGUAGE, LANG, and LC_MESSAGES.
|
||
|
||
* tests/ignfail.sh (err): Adjust to new quoting scheme.
|
||
|
||
* tests/delete02.sh: Fix typo: need to list archive2, not archive.
|
||
|
||
* tests/extrac03.sh: Use -P option, so that .. doesn't get diagnosed.
|
||
|
||
* src/tar.c ("quotearg.h"): New include.
|
||
(usage): Now has __attribute__ ((noreturn)).
|
||
(confirm): Report errno if we can't open tty.
|
||
(confirm, decode_options):
|
||
Quote arbitrary strings in diagnostics.
|
||
(OVERWRITE_OPTION): New constant.
|
||
(long_options, usage, decode_options): New --overwrite option.
|
||
(decode_options): --keep-old-files, --overwrite, and --unlink-first
|
||
are now mutually exclusive.
|
||
Don't assume that gettext preserves errno.
|
||
(main): Set default quoting style to escape_quoting_style.
|
||
|
||
* src/update.c (<quotearg.h>): New include.
|
||
(append_file):
|
||
Don't assume that gettext preserves errno.
|
||
Quote arbitrary strings in diagnostics.
|
||
Check for close error.
|
||
|
||
* src/names.c (<quotearg.h>): New include.
|
||
(name_init, name_next, name_close, names_notfound,
|
||
collect_and_sort_names): Don't assume that gettext preserves
|
||
errno. Quote arbitrary strings in diagnostics.
|
||
(excluded_name): Fix typo that caused empty patterns to be
|
||
mishandled.
|
||
|
||
* src/misc.c (<quotearg.h>): New include.
|
||
(quote_copy_string): Quote only newline and backslash; the output is no
|
||
longer meant for humans, and is locale-independent.
|
||
(contains_dot_dot): New function.
|
||
(remove_any_file): Don't use lstat; just rmdir the file and then use
|
||
unlink if the rmdir fails because the file isn't a directory.
|
||
Check for readdir and closedir errors.
|
||
(maybe_backup_file): Report "stat" for stat errors.
|
||
(maybe_backup_file, chdir_do):
|
||
Quote arbitrary strings in diagnostics.
|
||
(maybe_backup_file, undo_last_backup):
|
||
Don't assume that gettext preserves errno.
|
||
(call_arg_error, call_arg_fatal, call_arg_warn,
|
||
chdir_fatal, close_error, closedir_error, exec_fatal, mkfifo_error,
|
||
mknod_error, open_error, open_fatal, open_warn, opendir_error,
|
||
opendir_warn, read_error, read_fatal, readdir_error, readdir_warn,
|
||
readlink_error, readlink_warn, seek_error, seek_warn, stat_error,
|
||
stat_warn, truncate_error, truncate_warn, unlink_error, waitpid_error,
|
||
write_error, write_fatal, xfork, xpipe, quote_n, quote): New functions.
|
||
|
||
* src/system.h (__attribute__): New macro.
|
||
(O_NDELAY, O_NONBLOCK, O_APPEND): Remove.
|
||
(S_ISDOOR): New macro.
|
||
(closedir): New macro, if CLOSEDIR_VOID.
|
||
|
||
* src/rmt.c, src/rtapelib.c (decode_oflag):
|
||
O_APPEND might not be defined.
|
||
|
||
* src/list.c: (read_and, list_archive):
|
||
Quote arbitrary strings in diagnostics.
|
||
(from_header): Use locale_quoting_style to quote diagnostics.
|
||
(print_header, print_for_mkdir): Quote with quotearg, not quote_copy_string.
|
||
|
||
* src/rmt.h (REM_BIAS): Increase from 128 to (1 << 30).
|
||
|
||
* src/Makefile.am: Use ## for copyright comments.
|
||
|
||
* src/extract.c (<quotearg.h>): New include.
|
||
(enum permstatus): New enum.
|
||
(struct delayed_set_stat): file_name is now at end of buffer, to avoid
|
||
two mallocs. New members file_name_len, invert_permissions, permstatus.
|
||
(extr_init): Remove hack that silently adjusted newdir_umask.
|
||
(set_mode, set_stat): New args invert_permissions, permstatus, typeflag.
|
||
Use these args to decide whether and how to set modes.
|
||
(set_mode, set_stat, prepare_to_extract, extract_sparse_file, extract_archive):
|
||
Don't assume that gettext preserves errno.
|
||
(set_stat): Remove arg symlink_flag; subsumed by typeflag.
|
||
(delay_set_stat, repair_delayed_set_stat): New functions.
|
||
(make_directories): Avoid mkdir where last part of path is "..".
|
||
Create a struct delayed_set_stat for each directory made.
|
||
(prepare_to_extract): Renamed from unlink_destination, and
|
||
return 0 immediately if to_stdout_option; all callers changed.
|
||
(maybe_recoverable): New parameter interdir_made.
|
||
Add support for --overwrite.
|
||
(extract_sparse_file, extract_archive):
|
||
Quote arbitrary strings in diagnostics.
|
||
(extract_archive): By default, warn about ".." in member names, and skip them.
|
||
Don't open files with O_NONBLOCK or O_APPEND.
|
||
Open with O_TRUNC only if --overwrite; otherwise, use O_EXCL to avoid
|
||
overwriting them. Pass only rwxrwxrwx permissions to `open' and `mkdir',
|
||
minus the current umask. Keep track of intermediate directories made,
|
||
to avoid looping when making x/../x when x doesn't exist; the
|
||
earlier code solved this in a different way that didn't fit well
|
||
into the new scheme. Don't extract permissions onto existing
|
||
directories unless --overwrite is given. Do not add -wx------
|
||
permissions to new directories permanently; just do it temporarily.
|
||
Remove no-longer-needed hack with MSDOS and directory time stamps.
|
||
(apply_delayed_set_stat): New argument specifies which directories to
|
||
fix statuses of. Do not wait until the end of extraction to fix
|
||
statuses; instead, fix a directory's status once we exit that directory.
|
||
This requires less memory and does the right thing in some cases
|
||
where the old method didn't.
|
||
(fatal_exit): New function.
|
||
|
||
* src/incremen.c (<quotearg.h>): New include.
|
||
(get_directory_contents, gnu_restore):
|
||
Check for readdir and closedir errors.
|
||
(get_directory_contents, read_directory_file, gnu_restore):
|
||
Quote arbitrary strings in diagnostics.
|
||
(get_directory_contents, read_directory_file, write_directory_file):
|
||
Don't assume that gettext preserves errno.
|
||
|
||
* src/create.c (<quotearg.h>): New include.
|
||
(start_header): Use `member names' to refer to archive member names, not
|
||
`archive names'. Warn about `..' in member names.
|
||
(finish_sparse_file, dump_file):
|
||
Quote arbitrary strings in diagnostics.
|
||
(finish_sparse_file, dump_file):
|
||
Don't assume that gettext preserves errno.
|
||
(dump_file): Don't use `access' to determine whether a directory is readable;
|
||
this isn't reliable if tar is setuid. Use `opendir' instead.
|
||
Check for readdir and closedir failures.
|
||
Don't dump sockets as if they were fifos; just warn and skip.
|
||
|
||
* src/delete.c (move_archive):
|
||
Don't report fatal error merely because sizes don't fit
|
||
into struct mtop values; fall back on lseek instead.
|
||
Say `Cannot' uniformly, instead of `Could not' sometimes and `Cannot' others.
|
||
Say `reposition' instead of `re-position'.
|
||
(delete_archive_members):
|
||
Set archive to STDOUT_FILENO before outputting trailing buffer.
|
||
|
||
* src/compare.c (<quotearg.h>): New include.
|
||
(diff_init): Use `Cannot' uniformly, instead of `Could not' sometimes
|
||
and `Cannot' others.
|
||
(report_difference, diff_archive):
|
||
Quote arbitrary strings in diagnostics.
|
||
(process_rawdata, diff_sparse_files, get_stat_data, diff_archive, seek_warn):
|
||
Don't assume that gettext preserves errno.
|
||
(diff_archive): Don't open regular files with O_NONBLOCK.
|
||
Preserve access times of files if --atime.
|
||
|
||
* src/common.h (FATAL_ERROR): Use new fatal_exit function to exit.
|
||
(FATAL_ERROR, USAGE): Don't return 0.
|
||
(enum old files): New enum.
|
||
(old_files_option): New variable, replacing keep_old_files_option and
|
||
unlink_first_option.
|
||
(apply_delayed_set_stat): Now takes char const * param.
|
||
(fatal_exit, contains_dot_dot, chdir_fatal, close_error,
|
||
closedir_error, exec_fatal, mkfifo_error, mknod_error, open_error,
|
||
open_fatal, open_warn, opendir_error, opendir_warn, read_error,
|
||
read_fatal, readdir_error, readdir_warn, readlink_error,
|
||
readlink_warn, seek_error, seek_warn, stat_error, stat_warn,
|
||
truncate_error, truncate_warn, unlink_error, waitpid_error,
|
||
write_error, write_fatal, xfork, xpipe, quote, quote_n): New decls.
|
||
|
||
* src/buffer.c:
|
||
(xclose, xdup2, child_open_for_compress, child_open_for_uncompress,
|
||
archive_write_error, archive_read_error, flush_archive, close_archive,
|
||
init_volume_number, new_volume):
|
||
Don't assume that gettext preserves errno.
|
||
|
||
(xdup2): Don't report errno if dup returns an unexpected nonnegative value.
|
||
(open_archive): Reject multivolume verify attempts a bit earlier.
|
||
Rename local variable `access', in case it's defined by system header.
|
||
|
||
(open_archive, backspace_output): Use `Cannot' uniformly, instead of
|
||
`Could not' sometimes and `Cannot' others.
|
||
|
||
(open_archive, flush_read, flush_archive, close_archive, new_volume):
|
||
Quote arbitrary strings in diagnostics.
|
||
|
||
(read_error): Set archive to STDOUT_FILENO temporarily when writing
|
||
archive buffer.
|
||
|
||
(init_volume_number): Check for input and output errors in volno_file.
|
||
|
||
(new_volume): Use new fatal_exit function to exit, and new xfork
|
||
function to fork.
|
||
|
||
* m4/Makefile.am (EXTRA_DIST): Add c-bs-a.m4.
|
||
|
||
* Makefile.am (ACINCLUDE_INPUTS): Add $(M4DIR)/c-bs-a.m4.
|
||
|
||
* doc/tar.texi: Add --overwrite.
|
||
--absolute-names rejects ".." in names.
|
||
|
||
* lib/quotearg.c: Add support for multibyte characters.
|
||
(ISGRAPH): Remove.
|
||
(ISPRINT): New macro.
|
||
(<wchar.h>): Include if HAVE_MBRTOWC && HAVE_WCHAR_H.
|
||
(isprint, mbrtowc, mbsinit, mbstate_t): New macros,
|
||
defined if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
|
||
(quotearg_buffer_restyled): New function, with most of the old
|
||
quotearg_buffer's contents.
|
||
Major rewrite to support multibyte characters.
|
||
(quotearg_buffer): Now just calls quotearg_buffer_restyled.
|
||
|
||
* m4/c-bs-a.m4: New file.
|
||
|
||
* lib/Makefile.am: Use ## for copyright notice.
|
||
|
||
* scripts/Makefile.am: Use ## on copyright notice.
|
||
|
||
* doc/Makefile.am:
|
||
($(srcdir)/tar.info, tar.dvi): We now use texinfo 4.0.
|
||
|
||
1999-12-05 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* doc/ChangeLog, lib/ChangeLog, scripts/ChangeLog,
|
||
src/ChangeLog, tests/ChangeLog: Remove these files.
|
||
* ChangeLog.1: New file, incorporating the above files, plus old
|
||
ChangeLog entries.
|
||
* Makefile.am (EXTRA_DIST): Add ChangeLog.1.
|
||
|
||
1999-12-05 Dale Worley <worley@ariadne.com>
|
||
|
||
* src/compare.c (<utime.h>, struct utimbuf): Add.
|
||
(diff_archive): Restore access times if --atime.
|
||
* doc/tar.texi: Explain that --atime also preserves modification time.
|
||
|
||
1999-12-04 Gerhard Poul <gpoul@gnu.org>
|
||
|
||
* ABOUT-NLS: Update to latest version from ftp.gnu.org.
|
||
* BACKLOG, TODO: Remove.
|
||
* Makefile.am (all-local, BABYL, dist-zoo, id, ID): Remove.
|
||
* README: Bring up to date.
|
||
|
||
1999-12-03 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13.15.
|
||
|
||
* src/compare.c (diff_archive):
|
||
Do not set errno to EPIPE; we no longer use perror.
|
||
|
||
* src/create.c (dump_file):
|
||
If a parent directory said that a file should be there but it is
|
||
absent, diagnose it as being removed in the meantime.
|
||
Do not pass meaningless errno to ERROR when reporting that the
|
||
file changed as we read it.
|
||
Report that a file changed if its ctime changes; this is more
|
||
sensitive than mtime+size, and more accurate.
|
||
|
||
* src/incremen.c (enum children): New type.
|
||
(struct directory): Change old char allnew member to new enum children
|
||
children member.
|
||
All uses changed.
|
||
(get_directory_contents): When doing an incremental dump that does
|
||
not cross filesystem boundaries, dump the mount points, even though
|
||
they are in a different filesystem. This is for convenience when
|
||
restoring, and for consistency with non-incremental dumps.
|
||
This requires a 3-way flag for keeping track of which children we want,
|
||
so we use enum children rather than boolean.
|
||
|
||
* src/open3.c (modes): Remove.
|
||
(open3): Remove unportable assumptions about flag encodings.
|
||
Use `stat' instead of `access' for testing file existence,
|
||
to avoid problems with setuid programs.
|
||
|
||
* src/names.c (name_next): If file names are given both in the
|
||
command line (e.g. via -C) and in a file (via -T), do not
|
||
ignore the command-line names.
|
||
|
||
* m4/uintmax_t.m4: Backport to autoconf 2.13.
|
||
|
||
* doc/tar.texi: Clarify getdate authorship.
|
||
|
||
1999-11-23 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* lib/Makefile.am (DISTCLEANFILES): New macro.
|
||
|
||
* configure.in (tar_fnmatch_hin):
|
||
Remove; it runs afoul of a bug in autoconf 2.13.
|
||
Instead, always link fnmatch.h to some file, even if it's a throwaway.
|
||
|
||
1999-11-19 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* m4/largefile.m4: Update serial.
|
||
|
||
1999-11-18 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a bug in
|
||
the QNX shell, which doesn't propagate exit status of failed
|
||
commands inside shell assignments.
|
||
|
||
1999-11-07 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13.14.
|
||
|
||
* configure.in (AC_PREREQ): Bump to 2.13.
|
||
(ALL_LINGUAS): Add pt_BR, ja.
|
||
(AC_FUNC_FNMATCH): Remove lib/funmatch.h before invoking, not after.
|
||
(tar_cv_path_RSH): Prefer a non-symlink rsh to a symlink one,
|
||
for AIX crossbuilds.
|
||
|
||
* doc/tar.texi: New node create options for --ignore-failed-read.
|
||
Remove unused version control symbols.
|
||
Modernize texinfo usage.
|
||
|
||
* src/tar.c (usage): Add examples.
|
||
|
||
* m4/fnmatch.m4 (AC_FUNC_FNMATCH):
|
||
Include fnmatch.h when testing fnmatch.
|
||
|
||
* src/common.h (collect_and_sort_names): New decl.
|
||
|
||
* src/list.c (from_header):
|
||
Handle 32-bit two's complement negative time stamps
|
||
even if the leading octal digit is 2 or 3.
|
||
|
||
* src/extract.c (set_stat): Remove duplicate code.
|
||
|
||
* src/create.c (to_chars): Remove trailing newline from warning.
|
||
(dump_file): Ignore doors.
|
||
(finish_header): Report block numbers with origin 0, not origin 1.
|
||
|
||
* src/rmt.c: Include getopt.h.
|
||
(long_opts): New constant.
|
||
(usage): New function.
|
||
(main): Implement --help and --version.
|
||
Output usage message if arguments are bad.
|
||
|
||
1999-10-10 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13.13.
|
||
|
||
* README: Remove --with-dmalloc.
|
||
Add --disable-largefile.
|
||
Remove old NeXT dirent problems, or AIX valloc problems.
|
||
Remove old union wait advice, and old %lld advice.
|
||
Remove advice about FreeBSD 2.1.7, ISC 4.1mu, Ultrix `make'.
|
||
|
||
* doc/tar.texi: Clarify documentation for portable file names.
|
||
|
||
* configure.in (AM_WITH_DMALLOC): Remove.
|
||
(ALL_LINGUAS): Add ja.
|
||
|
||
* src/tar.c (decode_options):
|
||
Invalid dates are now treated as (time_t) -1.
|
||
Redo version message to conform to GNU standards.
|
||
|
||
* src/create.c (dump_file):
|
||
Fix typo: last two args to dump_file were interchanged.
|
||
* src/update.c (update_archive): Likewise.
|
||
|
||
* src/common.h (tartime): New decl.
|
||
|
||
* src/list.c (tartime): Now extern.
|
||
(read_and): Invalid headers cause errors, not warnings.
|
||
|
||
1999-10-03 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* lib/getdate.y (__attribute__):
|
||
Don't use if GCC claims to be before 2.8; this is
|
||
needed for OPENStep 4.2 cc. Also, don't use if strict ANSI.
|
||
|
||
1999-09-25 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* lib/fnmatch.c, lib/fnmatch.hin: Merge changes from latest glibc.
|
||
* lib/getopt.c, lib/getopt.h, lib/getopt1.c: Likewise.
|
||
|
||
* tests/incremen.sh: Add yet another sleep.
|
||
|
||
1999-09-24 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* NEWS: A read error now causes a nonzero exit status.
|
||
|
||
* src/create.c (to_chars): Fix base-256 output.
|
||
|
||
* src/buffer.c (write_error):
|
||
Read error is an error, not just a warning.
|
||
|
||
1999-09-24 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13.12.
|
||
|
||
* src/tar.c (<time.h>): Include.
|
||
(time): Declare if not defined.
|
||
(confirm): Don't read past EOF.
|
||
(long_options, usage): Add --no-same-owner, --no-same-permissions.
|
||
(main): Use clock_gettime if available.
|
||
|
||
* tests/Makefile.am (TESTS): Add incremen.sh
|
||
(INCLUDES): Add -I../lib, for fnmatch.h.
|
||
|
||
* src/update.c (update_archive):
|
||
Remove call to name_expand; had no effect.
|
||
Use chdir_do to change into directory.
|
||
Use deref_stat instead of stat.
|
||
Use add_avoided_name to mark names to be avoided; the old method of
|
||
setting a bit with the name caused all descendants of that name to
|
||
be avoided, in some circumstances.
|
||
|
||
* tests/incremen.sh: Remove unnecessary sleeps.
|
||
|
||
* src/names.c (name_next): Go back to using plain chdir.
|
||
(name_gather): Use chdir_arg to keep track of arguments to chdir.
|
||
(addname): Likewise.
|
||
(name_match): Use chdir_do to act on chdir args.
|
||
(merge_sort): Moved here from incremen.c.
|
||
(compare_names, add_hierarchy_to_namelist, collect_and_sort_names):
|
||
Likewise.
|
||
(name_expand): Remove.
|
||
(name_from_list): Skip fake names.
|
||
Use chdir_do to act on chdir args.
|
||
(struct avoided_name): New struct.
|
||
(avoided_names): New var.
|
||
(add_avoided_name, is_avoided_name): New functions.
|
||
|
||
* src/system.h (stat, lstat): Define in terms of statx on
|
||
STX_HIDDEN && !_LARGE_FILES /* AIX */ hosts.
|
||
(UCHAR_MAX): New macro.
|
||
(TYPE_MAXIMUM): Cast to arg type, for types narrow than int.
|
||
|
||
* m4/largefile.m4: Work around GCC 2.95.1 bug with HP-UX 10.20.
|
||
|
||
* src/incremen.c (<time.h>): Remove include; no longer used.
|
||
(time): Remove decl.
|
||
(time_now): Remove.
|
||
(get_directory_contents): Use deref_stat.
|
||
Consider a subdirectory to be all new only if
|
||
listed_incremental_option or if it its timestamp is newer than the
|
||
cutoff.
|
||
(add_hierarchy_to_namelist, merge_sort): Move to names.c.
|
||
(read_directory_file): Now extern. Do not set time_now.
|
||
(write_directory_file): Renamed from write_dir_file.
|
||
Use start_time instead of time_now.
|
||
(compare_names, collect_and_sort_names): Move to names.c.
|
||
|
||
* src/mangle.c (<time.h>): Remove; not used.
|
||
(time): Do not declare.
|
||
|
||
* src/misc.c (chdir_from_initial_wd): Remove.
|
||
(deref_stat): New function.
|
||
(struct wd): New struct.
|
||
(wd, wds, wd_alloc): New variables.
|
||
(chdir_arg, chdir_do): New function.
|
||
|
||
* src/compare.c (get_stat_data): Use deref_stat.
|
||
|
||
* src/common.h (name_expand): Remove.
|
||
|
||
* src/list.c (time): Declare if not defined.
|
||
(base_64_digits): Moved here from create.c.
|
||
(base64_map): Use UCHAR_MAX for size, not less-clear (unsigned char)
|
||
-1.
|
||
(read_and): Don't get time from header unless we need it now;
|
||
as getting time can cause duplicate diagnostics if bogus.
|
||
Remove "Hmm, " from diagnostic.
|
||
Use "Skipping to next header" uniformly.
|
||
(from_header): Renamed from from_chars. All uses changed.
|
||
Allow different forms for unportable 2's complement numbers.
|
||
Don't check for extended forms when parsing checksums.
|
||
Parse base-256 output.
|
||
(gid_from_header): Renamed from gid_from_chars. All uses changed.
|
||
(major_from_header): Renamed from major_from_chars. All uses changed.
|
||
(minor_from_header): Renamed from minor_from_chars. All uses changed.
|
||
(mode_from_header): Renamed from mode_from_chars. All uses changed.
|
||
(off_from_header): Renamed from off_from_chars. All uses changed.
|
||
(size_from_header): Renamed from size_from_chars. All uses changed.
|
||
(time_from_header): Renamed from time_from_chars. All uses changed.
|
||
Warn about future timestamps.
|
||
(uid_from_header): Renamed from uid_from_chars. All uses changed.
|
||
(uintmax_from_header): Renamed from uintmax_from_chars.
|
||
All uses changed.
|
||
(tartime): New function, incorporating isotime.
|
||
(isotime): Delete.
|
||
(print_header): Use tartime.
|
||
|
||
* src/create.c (to_chars): Fix typo in decl.
|
||
Don't assign through char const *.
|
||
Rename name_expand back to collect_and_sort_names.
|
||
|
||
* src/extract.c (<time.h>): No need to include.
|
||
(time): No need to declare.
|
||
(now): Remove variable.
|
||
(extr_init): Don't initialize `now'.
|
||
Increment same_permissions_option and same_owner_option if we_are_root
|
||
is nonzero; this supports the new --no-same-owner option.
|
||
(set_stat): Use start_time instead of `now'.
|
||
|
||
* src/create.c (struct link): Remove unused linkcount member.
|
||
(base_64_digits): Move to list.c.
|
||
(base_8_digits): Remove.
|
||
(to_octal): New function, with some of old contents of to_base.
|
||
(to_base): Remove.
|
||
(to_base256): New function.
|
||
(to_chars): Use base 256, not base 64, for huge values.
|
||
(mode_to_chars): Don't use two's complement in GNU format or POSIX
|
||
format.
|
||
(dump_file): Interchange last two arguments. If TOP_LEVEL is negative,
|
||
it means we have an incremental dump where we don't know whether this
|
||
is a top-level call.
|
||
Use deref_stat instead of statx / stat / lstat.
|
||
Cast result of alloca.
|
||
Check for dates if 0 < top_level, not if listed_incremental_option.
|
||
Move multiple-link check after directory check.
|
||
Do not dump avoided names.
|
||
Dump hard links to symbolic names as links, not as separate
|
||
symbolic links.
|
||
start_header cannot return a null pointer, so don't test for it.
|
||
Likewise for find_next_block.
|
||
|
||
* src/buffer.c, src/common.h (<human.h>): Include.
|
||
(read_error): Read error is an error, not just a warning.
|
||
(print_total_written): Also print human-readable byte count, and
|
||
bytes/s.
|
||
(open_archive, flush_write): Use start_time, not current time.
|
||
(flush_read): Report about garbage bytes ignored at end of archive,
|
||
but act on non-garbage bytes (instead of ignoring them).
|
||
(new_volume): Use WARN for warnings.
|
||
|
||
* doc/Makefile.am:
|
||
($(srcdir)/tar.info): Add -I$(srcdir) so that subdir builds work.
|
||
|
||
* Makefile.am (ACINCLUDE_INPUTS): Add $(M4DIR)/fnmatch.m4.
|
||
|
||
* m4/Makefile.am (EXTRA_DIST): Add fnmatch.m4.
|
||
|
||
* lib/Makefile.am (noinst_HEADERS):
|
||
Rename fnmatch.h to fnmatch.hin; add human.h.
|
||
(libtar_a_SOURCES): Add human.c, xstrtoul.c.
|
||
(INCLUDES): Remove -I.. -I$(srcdir) -- automake adds this for us.
|
||
|
||
* src/Makefile.am (rmt_LDADD, tar_LDADD): New macros.
|
||
|
||
* lib/fnmatch.c (strchrnul):
|
||
Define to __strchrnul if _LIBC, to our own replacement otherwise.
|
||
Do not define if !_LIBC and if it already exists.
|
||
(internal_fnmatch): Use it.
|
||
|
||
* configure.in (tar_LDADD): New variable, used only when linking tar.
|
||
(rmt_LDADD): Similarly, for rmt.
|
||
(AC_FUNC_FNMATCH): Link fnnmatch.hin to fnmatch.h if we're using our
|
||
fnmatch.c; otherwise, use the system fnmatch.h.
|
||
|
||
* doc/tar.texi: Add --no-same-owner, --no-same-permissions.
|
||
Modernize sample backup script.
|
||
|
||
* THANKS: Martin Goik's email address has changed.
|
||
|
||
* m4/fnmatch.m4: New file.
|
||
|
||
1999-09-03 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* lib/lchown.h (ENOSYS): Don't use ENOMSG; it's not in NeXTStep3.3.
|
||
Use EINVAL instead.
|
||
|
||
1999-08-29 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* lib/getdate.y (get_date):
|
||
Rename outermost local `probe' to `quarter'.
|
||
Rename latter local `tm' to probe_tm.
|
||
From: Jim Meyering <meyering@ascend.com>
|
||
Message-ID: <uryn1vafyyc.fsf@ixi.eng.ascend.com>
|
||
|
||
1999-08-28 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* lib/getdate.y (PC): New macro; use it when possible.
|
||
(number): Handle `Nov 11 1996' example correctly.
|
||
See Risks Digest 20.55 (1999-08-27)
|
||
http://catless.ncl.ac.uk/Risks/20.55.html#subj18
|
||
|
||
1999-08-23 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13.11.
|
||
|
||
Remove minor cases of lint from many source files: this includes
|
||
unnecessary casts, uses of NULL, etc.
|
||
|
||
* configure.in (AC_PROG_YACC): Remove.
|
||
(YACC): Always use bison.
|
||
(AC_STRUCT_TIMEZONE): Add.
|
||
(AC_REPLACE_FUNCS): Add strcasecmp, strncasecmp.
|
||
|
||
* doc/tar.texi: --bzip2 is now -I. Remove obsolete time zone info.
|
||
Fix spelling.
|
||
|
||
* lib/Makefile.am (EXTRA_DIST): Add strcasecmp.c, strncasecmp.c.
|
||
($(srcdir)/getdate.c): Rename y.tab.c to getdate.c only if successful.
|
||
|
||
* lib/strcasecmp.c, lib/strncasecmp.c: New files.
|
||
|
||
* src/common.h (merge_sort): Remove decl; no longer exported.
|
||
|
||
* src/system.h (voidstar): Remove.
|
||
(memcpy, memcmp): Cast args.
|
||
("xalloc.h"): Add include.
|
||
(xmalloc, xrealloc): Remove decl.
|
||
|
||
* src/mangle.c (time): Do not declare if defined.
|
||
(first_mangle, mangled_num): Remove.
|
||
|
||
* src/list.c (from_chars): Report out-of-range values more precisely.
|
||
(off_from_chars): Do not allow negative offsets.
|
||
(uid_from_chars): Allow negative uids.
|
||
|
||
* src/create.c (linklist): Now static.
|
||
(to_chars): Fix wording of message to match from_chars.
|
||
|
||
* src/misc.c (merge_sort): Move to incremen.c.
|
||
* src/incremen.c (merge_sort): Move here from misc.c; now static.
|
||
It's too painful to make it both generic and portable.
|
||
(read_directory_file): "timestamp" -> "time stamp" in messages.
|
||
|
||
* src/tar.c (long_options, usage, main): -y is now -I (for --bzip).
|
||
(usage): Fix misspelling.
|
||
(OPTION_STRING): -y is now -I.
|
||
(decode_options): Use -1, not EOF, for getopt_long result.
|
||
Fix typo when invoking xstrtoumax: look for LONGINT_OK, not LONG_MAX.
|
||
Handle operands after any "--" argument.
|
||
(main): Report any output errors.
|
||
|
||
* src/rmt.c (main): status is ssize_t, not long.
|
||
|
||
* src/names.c (name_gather): Handle trailing -C option correctly.
|
||
(addname): use memcpy, not strncpy, to copy a string of known length.
|
||
(name_match): Handle trailing -C option correctly.
|
||
Propagate -C option to following files.
|
||
(name_match, name_scan): Remove redundant matching code.
|
||
|
||
* src/buffer.c (open_archive): Use American spelling in diagnostic.
|
||
|
||
* lib/getdate.y: Major rewrite. Add copyright notice.
|
||
(<stdio.h>): Include only if testing.
|
||
(ISUPPER): Remove.
|
||
(ISLOWER): New macro.
|
||
(<string.h>): Include if HAVE_STRING_H, not USG.
|
||
(bcopy): Remove.
|
||
(yymaxdepth, ..., yycheck): Don't bother to redefine, since we assume
|
||
bison.
|
||
(EPOCH_YEAR): Renamed from EPOCH.
|
||
(table): Renamed from TABLE.
|
||
(meridian): Now an anonymous enum.
|
||
(struct parser_control): New type.
|
||
(YYLEX_PARAM, YYPARSE_PARAM, YYSTYPE): New macros.
|
||
(yyInput, ..., yyRelYear): Migrated into struct parser_control.
|
||
(%pure_parser): Added, so that the parser is pure.
|
||
(%union): Removed; the type is now just plain int.
|
||
All %type directives removed.
|
||
(tLOCAL_ZONE): New %token.
|
||
(month_day_table): Renamed from MonthDayTable.
|
||
(gmtime, localtime, mktime, time): Declare only if not defined.
|
||
(meridian_table): New table.
|
||
(dst_table): New table.
|
||
(units_table): renamed from UnitsTable.
|
||
(relative_time_table): Renamed from OtherTable.
|
||
(time_zone_table): Renamed from TimezoneTable. Modernized.
|
||
(military_table): Renamed from MilitaryTable.
|
||
(to_hour): Renamed from ToHour.
|
||
(to_year): Renamed from ToYear.
|
||
(lookup_zone): New function.
|
||
(LookupWord): Renamed from lookup_word. Use lookup_zone for time
|
||
zones.
|
||
(yylex): Now reentrant. All callers changed.
|
||
(get_date): Add support for local time zone abbreviations.
|
||
Make it reentrant.
|
||
|
||
1999-08-20 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13.10.
|
||
|
||
* src/create.c (to_chars): Generate GNU base-64 representation
|
||
if we are generating an old or new GNU format tar file for a
|
||
number that can't be represented with the POSIX format.
|
||
|
||
* configure.in (AC_CHECK_FUNCS): Add fchdir.
|
||
(AM_FUNC_GETLINE): Add.
|
||
(LIBOBJS): Add getline.o to workaround comment.
|
||
* Makefile.am (ACINCLUDE_INPUTS): Add $(M4DIR)/getline.m4.
|
||
* m4/Makefile.am (EXTRA_DIST): Add getline.m4.
|
||
* lib/Makefile.am (noinst_HEADERS): Add getline.h, save-cwd.h.
|
||
(libtar_a_SOURCES): Add save-cwd.c, xgetcwd.c.
|
||
* lib/getline.c, lib/getline.h, lib/save-cwd.c,
|
||
lib/save-cwd.h, m4/getline.m4: New files.
|
||
|
||
* src/misc.c (<save-cwd.h>): Include.
|
||
(chdir_from_initial_wd): New function.
|
||
|
||
* src/names.c (name_next): Use chdir_from_initial_wd, not chdir.
|
||
(name_gather): Handle `-C x -C y' correctly.
|
||
Do not rely on addname to handle -C.
|
||
(addname): New CHANGE_DIR parameter. All callers changed.
|
||
Remove ugly calls to getcwd; no longer needed.
|
||
(name_match, name_from_list): Use chdir_from_initial_wd, not chdir.
|
||
|
||
* src/incremen.c (listed_incremental_stream): New var.
|
||
(read_directory_file): Remove arbitrary limits on file name length.
|
||
Do not attempt to get the working directory; we can bypass this
|
||
on fchdir hosts. Open the listed_incremental_option file for both
|
||
read and write instead of opening it twice. Check for I/O errors
|
||
when doing I/O to this file. Check for invalid data in the file,
|
||
and report line numbers of invalid data.
|
||
(write_dir_file): Likewise.
|
||
(collect_and_sort_names): Use chdir_from_initial_wd, not chdir.
|
||
Do not invoke write_dir_file; that's our caller's responsibility.
|
||
|
||
* src/list.c (max): New macro.
|
||
(isotime): Now takes time_t, not time_t *. Report the decimal values
|
||
of times that can't be broken down.
|
||
(print_header): Don't assume that major and minor device numbers can
|
||
fit into uintmax_t.
|
||
|
||
* src/common.h (struct name): change_dir is now char const *.
|
||
(write_directory_file): Remove unused decl.
|
||
(STRINGIFY_BIGINT): Assume b always points to UINTMAX_STRSIZE_BOUND
|
||
chars; the old `sizeof (b)' broke when b was a pointer not an array.
|
||
(chdir_from_initial_wd): New decl.
|
||
(addname): New 2nd arg.
|
||
|
||
* THANKS: Torsten Lull -> Catrin Urbanneck
|
||
|
||
1999-08-18 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* configure.in (HAVE_GETHOSTENT, HAVE_SETSOCKOPT):
|
||
Don't depend on ac_cv_func variables.
|
||
From Albert Chin-A-Young <china@thewrittenword.com>.
|
||
|
||
1999-08-18 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13.9
|
||
|
||
* m4/signedchar.m4: New file.
|
||
* configure.in (pe_AC_TYPE_SIGNED_CHAR): Add.
|
||
* src/system.h (signed_char): New macro.
|
||
* Makefile.am (ACINCLUDE_INPUTS): Add $(M4DIR)/signedchar.m4.
|
||
* m4/Makefile.am (EXTRA_DIST): Add signedchar.m4.
|
||
|
||
* src/create.c (write_eot): Write at least two zero blocks.
|
||
|
||
* src/extract.c (extract_archive): Fix sparse array bug:
|
||
we did not find end of array correctly.
|
||
|
||
* src/compare.c: (fill_in_sparse_array, diff_sparse_files):
|
||
Don't assume find_next_block yields nonnull.
|
||
* src/extract.c (extract_sparse_file, extract_archive): Likewise.
|
||
* src/list.c (skip_extended_headers): Likewise.
|
||
|
||
* src/list.c (read_and, list_archive): Simplify code.
|
||
(read_header): Fix computation of signed checksums on machines where
|
||
char is unsigned.
|
||
Do not consider a block to be zero unless all its bytes are zero,
|
||
even the checksum bytes. Do not attempt to parse the checksum of
|
||
a zero block. Fix memory leak with long names and links.
|
||
(from_chars): Accommodate a buggy tar that outputs leading NUL
|
||
if the previous field overflows.
|
||
|
||
* src/misc.c (quote_copy_string): Generate \177 for '\177', not
|
||
\?, for portability to non-ASCII hosts.
|
||
|
||
1999-08-16 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* configure.in (AM_INIT_AUTOMAKE), NEWS: Version 1.13.8.
|
||
|
||
* src/extract.c (make_directories): Do not chown intermediate
|
||
directories, even if we are root.
|
||
|
||
* src/list.c (read_header): Fix bugs when interpreting
|
||
POSIX-compliant headers that do not contain null bytes in the
|
||
header or link names.
|
||
|
||
1999-08-14 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* configure.in (AM_INIT_AUTOMAKE), NEWS: Version 1.13.7.
|
||
|
||
* configure.in (AC_CHECK_HEADERS): Remove sys/wait.h.
|
||
(AC_HEADER_SYS_WAIT): Add.
|
||
(AC_REPLACE_FUNCS): Add waitpid.
|
||
(tar_cv_header_union_wait, HAVE_UNION_WAIT): Remove.
|
||
* lib/waitpid.c: New file.
|
||
* lib/Makefile.am (EXTRA_DIST): Add waitpid.c.
|
||
* src/system.h (WCOREDUMP): Remove; no longer used.
|
||
(WIFSTOPPED): Likewise.
|
||
(WEXITSTATUS, WIFSIGNALED): Default to Solaris 7 versions.
|
||
* src/buffer.c (child_open_for_compress): Undo previous change.
|
||
(close_archive): Use waitpid, POSIX-style, instead of old BSD style.
|
||
(new_volume): Likewise.
|
||
|
||
* src/buffer.c, src/extract.c, src/incremen.c (time):
|
||
Don't declare if defined.
|
||
* src/extract.c (extr_init): Remove unneeded cast around 0 arg to time.
|
||
* src/incremen.c (read_directory_file):
|
||
Invoke `time' the same way everyone else does.
|
||
Check validity of --listed-incremental file contents a bit better.
|
||
Do not worry about --after-date-option; tar.c now checks this.
|
||
* src/list.c (isotime): Report ??? if localtime returns null.
|
||
Don't assume years fit into four digits.
|
||
Don't append trailing newline.
|
||
(print_header): Report ??? if localtime returns null;
|
||
Don't assume years fit into four digits.
|
||
|
||
* src/compare.c (diff_archive): Do not fall back on absolute name
|
||
when --absolute-names is not specified.
|
||
|
||
* src/create.c (start_header):
|
||
Include text of ignored filesystem prefix in warning.
|
||
(create_archive): Check for excluded names when doing incremental
|
||
pass through directory.
|
||
(dump_file): Do not dump old files explicitly given on command line
|
||
when using --listed-incremental. Do not strip ./ prefix from names.
|
||
|
||
* src/tar.c: -g now implies after_date_option = 1.
|
||
-g and -N are now incompatible options.
|
||
|
||
* doc/tar.texi: Explain --exclude better. Don't strip leading `./'.
|
||
|
||
1999-08-11 Jeff Dairiki <dairiki@dairiki.org>
|
||
|
||
* src/list.c (read_header): Don't parse OLDGNU_FORMAT
|
||
incremental headers as POSIX prefixes.
|
||
|
||
1999-08-11 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* NEWS, configure.in: Version 1.13.6.
|
||
|
||
* configure.in (ALL_LINGUAS): Add pt_BR.
|
||
* po/pt_BR.po: New file.
|
||
|
||
* doc/Makefile.am ($(srcdir)/tar.info, $(srcdir)/header.texi):
|
||
Renamed from tar.info and header.texi; adjust actions so that
|
||
they work in other directories.
|
||
|
||
* doc/tar.texi: Add -y and --bzip2.
|
||
Patterns containing / now exclude only file names whose prefix match.
|
||
|
||
* lib/exclude.h (excluded_filename): New option parameter.
|
||
(add_exclude_file): New ADD_FUNC parameter.
|
||
(excluded_pathname): Remove decl.
|
||
* lib/exclude.c (_GNU_SOURCE):
|
||
Remove; no longer needed since we don't use FNM_ macros.
|
||
(excluded_filename): Renamed from excluded_filename_opts.
|
||
(excluded_filename, excluded_pathname): Remove.
|
||
(add_exclude_file): New ADD_FUNC parameter.
|
||
|
||
* po/POTFILES.in: Add lib/quotearg.c.
|
||
|
||
* src/buffer.c (_GNU_SOURCE): Define.
|
||
(<fnmatch.h>): Include unconditionally.
|
||
(child_open_for_compress): Dup after closing, to avoid possible file
|
||
descriptor exhaustion.
|
||
(flush_write): Use FILESYSTEM_PREFIX_LEN instead of MSDOS ifdef.
|
||
(flush_read): Likewise.
|
||
|
||
* src/common.h (LG_8, LG_64): New macros.
|
||
(excluded_with_slash, excluded_without_slash): New vars.
|
||
(excluded): Remove.
|
||
(base_64_digits): New decl.
|
||
(gid_to_chars, major_to_chars, minor_to_chars, mode_to_chars,
|
||
off_to_chars, size_to_chars, time_to_chars, uid_to_chars,
|
||
uintmax_to_chars,
|
||
GID_TO_CHARS, MAJOR_TO_CHARS, MINOR_TO_CHARS, MODE_TO_CHARS,
|
||
OFF_TO_CHARS, SIZE_TO_CHARS, TIME_TO_CHARS, UID_TO_CHARS,
|
||
UINTMAX_TO_CHARS):
|
||
Renamed from gid_to_oct, major_to_oct, minor_to_oct, mode_to_oct,
|
||
off_to_oct, size_to_oct, time_to_oct, uid_to_oct, uintmax_to_oct,
|
||
GID_TO_OCT, MAJOR_TO_OCT, MINOR_TO_OCT, MODE_TO_OCT, OFF_TO_OCT,
|
||
SIZE_TO_OCT, TIME_TO_OCT, UID_TO_OCT, UINTMAX_TO_OCT,
|
||
respectively. All definitions and uses changed.
|
||
(excluded_name): New decl.
|
||
|
||
* src/compare.c (diff_archive):
|
||
Open files with O_NONBLOCK instead of O_NDELAY.
|
||
|
||
* src/create.c (base_64_digits): New constant.
|
||
(base_8_digits): New macro.
|
||
(MAX_VAL_WITH_DIGITS): New macro.
|
||
(to_base): First half of old to_oct. Support base 64 too.
|
||
(to_chars): Other half of old to_oct, for 64-bit support.
|
||
(GID_NOBODY, UID_NOBODY): Don't define if the headers don't.
|
||
(gid_substitute, uid_substitute): Look up names dynamically if
|
||
GID_NOBODY and UID_NOBODY aren't defined; use -2 if all else fails.
|
||
(mode_to_chars): Renamed from mode_to_oct.
|
||
Support negative values in all the _to_chars functions.
|
||
(start_header): Use FILESYSTEM_PREFIX_LEN instead of MSDOS ifdef.
|
||
Abort if archive format is DEFAULT_FORMAT when it shouldn't be.
|
||
(dump_file): Inspect entire pathname, not just new file name
|
||
component, when deciding whether to exclude it.
|
||
|
||
* src/extract.c (extract_archive):
|
||
Open files with O_NONBLOCK instead of O_NDELAY.
|
||
|
||
* src/incremen.c (get_directory_contents):
|
||
Inspect entire pathname, not just new file name
|
||
component, when deciding whether to exclude it.
|
||
|
||
* src/list.c (<fnmatch.h>): Do not include.
|
||
(from_chars): Renamed from from_oct. New parameter specifying
|
||
the negative of the minimum allowed value. Support negative
|
||
and base-64 values.
|
||
(base64_map): New var.
|
||
(base64_init): New function.
|
||
(print_header): Output numeric uids and gids if numeric_owner_option.
|
||
|
||
* src/misc.c (quote_copy_string): Use LG_8 instead of constants.
|
||
|
||
* src/names.c (_GNU_SOURCE): Define.
|
||
(<fnmatch.h>): Include unconditionally.
|
||
(excluded_name): New function, taking over duties of excluded_pathname.
|
||
All uses changed.
|
||
|
||
* src/rmt.c (decode_oflag): New function.
|
||
(main): Use it to support symbolic open flags.
|
||
|
||
* src/rtapelib.c (encode_oflag): New function.
|
||
(rmt_open__): Do not allow newlines in the path.
|
||
Propagate errno correctly.
|
||
Decode symbolic open flags, if present.
|
||
|
||
* src/system.h (FILESYSTEM_PREFIX_LEN, ISSLASH, O_ACCMODE, O_NONBLOCK):
|
||
New macros.
|
||
|
||
* src/tar.c: (long_options, usage, OPTION_STRING, decode_options):
|
||
New -y or --bzip2 option.
|
||
(add_filtered_exclude): New function.
|
||
(decode_options): Put excluded patterns with / into
|
||
excluded_with_slash, and without / into excluded_without_slash.
|
||
Compare newer_mtime_option to its new initial value
|
||
TYPE_MINIMUM (time_t) when deciding whether more than one
|
||
threshold date was specified.
|
||
|
||
1999-07-20 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* NEWS, configure.in: Version 1.13.5.
|
||
|
||
* src/common.h (FATAL_ERROR): Invoke apply_delayed_set_stat
|
||
before exiting.
|
||
* src/buffer.c (new_volume): Likewise.
|
||
* src/incremen.c (read_directory_file): Likewise.
|
||
* src/tar.c (decode_options):
|
||
ERROR ((TAREXIT_FAILURE, ... -> FATAL_ERROR ((0,
|
||
for consistency.
|
||
|
||
* NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13.4.
|
||
* configure.in (AC_CHECK_FUNCS): Add lstat, readlink, symlink.
|
||
|
||
* src/system.h (lstat): Define only if !HAVE_LSTAT && !defined lstat.
|
||
(S_ISMPB, S_ISMPC, S_ISNWK): Remove unused macros.
|
||
(S_ISBLK, S_ISCHR, S_ISCTG, S_ISFIFO, S_ISLNK, S_ISSOCK):
|
||
Define to 0 if the corresponding S_IF* macro is not defined.
|
||
(mkfifo): Do not define if already defined, or if S_IFIFO
|
||
is not defined.
|
||
|
||
* src/compare.c (diff_archive): Use HAVE_READLINK, not
|
||
S_ISLNK, to determine whether to invoke readlink.
|
||
* src/create.c (dump_file): Likewise.
|
||
|
||
* src/extract.c (set_mode):
|
||
Do not chmod unless we are root or the -p option was given;
|
||
this matches historical practice.
|
||
(unlink_destination): New function, which checks for unlink failures.
|
||
(maybe_recoverable): Stay quiet if -U.
|
||
(extract_archive): Use O_EXCL if unlink_first_option.
|
||
Report unlink failures.
|
||
Use HAVE_SYMLINK, not S_ISLNK, to determine whether symlink exists.
|
||
Use HAVE_MKFIFO || defined mkfifo, not S_ISFIFO, to determine whether
|
||
mkfifo exists.
|
||
|
||
* src/incremen.c (get_directory_contents): Depend on
|
||
S_ISHIDDEN, not AIX, to determine whether to invoke S_ISHIDDEN.
|
||
|
||
* src/list.c: Remove S_IS* ifdefs.
|
||
* src/misc.c (maybe_backup_file): Likewise.
|
||
|
||
* src/misc.c (maybe_backup_file):
|
||
"Virtual memory exhausted" -> "Memory exhausted",
|
||
to conform to the other places this message is issued.
|
||
|
||
* src/mangle.c (extract_mangle):
|
||
Replace #ifdef S_ISLNK with #ifdef HAVE_SYMLINK.
|
||
|
||
* src/rtapelib.c (rmt_open__):
|
||
Remove typo that caused us to omit the first char
|
||
of the basename.
|
||
|
||
1999-07-16 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* NEWS, configure.in (AM_INIT_AUTOMAKE): version 1.13.3.
|
||
|
||
* doc/tar.texi: A path name is excluded if any of its file name
|
||
components matches an excluded pattern, even if the path name was
|
||
specified on the command line.
|
||
* src/create.c (create_archive): Likewise.
|
||
* src/list.c (read_and): Likewise.
|
||
* src/update.c (update_archive): Likewise.
|
||
* lib/exclude.h (excluded_pathname): New decl.
|
||
* lib/exclude.c (_GNU_SOURCE): Define.
|
||
(FILESYSTEM_PREFIX_LEN, ISSLASH): New macros.
|
||
(excluded_filename_opts): New function.
|
||
(excluded_pathname): New function.
|
||
|
||
* lib/Makefile.am (EXTRA_DIST):
|
||
xstrtol.c moved here from libtar_a_SOURCES.
|
||
(libtar_a_SOURCES): Move xstrtol.c to EXTRA_DIST.
|
||
Remove xstrtoul.c; no longer needed.
|
||
* lib/xstrtol.c: Remove.
|
||
|
||
* src/tar.c (decode_options):
|
||
Set newer_time_option to TYPE_MINIMUM, so that
|
||
negative timestamps are handled correctly.
|
||
Replace invocations of xstrtol and xstrtoul with xstrtoumax, for
|
||
uniformity (and so that we don't need to have the other fns).
|
||
(main): Remove call to init_total_written; no longer needed.
|
||
|
||
* configure.in (AC_CHECK_SIZEOF): Remove no-longer-needed
|
||
checks for unsigned long and long long.
|
||
* src/arith.c: Remove.
|
||
* src/Makefile.am (tar_SOURCES): Remove arith.c.
|
||
* po/POTFILES.in: Remove src/arith.c.
|
||
* src/arith.h: Use double, to simplify configuration gotchas.
|
||
(tarlong): Now double.
|
||
(TARLONG_FORMAT): New macro.
|
||
(BITS_PER_BYTE, BITS_PER_TARLONG, SUPERDIGIT, BITS_PER_SUPERDIGIT,
|
||
LONGS_PER_TARLONG, SIZEOF_TARLONG, struct tarlong,
|
||
zerop_tarlong_helper, lessp_tarlong_helper, clear_tarlong_helper,
|
||
add_to_tarlong_helper, mult_tarlong_helper, print_tarlong_helper,
|
||
zerop_tarlong, lessp_tarlong, clear_tarlong, add_to_tarlong,
|
||
mult_tarlong, print_tarlong): Remove. All callers replaced with
|
||
arithmetic ops.
|
||
|
||
* src/common.h (init_total_written): Remove decl.
|
||
|
||
* src/buffer.c (total_written):
|
||
Remove; replaced with prev_written + bytes_written.
|
||
(prev_written): New var.
|
||
(init_total_written): Remove.
|
||
(print_total_written): Use TARLONG_FORMAT instead of print_tarlong.
|
||
|
||
* m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG):
|
||
Make sure that we can shift, multiply
|
||
and divide unsigned long long values; Ultrix cc can't do it.
|
||
|
||
* lib/modechange.c (mode_compile): Use uintmax_t, not unsigned long.
|
||
Check for any unknown bits, not just unknown bits left of the leftmost
|
||
known bit.
|
||
|
||
* lib/quotearg.c (quotearg_buffer):
|
||
Don't quote spaces if C quoting style.
|
||
* src/list.c (from_oct):
|
||
Use C quoting style for error; omit trailing NULs.
|
||
|
||
1999-07-14 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* configure.in (AM_INIT_AUTOMAKE), NEWS: Version 1.13.2.
|
||
|
||
* m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
|
||
<inttypes.h> defines strtoumax as a macro (and not as a function).
|
||
HP-UX 10.20 does this.
|
||
|
||
* src/tar.c (usage): tar-bugs@gnu.org -> bug-tar@gnu.org
|
||
* PORTS, README, TODO, doc/tar.texi: Likewise.
|
||
|
||
1999-07-12 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* configure.in (AM_INIT_AUTOMAKE): Version 1.13.1.
|
||
(LIBOBJS): Add mktime.o to automake 1.4 bug workaround.
|
||
|
||
* src/list.c (decode_header):
|
||
Do not assume that S_IFBLK and S_IFCHR are defined.
|
||
|
||
* src/create.c (start_header): Do not assume S_IFMT is defined.
|
||
(dump_file): Remove unnecessary check for screwy apollo lossage.
|
||
Do not assume S_IFBLK and S_IFCHR are defined.
|
||
|
||
* src/extract.c (extract_archive):
|
||
Test whether S_IFCHR and S_IFBLK are nonzero,
|
||
not whether they are defined, for consistency with other tests.
|
||
|
||
* src/buffer.c (is_regular_file):
|
||
Don't succeed on files that we can't access due to
|
||
permissions problems.
|
||
(open_archive): Fix wording on fatal error message.
|
||
Don't bother to stat /dev/null if the archive is not a character
|
||
special device.
|
||
|
||
* src/compare.c (process_rawdata, diff_sparse_files, diff_archive):
|
||
Report an error, not a warning, for I/O errors.
|
||
(process_rawdata, process_dumpdir, diff_sparse_files):
|
||
Change ungrammatical "Data differs" to "Contents differ".
|
||
(get_stat_data): Find hidden files on AIX.
|
||
Accept file name as argument; all uses changed.
|
||
(get_stat_data, diff_archive): Use system error message for
|
||
nonexistent files rather than rolling our own.
|
||
(diff_archive): Unknown file types are errors, not warnings.
|
||
Normalize spelling of message to "File type differs".
|
||
Use get_stat_data to get link status, for consistency.
|
||
Do not inspect st_rdev for fifos.
|
||
Do not assume st_mode values contain only file types and mode bits.
|
||
Check for mode changes and device number changes separately.
|
||
|
||
* src/update.c (append_file):
|
||
Open the file before statting it, to avoid a race.
|
||
Complain about file shrinkage only when we reach EOF.
|
||
|
||
1999-07-08 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13 released.
|
||
|
||
* configure.in (AC_EXEEXT): Add.
|
||
|
||
* lib/Makefile.am (noinst_HEADERS):
|
||
Add basename.h, exclude.h. Remove full-write.h.
|
||
(libtar_a_SOURCES): Add exclude.c.
|
||
|
||
* lib/basename.h, lib/exclude.c, lib/exclude.h, lib/safe-read.h:
|
||
New files.
|
||
* lib/full-write.c: Include safe-read.h instead of full-write.h.
|
||
* lib/safe-read.h (safe_read): New decl.
|
||
* src/rmt.c: Include safe-read.h.
|
||
* src/rtapelib.c: Include basename.h, save-read.h.
|
||
(rmt_open__): Use base_name to compute base name.
|
||
|
||
* src/common.h:
|
||
Include basename.h, exclude.h; don't include full-write.h.
|
||
(exclude_option): Remove decl.
|
||
(excluded): New decl.
|
||
(add_exclude, add_exclude_file, check_exclude): Remove decls.
|
||
|
||
* src/list.c (read_and):
|
||
Use excluded_filename instead of check_exclude.
|
||
Check base name of incoming file name, not entire file name, when
|
||
deciding whether to exclude it.
|
||
|
||
* src/create.c (finish_sparse_file):
|
||
Use excluded_filename instead of check_exclude.
|
||
Don't bother to stat excluded file names.
|
||
* src/incremen.c (get_directory_contents): Likewise.
|
||
|
||
* src/names.c (exclude_pool, exclude_pool_size,
|
||
allocated_exclude_pool_size, simple_exclude_array,
|
||
simple_excludes, allocated_simple_excludes,
|
||
pattern_exclude_array, pattern_excludes,
|
||
allocated_pattern_excludes, add_exclude, add_exclude_file,
|
||
check_exclude):
|
||
Remove; now done in ../lib/exclude.c.
|
||
|
||
* src/tar.c (decode_options): Initialize `excluded'.
|
||
Use new add_exclude_file and add_exclude functions.
|
||
|
||
1999-07-05 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* m4/gettext.m4: Use changequote rather than [[ ]].
|
||
|
||
* lib/safe-read.c: Renamed from lib/full-read.c.
|
||
(safe_read): Renamed from full_read. All uses changed.
|
||
* lib/safe-read.h, lib/full-write.h: New files.
|
||
* lib/Makefile.am (noinst_HEADERS): Add full-write.h, safe-read.h.
|
||
(libtar_a_SOURCES): Rename full-read.c to safe-read.c.
|
||
* lib/full-write.c: Include full-write.h.
|
||
* src/common.h: Include full-write.h, safe-read.h.
|
||
* src/system.h: (full_read, full_write): Remove decls.
|
||
|
||
* src/Makefile.am (datadir): New var; needed for Solaris gettext.
|
||
|
||
* src/system.h (bindtextdomain, textdomain): undef before
|
||
defining, to avoid preprocessor warnings with --disable-nls
|
||
on hosts whose locale.h includes libintl.h.
|
||
|
||
* lib/xstrtol.c (__strtol): Remove decl; it doesn't work if __strtol
|
||
expands to a macro, which occurs in HP-UX 10.20 with strtoumax.
|
||
(strtol, strtoul): New decls (for pre-ANSI hosts), to replace
|
||
the above decl.
|
||
|
||
1999-07-02 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* Makefile.am (ACINCLUDE_INPUTS): Add $(M4DIR)/mktime.m4.
|
||
* m4/mktime.m4: New file.
|
||
* m4/Makefile.am.in, m4/README: Remove these files.
|
||
* m4/Makefile.am (EXTRA_DIST): Add mktime.m4;
|
||
remove README, Makefile.am.in.
|
||
(Makefile.am): Remove rule; it didn't work in BSD/OS 4.0.
|
||
* m4/jm-mktime.m4 (jm_FUNC_MKTIME): Invoke AC_FUNC_MKTIME,
|
||
not AM_FUNC_MKTIME.
|
||
|
||
* src/tar.c: Include signal.h.
|
||
(SIGCHLD): Define to SIGCLD if SIGCLD is defined but SIGCHLD is not.
|
||
(main): Ensure SIGCHLD is not ignored.
|
||
|
||
(BACKUP_OPTION, DELETE_OPTION, EXCLUDE_OPTION, GROUP_OPTION,
|
||
MODE_OPTION, NEWER_MTIME_OPTION, NO_RECURSE_OPTION, NULL_OPTION,
|
||
OWNER_OPTION, POSIX_OPTION, PRESERVE_OPTION, RECORD_SIZE_OPTION,
|
||
RSH_COMMAND_OPTION, SUFFIX_OPTION, USE_COMPRESS_PROGRAM_OPTION,
|
||
VOLNO_FILE_OPTION, OBSOLETE_ABSOLUTE_NAMES,
|
||
OBSOLETE_BLOCK_COMPRESS, OBSOLETE_BLOCKING_FACTOR,
|
||
OBSOLETE_BLOCK_NUMBER, OBSOLETE_READ_FULL_RECORDS, OBSOLETE_TOUCH,
|
||
OBSOLETE_VERSION_CONTROL): Make sure they can't be valid chars, so
|
||
they don't overlap with char codes. Use an enum instead of a lot
|
||
of #defines.
|
||
|
||
* src/system.h (ISASCII): Remove.
|
||
(CTYPE_DOMAIN, ISDIGIT, ISODIGIT, ISPRINT, ISSPACE, S_ISUID,
|
||
S_ISGID, S_IRUSR, S_IWUSR, S_IXUSR, S_IRGRP, S_IWGRP, S_IXGRP,
|
||
S_IROTH, S_IWOTH, S_IXOTH, MODE_WXUSR, MODE_R, MODE_RW,
|
||
MODE_RWX, MODE_ALL, SEEK_SET, SEEK_CUR, SEEK_END, CHAR_MAX,
|
||
LONG_MAX): New macros.
|
||
|
||
* src/incremen.c (ISDIGIT, ISSPACE): Remove; now in system.h.
|
||
(read_directory_file): Cast ISSPACE arg to unsigned char.
|
||
* src/misc.c (ISPRINT): Remove; now in system.h.
|
||
(remove_any_file): Add brackets to pacify gcc -Wall.
|
||
* src/list.c: Don't include <ctype.h>; system.h already does this.
|
||
(ISODIGIT, ISSPACE): Remove; now in system.h.
|
||
(decode_header): No need to AND mode with 07777; MODE_FROM_OCT
|
||
does this now.
|
||
(from_oct): Cast ISSPACE arg to unsigned char.
|
||
|
||
* src/create.c (mode_to_oct): Translate modes from internal to
|
||
external form.
|
||
* src/list.c (mode_from_oct): Translate modes from external to
|
||
internal form. Do not complain about unrecognized mode bits.
|
||
* src/common.h (TSUID, TSGID, TSVTX, TUREAD, TUWRITE, TUEXEC,
|
||
TGREAD, TGWRITE, TGEXEC, TOREAD, TOWRITE, TOEXEC): Remove undefs.
|
||
|
||
* src/extract.c: (extr_init, make_directories, extract_archive):
|
||
Do not assume mode bits have traditional Unix values.
|
||
* src/list.c (decode_mode): Likewise.
|
||
* src/create.c (start_header, dump_file): Likewise.
|
||
* src/buffer.c (child_open_for_compress,
|
||
child_open_for_uncompress, open_archive, (close_archive): Likewise.
|
||
* src/compare.c (diff_archive): Likewise.
|
||
|
||
* src/extract.c (set_mode): Use %04 not %0.4 format.
|
||
(extract_sparse_file): Do not use data_block uninitialized.
|
||
Check for lseek failures.
|
||
|
||
* src/rtapelib.c (rmt_lseek__):
|
||
Convert lseek whence values to portable integers on the wire.
|
||
* src/rmt.c (main): Likewise. Check for whence values out of range.
|
||
|
||
* src/create.c (finish_sparse_file): Use lseek whence macros
|
||
instead of integers.
|
||
* src/buffer.c (backspace_output): Likewise.
|
||
* src/compare.c (diff_archive, verify_volume): Likewise.
|
||
* src/delete.c (move_archive): Likewise.
|
||
* src/extract.c (extract_sparse_file): Likewise.
|
||
|
||
* src/create.c (dump_file): Do not invoke finish_sparse_file
|
||
on a negative file descriptor.
|
||
|
||
* src/buffer.c: Add braces to pacify gcc -Wall.
|
||
|
||
* src/compare.c (diff_sparse_files): Report lseek errors.
|
||
|
||
* configure.in (ALL_LINGUAS): Add cs, es, ru.
|
||
|
||
* PORTS, TODO: gnu.ai.mit.edu -> gnu.org
|
||
|
||
* src/arith.c, src/buffer.c (new_volume): Don't put ^G in
|
||
message to be internationalized; \a doesn't work with msgfmt.
|
||
|
||
* src/tar.c (long_options, main, usage, OPTION_STRING):
|
||
Remove -E or --ending-file.
|
||
* src/list.c (read_and): Likewise.
|
||
* src/common.h (ending_file_option): Likewise.
|
||
* src/buffer.c (close_archive): Likewise.
|
||
|
||
* tests/after: Don't run two commands together in a pipeline,
|
||
as some old shells mishandle pipeline exit status.
|
||
|
||
1999-06-28 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* configure.in (AM_INIT_AUTOMAKE): version 1.12.64015.
|
||
* NEWS: Describe changes since 1.12.
|
||
* README: Update bug reporting address; move paxutils ref to NEWS.
|
||
|
||
Handle EINTR correctly.
|
||
* lib/Makefile.am (libtar_a_SOURCES): Add full-read.c, full-write.c.
|
||
* lib/full-read.c, lib/full-write.c: New files.
|
||
* src/buffer.c (child_open_for_compress, child_open_for_uncompress):
|
||
Prefer full_read to read and full_write to write.
|
||
* src/compare.c (process_rawdata, diff_sparse_files): Likewise.
|
||
* src/create.c (deal_with_sparse, finish_sparse_file, dump_file):
|
||
Likewise.
|
||
* src/extract.c (extract_sparse_file): Likewise.
|
||
* src/rmt.c (get_string, main, report_error_message,
|
||
report_numbered_error): Likewise.
|
||
* src/rmt.h (rmtread, rmtwrite): Likewise.
|
||
* src/rtapelib.c (do_command, get_status_string, rmt_read__,
|
||
rmt_write__, rmt_ioctl__): Likewise.
|
||
* src/update.c (append_file): Likewise.
|
||
* src/system.h (full_read, full_write): New decls.
|
||
|
||
* po/POTFILES.in: Add lib/argmatch.c, lib/error.c lib/getopt.c,
|
||
lib/xmalloc.c, src/arith.c, src/misc.c.
|
||
|
||
* src/system.h (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
|
||
New macros. All uses of STDIN and STDOUT changed.
|
||
* src/rmt.c (prepare_record_buffer, main): Use STDIN_FILENO
|
||
instead of 0 and STDOUT_FILENO instead of 1.
|
||
* src/rtapelib.c (_rmt_rexec): Use STDIN_FILENO and STDOUT_FILENO
|
||
instead of fileno (stdin) and fileno (stdout) or 0 and 1.
|
||
|
||
* src/rmt.c (private_strerror): Avoid const. Translate results.
|
||
|
||
* tests/Makefile.am (TESTS): Remove incremen.sh; it doesn't work
|
||
in the presence of NFS clock skew.
|
||
|
||
1999-06-25 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* configure.in (AM_INIT_AUTOMAKE): version 1.12.64014.
|
||
|
||
* src/buffer.c (write_archive_buffer): New function.
|
||
(child_open_for_compress, flush_write, flush_read): Use it to write
|
||
buffers.
|
||
(open_archive): Report error if fstat of archive fails.
|
||
Improve efficiency of check for /dev/null.
|
||
Also, fix some corner cases with remote archives and /dev/null checking.
|
||
(close_archive): Test for input fifo only if not remote.
|
||
Truncate output archive only if it's not remote.
|
||
|
||
* src/misc.c (remove_any_file):
|
||
Don't terminate if you see . or ..; just skip them.
|
||
|
||
1999-06-18 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* configure.in (AM_INIT_AUTOMAKE): version 1.12.64013.
|
||
|
||
Output sizes using a format that's more compatible with
|
||
traditional tar (and with GNU Emacs).
|
||
* src/common.h (GID_TO_OCT, MAJOR_TO_OCT, MINOR_TO_OCT,
|
||
MODE_TO_OCT, SIZE_TO_OCT, UID_TO_OCT, UINTMAX_TO_OCT):
|
||
Don't subtract 1 from size.
|
||
* src/create.c (to_oct): Prepend leading zeros, not spaces.
|
||
Output a trailing NUL unless the value won't fit without it.
|
||
(finish_header): No need to append NUL to chksum, now that
|
||
to_oct is doing it.
|
||
|
||
1999-06-16 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* NEWS, configure.in (AM_INIT_AUTOMAKE): version 1.12.64012.
|
||
|
||
* src/Makefile.am (LDADD): Link libtar.a after @INTLLIBS@, since
|
||
@INTLLIBS@ might invoke rpl_realloc.
|
||
|
||
* src/tar.c (backup_type): Remove decl; backupfile.h now has it.
|
||
(intconv): Remove; use xstrto* fns instead.
|
||
("xstrtol.h"): Include.
|
||
(check_decimal): Remove.
|
||
(long_options, usage, OPTION_STRING, decode_options):
|
||
Remove -y, --bzip2, --unbzip2.
|
||
(decode_options): Use xget_version instead of get_version.
|
||
Check for overflow with -b and -L and RECORD_SIZE_OPTION.
|
||
Replace invocations of check_decimal with xstrtoumax.
|
||
|
||
* tests/preset.in (echo_n, echo_c): Remove.
|
||
|
||
* tests/after: Don't rely on $echo_c and $echo_n.
|
||
|
||
* lib/addext.c, lib/dirname.c, lib/lchown.c, lib/lchown.h,
|
||
lib/malloc.c, lib/mktime.c, lib/realloc.c, lib/strtol.c, lib/strtoul.c,
|
||
lib/strtoull.c, lib/strtoumax.c, lib/utime.c, lib/xstrtol.c,
|
||
lib/xstrtol.h, lib/xstrtoul.c, lib/xstrtoumax.c,
|
||
m4/Makefile.am.in, m4/README, m4/ccstdc.m4, m4/d-ino.m4,
|
||
m4/gettext.m4, m4/inttypes_h.m4, m4/isc-posix.m4,
|
||
m4/jm-mktime.m4, m4/largefile.m4, m4/lcmessage.m4,
|
||
m4/malloc.m4, m4/progtest.m4, m4/realloc.m4, m4/uintmax_t.m4,
|
||
m4/ulonglong.m4, m4/utimbuf.m4, m4/utime.m4, m4/utimes.m4,
|
||
m4/xstrtoumax.m4: New files.
|
||
|
||
* configure.in(fp_PROG_ECHO): Remove; no longer needed.
|
||
(AC_SYS_LARGEFILE): Renamed from AC_LFS.
|
||
(jm_AC_HEADER_INTTYPES_H): Replaces inline code.
|
||
(jm_STRUCT_DIRENT_D_INO, jm_AC_TYPE_UINTMAX_T, jm_AC_PREREQ_XSTRTOUMAX): Add.
|
||
(AC_CHECK_FUNCS): Remove lchown.
|
||
(AC_REPLACE_FUNCS): Remove basename, dirname.
|
||
Add lchown, strtol, strtoul.
|
||
(jm_FUNC_MKTIME): Add.
|
||
(LIBOBJS): Replace .o with $U.o, so that the .o files in LIBOBJS
|
||
are also built via the ANSI2KNR-filtering rules.
|
||
Use a no-op line to work around bug in automake 1.4 with malloc and
|
||
realloc.
|
||
(AC_OUTPUT): Add m4/Makefile.
|
||
|
||
* lib/Makefile.am (EXTRA_DIST):
|
||
Add lchown.c, malloc.c, mktime.c, realloc.c,
|
||
strtol.c, strtoul.c, strtoull.c, strtoumax.c, utime.c.
|
||
(noinst_HEADERS): Add lchown.h, modechange.h, xstrtol.h.
|
||
(libtar_a_SOURCES): Add addext.c, basename.c, xstrtol.c,
|
||
xstrtoul.c, xstrtoumax.c. Remove getversion.c.
|
||
($(srcdir)/getdate.c:): Remove `expect conflicts' line.
|
||
|
||
* src/system.h (uintmax_t): Don't declare; configure now does this.
|
||
|
||
* src/common.h (backup_type): New decl.
|
||
* src/common.h, src/misc.c, src/tar.c:
|
||
Move include of backupfile.h to common.h.
|
||
|
||
* src/misc.c (maybe_backup_file):
|
||
Pass backup_type to find_backup_file_name.
|
||
|
||
* src/list.c (print_header): Change sizes of uform and gform from 11 to
|
||
UINTMAX_STRSIZE_BOUND.
|
||
|
||
* doc/tar.texi: Remove --bzip2.
|
||
Fix @xref typos reported by latest makeinfo.
|
||
|
||
* Makefile.am (ACLOCAL_AMFLAGS): New macro.
|
||
(SUBDIRS): Add m4.
|
||
(M4DIR, ACINCLUDE_INPUTS): New macros.
|
||
($(srcdir)/acinclude.m4): New rule.
|
||
|
||
* acconfig.h (ENABLE_NLS, HAVE_CATGETS, HAVE_GETTEXT,
|
||
HAVE_INTTYPES_H, HAVE_LC_MESSAGES, HAVE_STPCPY): Remve #undefs;
|
||
now generated automatically by autoconf.
|
||
|
||
1999-05-15 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* doc/tar.texi: Remove -y.
|
||
|
||
1999-04-09 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* src/system.h (INT_STRLEN_BOUND): Fix off-by-factor-of-10 typo
|
||
(we were allocating too much storage).
|
||
(uintmax_t): Don't declare; configure now does this.
|
||
|
||
* ABOUT-NLS: Update to gettext 0.10.35 edition.
|
||
|
||
1999-03-22 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* NEWS, configure.in (AM_INIT_AUTOMAKE): version 1.12.64010
|
||
|
||
* acinclude.m4 (AC_LFS_FLAGS):
|
||
Don't use -mabi=n32 with GCC on IRIX 6.2; it's the default.
|
||
(AC_LFS): -n32, -o32, and -n64 are CPPFLAGS, not CFLAGS.
|
||
(jm_FUNC_MALLOC, jm_FUNC_REALLOC): New macros.
|
||
|
||
* configure.in (jm_FUNC_MALLOC, jm_FUNC_REALLOC):
|
||
New macros; needed for latest GNU xmalloc.c.
|
||
|
||
* Makefile.am (noinst_HEADERS): Add quotearg.h, xalloc.h.
|
||
(libtar_a_SOURCES): Add quotearg.c.
|
||
* list.c: Include <quotearg.h>.
|
||
(from_oct): Add forward decl.
|
||
(read_header): Return HEADER_FAILURE if we can't parse the checksum.
|
||
(from_oct): Report an error only if TYPE is nonzero.
|
||
Quote any funny characters in bad header.
|
||
|
||
1999-03-20 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* NEWS, configure.in (AM_INIT_AUTOMAKE): version 1.12.64009
|
||
|
||
* acinclude.m4 (AC_LFS_FLAGS): Add support for IRIX 6.2 and later.
|
||
(AC_LFS_SPACE_APPEND): Assume $2 is quoted properly; all callers
|
||
changed.
|
||
(AC_LFS): Simplify AIX revision number test.
|
||
|
||
1999-03-17 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* NEWS, configure.in (AM_INIT_AUTOMAKE): version 1.12.64008
|
||
|
||
* configure.in (AC_VALIDATE_CACHED_SYSTEM_TUPLE):
|
||
Remove; it doesn't work that well
|
||
with AC_CANONICAL_HOST.
|
||
(fp_WITH_INCLUDED_MALLOC): Remove; we'll just use the system malloc.
|
||
|
||
* Makefile.am (EXTRA_DIST): Remove AC-PATCHES, AM-PATCHES, BI-PATCHES.
|
||
|
||
* Makefile.am (EXTRA_DIST): Remove gmalloc.c.
|
||
|
||
* acinclude.m4 (fp_WITH_INCLUDED_MALLOC): Remove.
|
||
|
||
* tar.texi: Fix bug-report addr.
|
||
|
||
* README: Remove --with-included-malloc.
|
||
Upgrade version numbers of build software.
|
||
|
||
1999-03-07 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.12.64007.
|
||
|
||
* acinclude.m4 (AM_WITH_NLS): Port to Solaris 2.5.1,
|
||
where bindtextdomain and gettext require -lintl.
|
||
(AC_LFS_FLAGS): Simplify so that it only gets the flags;
|
||
`no' means it failed.
|
||
(AC_LFS_SPACE_APPEND, AC_LFS_MACRO_VALUE): New macros.
|
||
(AC_LFS): Use them. Set _FILE_OFFSET_BITS, _LARGEFILE_SOURCE, and
|
||
_LARGE_FILES from LFS_CFLAGS, so that in the normal case we don't need
|
||
to add anything to the command line (it's all in config.h).
|
||
Put any extra -D and -I options into CPPFLAGS, the rest into CFLAGS.
|
||
|
||
1999-03-01 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.12.64006.
|
||
|
||
* acinclude.m4 (AC_LFS_FLAGS): Port to AIX 4.2.
|
||
|
||
* src/list.c: (gid_from_oct, major_from_oct, minor_from_oct,
|
||
mode_from_oct, off_from_oct, size_from_oct, time_from_oct,
|
||
uid_from_oct, uintmax_from_oct): Use TYPE_MAXIMUM instead of macros
|
||
like OFF_MAX, which are not reliable
|
||
(e.g. OFF_MAX in AIX 4.2 is incorrect).
|
||
* src/system.h (GID_MAX, MAJOR_MAX, MINOR_MAX, MODE_MAX, OFF_MAX,
|
||
SIZE_MAX, TIME_MAX,UID_MAX, UINTMAX_MAX): Remove; no longer used.
|
||
|
||
* src/incremen.c (get_directory_contents):
|
||
Don't use statx if _LARGE_FILES; it doesn't work under AIX 4.2.
|
||
Have statx depend on STX_HIDDEN, not AIX.
|
||
|
||
* src/create.c (to_oct):
|
||
New parameter substitute, giving a substitute value to use
|
||
when the original value is out of range. Do not append a space to the
|
||
output; modern tars don't. When a value is out of range, specify the
|
||
maximum value, not the number of bits.
|
||
(GID_NOBODY, UID_NOBODY): New macros.
|
||
(gid_to_oct, uid_to_oct): Use them as substitutes.
|
||
(finish_header): Do not assume that UINTMAX_TO_OCT appends a space.
|
||
(dump_file): Check whether the file changed as we read it.
|
||
|
||
* src/rmt.c (main): Remove suspicious AIX/386 code.
|
||
|
||
1999-02-19 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* intl/localealias.c (read_alias_file): Don't assume that memcpy
|
||
returns a type compatible with char *; it doesn't on SunOS
|
||
4.1.4 with Sun cc, since <string.h> doesn't declare memcpy.
|
||
|
||
* NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.12.64005.
|
||
|
||
* src/tar.c (long_options, usage): Prefer --unbzip2 to --bunzip2.
|
||
* doc/tar.texi: Add --bzip2, --unbzip2 options.
|
||
|
||
* configure.in (AC_CANONICAL_HOST, AC_VALIDATE_CACHED_SYSTEM_TUPLE):
|
||
Add.
|
||
(AC_LINK_FILES): Omit; AM_GNU_GETTEXT now does this.
|
||
(AC_OUTPUT): Omit munging of po/Makefile; AM_GNU_GETTEXT now does this.
|
||
* acinclude.m4 (AM_WITH_NLS):
|
||
Update to latest gettext version (serial 5).
|
||
(AC_LFS_FLAGS): New macro
|
||
(AC_LFS): Use it. Append to CFLAGS, LDFLAGS, LDLIBS instead of
|
||
working only with unset variables. Append to CFLAGS, not CPPFLAGS.
|
||
Work properly in cross-compilation scenario, by checking for getconf
|
||
with AC_CHECK_TOOL and by ditching uname in favor of
|
||
AC_CANONICAL_HOST and $host_os. Add --disable-lfs option.
|
||
|
||
* lib/getdate.y: Update to fileutils 4.0 getdate.y, with one patch:
|
||
replace FORCE_ALLOCA_H with HAVE_ALLOCA_H.
|
||
* lib/Makefile.am (AUTOMAKE_OPTIONS): Append ../src/ansi2knr,
|
||
since getdate.y now uses ANSI code.
|
||
|
||
* config.guess, config.sub: New files; taken from automake 1.4.
|
||
|
||
* intl/Makefile.in, intl/VERSION, intl/bindtextdom.c,
|
||
intl/cat-compat.c, intl/dcgettext.c, intl/dgettext.c,
|
||
intl/explodename.c, intl/finddomain.c, intl/gettext.c,
|
||
intl/gettext.h, intl/gettextP.h, intl/hash-string.h,
|
||
intl/l10nflist.c, intl/libgettext.h, intl/loadinfo.h,
|
||
intl/loadmsgcat.c, intl/localealias.c, intl/textdomain.c:
|
||
Update to GNU gettext 0.10.35, with patches as per GCC snapshot 990109.
|
||
|
||
1999-02-01 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* src/tar.c: Update copyright.
|
||
|
||
* NEWS: 1.12.64004
|
||
|
||
1999-02-01 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* NEWS, configure.in: Version 1.12.64004
|
||
|
||
* configure.in (AC_LFS): Use this macro, instead of open-coding it.
|
||
|
||
* acinclude.m4 (AC_LFS, AM_PROG_CC_STDC): New macros.
|
||
|
||
* src/extract.c (extract_archive): Fix bug when extracting sparse
|
||
files: they were trashing the tar file header.
|
||
|
||
* src/tar.c: (long_options, usage, OPTION_STRING, decode_options):
|
||
Add -y or --bzip2 or --bunzip2 option.
|
||
|
||
1999-01-30 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* src/names.c (cached_no_such_uname, cached_no_such_gname,
|
||
cached_no_such_uid, cached_no_such_gid): New vars.
|
||
(uid_to_uname, gid_to_gname, uname_to_uid, gname_to_gid):
|
||
Cache failures, too.
|
||
|
||
* src/tar.c (decode_options):
|
||
Don't pass names longer than UNAME_FIELD_SIZE to
|
||
uname_to_uid, as it messes up the cache. Similarly for gname_to_uid.
|
||
|
||
1999-01-27 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* NEWS, configure.in: Version 1.12.64003
|
||
|
||
* src/buffer.c (backspace_output, close_archive): Cast
|
||
rmtlseek position arg to off_t, for benefit of K&R compilers
|
||
with long long.
|
||
* src/compare.c (verify_volume): Likewise.
|
||
|
||
* NEWS, configure.in: Version 1.12.64002
|
||
|
||
* src/create.c (gid_to_oct, major_to_oct, minor_to_oct, mode_to_oct,
|
||
off_to_oct, size_to_oct, time_to_oct, uid_to_oct):
|
||
Cast arg to uintmax_t for benefit of pre-ANSI compilers with long long.
|
||
* src/list.c: (gid_from_oct, major_from_oct, minor_from_oct,
|
||
mode_from_oct, off_from_oct, size_from_oct, time_from_oct,
|
||
uid_from_oct): Likewise.
|
||
|
||
1999-01-25 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* incremen.sh: Fix timing bug in regression test.
|
||
|
||
1999-01-22 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* NEWS, configure.in: Update version
|
||
|
||
* Makefile.am (localedir): Change to $(datadir)/locale.
|
||
(DEFS): New macro, defining LOCALEDIR.
|
||
(tar.o, tar._o, rmt.o, rmt._o): Remove.
|
||
(INCLUDES): Add -I..
|
||
|
||
* Makefile.am (localedir): Change to $(datadir)/locale.
|
||
|
||
1999-01-21 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* NEWS, README, configure.in: Unofficial version 1.12.64001.
|
||
|
||
* tests/Makefile.am (localedir): Change to $(datadir)/locale.
|
||
* src/Makefile.am (localedir): Likewise.
|
||
(DEFS): New macro, defining LOCALEDIR.
|
||
(tar.o, tar._o, rmt.o, rmt._o): Remove.
|
||
(INCLUDES): Add `-I..'.
|
||
|
||
* tests/incremen.sh: Fix timing bug.
|
||
|
||
1999-01-20 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* NEWS, README, configure.in: Unofficial version 1.12.64000.
|
||
`lfs.7' changed to `64000' in version number
|
||
to conform to gnits standards.
|
||
|
||
* COPYING, INSTALL, doc/texinfo.tex, install-sh, missing,
|
||
mkinstalldirs, ansi2knr.c: Update to latest public versions.
|
||
|
||
Rebuild with automake 1.4 and autoconf 2.13, to work around some
|
||
porting problems.
|
||
|
||
1998-12-07 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* NEWS, README, configure.in: Unofficial version 1.12.lfs.6.
|
||
|
||
* src/list.c (read_header):
|
||
Accept file names as specified by POSIX.1-1996 section 10.1.1.
|
||
|
||
1998-11-30 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* configure.in: Quote the output of uname.
|
||
|
||
* src/extract.c (set_stat): chmod after chown even when not root;
|
||
if we are using --same-owner this is needed e.g. on Solaris 2.5.1.
|
||
|
||
1998-11-15 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* NEWS, README, configure.in: Unofficial version 1.12.lfs.5.
|
||
|
||
* configure.in (ac_test_CPPFLAGS, ac_test_LDFLAGS, ac_test_LIBS,
|
||
ac_getconfs, ac_result): Special case for HP-UX 10.20 or later.
|
||
|
||
1998-10-28 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* NEWS, README, configure.in: Unofficial version 1.12.lfs.4.
|
||
|
||
* src/system.h (voidstar): Use void * if __STDC__ is defined,
|
||
not merely nonzero.
|
||
|
||
* src/rtapelib.c: Don't use rexec code unless compiled with WITH_REXEC.
|
||
On many installations, rexec is disabled.
|
||
|
||
1998-08-07 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* NEWS, README, configure.in: Unofficial version 1.12.lfs.3.
|
||
|
||
* src/names.c (uid_to_uname, gid_to_gname): Don't used cached name
|
||
for nameless users and groups.
|
||
|
||
1998-02-17 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* NEWS, README, configure.in: Unofficial version 1.12.lfs.2.
|
||
* NEWS, README: Add explanation of why this isn't an official version.
|
||
|
||
1998-02-02 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* NEWS, README, configure.in: Unofficial version 1.12.lfs.1.
|
||
This is an unofficial version.
|
||
|
||
1997-12-17 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* src/incremen.c (ST_DEV_MSB): New macro.
|
||
(NFS_FILE_STAT): Use most significant bit of st_dev,
|
||
even if it's unsigned.
|
||
|
||
1997-12-08 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* src/system.h (ST_NBLOCKS): Fix typo in definition.
|
||
|
||
1997-11-19 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* configure.in (HAVE_INTTYPES_H):
|
||
Don't ignore cache variable if it's already set.
|
||
|
||
1997-11-10 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* src/rmt.c (main): Don't assume mt_count is of type daddr_t.
|
||
* src/delete.c (records_read): Now off_t.
|
||
(move_archive): Don't assume mt_count is of type daddr_t.
|
||
|
||
1997-10-30 Paul Eggert <eggert@twinsun.com>
|
||
|
||
* configure.in (CPPFLAGS, LDFLAGS, LIBS):
|
||
Set to appropriate values if large file support
|
||
needs explicit enabling.
|
||
(HAVE_INTTYPES_H, HAVE_ST_FSTYPE_STRING, daddr_t, major_t, minor_t,
|
||
ssize_t):
|
||
New macros to configure.
|
||
(AC_TYPE_MODE_T, AC_TYPE_PID_T, AC_TYPE_OFF_T): Add.
|
||
|
||
* acconfig.h (daddr_t, HAVE_INTTYPES_H, HAVE_ST_FSTYPE_STRING,
|
||
major_t, minor_t, ssize_t): New macros.
|
||
|
||
* src/arith.h (TARLONG_FORMAT):
|
||
Fix typo: %uld -> %lu. Use unsigned when long long
|
||
(%lld -> %llu).
|
||
(add_to_tarlong_helper, mult_tarlong_helper): 2nd arg is now unsigned long.
|
||
(add_to_tarlong, mult_tarlong): Cast 2nd arg to unsigned long.
|
||
|
||
* src/arith.c (add_to_tarlong_helper, mult_tarlong_helper):
|
||
2nd arg is now unsigned long.
|
||
|
||
* src/rmt.c (allocated_size): Now size_t, and now initialized to 0.
|
||
(prepare_record_buffer): Arg is now size_t.
|
||
Remove now-useless casts.
|
||
|
||
(main): Use `long' for status, so that it can store ssize_t.
|
||
Use daddr_t, mode_t, size_t, off_t when appropriate.
|
||
Convert daddr_t and off_t values ourselves, since they might be longer
|
||
than long. Convert other types using `long' primitives.
|
||
When processing MTIOCTOP, do not try to pass resulting
|
||
count back, since it won't work (it could be too large) and it's
|
||
not expected anyway.
|
||
|
||
* src/update.c:
|
||
(append_file) Use off_t, size_t, ssize_t when appropriate. Remove
|
||
now-useless casts. Use unsigned long to print *_t types, except use
|
||
STRINGIFY_BIGINT for off_t.
|
||
(update_archive): Cast -1 to dev_t when necessary.
|
||
|
||
* src/tar.c (check_decimal):
|
||
Now returns 1 if successful, 0 otherwise, and returns
|
||
uintmax_t value into new arg. Check for arithmetic overflow.
|
||
(decode_options): Avoid overflow if record_size fits in size_t but not int.
|
||
Check for overflow on user or group ids.
|
||
|
||
* src/compare.c (diff_init, process_rawdata, read_and_process,
|
||
diff_sparse_files, diff_archive):
|
||
Use off_t, pid_t, size_t, ssize_t when appropriate.
|
||
Remove now-useless casts. Use unsigned long to print *_t types,
|
||
except use STRINGIFY_BIGINT for off_t.
|
||
|
||
(process_noop, process_rawdata, process_dumpdir, read_and_process):
|
||
Size arg is now size_t.
|
||
|
||
(diff_sparse_files): Arg is now off_t. Check for size_t overflow
|
||
when allocating buffer.
|
||
|
||
* src/rtapelib.c:
|
||
(do_command, rmt_open__, rmt_read__, rmt_lseek__, rmt_ioctl__):
|
||
Use pid_t, size_t, ssize_t when appropriate. Remove now-useless casts.
|
||
Use unsigned long to print *_t types, except use STRINGIFY_BIGINT for
|
||
off_t.
|
||
|
||
(get_status_string, get_status_off): New function.
|
||
(get_status): Now returns long, so that it can store ssize_t.
|
||
Invoke get_status_string to do the real work.
|
||
(rmt_read__, rmt_write__): Now returns ssize_t. Size arg is now size_t.
|
||
(rmt_lseek__): Now returns off_t, using new get_status_off function.
|
||
(rmt_ioctl__): Convert mt_count by hand,
|
||
since it might be longer than long.
|
||
|
||
* src/mangle.c (extract_mangle):
|
||
Check for overflow when converting off_t to size_t.
|
||
Use off_t, size_t when appropriate. Remove now-useless casts.
|
||
|
||
* src/system.h (mode_t): Remove; now done by autoconf.
|
||
(ST_NBLOCKS): Do not overflow if st_size is near maximum.
|
||
Return number of ST_NBLOCKSIZE-byte blocks,
|
||
not number of 512-byte blocks;
|
||
this also helps to avoid overflow.
|
||
(st_blocks): Declare if needed.
|
||
(ST_NBLOCKSIZE): New macro.
|
||
(<limits.h>, <inttypes.h>): Include if available.
|
||
(CHAR_BIT): New macro.
|
||
(uintmax_t): New typedef.
|
||
(TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_STRLEN_BOUND,
|
||
UINTMAX_STRSIZE_BOUND, GID_MAX, MAJOR_MAX, MINOR_MAX, MODE_MAX,
|
||
OFF_MAX, SIZE_MAX, TIME_MAX, UID_MAX, UINTMAX_MAX): New macros.
|
||
|
||
* src/names.c (name_init):
|
||
Fix typo in error message: FILE* was passed, but char*
|
||
was wanted.
|
||
|
||
(read_name_from_file, name_gather, addname, name_match, name_scan,
|
||
add_exclude): Use size_t when appropriate. Remove now-useless casts.
|
||
|
||
(exclude_pool_size, allocated_exclude_pool_size): Now size_t.
|
||
|
||
* src/extract.c (newdir_umask, current_umask): Now mode_t.
|
||
(extract_sparse_file): Args now use off_t.
|
||
|
||
(set_mode, set_stat, make_directories, extract_sparse_file,
|
||
extract_archive): Use off_t, size_t, ssize_t when appropriate. Remove
|
||
now-useless casts. Use unsigned long to print *_t types, except use
|
||
STRINGIFY_BIGINT for off_t.
|
||
|
||
* src/misc.c (quote_copy_string):
|
||
Use size_t when appropriate. Remove now-useless casts.
|
||
|
||
* src/list.c (read_and, list_archive, read_header, decode_mode,
|
||
print_header, print_for_mkdir):
|
||
Use mode_t, off_t, size_t when appropriate. Remove
|
||
now-useless casts. Use unsigned long to print *_t types, except use
|
||
STRINGIFY_BIGINT for off_t.
|
||
|
||
(read_header): Check for overflow when converting header size.
|
||
|
||
(from_oct): Now static. Now returns uintmax_t. `where' arg is now
|
||
const char *. Size arg is now size_t. Now takes new type and maxval
|
||
args. Compute result using uintmax_t, not long. Report error if
|
||
field does not contain octal number in range.
|
||
(gid_from_oct, major_from_oct, minor_from_oct, mode_from_oct,
|
||
off_from_oct, size_from_oct, time_from_oct, uid_from_oct,
|
||
uintmax_from_oct): New functions.
|
||
|
||
(stringify_uintmax_t_backwards): New function.
|
||
|
||
(decode_mode, print_for_mkdir): Mode arg is now mode_t.
|
||
(skip_file): Offset arg is now off_t.
|
||
|
||
* src/buffer.c (record_start_block, save_totsize, save_sizeleft,
|
||
real_s_totsize, real_s_sizeleft, current_block_ordinal):
|
||
Now off_t.
|
||
(write_error): Arg is now ssize_t.
|
||
(child_pid): Now pid_t.
|
||
(available_space_after): Now size_t.
|
||
|
||
(child_open_for_compress, child_open_for_uncompress, flush_write,
|
||
open_archive, flush_write, write_error, flush_read, close_archive):
|
||
Use pid_t, ssize_t, size_t when appropriate. Remove now-useless
|
||
casts. Use unsigned long to print *_t types, except use
|
||
STRINGIFY_BIGINT for off_t.
|
||
|
||
* src/delete.c (records_read): Now daddr_t.
|
||
(move_archive): Arg is now daddr_t. Check for overflow when
|
||
computing offset.
|
||
(move_archive, delete_archive_members): Use daddr_t, off_t when
|
||
appropriate. Remove now-useless casts.
|
||
|
||
* src/rmt.h (rmt_read__, rmt_write__): Now returns ssize_t.
|
||
(rmt_lseek): Now returns off_t.
|
||
|
||
* src/create.c (to_oct):
|
||
Now static. Value arg is now uintmax_t. Accept new args
|
||
giving name of type of octal field, for error messages. Report an
|
||
error if the value is too large to fit in the field.
|
||
(gid_to_oct, major_to_oct, minor_to_oct, mode_to_oct, off_to_oct,
|
||
size_to_oct, time_to_oct, uid_to_oct, uintmax_to_oct): New functions.
|
||
|
||
(write_eot, write_long, finish_header, deal_with_sparse,
|
||
finish_sparse_file, dump_file): Use dev_t, off_t, ssize_t, size_t when
|
||
appropriate. Remove now-useless casts. Use unsigned long to print
|
||
*_t types, except use STRINGIFY_BIGINT for off_t.
|
||
|
||
(find_new_file_size): 1st arg is now off_t*.
|
||
(finish_sparse_file): Args now use off_t, not long.
|
||
Check for lseek error.
|
||
(create_archive, dump_file): Cast -1 to dev_t when necessary.
|
||
(dump_file): Device arg is now dev_t.
|
||
Avoid overflow when testing whether file has holes
|
||
by using the new ST_NBLOCKSIZE macro.
|
||
|
||
* src/incremen.c (struct accumulator, add_to_accumulator,
|
||
get_directory_contents, add_hierarchy_to_namelist, gnu_restore):
|
||
Use size_t for sizes.
|
||
(struct directory, get_directory_contents, add_hierarchy_to_namelist):
|
||
Use dev_t, ino_t for devices and inodes.
|
||
(gnu_restore): Use off_t for file offsets.
|
||
(struct directory): Use char for flags. Add new flag `nfs'.
|
||
(nfs): New constant
|
||
(NFS_FILE_STAT): New macro.
|
||
(note_directory): Accept struct stat * instead of
|
||
device and inode number. All callers changed.
|
||
(note_directory, get_directory_contents):
|
||
Use NFS_FILE_STAT to determine whether directory is an NFS directory.
|
||
(write_dir_file): Cast time_t to unsigned long before printing as %lu.
|
||
|
||
* src/common.h (record_size, struct name, struct sp_array,
|
||
available_space_after):
|
||
Use size_t for sizes.
|
||
(save_sizeleft, save_totsize, current_block_ordinal, skip_file):
|
||
Use off_t for file offsets.
|
||
(struct name): dir_contents is now const char *, not char *.
|
||
(dump_file, get_directory_contents): Use dev_t for devices.
|
||
(to_oct): Remove decl.
|
||
(GID_TO_OCT, MAJOR_TO_OCT, MINOR_TO_OCT, MODE_TO_OCT, SIZE_TO_OCT,
|
||
UID_TO_OCT, UINTMAX_TO_OCT, OFF_TO_OCT, TIME_TO_OCT, STRINGIFY_BIGINT,
|
||
GID_FROM_OCT, MAJOR_FROM_OCT, MINOR_FROM_OCT, MODE_FROM_OCT,
|
||
OFF_FROM_OCT, SIZE_FROM_OCT, TIME_FROM_OCT, UID_FROM_OCT,
|
||
UINTMAX_FROM_OCT): New macros.
|
||
(gid_to_oct, major_to_oct, minor_to_oct, mode_to_oct, off_to_oct,
|
||
size_to_oct, time_to_oct, uid_to_oct, uintmax_to_oct,
|
||
stringify_uintmax_t_backwards, gid_from_oct, major_from_oct,
|
||
minor_from_oct, mode_from_oct, off_from_oct, size_from_oct,
|
||
time_from_oct, uid_from_oct, uintmax_from_oct): New decls.
|
||
(print_for_mkdir): 2nd arg is now mode_t.
|
||
|
||
-----
|
||
|
||
See ChangeLog.1 for earlier changes.
|
||
|
||
-----
|
||
|
||
Local Variables:
|
||
mode: change-log
|
||
version-control: never
|
||
buffer-read-only: t
|
||
End:
|