1
Fork 0
mirror of https://github.com/redstrate/Physis.git synced 2025-04-20 11:47:46 +00:00
physis/src/patch.rs

590 lines
16 KiB
Rust
Raw Normal View History

2022-08-16 11:52:07 -04:00
use crate::common::Region;
use crate::sqpack::read_data_block_patch;
2022-07-19 19:29:41 -04:00
use binrw::binread;
use binrw::binrw;
2022-08-16 11:52:07 -04:00
use binrw::BinRead;
2022-07-19 19:29:41 -04:00
use core::cmp::min;
2022-08-16 11:52:07 -04:00
use std::fs;
use std::fs::{File, OpenOptions};
use std::io::{Seek, SeekFrom, Write};
use std::path::PathBuf;
#[binread]
#[derive(Debug)]
struct PatchHeader {
#[br(temp)]
#[br(count = 7)]
#[br(pad_before = 1)]
#[br(pad_after = 4)]
#[br(assert(magic == b"ZIPATCH"))]
2022-08-16 11:52:07 -04:00
magic: Vec<u8>,
}
2022-07-19 19:29:41 -04:00
#[derive(BinRead, Debug)]
struct PatchChunk {
#[br(big)]
size: u32,
chunk_type: ChunkType,
#[br(if(chunk_type != ChunkType::EndOfFile))]
2022-08-16 11:52:07 -04:00
crc32: u32,
2022-07-19 19:29:41 -04:00
}
#[derive(BinRead, PartialEq, Debug)]
enum ChunkType {
2022-08-16 11:52:07 -04:00
#[br(magic = b"FHDR")]
FileHeader(
#[br(pad_before = 2)]
#[br(pad_after = 1)]
2022-08-16 11:52:07 -04:00
FileHeaderChunk,
),
#[br(magic = b"APLY")]
ApplyOption(ApplyOptionChunk),
#[br(magic = b"ADIR")]
AddDirectory(DirectoryChunk),
#[br(magic = b"DELD")]
DeleteDirectory(DirectoryChunk),
#[br(magic = b"SQPK")]
Sqpk(SqpkChunk),
#[br(magic = b"EOF_")]
EndOfFile,
2022-07-19 19:29:41 -04:00
}
#[derive(BinRead, PartialEq, Debug)]
enum FileHeaderChunk {
2022-08-16 11:52:07 -04:00
#[br(magic = 2u8)]
Version2(FileHeaderChunk2),
#[br(magic = 3u8)]
Version3(FileHeaderChunk3),
}
2022-07-19 19:29:41 -04:00
#[derive(BinRead, PartialEq, Debug)]
#[br(big)]
struct FileHeaderChunk2 {
#[br(count = 4)]
#[br(map = | x: Vec < u8 > | String::from_utf8(x).unwrap())]
name: String,
#[br(pad_before = 8)]
2022-08-16 11:52:07 -04:00
depot_hash: u32,
}
2022-07-19 19:29:41 -04:00
#[derive(BinRead, PartialEq, Debug)]
#[br(big)]
struct FileHeaderChunk3 {
2022-07-19 19:29:41 -04:00
#[br(count = 4)]
#[br(map = | x: Vec < u8 > | String::from_utf8(x).unwrap())]
name: String,
entry_files: u32,
2022-08-16 11:52:07 -04:00
add_directories: u32,
delete_directories: u32,
delete_data_size: u32,
delete_data_size_2: u32,
minor_version: u32,
repository_name: u32,
commands: u32,
2022-07-19 19:29:41 -04:00
sqpk_add_commands: u32,
sqpk_delete_commands: u32,
sqpk_expand_commands: u32,
sqpk_header_commands: u32,
#[br(pad_after = 0xB8)]
2022-08-16 11:52:07 -04:00
sqpk_file_commands: u32,
2022-07-19 19:29:41 -04:00
}
#[binread]
#[br(repr = u32)]
#[br(big)]
#[derive(PartialEq, Debug)]
enum ApplyOption {
IgnoreMissing = 1,
IgnoreOldMismatch = 2,
}
2022-07-19 19:29:41 -04:00
#[binrw::binread]
#[derive(PartialEq, Debug)]
struct ApplyOptionChunk {
#[br(pad_after = 4)]
option: ApplyOption,
#[br(big)]
2022-07-19 19:29:41 -04:00
value: u32,
}
#[binrw::binread]
#[derive(PartialEq, Debug)]
struct DirectoryChunk {
2022-07-19 19:29:41 -04:00
#[br(temp)]
path_length: u32,
#[br(count = path_length)]
#[br(map = | x: Vec < u8 > | String::from_utf8(x).unwrap())]
name: String,
}
#[binread]
#[derive(PartialEq, Debug)]
enum SqpkOperation {
2022-08-16 11:52:07 -04:00
#[br(magic = b'A')]
AddData(SqpkAddData),
#[br(magic = b'D')]
DeleteData(SqpkDeleteData),
#[br(magic = b'E')]
ExpandData(SqpkDeleteData),
#[br(magic = b'F')]
FileOperation(SqpkFileOperationData),
#[br(magic = b'H')]
HeaderUpdate(SqpkHeaderUpdateData),
#[br(magic = b'I')]
IndexAddDelete(SqpkIndexData),
#[br(magic = b'X')]
PatchInfo(SqpkPatchInfo),
#[br(magic = b'T')]
TargetInfo(SqpkTargetInfo),
2022-07-19 19:29:41 -04:00
}
#[derive(BinRead, PartialEq, Debug)]
enum SqpkIndexCommand {
2022-08-16 11:52:07 -04:00
#[br(magic = b'A')]
Add,
#[br(magic = b'D')]
Delete,
2022-07-19 19:29:41 -04:00
}
#[derive(BinRead, PartialEq, Debug)]
#[br(big)]
struct SqpkIndexData {
2022-08-16 11:52:07 -04:00
command: SqpkIndexCommand,
2022-07-19 19:29:41 -04:00
#[br(map = | x: u8 | x != 0)]
#[br(pad_after = 1)]
2022-08-16 11:52:07 -04:00
is_synonym: bool,
2022-07-19 19:29:41 -04:00
2022-08-16 11:52:07 -04:00
main_id: u16,
sub_id: u16,
file_id: u32,
2022-07-19 19:29:41 -04:00
2022-08-16 11:52:07 -04:00
file_hash: u64,
2022-07-19 19:29:41 -04:00
2022-08-16 11:52:07 -04:00
block_offset: u32,
block_number: u32,
2022-07-19 19:29:41 -04:00
}
#[derive(BinRead, PartialEq, Debug)]
struct SqpkPatchInfo {
status: u8,
#[br(pad_after = 1)]
version: u8,
#[br(big)]
2022-08-16 11:52:07 -04:00
install_size: u64,
2022-07-19 19:29:41 -04:00
}
#[binread]
#[derive(PartialEq, Debug)]
enum SqpkFileOperation {
2022-08-16 11:52:07 -04:00
#[br(magic = b'A')]
AddFile,
#[br(magic = b'R')]
RemoveAll,
#[br(magic = b'D')]
DeleteFile,
2022-07-19 19:29:41 -04:00
}
#[derive(BinRead, PartialEq, Debug)]
#[br(big)]
struct SqpkAddData {
#[br(pad_before = 3)]
2022-08-16 11:52:07 -04:00
main_id: u16,
sub_id: u16,
file_id: u32,
2022-07-19 19:29:41 -04:00
#[br(map = | x : i32 | x << 7 )]
2022-08-16 11:52:07 -04:00
block_offset: i32,
2022-07-19 19:29:41 -04:00
#[br(map = | x : i32 | x << 7 )]
2022-08-16 11:52:07 -04:00
block_number: i32,
2022-07-19 19:29:41 -04:00
#[br(map = | x : i32 | x << 7 )]
2022-08-16 11:52:07 -04:00
block_delete_number: i32,
2022-07-19 19:29:41 -04:00
#[br(count = block_number)]
2022-08-16 11:52:07 -04:00
block_data: Vec<u8>,
2022-07-19 19:29:41 -04:00
}
#[derive(BinRead, PartialEq, Debug)]
#[br(big)]
struct SqpkDeleteData {
#[br(pad_before = 3)]
2022-08-16 11:52:07 -04:00
main_id: u16,
sub_id: u16,
file_id: u32,
2022-07-19 19:29:41 -04:00
#[br(map = | x : i32 | x << 7 )]
2022-08-16 11:52:07 -04:00
block_offset: i32,
2022-07-19 19:29:41 -04:00
#[br(pad_after = 4)]
2022-08-16 11:52:07 -04:00
block_number: i32,
2022-07-19 19:29:41 -04:00
}
#[binread]
#[derive(PartialEq, Debug)]
enum TargetFileKind {
2022-08-16 11:52:07 -04:00
#[br(magic = b'D')]
Dat,
#[br(magic = b'I')]
Index,
2022-07-19 19:29:41 -04:00
}
#[binread]
#[derive(PartialEq, Debug)]
enum TargetHeaderKind {
2022-08-16 11:52:07 -04:00
#[br(magic = b'V')]
Version,
#[br(magic = b'I')]
Index,
#[br(magic = b'D')]
Data,
2022-07-19 19:29:41 -04:00
}
#[derive(BinRead, PartialEq, Debug)]
#[br(big)]
struct SqpkHeaderUpdateData {
2022-08-16 11:52:07 -04:00
file_kind: TargetFileKind,
header_kind: TargetHeaderKind,
2022-07-19 19:29:41 -04:00
#[br(pad_before = 1)]
2022-08-16 11:52:07 -04:00
main_id: u16,
sub_id: u16,
file_id: u32,
2022-07-19 19:29:41 -04:00
#[br(count = 1024)]
2022-08-16 11:52:07 -04:00
header_data: Vec<u8>,
2022-07-19 19:29:41 -04:00
}
#[binread]
#[derive(PartialEq, Debug)]
#[br(big)]
struct SqpkFileOperationData {
#[br(pad_after = 2)]
operation: SqpkFileOperation,
2022-08-16 11:52:07 -04:00
offset: i64,
file_size: u64,
2022-07-19 19:29:41 -04:00
#[br(temp)]
2022-08-16 11:52:07 -04:00
path_length: u32,
expansion_id: u32,
2022-07-19 19:29:41 -04:00
#[br(count = path_length)]
#[br(map = | x: Vec < u8 > | String::from_utf8(x[..x.len() - 1].to_vec()).unwrap())]
path: String,
}
#[binrw]
#[brw(repr = u16)]
#[derive(Debug, PartialEq)]
enum PlatformId {
Windows,
PS3,
PS4,
}
fn get_platform_string(id: &PlatformId) -> &'static str {
match &id {
PlatformId::Windows => "win32",
PlatformId::PS3 => "ps3", // TODO: lol are these even correct? i have no idea
2022-08-16 11:52:07 -04:00
PlatformId::PS4 => "ps4",
}
}
2022-07-19 19:29:41 -04:00
#[derive(BinRead, PartialEq, Debug)]
#[br(big)]
struct SqpkTargetInfo {
#[br(pad_before = 3)]
2022-08-16 11:52:07 -04:00
platform: PlatformId,
region: Region,
#[br(map = | x : i16 | x == 1)]
2022-08-16 11:52:07 -04:00
is_debug: bool,
version: u16,
2022-07-19 19:29:41 -04:00
#[br(little)]
2022-08-16 11:52:07 -04:00
deleted_data_size: u64,
2022-07-19 19:29:41 -04:00
#[br(little)]
#[br(pad_after = 96)]
2022-08-16 11:52:07 -04:00
seek_count: u64,
2022-07-19 19:29:41 -04:00
}
#[derive(BinRead, PartialEq, Debug)]
#[br(big)]
struct SqpkChunk {
size: u32,
2022-08-16 11:52:07 -04:00
operation: SqpkOperation,
2022-07-19 19:29:41 -04:00
}
const WIPE_BUFFER: [u8; 1 << 16] = [0; 1 << 16];
2022-08-16 11:52:07 -04:00
fn wipe(mut file: &File, length: i32) -> Result<(), PatchError> {
let mut length = length;
while length > 0 {
let num_bytes = min(WIPE_BUFFER.len() as i32, length);
2022-08-16 11:50:18 -04:00
file.write_all(&WIPE_BUFFER[0..num_bytes as usize])?;
length -= num_bytes;
}
Ok(())
}
2022-08-16 11:52:07 -04:00
fn wipe_from_offset(mut file: &File, length: i32, offset: i32) -> Result<(), PatchError> {
file.seek(SeekFrom::Start(offset as u64))?;
wipe(file, length)
}
2022-08-16 11:52:07 -04:00
fn write_empty_file_block_at(
mut file: &File,
offset: i32,
block_number: i32,
) -> Result<(), PatchError> {
wipe_from_offset(file, block_number << 7, offset)?;
file.seek(SeekFrom::Start(offset as u64))?;
2022-08-16 11:52:07 -04:00
let block_size: i32 = 1 << 7;
2022-08-16 11:50:18 -04:00
file.write_all(block_size.to_le_bytes().as_slice())?;
2022-08-16 11:52:07 -04:00
let unknown: i32 = 0;
2022-08-16 11:50:18 -04:00
file.write_all(unknown.to_le_bytes().as_slice())?;
2022-08-16 11:52:07 -04:00
let file_size: i32 = 0;
2022-08-16 11:50:18 -04:00
file.write_all(file_size.to_le_bytes().as_slice())?;
2022-08-16 11:52:07 -04:00
let num_blocks: i32 = block_number - 1;
2022-08-16 11:50:18 -04:00
file.write_all(num_blocks.to_le_bytes().as_slice())?;
2022-08-16 11:52:07 -04:00
let used_blocks: i32 = 0;
2022-08-16 11:50:18 -04:00
file.write_all(used_blocks.to_le_bytes().as_slice())?;
Ok(())
}
2022-08-16 11:52:07 -04:00
fn get_expansion_folder(sub_id: u16) -> String {
let expansion_id = sub_id >> 8;
match expansion_id {
0 => "ffxiv".to_string(),
2022-08-16 11:52:07 -04:00
n => format!("ex{}", n),
}
}
#[derive(Debug)]
pub enum PatchError {
InvalidPatchFile,
2022-08-16 11:52:07 -04:00
ParseError,
}
impl From<std::io::Error> for PatchError {
fn from(_: std::io::Error) -> Self {
PatchError::InvalidPatchFile
}
}
impl From<binrw::Error> for PatchError {
fn from(_: binrw::Error) -> Self {
PatchError::ParseError
}
}
/// Applies a boot or a game patch to the specified _data_dir_.
2022-08-16 11:52:07 -04:00
pub(crate) fn apply_patch(data_dir: &str, patch_path: &str) -> Result<(), PatchError> {
let mut file = File::open(patch_path)?;
PatchHeader::read(&mut file)?;
2022-08-16 11:52:07 -04:00
let mut target_info: Option<SqpkTargetInfo> = None;
let get_dat_path =
|target_info: &SqpkTargetInfo, main_id: u16, sub_id: u16, file_id: u32| -> String {
let filename = format!(
"{:02x}{:04x}.{}.dat{}",
main_id,
sub_id,
get_platform_string(&target_info.platform),
file_id
);
let path: PathBuf = [data_dir, "sqpack", &get_expansion_folder(sub_id), &filename]
.iter()
.collect();
path.to_str().unwrap().to_string()
};
let get_index_path =
|target_info: &SqpkTargetInfo, main_id: u16, sub_id: u16, file_id: u32| -> String {
let mut filename = format!(
"{:02x}{:04x}.{}.index",
main_id,
sub_id,
get_platform_string(&target_info.platform)
);
// index files have no special ending if it's file_id == 0
if file_id != 0 {
filename += &*format!("{}", file_id);
}
2022-08-16 11:52:07 -04:00
let path: PathBuf = [data_dir, "sqpack", &get_expansion_folder(sub_id), &filename]
.iter()
.collect();
2022-07-19 19:29:41 -04:00
2022-08-16 11:52:07 -04:00
path.to_str().unwrap().to_string()
};
2022-07-19 19:29:41 -04:00
loop {
let chunk = PatchChunk::read(&mut file)?;
2022-07-19 19:29:41 -04:00
match chunk.chunk_type {
ChunkType::Sqpk(pchunk) => {
match pchunk.operation {
SqpkOperation::AddData(add) => {
2022-08-16 11:52:07 -04:00
let filename = get_dat_path(
target_info.as_ref().unwrap(),
add.main_id,
add.sub_id,
add.file_id,
);
2022-07-19 19:29:41 -04:00
2022-07-27 21:21:50 -04:00
let (left, _) = filename.rsplit_once('/').unwrap();
fs::create_dir_all(left)?;
2022-08-16 11:52:07 -04:00
let mut new_file =
OpenOptions::new().write(true).create(true).open(filename)?;
2022-07-19 19:29:41 -04:00
new_file.seek(SeekFrom::Start(add.block_offset as u64))?;
2022-07-19 19:29:41 -04:00
2022-08-16 11:50:18 -04:00
new_file.write_all(&*add.block_data)?;
2022-07-19 19:29:41 -04:00
2022-08-16 11:50:18 -04:00
wipe(&new_file, add.block_delete_number)?;
2022-07-19 19:29:41 -04:00
}
SqpkOperation::DeleteData(delete) => {
2022-08-16 11:52:07 -04:00
let filename = get_dat_path(
target_info.as_ref().unwrap(),
delete.main_id,
delete.sub_id,
delete.file_id,
);
let new_file =
OpenOptions::new().write(true).create(true).open(filename)?;
write_empty_file_block_at(
&new_file,
delete.block_offset,
delete.block_number,
)?;
2022-07-19 19:29:41 -04:00
}
SqpkOperation::ExpandData(expand) => {
2022-08-16 11:52:07 -04:00
let filename = get_dat_path(
target_info.as_ref().unwrap(),
expand.main_id,
expand.sub_id,
expand.file_id,
);
2022-07-19 19:29:41 -04:00
2022-07-27 21:21:50 -04:00
let (left, _) = filename.rsplit_once('/').unwrap();
fs::create_dir_all(left)?;
2022-08-16 11:52:07 -04:00
let new_file =
OpenOptions::new().write(true).create(true).open(filename)?;
2022-07-19 19:29:41 -04:00
2022-08-16 11:52:07 -04:00
write_empty_file_block_at(
&new_file,
expand.block_offset,
expand.block_number,
)?;
2022-07-19 19:29:41 -04:00
}
SqpkOperation::HeaderUpdate(header) => {
let file_path = match header.file_kind {
2022-08-16 11:52:07 -04:00
TargetFileKind::Dat => get_dat_path(
target_info.as_ref().unwrap(),
header.main_id,
header.sub_id,
header.file_id,
),
TargetFileKind::Index => get_index_path(
target_info.as_ref().unwrap(),
header.main_id,
header.sub_id,
header.file_id,
),
};
2022-07-19 19:29:41 -04:00
2022-08-16 11:52:07 -04:00
let (left, _) = file_path.rsplit_once('/').ok_or(PatchError::ParseError)?;
fs::create_dir_all(left)?;
2022-07-19 19:29:41 -04:00
let mut new_file = OpenOptions::new()
.write(true)
.create(true)
.open(file_path)?;
2022-07-19 19:29:41 -04:00
if header.header_kind != TargetHeaderKind::Version {
new_file.seek(SeekFrom::Start(1024))?;
2022-07-19 19:29:41 -04:00
}
2022-08-16 11:50:18 -04:00
new_file.write_all(&*header.header_data)?;
2022-07-19 19:29:41 -04:00
}
SqpkOperation::FileOperation(fop) => {
match fop.operation {
SqpkFileOperation::AddFile => {
let new_path = data_dir.to_owned() + "/" + &fop.path;
2022-07-27 21:21:50 -04:00
let (left, _) = new_path.rsplit_once('/').unwrap();
2022-07-19 19:29:41 -04:00
fs::create_dir_all(left)?;
2022-07-19 19:29:41 -04:00
// reverse reading crc32
file.seek(SeekFrom::Current(-4))?;
2022-07-19 19:29:41 -04:00
let mut data: Vec<u8> = Vec::with_capacity(fop.file_size as usize);
while data.len() < fop.file_size as usize {
data.append(&mut read_data_block_patch(&mut file).unwrap());
}
// re-apply crc32
file.seek(SeekFrom::Current(4))?;
2022-07-19 19:29:41 -04:00
// now apply the file!
2022-08-16 11:52:07 -04:00
let mut new_file =
OpenOptions::new().write(true).create(true).open(new_path)?;
2022-07-19 19:29:41 -04:00
new_file.seek(SeekFrom::Start(fop.offset as u64))?;
2022-08-16 11:50:18 -04:00
new_file.write_all(&data)?;
2022-07-19 19:29:41 -04:00
}
SqpkFileOperation::DeleteFile => {
let new_path = data_dir.to_owned() + "/" + &fop.path;
fs::remove_file(new_path.as_str())?;
}
2022-07-20 16:30:17 -04:00
SqpkFileOperation::RemoveAll => {
println!("have to remove all files in {}...", fop.path);
2022-07-20 16:30:17 -04:00
}
2022-07-19 19:29:41 -04:00
}
}
SqpkOperation::IndexAddDelete(_) => todo!(),
SqpkOperation::PatchInfo(patch_info) => {
println!("Got patch info: {:#?}", patch_info);
2022-08-16 11:52:07 -04:00
}
SqpkOperation::TargetInfo(new_target_info) => {
target_info = Some(new_target_info);
}
2022-07-19 19:29:41 -04:00
}
2022-08-16 11:52:07 -04:00
}
ChunkType::FileHeader(header) => {
println!("Got file header: {:#?}", header);
2022-08-16 11:52:07 -04:00
}
ChunkType::ApplyOption(option) => {
println!("apply option: {:#?}", option);
2022-08-16 11:52:07 -04:00
}
ChunkType::AddDirectory(_) => todo!(),
ChunkType::DeleteDirectory(_) => todo!(),
2022-07-19 19:29:41 -04:00
ChunkType::EndOfFile => {
return Ok(());
2022-07-19 19:29:41 -04:00
}
}
}
2022-08-16 11:52:07 -04:00
}