blob: 36f4e73b3ac2620bd392940f08b4c73a0d52ffa3 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2006 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// Access to Zip archives.
19//
20
21#define LOG_TAG "zip"
22
Mathias Agopian1f5762e2013-05-06 20:20:34 -070023#include <androidfw/ZipUtils.h>
Mathias Agopian8ae23352009-06-04 13:53:57 -070024#include <utils/Log.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080025
Mathias Agopian55e3d602009-06-05 14:56:35 -070026#include "ZipFile.h"
27
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080028#include <zlib.h>
29#define DEF_MEM_LEVEL 8 // normally in zutil.h?
30
31#include <memory.h>
32#include <sys/stat.h>
33#include <errno.h>
34#include <assert.h>
35
36using namespace android;
37
38/*
39 * Some environments require the "b", some choke on it.
40 */
41#define FILE_OPEN_RO "rb"
42#define FILE_OPEN_RW "r+b"
43#define FILE_OPEN_RW_CREATE "w+b"
44
45/* should live somewhere else? */
46static status_t errnoToStatus(int err)
47{
48 if (err == ENOENT)
49 return NAME_NOT_FOUND;
50 else if (err == EACCES)
51 return PERMISSION_DENIED;
52 else
53 return UNKNOWN_ERROR;
54}
55
56/*
57 * Open a file and parse its guts.
58 */
59status_t ZipFile::open(const char* zipFileName, int flags)
60{
61 bool newArchive = false;
62
63 assert(mZipFp == NULL); // no reopen
64
65 if ((flags & kOpenTruncate))
66 flags |= kOpenCreate; // trunc implies create
67
68 if ((flags & kOpenReadOnly) && (flags & kOpenReadWrite))
69 return INVALID_OPERATION; // not both
70 if (!((flags & kOpenReadOnly) || (flags & kOpenReadWrite)))
71 return INVALID_OPERATION; // not neither
72 if ((flags & kOpenCreate) && !(flags & kOpenReadWrite))
73 return INVALID_OPERATION; // create requires write
74
75 if (flags & kOpenTruncate) {
76 newArchive = true;
77 } else {
78 newArchive = (access(zipFileName, F_OK) != 0);
79 if (!(flags & kOpenCreate) && newArchive) {
80 /* not creating, must already exist */
Steve Block5baa3a62011-12-20 16:23:08 +000081 ALOGD("File %s does not exist", zipFileName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080082 return NAME_NOT_FOUND;
83 }
84 }
85
86 /* open the file */
87 const char* openflags;
88 if (flags & kOpenReadWrite) {
89 if (newArchive)
90 openflags = FILE_OPEN_RW_CREATE;
91 else
92 openflags = FILE_OPEN_RW;
93 } else {
94 openflags = FILE_OPEN_RO;
95 }
96 mZipFp = fopen(zipFileName, openflags);
97 if (mZipFp == NULL) {
Marco Nelissene38e90b2009-04-20 12:48:39 -070098 int err = errno;
Steve Block5baa3a62011-12-20 16:23:08 +000099 ALOGD("fopen failed: %d\n", err);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800100 return errnoToStatus(err);
Marco Nelissene38e90b2009-04-20 12:48:39 -0700101 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800102
103 status_t result;
104 if (!newArchive) {
105 /*
106 * Load the central directory. If that fails, then this probably
107 * isn't a Zip archive.
108 */
109 result = readCentralDir();
110 } else {
111 /*
112 * Newly-created. The EndOfCentralDir constructor actually
113 * sets everything to be the way we want it (all zeroes). We
114 * set mNeedCDRewrite so that we create *something* if the
115 * caller doesn't add any files. (We could also just unlink
116 * the file if it's brand new and nothing was added, but that's
117 * probably doing more than we really should -- the user might
118 * have a need for empty zip files.)
119 */
120 mNeedCDRewrite = true;
121 result = NO_ERROR;
122 }
123
124 if (flags & kOpenReadOnly)
125 mReadOnly = true;
126 else
127 assert(!mReadOnly);
128
129 return result;
130}
131
132/*
133 * Return the Nth entry in the archive.
134 */
135ZipEntry* ZipFile::getEntryByIndex(int idx) const
136{
137 if (idx < 0 || idx >= (int) mEntries.size())
138 return NULL;
139
140 return mEntries[idx];
141}
142
143/*
144 * Find an entry by name.
145 */
146ZipEntry* ZipFile::getEntryByName(const char* fileName) const
147{
148 /*
149 * Do a stupid linear string-compare search.
150 *
151 * There are various ways to speed this up, especially since it's rare
152 * to intermingle changes to the archive with "get by name" calls. We
153 * don't want to sort the mEntries vector itself, however, because
154 * it's used to recreate the Central Directory.
155 *
156 * (Hash table works, parallel list of pointers in sorted order is good.)
157 */
158 int idx;
159
160 for (idx = mEntries.size()-1; idx >= 0; idx--) {
161 ZipEntry* pEntry = mEntries[idx];
162 if (!pEntry->getDeleted() &&
163 strcmp(fileName, pEntry->getFileName()) == 0)
164 {
165 return pEntry;
166 }
167 }
168
169 return NULL;
170}
171
172/*
173 * Empty the mEntries vector.
174 */
175void ZipFile::discardEntries(void)
176{
177 int count = mEntries.size();
178
179 while (--count >= 0)
180 delete mEntries[count];
181
182 mEntries.clear();
183}
184
185
186/*
187 * Find the central directory and read the contents.
188 *
189 * The fun thing about ZIP archives is that they may or may not be
190 * readable from start to end. In some cases, notably for archives
191 * that were written to stdout, the only length information is in the
192 * central directory at the end of the file.
193 *
194 * Of course, the central directory can be followed by a variable-length
195 * comment field, so we have to scan through it backwards. The comment
196 * is at most 64K, plus we have 18 bytes for the end-of-central-dir stuff
197 * itself, plus apparently sometimes people throw random junk on the end
198 * just for the fun of it.
199 *
200 * This is all a little wobbly. If the wrong value ends up in the EOCD
201 * area, we're hosed. This appears to be the way that everbody handles
202 * it though, so we're in pretty good company if this fails.
203 */
204status_t ZipFile::readCentralDir(void)
205{
206 status_t result = NO_ERROR;
207 unsigned char* buf = NULL;
208 off_t fileLength, seekStart;
209 long readAmount;
210 int i;
211
212 fseek(mZipFp, 0, SEEK_END);
213 fileLength = ftell(mZipFp);
214 rewind(mZipFp);
215
216 /* too small to be a ZIP archive? */
217 if (fileLength < EndOfCentralDir::kEOCDLen) {
Steve Block5baa3a62011-12-20 16:23:08 +0000218 ALOGD("Length is %ld -- too small\n", (long)fileLength);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800219 result = INVALID_OPERATION;
220 goto bail;
221 }
222
223 buf = new unsigned char[EndOfCentralDir::kMaxEOCDSearch];
224 if (buf == NULL) {
Steve Block5baa3a62011-12-20 16:23:08 +0000225 ALOGD("Failure allocating %d bytes for EOCD search",
Marco Nelissene38e90b2009-04-20 12:48:39 -0700226 EndOfCentralDir::kMaxEOCDSearch);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800227 result = NO_MEMORY;
228 goto bail;
229 }
230
231 if (fileLength > EndOfCentralDir::kMaxEOCDSearch) {
232 seekStart = fileLength - EndOfCentralDir::kMaxEOCDSearch;
233 readAmount = EndOfCentralDir::kMaxEOCDSearch;
234 } else {
235 seekStart = 0;
236 readAmount = (long) fileLength;
237 }
238 if (fseek(mZipFp, seekStart, SEEK_SET) != 0) {
Steve Block5baa3a62011-12-20 16:23:08 +0000239 ALOGD("Failure seeking to end of zip at %ld", (long) seekStart);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800240 result = UNKNOWN_ERROR;
241 goto bail;
242 }
243
244 /* read the last part of the file into the buffer */
245 if (fread(buf, 1, readAmount, mZipFp) != (size_t) readAmount) {
Steve Block5baa3a62011-12-20 16:23:08 +0000246 ALOGD("short file? wanted %ld\n", readAmount);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800247 result = UNKNOWN_ERROR;
248 goto bail;
249 }
250
251 /* find the end-of-central-dir magic */
252 for (i = readAmount - 4; i >= 0; i--) {
253 if (buf[i] == 0x50 &&
254 ZipEntry::getLongLE(&buf[i]) == EndOfCentralDir::kSignature)
255 {
Steve Block71f2cf12011-10-20 11:56:00 +0100256 ALOGV("+++ Found EOCD at buf+%d\n", i);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800257 break;
258 }
259 }
260 if (i < 0) {
Steve Block5baa3a62011-12-20 16:23:08 +0000261 ALOGD("EOCD not found, not Zip\n");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800262 result = INVALID_OPERATION;
263 goto bail;
264 }
265
266 /* extract eocd values */
267 result = mEOCD.readBuf(buf + i, readAmount - i);
268 if (result != NO_ERROR) {
Steve Block5baa3a62011-12-20 16:23:08 +0000269 ALOGD("Failure reading %ld bytes of EOCD values", readAmount - i);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800270 goto bail;
Marco Nelissene38e90b2009-04-20 12:48:39 -0700271 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800272 //mEOCD.dump();
273
274 if (mEOCD.mDiskNumber != 0 || mEOCD.mDiskWithCentralDir != 0 ||
275 mEOCD.mNumEntries != mEOCD.mTotalNumEntries)
276 {
Steve Block5baa3a62011-12-20 16:23:08 +0000277 ALOGD("Archive spanning not supported\n");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800278 result = INVALID_OPERATION;
279 goto bail;
280 }
281
282 /*
283 * So far so good. "mCentralDirSize" is the size in bytes of the
284 * central directory, so we can just seek back that far to find it.
285 * We can also seek forward mCentralDirOffset bytes from the
286 * start of the file.
287 *
288 * We're not guaranteed to have the rest of the central dir in the
289 * buffer, nor are we guaranteed that the central dir will have any
290 * sort of convenient size. We need to skip to the start of it and
291 * read the header, then the other goodies.
292 *
293 * The only thing we really need right now is the file comment, which
294 * we're hoping to preserve.
295 */
296 if (fseek(mZipFp, mEOCD.mCentralDirOffset, SEEK_SET) != 0) {
Steve Block5baa3a62011-12-20 16:23:08 +0000297 ALOGD("Failure seeking to central dir offset %ld\n",
Marco Nelissene38e90b2009-04-20 12:48:39 -0700298 mEOCD.mCentralDirOffset);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800299 result = UNKNOWN_ERROR;
300 goto bail;
301 }
302
303 /*
304 * Loop through and read the central dir entries.
305 */
Steve Block71f2cf12011-10-20 11:56:00 +0100306 ALOGV("Scanning %d entries...\n", mEOCD.mTotalNumEntries);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800307 int entry;
308 for (entry = 0; entry < mEOCD.mTotalNumEntries; entry++) {
309 ZipEntry* pEntry = new ZipEntry;
310
311 result = pEntry->initFromCDE(mZipFp);
312 if (result != NO_ERROR) {
Steve Block5baa3a62011-12-20 16:23:08 +0000313 ALOGD("initFromCDE failed\n");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800314 delete pEntry;
315 goto bail;
316 }
317
318 mEntries.add(pEntry);
319 }
320
321
322 /*
323 * If all went well, we should now be back at the EOCD.
324 */
325 {
326 unsigned char checkBuf[4];
327 if (fread(checkBuf, 1, 4, mZipFp) != 4) {
Steve Block5baa3a62011-12-20 16:23:08 +0000328 ALOGD("EOCD check read failed\n");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800329 result = INVALID_OPERATION;
330 goto bail;
331 }
332 if (ZipEntry::getLongLE(checkBuf) != EndOfCentralDir::kSignature) {
Steve Block5baa3a62011-12-20 16:23:08 +0000333 ALOGD("EOCD read check failed\n");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800334 result = UNKNOWN_ERROR;
335 goto bail;
336 }
Steve Block71f2cf12011-10-20 11:56:00 +0100337 ALOGV("+++ EOCD read check passed\n");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800338 }
339
340bail:
341 delete[] buf;
342 return result;
343}
344
345
346/*
347 * Add a new file to the archive.
348 *
349 * This requires creating and populating a ZipEntry structure, and copying
350 * the data into the file at the appropriate position. The "appropriate
351 * position" is the current location of the central directory, which we
352 * casually overwrite (we can put it back later).
353 *
354 * If we were concerned about safety, we would want to make all changes
355 * in a temp file and then overwrite the original after everything was
356 * safely written. Not really a concern for us.
357 */
358status_t ZipFile::addCommon(const char* fileName, const void* data, size_t size,
359 const char* storageName, int sourceType, int compressionMethod,
360 ZipEntry** ppEntry)
361{
362 ZipEntry* pEntry = NULL;
363 status_t result = NO_ERROR;
364 long lfhPosn, startPosn, endPosn, uncompressedLen;
365 FILE* inputFp = NULL;
366 unsigned long crc;
367 time_t modWhen;
368
369 if (mReadOnly)
370 return INVALID_OPERATION;
371
372 assert(compressionMethod == ZipEntry::kCompressDeflated ||
373 compressionMethod == ZipEntry::kCompressStored);
374
375 /* make sure we're in a reasonable state */
376 assert(mZipFp != NULL);
377 assert(mEntries.size() == mEOCD.mTotalNumEntries);
378
379 /* make sure it doesn't already exist */
380 if (getEntryByName(storageName) != NULL)
381 return ALREADY_EXISTS;
382
383 if (!data) {
384 inputFp = fopen(fileName, FILE_OPEN_RO);
385 if (inputFp == NULL)
386 return errnoToStatus(errno);
387 }
388
389 if (fseek(mZipFp, mEOCD.mCentralDirOffset, SEEK_SET) != 0) {
390 result = UNKNOWN_ERROR;
391 goto bail;
392 }
393
394 pEntry = new ZipEntry;
395 pEntry->initNew(storageName, NULL);
396
397 /*
398 * From here on out, failures are more interesting.
399 */
400 mNeedCDRewrite = true;
401
402 /*
403 * Write the LFH, even though it's still mostly blank. We need it
404 * as a place-holder. In theory the LFH isn't necessary, but in
405 * practice some utilities demand it.
406 */
407 lfhPosn = ftell(mZipFp);
408 pEntry->mLFH.write(mZipFp);
409 startPosn = ftell(mZipFp);
410
411 /*
412 * Copy the data in, possibly compressing it as we go.
413 */
414 if (sourceType == ZipEntry::kCompressStored) {
415 if (compressionMethod == ZipEntry::kCompressDeflated) {
416 bool failed = false;
417 result = compressFpToFp(mZipFp, inputFp, data, size, &crc);
418 if (result != NO_ERROR) {
Steve Block5baa3a62011-12-20 16:23:08 +0000419 ALOGD("compression failed, storing\n");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800420 failed = true;
421 } else {
422 /*
423 * Make sure it has compressed "enough". This probably ought
424 * to be set through an API call, but I don't expect our
425 * criteria to change over time.
426 */
427 long src = inputFp ? ftell(inputFp) : size;
428 long dst = ftell(mZipFp) - startPosn;
429 if (dst + (dst / 10) > src) {
Steve Block5baa3a62011-12-20 16:23:08 +0000430 ALOGD("insufficient compression (src=%ld dst=%ld), storing\n",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800431 src, dst);
432 failed = true;
433 }
434 }
435
436 if (failed) {
437 compressionMethod = ZipEntry::kCompressStored;
438 if (inputFp) rewind(inputFp);
439 fseek(mZipFp, startPosn, SEEK_SET);
440 /* fall through to kCompressStored case */
441 }
442 }
443 /* handle "no compression" request, or failed compression from above */
444 if (compressionMethod == ZipEntry::kCompressStored) {
445 if (inputFp) {
446 result = copyFpToFp(mZipFp, inputFp, &crc);
447 } else {
448 result = copyDataToFp(mZipFp, data, size, &crc);
449 }
450 if (result != NO_ERROR) {
451 // don't need to truncate; happens in CDE rewrite
Steve Block5baa3a62011-12-20 16:23:08 +0000452 ALOGD("failed copying data in\n");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800453 goto bail;
454 }
455 }
456
457 // currently seeked to end of file
458 uncompressedLen = inputFp ? ftell(inputFp) : size;
459 } else if (sourceType == ZipEntry::kCompressDeflated) {
460 /* we should support uncompressed-from-compressed, but it's not
461 * important right now */
462 assert(compressionMethod == ZipEntry::kCompressDeflated);
463
464 bool scanResult;
465 int method;
466 long compressedLen;
467
468 scanResult = ZipUtils::examineGzip(inputFp, &method, &uncompressedLen,
469 &compressedLen, &crc);
470 if (!scanResult || method != ZipEntry::kCompressDeflated) {
Steve Block5baa3a62011-12-20 16:23:08 +0000471 ALOGD("this isn't a deflated gzip file?");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800472 result = UNKNOWN_ERROR;
473 goto bail;
474 }
475
476 result = copyPartialFpToFp(mZipFp, inputFp, compressedLen, NULL);
477 if (result != NO_ERROR) {
Steve Block5baa3a62011-12-20 16:23:08 +0000478 ALOGD("failed copying gzip data in\n");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800479 goto bail;
480 }
481 } else {
482 assert(false);
483 result = UNKNOWN_ERROR;
484 goto bail;
485 }
486
487 /*
488 * We could write the "Data Descriptor", but there doesn't seem to
489 * be any point since we're going to go back and write the LFH.
490 *
491 * Update file offsets.
492 */
493 endPosn = ftell(mZipFp); // seeked to end of compressed data
494
495 /*
496 * Success! Fill out new values.
497 */
498 pEntry->setDataInfo(uncompressedLen, endPosn - startPosn, crc,
499 compressionMethod);
500 modWhen = getModTime(inputFp ? fileno(inputFp) : fileno(mZipFp));
501 pEntry->setModWhen(modWhen);
502 pEntry->setLFHOffset(lfhPosn);
503 mEOCD.mNumEntries++;
504 mEOCD.mTotalNumEntries++;
505 mEOCD.mCentralDirSize = 0; // mark invalid; set by flush()
506 mEOCD.mCentralDirOffset = endPosn;
507
508 /*
509 * Go back and write the LFH.
510 */
511 if (fseek(mZipFp, lfhPosn, SEEK_SET) != 0) {
512 result = UNKNOWN_ERROR;
513 goto bail;
514 }
515 pEntry->mLFH.write(mZipFp);
516
517 /*
518 * Add pEntry to the list.
519 */
520 mEntries.add(pEntry);
521 if (ppEntry != NULL)
522 *ppEntry = pEntry;
523 pEntry = NULL;
524
525bail:
526 if (inputFp != NULL)
527 fclose(inputFp);
528 delete pEntry;
529 return result;
530}
531
532/*
533 * Add an entry by copying it from another zip file. If "padding" is
534 * nonzero, the specified number of bytes will be added to the "extra"
535 * field in the header.
536 *
537 * If "ppEntry" is non-NULL, a pointer to the new entry will be returned.
538 */
539status_t ZipFile::add(const ZipFile* pSourceZip, const ZipEntry* pSourceEntry,
540 int padding, ZipEntry** ppEntry)
541{
542 ZipEntry* pEntry = NULL;
543 status_t result;
544 long lfhPosn, endPosn;
545
546 if (mReadOnly)
547 return INVALID_OPERATION;
548
549 /* make sure we're in a reasonable state */
550 assert(mZipFp != NULL);
551 assert(mEntries.size() == mEOCD.mTotalNumEntries);
552
553 if (fseek(mZipFp, mEOCD.mCentralDirOffset, SEEK_SET) != 0) {
554 result = UNKNOWN_ERROR;
555 goto bail;
556 }
557
558 pEntry = new ZipEntry;
559 if (pEntry == NULL) {
560 result = NO_MEMORY;
561 goto bail;
562 }
563
564 result = pEntry->initFromExternal(pSourceZip, pSourceEntry);
565 if (result != NO_ERROR)
566 goto bail;
567 if (padding != 0) {
568 result = pEntry->addPadding(padding);
569 if (result != NO_ERROR)
570 goto bail;
571 }
572
573 /*
574 * From here on out, failures are more interesting.
575 */
576 mNeedCDRewrite = true;
577
578 /*
579 * Write the LFH. Since we're not recompressing the data, we already
580 * have all of the fields filled out.
581 */
582 lfhPosn = ftell(mZipFp);
583 pEntry->mLFH.write(mZipFp);
584
585 /*
586 * Copy the data over.
587 *
588 * If the "has data descriptor" flag is set, we want to copy the DD
589 * fields as well. This is a fixed-size area immediately following
590 * the data.
591 */
592 if (fseek(pSourceZip->mZipFp, pSourceEntry->getFileOffset(), SEEK_SET) != 0)
593 {
594 result = UNKNOWN_ERROR;
595 goto bail;
596 }
597
598 off_t copyLen;
599 copyLen = pSourceEntry->getCompressedLen();
600 if ((pSourceEntry->mLFH.mGPBitFlag & ZipEntry::kUsesDataDescr) != 0)
601 copyLen += ZipEntry::kDataDescriptorLen;
602
603 if (copyPartialFpToFp(mZipFp, pSourceZip->mZipFp, copyLen, NULL)
604 != NO_ERROR)
605 {
Steve Block8564c8d2012-01-05 23:22:43 +0000606 ALOGW("copy of '%s' failed\n", pEntry->mCDE.mFileName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800607 result = UNKNOWN_ERROR;
608 goto bail;
609 }
610
611 /*
612 * Update file offsets.
613 */
614 endPosn = ftell(mZipFp);
615
616 /*
617 * Success! Fill out new values.
618 */
619 pEntry->setLFHOffset(lfhPosn); // sets mCDE.mLocalHeaderRelOffset
620 mEOCD.mNumEntries++;
621 mEOCD.mTotalNumEntries++;
622 mEOCD.mCentralDirSize = 0; // mark invalid; set by flush()
623 mEOCD.mCentralDirOffset = endPosn;
624
625 /*
626 * Add pEntry to the list.
627 */
628 mEntries.add(pEntry);
629 if (ppEntry != NULL)
630 *ppEntry = pEntry;
631 pEntry = NULL;
632
633 result = NO_ERROR;
634
635bail:
636 delete pEntry;
637 return result;
638}
639
640/*
641 * Copy all of the bytes in "src" to "dst".
642 *
643 * On exit, "srcFp" will be seeked to the end of the file, and "dstFp"
644 * will be seeked immediately past the data.
645 */
646status_t ZipFile::copyFpToFp(FILE* dstFp, FILE* srcFp, unsigned long* pCRC32)
647{
648 unsigned char tmpBuf[32768];
649 size_t count;
650
651 *pCRC32 = crc32(0L, Z_NULL, 0);
652
653 while (1) {
654 count = fread(tmpBuf, 1, sizeof(tmpBuf), srcFp);
655 if (ferror(srcFp) || ferror(dstFp))
656 return errnoToStatus(errno);
657 if (count == 0)
658 break;
659
660 *pCRC32 = crc32(*pCRC32, tmpBuf, count);
661
662 if (fwrite(tmpBuf, 1, count, dstFp) != count) {
Steve Block5baa3a62011-12-20 16:23:08 +0000663 ALOGD("fwrite %d bytes failed\n", (int) count);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800664 return UNKNOWN_ERROR;
665 }
666 }
667
668 return NO_ERROR;
669}
670
671/*
672 * Copy all of the bytes in "src" to "dst".
673 *
674 * On exit, "dstFp" will be seeked immediately past the data.
675 */
676status_t ZipFile::copyDataToFp(FILE* dstFp,
677 const void* data, size_t size, unsigned long* pCRC32)
678{
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800679 *pCRC32 = crc32(0L, Z_NULL, 0);
680 if (size > 0) {
681 *pCRC32 = crc32(*pCRC32, (const unsigned char*)data, size);
682 if (fwrite(data, 1, size, dstFp) != size) {
Steve Block5baa3a62011-12-20 16:23:08 +0000683 ALOGD("fwrite %d bytes failed\n", (int) size);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800684 return UNKNOWN_ERROR;
685 }
686 }
687
688 return NO_ERROR;
689}
690
691/*
692 * Copy some of the bytes in "src" to "dst".
693 *
694 * If "pCRC32" is NULL, the CRC will not be computed.
695 *
696 * On exit, "srcFp" will be seeked to the end of the file, and "dstFp"
697 * will be seeked immediately past the data just written.
698 */
699status_t ZipFile::copyPartialFpToFp(FILE* dstFp, FILE* srcFp, long length,
700 unsigned long* pCRC32)
701{
702 unsigned char tmpBuf[32768];
703 size_t count;
704
705 if (pCRC32 != NULL)
706 *pCRC32 = crc32(0L, Z_NULL, 0);
707
708 while (length) {
709 long readSize;
710
711 readSize = sizeof(tmpBuf);
712 if (readSize > length)
713 readSize = length;
714
715 count = fread(tmpBuf, 1, readSize, srcFp);
716 if ((long) count != readSize) { // error or unexpected EOF
Steve Block5baa3a62011-12-20 16:23:08 +0000717 ALOGD("fread %d bytes failed\n", (int) readSize);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800718 return UNKNOWN_ERROR;
719 }
720
721 if (pCRC32 != NULL)
722 *pCRC32 = crc32(*pCRC32, tmpBuf, count);
723
724 if (fwrite(tmpBuf, 1, count, dstFp) != count) {
Steve Block5baa3a62011-12-20 16:23:08 +0000725 ALOGD("fwrite %d bytes failed\n", (int) count);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800726 return UNKNOWN_ERROR;
727 }
728
729 length -= readSize;
730 }
731
732 return NO_ERROR;
733}
734
735/*
736 * Compress all of the data in "srcFp" and write it to "dstFp".
737 *
738 * On exit, "srcFp" will be seeked to the end of the file, and "dstFp"
739 * will be seeked immediately past the compressed data.
740 */
741status_t ZipFile::compressFpToFp(FILE* dstFp, FILE* srcFp,
742 const void* data, size_t size, unsigned long* pCRC32)
743{
744 status_t result = NO_ERROR;
Marco Nelissene38e90b2009-04-20 12:48:39 -0700745 const size_t kBufSize = 32768;
746 unsigned char* inBuf = NULL;
747 unsigned char* outBuf = NULL;
748 z_stream zstream;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800749 bool atEof = false; // no feof() aviailable yet
Marco Nelissene38e90b2009-04-20 12:48:39 -0700750 unsigned long crc;
751 int zerr;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800752
Marco Nelissene38e90b2009-04-20 12:48:39 -0700753 /*
754 * Create an input buffer and an output buffer.
755 */
756 inBuf = new unsigned char[kBufSize];
757 outBuf = new unsigned char[kBufSize];
758 if (inBuf == NULL || outBuf == NULL) {
759 result = NO_MEMORY;
760 goto bail;
761 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800762
Marco Nelissene38e90b2009-04-20 12:48:39 -0700763 /*
764 * Initialize the zlib stream.
765 */
766 memset(&zstream, 0, sizeof(zstream));
767 zstream.zalloc = Z_NULL;
768 zstream.zfree = Z_NULL;
769 zstream.opaque = Z_NULL;
770 zstream.next_in = NULL;
771 zstream.avail_in = 0;
772 zstream.next_out = outBuf;
773 zstream.avail_out = kBufSize;
774 zstream.data_type = Z_UNKNOWN;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800775
Marco Nelissene38e90b2009-04-20 12:48:39 -0700776 zerr = deflateInit2(&zstream, Z_BEST_COMPRESSION,
777 Z_DEFLATED, -MAX_WBITS, DEF_MEM_LEVEL, Z_DEFAULT_STRATEGY);
778 if (zerr != Z_OK) {
779 result = UNKNOWN_ERROR;
780 if (zerr == Z_VERSION_ERROR) {
Steve Block3762c312012-01-06 19:20:56 +0000781 ALOGE("Installed zlib is not compatible with linked version (%s)\n",
Marco Nelissene38e90b2009-04-20 12:48:39 -0700782 ZLIB_VERSION);
783 } else {
Steve Block5baa3a62011-12-20 16:23:08 +0000784 ALOGD("Call to deflateInit2 failed (zerr=%d)\n", zerr);
Marco Nelissene38e90b2009-04-20 12:48:39 -0700785 }
786 goto bail;
787 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800788
Marco Nelissene38e90b2009-04-20 12:48:39 -0700789 crc = crc32(0L, Z_NULL, 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800790
Marco Nelissene38e90b2009-04-20 12:48:39 -0700791 /*
792 * Loop while we have data.
793 */
794 do {
795 size_t getSize;
796 int flush;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800797
Marco Nelissene38e90b2009-04-20 12:48:39 -0700798 /* only read if the input buffer is empty */
799 if (zstream.avail_in == 0 && !atEof) {
Steve Block71f2cf12011-10-20 11:56:00 +0100800 ALOGV("+++ reading %d bytes\n", (int)kBufSize);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800801 if (data) {
802 getSize = size > kBufSize ? kBufSize : size;
803 memcpy(inBuf, data, getSize);
804 data = ((const char*)data) + getSize;
805 size -= getSize;
806 } else {
807 getSize = fread(inBuf, 1, kBufSize, srcFp);
808 if (ferror(srcFp)) {
Steve Block5baa3a62011-12-20 16:23:08 +0000809 ALOGD("deflate read failed (errno=%d)\n", errno);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800810 goto z_bail;
811 }
812 }
813 if (getSize < kBufSize) {
Steve Block71f2cf12011-10-20 11:56:00 +0100814 ALOGV("+++ got %d bytes, EOF reached\n",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800815 (int)getSize);
816 atEof = true;
817 }
818
Marco Nelissene38e90b2009-04-20 12:48:39 -0700819 crc = crc32(crc, inBuf, getSize);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800820
Marco Nelissene38e90b2009-04-20 12:48:39 -0700821 zstream.next_in = inBuf;
822 zstream.avail_in = getSize;
823 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800824
Marco Nelissene38e90b2009-04-20 12:48:39 -0700825 if (atEof)
826 flush = Z_FINISH; /* tell zlib that we're done */
827 else
828 flush = Z_NO_FLUSH; /* more to come! */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800829
Marco Nelissene38e90b2009-04-20 12:48:39 -0700830 zerr = deflate(&zstream, flush);
831 if (zerr != Z_OK && zerr != Z_STREAM_END) {
Steve Block5baa3a62011-12-20 16:23:08 +0000832 ALOGD("zlib deflate call failed (zerr=%d)\n", zerr);
Marco Nelissene38e90b2009-04-20 12:48:39 -0700833 result = UNKNOWN_ERROR;
834 goto z_bail;
835 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800836
Marco Nelissene38e90b2009-04-20 12:48:39 -0700837 /* write when we're full or when we're done */
838 if (zstream.avail_out == 0 ||
839 (zerr == Z_STREAM_END && zstream.avail_out != (uInt) kBufSize))
840 {
Steve Block71f2cf12011-10-20 11:56:00 +0100841 ALOGV("+++ writing %d bytes\n", (int) (zstream.next_out - outBuf));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800842 if (fwrite(outBuf, 1, zstream.next_out - outBuf, dstFp) !=
843 (size_t)(zstream.next_out - outBuf))
844 {
Steve Block5baa3a62011-12-20 16:23:08 +0000845 ALOGD("write %d failed in deflate\n",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800846 (int) (zstream.next_out - outBuf));
Marco Nelissene38e90b2009-04-20 12:48:39 -0700847 goto z_bail;
848 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800849
Marco Nelissene38e90b2009-04-20 12:48:39 -0700850 zstream.next_out = outBuf;
851 zstream.avail_out = kBufSize;
852 }
853 } while (zerr == Z_OK);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800854
Marco Nelissene38e90b2009-04-20 12:48:39 -0700855 assert(zerr == Z_STREAM_END); /* other errors should've been caught */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800856
Marco Nelissene38e90b2009-04-20 12:48:39 -0700857 *pCRC32 = crc;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800858
859z_bail:
Marco Nelissene38e90b2009-04-20 12:48:39 -0700860 deflateEnd(&zstream); /* free up any allocated structures */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800861
862bail:
Marco Nelissene38e90b2009-04-20 12:48:39 -0700863 delete[] inBuf;
864 delete[] outBuf;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800865
Marco Nelissene38e90b2009-04-20 12:48:39 -0700866 return result;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800867}
868
869/*
870 * Mark an entry as deleted.
871 *
872 * We will eventually need to crunch the file down, but if several files
873 * are being removed (perhaps as part of an "update" process) we can make
874 * things considerably faster by deferring the removal to "flush" time.
875 */
876status_t ZipFile::remove(ZipEntry* pEntry)
877{
878 /*
879 * Should verify that pEntry is actually part of this archive, and
880 * not some stray ZipEntry from a different file.
881 */
882
883 /* mark entry as deleted, and mark archive as dirty */
884 pEntry->setDeleted();
885 mNeedCDRewrite = true;
886 return NO_ERROR;
887}
888
889/*
890 * Flush any pending writes.
891 *
892 * In particular, this will crunch out deleted entries, and write the
893 * Central Directory and EOCD if we have stomped on them.
894 */
895status_t ZipFile::flush(void)
896{
897 status_t result = NO_ERROR;
898 long eocdPosn;
899 int i, count;
900
901 if (mReadOnly)
902 return INVALID_OPERATION;
903 if (!mNeedCDRewrite)
904 return NO_ERROR;
905
906 assert(mZipFp != NULL);
907
908 result = crunchArchive();
909 if (result != NO_ERROR)
910 return result;
911
912 if (fseek(mZipFp, mEOCD.mCentralDirOffset, SEEK_SET) != 0)
913 return UNKNOWN_ERROR;
914
915 count = mEntries.size();
916 for (i = 0; i < count; i++) {
917 ZipEntry* pEntry = mEntries[i];
918 pEntry->mCDE.write(mZipFp);
919 }
920
921 eocdPosn = ftell(mZipFp);
922 mEOCD.mCentralDirSize = eocdPosn - mEOCD.mCentralDirOffset;
923
924 mEOCD.write(mZipFp);
925
926 /*
927 * If we had some stuff bloat up during compression and get replaced
928 * with plain files, or if we deleted some entries, there's a lot
929 * of wasted space at the end of the file. Remove it now.
930 */
931 if (ftruncate(fileno(mZipFp), ftell(mZipFp)) != 0) {
Steve Block8564c8d2012-01-05 23:22:43 +0000932 ALOGW("ftruncate failed %ld: %s\n", ftell(mZipFp), strerror(errno));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800933 // not fatal
934 }
935
936 /* should we clear the "newly added" flag in all entries now? */
937
938 mNeedCDRewrite = false;
939 return NO_ERROR;
940}
941
942/*
943 * Crunch deleted files out of an archive by shifting the later files down.
944 *
945 * Because we're not using a temp file, we do the operation inside the
946 * current file.
947 */
948status_t ZipFile::crunchArchive(void)
949{
950 status_t result = NO_ERROR;
951 int i, count;
952 long delCount, adjust;
953
954#if 0
955 printf("CONTENTS:\n");
956 for (i = 0; i < (int) mEntries.size(); i++) {
957 printf(" %d: lfhOff=%ld del=%d\n",
958 i, mEntries[i]->getLFHOffset(), mEntries[i]->getDeleted());
959 }
960 printf(" END is %ld\n", (long) mEOCD.mCentralDirOffset);
961#endif
962
963 /*
964 * Roll through the set of files, shifting them as appropriate. We
965 * could probably get a slight performance improvement by sliding
966 * multiple files down at once (because we could use larger reads
967 * when operating on batches of small files), but it's not that useful.
968 */
969 count = mEntries.size();
970 delCount = adjust = 0;
971 for (i = 0; i < count; i++) {
972 ZipEntry* pEntry = mEntries[i];
973 long span;
974
975 if (pEntry->getLFHOffset() != 0) {
976 long nextOffset;
977
978 /* Get the length of this entry by finding the offset
979 * of the next entry. Directory entries don't have
980 * file offsets, so we need to find the next non-directory
981 * entry.
982 */
983 nextOffset = 0;
984 for (int ii = i+1; nextOffset == 0 && ii < count; ii++)
985 nextOffset = mEntries[ii]->getLFHOffset();
986 if (nextOffset == 0)
987 nextOffset = mEOCD.mCentralDirOffset;
988 span = nextOffset - pEntry->getLFHOffset();
989
990 assert(span >= ZipEntry::LocalFileHeader::kLFHLen);
991 } else {
992 /* This is a directory entry. It doesn't have
993 * any actual file contents, so there's no need to
994 * move anything.
995 */
996 span = 0;
997 }
998
999 //printf("+++ %d: off=%ld span=%ld del=%d [count=%d]\n",
1000 // i, pEntry->getLFHOffset(), span, pEntry->getDeleted(), count);
1001
1002 if (pEntry->getDeleted()) {
1003 adjust += span;
1004 delCount++;
1005
1006 delete pEntry;
1007 mEntries.removeAt(i);
1008
1009 /* adjust loop control */
1010 count--;
1011 i--;
1012 } else if (span != 0 && adjust > 0) {
1013 /* shuffle this entry back */
1014 //printf("+++ Shuffling '%s' back %ld\n",
1015 // pEntry->getFileName(), adjust);
1016 result = filemove(mZipFp, pEntry->getLFHOffset() - adjust,
1017 pEntry->getLFHOffset(), span);
1018 if (result != NO_ERROR) {
1019 /* this is why you use a temp file */
Steve Block3762c312012-01-06 19:20:56 +00001020 ALOGE("error during crunch - archive is toast\n");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001021 return result;
1022 }
1023
1024 pEntry->setLFHOffset(pEntry->getLFHOffset() - adjust);
1025 }
1026 }
1027
1028 /*
1029 * Fix EOCD info. We have to wait until the end to do some of this
1030 * because we use mCentralDirOffset to determine "span" for the
1031 * last entry.
1032 */
1033 mEOCD.mCentralDirOffset -= adjust;
1034 mEOCD.mNumEntries -= delCount;
1035 mEOCD.mTotalNumEntries -= delCount;
1036 mEOCD.mCentralDirSize = 0; // mark invalid; set by flush()
1037
1038 assert(mEOCD.mNumEntries == mEOCD.mTotalNumEntries);
1039 assert(mEOCD.mNumEntries == count);
1040
1041 return result;
1042}
1043
1044/*
1045 * Works like memmove(), but on pieces of a file.
1046 */
1047status_t ZipFile::filemove(FILE* fp, off_t dst, off_t src, size_t n)
1048{
1049 if (dst == src || n <= 0)
1050 return NO_ERROR;
1051
1052 unsigned char readBuf[32768];
1053
1054 if (dst < src) {
1055 /* shift stuff toward start of file; must read from start */
1056 while (n != 0) {
1057 size_t getSize = sizeof(readBuf);
1058 if (getSize > n)
1059 getSize = n;
1060
1061 if (fseek(fp, (long) src, SEEK_SET) != 0) {
Steve Block5baa3a62011-12-20 16:23:08 +00001062 ALOGD("filemove src seek %ld failed\n", (long) src);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001063 return UNKNOWN_ERROR;
1064 }
1065
1066 if (fread(readBuf, 1, getSize, fp) != getSize) {
Steve Block5baa3a62011-12-20 16:23:08 +00001067 ALOGD("filemove read %ld off=%ld failed\n",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001068 (long) getSize, (long) src);
1069 return UNKNOWN_ERROR;
1070 }
1071
1072 if (fseek(fp, (long) dst, SEEK_SET) != 0) {
Steve Block5baa3a62011-12-20 16:23:08 +00001073 ALOGD("filemove dst seek %ld failed\n", (long) dst);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001074 return UNKNOWN_ERROR;
1075 }
1076
1077 if (fwrite(readBuf, 1, getSize, fp) != getSize) {
Steve Block5baa3a62011-12-20 16:23:08 +00001078 ALOGD("filemove write %ld off=%ld failed\n",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001079 (long) getSize, (long) dst);
1080 return UNKNOWN_ERROR;
1081 }
1082
1083 src += getSize;
1084 dst += getSize;
1085 n -= getSize;
1086 }
1087 } else {
1088 /* shift stuff toward end of file; must read from end */
1089 assert(false); // write this someday, maybe
1090 return UNKNOWN_ERROR;
1091 }
1092
1093 return NO_ERROR;
1094}
1095
1096
1097/*
1098 * Get the modification time from a file descriptor.
1099 */
1100time_t ZipFile::getModTime(int fd)
1101{
1102 struct stat sb;
1103
1104 if (fstat(fd, &sb) < 0) {
Steve Block5baa3a62011-12-20 16:23:08 +00001105 ALOGD("HEY: fstat on fd %d failed\n", fd);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001106 return (time_t) -1;
1107 }
1108
1109 return sb.st_mtime;
1110}
1111
1112
1113#if 0 /* this is a bad idea */
1114/*
1115 * Get a copy of the Zip file descriptor.
1116 *
1117 * We don't allow this if the file was opened read-write because we tend
1118 * to leave the file contents in an uncertain state between calls to
1119 * flush(). The duplicated file descriptor should only be valid for reads.
1120 */
1121int ZipFile::getZipFd(void) const
1122{
1123 if (!mReadOnly)
1124 return INVALID_OPERATION;
1125 assert(mZipFp != NULL);
1126
1127 int fd;
1128 fd = dup(fileno(mZipFp));
1129 if (fd < 0) {
Steve Block5baa3a62011-12-20 16:23:08 +00001130 ALOGD("didn't work, errno=%d\n", errno);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001131 }
1132
1133 return fd;
1134}
1135#endif
1136
1137
1138#if 0
1139/*
1140 * Expand data.
1141 */
1142bool ZipFile::uncompress(const ZipEntry* pEntry, void* buf) const
1143{
1144 return false;
1145}
1146#endif
1147
1148// free the memory when you're done
1149void* ZipFile::uncompress(const ZipEntry* entry)
1150{
1151 size_t unlen = entry->getUncompressedLen();
1152 size_t clen = entry->getCompressedLen();
1153
1154 void* buf = malloc(unlen);
1155 if (buf == NULL) {
1156 return NULL;
1157 }
1158
1159 fseek(mZipFp, 0, SEEK_SET);
1160
1161 off_t offset = entry->getFileOffset();
1162 if (fseek(mZipFp, offset, SEEK_SET) != 0) {
1163 goto bail;
1164 }
1165
1166 switch (entry->getCompressionMethod())
1167 {
1168 case ZipEntry::kCompressStored: {
1169 ssize_t amt = fread(buf, 1, unlen, mZipFp);
1170 if (amt != (ssize_t)unlen) {
1171 goto bail;
1172 }
1173#if 0
1174 printf("data...\n");
1175 const unsigned char* p = (unsigned char*)buf;
1176 const unsigned char* end = p+unlen;
1177 for (int i=0; i<32 && p < end; i++) {
1178 printf("0x%08x ", (int)(offset+(i*0x10)));
1179 for (int j=0; j<0x10 && p < end; j++) {
1180 printf(" %02x", *p);
1181 p++;
1182 }
1183 printf("\n");
1184 }
1185#endif
1186
1187 }
1188 break;
1189 case ZipEntry::kCompressDeflated: {
1190 if (!ZipUtils::inflateToBuffer(mZipFp, buf, unlen, clen)) {
1191 goto bail;
1192 }
1193 }
1194 break;
1195 default:
1196 goto bail;
1197 }
1198 return buf;
1199
1200bail:
1201 free(buf);
1202 return NULL;
1203}
1204
1205
1206/*
1207 * ===========================================================================
Marco Nelissene38e90b2009-04-20 12:48:39 -07001208 * ZipFile::EndOfCentralDir
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001209 * ===========================================================================
1210 */
1211
1212/*
1213 * Read the end-of-central-dir fields.
1214 *
1215 * "buf" should be positioned at the EOCD signature, and should contain
1216 * the entire EOCD area including the comment.
1217 */
1218status_t ZipFile::EndOfCentralDir::readBuf(const unsigned char* buf, int len)
1219{
1220 /* don't allow re-use */
1221 assert(mComment == NULL);
1222
1223 if (len < kEOCDLen) {
1224 /* looks like ZIP file got truncated */
Steve Block5baa3a62011-12-20 16:23:08 +00001225 ALOGD(" Zip EOCD: expected >= %d bytes, found %d\n",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001226 kEOCDLen, len);
1227 return INVALID_OPERATION;
1228 }
1229
1230 /* this should probably be an assert() */
1231 if (ZipEntry::getLongLE(&buf[0x00]) != kSignature)
1232 return UNKNOWN_ERROR;
1233
1234 mDiskNumber = ZipEntry::getShortLE(&buf[0x04]);
1235 mDiskWithCentralDir = ZipEntry::getShortLE(&buf[0x06]);
1236 mNumEntries = ZipEntry::getShortLE(&buf[0x08]);
1237 mTotalNumEntries = ZipEntry::getShortLE(&buf[0x0a]);
1238 mCentralDirSize = ZipEntry::getLongLE(&buf[0x0c]);
1239 mCentralDirOffset = ZipEntry::getLongLE(&buf[0x10]);
1240 mCommentLen = ZipEntry::getShortLE(&buf[0x14]);
1241
1242 // TODO: validate mCentralDirOffset
1243
1244 if (mCommentLen > 0) {
1245 if (kEOCDLen + mCommentLen > len) {
Steve Block5baa3a62011-12-20 16:23:08 +00001246 ALOGD("EOCD(%d) + comment(%d) exceeds len (%d)\n",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001247 kEOCDLen, mCommentLen, len);
1248 return UNKNOWN_ERROR;
1249 }
1250 mComment = new unsigned char[mCommentLen];
1251 memcpy(mComment, buf + kEOCDLen, mCommentLen);
1252 }
1253
1254 return NO_ERROR;
1255}
1256
1257/*
1258 * Write an end-of-central-directory section.
1259 */
1260status_t ZipFile::EndOfCentralDir::write(FILE* fp)
1261{
1262 unsigned char buf[kEOCDLen];
1263
1264 ZipEntry::putLongLE(&buf[0x00], kSignature);
1265 ZipEntry::putShortLE(&buf[0x04], mDiskNumber);
1266 ZipEntry::putShortLE(&buf[0x06], mDiskWithCentralDir);
1267 ZipEntry::putShortLE(&buf[0x08], mNumEntries);
1268 ZipEntry::putShortLE(&buf[0x0a], mTotalNumEntries);
1269 ZipEntry::putLongLE(&buf[0x0c], mCentralDirSize);
1270 ZipEntry::putLongLE(&buf[0x10], mCentralDirOffset);
1271 ZipEntry::putShortLE(&buf[0x14], mCommentLen);
1272
1273 if (fwrite(buf, 1, kEOCDLen, fp) != kEOCDLen)
1274 return UNKNOWN_ERROR;
1275 if (mCommentLen > 0) {
1276 assert(mComment != NULL);
1277 if (fwrite(mComment, mCommentLen, 1, fp) != mCommentLen)
1278 return UNKNOWN_ERROR;
1279 }
1280
1281 return NO_ERROR;
1282}
1283
1284/*
1285 * Dump the contents of an EndOfCentralDir object.
1286 */
1287void ZipFile::EndOfCentralDir::dump(void) const
1288{
Steve Block5baa3a62011-12-20 16:23:08 +00001289 ALOGD(" EndOfCentralDir contents:\n");
1290 ALOGD(" diskNum=%u diskWCD=%u numEnt=%u totalNumEnt=%u\n",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001291 mDiskNumber, mDiskWithCentralDir, mNumEntries, mTotalNumEntries);
Steve Block5baa3a62011-12-20 16:23:08 +00001292 ALOGD(" centDirSize=%lu centDirOff=%lu commentLen=%u\n",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001293 mCentralDirSize, mCentralDirOffset, mCommentLen);
1294}
1295