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.
202 lines
4.3 KiB
Makefile
202 lines
4.3 KiB
Makefile
# Makefile for GNU tar regression tests.
|
|
|
|
# Copyright (C) 1996, 1997, 1999, 2000, 2001, 2003, 2004, 2005,
|
|
# 2006, 2007, 2009 Free Software Foundation, Inc.
|
|
|
|
# François Pinard <pinard@iro.umontreal.ca>, 1988.
|
|
# Sergey Poznyakoff <gray@mirddin.farlep.net>, 2004.
|
|
|
|
## This program 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, or (at your option)
|
|
## any later version.
|
|
|
|
## This program 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, write to the Free Software
|
|
## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
## 02110-1301, USA.
|
|
|
|
EXTRA_DIST = $(TESTSUITE_AT) testsuite package.m4 star/README star/quicktest.sh
|
|
DISTCLEANFILES = atconfig $(check_SCRIPTS)
|
|
MAINTAINERCLEANFILES = Makefile.in $(TESTSUITE)
|
|
|
|
## ------------ ##
|
|
## package.m4. ##
|
|
## ------------ ##
|
|
|
|
$(srcdir)/package.m4: $(top_srcdir)/configure.ac
|
|
{ \
|
|
echo '# Signature of the current package.'; \
|
|
echo 'm4_define([AT_PACKAGE_NAME], [@PACKAGE_NAME@])'; \
|
|
echo 'm4_define([AT_PACKAGE_TARNAME], [@PACKAGE_TARNAME@])'; \
|
|
echo 'm4_define([AT_PACKAGE_VERSION], [@PACKAGE_VERSION@])'; \
|
|
echo 'm4_define([AT_PACKAGE_STRING], [@PACKAGE_STRING@])'; \
|
|
echo 'm4_define([AT_PACKAGE_BUGREPORT], [@PACKAGE_BUGREPORT@])'; \
|
|
} >$(srcdir)/package.m4
|
|
|
|
#
|
|
|
|
## ------------ ##
|
|
## Test suite. ##
|
|
## ------------ ##
|
|
|
|
TESTSUITE_AT = \
|
|
T-empty.at\
|
|
T-null.at\
|
|
testsuite.at\
|
|
append.at\
|
|
append01.at\
|
|
append02.at\
|
|
backup01.at\
|
|
chtype.at\
|
|
comprec.at\
|
|
delete01.at\
|
|
delete02.at\
|
|
delete03.at\
|
|
delete04.at\
|
|
delete05.at\
|
|
exclude.at\
|
|
exclude01.at\
|
|
exclude02.at\
|
|
exclude03.at\
|
|
exclude04.at\
|
|
exclude05.at\
|
|
exclude06.at\
|
|
extrac01.at\
|
|
extrac02.at\
|
|
extrac03.at\
|
|
extrac04.at\
|
|
extrac05.at\
|
|
extrac06.at\
|
|
extrac07.at\
|
|
extrac08.at\
|
|
extrac09.at\
|
|
extrac10.at\
|
|
extrac11.at\
|
|
extrac12.at\
|
|
filerem01.at\
|
|
filerem02.at\
|
|
gzip.at\
|
|
grow.at\
|
|
incremental.at\
|
|
incr01.at\
|
|
incr02.at\
|
|
incr03.at\
|
|
incr04.at\
|
|
incr05.at\
|
|
incr06.at\
|
|
indexfile.at\
|
|
ignfail.at\
|
|
label01.at\
|
|
label02.at\
|
|
label03.at\
|
|
label04.at\
|
|
label05.at\
|
|
link01.at\
|
|
link02.at\
|
|
link03.at\
|
|
link04.at\
|
|
listed01.at\
|
|
listed02.at\
|
|
listed03.at\
|
|
long01.at\
|
|
longv7.at\
|
|
lustar01.at\
|
|
lustar02.at\
|
|
lustar03.at\
|
|
multiv01.at\
|
|
multiv02.at\
|
|
multiv03.at\
|
|
multiv04.at\
|
|
multiv05.at\
|
|
multiv06.at\
|
|
multiv07.at\
|
|
multiv08.at\
|
|
old.at\
|
|
options.at\
|
|
options02.at\
|
|
pipe.at\
|
|
recurse.at\
|
|
rename01.at\
|
|
rename02.at\
|
|
rename03.at\
|
|
rename04.at\
|
|
rename05.at\
|
|
remfiles01.at\
|
|
remfiles02.at\
|
|
remfiles03.at\
|
|
same-order01.at\
|
|
same-order02.at\
|
|
shortfile.at\
|
|
shortupd.at\
|
|
shortrec.at\
|
|
sigpipe.at\
|
|
sparse01.at\
|
|
sparse02.at\
|
|
sparse03.at\
|
|
sparsemv.at\
|
|
sparsemvp.at\
|
|
spmvp00.at\
|
|
spmvp01.at\
|
|
spmvp10.at\
|
|
truncate.at\
|
|
update.at\
|
|
update01.at\
|
|
update02.at\
|
|
volsize.at\
|
|
volume.at\
|
|
verbose.at\
|
|
version.at\
|
|
xform-h.at\
|
|
xform01.at\
|
|
star/gtarfail.at\
|
|
star/gtarfail2.at\
|
|
star/multi-fail.at\
|
|
star/ustar-big-2g.at\
|
|
star/ustar-big-8g.at\
|
|
star/pax-big-10g.at
|
|
|
|
TESTSUITE = $(srcdir)/testsuite
|
|
|
|
AUTOTEST = $(AUTOM4TE) --language=autotest
|
|
$(TESTSUITE): package.m4 $(TESTSUITE_AT)
|
|
$(AUTOTEST) -I $(srcdir) testsuite.at -o $@.tmp
|
|
mv $@.tmp $@
|
|
|
|
atconfig: $(top_builddir)/config.status
|
|
cd $(top_builddir) && ./config.status tests/$@
|
|
|
|
clean-local:
|
|
test ! -f $(TESTSUITE) || $(SHELL) $(TESTSUITE) --clean
|
|
|
|
check-local: atconfig atlocal $(TESTSUITE)
|
|
$(SHELL) $(TESTSUITE) $(TESTSUITEFLAGS)
|
|
|
|
check-full:
|
|
FULL_TEST=1 $(MAKE) check
|
|
|
|
#check_SCRIPTS = tar
|
|
|
|
# Run the test suite on the *installed* tree.
|
|
installcheck-local:
|
|
$(SHELL) $(TESTSUITE) $(TESTSUITEFLAGS) AUTOTEST_PATH=$(exec_prefix)/bin
|
|
|
|
|
|
## ------------ ##
|
|
## genfile ##
|
|
## ------------ ##
|
|
|
|
check_PROGRAMS = genfile
|
|
|
|
genfile_SOURCES = genfile.c argcv.c argcv.h
|
|
|
|
localedir = $(datadir)/locale
|
|
INCLUDES = -I$(top_srcdir)/gnu -I../gnu -I$(top_srcdir)/gnu -I$(top_srcdir)/lib
|
|
AM_CPPFLAGS = -DLOCALEDIR=\"$(localedir)\"
|
|
LDADD = ../gnu/libgnu.a $(LIBINTL) $(LIB_CLOCK_GETTIME) $(LIB_EACCESS)
|