Magisk/native/src/base/cxx_extern.rs

68 lines
1.8 KiB
Rust
Raw Normal View History

2023-06-09 02:00:37 -07:00
// Functions listed here are just to export to C++
use std::fmt::Write;
use std::io;
use std::os::fd::{BorrowedFd, OwnedFd, RawFd};
2023-06-09 02:00:37 -07:00
use cxx::private::c_char;
use libc::mode_t;
use crate::{
fd_path, map_fd, map_file, mkdirs, realpath, rm_rf, slice_from_ptr_mut, Directory, ResultExt,
2023-06-12 05:59:50 -07:00
Utf8CStr,
};
pub(crate) fn fd_path_for_cxx(fd: RawFd, buf: &mut [u8]) -> isize {
2023-06-09 02:00:37 -07:00
fd_path(fd, buf)
.log_cxx_with_msg(|w| w.write_str("fd_path failed"))
2023-06-09 02:00:37 -07:00
.map_or(-1_isize, |v| v as isize)
}
#[no_mangle]
unsafe extern "C" fn canonical_path(path: *const c_char, buf: *mut u8, bufsz: usize) -> isize {
2023-06-12 05:59:50 -07:00
match Utf8CStr::from_ptr(path) {
Ok(p) => realpath(p, slice_from_ptr_mut(buf, bufsz)).map_or(-1, |v| v as isize),
Err(_) => -1,
}
2023-06-09 02:00:37 -07:00
}
#[export_name = "mkdirs"]
unsafe extern "C" fn mkdirs_for_cxx(path: *const c_char, mode: mode_t) -> i32 {
2023-06-12 05:59:50 -07:00
match Utf8CStr::from_ptr(path) {
Ok(p) => mkdirs(p, mode).map_or(-1, |_| 0),
Err(_) => -1,
}
2023-06-09 02:00:37 -07:00
}
#[export_name = "rm_rf"]
unsafe extern "C" fn rm_rf_for_cxx(path: *const c_char) -> bool {
2023-06-12 05:59:50 -07:00
match Utf8CStr::from_ptr(path) {
Ok(p) => rm_rf(p).map_or(false, |_| true),
Err(_) => false,
}
2023-06-09 02:00:37 -07:00
}
#[no_mangle]
unsafe extern "C" fn frm_rf(fd: OwnedFd) -> bool {
fn inner(fd: OwnedFd) -> io::Result<()> {
Directory::try_from(fd)?.remove_all()
}
inner(fd).map_or(false, |_| true)
}
pub(crate) fn map_file_for_cxx(path: &[u8], rw: bool) -> &'static mut [u8] {
unsafe {
2023-06-12 05:59:50 -07:00
map_file(Utf8CStr::from_bytes_unchecked(path), rw)
.log_cxx()
.unwrap_or(&mut [])
}
}
pub(crate) fn map_fd_for_cxx(fd: RawFd, sz: usize, rw: bool) -> &'static mut [u8] {
unsafe {
map_fd(BorrowedFd::borrow_raw(fd), sz, rw)
.log_cxx()
.unwrap_or(&mut [])
}
}