1 /*
2 * Copyright (C) 2007 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 //
18 // Misc zip/gzip utility functions.
19 //
20
21 #define LOG_TAG "ziputil"
22
23 #include "android-base/file.h"
24 #include <androidfw/ZipUtils.h>
25 #include <utils/Log.h>
26 #include <utils/Compat.h>
27 #include <ziparchive/zip_archive.h>
28
29 #include <stdlib.h>
30 #include <string.h>
31 #include <assert.h>
32
33 #include <zlib.h>
34
35 using namespace android;
36
37 // TODO: This can go away once the only remaining usage in aapt goes away.
38 class FileReader final : public zip_archive::Reader {
39 public:
FileReader(FILE * fp)40 explicit FileReader(FILE* fp) : Reader(), mFp(fp), mCurrentOffset(0) {
41 }
42
ReadAtOffset(uint8_t * buf,size_t len,off64_t offset) const43 bool ReadAtOffset(uint8_t* buf, size_t len, off64_t offset) const override {
44 // Data is usually requested sequentially, so this helps avoid pointless
45 // fseeks every time we perform a read. There's an impedence mismatch
46 // here because the original API was designed around pread and pwrite.
47 if (offset != mCurrentOffset) {
48 if (fseek(mFp, offset, SEEK_SET) != 0) {
49 return false;
50 }
51
52 mCurrentOffset = offset;
53 }
54
55 size_t read = fread(buf, 1, len, mFp);
56 if (read != len) {
57 return false;
58 }
59
60 mCurrentOffset += read;
61 return true;
62 }
63
64 private:
65 FILE* mFp;
66 mutable off64_t mCurrentOffset;
67 };
68
69 class FdReader final : public zip_archive::Reader {
70 public:
FdReader(int fd)71 explicit FdReader(int fd) : mFd(fd) {
72 }
73
ReadAtOffset(uint8_t * buf,size_t len,off64_t offset) const74 bool ReadAtOffset(uint8_t* buf, size_t len, off64_t offset) const override {
75 return android::base::ReadFullyAtOffset(mFd, buf, len, offset);
76 }
77
78 private:
79 const int mFd;
80 };
81
82 class BufferReader final : public zip_archive::Reader {
83 public:
BufferReader(incfs::map_ptr<void> input,size_t inputSize)84 BufferReader(incfs::map_ptr<void> input, size_t inputSize) : Reader(),
85 mInput(input.convert<uint8_t>()),
86 mInputSize(inputSize) {
87 }
88
ReadAtOffset(uint8_t * buf,size_t len,off64_t offset) const89 bool ReadAtOffset(uint8_t* buf, size_t len, off64_t offset) const override {
90 auto in = AccessAtOffset(buf, len, offset);
91 if (!in) {
92 return false;
93 }
94 memcpy(buf, in, len);
95 return true;
96 }
97
AccessAtOffset(uint8_t *,size_t len,off64_t offset) const98 const uint8_t* AccessAtOffset(uint8_t*, size_t len, off64_t offset) const override {
99 if (offset > mInputSize - len) {
100 return nullptr;
101 }
102 const incfs::map_ptr<uint8_t> pos = mInput.offset(offset);
103 if (!pos.verify(len)) {
104 return nullptr;
105 }
106 return pos.unsafe_ptr();
107 }
108
IsZeroCopy() const109 bool IsZeroCopy() const override {
110 return true;
111 }
112
113 private:
114 const incfs::map_ptr<uint8_t> mInput;
115 const size_t mInputSize;
116 };
117
118 class BufferWriter final : public zip_archive::Writer {
119 public:
BufferWriter(void * output,size_t outputSize)120 BufferWriter(void* output, size_t outputSize) :
121 mOutput(reinterpret_cast<uint8_t*>(output)), mOutputSize(outputSize), mBytesWritten(0) {
122 }
123
Append(uint8_t * buf,size_t bufSize)124 bool Append(uint8_t* buf, size_t bufSize) override {
125 if (mBytesWritten + bufSize > mOutputSize) {
126 return false;
127 }
128
129 memcpy(mOutput + mBytesWritten, buf, bufSize);
130 mBytesWritten += bufSize;
131 return true;
132 }
133
GetBuffer(size_t length)134 Buffer GetBuffer(size_t length) override {
135 const auto remaining_size = mOutputSize - mBytesWritten;
136 return remaining_size >= length
137 ? Buffer(mOutput + mBytesWritten, remaining_size) : Buffer();
138 }
139
140 private:
141 uint8_t* const mOutput;
142 const size_t mOutputSize;
143 size_t mBytesWritten;
144 };
145
inflateToBuffer(FILE * fp,void * buf,long uncompressedLen,long compressedLen)146 /*static*/ bool ZipUtils::inflateToBuffer(FILE* fp, void* buf,
147 long uncompressedLen, long compressedLen)
148 {
149 FileReader reader(fp);
150 BufferWriter writer(buf, uncompressedLen);
151 return (zip_archive::Inflate(reader, compressedLen, uncompressedLen, &writer, nullptr) == 0);
152 }
153
inflateToBuffer(int fd,void * buf,long uncompressedLen,long compressedLen)154 /*static*/ bool ZipUtils::inflateToBuffer(int fd, void* buf,
155 long uncompressedLen, long compressedLen)
156 {
157 FdReader reader(fd);
158 BufferWriter writer(buf, uncompressedLen);
159 return (zip_archive::Inflate(reader, compressedLen, uncompressedLen, &writer, nullptr) == 0);
160 }
161
inflateToBuffer(incfs::map_ptr<void> in,void * buf,long uncompressedLen,long compressedLen)162 /*static*/ bool ZipUtils::inflateToBuffer(incfs::map_ptr<void> in, void* buf,
163 long uncompressedLen, long compressedLen)
164 {
165 BufferReader reader(in, compressedLen);
166 BufferWriter writer(buf, uncompressedLen);
167 return (zip_archive::Inflate(reader, compressedLen, uncompressedLen, &writer, nullptr) == 0);
168 }
169
get4LE(const unsigned char * buf)170 static inline unsigned long get4LE(const unsigned char* buf) {
171 return buf[0] | (buf[1] << 8) | (buf[2] << 16) | (buf[3] << 24);
172 }
173
174 /*
175 * Look at the contents of a gzip archive. We want to know where the
176 * data starts, and how long it will be after it is uncompressed.
177 *
178 * We expect to find the CRC and length as the last 8 bytes on the file.
179 * This is a pretty reasonable thing to expect for locally-compressed
180 * files, but there's a small chance that some extra padding got thrown
181 * on (the man page talks about compressed data written to tape). We
182 * don't currently deal with that here. If "gzip -l" whines, we're going
183 * to fail too.
184 *
185 * On exit, "fp" is pointing at the start of the compressed data.
186 */
examineGzip(FILE * fp,int * pCompressionMethod,long * pUncompressedLen,long * pCompressedLen,unsigned long * pCRC32)187 /*static*/ bool ZipUtils::examineGzip(FILE* fp, int* pCompressionMethod,
188 long* pUncompressedLen, long* pCompressedLen, unsigned long* pCRC32)
189 {
190 enum { // flags
191 FTEXT = 0x01,
192 FHCRC = 0x02,
193 FEXTRA = 0x04,
194 FNAME = 0x08,
195 FCOMMENT = 0x10,
196 };
197 int ic;
198 int method, flags;
199 int i;
200
201 ic = getc(fp);
202 if (ic != 0x1f || getc(fp) != 0x8b)
203 return false; // not gzip
204 method = getc(fp);
205 flags = getc(fp);
206
207 /* quick sanity checks */
208 if (method == EOF || flags == EOF)
209 return false;
210 if (method != kCompressDeflated)
211 return false;
212
213 /* skip over 4 bytes of mod time, 1 byte XFL, 1 byte OS */
214 for (i = 0; i < 6; i++)
215 (void) getc(fp);
216 /* consume "extra" field, if present */
217 if ((flags & FEXTRA) != 0) {
218 int len;
219
220 len = getc(fp);
221 len |= getc(fp) << 8;
222 while (len-- && getc(fp) != EOF)
223 ;
224 }
225 /* consume filename, if present */
226 if ((flags & FNAME) != 0) {
227 do {
228 ic = getc(fp);
229 } while (ic != 0 && ic != EOF);
230 }
231 /* consume comment, if present */
232 if ((flags & FCOMMENT) != 0) {
233 do {
234 ic = getc(fp);
235 } while (ic != 0 && ic != EOF);
236 }
237 /* consume 16-bit header CRC, if present */
238 if ((flags & FHCRC) != 0) {
239 (void) getc(fp);
240 (void) getc(fp);
241 }
242
243 if (feof(fp) || ferror(fp))
244 return false;
245
246 /* seek to the end; CRC and length are in the last 8 bytes */
247 long curPosn = ftell(fp);
248 unsigned char buf[8];
249 fseek(fp, -8, SEEK_END);
250 *pCompressedLen = ftell(fp) - curPosn;
251
252 if (fread(buf, 1, 8, fp) != 8)
253 return false;
254 /* seek back to start of compressed data */
255 fseek(fp, curPosn, SEEK_SET);
256
257 *pCompressionMethod = method;
258 *pCRC32 = get4LE(&buf[0]);
259 *pUncompressedLen = get4LE(&buf[4]);
260
261 return true;
262 }
263