c9c8fd8de95d7c056a15ddce892fbc5083563441
[platform/upstream/libzip.git] / lib / zip_file_get_offset.c
1 /*
2   zip_file_get_offset.c -- get offset of file data in archive.
3   Copyright (C) 1999-2021 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 <libzip@nih.at>
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 _zip_file_get_offset(const zip_t *za, zip_uint64_t idx, zip_error_t *error) {
49     zip_uint64_t offset;
50     zip_int32_t size;
51
52     if (za->entry[idx].orig == NULL) {
53         zip_error_set(error, ZIP_ER_INTERNAL, 0);
54         return 0;
55     }
56
57     offset = za->entry[idx].orig->offset;
58
59     if (zip_source_seek(za->src, (zip_int64_t)offset, SEEK_SET) < 0) {
60         _zip_error_set_from_source(error, za->src);
61         return 0;
62     }
63
64     /* TODO: cache? */
65     if ((size = _zip_dirent_size(za->src, ZIP_EF_LOCAL, error)) < 0)
66         return 0;
67
68     if (offset + (zip_uint32_t)size > ZIP_INT64_MAX) {
69         zip_error_set(error, ZIP_ER_SEEK, EFBIG);
70         return 0;
71     }
72
73     return offset + (zip_uint32_t)size;
74 }
75
76 zip_uint64_t
77 _zip_file_get_end(const zip_t *za, zip_uint64_t index, zip_error_t *error) {
78     zip_uint64_t offset;
79     zip_dirent_t *entry;
80
81     if ((offset = _zip_file_get_offset(za, index, error)) == 0) {
82         return 0;
83     }
84
85     entry = za->entry[index].orig;
86
87     if (offset + entry->comp_size < offset || offset + entry->comp_size > ZIP_INT64_MAX) {
88         zip_error_set(error, ZIP_ER_SEEK, EFBIG);
89         return 0;
90     }
91     offset += entry->comp_size;
92
93     if (entry->bitflags & ZIP_GPBF_DATA_DESCRIPTOR) {
94         zip_uint8_t buf[4];
95         if (zip_source_seek(za->src, (zip_int64_t)offset, SEEK_SET) < 0) {
96             _zip_error_set_from_source(error, za->src);
97             return 0;
98         }
99         if (zip_source_read(za->src, buf, 4) != 4) {
100             _zip_error_set_from_source(error, za->src);
101             return 0;
102         }
103         if (memcmp(buf, DATADES_MAGIC, 4) == 0) {
104             offset += 4;
105         }
106         offset += 12;
107         if (_zip_dirent_needs_zip64(entry, 0)) {
108             offset += 8;
109         }
110         if (offset > ZIP_INT64_MAX) {
111             zip_error_set(error, ZIP_ER_SEEK, EFBIG);
112             return 0;
113         }
114     }
115
116     return offset;
117 }