repak/examples/unpak.rs

213 lines
5.7 KiB
Rust
Raw Normal View History

2023-02-01 03:41:36 +00:00
use std::fs::{self, File};
use std::io::{self, BufReader, BufWriter};
use std::path::{Path, PathBuf};
use clap::{Parser, Subcommand};
use path_clean::PathClean;
#[derive(Parser, Debug)]
struct ActionInfo {
/// Input .pak path
#[arg(index = 1)]
input: String,
/// Base64 encoded AES encryption key if the pak is encrypted
#[arg(short, long)]
aes_key: Option<String>,
}
#[derive(Parser, Debug)]
struct ActionList {
/// Input .pak path
#[arg(index = 1)]
input: String,
/// Base64 encoded AES encryption key if the pak is encrypted
#[arg(short, long)]
aes_key: Option<String>,
}
#[derive(Parser, Debug)]
struct ActionUnpack {
/// Input .pak path
#[arg(index = 1)]
input: String,
/// Output directory. Defaults to next to input pak
#[arg(index = 2)]
output: Option<String>,
/// Prefix to strip from entry path
#[arg(short, long, default_value = "../../../")]
strip_prefix: String,
/// Base64 encoded AES encryption key if the pak is encrypted
#[arg(short, long)]
aes_key: Option<String>,
}
#[derive(Parser, Debug)]
struct ActionPack {
/// Input directory
#[arg(index = 1)]
input: String,
/// Output directory. Defaults to next to input dir
#[arg(index = 2)]
output: Option<String>,
/// Mount point
#[arg(short, long, default_value = "../../../")]
mount_point: String,
}
#[derive(Subcommand, Debug)]
enum Action {
/// Print .pak info
Info(ActionInfo),
/// List .pak files
List(ActionInfo),
/// Unpack .pak file
Unpack(ActionUnpack),
/// Pack directory into .pak file
Pack(ActionPack),
}
#[derive(Parser, Debug)]
#[command(author, version)]
struct Args {
#[command(subcommand)]
action: Action,
}
fn main() -> Result<(), unpak::Error> {
let args = Args::parse();
match args.action {
Action::Info(args) => info(args),
Action::List(args) => list(args),
Action::Unpack(args) => unpack(args),
Action::Pack(args) => pack(args),
2023-01-14 18:32:06 +00:00
}
}
2023-02-01 03:41:36 +00:00
fn aes_key(key: &str) -> Result<aes::Aes256Dec, unpak::Error> {
use aes::cipher::KeyInit;
use base64::{engine::general_purpose, Engine as _};
general_purpose::STANDARD
.decode(key)
.as_ref()
.map_err(|_| unpak::Error::Base64)
.and_then(|bytes| aes::Aes256Dec::new_from_slice(bytes).map_err(|_| unpak::Error::Aes))
}
fn info(args: ActionInfo) -> Result<(), unpak::Error> {
let pak = unpak::PakReader::new_any(
BufReader::new(File::open(&args.input)?),
args.aes_key.map(|k| aes_key(k.as_str())).transpose()?,
)?;
println!("mount point: {}", pak.mount_point());
println!("version: {}", pak.version());
println!("version major: {}", pak.version().version_major());
println!("{} file entries", pak.files().len());
Ok(())
2023-01-14 18:32:06 +00:00
}
2023-02-01 03:41:36 +00:00
fn list(args: ActionInfo) -> Result<(), unpak::Error> {
let pak = unpak::PakReader::new_any(
BufReader::new(File::open(&args.input)?),
args.aes_key.map(|k| aes_key(k.as_str())).transpose()?,
)?;
for f in pak.files() {
println!("{f}");
}
Ok(())
}
2023-01-14 18:32:06 +00:00
2023-02-01 03:41:36 +00:00
fn unpack(args: ActionUnpack) -> Result<(), unpak::Error> {
let mut pak = unpak::PakReader::new_any(
BufReader::new(File::open(&args.input)?),
args.aes_key.map(|k| aes_key(k.as_str())).transpose()?,
)?;
let output = args.output.as_ref().map(Path::new).unwrap_or_else(|| {
Path::new(
Path::new(&args.input)
.file_stem()
.and_then(|name| name.to_str())
.expect("could not get pak file name"),
)
});
match fs::create_dir(output) {
Ok(_) => Ok(()),
Err(ref e) if e.kind() == std::io::ErrorKind::AlreadyExists => Ok(()),
Err(e) => Err(e),
}?;
if output.read_dir()?.next().is_some() {
return Err(unpak::Error::Other("output directory not empty"));
}
let mount_point = PathBuf::from(pak.mount_point());
let prefix = Path::new(&args.strip_prefix);
for file in pak.files() {
let file_path = output.join(
mount_point
.join(&file)
.strip_prefix(prefix)
.map_err(|_| unpak::Error::Other("prefix does not match"))?,
);
if !file_path.clean().starts_with(output) {
return Err(unpak::Error::Other(
"tried to write file outside of output directory",
));
}
fs::create_dir_all(file_path.parent().expect("will be a file"))?;
pak.read_file(&file, &mut fs::File::create(file_path)?)?;
}
Ok(())
}
fn pack(args: ActionPack) -> Result<(), unpak::Error> {
let output = args
.output
.map(PathBuf::from)
.unwrap_or_else(|| Path::new(&args.input).with_extension("pak"));
fn collect_files(paths: &mut Vec<PathBuf>, dir: &Path) -> io::Result<()> {
if dir.is_dir() {
for entry in fs::read_dir(dir)? {
let entry = entry?;
let path = entry.path();
if path.is_dir() {
collect_files(paths, &path)?;
} else {
paths.push(entry.path());
}
}
}
Ok(())
}
let input_path = Path::new(&args.input);
let mut paths = vec![];
collect_files(&mut paths, input_path)?;
paths.sort();
let mut pak = unpak::PakWriter::new(
BufWriter::new(File::create(output)?),
None,
unpak::Version::V8B,
args.mount_point,
);
for p in paths {
pak.write_file(
&p.strip_prefix(input_path)
.expect("file not in input directory")
.to_string_lossy(),
&mut BufReader::new(File::open(&p)?),
)?;
}
pak.write_index()?;
Ok(())
}