You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
170 lines
5.2 KiB
Rust
170 lines
5.2 KiB
Rust
extern crate cc;
|
|
extern crate pkg_config;
|
|
|
|
#[cfg(feature = "bindgen")]
|
|
extern crate bindgen;
|
|
|
|
use std::env;
|
|
use std::path::{Path, PathBuf};
|
|
use std::process::Command;
|
|
|
|
#[cfg(target_os = "windows")]
|
|
fn os_define() -> &'static str {
|
|
"_WIN32"
|
|
}
|
|
|
|
#[cfg(target_os = "linux")]
|
|
fn os_define() -> &'static str {
|
|
"LINUX"
|
|
}
|
|
|
|
#[cfg(target_os = "macos")]
|
|
fn os_define() -> &'static str {
|
|
"LINUX"
|
|
}
|
|
|
|
fn build_leechcore(target: &str) {
|
|
let mut files = vec![
|
|
"device_file.c",
|
|
"device_fpga.c",
|
|
"device_hibr.c",
|
|
"device_pmem.c",
|
|
"device_tmd.c",
|
|
"device_usb3380.c",
|
|
"device_vmm.c",
|
|
"device_vmware.c",
|
|
"leechcore.c",
|
|
"leechrpcclient.c",
|
|
"memmap.c",
|
|
"oscompatibility.c",
|
|
"util.c",
|
|
"ob/ob_bytequeue.c",
|
|
"ob/ob_core.c",
|
|
"ob/ob_map.c",
|
|
"ob/ob_set.c",
|
|
];
|
|
if target.contains("windows") {
|
|
files.push("leechrpc_c.c");
|
|
files.push("leechrpcshared.c");
|
|
}
|
|
|
|
let mut cfg = cc::Build::new();
|
|
cfg.cpp(false)
|
|
.files(
|
|
files
|
|
.iter()
|
|
.map(|o| "src/leechcore/leechcore/".to_string() + o)
|
|
.collect::<Vec<_>>(),
|
|
)
|
|
.flag(&format!("-D{}", os_define()))
|
|
.flag("-D_GNU_SOURCE");
|
|
// EXPORTED_FUNCTION= to not export any symbols
|
|
|
|
if !target.contains("windows") {
|
|
// setup additional flags
|
|
cfg.flag("-fPIC");
|
|
cfg.flag("-pthread");
|
|
cfg.flag("-fvisibility=hidden");
|
|
cfg.flag("-fstack-protector-strong");
|
|
cfg.flag("-D_FORTIFY_SOURCE=2");
|
|
cfg.flag("-O1"); // this is necessary, otherwise inline funcs in leechcore will result in undefined external symbols
|
|
cfg.flag("-z,noexecstack");
|
|
cfg.flag("-Wall");
|
|
cfg.flag("-Wno-multichar");
|
|
cfg.flag("-Wno-unused-result");
|
|
cfg.flag("-Wno-unused-variable");
|
|
cfg.flag("-Wno-unused-value");
|
|
cfg.flag("-Wno-pointer-to-int-cast");
|
|
cfg.flag("-Wno-int-to-pointer-cast");
|
|
cfg.flag("-g");
|
|
cfg.flag("-ldl");
|
|
|
|
// add libusb-1.0 on *nix
|
|
pkg_config::probe_library("libusb-1.0")
|
|
.unwrap_or_else(|err| panic!("Failed to find libusb-1.0 via pkg-config: {:?}", err));
|
|
|
|
let libusb_flags = Command::new("pkg-config")
|
|
.args(["libusb-1.0", "--libs", "--cflags"])
|
|
.output()
|
|
.unwrap_or_else(|err| panic!("Failed to find libusb-1.0 via pkg-config: {:?}", err));
|
|
|
|
for flag in String::from_utf8_lossy(&libusb_flags.stdout)
|
|
.trim()
|
|
.split(' ')
|
|
{
|
|
cfg.flag(flag);
|
|
}
|
|
} else {
|
|
// copy pre-compiled idl file into the leechcore folder
|
|
std::fs::copy("gen/leechrpc_c.c", "src/leechcore/leechcore/leechrpc_c.c").unwrap();
|
|
std::fs::copy("gen/leechrpc_h.h", "src/leechcore/leechcore/leechrpc_h.h").unwrap();
|
|
|
|
// link against required libraries
|
|
println!("cargo:rustc-link-lib=rpcrt4");
|
|
println!("cargo:rustc-link-lib=setupapi");
|
|
println!("cargo:rustc-link-lib=winusb");
|
|
println!("cargo:rustc-link-lib=ws2_32");
|
|
println!("cargo:rustc-link-lib=secur32");
|
|
println!("cargo:rustc-link-lib=credui");
|
|
println!("cargo:rustc-link-lib=ole32");
|
|
}
|
|
|
|
cfg.compile("libleechcore.a");
|
|
|
|
if target.contains("windows") {
|
|
// remove temporary generated files
|
|
std::fs::remove_file("src/leechcore/leechcore/leechrpc_c.c").unwrap();
|
|
std::fs::remove_file("src/leechcore/leechcore/leechrpc_h.h").unwrap();
|
|
}
|
|
|
|
println!("cargo:rustc-link-lib=static=leechcore");
|
|
}
|
|
|
|
#[cfg(feature = "bindgen")]
|
|
fn gen_leechcore<P: AsRef<Path>>(target: &str, out_dir: P) {
|
|
let mut builder = bindgen::builder()
|
|
.clang_arg(format!("-D{} -D_GNU_SOURCE", os_define()))
|
|
.header("./src/leechcore/leechcore/leechcore.h");
|
|
|
|
// workaround for windows.h
|
|
// see https://github.com/rust-lang/rust-bindgen/issues/1556
|
|
if target.contains("windows") {
|
|
builder = builder.blocklist_type("_?P?IMAGE_TLS_DIRECTORY.*")
|
|
}
|
|
|
|
let bindings = builder
|
|
.generate()
|
|
.unwrap_or_else(|err| panic!("Failed to generate bindings: {:?}", err));
|
|
|
|
let bindings_path = out_dir.as_ref().to_path_buf().join("leechcore.rs");
|
|
bindings
|
|
.write_to_file(&bindings_path)
|
|
.unwrap_or_else(|_| panic!("Failed to write {}", bindings_path.display()));
|
|
}
|
|
|
|
#[cfg(not(feature = "bindgen"))]
|
|
fn gen_leechcore<P: AsRef<Path>>(_target: &str, out_dir: P) {
|
|
let manifest_dir = PathBuf::from(env::var("CARGO_MANIFEST_DIR").unwrap());
|
|
|
|
#[cfg(target_os = "windows")]
|
|
let bindings_src_path = manifest_dir.join("src").join("leechcore_windows.rs");
|
|
#[cfg(target_os = "linux")]
|
|
let bindings_src_path = manifest_dir.join("src").join("leechcore_linux.rs");
|
|
|
|
let bindings_dst_path = out_dir.as_ref().to_path_buf().join("leechcore.rs");
|
|
|
|
std::fs::copy(bindings_src_path, bindings_dst_path)
|
|
.expect("Failed to copy leechcore.rs bindings to OUT_DIR");
|
|
}
|
|
|
|
fn main() {
|
|
let target = env::var("TARGET").unwrap();
|
|
let out_dir = PathBuf::from(env::var("OUT_DIR").unwrap());
|
|
|
|
// build leechcore
|
|
build_leechcore(&target);
|
|
|
|
// generate or copy bindings
|
|
gen_leechcore(&target, out_dir);
|
|
}
|