dns/clientconfig.go

114 lines
2.7 KiB
Go
Raw Normal View History

2011-03-08 07:27:36 +00:00
// 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.
// Read system DNS config from /etc/resolv.conf
2011-03-28 15:19:26 +00:00
// Extend this further, but need to thinks about Conn
2011-03-08 07:27:36 +00:00
package dns
import (
"os"
"bufio"
"strconv"
"strings"
"net"
)
2011-07-04 19:32:39 +00:00
// Wraps the contents of the /etc/resolv.conf.
2011-03-29 08:38:54 +00:00
type ClientConfig struct {
Servers []string // servers to use
Search []string // suffixes to append to local name
Port string // what port to use
Ndots int // number of dots in name to trigger absolute lookup
Timeout int // seconds before giving up on packet
Attempts int // lost packets before giving up on server
2011-03-29 08:38:54 +00:00
}
2011-03-08 07:27:36 +00:00
// See resolv.conf(5) on a Linux machine.
2011-03-30 13:35:49 +00:00
// Parse a /etc/resolv.conf like file and return a filled out ClientConfig. Note
2011-07-04 19:32:39 +00:00
// that all nameservers will have the default port number appended (:53)
2011-11-02 22:06:54 +00:00
func ClientConfigFromFile(conf string) (*ClientConfig, error) {
file, err := os.Open(conf)
2011-03-08 07:27:36 +00:00
defer file.Close()
if err != nil {
2011-03-28 15:19:26 +00:00
return nil, err
2011-03-08 07:27:36 +00:00
}
c := new(ClientConfig)
2011-03-08 07:27:36 +00:00
b := bufio.NewReader(file)
2011-03-29 08:38:54 +00:00
c.Servers = make([]string, 3)[0:0] // small, but the standard limit
c.Search = make([]string, 0)
2011-07-23 21:43:43 +00:00
c.Port = "53"
2011-03-29 08:38:54 +00:00
c.Ndots = 1
c.Timeout = 5
c.Attempts = 2
2011-03-08 07:27:36 +00:00
for line, ok := b.ReadString('\n'); ok == nil; line, ok = b.ReadString('\n') {
f := strings.Fields(line)
if len(f) < 1 {
continue
}
switch f[0] {
case "nameserver": // add one name server
2011-03-29 08:38:54 +00:00
a := c.Servers
2011-03-08 07:27:36 +00:00
n := len(a)
if len(f) > 1 && n < cap(a) {
// One more check: make sure server name is
// just an IP address. Otherwise we need DNS
// to look it up.
name := f[1]
switch len(net.ParseIP(name)) {
case 16:
name = "[" + name + "]"
fallthrough
case 4:
a = a[0 : n+1]
2011-03-28 15:19:26 +00:00
a[n] = name + ":53"
2011-03-29 08:38:54 +00:00
c.Servers = a
2011-03-08 07:27:36 +00:00
}
}
case "domain": // set search path to just this domain
if len(f) > 1 {
2011-03-29 08:38:54 +00:00
c.Search = make([]string, 1)
c.Search[0] = f[1]
2011-03-08 07:27:36 +00:00
} else {
2011-03-29 08:38:54 +00:00
c.Search = make([]string, 0)
2011-03-08 07:27:36 +00:00
}
case "search": // set search path to given servers
2011-03-29 08:38:54 +00:00
c.Search = make([]string, len(f)-1)
for i := 0; i < len(c.Search); i++ {
c.Search[i] = f[i+1]
2011-03-08 07:27:36 +00:00
}
case "options": // magic options
for i := 1; i < len(f); i++ {
s := f[i]
switch {
case len(s) >= 6 && s[:6] == "ndots:":
n, _ := strconv.Atoi(s[6:])
if n < 1 {
n = 1
}
2011-03-29 08:38:54 +00:00
c.Ndots = n
2011-03-08 07:27:36 +00:00
case len(s) >= 8 && s[:8] == "timeout:":
n, _ := strconv.Atoi(s[8:])
if n < 1 {
n = 1
}
2011-03-29 08:38:54 +00:00
c.Timeout = n
2011-03-08 07:27:36 +00:00
case len(s) >= 8 && s[:9] == "attempts:":
n, _ := strconv.Atoi(s[9:])
if n < 1 {
n = 1
}
2011-03-29 08:38:54 +00:00
c.Attempts = n
2011-03-08 07:27:36 +00:00
case s == "rotate":
2011-03-24 08:24:24 +00:00
/* not imp */
2011-03-08 07:27:36 +00:00
}
}
}
}
2011-03-29 08:38:54 +00:00
return c, nil
2011-03-08 07:27:36 +00:00
}