2016-08-19 17:14:17 -07:00
|
|
|
package bind
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"fmt"
|
|
|
|
|
"net"
|
|
|
|
|
|
2020-09-24 18:14:41 +02:00
|
|
|
"github.com/coredns/caddy"
|
2017-02-21 22:51:47 -08:00
|
|
|
"github.com/coredns/coredns/core/dnsserver"
|
2017-09-14 09:36:06 +01:00
|
|
|
"github.com/coredns/coredns/plugin"
|
2016-08-19 17:14:17 -07:00
|
|
|
)
|
|
|
|
|
|
2018-02-28 19:56:14 -08:00
|
|
|
func setup(c *caddy.Controller) error {
|
2016-08-19 17:14:17 -07:00
|
|
|
config := dnsserver.GetConfig(c)
|
2018-02-14 14:19:32 -05:00
|
|
|
|
|
|
|
|
// addresses will be consolidated over all BIND directives available in that BlocServer
|
|
|
|
|
all := []string{}
|
2016-08-19 17:14:17 -07:00
|
|
|
for c.Next() {
|
2021-03-18 10:08:48 +03:30
|
|
|
args := c.RemainingArgs()
|
|
|
|
|
if len(args) == 0 {
|
|
|
|
|
return plugin.Error("bind", fmt.Errorf("at least one address or interface name is expected"))
|
2016-08-19 17:14:17 -07:00
|
|
|
}
|
2021-03-18 10:08:48 +03:30
|
|
|
|
|
|
|
|
ifaces, err := net.Interfaces()
|
|
|
|
|
if err != nil {
|
|
|
|
|
return plugin.Error("bind", fmt.Errorf("failed to get interfaces list"))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var isIface bool
|
|
|
|
|
for _, arg := range args {
|
|
|
|
|
isIface = false
|
|
|
|
|
for _, iface := range ifaces {
|
|
|
|
|
if arg == iface.Name {
|
|
|
|
|
isIface = true
|
|
|
|
|
addrs, err := iface.Addrs()
|
|
|
|
|
if err != nil {
|
|
|
|
|
return plugin.Error("bind", fmt.Errorf("failed to get the IP(s) of the interface: %s", arg))
|
|
|
|
|
}
|
|
|
|
|
for _, addr := range addrs {
|
|
|
|
|
if ipnet, ok := addr.(*net.IPNet); ok {
|
2021-03-18 13:24:57 +03:30
|
|
|
if ipnet.IP.To4() != nil || (!ipnet.IP.IsLinkLocalMulticast() && !ipnet.IP.IsLinkLocalUnicast()) {
|
|
|
|
|
all = append(all, ipnet.IP.String())
|
|
|
|
|
}
|
2021-03-18 10:08:48 +03:30
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if !isIface {
|
|
|
|
|
if net.ParseIP(arg) == nil {
|
|
|
|
|
return plugin.Error("bind", fmt.Errorf("not a valid IP address: %s", arg))
|
|
|
|
|
}
|
|
|
|
|
all = append(all, arg)
|
2018-02-14 14:19:32 -05:00
|
|
|
}
|
|
|
|
|
}
|
2016-08-19 17:14:17 -07:00
|
|
|
}
|
2018-02-14 14:19:32 -05:00
|
|
|
config.ListenHosts = all
|
2016-08-19 17:14:17 -07:00
|
|
|
return nil
|
|
|
|
|
}
|