// Copyright 2009 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // This file is a modified version of net/hosts.go from the golang repo package hosts import ( "bufio" "bytes" "io" "net" "os" "strings" "sync" "time" "github.com/coredns/coredns/plugin" ) func parseLiteralIP(addr string) net.IP { if i := strings.Index(addr, "%"); i >= 0 { // discard ipv6 zone addr = addr[0:i] } return net.ParseIP(addr) } func absDomainName(b string) string { return plugin.Name(b).Normalize() } type options struct { // automatically generate IP to Hostname PTR entries // for host entries we parse autoReverse bool // The TTL of the record we generate ttl uint32 // The time between two reload of the configuration reload time.Duration } func newOptions() *options { return &options{ autoReverse: true, ttl: 3600, reload: durationOf5s, } } type hostsMap struct { // Key for the list of literal IP addresses must be a host // name. It would be part of DNS labels, a FQDN or an absolute // FQDN. // For now the key is converted to lower case for convenience. byNameV4 map[string][]net.IP byNameV6 map[string][]net.IP // Key for the list of host names must be a literal IP address // including IPv6 address with zone identifier. // We don't support old-classful IP address notation. byAddr map[string][]string } const ( durationOf0s = time.Duration(0) durationOf5s = time.Duration(5 * time.Second) ) func newHostsMap() *hostsMap { return &hostsMap{ byNameV4: make(map[string][]net.IP), byNameV6: make(map[string][]net.IP), byAddr: make(map[string][]string), } } // Len returns the total number of addresses in the hostmap, this includes // V4/V6 and any reverse addresses. func (h *hostsMap) Len() int { l := 0 for _, v4 := range h.byNameV4 { l += len(v4) } for _, v6 := range h.byNameV6 { l += len(v6) } for _, a := range h.byAddr { l += len(a) } return l } // Hostsfile contains known host entries. type Hostsfile struct { sync.RWMutex // list of zones we are authoritative for Origins []string // hosts maps for lookups hmap *hostsMap // inline saves the hosts file that is inlined in a Corefile. // We need a copy here as we want to use it to initialize the maps for parse. inline *hostsMap // path to the hosts file path string // mtime and size are only read and modified by a single goroutine mtime time.Time size int64 options *options } // readHosts determines if the cached data needs to be updated based on the size and modification time of the hostsfile. func (h *Hostsfile) readHosts() { file, err := os.Open(h.path) if err != nil { // We already log a warning if the file doesn't exist or can't be opened on setup. No need to return the error here. return } defer file.Close() stat, err := file.Stat() h.RLock() size := h.size h.RUnlock() if err == nil && h.mtime.Equal(stat.ModTime()) && size == stat.Size() { return } newMap := h.parse(file) log.Debugf("Parsed hosts file into %d entries", newMap.Len()) h.Lock() h.hmap = newMap // Update the data cache. h.mtime = stat.ModTime() h.size = stat.Size() h.Unlock() } func (h *Hostsfile) initInline(inline []string) { if len(inline) == 0 { return } h.inline = h.parse(strings.NewReader(strings.Join(inline, "\n"))) *h.hmap = *h.inline } // Parse reads the hostsfile and populates the byName and byAddr maps. func (h *Hostsfile) parse(r io.Reader) *hostsMap { hmap := newHostsMap() scanner := bufio.NewScanner(r) for scanner.Scan() { line := scanner.Bytes() if i := bytes.Index(line, []byte{'#'}); i >= 0 { // Discard comments. line = line[0:i] } f := bytes.Fields(line) if len(f) < 2 { continue } addr := parseLiteralIP(string(f[0])) if addr == nil { continue } ver := ipVersion(string(f[0])) for i := 1; i < len(f); i++ { name := absDomainName(string(f[i])) if plugin.Zones(h.Origins).Matches(name) == "" { // name is not in Origins continue } switch ver { case 4: hmap.byNameV4[name] = append(hmap.byNameV4[name], addr) case 6: hmap.byNameV6[name] = append(hmap.byNameV6[name], addr) default: continue } if !h.options.autoReverse { continue } hmap.byAddr[addr.String()] = append(hmap.byAddr[addr.String()], name) } } for name := range h.hmap.byNameV4 { hmap.byNameV4[name] = append(hmap.byNameV4[name], h.hmap.byNameV4[name]...) } for name := range h.hmap.byNameV4 { hmap.byNameV6[name] = append(hmap.byNameV6[name], h.hmap.byNameV6[name]...) } for addr := range h.hmap.byAddr { hmap.byAddr[addr] = append(hmap.byAddr[addr], h.hmap.byAddr[addr]...) } return hmap } // ipVersion returns what IP version was used textually // For why the string is parsed end to start, // see IPv4-Compatible IPv6 addresses - RFC 4291 section 2.5.5 func ipVersion(s string) int { for i := len(s) - 1; i >= 0; i-- { switch s[i] { case '.': return 4 case ':': return 6 } } return 0 } // LookupStaticHost looks up the IP addresses for the given host from the hosts file. func (h *Hostsfile) lookupStaticHost(hmapByName map[string][]net.IP, host string) []net.IP { fqhost := absDomainName(host) h.RLock() defer h.RUnlock() if len(hmapByName) == 0 { return nil } ips, ok := hmapByName[fqhost] if !ok { return nil } ipsCp := make([]net.IP, len(ips)) copy(ipsCp, ips) return ipsCp } // LookupStaticHostV4 looks up the IPv4 addresses for the given host from the hosts file. func (h *Hostsfile) LookupStaticHostV4(host string) []net.IP { return h.lookupStaticHost(h.hmap.byNameV4, host) } // LookupStaticHostV6 looks up the IPv6 addresses for the given host from the hosts file. func (h *Hostsfile) LookupStaticHostV6(host string) []net.IP { return h.lookupStaticHost(h.hmap.byNameV6, host) } // LookupStaticAddr looks up the hosts for the given address from the hosts file. func (h *Hostsfile) LookupStaticAddr(addr string) []string { h.RLock() defer h.RUnlock() addr = parseLiteralIP(addr).String() if addr == "" { return nil } if len(h.hmap.byAddr) == 0 { return nil } hosts, ok := h.hmap.byAddr[addr] if !ok { return nil } hostsCp := make([]string, len(hosts)) copy(hostsCp, hosts) return hostsCp }