Better naming (#2104)
* Move functions from pkg/transport to pkg/parse Although "parse" is a fairly generic name I believe this is somewhat better named. pkg/transport keeps a few constants that are uses throughout for the rest is is renaming a bunch (and the fallout from there to make things compile again). Signed-off-by: Miek Gieben <miek@miek.nl> * Fix tests Signed-off-by: Miek Gieben <miek@miek.nl>
This commit is contained in:
parent
c349446a23
commit
cb932ca231
14 changed files with 95 additions and 82 deletions
|
@ -6,6 +6,7 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/coredns/coredns/plugin"
|
"github.com/coredns/coredns/plugin"
|
||||||
|
"github.com/coredns/coredns/plugin/pkg/parse"
|
||||||
"github.com/coredns/coredns/plugin/pkg/transport"
|
"github.com/coredns/coredns/plugin/pkg/transport"
|
||||||
|
|
||||||
"github.com/miekg/dns"
|
"github.com/miekg/dns"
|
||||||
|
@ -34,7 +35,7 @@ func normalizeZone(str string) (zoneAddr, error) {
|
||||||
var err error
|
var err error
|
||||||
|
|
||||||
var trans string
|
var trans string
|
||||||
trans, str = transport.Parse(str)
|
trans, str = parse.Transport(str)
|
||||||
|
|
||||||
host, port, ipnet, err := plugin.SplitHostPort(str)
|
host, port, ipnet, err := plugin.SplitHostPort(str)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
|
@ -9,6 +9,7 @@ import (
|
||||||
|
|
||||||
"github.com/coredns/coredns/plugin"
|
"github.com/coredns/coredns/plugin"
|
||||||
"github.com/coredns/coredns/plugin/pkg/dnsutil"
|
"github.com/coredns/coredns/plugin/pkg/dnsutil"
|
||||||
|
"github.com/coredns/coredns/plugin/pkg/parse"
|
||||||
"github.com/coredns/coredns/plugin/pkg/transport"
|
"github.com/coredns/coredns/plugin/pkg/transport"
|
||||||
|
|
||||||
"github.com/mholt/caddy"
|
"github.com/mholt/caddy"
|
||||||
|
@ -112,7 +113,7 @@ func (h *dnsContext) MakeServers() ([]caddy.Server, error) {
|
||||||
var servers []caddy.Server
|
var servers []caddy.Server
|
||||||
for addr, group := range groups {
|
for addr, group := range groups {
|
||||||
// switch on addr
|
// switch on addr
|
||||||
switch tr, _ := transport.Parse(addr); tr {
|
switch tr, _ := parse.Transport(addr); tr {
|
||||||
case transport.DNS:
|
case transport.DNS:
|
||||||
s, err := NewServer(addr, group)
|
s, err := NewServer(addr, group)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -236,7 +237,7 @@ func groupConfigsByListenAddr(configs []*Config) (map[string][]*Config, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// DefaultPort is the default port.
|
// DefaultPort is the default port.
|
||||||
const DefaultPort = "53"
|
const DefaultPort = transport.Port
|
||||||
|
|
||||||
// These "soft defaults" are configurable by
|
// These "soft defaults" are configurable by
|
||||||
// command line flags, etc.
|
// command line flags, etc.
|
||||||
|
|
|
@ -6,8 +6,8 @@ import (
|
||||||
"github.com/coredns/coredns/core/dnsserver"
|
"github.com/coredns/coredns/core/dnsserver"
|
||||||
"github.com/coredns/coredns/plugin"
|
"github.com/coredns/coredns/plugin"
|
||||||
"github.com/coredns/coredns/plugin/dnstap/dnstapio"
|
"github.com/coredns/coredns/plugin/dnstap/dnstapio"
|
||||||
"github.com/coredns/coredns/plugin/pkg/dnsutil"
|
|
||||||
clog "github.com/coredns/coredns/plugin/pkg/log"
|
clog "github.com/coredns/coredns/plugin/pkg/log"
|
||||||
|
"github.com/coredns/coredns/plugin/pkg/parse"
|
||||||
|
|
||||||
"github.com/mholt/caddy"
|
"github.com/mholt/caddy"
|
||||||
"github.com/mholt/caddy/caddyfile"
|
"github.com/mholt/caddy/caddyfile"
|
||||||
|
@ -44,7 +44,7 @@ func parseConfig(d *caddyfile.Dispenser) (c config, err error) {
|
||||||
|
|
||||||
if strings.HasPrefix(c.target, "tcp://") {
|
if strings.HasPrefix(c.target, "tcp://") {
|
||||||
// remote IP endpoint
|
// remote IP endpoint
|
||||||
servers, err := dnsutil.ParseHostPortOrFile(c.target[6:])
|
servers, err := parse.HostPortOrFile(c.target[6:])
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return c, d.ArgErr()
|
return c, d.ArgErr()
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,7 +8,7 @@ import (
|
||||||
"github.com/coredns/coredns/core/dnsserver"
|
"github.com/coredns/coredns/core/dnsserver"
|
||||||
"github.com/coredns/coredns/plugin"
|
"github.com/coredns/coredns/plugin"
|
||||||
"github.com/coredns/coredns/plugin/metrics"
|
"github.com/coredns/coredns/plugin/metrics"
|
||||||
"github.com/coredns/coredns/plugin/pkg/dnsutil"
|
"github.com/coredns/coredns/plugin/pkg/parse"
|
||||||
pkgtls "github.com/coredns/coredns/plugin/pkg/tls"
|
pkgtls "github.com/coredns/coredns/plugin/pkg/tls"
|
||||||
"github.com/coredns/coredns/plugin/pkg/transport"
|
"github.com/coredns/coredns/plugin/pkg/transport"
|
||||||
|
|
||||||
|
@ -103,14 +103,14 @@ func ParseForwardStanza(c *caddyfile.Dispenser) (*Forward, error) {
|
||||||
return f, c.ArgErr()
|
return f, c.ArgErr()
|
||||||
}
|
}
|
||||||
|
|
||||||
toHosts, err := dnsutil.ParseHostPortOrFile(to...)
|
toHosts, err := parse.HostPortOrFile(to...)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return f, err
|
return f, err
|
||||||
}
|
}
|
||||||
|
|
||||||
transports := make([]string, len(toHosts))
|
transports := make([]string, len(toHosts))
|
||||||
for i, host := range toHosts {
|
for i, host := range toHosts {
|
||||||
trans, h := transport.Parse(host)
|
trans, h := parse.Transport(host)
|
||||||
p := NewProxy(h, trans)
|
p := NewProxy(h, trans)
|
||||||
f.proxies = append(f.proxies, p)
|
f.proxies = append(f.proxies, p)
|
||||||
transports[i] = trans
|
transports[i] = trans
|
||||||
|
|
|
@ -6,8 +6,7 @@ import (
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/coredns/coredns/plugin/pkg/transport"
|
"github.com/coredns/coredns/plugin/pkg/parse"
|
||||||
|
|
||||||
"github.com/miekg/dns"
|
"github.com/miekg/dns"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -64,7 +63,7 @@ type (
|
||||||
// of any port or transport. The host will also be fully qualified and lowercased.
|
// of any port or transport. The host will also be fully qualified and lowercased.
|
||||||
func (h Host) Normalize() string {
|
func (h Host) Normalize() string {
|
||||||
s := string(h)
|
s := string(h)
|
||||||
_, s = transport.Parse(s)
|
_, s = parse.Transport(s)
|
||||||
|
|
||||||
// The error can be ignore here, because this function is called after the corefile has already been vetted.
|
// The error can be ignore here, because this function is called after the corefile has already been vetted.
|
||||||
host, _, _, _ := SplitHostPort(s)
|
host, _, _, _ := SplitHostPort(s)
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package dnsutil
|
package parse
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
@ -10,15 +10,15 @@ import (
|
||||||
"github.com/miekg/dns"
|
"github.com/miekg/dns"
|
||||||
)
|
)
|
||||||
|
|
||||||
// ParseHostPortOrFile parses the strings in s, each string can either be a
|
// HostPortOrFile parses the strings in s, each string can either be a
|
||||||
// address, [scheme://]address:port or a filename. The address part is checked
|
// address, [scheme://]address:port or a filename. The address part is checked
|
||||||
// and in case of filename a resolv.conf like file is (assumed) and parsed and
|
// and in case of filename a resolv.conf like file is (assumed) and parsed and
|
||||||
// the nameservers found are returned.
|
// the nameservers found are returned.
|
||||||
func ParseHostPortOrFile(s ...string) ([]string, error) {
|
func HostPortOrFile(s ...string) ([]string, error) {
|
||||||
var servers []string
|
var servers []string
|
||||||
for _, h := range s {
|
for _, h := range s {
|
||||||
|
|
||||||
trans, host := transport.Parse(h)
|
trans, host := Transport(h)
|
||||||
|
|
||||||
addr, _, err := net.SplitHostPort(host)
|
addr, _, err := net.SplitHostPort(host)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -35,7 +35,7 @@ func ParseHostPortOrFile(s ...string) ([]string, error) {
|
||||||
var ss string
|
var ss string
|
||||||
switch trans {
|
switch trans {
|
||||||
case transport.DNS:
|
case transport.DNS:
|
||||||
ss = net.JoinHostPort(host, "53")
|
ss = net.JoinHostPort(host, transport.Port)
|
||||||
case transport.TLS:
|
case transport.TLS:
|
||||||
ss = transport.TLS + "://" + net.JoinHostPort(host, transport.TLSPort)
|
ss = transport.TLS + "://" + net.JoinHostPort(host, transport.TLSPort)
|
||||||
case transport.GRPC:
|
case transport.GRPC:
|
||||||
|
@ -77,9 +77,9 @@ func tryFile(s string) ([]string, error) {
|
||||||
return servers, nil
|
return servers, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// ParseHostPort will check if the host part is a valid IP address, if the
|
// HostPort will check if the host part is a valid IP address, if the
|
||||||
// IP address is valid, but no port is found, defaultPort is added.
|
// IP address is valid, but no port is found, defaultPort is added.
|
||||||
func ParseHostPort(s, defaultPort string) (string, error) {
|
func HostPort(s, defaultPort string) (string, error) {
|
||||||
addr, port, err := net.SplitHostPort(s)
|
addr, port, err := net.SplitHostPort(s)
|
||||||
if port == "" {
|
if port == "" {
|
||||||
port = defaultPort
|
port = defaultPort
|
|
@ -1,12 +1,14 @@
|
||||||
package dnsutil
|
package parse
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"os"
|
"os"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"github.com/coredns/coredns/plugin/pkg/transport"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestParseHostPortOrFile(t *testing.T) {
|
func TestHostPortOrFile(t *testing.T) {
|
||||||
tests := []struct {
|
tests := []struct {
|
||||||
in string
|
in string
|
||||||
expected string
|
expected string
|
||||||
|
@ -41,7 +43,7 @@ func TestParseHostPortOrFile(t *testing.T) {
|
||||||
defer os.Remove("resolv.conf")
|
defer os.Remove("resolv.conf")
|
||||||
|
|
||||||
for i, tc := range tests {
|
for i, tc := range tests {
|
||||||
got, err := ParseHostPortOrFile(tc.in)
|
got, err := HostPortOrFile(tc.in)
|
||||||
if err == nil && tc.shouldErr {
|
if err == nil && tc.shouldErr {
|
||||||
t.Errorf("Test %d, expected error, got nil", i)
|
t.Errorf("Test %d, expected error, got nil", i)
|
||||||
continue
|
continue
|
||||||
|
@ -70,7 +72,7 @@ func TestParseHostPort(t *testing.T) {
|
||||||
}
|
}
|
||||||
|
|
||||||
for i, tc := range tests {
|
for i, tc := range tests {
|
||||||
got, err := ParseHostPort(tc.in, "53")
|
got, err := HostPort(tc.in, transport.Port)
|
||||||
if err == nil && tc.shouldErr {
|
if err == nil && tc.shouldErr {
|
||||||
t.Errorf("Test %d, expected error, got nil", i)
|
t.Errorf("Test %d, expected error, got nil", i)
|
||||||
continue
|
continue
|
|
@ -4,7 +4,8 @@ package parse
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"github.com/coredns/coredns/plugin/pkg/dnsutil"
|
"github.com/coredns/coredns/plugin/pkg/transport"
|
||||||
|
|
||||||
"github.com/mholt/caddy"
|
"github.com/mholt/caddy"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -19,7 +20,7 @@ func Transfer(c *caddy.Controller, secondary bool) (tos, froms []string, err err
|
||||||
tos = c.RemainingArgs()
|
tos = c.RemainingArgs()
|
||||||
for i := range tos {
|
for i := range tos {
|
||||||
if tos[i] != "*" {
|
if tos[i] != "*" {
|
||||||
normalized, err := dnsutil.ParseHostPort(tos[i], "53")
|
normalized, err := HostPort(tos[i], transport.Port)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, nil, err
|
return nil, nil, err
|
||||||
}
|
}
|
||||||
|
@ -34,7 +35,7 @@ func Transfer(c *caddy.Controller, secondary bool) (tos, froms []string, err err
|
||||||
froms = c.RemainingArgs()
|
froms = c.RemainingArgs()
|
||||||
for i := range froms {
|
for i := range froms {
|
||||||
if froms[i] != "*" {
|
if froms[i] != "*" {
|
||||||
normalized, err := dnsutil.ParseHostPort(froms[i], "53")
|
normalized, err := HostPort(froms[i], transport.Port)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, nil, err
|
return nil, nil, err
|
||||||
}
|
}
|
||||||
|
|
33
plugin/pkg/parse/transport.go
Normal file
33
plugin/pkg/parse/transport.go
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
package parse
|
||||||
|
|
||||||
|
import (
|
||||||
|
"strings"
|
||||||
|
|
||||||
|
"github.com/coredns/coredns/plugin/pkg/transport"
|
||||||
|
)
|
||||||
|
|
||||||
|
// Transport returns the transport defined in s and a string where the
|
||||||
|
// transport prefix is removed (if there was any). If no transport is defined
|
||||||
|
// we default to TransportDNS
|
||||||
|
func Transport(s string) (trans string, addr string) {
|
||||||
|
switch {
|
||||||
|
case strings.HasPrefix(s, transport.TLS+"://"):
|
||||||
|
s = s[len(transport.TLS+"://"):]
|
||||||
|
return transport.TLS, s
|
||||||
|
|
||||||
|
case strings.HasPrefix(s, transport.DNS+"://"):
|
||||||
|
s = s[len(transport.DNS+"://"):]
|
||||||
|
return transport.DNS, s
|
||||||
|
|
||||||
|
case strings.HasPrefix(s, transport.GRPC+"://"):
|
||||||
|
s = s[len(transport.GRPC+"://"):]
|
||||||
|
return transport.GRPC, s
|
||||||
|
|
||||||
|
case strings.HasPrefix(s, transport.HTTPS+"://"):
|
||||||
|
s = s[len(transport.HTTPS+"://"):]
|
||||||
|
|
||||||
|
return transport.HTTPS, s
|
||||||
|
}
|
||||||
|
|
||||||
|
return transport.DNS, s
|
||||||
|
}
|
25
plugin/pkg/parse/transport_test.go
Normal file
25
plugin/pkg/parse/transport_test.go
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
package parse
|
||||||
|
|
||||||
|
import (
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/coredns/coredns/plugin/pkg/transport"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestTransport(t *testing.T) {
|
||||||
|
for i, test := range []struct {
|
||||||
|
input string
|
||||||
|
expected string
|
||||||
|
}{
|
||||||
|
{"dns://.:53", transport.DNS},
|
||||||
|
{"2003::1/64.:53", transport.DNS},
|
||||||
|
{"grpc://example.org:1443 ", transport.GRPC},
|
||||||
|
{"tls://example.org ", transport.TLS},
|
||||||
|
{"https://example.org ", transport.HTTPS},
|
||||||
|
} {
|
||||||
|
actual, _ := Transport(test.input)
|
||||||
|
if actual != test.expected {
|
||||||
|
t.Errorf("Test %d: Expected %s but got %s", i, test.expected, actual)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,36 +1,6 @@
|
||||||
package transport
|
package transport
|
||||||
|
|
||||||
import (
|
// These transports are supported by CoreDNS.
|
||||||
"strings"
|
|
||||||
)
|
|
||||||
|
|
||||||
// Parse returns the transport defined in s and a string where the
|
|
||||||
// transport prefix is removed (if there was any). If no transport is defined
|
|
||||||
// we default to TransportDNS
|
|
||||||
func Parse(s string) (transport string, addr string) {
|
|
||||||
switch {
|
|
||||||
case strings.HasPrefix(s, TLS+"://"):
|
|
||||||
s = s[len(TLS+"://"):]
|
|
||||||
return TLS, s
|
|
||||||
|
|
||||||
case strings.HasPrefix(s, DNS+"://"):
|
|
||||||
s = s[len(DNS+"://"):]
|
|
||||||
return DNS, s
|
|
||||||
|
|
||||||
case strings.HasPrefix(s, GRPC+"://"):
|
|
||||||
s = s[len(GRPC+"://"):]
|
|
||||||
return GRPC, s
|
|
||||||
|
|
||||||
case strings.HasPrefix(s, HTTPS+"://"):
|
|
||||||
s = s[len(HTTPS+"://"):]
|
|
||||||
|
|
||||||
return HTTPS, s
|
|
||||||
}
|
|
||||||
|
|
||||||
return DNS, s
|
|
||||||
}
|
|
||||||
|
|
||||||
// Supported transports.
|
|
||||||
const (
|
const (
|
||||||
DNS = "dns"
|
DNS = "dns"
|
||||||
TLS = "tls"
|
TLS = "tls"
|
||||||
|
@ -38,8 +8,10 @@ const (
|
||||||
HTTPS = "https"
|
HTTPS = "https"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Port numbers for the various protocols
|
// Port numbers for the various transports.
|
||||||
const (
|
const (
|
||||||
|
// Port is the default port for DNS
|
||||||
|
Port = "53"
|
||||||
// TLSPort is the default port for DNS-over-TLS.
|
// TLSPort is the default port for DNS-over-TLS.
|
||||||
TLSPort = "853"
|
TLSPort = "853"
|
||||||
// GRPCPort is the default port for DNS-over-gRPC.
|
// GRPCPort is the default port for DNS-over-gRPC.
|
||||||
|
|
|
@ -1,21 +0,0 @@
|
||||||
package transport
|
|
||||||
|
|
||||||
import "testing"
|
|
||||||
|
|
||||||
func TestParse(t *testing.T) {
|
|
||||||
for i, test := range []struct {
|
|
||||||
input string
|
|
||||||
expected string
|
|
||||||
}{
|
|
||||||
{"dns://.:53", DNS},
|
|
||||||
{"2003::1/64.:53", DNS},
|
|
||||||
{"grpc://example.org:1443 ", GRPC},
|
|
||||||
{"tls://example.org ", TLS},
|
|
||||||
{"https://example.org ", HTTPS},
|
|
||||||
} {
|
|
||||||
actual, _ := Parse(test.input)
|
|
||||||
if actual != test.expected {
|
|
||||||
t.Errorf("Test %d: Expected %s but got %s", i, test.expected, actual)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -6,8 +6,8 @@ import (
|
||||||
"github.com/miekg/dns"
|
"github.com/miekg/dns"
|
||||||
|
|
||||||
"github.com/coredns/coredns/core/dnsserver"
|
"github.com/coredns/coredns/core/dnsserver"
|
||||||
"github.com/coredns/coredns/plugin/pkg/dnsutil"
|
|
||||||
"github.com/coredns/coredns/plugin/pkg/nonwriter"
|
"github.com/coredns/coredns/plugin/pkg/nonwriter"
|
||||||
|
"github.com/coredns/coredns/plugin/pkg/parse"
|
||||||
"github.com/coredns/coredns/plugin/proxy"
|
"github.com/coredns/coredns/plugin/proxy"
|
||||||
"github.com/coredns/coredns/request"
|
"github.com/coredns/coredns/request"
|
||||||
)
|
)
|
||||||
|
@ -27,7 +27,7 @@ func New(dests []string) (Upstream, error) {
|
||||||
return u, nil
|
return u, nil
|
||||||
}
|
}
|
||||||
u.self = false
|
u.self = false
|
||||||
ups, err := dnsutil.ParseHostPortOrFile(dests...)
|
ups, err := parse.HostPortOrFile(dests...)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return u, err
|
return u, err
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,8 +7,8 @@ import (
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/coredns/coredns/plugin"
|
"github.com/coredns/coredns/plugin"
|
||||||
"github.com/coredns/coredns/plugin/pkg/dnsutil"
|
|
||||||
"github.com/coredns/coredns/plugin/pkg/healthcheck"
|
"github.com/coredns/coredns/plugin/pkg/healthcheck"
|
||||||
|
"github.com/coredns/coredns/plugin/pkg/parse"
|
||||||
"github.com/coredns/coredns/plugin/pkg/tls"
|
"github.com/coredns/coredns/plugin/pkg/tls"
|
||||||
"github.com/mholt/caddy/caddyfile"
|
"github.com/mholt/caddy/caddyfile"
|
||||||
"github.com/miekg/dns"
|
"github.com/miekg/dns"
|
||||||
|
@ -60,7 +60,7 @@ func NewStaticUpstream(c *caddyfile.Dispenser) (Upstream, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// process the host list, substituting in any nameservers in files
|
// process the host list, substituting in any nameservers in files
|
||||||
toHosts, err := dnsutil.ParseHostPortOrFile(to...)
|
toHosts, err := parse.HostPortOrFile(to...)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return upstream, err
|
return upstream, err
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue