1 /*-
2  * Copyright (c) 2003-2007 Tim Kientzle
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 
27 #if defined(_WIN32) && !defined(__CYGWIN__)
28 #define open _open
29 #if !defined(__BORLANDC__)
30 #ifdef lseek
31 #undef lseek
32 #endif
33 #define lseek _lseek
34 #endif
35 #define close _close
36 #endif
37 
38 DEFINE_TEST(test_open_fd)
39 {
40 	char buff[64];
41 	struct archive_entry *ae;
42 	struct archive *a;
43 	int fd;
44 	const char *skip_open_fd_err_test;
45 
46 #if defined(__BORLANDC__)
47 	fd = open("test.tar", O_RDWR | O_CREAT | O_BINARY);
48 #else
49 	fd = open("test.tar", O_RDWR | O_CREAT | O_BINARY, 0777);
50 #endif
51 	assert(fd >= 0);
52 	if (fd < 0)
53 		return;
54 
55 	/* Write an archive through this fd. */
56 	assert((a = archive_write_new()) != NULL);
57 	assertEqualIntA(a, ARCHIVE_OK, archive_write_set_format_ustar(a));
58 	assertEqualIntA(a, ARCHIVE_OK, archive_write_add_filter_none(a));
59 	assertEqualIntA(a, ARCHIVE_OK, archive_write_open_fd(a, fd));
60 
61 	/*
62 	 * Write a file to it.
63 	 */
64 	assert((ae = archive_entry_new()) != NULL);
65 	archive_entry_set_mtime(ae, 1, 0);
66 	archive_entry_copy_pathname(ae, "file");
67 	archive_entry_set_mode(ae, S_IFREG | 0755);
68 	archive_entry_set_size(ae, 8);
69 	assertEqualIntA(a, ARCHIVE_OK, archive_write_header(a, ae));
70 	archive_entry_free(ae);
71 	assertEqualIntA(a, 8, archive_write_data(a, "12345678", 9));
72 
73 	/*
74 	 * Write a second file to it.
75 	 */
76 	assert((ae = archive_entry_new()) != NULL);
77 	archive_entry_copy_pathname(ae, "file2");
78 	archive_entry_set_mode(ae, S_IFREG | 0755);
79 	archive_entry_set_size(ae, 819200);
80 	assertEqualIntA(a, ARCHIVE_OK, archive_write_header(a, ae));
81 	archive_entry_free(ae);
82 
83 	/* Close out the archive. */
84 	assertEqualIntA(a, ARCHIVE_OK, archive_write_close(a));
85 	assertEqualInt(ARCHIVE_OK, archive_write_free(a));
86 
87 	/*
88 	 * Now, read the data back.
89 	 */
90 	assert(lseek(fd, 0, SEEK_SET) == 0);
91 	assert((a = archive_read_new()) != NULL);
92 	assertEqualIntA(a, ARCHIVE_OK, archive_read_support_format_all(a));
93 	assertEqualIntA(a, ARCHIVE_OK, archive_read_support_filter_all(a));
94 	assertEqualIntA(a, ARCHIVE_OK, archive_read_open_fd(a, fd, 512));
95 
96 	assertEqualIntA(a, ARCHIVE_OK, archive_read_next_header(a, &ae));
97 	assertEqualInt(1, archive_entry_mtime(ae));
98 	assertEqualInt(0, archive_entry_mtime_nsec(ae));
99 	assertEqualInt(0, archive_entry_atime(ae));
100 	assertEqualInt(0, archive_entry_ctime(ae));
101 	assertEqualString("file", archive_entry_pathname(ae));
102 	assert((S_IFREG | 0755) == archive_entry_mode(ae));
103 	assertEqualInt(8, archive_entry_size(ae));
104 	assertEqualIntA(a, 8, archive_read_data(a, buff, 10));
105 	assertEqualMem(buff, "12345678", 8);
106 
107 	assertEqualIntA(a, ARCHIVE_OK, archive_read_next_header(a, &ae));
108 	assertEqualString("file2", archive_entry_pathname(ae));
109 	assert((S_IFREG | 0755) == archive_entry_mode(ae));
110 	assertEqualInt(819200, archive_entry_size(ae));
111 	assertEqualIntA(a, ARCHIVE_OK, archive_read_data_skip(a));
112 
113 	/* Verify the end of the archive. */
114 	assertEqualIntA(a, ARCHIVE_EOF, archive_read_next_header(a, &ae));
115 	assertEqualIntA(a, ARCHIVE_OK, archive_read_close(a));
116 	assertEqualInt(ARCHIVE_OK, archive_read_free(a));
117 	close(fd);
118 
119 	skip_open_fd_err_test = getenv("SKIP_OPEN_FD_ERR_TEST");
120 	if(skip_open_fd_err_test == NULL) {
121 		/*
122 		 * Verify some of the error handling.
123 		 */
124 		assert((a = archive_read_new()) != NULL);
125 		assertEqualIntA(a, ARCHIVE_OK, archive_read_support_format_all(a));
126 		assertEqualIntA(a, ARCHIVE_OK, archive_read_support_filter_all(a));
127 		/* FD 100 shouldn't be open. */
128 		assertEqualIntA(a, ARCHIVE_FATAL,
129 		archive_read_open_fd(a, 100, 512));
130 		assertEqualIntA(a, ARCHIVE_OK, archive_read_close(a));
131 		assertEqualInt(ARCHIVE_OK, archive_read_free(a));
132 	}
133 }
134