Rizin
unix-like reverse engineering framework and cli tools
zip_file_get_offset.c
Go to the documentation of this file.
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 <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 
51 
52  if (za->entry[idx].orig == NULL) {
54  return 0;
55  }
56 
58 
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 
70  return 0;
71  }
72 
73  return offset + (zip_uint32_t)size;
74 }
75 
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) {
89  return 0;
90  }
91  offset += entry->comp_size;
92 
93  if (entry->bitflags & ZIP_GPBF_DATA_DESCRIPTOR) {
94  zip_uint8_t buf[4];
97  return 0;
98  }
99  if (zip_source_read(za->src, buf, 4) != 4) {
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) {
112  return 0;
113  }
114  }
115 
116  return offset;
117 }
#define NULL
Definition: cris-opc.c:27
voidpf void uLong size
Definition: ioapi.h:138
voidpf uLong offset
Definition: ioapi.h:144
voidpf void * buf
Definition: ioapi.h:138
#define ZIP_ER_INTERNAL
Definition: zip.h:125
ZIP_EXTERN void zip_error_set(zip_error_t *_Nullable, int, int)
Definition: zip_error.c:126
#define ZIP_ER_SEEK
Definition: zip.h:109
ZIP_EXTERN zip_int64_t zip_source_read(zip_source_t *_Nonnull, void *_Nonnull, zip_uint64_t)
ZIP_EXTERN int zip_source_seek(zip_source_t *_Nonnull, zip_int64_t, int)
int idx
Definition: setup.py:197
#define EFBIG
Definition: sftypes.h:137
Definition: zipcmp.c:77
zip_uint64_t offset
Definition: zipint.h:347
zip_dirent_t * orig
Definition: zipint.h:409
Definition: zip.h:284
Definition: zipint.h:278
zip_source_t * src
Definition: zipint.h:279
zip_entry_t * entry
Definition: zipint.h:294
void error(const char *msg)
Definition: untgz.c:593
#define SEEK_SET
Definition: zip.c:88
zip_int32_t _zip_dirent_size(zip_source_t *src, zip_uint16_t flags, zip_error_t *error)
Definition: zip_dirent.c:721
bool _zip_dirent_needs_zip64(const zip_dirent_t *de, zip_flags_t flags)
Definition: zip_dirent.c:296
void _zip_error_set_from_source(zip_error_t *err, zip_source_t *src)
Definition: zip_error.c:135
zip_uint64_t _zip_file_get_end(const zip_t *za, zip_uint64_t index, zip_error_t *error)
zip_uint64_t _zip_file_get_offset(const zip_t *za, zip_uint64_t idx, zip_error_t *error)
uint64_t zip_uint64_t
Definition: zipconf.h:39
uint32_t zip_uint32_t
Definition: zipconf.h:37
uint8_t zip_uint8_t
Definition: zipconf.h:33
int32_t zip_int32_t
Definition: zipconf.h:36
#define ZIP_INT64_MAX
Definition: zipconf.h:54
int64_t zip_int64_t
Definition: zipconf.h:38
#define DATADES_MAGIC
Definition: zipint.h:54
#define ZIP_EF_LOCAL
Definition: zipint.h:243
#define ZIP_GPBF_DATA_DESCRIPTOR
Definition: zipint.h:237
zip_t * za
Definition: ziptool.c:79