You've already forked Magisk
mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-09-06 06:36:58 +00:00
113 lines
3.0 KiB
Rust
113 lines
3.0 KiB
Rust
#![feature(format_args_nl)]
|
|
#![feature(btree_extract_if)]
|
|
#![feature(iter_intersperse)]
|
|
#![feature(try_blocks)]
|
|
|
|
pub use base;
|
|
use compress::{compress_bytes, compress_fd, decompress_bytes, decompress_bytes_fd};
|
|
use cpio::cpio_commands;
|
|
use dtb::dtb_commands;
|
|
use patch::hexpatch;
|
|
use payload::extract_boot_from_payload;
|
|
use sign::{SHA, get_sha, sha1_hash, sha256_hash, sign_boot_image, verify_boot_image};
|
|
use std::env;
|
|
|
|
mod compress;
|
|
mod cpio;
|
|
mod dtb;
|
|
mod patch;
|
|
mod payload;
|
|
// Suppress warnings in generated code
|
|
#[allow(warnings)]
|
|
mod proto;
|
|
mod sign;
|
|
|
|
#[cxx::bridge]
|
|
pub mod ffi {
|
|
enum FileFormat {
|
|
UNKNOWN,
|
|
/* Boot formats */
|
|
CHROMEOS,
|
|
AOSP,
|
|
AOSP_VENDOR,
|
|
DHTB,
|
|
BLOB,
|
|
/* Compression formats */
|
|
GZIP,
|
|
ZOPFLI,
|
|
XZ,
|
|
LZMA,
|
|
BZIP2,
|
|
LZ4,
|
|
LZ4_LEGACY,
|
|
LZ4_LG,
|
|
/* Unsupported compression */
|
|
LZOP,
|
|
/* Misc */
|
|
MTK,
|
|
DTB,
|
|
ZIMAGE,
|
|
}
|
|
|
|
unsafe extern "C++" {
|
|
include!("../base/include/base.hpp");
|
|
|
|
#[namespace = "rust"]
|
|
#[cxx_name = "Utf8CStr"]
|
|
type Utf8CStrRef<'a> = base::ffi::Utf8CStrRef<'a>;
|
|
}
|
|
|
|
unsafe extern "C++" {
|
|
include!("format.hpp");
|
|
fn check_fmt(buf: &[u8]) -> FileFormat;
|
|
|
|
include!("bootimg.hpp");
|
|
#[cxx_name = "boot_img"]
|
|
type BootImage;
|
|
#[cxx_name = "get_payload"]
|
|
fn payload(self: &BootImage) -> &[u8];
|
|
#[cxx_name = "get_tail"]
|
|
fn tail(self: &BootImage) -> &[u8];
|
|
}
|
|
|
|
extern "Rust" {
|
|
type SHA;
|
|
fn get_sha(use_sha1: bool) -> Box<SHA>;
|
|
fn update(self: &mut SHA, data: &[u8]);
|
|
fn finalize_into(self: &mut SHA, out: &mut [u8]);
|
|
fn output_size(self: &SHA) -> usize;
|
|
fn sha1_hash(data: &[u8], out: &mut [u8]);
|
|
fn sha256_hash(data: &[u8], out: &mut [u8]);
|
|
|
|
fn hexpatch(file: &[u8], from: &[u8], to: &[u8]) -> bool;
|
|
fn compress_fd(format: FileFormat, in_fd: i32, out_fd: i32);
|
|
fn compress_bytes(format: FileFormat, in_bytes: &[u8], out_fd: i32);
|
|
fn decompress_bytes(format: FileFormat, in_bytes: &[u8], out_fd: i32);
|
|
fn decompress_bytes_fd(format: FileFormat, in_bytes: &[u8], in_fd: i32, out_fd: i32);
|
|
}
|
|
|
|
#[namespace = "rust"]
|
|
#[allow(unused_unsafe)]
|
|
extern "Rust" {
|
|
fn extract_boot_from_payload(
|
|
partition: Utf8CStrRef,
|
|
in_path: Utf8CStrRef,
|
|
out_path: Utf8CStrRef,
|
|
) -> bool;
|
|
unsafe fn cpio_commands(argc: i32, argv: *const *const c_char) -> bool;
|
|
unsafe fn verify_boot_image(img: &BootImage, cert: *const c_char) -> bool;
|
|
unsafe fn sign_boot_image(
|
|
payload: &[u8],
|
|
name: *const c_char,
|
|
cert: *const c_char,
|
|
key: *const c_char,
|
|
) -> Vec<u8>;
|
|
unsafe fn dtb_commands(argc: i32, argv: *const *const c_char) -> bool;
|
|
}
|
|
}
|
|
|
|
#[inline(always)]
|
|
pub(crate) fn check_env(env: &str) -> bool {
|
|
env::var(env).is_ok_and(|var| var == "true")
|
|
}
|