Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 368f3d27 authored by Tianjie Xu's avatar Tianjie Xu Committed by android-build-merger
Browse files

Do Not Merge: Fix out of bound read in libziparchive

am: a8d932f2

Change-Id: I8f373dc3d2e4ecb3aecd5a43f32e3ef01474e712
parents fa961006 a8d932f2
Loading
Loading
Loading
Loading
+8 −5
Original line number Diff line number Diff line
@@ -622,6 +622,14 @@ static int32_t ParseZipArchive(ZipArchive* archive) {
  const uint8_t* const cd_end = cd_ptr + cd_length;
  const uint8_t* ptr = cd_ptr;
  for (uint16_t i = 0; i < num_entries; i++) {
    if (ptr > cd_end - sizeof(CentralDirectoryRecord)) {
      ALOGW("Zip: ran off the end (at %" PRIu16 ")", i);
#if defined(__ANDROID__)
      android_errorWriteLog(0x534e4554, "36392138");
#endif
      goto bail;
    }

    const CentralDirectoryRecord* cdr =
        reinterpret_cast<const CentralDirectoryRecord*>(ptr);
    if (cdr->record_signature != CentralDirectoryRecord::kSignature) {
@@ -629,11 +637,6 @@ static int32_t ParseZipArchive(ZipArchive* archive) {
      goto bail;
    }

    if (ptr + sizeof(CentralDirectoryRecord) > cd_end) {
      ALOGW("Zip: ran off the end (at %" PRIu16 ")", i);
      goto bail;
    }

    const off64_t local_header_offset = cdr->local_file_header_offset;
    if (local_header_offset >= archive->directory_offset) {
      ALOGW("Zip: bad LFH offset %" PRId64 " at entry %" PRIu16, (int64_t)local_header_offset, i);