/src/libzip/lib/zip_file_get_offset.c
Line | Count | Source (jump to first uncovered line) |
1 | | /* |
2 | | zip_file_get_offset.c -- get offset of file data in archive. |
3 | | Copyright (C) 1999-2022 Dieter Baron and Thomas Klausner |
4 | | |
5 | | This file is part of libzip, a library to manipulate ZIP archives. |
6 | | The authors can be contacted at <info@libzip.org> |
7 | | |
8 | | Redistribution and use in source and binary forms, with or without |
9 | | modification, are permitted provided that the following conditions |
10 | | are met: |
11 | | 1. Redistributions of source code must retain the above copyright |
12 | | notice, this list of conditions and the following disclaimer. |
13 | | 2. Redistributions in binary form must reproduce the above copyright |
14 | | notice, this list of conditions and the following disclaimer in |
15 | | the documentation and/or other materials provided with the |
16 | | distribution. |
17 | | 3. The names of the authors may not be used to endorse or promote |
18 | | products derived from this software without specific prior |
19 | | written permission. |
20 | | |
21 | | THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS |
22 | | OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
23 | | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
24 | | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY |
25 | | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
26 | | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE |
27 | | GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
28 | | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER |
29 | | IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
30 | | OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN |
31 | | IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
32 | | */ |
33 | | |
34 | | |
35 | | #include <stdio.h> |
36 | | #include <string.h> |
37 | | |
38 | | #include "zipint.h" |
39 | | |
40 | | |
41 | | /* _zip_file_get_offset(za, ze): |
42 | | Returns the offset of the file data for entry ze. |
43 | | |
44 | | On error, fills in za->error and returns 0. |
45 | | */ |
46 | | |
47 | | zip_uint64_t |
48 | 0 | _zip_file_get_offset(const zip_t *za, zip_uint64_t idx, zip_error_t *error) { |
49 | 0 | zip_uint64_t offset; |
50 | 0 | zip_int32_t size; |
51 | |
|
52 | 0 | if (za->entry[idx].orig == NULL) { |
53 | 0 | zip_error_set(error, ZIP_ER_INTERNAL, 0); |
54 | 0 | return 0; |
55 | 0 | } |
56 | | |
57 | 0 | offset = za->entry[idx].orig->offset; |
58 | |
|
59 | 0 | if (zip_source_seek(za->src, (zip_int64_t)offset, SEEK_SET) < 0) { |
60 | 0 | zip_error_set_from_source(error, za->src); |
61 | 0 | return 0; |
62 | 0 | } |
63 | | |
64 | | /* TODO: cache? */ |
65 | 0 | if ((size = _zip_dirent_size(za->src, ZIP_EF_LOCAL, error)) < 0) |
66 | 0 | return 0; |
67 | | |
68 | 0 | if (offset + (zip_uint32_t)size > ZIP_INT64_MAX) { |
69 | 0 | zip_error_set(error, ZIP_ER_SEEK, EFBIG); |
70 | 0 | return 0; |
71 | 0 | } |
72 | | |
73 | 0 | return offset + (zip_uint32_t)size; |
74 | 0 | } |
75 | | |
76 | | zip_uint64_t |
77 | 0 | _zip_file_get_end(const zip_t *za, zip_uint64_t index, zip_error_t *error) { |
78 | 0 | zip_uint64_t offset; |
79 | 0 | zip_dirent_t *entry; |
80 | |
|
81 | 0 | if ((offset = _zip_file_get_offset(za, index, error)) == 0) { |
82 | 0 | return 0; |
83 | 0 | } |
84 | | |
85 | 0 | entry = za->entry[index].orig; |
86 | |
|
87 | 0 | if (offset + entry->comp_size < offset || offset + entry->comp_size > ZIP_INT64_MAX) { |
88 | 0 | zip_error_set(error, ZIP_ER_SEEK, EFBIG); |
89 | 0 | return 0; |
90 | 0 | } |
91 | 0 | offset += entry->comp_size; |
92 | |
|
93 | 0 | if (entry->bitflags & ZIP_GPBF_DATA_DESCRIPTOR) { |
94 | 0 | zip_uint8_t buf[4]; |
95 | 0 | if (zip_source_seek(za->src, (zip_int64_t)offset, SEEK_SET) < 0) { |
96 | 0 | zip_error_set_from_source(error, za->src); |
97 | 0 | return 0; |
98 | 0 | } |
99 | 0 | if (zip_source_read(za->src, buf, 4) != 4) { |
100 | 0 | zip_error_set_from_source(error, za->src); |
101 | 0 | return 0; |
102 | 0 | } |
103 | 0 | if (memcmp(buf, DATADES_MAGIC, 4) == 0) { |
104 | 0 | offset += 4; |
105 | 0 | } |
106 | 0 | offset += 12; |
107 | 0 | if (_zip_dirent_needs_zip64(entry, 0)) { |
108 | 0 | offset += 8; |
109 | 0 | } |
110 | 0 | if (offset > ZIP_INT64_MAX) { |
111 | 0 | zip_error_set(error, ZIP_ER_SEEK, EFBIG); |
112 | 0 | return 0; |
113 | 0 | } |
114 | 0 | } |
115 | | |
116 | 0 | return offset; |
117 | 0 | } |