Compare commits

...

5 Commits

Author SHA1 Message Date
Yu Watanabe 369e118b67
Merge ba076766a5 into 81af8f998e 2024-09-18 11:31:16 +02:00
Yu Watanabe ba076766a5 test: add test case for mDNS transaction 2024-09-15 15:17:13 +09:00
Yu Watanabe 12eb660b72 resolve: also log sender port on receive 2024-09-15 15:17:13 +09:00
Yu Watanabe 5c90a4546c resolve/mdns: source port of mDNS replies must be 5353
RFC 6762 section 6:
The source UDP port in all Multicast DNS responses MUST be 5353 (the well-known port
assigned to mDNS). Multicast DNS implementations MUST silently ignore any Multicast DNS
responses they receive where the source UDP port is not 5353.

Prompted by #33806.
2024-09-15 15:17:07 +09:00
Yu Watanabe 1d83a48049 Revert "systemd.dnssd does not handle local requests (#32991)"
This reverts commit a2ae7ed7d0.

The commit causes issue #33806.
Reopening issue #32990.
Fixes #33806.
2024-09-15 15:13:35 +09:00
3 changed files with 93 additions and 6 deletions

View File

@ -960,9 +960,9 @@ int manager_recv(Manager *m, int fd, DnsProtocol protocol, DnsPacket **ret) {
p->ifindex = manager_find_ifindex(m, p->family, &p->destination);
}
log_debug("Received %s UDP packet of size %zu, ifindex=%i, ttl=%u, fragsize=%zu, sender=%s, destination=%s",
log_debug("Received %s UDP packet of size %zu, ifindex=%i, ttl=%u, fragsize=%zu, sender=%s, sender_port=%u, destination=%s",
dns_protocol_to_string(protocol), p->size, p->ifindex, p->ttl, p->fragsize,
IN_ADDR_TO_STRING(p->family, &p->sender),
IN_ADDR_TO_STRING(p->family, &p->sender), p->sender_port,
IN_ADDR_TO_STRING(p->family, &p->destination));
*ret = TAKE_PTR(p);

View File

@ -386,10 +386,7 @@ static int on_mdns_packet(sd_event_source *s, int fd, uint32_t revents, void *us
if (r <= 0)
return r;
/* Refuse traffic from the local host, to avoid query loops. However, allow legacy mDNS
* unicast queries through anyway (we never send those ourselves, hence no risk).
* i.e. check for the source port nr. */
if (p->sender_port == MDNS_PORT && manager_packet_from_local_address(m, p))
if (manager_packet_from_local_address(m, p))
return 0;
scope = manager_find_scope(m, p);
@ -401,6 +398,15 @@ static int on_mdns_packet(sd_event_source *s, int fd, uint32_t revents, void *us
if (dns_packet_validate_reply(p) > 0) {
DnsResourceRecord *rr;
/* RFC 6762 section 6:
* The source UDP port in all Multicast DNS responses MUST be 5353 (the well-known port
* assigned to mDNS). Multicast DNS implementations MUST silently ignore any Multicast DNS
* responses they receive where the source UDP port is not 5353. */
if (p->sender_port != MDNS_PORT) {
log_debug("Received mDNS reply packet from port %u (not %i), ignoring.", p->sender_port, MDNS_PORT);
return 0;
}
log_debug("Got mDNS reply packet");
/*

View File

@ -985,6 +985,87 @@ testcase_12_resolvectl2() {
restart_resolved
}
testcase_mdns() {
# For issue #32990 and #33806
# Cleanup
# shellcheck disable=SC2317
cleanup() {
rm -f /run/systemd/resolved.conf.d/enable-mdns.conf
rm -rf /run/systemd/dnssd
ip link del veth99 || :
ip netns del ns99 || :
}
trap cleanup RETURN
mkdir -p /run/systemd/resolved.conf.d
cat >/run/systemd/resolved.conf.d/enable-mdns.conf <<EOF
[Resolve]
MulticastDNS=yes
EOF
mkdir -p /run/systemd/dnssd
cat >/run/systemd/dnssd/ssh.dnssd <<EOF
[Service]
Name=%H
Type=_ssh._tcp
Port=22
TxtText=hogehogehoge
Priority=42
Weight=13
EOF
ip netns add ns99
ip link add veth99 type veth peer name veth-peer
ip link set veth-peer netns ns99
ip link set veth99 up
ip netns exec ns99 ip link set veth-peer up
ip link set veth99 multicast on
ip address add 192.168.0.12/24 dev veth99
ip netns exec ns99 ip address add 192.168.0.10/24 dev veth-peer
assert_in '192.168.0.12/24' "$(ip address show dev veth99)"
assert_in '192.168.0.10/24' "$(ip netns exec ns99 ip address show dev veth-peer)"
# make sure networkd is not running.
systemctl stop systemd-networkd.socket
systemctl stop systemd-networkd.service
# restart resolved and enable mdns on interface veth99
restart_resolved
resolvectl mdns veth99 yes
resolvectl domain veth99 local
assert_in 'Global: yes' "$(resolvectl mdns)"
assert_in 'yes' "$(resolvectl mdns veth99)"
assert_in 'local' "$(resolvectl domain veth99)"
run ip netns exec ns99 dig -p 5353 "ns1.local" @192.168.0.12
grep -qE "ns1\.local\.\s+[0-9]+\s+IN\s+A\s+192\.168\.0\.12" "$RUN_OUT"
run ip netns exec ns99 dig -p 5353 -t SRV "ns1._ssh._tcp.local" @192.168.0.12
grep -qE "ns1\._ssh\._tcp\.local\.\s+[0-9]+\s+IN\s+SRV\s+42\s+13\s+22\s+ns1\.local\." "$RUN_OUT"
run ip netns exec ns99 dig -p 5353 -t TXT "ns1._ssh._tcp.local" @192.168.0.12
grep -qE "ns1\._ssh\._tcp\.local\.\s+[0-9]+\s+IN\s+TXT\s+\"hogehogehoge\"" "$RUN_OUT"
run resolvectl query "ns1.local" || :
grep -qE "ns1.local: " "$RUN_OUT"
grep -qE ".*192\.168\.0\.12\s+-- link: veth99" "$RUN_OUT"
run resolvectl query -t SRV "ns1._ssh._tcp.local" || :
grep -qE "ns1\._ssh\._tcp\.local IN SRV 42 13 22 ns1\.local\s+-- link: veth99" "$RUN_OUT"
run resolvectl query -t TXT "ns1._ssh._tcp.local" || :
grep -qE "ns1\._ssh\._tcp\.local IN TXT \"hogehogehoge\"\s+-- link: veth99" "$RUN_OUT"
run resolvectl service "ns1._ssh._tcp.local" || :
grep -qE "ns1\._ssh\._tcp\.local: ns1\.local:22 \[priority=42, weight=13\]" "$RUN_OUT"
# refuse queries from a local address. See issue #32990 and the comment:
# https://github.com/systemd/systemd/pull/34141#discussion_r1736318656
(! dig -p 5353 "ns1.local" @192.168.0.12)
}
# PRE-SETUP
systemctl unmask systemd-resolved.service
systemctl enable --now systemd-resolved.service