mirror of
https://github.com/EasyTier/EasyTier.git
synced 2026-09-04 01:55:41 +00:00
feat(vpn): multi-client WireGuard portal with attached peers (#2502)
* feat(peer): support protocol-agnostic attached peers Add locally attached peers backed by independent, peer-level portable managers and authenticated in-process ring connections. Carry trusted connection provenance through packet admission so attached relay privileges cannot be forged through packet headers. Let every peer manager own ACL loading, sanitized policy updates, route refresh, and runtime cleanup. In Secure Mode, grant attached identities ephemeral credentials instead of sharing administrator and group secrets. * feat(vpn): add reusable attached-peer portal runtime Add a protocol-neutral portal runtime that converts authenticated client sessions into attached EasyTier peers. Own per-client generations, status, packet forwarding, address translation, and peer cleanup without knowing the transport protocol. Add transactional IPv4 source and destination rewriting with correct IPv4, TCP, UDP, ICMP, and quoted-packet checksum updates. Keep the old production portal path temporarily active until the WireGuard adapter is migrated in the next change. * feat(wireguard): attach named clients through peer portal Replace the monolithic WireGuard portal with a native adapter that owns key derivation, UDP demultiplexing, reauthentication, roaming, and bounded per-client packet queues. Hand authenticated sessions to the generic portal runtime for peer lifecycle and IPv4 translation. Move portal configuration into the core instance model, require a dedicated server key, and preserve existing listener, CLI, and runtime configuration behavior. Reject runtime address conflicts before publishing shared configuration. * feat(vpn): expose per-client portal status Project configured clients and their runtime state through the portal RPC, including generated client configuration, listener, peer identity, endpoint, tunnel address, ACL groups, and errors. Keep private client configuration out of the broad instance-info response and expose the explicit RPC through the CLI and Tauri bridge. * feat(vpn): add portal configuration to web clients Expose WireGuard portal listener, key, client, ACL group, and runtime status fields in the shared frontend library, Web dashboard, and Tauri client. Preserve UUID and uint64 values across protobuf JSON boundaries, keep dynamic client editor rows stable, and document the portal workflow. * test(vpn): cover multi-client and roaming WireGuard portals Add two three-node integration tests for the WireGuard VPN portal. The multi-client test connects two kernel WireGuard clients from separate network namespaces, verifies per-client connectivity to mesh nodes, and exercises cross-client traffic that runs the IPv4 source and destination translation in both directions. A TCP echo exchange through the portal additionally covers the TCP pseudo-header checksum rewrite path that ICMP-only ping tests miss, and portal status snapshots must report both clients online with distinct peer ids and correctly learned tunnel addresses. The roaming test swaps the client namespace address (delete the old address, then add the new one) so the kernel WireGuard source cache is invalidated and the client keeps sending under the same session from the new source, exactly like a real network change. The portal must update the client endpoint on the same peer id via the data path (same generation, no re-handshake, no detach/reconnect) while connectivity to mesh nodes is preserved. Supporting changes: run_wireguard_client now takes an interface name, and the shared namespace topology gains net_f (10.1.2.5) on the portal bridge for the second client.
This commit is contained in:
@@ -0,0 +1,435 @@
|
||||
//! Shared WireGuard packet engine for named portal clients.
|
||||
|
||||
use atomic_shim::AtomicU64;
|
||||
use std::{
|
||||
collections::HashMap,
|
||||
net::SocketAddr,
|
||||
sync::{Arc, atomic::Ordering},
|
||||
time::Duration,
|
||||
};
|
||||
|
||||
use boringtun::{
|
||||
noise::{
|
||||
Packet, Tunn, TunnResult, errors::WireGuardError, handshake::parse_handshake_anon,
|
||||
rate_limiter::RateLimiter,
|
||||
},
|
||||
x25519::{PublicKey, StaticSecret},
|
||||
};
|
||||
use easytier_core::{
|
||||
config::toml::VpnPortalClientConfig, gateway::vpn_portal::PortalSession,
|
||||
socket::udp::VirtualUdpSocket,
|
||||
};
|
||||
use tokio::{
|
||||
sync::{Mutex, mpsc, watch},
|
||||
task::JoinSet,
|
||||
};
|
||||
use tokio_util::sync::CancellationToken;
|
||||
|
||||
use crate::socket::udp::RuntimeUdpSocket;
|
||||
const MIN_WIREGUARD_PACKET_CAPACITY: usize = 148;
|
||||
// We pre-verify through this shared limiter and BoringTun verifies again inside
|
||||
// each Tunn. Doubling the threshold preserves the intended 100 datagrams/s
|
||||
// transition to cookies while retaining the upstream security ordering.
|
||||
const DOUBLE_VERIFY_HANDSHAKE_LIMIT: u64 = 200;
|
||||
const TIMER_INTERVAL: Duration = Duration::from_millis(250);
|
||||
const PORTAL_PACKET_CAPACITY: usize = 128;
|
||||
#[derive(Clone)]
|
||||
pub(super) struct DerivedClient {
|
||||
pub(super) config: VpnPortalClientConfig,
|
||||
pub(super) wireguard_private: [u8; 32],
|
||||
pub(super) wireguard_public: PublicKey,
|
||||
pub(super) identity_private_key: [u8; 32],
|
||||
}
|
||||
|
||||
struct PortalChannels {
|
||||
endpoint: watch::Receiver<String>,
|
||||
from_client: mpsc::Receiver<Vec<u8>>,
|
||||
to_client: mpsc::Sender<Vec<u8>>,
|
||||
}
|
||||
|
||||
struct ClientSession {
|
||||
generation: u64,
|
||||
endpoint: Option<Endpoint>,
|
||||
endpoint_updates: watch::Sender<String>,
|
||||
tunnel: Tunn,
|
||||
from_client: mpsc::Sender<Vec<u8>>,
|
||||
portal_channels: Option<PortalChannels>,
|
||||
drain_capacity: usize,
|
||||
tasks: JoinSet<()>,
|
||||
}
|
||||
|
||||
struct ClientSlot {
|
||||
client: DerivedClient,
|
||||
index: u32,
|
||||
next_generation: AtomicU64,
|
||||
session: Mutex<Option<ClientSession>>,
|
||||
}
|
||||
|
||||
#[derive(Clone)]
|
||||
struct Endpoint {
|
||||
socket: Arc<RuntimeUdpSocket>,
|
||||
remote: SocketAddr,
|
||||
}
|
||||
|
||||
impl ClientSession {
|
||||
fn update_endpoint(&mut self, socket: Arc<RuntimeUdpSocket>, remote: SocketAddr) {
|
||||
let changed = self
|
||||
.endpoint
|
||||
.as_ref()
|
||||
.is_none_or(|endpoint| endpoint.remote != remote);
|
||||
self.endpoint = Some(Endpoint { socket, remote });
|
||||
if changed {
|
||||
self.endpoint_updates.send_replace(remote.to_string());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
pub(super) struct PortalEngine {
|
||||
server_private: StaticSecret,
|
||||
server_public: PublicKey,
|
||||
rate_limiter: Arc<RateLimiter>,
|
||||
by_public_key: HashMap<[u8; 32], Arc<ClientSlot>>,
|
||||
by_index: HashMap<u32, Arc<ClientSlot>>,
|
||||
accepted: mpsc::UnboundedSender<PortalSession>,
|
||||
cancel: CancellationToken,
|
||||
}
|
||||
|
||||
impl PortalEngine {
|
||||
pub(super) fn new(
|
||||
server_private: [u8; 32],
|
||||
clients: Vec<DerivedClient>,
|
||||
accepted: mpsc::UnboundedSender<PortalSession>,
|
||||
) -> Arc<Self> {
|
||||
let server_private = StaticSecret::from(server_private);
|
||||
let server_public = PublicKey::from(&server_private);
|
||||
let mut by_public_key = HashMap::with_capacity(clients.len());
|
||||
let mut by_index = HashMap::with_capacity(clients.len());
|
||||
for (offset, client) in clients.into_iter().enumerate() {
|
||||
let index = u32::try_from(offset + 1).expect("client limit is below u32");
|
||||
let public = *client.wireguard_public.as_bytes();
|
||||
let slot = Arc::new(ClientSlot {
|
||||
client,
|
||||
index,
|
||||
next_generation: AtomicU64::new(1),
|
||||
session: Mutex::new(None),
|
||||
});
|
||||
by_public_key.insert(public, slot.clone());
|
||||
by_index.insert(index, slot);
|
||||
}
|
||||
Arc::new(Self {
|
||||
server_private,
|
||||
server_public,
|
||||
rate_limiter: Arc::new(RateLimiter::new(
|
||||
&server_public,
|
||||
DOUBLE_VERIFY_HANDSHAKE_LIMIT,
|
||||
)),
|
||||
by_public_key,
|
||||
by_index,
|
||||
accepted,
|
||||
cancel: CancellationToken::new(),
|
||||
})
|
||||
}
|
||||
|
||||
pub(super) fn cancel(&self) {
|
||||
self.cancel.cancel();
|
||||
}
|
||||
pub(super) fn connection_count(&self) -> u32 {
|
||||
self.by_index
|
||||
.values()
|
||||
.filter(|slot| {
|
||||
slot.session.try_lock().is_ok_and(|guard| {
|
||||
guard
|
||||
.as_ref()
|
||||
.is_some_and(|session| session.portal_channels.is_none())
|
||||
})
|
||||
})
|
||||
.count() as u32
|
||||
}
|
||||
|
||||
pub(super) async fn handle_datagram(
|
||||
self: &Arc<Self>,
|
||||
socket: Arc<RuntimeUdpSocket>,
|
||||
remote: SocketAddr,
|
||||
datagram: &[u8],
|
||||
) {
|
||||
let mut cookie = [0u8; 148];
|
||||
let parsed = match self
|
||||
.rate_limiter
|
||||
.verify_packet(Some(remote.ip()), datagram, &mut cookie)
|
||||
{
|
||||
Ok(packet) => packet,
|
||||
Err(TunnResult::WriteToNetwork(reply)) => {
|
||||
let _ = socket.send_to(reply, remote).await;
|
||||
return;
|
||||
}
|
||||
Err(_) => return,
|
||||
};
|
||||
let slot = match &parsed {
|
||||
Packet::HandshakeInit(init) => {
|
||||
parse_handshake_anon(&self.server_private, &self.server_public, init)
|
||||
.ok()
|
||||
.and_then(|handshake| {
|
||||
self.by_public_key
|
||||
.get(&handshake.peer_static_public)
|
||||
.cloned()
|
||||
})
|
||||
}
|
||||
Packet::HandshakeResponse(response) => self.slot_by_receiver(response.receiver_idx),
|
||||
Packet::PacketCookieReply(reply) => self.slot_by_receiver(reply.receiver_idx),
|
||||
Packet::PacketData(data) => self.slot_by_receiver(data.receiver_idx),
|
||||
};
|
||||
let Some(slot) = slot else { return };
|
||||
|
||||
let mut session = slot.session.lock().await;
|
||||
if session.is_none() {
|
||||
if !matches!(parsed, Packet::HandshakeInit(_)) {
|
||||
return;
|
||||
}
|
||||
*session = Some(self.new_session(&slot, socket.clone(), remote));
|
||||
}
|
||||
let current = session.as_mut().expect("created above");
|
||||
let is_data = matches!(&parsed, Packet::PacketData(_));
|
||||
let is_handshake_response = matches!(&parsed, Packet::HandshakeResponse(_));
|
||||
|
||||
// The shared pre-verification establishes the correct upstream order.
|
||||
// Tunn::decapsulate performs a second MAC/cookie check because the
|
||||
// dependency's verified-dispatch method is not public. Size the first
|
||||
// output to the datagram: unauthenticated transport packets must not
|
||||
// amplify a tiny allocation into a full-size IP buffer.
|
||||
let mut output = vec![0u8; datagram.len().max(MIN_WIREGUARD_PACKET_CAPACITY)];
|
||||
let mut result = current
|
||||
.tunnel
|
||||
.decapsulate(Some(remote.ip()), datagram, &mut output);
|
||||
let mut first_result = true;
|
||||
loop {
|
||||
match result {
|
||||
TunnResult::Done => {
|
||||
if is_data {
|
||||
current.update_endpoint(socket.clone(), remote);
|
||||
self.activate_client(&slot, current);
|
||||
}
|
||||
current.drain_capacity = MIN_WIREGUARD_PACKET_CAPACITY;
|
||||
break;
|
||||
}
|
||||
TunnResult::Err(WireGuardError::ConnectionExpired) => {
|
||||
let expired = session.take();
|
||||
drop(session);
|
||||
Self::retire_session(expired);
|
||||
return;
|
||||
}
|
||||
TunnResult::Err(_) => break,
|
||||
TunnResult::WriteToNetwork(packet) => {
|
||||
if (first_result && is_handshake_response && is_transport_data_packet(packet))
|
||||
|| is_handshake_response_packet(packet)
|
||||
{
|
||||
current.update_endpoint(socket.clone(), remote);
|
||||
}
|
||||
let _ = socket.send_to(packet, remote).await;
|
||||
|
||||
// BoringTun queues a Core packet while it establishes a
|
||||
// session. Its contract requires empty decapsulate calls
|
||||
// after every network write until Done releases that queue.
|
||||
first_result = false;
|
||||
if output.len() < current.drain_capacity {
|
||||
output.resize(current.drain_capacity, 0);
|
||||
}
|
||||
result = current.tunnel.decapsulate(None, &[], &mut output);
|
||||
}
|
||||
TunnResult::WriteToTunnelV4(packet, _) => {
|
||||
current.update_endpoint(socket.clone(), remote);
|
||||
self.activate_client(&slot, current);
|
||||
match current.from_client.try_send(packet.to_vec()) {
|
||||
Ok(()) => {}
|
||||
Err(mpsc::error::TrySendError::Full(_)) => {
|
||||
tracing::debug!(
|
||||
client = %slot.client.config.name,
|
||||
"dropping WireGuard packet because the client queue is full"
|
||||
);
|
||||
}
|
||||
Err(mpsc::error::TrySendError::Closed(_)) => {
|
||||
let generation = current.generation;
|
||||
drop(session);
|
||||
self.expire_if_current(slot, generation).await;
|
||||
return;
|
||||
}
|
||||
}
|
||||
break;
|
||||
}
|
||||
TunnResult::WriteToTunnelV6(_, _) => {
|
||||
// Portal traffic is deliberately IPv4-only.
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn activate_client(&self, slot: &ClientSlot, session: &mut ClientSession) {
|
||||
let Some(channels) = session.portal_channels.take() else {
|
||||
return;
|
||||
};
|
||||
let _ = self.accepted.send(PortalSession {
|
||||
client_name: slot.client.config.name.clone(),
|
||||
endpoint: channels.endpoint,
|
||||
identity_private_key: slot.client.identity_private_key,
|
||||
from_client: channels.from_client,
|
||||
to_client: channels.to_client,
|
||||
});
|
||||
}
|
||||
|
||||
fn slot_by_receiver(&self, receiver: u32) -> Option<Arc<ClientSlot>> {
|
||||
self.by_index.get(&(receiver >> 8)).cloned()
|
||||
}
|
||||
|
||||
fn new_session(
|
||||
self: &Arc<Self>,
|
||||
slot: &Arc<ClientSlot>,
|
||||
socket: Arc<RuntimeUdpSocket>,
|
||||
remote: SocketAddr,
|
||||
) -> ClientSession {
|
||||
let generation = slot.next_generation.fetch_add(1, Ordering::Relaxed);
|
||||
let (from_client, portal_from_client) = mpsc::channel(PORTAL_PACKET_CAPACITY);
|
||||
let (portal_to_client, mut to_client) = mpsc::channel::<Vec<u8>>(PORTAL_PACKET_CAPACITY);
|
||||
let (endpoint_updates, portal_endpoint) = watch::channel(remote.to_string());
|
||||
let engine = Arc::downgrade(self);
|
||||
let slot_for_task = Arc::downgrade(slot);
|
||||
let mut tasks = JoinSet::new();
|
||||
tasks.spawn(async move {
|
||||
while let Some(payload) = to_client.recv().await {
|
||||
let Some(engine) = engine.upgrade() else {
|
||||
return;
|
||||
};
|
||||
let Some(slot) = slot_for_task.upgrade() else {
|
||||
return;
|
||||
};
|
||||
engine
|
||||
.encapsulate_for_client(&slot, generation, &payload)
|
||||
.await;
|
||||
}
|
||||
if let (Some(engine), Some(slot)) = (engine.upgrade(), slot_for_task.upgrade()) {
|
||||
engine.expire_if_current(slot, generation).await;
|
||||
}
|
||||
});
|
||||
ClientSession {
|
||||
generation,
|
||||
endpoint: Some(Endpoint { socket, remote }),
|
||||
endpoint_updates,
|
||||
tunnel: Tunn::new(
|
||||
self.server_private.clone(),
|
||||
slot.client.wireguard_public,
|
||||
None,
|
||||
None,
|
||||
slot.index,
|
||||
Some(self.rate_limiter.clone()),
|
||||
),
|
||||
from_client,
|
||||
portal_channels: Some(PortalChannels {
|
||||
endpoint: portal_endpoint,
|
||||
from_client: portal_from_client,
|
||||
to_client: portal_to_client,
|
||||
}),
|
||||
drain_capacity: MIN_WIREGUARD_PACKET_CAPACITY,
|
||||
tasks,
|
||||
}
|
||||
}
|
||||
|
||||
async fn encapsulate_for_client(
|
||||
self: &Arc<Self>,
|
||||
slot: &Arc<ClientSlot>,
|
||||
generation: u64,
|
||||
payload: &[u8],
|
||||
) {
|
||||
let mut output = vec![0u8; payload.len().saturating_add(148).max(148)];
|
||||
let mut guard = slot.session.lock().await;
|
||||
let Some(session) = guard
|
||||
.as_mut()
|
||||
.filter(|session| session.generation == generation)
|
||||
else {
|
||||
return;
|
||||
};
|
||||
match session.tunnel.encapsulate(payload, &mut output) {
|
||||
TunnResult::WriteToNetwork(packet) => {
|
||||
if is_handshake_initiation(packet) {
|
||||
session.drain_capacity =
|
||||
session.drain_capacity.max(payload.len().saturating_add(32));
|
||||
}
|
||||
if let Some(endpoint) = session.endpoint.clone() {
|
||||
let _ = endpoint.socket.send_to(packet, endpoint.remote).await;
|
||||
}
|
||||
}
|
||||
TunnResult::Done => {
|
||||
session.drain_capacity =
|
||||
session.drain_capacity.max(payload.len().saturating_add(32));
|
||||
}
|
||||
TunnResult::Err(WireGuardError::ConnectionExpired) => {
|
||||
drop(guard);
|
||||
self.expire_if_current(slot.clone(), generation).await;
|
||||
}
|
||||
_ => {}
|
||||
}
|
||||
}
|
||||
|
||||
async fn expire_if_current(self: &Arc<Self>, slot: Arc<ClientSlot>, generation: u64) {
|
||||
let expired = {
|
||||
let mut guard = slot.session.lock().await;
|
||||
if guard
|
||||
.as_ref()
|
||||
.is_some_and(|session| session.generation == generation)
|
||||
{
|
||||
guard.take()
|
||||
} else {
|
||||
None
|
||||
}
|
||||
};
|
||||
Self::retire_session(expired);
|
||||
}
|
||||
|
||||
fn retire_session(expired: Option<ClientSession>) {
|
||||
if let Some(mut expired) = expired {
|
||||
expired.tasks.abort_all();
|
||||
// Dropping the ring sink atomically disconnects the matching Core
|
||||
// generation. A newer generation, if any, owns a different ring.
|
||||
}
|
||||
}
|
||||
|
||||
pub(super) async fn run_timers(self: Arc<Self>) {
|
||||
let mut interval = tokio::time::interval(TIMER_INTERVAL);
|
||||
loop {
|
||||
tokio::select! {
|
||||
_ = self.cancel.cancelled() => return,
|
||||
_ = interval.tick() => {}
|
||||
}
|
||||
self.rate_limiter.reset_count();
|
||||
for slot in self.by_index.values() {
|
||||
let mut output = [0u8; 148];
|
||||
let mut guard = slot.session.lock().await;
|
||||
let Some(session) = guard.as_mut() else {
|
||||
continue;
|
||||
};
|
||||
match session.tunnel.update_timers(&mut output) {
|
||||
TunnResult::WriteToNetwork(packet) => {
|
||||
if let Some(endpoint) = session.endpoint.clone() {
|
||||
let _ = endpoint.socket.send_to(packet, endpoint.remote).await;
|
||||
}
|
||||
}
|
||||
TunnResult::Err(WireGuardError::ConnectionExpired) => {
|
||||
let expired = guard.take();
|
||||
drop(guard);
|
||||
Self::retire_session(expired);
|
||||
}
|
||||
_ => {}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
fn is_handshake_initiation(packet: &[u8]) -> bool {
|
||||
packet.len() == 148 && packet.get(..4) == Some(&1u32.to_le_bytes())
|
||||
}
|
||||
|
||||
fn is_handshake_response_packet(packet: &[u8]) -> bool {
|
||||
packet.len() == 92 && packet.get(..4) == Some(&2u32.to_le_bytes())
|
||||
}
|
||||
|
||||
fn is_transport_data_packet(packet: &[u8]) -> bool {
|
||||
packet.len() >= 32 && packet.get(..4) == Some(&4u32.to_le_bytes())
|
||||
}
|
||||
Reference in New Issue
Block a user