blob: 715ea30ce80313e9143fffb9c1b267e4dea92702 [file] [log] [blame]
/*
* Copyright (C) 2021 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
//! Utilities for zip handling of APK files.
use anyhow::{ensure, Result};
use bytes::{Buf, BufMut};
use std::io::{Read, Seek};
use zip::ZipArchive;
#[cfg(test)]
use std::io::SeekFrom;
const EOCD_SIZE_WITHOUT_COMMENT: usize = 22;
const EOCD_CENTRAL_DIRECTORY_SIZE_FIELD_OFFSET: usize = 12;
const EOCD_CENTRAL_DIRECTORY_OFFSET_FIELD_OFFSET: usize = 16;
/// End of Central Directory signature
const EOCD_SIGNATURE: u32 = 0x06054b50;
const ZIP64_MARK: u32 = 0xffffffff;
#[derive(Debug, PartialEq, Eq)]
pub struct ZipSections {
pub central_directory_offset: u32,
pub central_directory_size: u32,
pub eocd_offset: u32,
pub eocd_size: u32,
}
/// Discover the layout of a zip file.
pub fn zip_sections<R: Read + Seek>(mut reader: R) -> Result<ZipSections> {
// open a zip to parse EOCD
let archive = ZipArchive::new(reader)?;
let eocd_size = archive.comment().len() + EOCD_SIZE_WITHOUT_COMMENT;
ensure!(archive.offset() == 0, "Invalid ZIP: offset should be 0, but {}.", archive.offset());
// retrieve reader back
reader = archive.into_inner();
// the current position should point EOCD offset
let eocd_offset = reader.stream_position()? as u32;
let mut eocd = vec![0u8; eocd_size];
reader.read_exact(&mut eocd)?;
ensure!(
(&eocd[0..]).get_u32_le() == EOCD_SIGNATURE,
"Invalid ZIP: ZipArchive::new() should point EOCD after reading."
);
let (central_directory_size, central_directory_offset) = get_central_directory(&eocd)?;
ensure!(
central_directory_offset != ZIP64_MARK && central_directory_size != ZIP64_MARK,
"Unsupported ZIP: ZIP64 is not supported."
);
ensure!(
central_directory_offset + central_directory_size == eocd_offset,
"Invalid ZIP: EOCD should follow CD with no extra data or overlap."
);
Ok(ZipSections {
central_directory_offset,
central_directory_size,
eocd_offset,
eocd_size: eocd_size as u32,
})
}
fn get_central_directory(buf: &[u8]) -> Result<(u32, u32)> {
ensure!(buf.len() >= EOCD_SIZE_WITHOUT_COMMENT, "Invalid EOCD size: {}", buf.len());
let mut buf = &buf[EOCD_CENTRAL_DIRECTORY_SIZE_FIELD_OFFSET..];
let size = buf.get_u32_le();
let offset = buf.get_u32_le();
Ok((size, offset))
}
/// Update EOCD's central_directory_offset field.
pub fn set_central_directory_offset(buf: &mut [u8], value: u32) -> Result<()> {
ensure!(buf.len() >= EOCD_SIZE_WITHOUT_COMMENT, "Invalid EOCD size: {}", buf.len());
(&mut buf[EOCD_CENTRAL_DIRECTORY_OFFSET_FIELD_OFFSET..]).put_u32_le(value);
Ok(())
}
#[cfg(test)]
mod tests {
use super::*;
use crate::testing::assert_contains;
use byteorder::{LittleEndian, ReadBytesExt};
use std::fs::File;
use std::io::{Cursor, Write};
use zip::{write::FileOptions, ZipWriter};
fn create_test_zip() -> Cursor<Vec<u8>> {
let mut writer = ZipWriter::new(Cursor::new(Vec::new()));
writer.start_file("testfile", FileOptions::default()).unwrap();
writer.write_all(b"testcontent").unwrap();
writer.finish().unwrap()
}
#[test]
fn test_zip_sections() {
let mut cursor = create_test_zip();
let sections = zip_sections(&mut cursor).unwrap();
assert_eq!(
sections.eocd_offset,
(cursor.get_ref().len() - EOCD_SIZE_WITHOUT_COMMENT) as u32
);
}
#[test]
fn test_reject_if_extra_data_between_cd_and_eocd() {
// prepare normal zip
let buf = create_test_zip().into_inner();
// insert garbage between CD and EOCD.
// by the way, to mock zip-rs, use CD as garbage. This is implementation detail of zip-rs,
// which reads CD at (eocd_offset - cd_size) instead of at cd_offset from EOCD.
let (pre_eocd, eocd) = buf.split_at(buf.len() - EOCD_SIZE_WITHOUT_COMMENT);
let (_, cd_offset) = get_central_directory(eocd).unwrap();
let cd = &pre_eocd[cd_offset as usize..];
// ZipArchive::new() succeeds, but we should reject
let res = zip_sections(Cursor::new([pre_eocd, cd, eocd].concat()));
assert!(res.is_err());
assert_contains(&res.err().unwrap().to_string(), "Invalid ZIP: offset should be 0");
}
#[test]
fn test_zip_sections_with_apk() {
let mut reader = File::open("tests/data/v3-only-with-stamp.apk").unwrap();
let sections = zip_sections(&mut reader).unwrap();
// Checks Central directory.
assert_eq!(
sections.central_directory_offset + sections.central_directory_size,
sections.eocd_offset
);
// Checks EOCD.
reader.seek(SeekFrom::Start(sections.eocd_offset as u64)).unwrap();
assert_eq!(reader.read_u32::<LittleEndian>().unwrap(), EOCD_SIGNATURE);
assert_eq!(
reader.metadata().unwrap().len(),
(sections.eocd_offset + sections.eocd_size) as u64
);
}
}