mirror of
https://github.com/smoltcp-rs/smoltcp.git
synced 2025-10-02 15:15:05 +00:00
125 lines
4.5 KiB
Rust
125 lines
4.5 KiB
Rust
mod utils;
|
|
|
|
use log::debug;
|
|
use std::os::unix::io::AsRawFd;
|
|
use std::str::{self, FromStr};
|
|
use url::Url;
|
|
|
|
use smoltcp::iface::{InterfaceBuilder, NeighborCache, Routes, SocketSet};
|
|
use smoltcp::phy::{wait as phy_wait, Device, Medium};
|
|
use smoltcp::socket::tcp;
|
|
use smoltcp::time::Instant;
|
|
use smoltcp::wire::{EthernetAddress, IpAddress, IpCidr, Ipv4Address, Ipv6Address};
|
|
|
|
fn main() {
|
|
utils::setup_logging("");
|
|
|
|
let (mut opts, mut free) = utils::create_options();
|
|
utils::add_tuntap_options(&mut opts, &mut free);
|
|
utils::add_middleware_options(&mut opts, &mut free);
|
|
free.push("ADDRESS");
|
|
free.push("URL");
|
|
|
|
let mut matches = utils::parse_options(&opts, free);
|
|
let device = utils::parse_tuntap_options(&mut matches);
|
|
let fd = device.as_raw_fd();
|
|
let mut device =
|
|
utils::parse_middleware_options(&mut matches, device, /*loopback=*/ false);
|
|
let address = IpAddress::from_str(&matches.free[0]).expect("invalid address format");
|
|
let url = Url::parse(&matches.free[1]).expect("invalid url format");
|
|
|
|
let neighbor_cache = NeighborCache::new();
|
|
|
|
let tcp_rx_buffer = tcp::SocketBuffer::new(vec![0; 1024]);
|
|
let tcp_tx_buffer = tcp::SocketBuffer::new(vec![0; 1024]);
|
|
let tcp_socket = tcp::Socket::new(tcp_rx_buffer, tcp_tx_buffer);
|
|
|
|
let ethernet_addr = EthernetAddress([0x02, 0x00, 0x00, 0x00, 0x00, 0x02]);
|
|
let mut ip_addrs = heapless::Vec::<IpCidr, 5>::new();
|
|
ip_addrs
|
|
.push(IpCidr::new(IpAddress::v4(192, 168, 69, 1), 24))
|
|
.unwrap();
|
|
ip_addrs
|
|
.push(IpCidr::new(IpAddress::v6(0xfdaa, 0, 0, 0, 0, 0, 0, 1), 64))
|
|
.unwrap();
|
|
ip_addrs
|
|
.push(IpCidr::new(IpAddress::v6(0xfe80, 0, 0, 0, 0, 0, 0, 1), 64))
|
|
.unwrap();
|
|
let default_v4_gw = Ipv4Address::new(192, 168, 69, 100);
|
|
let default_v6_gw = Ipv6Address::new(0xfe80, 0, 0, 0, 0, 0, 0, 0x100);
|
|
let mut routes = Routes::new();
|
|
routes.add_default_ipv4_route(default_v4_gw).unwrap();
|
|
routes.add_default_ipv6_route(default_v6_gw).unwrap();
|
|
|
|
let medium = device.capabilities().medium;
|
|
let mut builder = InterfaceBuilder::new().ip_addrs(ip_addrs).routes(routes);
|
|
if medium == Medium::Ethernet {
|
|
builder = builder
|
|
.hardware_addr(ethernet_addr.into())
|
|
.neighbor_cache(neighbor_cache);
|
|
}
|
|
let mut iface = builder.finalize(&mut device);
|
|
|
|
let mut sockets = SocketSet::new(vec![]);
|
|
let tcp_handle = sockets.add(tcp_socket);
|
|
|
|
enum State {
|
|
Connect,
|
|
Request,
|
|
Response,
|
|
}
|
|
let mut state = State::Connect;
|
|
|
|
loop {
|
|
let timestamp = Instant::now();
|
|
match iface.poll(timestamp, &mut device, &mut sockets) {
|
|
Ok(_) => {}
|
|
Err(e) => {
|
|
debug!("poll error: {}", e);
|
|
}
|
|
}
|
|
|
|
let socket = sockets.get_mut::<tcp::Socket>(tcp_handle);
|
|
let cx = iface.context();
|
|
|
|
state = match state {
|
|
State::Connect if !socket.is_active() => {
|
|
debug!("connecting");
|
|
let local_port = 49152 + rand::random::<u16>() % 16384;
|
|
socket
|
|
.connect(cx, (address, url.port().unwrap_or(80)), local_port)
|
|
.unwrap();
|
|
State::Request
|
|
}
|
|
State::Request if socket.may_send() => {
|
|
debug!("sending request");
|
|
let http_get = "GET ".to_owned() + url.path() + " HTTP/1.1\r\n";
|
|
socket.send_slice(http_get.as_ref()).expect("cannot send");
|
|
let http_host = "Host: ".to_owned() + url.host_str().unwrap() + "\r\n";
|
|
socket.send_slice(http_host.as_ref()).expect("cannot send");
|
|
socket
|
|
.send_slice(b"Connection: close\r\n")
|
|
.expect("cannot send");
|
|
socket.send_slice(b"\r\n").expect("cannot send");
|
|
State::Response
|
|
}
|
|
State::Response if socket.can_recv() => {
|
|
socket
|
|
.recv(|data| {
|
|
println!("{}", str::from_utf8(data).unwrap_or("(invalid utf8)"));
|
|
(data.len(), ())
|
|
})
|
|
.unwrap();
|
|
State::Response
|
|
}
|
|
State::Response if !socket.may_recv() => {
|
|
debug!("received complete response");
|
|
break;
|
|
}
|
|
_ => state,
|
|
};
|
|
|
|
phy_wait(fd, iface.poll_delay(timestamp, &sockets)).expect("wait error");
|
|
}
|
|
}
|