#![doc = include_str!("../README.md")]
extern crate alloc;
const PKG_VERSION: &str = if let Some(version) = option_env!("CARGO_PKG_VERSION") {
version
} else {
""
};
mod config;
mod control_dialer;
mod derp;
mod dial_plan;
#[cfg_attr(not(feature = "async_tokio"), expect(dead_code))]
mod map_request_builder;
mod node;
#[cfg(feature = "async_tokio")]
mod tokio;
use std::fmt;
#[doc(inline)]
pub use config::{Config, DEFAULT_CONTROL_SERVER};
pub use control_dialer::{ControlDialer, TcpDialer, complete_connection};
pub use derp::{Map as DerpMap, Region as DerpRegion, convert_derp_map};
pub use dial_plan::{DialCandidate, DialMode, DialPlan};
pub use node::{Id as NodeId, Node, StableId as StableNodeId, TailnetAddress};
#[cfg(feature = "async_tokio")]
pub use crate::tokio::{AsyncControlClient, FilterUpdate, PeerUpdate, StateUpdate};
#[derive(Debug, thiserror::Error, Clone, Eq, PartialEq)]
pub enum Error {
#[error("machine was not authorized by control to join tailnet, authorize at {0}")]
MachineNotAuthorized(url::Url),
#[error("invalid URL: {0}")]
InvalidUrl(url::Url),
#[error("a networking error occurred in {0}")]
NetworkError(Operation),
#[error("{0} error in {1}")]
Internal(InternalErrorKind, Operation),
}
impl Error {
fn io_error(err: std::io::Error, op: Operation) -> Self {
if crate::is_network_error(&err) {
Error::NetworkError(op)
} else {
Error::Internal(InternalErrorKind::Io, op)
}
}
}
#[non_exhaustive]
#[derive(Debug, Clone, Copy, Eq, PartialEq)]
pub enum InternalErrorKind {
Url,
Http,
SerDe,
Io,
MessageFormat,
Utf8,
NoiseHandshake,
Challenge,
MachineAuthorization,
}
impl fmt::Display for InternalErrorKind {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
InternalErrorKind::Url => write!(f, "URL parsing error"),
InternalErrorKind::Http => write!(f, "unsuccessful HTTP request or upgrade"),
InternalErrorKind::SerDe => write!(f, "serialization/deserialization error"),
InternalErrorKind::Io => write!(f, "I/O error"),
InternalErrorKind::MessageFormat => write!(f, "message format error"),
InternalErrorKind::Utf8 => write!(f, "invalid UTF8"),
InternalErrorKind::NoiseHandshake => write!(f, "error in Noise handshake"),
InternalErrorKind::Challenge => write!(f, "error with Tailscale challenge packet"),
InternalErrorKind::MachineAuthorization => {
write!(f, "machine not authorized to register with Tailnet")
}
}
}
}
#[derive(Debug, Clone, Copy, Eq, PartialEq)]
pub enum Operation {
MapRequest,
ConnectToControlServer,
Registration,
}
impl fmt::Display for Operation {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
Operation::MapRequest => write!(f, "net map request"),
Operation::ConnectToControlServer => write!(f, "connection to control server"),
Operation::Registration => write!(f, "registration"),
}
}
}
impl From<ts_http_util::Error> for Error {
fn from(error: ts_http_util::Error) -> Self {
tracing::error!(%error, "http error");
if http_error_is_recoverable(error) {
Error::NetworkError(Operation::ConnectToControlServer)
} else {
Error::Internal(InternalErrorKind::Http, Operation::ConnectToControlServer)
}
}
}
fn is_network_error(err: &std::io::Error) -> bool {
use std::io::ErrorKind::*;
matches!(
err.kind(),
ConnectionRefused
| ConnectionReset
| HostUnreachable
| NetworkUnreachable
| ConnectionAborted
| NotConnected
| TimedOut
| AddrNotAvailable
| Interrupted
| NetworkDown
)
}
fn http_error_is_recoverable(error: ts_http_util::Error) -> bool {
match error {
ts_http_util::Error::Io => true,
ts_http_util::Error::InvalidInput
| ts_http_util::Error::Timeout
| ts_http_util::Error::InvalidResponse => false,
ts_http_util::Error::ConnectionClosed => false,
}
}