Un netstack dans le but spécial de transformer les paquets depuis/vers une interface TUN en flux TCP et en paquets UDP. Il utilise smoltcp-rs comme netstack backend.
Cette caisse fournit une prise en charge légère de Netstack pour Linux, iOS, macOS, Android et Windows. Actuellement, il fonctionne sur la plupart des cibles, mais a principalement testé les plateformes populaires, notamment :
// let device = tun2::create_as_async(&cfg)?;
// let framed = device.into_framed();
let ( stack , runner , udp_socket , tcp_listener ) = netstack_smoltcp :: StackBuilder :: default ( )
. stack_buffer_size ( 512 )
. tcp_buffer_size ( 4096 )
. enable_udp ( true )
. enable_tcp ( true )
. enable_icmp ( true )
. build ( )
. unwrap ( ) ;
let mut udp_socket = udp_socket . unwrap ( ) ; // udp enabled
let mut tcp_listener = tcp_listener . unwrap ( ) ; // tcp/icmp enabled
if let Some ( runner ) = runner {
tokio :: spawn ( runner ) ;
}
let ( mut stack_sink , mut stack_stream ) = stack . split ( ) ;
let ( mut tun_sink , mut tun_stream ) = framed . split ( ) ;
// Reads packet from stack and sends to TUN.
tokio :: spawn ( async move {
while let Some ( pkt ) = stack_stream . next ( ) . await {
if let Ok ( pkt ) = pkt {
tun_sink . send ( pkt ) . await . unwrap ( ) ;
}
}
} ) ;
// Reads packet from TUN and sends to stack.
tokio :: spawn ( async move {
while let Some ( pkt ) = tun_stream . next ( ) . await {
if let Ok ( pkt ) = pkt {
stack_sink . send ( pkt ) . await . unwrap ( ) ;
}
}
} ) ;
// Extracts TCP connections from stack and sends them to the dispatcher.
tokio :: spawn ( async move {
handle_inbound_stream ( tcp_listener ) . await ;
} ) ;
// Receive and send UDP packets between netstack and NAT manager. The NAT
// manager would maintain UDP sessions and send them to the dispatcher.
tokio :: spawn ( async move {
handle_inbound_datagram ( udp_socket ) . await ;
} ) ;
Ce projet est sous licence sous l'un ou l'autre des
à votre choix.
Sauf indication contraire explicite de votre part, toute contribution que vous soumettez intentionnellement pour inclusion dans netstack-smoltcp, telle que définie dans la licence Apache-2.0, bénéficiera d'une double licence comme ci-dessus, sans termes ou conditions supplémentaires.
Un merci spécial à ces projets incroyables qui ont inspiré netstack-smoltcp (sans ordre particulier) :