mirror of
https://github.com/Ap0dexMe0/unixtract.git
synced 2026-07-16 05:04:22 +02:00
sddl_sec: update to match 6.0 version sddl_dec
This commit is contained in:
+287
-156
@@ -1,4 +1,4 @@
|
||||
//sddl_dec 5.0
|
||||
//sddl_dec 6.0 https://github.com/theubusu/sddl_dec
|
||||
|
||||
use std::path::{Path, PathBuf};
|
||||
use std::fs::{self, File, OpenOptions};
|
||||
@@ -9,107 +9,7 @@ use crate::utils::common;
|
||||
use crate::utils::aes::{decrypt_aes128_cbc_pcks7};
|
||||
use crate::utils::compression::{decompress_zlib};
|
||||
|
||||
#[derive(BinRead)]
|
||||
struct SddlSecHeader {
|
||||
#[br(count = 4)] _magic_bytes: Vec<u8>, //0x11, 0x22, 0x33, 0x44
|
||||
#[br(count = 4)] _unused: Vec<u8>,
|
||||
#[br(count = 4)] info_entries_count_str_bytes: Vec<u8>,
|
||||
#[br(count = 4)] module_entries_count_str_bytes: Vec<u8>,
|
||||
#[br(count = 16)] _unk: Vec<u8>,
|
||||
}
|
||||
impl SddlSecHeader {
|
||||
fn info_entry_count(&self) -> u32 {
|
||||
let string = common::string_from_bytes(&self.info_entries_count_str_bytes);
|
||||
string.parse().unwrap()
|
||||
}
|
||||
fn module_entries_count(&self) -> u32 {
|
||||
let string = common::string_from_bytes(&self.module_entries_count_str_bytes);
|
||||
string.parse().unwrap()
|
||||
}
|
||||
}
|
||||
|
||||
#[derive(BinRead)]
|
||||
struct EntryHeader {
|
||||
#[br(count = 12)] name_str_bytes: Vec<u8>,
|
||||
#[br(count = 12)] size_str_bytes: Vec<u8>,
|
||||
}
|
||||
impl EntryHeader {
|
||||
fn name(&self) -> String {
|
||||
common::string_from_bytes(&self.name_str_bytes)
|
||||
}
|
||||
fn size(&self) -> u64 {
|
||||
let string = common::string_from_bytes(&self.size_str_bytes);
|
||||
string.parse().unwrap()
|
||||
}
|
||||
}
|
||||
|
||||
#[derive(BinRead)]
|
||||
struct ModuleHeader {
|
||||
#[br(count = 4)] _magic_bytes: Vec<u8>, //0x11, 0x22, 0x33, 0x44
|
||||
_unk1: u8,
|
||||
_id: u8,
|
||||
#[br(count = 10)] _unused: Vec<u8>,
|
||||
#[br(count = 4)] _file_base_version: Vec<u8>,
|
||||
#[br(count = 4)] _file_previous_version: Vec<u8>,
|
||||
#[br(count = 4)] file_version: Vec<u8>,
|
||||
#[br(count = 4)] _unused2: Vec<u8>,
|
||||
_index: u16,
|
||||
#[br(count = 2)] control_bytes: Vec<u8>,
|
||||
compressed_data_size: u32,
|
||||
_uncompressed_data_size: u32,
|
||||
_checksum: u32,
|
||||
}
|
||||
impl ModuleHeader {
|
||||
fn is_compressed(&self) -> bool {
|
||||
self.control_bytes[0] == 0x3
|
||||
}
|
||||
}
|
||||
|
||||
#[derive(BinRead)]
|
||||
struct ContentHeader {
|
||||
_magic1: u8,
|
||||
#[br(count = 4)] dest_offset_bytes: Vec<u8>,
|
||||
#[br(count = 4)] source_offset_bytes: Vec<u8>,
|
||||
size: u32,
|
||||
_magic2: u8,
|
||||
}
|
||||
impl ContentHeader {
|
||||
fn dest_offset(&self) -> u32 {
|
||||
let first_byte;
|
||||
if self.dest_offset_bytes[0] & 0xF0 == 0xD0 {
|
||||
first_byte = self.dest_offset_bytes[0] & 0x0F;
|
||||
} else {
|
||||
first_byte = self.dest_offset_bytes[0];
|
||||
}
|
||||
u32::from_be_bytes([first_byte, self.dest_offset_bytes[1], self.dest_offset_bytes[2], self.dest_offset_bytes[3]])
|
||||
}
|
||||
fn source_offset(&self) -> u32 {
|
||||
u32::from_be_bytes([0x00, self.source_offset_bytes[1], self.source_offset_bytes[2], self.source_offset_bytes[3]])
|
||||
}
|
||||
}
|
||||
|
||||
static DEC_KEY: [u8; 16] = [
|
||||
0x26, 0xE0, 0x96, 0xD3, 0xEF, 0x8A, 0x8F, 0xBB,
|
||||
0xAA, 0x5E, 0x51, 0x6F, 0x77, 0x26, 0xC2, 0x2C,
|
||||
];
|
||||
|
||||
static DEC_IV: [u8; 16] = [
|
||||
0x3E, 0x4A, 0xE2, 0x3A, 0x69, 0xDB, 0x81, 0x54,
|
||||
0xCD, 0x88, 0x38, 0xC4, 0xB9, 0x0C, 0x76, 0x66,
|
||||
];
|
||||
|
||||
pub fn is_sddl_sec_file(file: &File) -> bool {
|
||||
let header = common::read_file(&file, 0, 32).expect("Failed to read from file.");
|
||||
let deciph_header = decipher(&header);
|
||||
if deciph_header.starts_with(b"\x11\x22\x33\x44") {
|
||||
true
|
||||
} else {
|
||||
false
|
||||
}
|
||||
}
|
||||
|
||||
//ported from original from https://nese.team/posts/justctf/
|
||||
fn decipher(s: &[u8]) -> Vec<u8> {
|
||||
pub fn decipher(s: &[u8]) -> Vec<u8> {
|
||||
let len_ = s.len();
|
||||
let mut v3: u32 = 904;
|
||||
let mut out = s.to_vec();
|
||||
@@ -150,79 +50,310 @@ fn decipher(s: &[u8]) -> Vec<u8> {
|
||||
out
|
||||
}
|
||||
|
||||
// -- STRUCTURES --
|
||||
// -- SECFILE --
|
||||
|
||||
pub static DOWNLOAD_ID: [u8; 4] = [0x11, 0x22, 0x33, 0x44];
|
||||
|
||||
#[derive(Debug, BinRead)]
|
||||
pub struct SecHeader {
|
||||
pub _download_id: [u8; 4], //always 0x11, 0x22, 0x33, 0x44 - magic?
|
||||
key_id_str_bytes: [u8; 4], //"key_id", purpose unknown
|
||||
grp_num_str_bytes: [u8; 4], //"grp_num", the count of groups, also represents the count of info files because each group has a respective info file
|
||||
prg_num_str_bytes: [u8; 4], //"prg_num", the count of module (.FXX) files
|
||||
_unused_or_reserved: [u8; 16], //not used, is zeros
|
||||
}
|
||||
impl SecHeader {
|
||||
pub fn key_id(&self) -> u32 {
|
||||
let string = common::string_from_bytes(&self.key_id_str_bytes);
|
||||
string.parse().unwrap()
|
||||
}
|
||||
pub fn grp_num(&self) -> u32 {
|
||||
let string = common::string_from_bytes(&self.grp_num_str_bytes);
|
||||
string.parse().unwrap()
|
||||
}
|
||||
pub fn prg_num(&self) -> u32 {
|
||||
let string = common::string_from_bytes(&self.prg_num_str_bytes);
|
||||
string.parse().unwrap()
|
||||
}
|
||||
}
|
||||
|
||||
pub static INFO_FILE_EXTENSION: &str = ".TXT";
|
||||
|
||||
#[derive(Debug, BinRead)]
|
||||
pub struct FileHeader {
|
||||
name_str_bytes: [u8; 12],
|
||||
size_str_bytes: [u8; 12],
|
||||
}
|
||||
impl FileHeader {
|
||||
pub fn name(&self) -> String {
|
||||
common::string_from_bytes(&self.name_str_bytes)
|
||||
}
|
||||
pub fn size(&self) -> u64 {
|
||||
let string = common::string_from_bytes(&self.size_str_bytes);
|
||||
string.parse().unwrap()
|
||||
}
|
||||
}
|
||||
|
||||
// -- MODULE --
|
||||
#[derive(Debug, BinRead)]
|
||||
pub struct ModuleComHeader { //"com_header"
|
||||
pub download_id: [u8; 4], //always 0x11, 0x22, 0x33, 0x44 - magic?
|
||||
_outer_maker_id: u8,
|
||||
_outer_model_id: u8,
|
||||
_inner_maker_id: u8,
|
||||
_reserve1: u8,
|
||||
_reserve2: u32,
|
||||
_reserve3: u32,
|
||||
_start_version: [u8; 4], //the first version that can upgrade to the new version
|
||||
_end_version: [u8; 4], //the last version that can upgrade to the new version
|
||||
_new_version: [u8; 4], //the new version, as in the version of the data in this module
|
||||
_reserve4: u16,
|
||||
_module_num: u16, //the logic seems to indicate that there can be multiple entries in one module, but i have never seen this go above 1.
|
||||
}
|
||||
|
||||
#[derive(Debug, BinRead)]
|
||||
pub struct ModuleHeader { //"header", appears after com_header
|
||||
_module_id: u16,
|
||||
module_atr: u8,
|
||||
_target_id: u8,
|
||||
pub cmp_size: u32,
|
||||
_org_size: u32,
|
||||
_crc_value: u32,
|
||||
}
|
||||
impl ModuleHeader {
|
||||
pub fn is_ciphered(&self) -> bool {
|
||||
(self.module_atr & 0x02) != 0
|
||||
}
|
||||
pub fn is_compressed(&self) -> bool {
|
||||
(self.module_atr & 0x01) != 0
|
||||
}
|
||||
}
|
||||
|
||||
#[derive(Debug, BinRead)]
|
||||
pub struct ContentHeader {
|
||||
_magic1: u8, //always 0x01?
|
||||
_dest_offset: u32,
|
||||
_source_offset: u32,
|
||||
pub size: u32,
|
||||
_magic2: u8, //always 0x21?
|
||||
}
|
||||
impl ContentHeader {
|
||||
//these hacks are needed because for some reason older files have the first nibble of the offset set to D/C
|
||||
//no idea why, but masking them off makes it works properly
|
||||
pub fn dest_offset(&self) -> u32 {
|
||||
if ((self._dest_offset >> 28) & 0xF) == 0xD {
|
||||
self._dest_offset & 0x0FFFFFFF
|
||||
} else {
|
||||
self._dest_offset
|
||||
}
|
||||
}
|
||||
pub fn source_offset(&self) -> u32 {
|
||||
if ((self._source_offset >> 28) & 0xF) == 0xC {
|
||||
self._source_offset & 0x0FFFFFFF
|
||||
} else {
|
||||
self._source_offset
|
||||
}
|
||||
}
|
||||
pub fn has_subfile(&self) -> bool {
|
||||
self.source_offset() == 0x10E
|
||||
}
|
||||
}
|
||||
|
||||
// -- TDI --
|
||||
// Called SDIT.FDI in the secfile
|
||||
|
||||
pub static TDI_FILENAME: &str = "SDIT.FDI";
|
||||
pub static SUPPORTED_TDI_VERSION: u16 = 2;
|
||||
|
||||
#[derive(Debug, BinRead)]
|
||||
pub struct TdiHead {
|
||||
pub download_id: [u8; 4], //always 0x11, 0x22, 0x33, 0x44 - magic?
|
||||
pub num_of_group: u8,
|
||||
_reserve1: u8,
|
||||
pub format_version: u16, //checks for "2" here
|
||||
}
|
||||
|
||||
#[derive(Debug, BinRead)]
|
||||
pub struct TdiGroupHead {
|
||||
pub group_id: u8,
|
||||
pub num_of_target: u8, //logic checks that this is not more than 5
|
||||
_reserved: u16,
|
||||
}
|
||||
|
||||
#[derive(Debug, BinRead)]
|
||||
pub struct TdiTgtInf {
|
||||
_outer_maker_id: u8,
|
||||
_outer_model_id: u8,
|
||||
_inner_maker_id: u8,
|
||||
_reserve3: u8,
|
||||
_inner_model_id: [u8; 4],
|
||||
_ext_model_id: [u8; 4],
|
||||
pub _start_version: [u8; 4], //the first version that can upgrade to the new version
|
||||
pub _end_version: [u8; 4], //the last version that can upgrade to the new version
|
||||
pub new_version: [u8; 4], //the new version, as in the version of the data in this module
|
||||
pub target_id: u8,
|
||||
_num_of_compatible_target: u8,
|
||||
pub num_of_txx: u16, //"TXX" refers to the ".FXX" segment files of each module. I assume F is an encrypted version of T, the same happens with SDIT; "TDI" -> "FDI"
|
||||
_unknown: [u8; 8],
|
||||
module_name_bytes: [u8; 8],
|
||||
}
|
||||
impl TdiTgtInf {
|
||||
pub fn module_name(&self) -> String {
|
||||
common::string_from_bytes(&self.module_name_bytes)
|
||||
}
|
||||
pub fn version_string(&self) -> String {
|
||||
format!("{}.{}{}{}", self.new_version[0], self.new_version[1], self.new_version[2], self.new_version[3])
|
||||
}
|
||||
}
|
||||
|
||||
// -- dec key --
|
||||
static DEC_KEY: [u8; 16] = [
|
||||
0x26, 0xE0, 0x96, 0xD3, 0xEF, 0x8A, 0x8F, 0xBB,
|
||||
0xAA, 0x5E, 0x51, 0x6F, 0x77, 0x26, 0xC2, 0x2C,
|
||||
];
|
||||
|
||||
static DEC_IV: [u8; 16] = [
|
||||
0x3E, 0x4A, 0xE2, 0x3A, 0x69, 0xDB, 0x81, 0x54,
|
||||
0xCD, 0x88, 0x38, 0xC4, 0xB9, 0x0C, 0x76, 0x66,
|
||||
];
|
||||
|
||||
pub fn is_sddl_sec_file(file: &File) -> bool {
|
||||
let header = common::read_file(&file, 0, 32).expect("Failed to read from file.");
|
||||
let deciph_header = decipher(&header);
|
||||
if deciph_header.starts_with(b"\x11\x22\x33\x44") {
|
||||
true
|
||||
} else {
|
||||
false
|
||||
}
|
||||
}
|
||||
|
||||
fn get_sec_file(mut file: &File) -> Result<(FileHeader, Vec<u8>), Box<dyn std::error::Error>> {
|
||||
let mut hdr_reader = Cursor::new(decrypt_aes128_cbc_pcks7(&common::read_exact(&mut file, 32)?, &DEC_KEY, &DEC_IV)?);
|
||||
let file_header: FileHeader = hdr_reader.read_be()?;
|
||||
let file_data = decrypt_aes128_cbc_pcks7(&common::read_exact(&mut file, file_header.size() as usize)?, &DEC_KEY, &DEC_IV)?;
|
||||
|
||||
Ok((file_header, file_data))
|
||||
}
|
||||
|
||||
fn parse_tdi_to_modules(tdi_data: Vec<u8>) -> Result<Vec<TdiTgtInf>, Box<dyn std::error::Error>> {
|
||||
let mut tdi_reader = Cursor::new(tdi_data);
|
||||
let tdi_header: TdiHead = tdi_reader.read_be()?;
|
||||
if tdi_header.download_id != DOWNLOAD_ID {
|
||||
return Err("Invalid TDI header!".into());
|
||||
}
|
||||
if tdi_header.format_version != SUPPORTED_TDI_VERSION {
|
||||
return Err(format!("Unsupported TDI format version {}! (The supported version is {})", tdi_header.format_version, SUPPORTED_TDI_VERSION).into());
|
||||
}
|
||||
|
||||
println!("[TDI] Group count: {}", tdi_header.num_of_group);
|
||||
let mut modules: Vec<TdiTgtInf> = Vec::new();
|
||||
|
||||
for _i in 0..tdi_header.num_of_group {
|
||||
let group_head: TdiGroupHead = tdi_reader.read_be()?;
|
||||
println!("[TDI] Group ID: {}, Target count: {}", group_head.group_id, group_head.num_of_target);
|
||||
|
||||
for _i in 0..group_head.num_of_target {
|
||||
let tgt_inf: TdiTgtInf = tdi_reader.read_be()?;
|
||||
println!("[TDI] - {}, Target ID: {}, Segment count: {}, Version: {}",
|
||||
tgt_inf.module_name(), tgt_inf.target_id, tgt_inf.num_of_txx, tgt_inf.version_string());
|
||||
|
||||
//push unique modules
|
||||
if !modules.iter().any(|m| m.module_name() == tgt_inf.module_name()) {
|
||||
modules.push(tgt_inf);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Ok(modules)
|
||||
}
|
||||
|
||||
pub fn extract_sddl_sec(mut file: &File, output_folder: &str) -> Result<(), Box<dyn std::error::Error>> {
|
||||
let mut hdr_reader = Cursor::new(decipher(&common::read_exact(&mut file, 32)?));
|
||||
let hdr: SddlSecHeader = hdr_reader.read_be()?;
|
||||
file.seek(SeekFrom::Start(0))?;
|
||||
let mut secfile_hdr_reader = Cursor::new(decipher(&common::read_exact(&mut file, 32)?));
|
||||
let secfile_header: SecHeader = secfile_hdr_reader.read_be()?;
|
||||
|
||||
//SDIT.FDI + info files + module files
|
||||
let total_entry_count = 1 + hdr.info_entry_count() + hdr.module_entries_count();
|
||||
println!("File info:\nInfo entry count: {}\nModule entry count: {}\nTotal entry count: {}",
|
||||
hdr.info_entry_count(), hdr.module_entries_count(), total_entry_count);
|
||||
println!("File info -\nKey ID: {}\nGroup count: {}\nModule file count: {}\n", secfile_header.key_id(), secfile_header.grp_num(), secfile_header.prg_num());
|
||||
fs::create_dir_all(&output_folder)?;
|
||||
|
||||
for i in 0..total_entry_count {
|
||||
let mut entry_header_reader = Cursor::new(decrypt_aes128_cbc_pcks7(&common::read_exact(&mut file, 32)?, &DEC_KEY, &DEC_IV)?);
|
||||
let entry_header: EntryHeader = entry_header_reader.read_be()?;
|
||||
let (tdi_file, tdi_data) = get_sec_file(&file)?;
|
||||
println!("[TDI] Name: {}, Size: {}", tdi_file.name(), tdi_file.size());
|
||||
//if save_extra { //Save SDIT
|
||||
// let mut out_file = OpenOptions::new().write(true).create(true).open(Path::new(&output_folder).join(tdi_file.name()))?;
|
||||
// out_file.write_all(&tdi_data)?;
|
||||
//}
|
||||
if tdi_file.name() != TDI_FILENAME {
|
||||
return Err(format!("Invalid TDI filename {}!, expected: {}", tdi_file.name(), TDI_FILENAME).into());
|
||||
}
|
||||
//parse TDI
|
||||
let modules = parse_tdi_to_modules(tdi_data)?;
|
||||
|
||||
println!("\n({}/{}) - {}, Size: {}", i + 1, total_entry_count, entry_header.name(), entry_header.size());
|
||||
//get info files, each info file belongs to its respecitve group in the TDI
|
||||
for i in 0..secfile_header.grp_num() {
|
||||
let (info_file, info_data) = get_sec_file(&file)?;
|
||||
println!("\n[INFO] ID: {}, Name: {}, Size: {}", i, info_file.name(), info_file.size());
|
||||
if !info_file.name().ends_with(INFO_FILE_EXTENSION) {
|
||||
return Err(format!("Info file {} does not have the expected extension {}!", info_file.name(), INFO_FILE_EXTENSION).into());
|
||||
}
|
||||
//if save_extra { //Save info file
|
||||
// let mut out_file = OpenOptions::new().write(true).create(true).open(Path::new(&output_folder).join(info_file.name()))?;
|
||||
// out_file.write_all(&info_data)?;
|
||||
//}
|
||||
//print info file
|
||||
println!("{}", String::from_utf8_lossy(&info_data));
|
||||
}
|
||||
|
||||
let data = common::read_exact(&mut file, entry_header.size() as usize)?;
|
||||
let dec_data = decrypt_aes128_cbc_pcks7(&data, &DEC_KEY, &DEC_IV)?;
|
||||
//parse module data
|
||||
for (i, module) in modules.iter().enumerate(){
|
||||
println!("\nModule #{}/{} - {}, Target ID: {}, Segment count: {}, Version: {}",
|
||||
i+1, &modules.len(), module.module_name(), module.target_id, module.num_of_txx, module.version_string());
|
||||
|
||||
fs::create_dir_all(&output_folder)?;
|
||||
//detect the file type based on the counts of each file
|
||||
if i == 0 { //SDIT.FDI file
|
||||
let output_path = Path::new(&output_folder).join(entry_header.name());
|
||||
let mut out_file = OpenOptions::new().write(true).create(true).open(output_path)?;
|
||||
out_file.write_all(&dec_data)?;
|
||||
println!("-- Saved file!");
|
||||
for i in 0..module.num_of_txx {
|
||||
let (module_file, module_data) = get_sec_file(&file)?;
|
||||
if !module_file.name().starts_with(&module.module_name()) {
|
||||
return Err(format!("Module file {} does not start with the module's name: {}!", module_file.name(), module.module_name()).into());
|
||||
}
|
||||
println!(" Segment #{}/{} - Name: {}, Size: {}", i+1, module.num_of_txx, module_file.name(), module_file.size());
|
||||
|
||||
} else if i - 1 < hdr.info_entry_count() { //.TXT info file
|
||||
println!("{}", String::from_utf8_lossy(&dec_data));
|
||||
continue
|
||||
|
||||
} else { //Module file
|
||||
let name = entry_header.name();
|
||||
let source_name = name.split(".").next().unwrap();
|
||||
|
||||
let mut module_reader = Cursor::new(dec_data);
|
||||
let module_header: ModuleHeader = module_reader.read_be()?;
|
||||
println!("- Version: {}.{}{}{}", module_header.file_version[0], module_header.file_version[1], module_header.file_version[2], module_header.file_version[3]);
|
||||
|
||||
let module_data = common::read_exact(&mut module_reader, module_header.compressed_data_size as usize)?;
|
||||
println!("- Deciphering...");
|
||||
let deciphered_data = decipher(&module_data);
|
||||
|
||||
let content: Vec<u8>;
|
||||
if module_header.is_compressed() {
|
||||
println!("-- Decompressing...");
|
||||
content = decompress_zlib(&deciphered_data)?;
|
||||
} else {
|
||||
println!("-- Uncompressed...");
|
||||
content = deciphered_data;
|
||||
let mut module_reader = Cursor::new(module_data);
|
||||
let com_header: ModuleComHeader = module_reader.read_be()?;
|
||||
if com_header.download_id != DOWNLOAD_ID {
|
||||
return Err("Invalid module com_header!".into());
|
||||
}
|
||||
|
||||
let mut content_reader = Cursor::new(content);
|
||||
let module_header: ModuleHeader = module_reader.read_be()?;
|
||||
let mut module_data = common::read_exact(&mut module_reader, module_header.cmp_size as usize)?;
|
||||
if module_header.is_ciphered() {
|
||||
println!(" - Deciphering...");
|
||||
module_data = decipher(&module_data);
|
||||
}
|
||||
if module_header.is_compressed() {
|
||||
println!(" - Decompressing...");
|
||||
module_data = decompress_zlib(&module_data)?;
|
||||
}
|
||||
|
||||
let mut content_reader = Cursor::new(module_data);
|
||||
let content_header: ContentHeader = content_reader.read_be()?;
|
||||
println!(" --> 0x{:X} @ 0x{:X}", content_header.size, content_header.dest_offset());
|
||||
|
||||
let output_path: PathBuf;
|
||||
if content_header.has_subfile() {
|
||||
let sub_filename_bytes = common::read_exact(&mut content_reader, 0x100)?;
|
||||
let sub_filename = common::string_from_bytes(&sub_filename_bytes);
|
||||
println!(" --> {}", sub_filename);
|
||||
|
||||
let output_path: PathBuf;
|
||||
if content_header.source_offset() == 270 {
|
||||
let file_name_bytes = common::read_exact(&mut content_reader, 256)?;
|
||||
let file_name = common::string_from_bytes(&file_name_bytes);
|
||||
println!("--- File name: {}", file_name);
|
||||
let sub_folder_path = Path::new(&output_folder).join(module.module_name());
|
||||
fs::create_dir_all(&sub_folder_path)?;
|
||||
output_path = Path::new(&sub_folder_path).join(sub_filename);
|
||||
|
||||
let out_folder_path = Path::new(&output_folder).join(source_name);
|
||||
fs::create_dir_all(&out_folder_path)?;
|
||||
output_path = Path::new(&out_folder_path).join(file_name);
|
||||
} else {
|
||||
output_path = Path::new(&output_folder).join(format!("{}.bin", source_name));
|
||||
output_path = Path::new(&output_folder).join(format!("{}.bin", module.module_name()));
|
||||
}
|
||||
|
||||
let data = common::read_exact(&mut content_reader, content_header.size as usize)?;
|
||||
|
||||
let mut out_file = OpenOptions::new().read(true).write(true).create(true).open(output_path)?;
|
||||
out_file.seek(SeekFrom::Start(content_header.dest_offset() as u64))?;
|
||||
out_file.write_all(&data)?;
|
||||
println!("--- Saved!");
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user