diff options
author | Stefano Brivio <sbrivio@redhat.com> | 2022-11-02 23:52:38 +0100 |
---|---|---|
committer | Stefano Brivio <sbrivio@redhat.com> | 2022-11-04 12:04:32 +0100 |
commit | 73f50a76aac20a9c2fda67c5eba25661e2ebb119 (patch) | |
tree | 2d3302665ae733018f6c9f7fd1c01af832a2c227 /dhcpv6.c | |
parent | 7656a6f8888237b9e23d63666e921528b6aaf950 (diff) | |
download | passt-73f50a76aac20a9c2fda67c5eba25661e2ebb119.tar passt-73f50a76aac20a9c2fda67c5eba25661e2ebb119.tar.gz passt-73f50a76aac20a9c2fda67c5eba25661e2ebb119.tar.bz2 passt-73f50a76aac20a9c2fda67c5eba25661e2ebb119.tar.lz passt-73f50a76aac20a9c2fda67c5eba25661e2ebb119.tar.xz passt-73f50a76aac20a9c2fda67c5eba25661e2ebb119.tar.zst passt-73f50a76aac20a9c2fda67c5eba25661e2ebb119.zip |
conf: Split the notions of read DNS addresses and offered ones
With --dns-forward, if the host has a loopback address configured as
DNS server, we should actually use it to forward queries, but, if
--no-map-gw is passed, we shouldn't offer the same address via DHCP,
NDP and DHCPv6, because it's not going to be reachable.
Problematic configuration:
* systemd-resolved configuring the usual 127.0.0.53 on the host: we
read that from /etc/resolv.conf
* --dns-forward specified with an unrelated address, for example
198.51.100.1
We still want to forward queries to 127.0.0.53, if we receive one
directed to 198.51.100.1, so we can't drop 127.0.0.53 from our list:
we want to use it for forwarding. At the same time, we shouldn't
offer 127.0.0.53 to the guest or container either.
With this change, I'm only covering the case of automatically
configured DNS servers from /etc/resolv.conf. We could extend this to
addresses configured with command-line options, but I don't really
see a likely use case at this point.
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Diffstat (limited to 'dhcpv6.c')
-rw-r--r-- | dhcpv6.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -379,7 +379,7 @@ static size_t dhcpv6_dns_fill(const struct ctx *c, char *buf, int offset) if (c->no_dhcp_dns) goto search; - for (i = 0; !IN6_IS_ADDR_UNSPECIFIED(&c->ip6.dns[i]); i++) { + for (i = 0; !IN6_IS_ADDR_UNSPECIFIED(&c->ip6.dns_send[i]); i++) { if (!i) { srv = (struct opt_dns_servers *)(buf + offset); offset += sizeof(struct opt_hdr); @@ -387,7 +387,8 @@ static size_t dhcpv6_dns_fill(const struct ctx *c, char *buf, int offset) srv->hdr.l = 0; } - memcpy(&srv->addr[i], &c->ip6.dns[i], sizeof(srv->addr[i])); + memcpy(&srv->addr[i], &c->ip6.dns_send[i], + sizeof(srv->addr[i])); srv->hdr.l += sizeof(srv->addr[i]); offset += sizeof(srv->addr[i]); } |