`--dns` serves a zone for the network's members, built from signed state, so a member that is switched off still resolves — its claim outlived the session. IPv4 only, as agreed: the IPv6 overlay address derives from a key that travels in live announcements, so it cannot be answered for an absent member, and answering for some and not others depending on who is online is worse than not answering. On Linux the agent tells systemd-resolved where to ask, over D-Bus. SetLinkDNSEx carries a port, which is why the server needs neither port 53 nor CAP_NET_BIND_SERVICE; the suffix goes in as a routing domain and the link's default route is cleared, so this never becomes the resolver for anything else. The setting is keyed to the overlay interface, which goes with the agent, so it cleans itself up. That step needs permission CAP_NET_ADMIN does not give — resolved asks polkit, and polkit decides by user, not by capability — so it is reported as its own kind of failure with its own remedy. The server runs regardless and status prints the exact dig line: the automatic part is what is missing, not the feature. The zone name is the user's to choose. One shadowing a real public domain is reported and then used, because that is a decision; the warning knows the IANA list, says something different about `.local` where the clash is with mDNS, and stays quiet for names reserved for private use. Two bugs found by running it, both in the supervisor and neither reachable from a unit test, so tests/dns_service.rs drives the real binary. It bound to the allocated overlay address without checking that address was on an interface — with --no-tun it never is — and left the feature silently dead; it now tries the overlay first and falls back to loopback. And it compared the address it got against the address it wanted, which never matched when the preferred one could not be bound, so it tore the listener down every two seconds; it now compares what it tried. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
160 lines
5.7 KiB
Rust
160 lines
5.7 KiB
Rust
//! The DNS service as the binary actually runs it.
|
|
//!
|
|
//! The zone and the server have their own tests. What this covers is the
|
|
//! wiring between them and the agent, which is where the interesting
|
|
//! mistakes live: choosing an address to listen on, and deciding when to
|
|
//! rebuild the listener. Both were wrong once, and neither was reachable
|
|
//! from a unit test, so this runs the real binary.
|
|
|
|
#![allow(clippy::unwrap_used, clippy::expect_used, clippy::panic)]
|
|
|
|
use std::net::{SocketAddr, UdpSocket};
|
|
use std::time::{Duration, Instant};
|
|
|
|
use simple_dns::{Name, Packet, QCLASS, RCODE, TYPE, rdata::RData};
|
|
use tempfile::TempDir;
|
|
|
|
// A port per test, high enough to need no privileges and fixed so the query
|
|
// knows where to look. Distinct because these tests run in parallel and each
|
|
// starts its own agent.
|
|
const PORT_BINDS: u16 = 15361;
|
|
const PORT_REBIND: u16 = 15362;
|
|
const PORT_REFUSE: u16 = 15363;
|
|
|
|
/// Asks, and returns the raw reply. Raw because a parsed packet borrows
|
|
/// from the bytes it came out of.
|
|
fn query(server: SocketAddr, name: &str, qtype: TYPE) -> Option<Vec<u8>> {
|
|
let mut packet = Packet::new_query(0x2468);
|
|
packet.questions.push(simple_dns::Question::new(
|
|
Name::new(name).unwrap(),
|
|
qtype.into(),
|
|
QCLASS::CLASS(simple_dns::CLASS::IN),
|
|
false,
|
|
));
|
|
let bytes = packet.build_bytes_vec().unwrap();
|
|
|
|
let socket = UdpSocket::bind("127.0.0.1:0").ok()?;
|
|
socket
|
|
.set_read_timeout(Some(Duration::from_millis(500)))
|
|
.ok()?;
|
|
socket.send_to(&bytes, server).ok()?;
|
|
let mut buffer = vec![0u8; 4096];
|
|
let read = socket.recv(&mut buffer).ok()?;
|
|
buffer.truncate(read);
|
|
Packet::parse(&buffer).ok()?;
|
|
Some(buffer)
|
|
}
|
|
|
|
/// Whether a reply carries at least one answer record.
|
|
fn has_answer(reply: &[u8]) -> bool {
|
|
Packet::parse(reply).is_ok_and(|packet| !packet.answers.is_empty())
|
|
}
|
|
|
|
/// Blocks until the server answers, or gives up.
|
|
fn wait_for_answer(server: SocketAddr, name: &str) -> Vec<u8> {
|
|
let deadline = Instant::now() + Duration::from_secs(20);
|
|
loop {
|
|
if let Some(reply) = query(server, name, TYPE::A)
|
|
&& has_answer(&reply)
|
|
{
|
|
return reply;
|
|
}
|
|
assert!(Instant::now() < deadline, "the dns server never answered");
|
|
std::thread::sleep(Duration::from_millis(200));
|
|
}
|
|
}
|
|
|
|
/// The agent, running as a real process with its DNS service on.
|
|
struct Running {
|
|
child: std::process::Child,
|
|
_dir: TempDir,
|
|
}
|
|
|
|
impl Drop for Running {
|
|
fn drop(&mut self) {
|
|
let _ = self.child.kill();
|
|
let _ = self.child.wait();
|
|
}
|
|
}
|
|
|
|
fn start(zone: &str, port: u16) -> Running {
|
|
let dir = TempDir::new().unwrap();
|
|
let child = std::process::Command::new(env!("CARGO_BIN_EXE_tsunagi"))
|
|
.args([
|
|
"up",
|
|
"--network",
|
|
"dnswiring",
|
|
"--secret",
|
|
"a-secret-for-the-dns-test",
|
|
])
|
|
.arg("--state-dir")
|
|
.arg(dir.path().join("state"))
|
|
.arg("--cache-dir")
|
|
.arg(dir.path().join("cache"))
|
|
// No real interface and no internet: this is about the wiring.
|
|
.args(["--transport", "local", "--no-tun", "--wireguard", "--dns"])
|
|
.args(["--dns-zone", zone])
|
|
.args(["--dns-port", &port.to_string()])
|
|
.args(["--log", "error", "--status-interval", "0"])
|
|
.stdout(std::process::Stdio::null())
|
|
.stderr(std::process::Stdio::null())
|
|
.spawn()
|
|
.expect("the agent binary starts");
|
|
Running { child, _dir: dir }
|
|
}
|
|
|
|
#[test]
|
|
fn the_resolver_comes_up_even_with_no_overlay_interface_to_put_it_on() {
|
|
// The promise is that the port is served whatever else fails. With
|
|
// `--no-tun` the allocated overlay address is on no interface, so
|
|
// binding to it cannot work and loopback is the answer — getting this
|
|
// wrong left the feature silently dead.
|
|
let _agent = start("lab.internal", PORT_BINDS);
|
|
let server: SocketAddr = format!("127.0.0.1:{PORT_BINDS}").parse().unwrap();
|
|
|
|
let reply = wait_for_answer(server, &format!("{}.lab.internal", hostname()));
|
|
let answer = Packet::parse(&reply).unwrap();
|
|
assert_eq!(answer.rcode(), RCODE::NoError);
|
|
match &answer.answers[0].rdata {
|
|
RData::A(_) => {}
|
|
other => panic!("expected an A record, got {other:?}"),
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
fn the_listener_is_not_rebuilt_on_every_pass() {
|
|
// The supervisor compares what it tried last time, not what it got. The
|
|
// other way round it rebound on every tick, because the preferred
|
|
// address is one that never binds here — and the port was shut for a
|
|
// moment each time.
|
|
let _agent = start("rebind.internal", PORT_REBIND);
|
|
let server: SocketAddr = format!("127.0.0.1:{PORT_REBIND}").parse().unwrap();
|
|
let name = format!("{}.rebind.internal", hostname());
|
|
wait_for_answer(server, &name);
|
|
|
|
// Long enough to cross several of the supervisor's passes.
|
|
for round in 0..6 {
|
|
std::thread::sleep(Duration::from_millis(900));
|
|
assert!(
|
|
query(server, &name, TYPE::A).is_some_and(|reply| has_answer(&reply)),
|
|
"the server stopped answering on round {round}"
|
|
);
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
fn a_name_outside_the_zone_is_refused_and_never_forwarded() {
|
|
let _agent = start("refuse.internal", PORT_REFUSE);
|
|
let server: SocketAddr = format!("127.0.0.1:{PORT_REFUSE}").parse().unwrap();
|
|
wait_for_answer(server, &format!("{}.refuse.internal", hostname()));
|
|
|
|
let reply = query(server, "example.com", TYPE::A).expect("an answer");
|
|
let answer = Packet::parse(&reply).unwrap();
|
|
assert_eq!(answer.rcode(), RCODE::Refused);
|
|
assert!(answer.answers.is_empty());
|
|
}
|
|
|
|
fn hostname() -> String {
|
|
tsunagi::agent::system_hostname().unwrap_or_else(|| "unknown".into())
|
|
}
|