mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-12-08 05:12:04 +00:00
Support extract boot image from payload.bin
This commit is contained in:
@@ -9,3 +9,6 @@ path = "lib.rs"
|
||||
|
||||
[dependencies]
|
||||
base = { path = "../base" }
|
||||
cxx = { path = "../external/cxx-rs" }
|
||||
protobuf = "3.2.0"
|
||||
byteorder = "1"
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
#include "bootimg.hpp"
|
||||
#include "magiskboot.hpp"
|
||||
#include "compress.hpp"
|
||||
#include "boot-rs.hpp"
|
||||
|
||||
using namespace std;
|
||||
|
||||
|
||||
@@ -290,6 +290,8 @@ private:
|
||||
}
|
||||
if (!bwrite(outbuf, sizeof(outbuf) - strm.avail_out))
|
||||
return false;
|
||||
if (code == BZ_STREAM_END)
|
||||
return true;
|
||||
} while (strm.avail_out == 0);
|
||||
return true;
|
||||
}
|
||||
@@ -723,3 +725,20 @@ void compress(const char *method, const char *infile, const char *outfile) {
|
||||
if (rm_in)
|
||||
unlink(infile);
|
||||
}
|
||||
|
||||
namespace rust {
|
||||
bool decompress(const unsigned char *in, uint64_t in_size, int fd) {
|
||||
format_t type = check_fmt(in, in_size);
|
||||
|
||||
if (!COMPRESSED(type)) {
|
||||
LOGE("Input file is not a supported compressed type!\n");
|
||||
return false;
|
||||
}
|
||||
|
||||
auto strm = get_decoder(type, make_unique<fd_stream>(fd));
|
||||
if (!strm->write(in, in_size)) {
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,3 +11,7 @@ filter_strm_ptr get_decoder(format_t type, stream_ptr &&base);
|
||||
void compress(const char *method, const char *infile, const char *outfile);
|
||||
|
||||
void decompress(char *infile, const char *outfile);
|
||||
|
||||
namespace rust {
|
||||
bool decompress(const unsigned char *in, uint64_t in_size, int fd);
|
||||
}
|
||||
|
||||
@@ -1 +1,197 @@
|
||||
#![feature(format_args_nl)]
|
||||
|
||||
mod update_metadata;
|
||||
|
||||
use crate::update_metadata::install_operation::Type;
|
||||
use crate::update_metadata::DeltaArchiveManifest;
|
||||
pub use base;
|
||||
use base::error;
|
||||
use base::libc::c_char;
|
||||
use byteorder::{BigEndian, ReadBytesExt};
|
||||
use protobuf::{EnumFull, Message};
|
||||
use std::ffi::CStr;
|
||||
use std::fs::File;
|
||||
use std::io::{BufReader, ErrorKind, Read, Seek, SeekFrom};
|
||||
use std::io::{Error as IOError, Write};
|
||||
use std::os::unix::io::AsRawFd;
|
||||
|
||||
#[cxx::bridge(namespace = "rust")]
|
||||
mod ffi {
|
||||
unsafe extern "C++" {
|
||||
pub unsafe fn decompress(in_: *const u8, in_size: u64, fd: i32) -> bool;
|
||||
}
|
||||
|
||||
extern "Rust" {
|
||||
unsafe fn extract_boot_from_payload(
|
||||
in_path: *const c_char,
|
||||
out_path: *const c_char,
|
||||
) -> bool;
|
||||
}
|
||||
}
|
||||
|
||||
#[macro_export]
|
||||
macro_rules! data_err {
|
||||
($fmt:expr) => { IOError::new(ErrorKind::InvalidData, format!($fmt)) };
|
||||
($fmt:expr, $($args:tt)*) => { IOError::new(ErrorKind::InvalidData, format!($fmt, $($args)*)) };
|
||||
}
|
||||
|
||||
static PAYLOAD_MAGIC: &str = "CrAU";
|
||||
|
||||
pub fn do_extract_boot_from_payload(in_path: &str, out_path: &str) -> Result<(), IOError> {
|
||||
// let mut file = File::create(out_path).unwrap();
|
||||
let in_file = File::open(in_path)?;
|
||||
let mut reader = BufReader::new(in_file);
|
||||
|
||||
let buf = &mut [0u8; 4];
|
||||
reader.read_exact(buf)?;
|
||||
|
||||
if buf != PAYLOAD_MAGIC.as_bytes() {
|
||||
return Err(data_err!("invalid payload magic"));
|
||||
}
|
||||
|
||||
let version = reader.read_u64::<BigEndian>()?;
|
||||
|
||||
if version != 2 {
|
||||
return Err(data_err!("unsupported version {}", version));
|
||||
}
|
||||
let manifest_len = reader.read_u64::<BigEndian>()?;
|
||||
|
||||
if manifest_len == 0 {
|
||||
return Err(data_err!("manifest length is zero"));
|
||||
}
|
||||
|
||||
let manifest_sig_len = reader.read_u32::<BigEndian>()?;
|
||||
|
||||
if manifest_sig_len == 0 {
|
||||
return Err(data_err!("manifest signature length is zero"));
|
||||
}
|
||||
|
||||
let mut buf = vec![0; manifest_len as usize];
|
||||
|
||||
reader.read_exact(&mut buf)?;
|
||||
|
||||
let manifest = DeltaArchiveManifest::parse_from_bytes(&buf)?;
|
||||
|
||||
if !manifest.has_minor_version() || manifest.minor_version() != 0 {
|
||||
return Err(data_err!(
|
||||
"delta payloads are not supported, please use a full payload file"
|
||||
));
|
||||
}
|
||||
|
||||
if !manifest.has_block_size() {
|
||||
return Err(data_err!("block size not found"));
|
||||
}
|
||||
|
||||
let boot = manifest.partitions.iter().find(|partition| {
|
||||
partition.has_partition_name() && partition.partition_name() == "init_boot"
|
||||
});
|
||||
|
||||
let boot = match boot {
|
||||
Some(boot) => Some(boot),
|
||||
None => manifest.partitions.iter().find(|partition| {
|
||||
partition.has_partition_name() && partition.partition_name() == "boot"
|
||||
}),
|
||||
};
|
||||
|
||||
let boot = boot.ok_or(data_err!("boot partition not found"))?;
|
||||
|
||||
let base_offset = reader.stream_position()?;
|
||||
|
||||
let base_offset = base_offset + manifest_sig_len as u64;
|
||||
|
||||
let block_size = manifest
|
||||
.block_size
|
||||
.ok_or(data_err!("block size not found"))? as u64;
|
||||
|
||||
let mut out_file = File::create(out_path)?;
|
||||
|
||||
for operation in boot.operations.iter() {
|
||||
let data_len = operation
|
||||
.data_length
|
||||
.ok_or(data_err!("data length not found"))?;
|
||||
|
||||
let data_offset = operation
|
||||
.data_offset
|
||||
.ok_or(data_err!("data offset not found"))?;
|
||||
|
||||
let data_type = operation
|
||||
.type_
|
||||
.ok_or(data_err!("operation type not found"))?;
|
||||
|
||||
let data_type = data_type
|
||||
.enum_value()
|
||||
.map_err(|_| data_err!("operation type not valid"))?;
|
||||
|
||||
let mut buf = vec![0; data_len as usize];
|
||||
|
||||
reader.seek(SeekFrom::Start(base_offset + data_offset))?;
|
||||
reader.read_exact(&mut buf)?;
|
||||
|
||||
let out_offset = operation
|
||||
.dst_extents
|
||||
.get(0)
|
||||
.ok_or(data_err!("dst extents not found"))?
|
||||
.start_block
|
||||
.ok_or(data_err!("start block not found"))?
|
||||
* block_size;
|
||||
|
||||
match data_type {
|
||||
Type::REPLACE => {
|
||||
out_file.seek(SeekFrom::Start(out_offset))?;
|
||||
out_file.write_all(&buf)?;
|
||||
}
|
||||
Type::ZERO => {
|
||||
for ext in operation.dst_extents.iter() {
|
||||
let out_seek =
|
||||
ext.start_block.ok_or(data_err!("start block not found"))? * block_size;
|
||||
let num_blocks = ext.num_blocks.ok_or(data_err!("num blocks not found"))?;
|
||||
out_file.seek(SeekFrom::Start(out_seek))?;
|
||||
out_file.write_all(&vec![0; num_blocks as usize])?;
|
||||
}
|
||||
}
|
||||
Type::REPLACE_BZ | Type::REPLACE_XZ => {
|
||||
out_file.seek(SeekFrom::Start(out_offset))?;
|
||||
unsafe {
|
||||
if !ffi::decompress(buf.as_ptr(), buf.len() as u64, out_file.as_raw_fd()) {
|
||||
return Err(data_err!("decompression failed"));
|
||||
}
|
||||
}
|
||||
}
|
||||
_ => {
|
||||
return Err(data_err!(
|
||||
"unsupported operation type: {}",
|
||||
data_type.descriptor().name()
|
||||
));
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn extract_boot_from_payload(in_path: *const c_char, out_path: *const c_char) -> bool {
|
||||
let in_path = unsafe { CStr::from_ptr(in_path) };
|
||||
let out_path = unsafe { CStr::from_ptr(out_path) };
|
||||
let in_path = match in_path.to_str() {
|
||||
Ok(path) => path,
|
||||
Err(_) => {
|
||||
error!("Failed to extract boot from payload: input path invalid");
|
||||
return false;
|
||||
}
|
||||
};
|
||||
let out_path = match out_path.to_str() {
|
||||
Ok(path) => path,
|
||||
Err(_) => {
|
||||
error!("Failed to extract boot from payload: output path invalid");
|
||||
return false;
|
||||
}
|
||||
};
|
||||
|
||||
match do_extract_boot_from_payload(in_path, out_path) {
|
||||
Ok(_) => true,
|
||||
Err(err) => {
|
||||
error!("Failed to extract boot from payload: \"{}\"", err);
|
||||
false
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4,6 +4,8 @@
|
||||
#include "magiskboot.hpp"
|
||||
#include "compress.hpp"
|
||||
|
||||
#include "boot-rs.cpp"
|
||||
|
||||
using namespace std;
|
||||
|
||||
static void print_formats() {
|
||||
@@ -46,6 +48,9 @@ Supported actions:
|
||||
If env variable PATCHVBMETAFLAG is set to true, all disable flags in
|
||||
the boot image's vbmeta header will be set.
|
||||
|
||||
extract <payload.bin> <outbootimg>
|
||||
Extract the boot image from payload.bin to <outbootimg>.
|
||||
|
||||
hexpatch <file> <hexpattern1> <hexpattern2>
|
||||
Search <hexpattern1> in <file>, and replace it with <hexpattern2>
|
||||
|
||||
@@ -201,6 +206,8 @@ int main(int argc, char *argv[]) {
|
||||
} else if (argc > 3 && action == "dtb") {
|
||||
if (dtb_commands(argc - 2, argv + 2))
|
||||
usage(argv[0]);
|
||||
} else if (argc > 3 && action == "extract") {
|
||||
return rust::extract_boot_from_payload(argv[2], argv[3]) ? 0 : 1;
|
||||
} else {
|
||||
usage(argv[0]);
|
||||
}
|
||||
|
||||
4867
native/src/boot/update_metadata.rs
Normal file
4867
native/src/boot/update_metadata.rs
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user