2008-05-02 05:17:16 +00:00
|
|
|
# $FreeBSD$
|
|
|
|
|
2016-02-02 22:26:49 +00:00
|
|
|
PACKAGE= tests
|
|
|
|
|
2015-12-01 22:20:04 +00:00
|
|
|
_LIBARCHIVEDIR= ${SRCTOP}/contrib/libarchive
|
2015-10-12 18:31:21 +00:00
|
|
|
|
|
|
|
ATF_TESTS_SH+= functional_test
|
|
|
|
|
|
|
|
BINDIR= ${TESTSDIR}
|
|
|
|
|
|
|
|
CFLAGS+= -DPLATFORM_CONFIG_H=\"${SRCTOP}/lib/libarchive/config_freebsd.h\"
|
|
|
|
CFLAGS+= -I${SRCTOP}/lib/libarchive -I${.OBJDIR}
|
2015-12-01 22:20:04 +00:00
|
|
|
CFLAGS+= -I${_LIBARCHIVEDIR}/tar -I${_LIBARCHIVEDIR}/test_utils
|
2015-10-12 18:31:21 +00:00
|
|
|
|
|
|
|
# Uncomment to link against dmalloc
|
|
|
|
#LDADD+= -L/usr/local/lib -ldmalloc
|
|
|
|
#CFLAGS+= -I/usr/local/include -DUSE_DMALLOC
|
|
|
|
|
|
|
|
PROGS+= bsdtar_test
|
2008-05-02 05:17:16 +00:00
|
|
|
|
2015-12-01 22:20:04 +00:00
|
|
|
.PATH: ${_LIBARCHIVEDIR}/tar/test
|
2015-10-12 18:31:21 +00:00
|
|
|
TESTS_SRCS= \
|
2008-05-02 05:17:16 +00:00
|
|
|
test_0.c \
|
|
|
|
test_basic.c \
|
|
|
|
test_copy.c \
|
2011-07-17 21:33:15 +00:00
|
|
|
test_empty_mtree.c \
|
2013-03-22 13:36:03 +00:00
|
|
|
test_extract_tar_bz2.c \
|
|
|
|
test_extract_tar_grz.c \
|
|
|
|
test_extract_tar_gz.c \
|
|
|
|
test_extract_tar_lrz.c \
|
|
|
|
test_extract_tar_lz.c \
|
2016-05-12 10:16:16 +00:00
|
|
|
test_extract_tar_lz4.c \
|
2013-03-22 13:36:03 +00:00
|
|
|
test_extract_tar_lzma.c \
|
|
|
|
test_extract_tar_lzo.c \
|
|
|
|
test_extract_tar_xz.c \
|
2012-07-28 06:38:44 +00:00
|
|
|
test_format_newc.c \
|
2008-05-02 05:17:16 +00:00
|
|
|
test_help.c \
|
2016-05-12 10:16:16 +00:00
|
|
|
test_leading_slash.c \
|
MFV r302003,r302037,r302038,r302056:
Update libarchive to 3.2.1 (bugfix and security fix release)
List of vendor fixes:
- fix exploitable heap overflow vulnerability in Rar decompression
(vendor issue 719, CVE-2016-4302, TALOS-2016-0154)
- fix exploitable stack based buffer overflow vulnebarility in mtree
parse_device functionality (vendor PR 715, CVE-2016-4301, TALOS-2016-0153)
- fix exploitable heap overflow vulnerability in 7-zip read_SubStreamsInfo
(vendor issue 718, CVE-2016-4300, TALOS-2016-152)
- fix integer overflow when computing location of volume descriptor
(vendor issue 717)
- fix buffer overflow when reading a crafred rar archive (vendor issue 521)
- fix possible buffer overflow when reading ISO9660 archives on machines
where sizeof(int) < sizeof(size_t) (vendor issue 711)
- tar and cpio should fail if an input file named on the command line is
missing (vendor issue 708)
- fix incorrect writing of gnutar filenames that are exactly 512 bytes
long (vendor issue 682)
- allow tests to be run from paths that are equal or longer than 128
characters (vendor issue 657)
- add memory allocation errors in archive_entry_xattr.c (vendor PR 603)
- remove dead code in archive_entry_xattr_add_entry() (vendor PR 716)
- fix broken decryption of ZIP files (vendor issue 553)
- manpage style, typo and description fixes
Post-3.2.1 vendor fixes:
- fix typo in cpio version reporting (Vendor PR 725, 726)
- fix argument range of ctype functions in libarchive_fe/passphrase.c
- fix ctype use and avoid empty loop bodies in WARC reader
MFC after: 1 week
Security: CVE-2016-4300, CVE-2016-4301, CVE-2016-4302
Approved by: re (kib)
2016-06-22 07:49:59 +00:00
|
|
|
test_missing_file.c \
|
2012-02-25 10:58:02 +00:00
|
|
|
test_option_C_upper.c \
|
|
|
|
test_option_H_upper.c \
|
|
|
|
test_option_L_upper.c \
|
|
|
|
test_option_O_upper.c \
|
2011-07-17 21:33:15 +00:00
|
|
|
test_option_T_upper.c \
|
2012-02-25 10:58:02 +00:00
|
|
|
test_option_U_upper.c \
|
|
|
|
test_option_X_upper.c \
|
2013-03-22 13:36:03 +00:00
|
|
|
test_option_a.c \
|
2012-02-25 10:58:02 +00:00
|
|
|
test_option_b.c \
|
2013-03-22 13:36:03 +00:00
|
|
|
test_option_b64encode.c \
|
2012-02-25 10:58:02 +00:00
|
|
|
test_option_exclude.c \
|
|
|
|
test_option_gid_gname.c \
|
2013-03-22 13:36:03 +00:00
|
|
|
test_option_grzip.c \
|
|
|
|
test_option_j.c \
|
2012-02-25 10:58:02 +00:00
|
|
|
test_option_k.c \
|
|
|
|
test_option_keep_newer_files.c \
|
2013-03-22 13:36:03 +00:00
|
|
|
test_option_lrzip.c \
|
2016-05-12 10:16:16 +00:00
|
|
|
test_option_lz4.c \
|
2013-03-22 13:36:03 +00:00
|
|
|
test_option_lzma.c \
|
|
|
|
test_option_lzop.c \
|
2012-02-25 10:58:02 +00:00
|
|
|
test_option_n.c \
|
|
|
|
test_option_newer_than.c \
|
2013-03-22 13:36:03 +00:00
|
|
|
test_option_nodump.c \
|
|
|
|
test_option_older_than.c \
|
2016-05-12 10:16:16 +00:00
|
|
|
test_option_passphrase.c \
|
2008-08-22 01:22:55 +00:00
|
|
|
test_option_q.c \
|
2011-07-17 21:33:15 +00:00
|
|
|
test_option_r.c \
|
2009-03-08 05:17:58 +00:00
|
|
|
test_option_s.c \
|
2012-02-25 10:58:02 +00:00
|
|
|
test_option_uid_uname.c \
|
2013-03-22 13:36:03 +00:00
|
|
|
test_option_uuencode.c \
|
|
|
|
test_option_xz.c \
|
|
|
|
test_option_z.c \
|
2008-05-26 17:10:10 +00:00
|
|
|
test_patterns.c \
|
2012-02-25 10:58:02 +00:00
|
|
|
test_print_longpath.c \
|
2008-05-02 05:17:16 +00:00
|
|
|
test_stdio.c \
|
2008-11-10 05:04:55 +00:00
|
|
|
test_strip_components.c \
|
2008-09-14 02:16:04 +00:00
|
|
|
test_symlink_dir.c \
|
2008-05-02 05:17:16 +00:00
|
|
|
test_version.c
|
|
|
|
|
2015-10-12 18:31:21 +00:00
|
|
|
SRCS.bsdtar_test= \
|
|
|
|
${TESTS_SRCS} \
|
|
|
|
list.h \
|
2008-05-02 05:17:16 +00:00
|
|
|
main.c
|
|
|
|
|
2015-12-01 22:20:04 +00:00
|
|
|
.PATH: ${_LIBARCHIVEDIR}/test_utils
|
2015-10-12 18:31:21 +00:00
|
|
|
SRCS.bsdtar_test+= test_utils.c
|
2008-05-02 05:17:16 +00:00
|
|
|
|
2015-10-12 18:31:21 +00:00
|
|
|
LIBADD.bsdtar_test= archive
|
2008-05-02 05:17:16 +00:00
|
|
|
|
2015-10-12 18:31:21 +00:00
|
|
|
list.h: ${TESTS_SRCS} Makefile
|
2015-12-01 22:20:04 +00:00
|
|
|
@(cd ${_LIBARCHIVEDIR}/tar/test && \
|
2015-10-12 18:31:21 +00:00
|
|
|
grep -h DEFINE_TEST ${.ALLSRC:N*Makefile}) > ${.TARGET}.tmp
|
|
|
|
@mv ${.TARGET}.tmp ${.TARGET}
|
2008-05-02 05:17:16 +00:00
|
|
|
|
2015-10-12 18:31:21 +00:00
|
|
|
CLEANFILES+= list.h list.h.tmp
|
2008-05-02 05:17:16 +00:00
|
|
|
|
2016-05-04 23:20:53 +00:00
|
|
|
${PACKAGE}FILES+= test_extract.tar.Z.uu
|
|
|
|
${PACKAGE}FILES+= test_extract.tar.bz2.uu
|
|
|
|
${PACKAGE}FILES+= test_extract.tar.grz.uu
|
|
|
|
${PACKAGE}FILES+= test_extract.tar.gz.uu
|
|
|
|
${PACKAGE}FILES+= test_extract.tar.lrz.uu
|
|
|
|
${PACKAGE}FILES+= test_extract.tar.lz.uu
|
2016-05-12 10:16:16 +00:00
|
|
|
${PACKAGE}FILES+= test_extract.tar.lz4.uu
|
2016-05-04 23:20:53 +00:00
|
|
|
${PACKAGE}FILES+= test_extract.tar.lzma.uu
|
|
|
|
${PACKAGE}FILES+= test_extract.tar.lzo.uu
|
|
|
|
${PACKAGE}FILES+= test_extract.tar.xz.uu
|
2016-05-12 10:16:16 +00:00
|
|
|
${PACKAGE}FILES+= test_leading_slash.tar.uu
|
2016-05-04 23:20:53 +00:00
|
|
|
${PACKAGE}FILES+= test_option_keep_newer_files.tar.Z.uu
|
2016-05-12 10:16:16 +00:00
|
|
|
${PACKAGE}FILES+= test_option_passphrase.zip.uu
|
2016-05-04 23:20:53 +00:00
|
|
|
${PACKAGE}FILES+= test_option_s.tar.Z.uu
|
|
|
|
${PACKAGE}FILES+= test_patterns_2.tar.uu
|
|
|
|
${PACKAGE}FILES+= test_patterns_3.tar.uu
|
|
|
|
${PACKAGE}FILES+= test_patterns_4.tar.uu
|
|
|
|
${PACKAGE}FILES+= test_print_longpath.tar.Z.uu
|
2008-05-02 05:17:16 +00:00
|
|
|
|
2015-10-12 18:31:21 +00:00
|
|
|
.include <bsd.test.mk>
|