/src/libzip/lib/zip_stat_index.c
Line | Count | Source (jump to first uncovered line) |
1 | | /* |
2 | | zip_stat_index.c -- get information about file by index |
3 | | Copyright (C) 1999-2024 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 "zipint.h" |
36 | | |
37 | | |
38 | | ZIP_EXTERN int |
39 | 0 | zip_stat_index(zip_t *za, zip_uint64_t index, zip_flags_t flags, zip_stat_t *st) { |
40 | 0 | const char *name; |
41 | 0 | zip_dirent_t *de; |
42 | 0 | zip_entry_t *entry; |
43 | |
|
44 | 0 | if ((de = _zip_get_dirent(za, index, flags, NULL)) == NULL) { |
45 | 0 | return -1; |
46 | 0 | } |
47 | | |
48 | 0 | if ((name = zip_get_name(za, index, flags)) == NULL) { |
49 | 0 | return -1; |
50 | 0 | } |
51 | | |
52 | 0 | entry = za->entry + index; |
53 | |
|
54 | 0 | if ((flags & ZIP_FL_UNCHANGED) == 0 && ZIP_ENTRY_DATA_CHANGED(za->entry + index)) { |
55 | |
|
56 | 0 | if (zip_source_stat(entry->source, st) < 0) { |
57 | 0 | zip_error_set(&za->error, ZIP_ER_CHANGED, 0); |
58 | 0 | return -1; |
59 | 0 | } |
60 | | |
61 | 0 | if (ZIP_CM_IS_DEFAULT(de->comp_method)) { |
62 | 0 | if (!(st->valid & ZIP_STAT_COMP_METHOD) || st->comp_method == ZIP_CM_STORE) { |
63 | 0 | st->valid &= ~(ZIP_STAT_COMP_SIZE|ZIP_STAT_COMP_METHOD); |
64 | 0 | } |
65 | 0 | } |
66 | 0 | else { |
67 | 0 | if ((st->valid & ZIP_STAT_COMP_METHOD) && st->comp_method != de->comp_method) { |
68 | 0 | st->valid &= ~ZIP_STAT_COMP_SIZE; |
69 | 0 | } |
70 | 0 | st->valid |= ZIP_STAT_COMP_METHOD; |
71 | 0 | st->comp_method = de->comp_method; |
72 | 0 | } |
73 | |
|
74 | 0 | if (((st->valid & (ZIP_STAT_COMP_METHOD|ZIP_STAT_SIZE)) == (ZIP_STAT_COMP_METHOD|ZIP_STAT_SIZE)) && st->comp_method == ZIP_CM_STORE) { |
75 | 0 | st->valid |= ZIP_STAT_COMP_SIZE; |
76 | 0 | st->comp_size = st->size; |
77 | 0 | } |
78 | |
|
79 | 0 | if (entry->changes != NULL && entry->changes->changed & ZIP_DIRENT_LAST_MOD) { |
80 | 0 | st->mtime = zip_dirent_get_last_mod_mtime(de); |
81 | 0 | st->valid |= ZIP_STAT_MTIME; |
82 | 0 | } |
83 | 0 | } |
84 | 0 | else { |
85 | 0 | zip_stat_init(st); |
86 | |
|
87 | 0 | st->crc = de->crc; |
88 | 0 | st->size = de->uncomp_size; |
89 | 0 | st->mtime = zip_dirent_get_last_mod_mtime(de); |
90 | 0 | st->comp_size = de->comp_size; |
91 | 0 | st->comp_method = (zip_uint16_t)de->comp_method; |
92 | 0 | st->encryption_method = de->encryption_method; |
93 | 0 | st->valid = (de->crc_valid ? ZIP_STAT_CRC : 0) | ZIP_STAT_SIZE | ZIP_STAT_MTIME | ZIP_STAT_COMP_SIZE | ZIP_STAT_COMP_METHOD | ZIP_STAT_ENCRYPTION_METHOD; |
94 | 0 | if (entry->changes != NULL && entry->changes->changed & ZIP_DIRENT_COMP_METHOD) { |
95 | 0 | st->valid &= ~ZIP_STAT_COMP_SIZE; |
96 | 0 | } |
97 | 0 | } |
98 | | |
99 | 0 | if ((za->ch_flags & ZIP_AFL_WANT_TORRENTZIP) && (flags & ZIP_FL_UNCHANGED) == 0) { |
100 | 0 | if (za->torrent_mtime == 0) { |
101 | 0 | zip_dostime_t dostime = {0xbc00, 0x2198}; |
102 | 0 | za->torrent_mtime = _zip_d2u_time(&dostime); |
103 | 0 | } |
104 | 0 | st->comp_method = ZIP_CM_DEFLATE; |
105 | 0 | st->mtime = za->torrent_mtime; |
106 | 0 | st->valid |= ZIP_STAT_MTIME | ZIP_STAT_COMP_METHOD; |
107 | 0 | st->valid &= ~ZIP_STAT_COMP_SIZE; |
108 | 0 | } |
109 | |
|
110 | 0 | st->index = index; |
111 | 0 | st->name = name; |
112 | 0 | st->valid |= ZIP_STAT_INDEX | ZIP_STAT_NAME; |
113 | |
|
114 | 0 | return 0; |
115 | 0 | } |