Implement new library for tools

This commit is contained in:
Jackson Coxson
2025-02-01 15:49:23 -07:00
parent e61ac5ba45
commit 235de5dab9
8 changed files with 378 additions and 352 deletions

View File

@@ -1,92 +1,74 @@
// Jackson Coxson
use clap::{Arg, Command};
use idevice::{
core_device_proxy::{self},
lockdownd::{self, LockdowndClient},
pairing_file::PairingFile,
Idevice,
IdeviceService,
};
use tun_rs::AbstractDevice;
use std::{
net::{Ipv4Addr, SocketAddrV4},
str::FromStr,
};
mod common;
#[tokio::main]
async fn main() {
env_logger::init();
let mut host = None;
let mut pairing_file = None;
let matches = Command::new("core_device_proxy_tun")
.about("Start a tunnel")
.arg(
Arg::new("host")
.long("host")
.value_name("HOST")
.help("IP address of the device"),
)
.arg(
Arg::new("pairing_file")
.long("pairing-file")
.value_name("PATH")
.help("Path to the pairing file"),
)
.arg(
Arg::new("udid")
.value_name("UDID")
.help("UDID of the device (overrides host/pairing file)")
.index(1),
)
.arg(
Arg::new("about")
.long("about")
.help("Show about information")
.action(clap::ArgAction::SetTrue),
)
.arg(
Arg::new("help")
.short('h')
.long("help")
.help("Show this help message")
.action(clap::ArgAction::SetTrue),
)
.get_matches();
// Loop through args
let mut i = 0;
while i < std::env::args().len() {
match std::env::args().nth(i).unwrap().as_str() {
"--host" => {
host = Some(std::env::args().nth(i + 1).unwrap().to_string());
i += 2;
}
"--pairing-file" => {
pairing_file = Some(std::env::args().nth(i + 1).unwrap().to_string());
i += 2;
}
"-h" | "--help" => {
println!("core_device_proxy_tun - start a tunnel");
println!("Usage:");
println!(" core_device_proxy_tun [options]");
println!("Options:");
println!(" --host <host>");
println!(" --pairing_file <path>");
println!(" -h, --help");
println!(" --about");
println!("\n\nSet RUST_LOG to info, debug, warn, error, or trace to see more logs. Default is error.");
std::process::exit(0);
}
"--about" => {
println!("ideviceinfo - get information from the idevice. Reimplementation of libimobiledevice's binary.");
println!("Copyright (c) 2025 Jackson Coxson");
}
_ => {
i += 1;
}
}
}
if host.is_none() {
println!("Invalid arguments! Pass the IP of the device with --host");
if matches.get_flag("about") {
println!("core_device_proxy - Start a lockdown tunnel on the device");
println!("Copyright (c) 2025 Jackson Coxson");
return;
}
if pairing_file.is_none() {
println!("Invalid arguments! Pass the path the the pairing file with --pairing-file");
return;
}
let ip = Ipv4Addr::from_str(host.unwrap().as_str()).unwrap();
let socket = SocketAddrV4::new(ip, lockdownd::LOCKDOWND_PORT);
let socket = tokio::net::TcpStream::connect(socket).await.unwrap();
let socket = Box::new(socket);
let idevice = Idevice::new(socket, "heartbeat_client");
let udid = matches.get_one::<String>("udid");
let host = matches.get_one::<String>("host");
let pairing_file = matches.get_one::<String>("pairing_file");
let p = PairingFile::read_from_file(pairing_file.as_ref().unwrap()).unwrap();
let provider =
match common::get_provider(udid, host, pairing_file, "core_device_proxy-jkcoxson").await {
Ok(p) => p,
Err(e) => {
eprintln!("{e}");
return;
}
};
let mut lockdown_client = LockdowndClient { idevice };
lockdown_client.start_session(&p).await.unwrap();
let (port, _) = lockdown_client
.start_service(core_device_proxy::SERVCE_NAME)
let mut tun_proxy = core_device_proxy::CoreDeviceProxy::connect(&*provider)
.await
.unwrap();
let socket = SocketAddrV4::new(ip, port);
let socket = tokio::net::TcpStream::connect(socket).await.unwrap();
let socket = Box::new(socket);
let mut idevice = Idevice::new(socket, "core_device_proxy_tun");
let p = PairingFile::read_from_file(pairing_file.unwrap()).unwrap();
idevice.start_session(&p).await.unwrap();
let mut tun_proxy = core_device_proxy::CoreDeviceProxy::new(idevice);
.expect("Unable to connect");
let response = tun_proxy.establish_tunnel().await.unwrap();
let dev = tun_rs::create(&tun_rs::Configuration::default()).unwrap();