dns/clientconfig.go

106 lines
2.6 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.
package dns
import (
"bufio"
2011-12-09 20:45:57 +00:00
"os"
2011-03-08 07:27:36 +00:00
"strconv"
"strings"
)
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
}
// ClientConfigFromFile parses a resolv.conf(5) like file and returns
// a *ClientConfig.
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)
c.Servers = make([]string, 0)
2011-03-29 08:38:54 +00:00
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
if len(f) > 1 {
2011-03-08 07:27:36 +00:00
// One more check: make sure server name is
// just an IP address. Otherwise we need DNS
// to look it up.
name := f[1]
// Don't use this. net.JoinHostPort will fix this for you
// switch x := net.ParseIP(name); true {
// case x.To4() != nil:
// c.Servers = append(c.Servers, name)
// case x.To16() != nil:
// name = "[" + name + "]"
c.Servers = append(c.Servers, name)
// }
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
}