| // Copyright 2015 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. |
| |
| // +build darwin dragonfly freebsd linux netbsd openbsd solaris |
| |
| package net |
| |
| import ( |
| "os" |
| "runtime" |
| "sync" |
| "syscall" |
| ) |
| |
| // conf represents a system's network configuration. |
| type conf struct { |
| // forceCgoLookupHost forces CGO to always be used, if available. |
| forceCgoLookupHost bool |
| |
| // machine has an /etc/mdns.allow file |
| hasMDNSAllow bool |
| |
| goos string // the runtime.GOOS, to ease testing |
| |
| nss *nssConf |
| resolv *dnsConfig |
| } |
| |
| var ( |
| confOnce sync.Once // guards init of confVal via initConfVal |
| confVal = &conf{goos: runtime.GOOS} |
| ) |
| |
| // systemConf returns the machine's network configuration. |
| func systemConf() *conf { |
| confOnce.Do(initConfVal) |
| return confVal |
| } |
| |
| func initConfVal() { |
| // Darwin pops up annoying dialog boxes if programs try to do |
| // their own DNS requests. So always use cgo instead, which |
| // avoids that. |
| if runtime.GOOS == "darwin" { |
| confVal.forceCgoLookupHost = true |
| return |
| } |
| |
| // If any environment-specified resolver options are specified, |
| // force cgo. Note that LOCALDOMAIN can change behavior merely |
| // by being specified with the empty string. |
| _, localDomainDefined := syscall.Getenv("LOCALDOMAIN") |
| if os.Getenv("RES_OPTIONS") != "" || os.Getenv("HOSTALIASES") != "" || |
| localDomainDefined { |
| confVal.forceCgoLookupHost = true |
| return |
| } |
| |
| // OpenBSD apparently lets you override the location of resolv.conf |
| // with ASR_CONFIG. If we notice that, defer to libc. |
| if runtime.GOOS == "openbsd" && os.Getenv("ASR_CONFIG") != "" { |
| confVal.forceCgoLookupHost = true |
| return |
| } |
| |
| if runtime.GOOS != "openbsd" { |
| confVal.nss = parseNSSConfFile("/etc/nsswitch.conf") |
| } |
| |
| if resolv, err := dnsReadConfig("/etc/resolv.conf"); err == nil { |
| confVal.resolv = resolv |
| } else if !os.IsNotExist(err.(*DNSConfigError).Err) { |
| // If we can't read the resolv.conf file, assume it |
| // had something important in it and defer to cgo. |
| // libc's resolver might then fail too, but at least |
| // it wasn't our fault. |
| confVal.forceCgoLookupHost = true |
| } |
| |
| if _, err := os.Stat("/etc/mdns.allow"); err == nil { |
| confVal.hasMDNSAllow = true |
| } |
| } |
| |
| // hostLookupOrder determines which strategy to use to resolve hostname. |
| func (c *conf) hostLookupOrder(hostname string) hostLookupOrder { |
| if c.forceCgoLookupHost { |
| return hostLookupCgo |
| } |
| if byteIndex(hostname, '\\') != -1 || byteIndex(hostname, '%') != -1 { |
| // Don't deal with special form hostnames with backslashes |
| // or '%'. |
| return hostLookupCgo |
| } |
| |
| // OpenBSD is unique and doesn't use nsswitch.conf. |
| // It also doesn't support mDNS. |
| if c.goos == "openbsd" { |
| // OpenBSD's resolv.conf manpage says that a non-existent |
| // resolv.conf means "lookup" defaults to only "files", |
| // without DNS lookups. |
| if c.resolv == nil { |
| return hostLookupFiles |
| } |
| lookup := c.resolv.lookup |
| if len(lookup) == 0 { |
| // http://www.openbsd.org/cgi-bin/man.cgi/OpenBSD-current/man5/resolv.conf.5 |
| // "If the lookup keyword is not used in the |
| // system's resolv.conf file then the assumed |
| // order is 'bind file'" |
| return hostLookupDNSFiles |
| } |
| if len(lookup) < 1 || len(lookup) > 2 { |
| return hostLookupCgo |
| } |
| switch lookup[0] { |
| case "bind": |
| if len(lookup) == 2 { |
| if lookup[1] == "file" { |
| return hostLookupDNSFiles |
| } |
| return hostLookupCgo |
| } |
| return hostLookupDNS |
| case "file": |
| if len(lookup) == 2 { |
| if lookup[1] == "bind" { |
| return hostLookupFilesDNS |
| } |
| return hostLookupCgo |
| } |
| return hostLookupFiles |
| default: |
| return hostLookupCgo |
| } |
| } |
| if c.resolv != nil && c.resolv.unknownOpt { |
| return hostLookupCgo |
| } |
| |
| hasDot := byteIndex(hostname, '.') != -1 |
| |
| // Canonicalize the hostname by removing any trailing dot. |
| if stringsHasSuffix(hostname, ".") { |
| hostname = hostname[:len(hostname)-1] |
| } |
| if stringsHasSuffixFold(hostname, ".local") { |
| // Per RFC 6762, the ".local" TLD is special. And |
| // because Go's native resolver doesn't do mDNS or |
| // similar local resolution mechanisms, assume that |
| // libc might (via Avahi, etc) and use cgo. |
| return hostLookupCgo |
| } |
| |
| nss := c.nss |
| srcs := nss.sources["hosts"] |
| // If /etc/nsswitch.conf doesn't exist or doesn't specify any |
| // sources for "hosts", assume Go's DNS will work fine. |
| if os.IsNotExist(nss.err) || (nss.err == nil && len(srcs) == 0) { |
| if c.goos == "solaris" { |
| // illumos defaults to "nis [NOTFOUND=return] files" |
| return hostLookupCgo |
| } |
| if c.goos == "linux" { |
| // glibc says the default is "dns [!UNAVAIL=return] files" |
| // http://www.gnu.org/software/libc/manual/html_node/Notes-on-NSS-Configuration-File.html. |
| return hostLookupDNSFiles |
| } |
| return hostLookupFilesDNS |
| } |
| if nss.err != nil { |
| // We failed to parse or open nsswitch.conf, so |
| // conservatively assume we should use cgo if it's |
| // available. |
| return hostLookupCgo |
| } |
| |
| var mdnsSource, filesSource, dnsSource bool |
| var first string |
| for _, src := range srcs { |
| if src.source == "myhostname" { |
| if hasDot { |
| continue |
| } |
| return hostLookupCgo |
| } |
| if src.source == "files" || src.source == "dns" { |
| if !src.standardCriteria() { |
| return hostLookupCgo // non-standard; let libc deal with it. |
| } |
| if src.source == "files" { |
| filesSource = true |
| } else if src.source == "dns" { |
| dnsSource = true |
| } |
| if first == "" { |
| first = src.source |
| } |
| continue |
| } |
| if stringsHasPrefix(src.source, "mdns") { |
| // e.g. "mdns4", "mdns4_minimal" |
| // We already returned true before if it was *.local. |
| // libc wouldn't have found a hit on this anyway. |
| mdnsSource = true |
| continue |
| } |
| // Some source we don't know how to deal with. |
| return hostLookupCgo |
| } |
| |
| // We don't parse mdns.allow files. They're rare. If one |
| // exists, it might list other TLDs (besides .local) or even |
| // '*', so just let libc deal with it. |
| if mdnsSource && c.hasMDNSAllow { |
| return hostLookupCgo |
| } |
| |
| // Cases where Go can handle it without cgo and C thread |
| // overhead. |
| switch { |
| case filesSource && dnsSource: |
| if first == "files" { |
| return hostLookupFilesDNS |
| } else { |
| return hostLookupDNSFiles |
| } |
| case filesSource: |
| return hostLookupFiles |
| case dnsSource: |
| return hostLookupDNS |
| } |
| |
| // Something weird. Let libc deal with it. |
| return hostLookupCgo |
| } |