1 /*-
2  * Copyright (c) 2014 Michihiro NAKAJIMA
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
15  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17  * IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
18  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24  */
25 #include "test.h"
26 __FBSDID("$FreeBSD");
27 
28 #if defined(__BORLANDC__) || (defined(_MSC_VER) &&  _MSC_VER <= 1300)
29 # define	LITERAL_LL(x)	x##i64
30 #else
31 # define	LITERAL_LL(x)	x##ll
32 #endif
33 /*
34  * To test skip a sparse file entry, this test does not read file data.
35  */
DEFINE_TEST(test_read_format_gtar_sparse_skip_entry)36 DEFINE_TEST(test_read_format_gtar_sparse_skip_entry)
37 {
38 	const char *refname = "test_read_format_gtar_sparse_skip_entry.tar.Z.uu";
39 	struct archive *a;
40 	struct archive_entry *ae;
41 	const void *p;
42 	size_t s;
43 	int64_t o;
44 
45 	copy_reference_file(refname);
46 	assert((a = archive_read_new()) != NULL);
47 	assertEqualIntA(a, ARCHIVE_OK, archive_read_support_filter_all(a));
48 	assertEqualIntA(a, ARCHIVE_OK, archive_read_support_format_all(a));
49 	assertEqualIntA(a, ARCHIVE_OK,
50 	    archive_read_open_filename(a, refname, 10240));
51 
52 	/* Verify regular first file. */
53 	assertEqualIntA(a, ARCHIVE_OK, archive_read_next_header(a, &ae));
54 	assertEqualString("a", archive_entry_pathname(ae));
55 	assertEqualInt(LITERAL_LL(10737418244), archive_entry_size(ae));
56 	assertEqualInt(archive_entry_is_encrypted(ae), 0);
57 	assertEqualIntA(a, archive_read_has_encrypted_entries(a),
58 	    ARCHIVE_READ_FORMAT_ENCRYPTION_UNSUPPORTED);
59 
60 	/* Verify regular second file. */
61 	assertEqualIntA(a, ARCHIVE_OK, archive_read_next_header(a, &ae));
62 	assertEqualString("b", archive_entry_pathname(ae));
63 	assertEqualInt(4, archive_entry_size(ae));
64 	assertEqualInt(archive_entry_is_encrypted(ae), 0);
65 	assertEqualIntA(a, archive_read_has_encrypted_entries(a),
66 	    ARCHIVE_READ_FORMAT_ENCRYPTION_UNSUPPORTED);
67 
68 
69 	/* End of archive. */
70 	assertEqualIntA(a, ARCHIVE_EOF, archive_read_next_header(a, &ae));
71 
72 	/* Verify archive format. */
73 	assertEqualIntA(a, ARCHIVE_FILTER_COMPRESS, archive_filter_code(a, 0));
74 	assertEqualIntA(a, ARCHIVE_FORMAT_TAR_PAX_INTERCHANGE,
75 	    archive_format(a));
76 
77 	/* Close the archive. */
78 	assertEqualInt(ARCHIVE_OK, archive_read_close(a));
79 	assertEqualInt(ARCHIVE_OK, archive_read_free(a));
80 
81 
82 	/*
83 	 * Read just one block of a sparse file and skip it.
84 	 */
85 	assert((a = archive_read_new()) != NULL);
86 	assertEqualIntA(a, ARCHIVE_OK, archive_read_support_filter_all(a));
87 	assertEqualIntA(a, ARCHIVE_OK, archive_read_support_format_all(a));
88 	assertEqualIntA(a, ARCHIVE_OK,
89 	    archive_read_open_filename(a, refname, 10240));
90 
91 	/* Verify regular first file. */
92 	assertEqualIntA(a, ARCHIVE_OK, archive_read_next_header(a, &ae));
93 	assertEqualString("a", archive_entry_pathname(ae));
94 	assertEqualInt(LITERAL_LL(10737418244), archive_entry_size(ae));
95 	assertEqualInt(archive_entry_is_encrypted(ae), 0);
96 	assertEqualIntA(a, archive_read_has_encrypted_entries(a),
97 	    ARCHIVE_READ_FORMAT_ENCRYPTION_UNSUPPORTED);
98 	assertEqualInt(0, archive_read_data_block(a, &p, &s, &o));
99 	assertEqualInt(4096, s);
100 	assertEqualInt(0, o);
101 
102 
103 	/* Verify regular second file. */
104 	assertEqualIntA(a, ARCHIVE_OK, archive_read_next_header(a, &ae));
105 	assertEqualString("b", archive_entry_pathname(ae));
106 	assertEqualInt(4, archive_entry_size(ae));
107 	assertEqualInt(archive_entry_is_encrypted(ae), 0);
108 	assertEqualIntA(a, archive_read_has_encrypted_entries(a),
109 	    ARCHIVE_READ_FORMAT_ENCRYPTION_UNSUPPORTED);
110 
111 
112 	/* End of archive. */
113 	assertEqualIntA(a, ARCHIVE_EOF, archive_read_next_header(a, &ae));
114 
115 	/* Verify archive format. */
116 	assertEqualIntA(a, ARCHIVE_FILTER_COMPRESS, archive_filter_code(a, 0));
117 	assertEqualIntA(a, ARCHIVE_FORMAT_TAR_PAX_INTERCHANGE,
118 	    archive_format(a));
119 
120 	/* Close the archive. */
121 	assertEqualInt(ARCHIVE_OK, archive_read_close(a));
122 	assertEqualInt(ARCHIVE_OK, archive_read_free(a));
123 }
124 
125