Sam Therapy
4c9221ee29
Some checks failed
continuous-integration/drone/push Build is failing
:^) Signed-off-by: Sam Therapy <sam@samtherapy.net>
46 lines
1 KiB
Go
46 lines
1 KiB
Go
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
package conf
|
|
|
|
import (
|
|
"errors"
|
|
"strings"
|
|
|
|
"github.com/miekg/dns"
|
|
)
|
|
|
|
// GetPlan9Config gets DNS information from Plan 9, because it's different from UNIX and Windows.
|
|
// Plan 9 stores its network data in /net/ndb, which seems to be formatted a specific way
|
|
// Yoink it and use it.
|
|
//
|
|
// See ndb(7).
|
|
func GetPlan9Config(str string) (*dns.ClientConfig, error) {
|
|
str = strings.ReplaceAll(str, "\n", "")
|
|
spl := strings.FieldsFunc(str, splitChars)
|
|
|
|
var servers []string
|
|
|
|
for _, option := range spl {
|
|
if strings.HasPrefix(option, "dns=") {
|
|
servers = append(servers, strings.TrimPrefix(option, "dns="))
|
|
}
|
|
}
|
|
|
|
if len(servers) == 0 {
|
|
return nil, errPlan9
|
|
}
|
|
|
|
// TODO: read more about how customizable Plan 9 is
|
|
return &dns.ClientConfig{
|
|
Servers: servers,
|
|
Search: []string{},
|
|
Port: "53",
|
|
}, nil
|
|
}
|
|
|
|
// Split the string at either space or tabs.
|
|
func splitChars(r rune) bool {
|
|
return r == ' ' || r == '\t'
|
|
}
|
|
|
|
var errPlan9 = errors.New("plan9Config: no DNS servers found")
|