mirror of https://github.com/status-im/consul.git
agent: beginning refactor
This commit is contained in:
parent
36f9924e51
commit
4675cdf01c
25
api/api.go
25
api/api.go
|
@ -120,8 +120,8 @@ func DefaultConfig() *Config {
|
||||||
HttpClient: http.DefaultClient,
|
HttpClient: http.DefaultClient,
|
||||||
}
|
}
|
||||||
|
|
||||||
if len(os.Getenv("CONSUL_HTTP_ADDR")) > 0 {
|
if addr := os.Getenv("CONSUL_HTTP_ADDR"); addr != "" {
|
||||||
config.Address = os.Getenv("CONSUL_HTTP_ADDR")
|
config.Address = addr
|
||||||
}
|
}
|
||||||
|
|
||||||
return config
|
return config
|
||||||
|
@ -137,11 +137,7 @@ func NewClient(config *Config) (*Client, error) {
|
||||||
// bootstrap the config
|
// bootstrap the config
|
||||||
defConfig := DefaultConfig()
|
defConfig := DefaultConfig()
|
||||||
|
|
||||||
switch {
|
if len(config.Address) == 0 {
|
||||||
case len(config.Address) != 0:
|
|
||||||
case len(os.Getenv("CONSUL_HTTP_ADDR")) > 0:
|
|
||||||
config.Address = os.Getenv("CONSUL_HTTP_ADDR")
|
|
||||||
default:
|
|
||||||
config.Address = defConfig.Address
|
config.Address = defConfig.Address
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -153,14 +149,15 @@ func NewClient(config *Config) (*Client, error) {
|
||||||
config.HttpClient = defConfig.HttpClient
|
config.HttpClient = defConfig.HttpClient
|
||||||
}
|
}
|
||||||
|
|
||||||
if strings.HasPrefix(config.Address, "unix://") {
|
if parts := strings.SplitN(config.Address, "unix://", 2); len(parts) == 2 {
|
||||||
shortStr := strings.TrimPrefix(config.Address, "unix://")
|
config.HttpClient = &http.Client{
|
||||||
t := &http.Transport{}
|
Transport: &http.Transport{
|
||||||
t.Dial = func(_, _ string) (net.Conn, error) {
|
Dial: func(_, _ string) (net.Conn, error) {
|
||||||
return net.Dial("unix", shortStr)
|
return net.Dial("unix", parts[1])
|
||||||
|
},
|
||||||
|
},
|
||||||
}
|
}
|
||||||
config.HttpClient.Transport = t
|
config.Address = parts[1]
|
||||||
config.Address = shortStr
|
|
||||||
}
|
}
|
||||||
|
|
||||||
client := &Client{
|
client := &Client{
|
||||||
|
|
|
@ -42,6 +42,10 @@ type testServerConfig struct {
|
||||||
Ports testPortConfig `json:"ports,omitempty"`
|
Ports testPortConfig `json:"ports,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Callback functions for modifying config
|
||||||
|
type configCallback func(c *Config)
|
||||||
|
type serverConfigCallback func(c *testServerConfig)
|
||||||
|
|
||||||
func defaultConfig() *testServerConfig {
|
func defaultConfig() *testServerConfig {
|
||||||
return &testServerConfig{
|
return &testServerConfig{
|
||||||
Bootstrap: true,
|
Bootstrap: true,
|
||||||
|
@ -72,7 +76,7 @@ func newTestServer(t *testing.T) *testServer {
|
||||||
return newTestServerWithConfig(t, func(c *testServerConfig) {})
|
return newTestServerWithConfig(t, func(c *testServerConfig) {})
|
||||||
}
|
}
|
||||||
|
|
||||||
func newTestServerWithConfig(t *testing.T, cb func(c *testServerConfig)) *testServer {
|
func newTestServerWithConfig(t *testing.T, cb serverConfigCallback) *testServer {
|
||||||
if path, err := exec.LookPath("consul"); err != nil || path == "" {
|
if path, err := exec.LookPath("consul"); err != nil || path == "" {
|
||||||
t.Log("consul not found on $PATH, skipping")
|
t.Log("consul not found on $PATH, skipping")
|
||||||
t.SkipNow()
|
t.SkipNow()
|
||||||
|
@ -131,15 +135,21 @@ func makeClient(t *testing.T) (*Client, *testServer) {
|
||||||
}, func(c *testServerConfig) {})
|
}, func(c *testServerConfig) {})
|
||||||
}
|
}
|
||||||
|
|
||||||
func makeClientWithConfig(t *testing.T, clientConfig func(c *Config), serverConfig func(c *testServerConfig)) (*Client, *testServer) {
|
func makeClientWithConfig(t *testing.T, cb1 configCallback, cb2 serverConfigCallback) (*Client, *testServer) {
|
||||||
server := newTestServerWithConfig(t, serverConfig)
|
// Make client config
|
||||||
conf := DefaultConfig()
|
conf := DefaultConfig()
|
||||||
clientConfig(conf)
|
cb1(conf)
|
||||||
|
fmt.Printf("%#v\n", conf.HttpClient.Transport)
|
||||||
|
|
||||||
|
// Create client
|
||||||
client, err := NewClient(conf)
|
client, err := NewClient(conf)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("err: %v", err)
|
t.Fatalf("err: %v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Create server
|
||||||
|
server := newTestServerWithConfig(t, cb2)
|
||||||
|
|
||||||
// Allow the server some time to start, and verify we have a leader.
|
// Allow the server some time to start, and verify we have a leader.
|
||||||
testutil.WaitForResult(func() (bool, error) {
|
testutil.WaitForResult(func() (bool, error) {
|
||||||
req := client.newRequest("GET", "/v1/catalog/nodes")
|
req := client.newRequest("GET", "/v1/catalog/nodes")
|
||||||
|
|
|
@ -1,8 +1,9 @@
|
||||||
package api
|
package api
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"fmt"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"os/user"
|
"os"
|
||||||
"runtime"
|
"runtime"
|
||||||
"testing"
|
"testing"
|
||||||
)
|
)
|
||||||
|
@ -29,25 +30,20 @@ func TestStatusLeaderUnix(t *testing.T) {
|
||||||
|
|
||||||
tempdir, err := ioutil.TempDir("", "consul-test-")
|
tempdir, err := ioutil.TempDir("", "consul-test-")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatal("Could not create a working directory")
|
t.Fatalf("err: %s", err)
|
||||||
}
|
}
|
||||||
|
defer os.RemoveAll(tempdir)
|
||||||
socket := "unix://" + tempdir + "/unix-http-test.sock"
|
socket := fmt.Sprintf("unix://%s/test.sock", tempdir)
|
||||||
|
|
||||||
clientConfig := func(c *Config) {
|
clientConfig := func(c *Config) {
|
||||||
c.Address = socket
|
c.Address = socket
|
||||||
}
|
}
|
||||||
|
|
||||||
serverConfig := func(c *testServerConfig) {
|
serverConfig := func(c *testServerConfig) {
|
||||||
user, err := user.Current()
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal("Could not get current user")
|
|
||||||
}
|
|
||||||
|
|
||||||
if c.Addresses == nil {
|
if c.Addresses == nil {
|
||||||
c.Addresses = &testAddressConfig{}
|
c.Addresses = &testAddressConfig{}
|
||||||
}
|
}
|
||||||
c.Addresses.HTTP = socket + ";" + user.Uid + ";" + user.Gid + ";640"
|
c.Addresses.HTTP = socket
|
||||||
}
|
}
|
||||||
|
|
||||||
c, s := makeClientWithConfig(t, clientConfig, serverConfig)
|
c, s := makeClientWithConfig(t, clientConfig, serverConfig)
|
||||||
|
|
|
@ -7,7 +7,6 @@ import (
|
||||||
"io"
|
"io"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"os"
|
"os"
|
||||||
"os/user"
|
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"reflect"
|
"reflect"
|
||||||
"runtime"
|
"runtime"
|
||||||
|
@ -125,7 +124,7 @@ func TestAgentStartStop(t *testing.T) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestAgent_RPCPingTCP(t *testing.T) {
|
func TestAgent_RPCPing(t *testing.T) {
|
||||||
dir, agent := makeAgent(t, nextConfig())
|
dir, agent := makeAgent(t, nextConfig())
|
||||||
defer os.RemoveAll(dir)
|
defer os.RemoveAll(dir)
|
||||||
defer agent.Shutdown()
|
defer agent.Shutdown()
|
||||||
|
@ -136,35 +135,6 @@ func TestAgent_RPCPingTCP(t *testing.T) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestAgent_RPCPingUnix(t *testing.T) {
|
|
||||||
if runtime.GOOS == "windows" {
|
|
||||||
t.SkipNow()
|
|
||||||
}
|
|
||||||
|
|
||||||
nextConf := nextConfig()
|
|
||||||
|
|
||||||
tempdir, err := ioutil.TempDir("", "consul-test-")
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal("Could not create a working directory")
|
|
||||||
}
|
|
||||||
|
|
||||||
user, err := user.Current()
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal("Could not get current user")
|
|
||||||
}
|
|
||||||
|
|
||||||
nextConf.Addresses.RPC = "unix://" + tempdir + "/unix-rpc-test.sock;" + user.Uid + ";" + user.Gid + ";640"
|
|
||||||
|
|
||||||
dir, agent := makeAgent(t, nextConf)
|
|
||||||
defer os.RemoveAll(dir)
|
|
||||||
defer agent.Shutdown()
|
|
||||||
|
|
||||||
var out struct{}
|
|
||||||
if err := agent.RPC("Status.Ping", struct{}{}, &out); err != nil {
|
|
||||||
t.Fatalf("err: %v", err)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestAgent_AddService(t *testing.T) {
|
func TestAgent_AddService(t *testing.T) {
|
||||||
dir, agent := makeAgent(t, nextConfig())
|
dir, agent := makeAgent(t, nextConfig())
|
||||||
defer os.RemoveAll(dir)
|
defer os.RemoveAll(dir)
|
||||||
|
|
|
@ -295,9 +295,15 @@ func (c *Command) setupAgent(config *Config, logOutput io.Writer, logWriter *log
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
if _, ok := rpcAddr.(*net.UnixAddr); ok {
|
if path, ok := unixSocketAddr(config.Addresses.RPC); ok {
|
||||||
// Remove the socket if it exists, or we'll get a bind error
|
// Remove the socket if it exists, or we'll get a bind error. This
|
||||||
_ = os.Remove(rpcAddr.String())
|
// is necessary to avoid situations where Consul cannot start if the
|
||||||
|
// socket file exists in case of unexpected termination.
|
||||||
|
if _, err := os.Stat(path); err == nil {
|
||||||
|
if err := os.Remove(path); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
rpcListener, err := net.Listen(rpcAddr.Network(), rpcAddr.String())
|
rpcListener, err := net.Listen(rpcAddr.Network(), rpcAddr.String())
|
||||||
|
@ -307,14 +313,6 @@ func (c *Command) setupAgent(config *Config, logOutput io.Writer, logWriter *log
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
if _, ok := rpcAddr.(*net.UnixAddr); ok {
|
|
||||||
if err := adjustUnixSocketPermissions(config.Addresses.RPC); err != nil {
|
|
||||||
agent.Shutdown()
|
|
||||||
c.Ui.Error(fmt.Sprintf("Error adjusting Unix socket permissions: %s", err))
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Start the IPC layer
|
// Start the IPC layer
|
||||||
c.Ui.Output("Starting Consul agent RPC...")
|
c.Ui.Output("Starting Consul agent RPC...")
|
||||||
c.rpcServer = NewAgentRPC(agent, rpcListener, logOutput, logWriter)
|
c.rpcServer = NewAgentRPC(agent, rpcListener, logOutput, logWriter)
|
||||||
|
|
|
@ -7,11 +7,8 @@ import (
|
||||||
"io"
|
"io"
|
||||||
"net"
|
"net"
|
||||||
"os"
|
"os"
|
||||||
"os/user"
|
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"regexp"
|
|
||||||
"sort"
|
"sort"
|
||||||
"strconv"
|
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
@ -348,89 +345,13 @@ type Config struct {
|
||||||
WatchPlans []*watch.WatchPlan `mapstructure:"-" json:"-"`
|
WatchPlans []*watch.WatchPlan `mapstructure:"-" json:"-"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// UnixSocket contains the parameters for a Unix socket interface
|
// unixSocketAddr tests if a given address describes a domain socket,
|
||||||
type UnixSocket struct {
|
// and returns the relevant path part of the string if it is.
|
||||||
// Path to the socket on-disk
|
func unixSocketAddr(addr string) (string, bool) {
|
||||||
Path string
|
|
||||||
|
|
||||||
// uid of the owner of the socket
|
|
||||||
Uid int
|
|
||||||
|
|
||||||
// gid of the group of the socket
|
|
||||||
Gid int
|
|
||||||
|
|
||||||
// Permissions for the socket file
|
|
||||||
Permissions os.FileMode
|
|
||||||
}
|
|
||||||
|
|
||||||
func populateUnixSocket(addr string) (*UnixSocket, error) {
|
|
||||||
if !strings.HasPrefix(addr, "unix://") {
|
if !strings.HasPrefix(addr, "unix://") {
|
||||||
return nil, fmt.Errorf("Failed to parse Unix address, format is unix://[path];[user];[group];[mode]: %v", addr)
|
return "", false
|
||||||
}
|
}
|
||||||
|
return strings.TrimPrefix(addr, "unix://"), true
|
||||||
splitAddr := strings.Split(strings.TrimPrefix(addr, "unix://"), ";")
|
|
||||||
if len(splitAddr) != 4 {
|
|
||||||
return nil, fmt.Errorf("Failed to parse Unix address, format is unix://[path];[user];[group];[mode]: %v", addr)
|
|
||||||
}
|
|
||||||
|
|
||||||
ret := &UnixSocket{Path: splitAddr[0]}
|
|
||||||
|
|
||||||
var userVal *user.User
|
|
||||||
var err error
|
|
||||||
|
|
||||||
regex := regexp.MustCompile("[\\d]+")
|
|
||||||
if regex.MatchString(splitAddr[1]) {
|
|
||||||
userVal, err = user.LookupId(splitAddr[1])
|
|
||||||
} else {
|
|
||||||
userVal, err = user.Lookup(splitAddr[1])
|
|
||||||
}
|
|
||||||
if err != nil {
|
|
||||||
return nil, fmt.Errorf("Invalid user given for Unix socket ownership: %v", splitAddr[1])
|
|
||||||
}
|
|
||||||
|
|
||||||
if uid64, err := strconv.ParseInt(userVal.Uid, 10, 32); err != nil {
|
|
||||||
return nil, fmt.Errorf("Failed to parse given user ID of %v into integer", userVal.Uid)
|
|
||||||
} else {
|
|
||||||
ret.Uid = int(uid64)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Go doesn't currently have a way to look up gid from group name,
|
|
||||||
// so require a numeric gid; see
|
|
||||||
// https://codereview.appspot.com/101310044
|
|
||||||
if gid64, err := strconv.ParseInt(splitAddr[2], 10, 32); err != nil {
|
|
||||||
return nil, fmt.Errorf("Socket group must be given as numeric gid. Failed to parse given group ID of %v into integer", splitAddr[2])
|
|
||||||
} else {
|
|
||||||
ret.Gid = int(gid64)
|
|
||||||
}
|
|
||||||
|
|
||||||
if mode, err := strconv.ParseUint(splitAddr[3], 8, 32); err != nil {
|
|
||||||
return nil, fmt.Errorf("Failed to parse given mode of %v into integer", splitAddr[3])
|
|
||||||
} else {
|
|
||||||
if mode > 0777 {
|
|
||||||
return nil, fmt.Errorf("Given mode is invalid; must be an octal number between 0 and 777")
|
|
||||||
} else {
|
|
||||||
ret.Permissions = os.FileMode(mode)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return ret, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func adjustUnixSocketPermissions(addr string) error {
|
|
||||||
sock, err := populateUnixSocket(addr)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
if err = os.Chown(sock.Path, sock.Uid, sock.Gid); err != nil {
|
|
||||||
return fmt.Errorf("Error attempting to change socket permissions to userid %v and groupid %v: %v", sock.Uid, sock.Gid, err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if err = os.Chmod(sock.Path, sock.Permissions); err != nil {
|
|
||||||
return fmt.Errorf("Error attempting to change socket permissions to mode %v: %v", sock.Permissions, err)
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type dirEnts []os.FileInfo
|
type dirEnts []os.FileInfo
|
||||||
|
@ -485,32 +406,15 @@ func (c *Config) ClientListener(override string, port int) (net.Addr, error) {
|
||||||
addr = c.ClientAddr
|
addr = c.ClientAddr
|
||||||
}
|
}
|
||||||
|
|
||||||
switch {
|
if path, ok := unixSocketAddr(addr); ok {
|
||||||
case strings.HasPrefix(addr, "unix://"):
|
return &net.UnixAddr{Name: path, Net: "unix"}, nil
|
||||||
sock, err := populateUnixSocket(addr)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return &net.UnixAddr{Name: sock.Path, Net: "unix"}, nil
|
|
||||||
|
|
||||||
default:
|
|
||||||
ip := net.ParseIP(addr)
|
ip := net.ParseIP(addr)
|
||||||
if ip == nil {
|
if ip == nil {
|
||||||
return nil, fmt.Errorf("Failed to parse IP: %v", addr)
|
return nil, fmt.Errorf("Failed to parse IP: %v", addr)
|
||||||
}
|
}
|
||||||
|
|
||||||
if ip.IsUnspecified() {
|
|
||||||
ip = net.ParseIP("127.0.0.1")
|
|
||||||
}
|
|
||||||
|
|
||||||
if ip == nil {
|
|
||||||
return nil, fmt.Errorf("Failed to parse IP 127.0.0.1")
|
|
||||||
}
|
|
||||||
|
|
||||||
return &net.TCPAddr{IP: ip, Port: port}, nil
|
return &net.TCPAddr{IP: ip, Port: port}, nil
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
// DecodeConfig reads the configuration from the given reader in JSON
|
// DecodeConfig reads the configuration from the given reader in JSON
|
||||||
// format and decodes it into a proper Config structure.
|
// format and decodes it into a proper Config structure.
|
||||||
|
|
|
@ -4,12 +4,9 @@ import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"encoding/base64"
|
"encoding/base64"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"net"
|
|
||||||
"os"
|
"os"
|
||||||
"os/user"
|
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"reflect"
|
"reflect"
|
||||||
"runtime"
|
|
||||||
"strings"
|
"strings"
|
||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
|
@ -1073,107 +1070,13 @@ func TestReadConfigPaths_dir(t *testing.T) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestUnixSockets(t *testing.T) {
|
func TestUnixSockets(t *testing.T) {
|
||||||
if runtime.GOOS == "windows" {
|
path1, ok := unixSocketAddr("unix:///path/to/socket")
|
||||||
t.SkipNow()
|
if !ok || path1 != "/path/to/socket" {
|
||||||
|
t.Fatalf("bad: %v %v", ok, path1)
|
||||||
}
|
}
|
||||||
|
|
||||||
usr, err := user.Current()
|
path2, ok := unixSocketAddr("notunix://blah")
|
||||||
if err != nil {
|
if ok || path2 != "" {
|
||||||
t.Fatal("Could not get current user: ", err)
|
t.Fatalf("bad: %v %v", ok, path2)
|
||||||
}
|
|
||||||
|
|
||||||
tempdir, err := ioutil.TempDir("", "consul-test-")
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal("Could not create a working directory: ", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
type SocketTestData struct {
|
|
||||||
Path string
|
|
||||||
Uid string
|
|
||||||
Gid string
|
|
||||||
Mode string
|
|
||||||
}
|
|
||||||
|
|
||||||
testUnixSocketPopulation := func(s SocketTestData) (*UnixSocket, error) {
|
|
||||||
return populateUnixSocket("unix://" + s.Path + ";" + s.Uid + ";" + s.Gid + ";" + s.Mode)
|
|
||||||
}
|
|
||||||
|
|
||||||
testUnixSocketPermissions := func(s SocketTestData) error {
|
|
||||||
return adjustUnixSocketPermissions("unix://" + s.Path + ";" + s.Uid + ";" + s.Gid + ";" + s.Mode)
|
|
||||||
}
|
|
||||||
|
|
||||||
_, err = populateUnixSocket("tcp://abc123")
|
|
||||||
if err == nil {
|
|
||||||
t.Fatal("Should have rejected invalid scheme")
|
|
||||||
}
|
|
||||||
|
|
||||||
_, err = populateUnixSocket("unix://x;y;z")
|
|
||||||
if err == nil {
|
|
||||||
t.Fatal("Should have rejected invalid number of parameters in Unix socket definition")
|
|
||||||
}
|
|
||||||
|
|
||||||
std := SocketTestData{
|
|
||||||
Path: tempdir + "/unix-config-test.sock",
|
|
||||||
Uid: usr.Uid,
|
|
||||||
Gid: usr.Gid,
|
|
||||||
Mode: "640",
|
|
||||||
}
|
|
||||||
|
|
||||||
std.Uid = "orasdfdsnfoinweroiu"
|
|
||||||
_, err = testUnixSocketPopulation(std)
|
|
||||||
if err == nil {
|
|
||||||
t.Fatal("Did not error on invalid username")
|
|
||||||
}
|
|
||||||
|
|
||||||
std.Uid = usr.Username
|
|
||||||
std.Gid = "foinfphawepofhewof"
|
|
||||||
_, err = testUnixSocketPopulation(std)
|
|
||||||
if err == nil {
|
|
||||||
t.Fatal("Did not error on invalid group (a name, must be gid)")
|
|
||||||
}
|
|
||||||
|
|
||||||
std.Gid = usr.Gid
|
|
||||||
std.Mode = "999"
|
|
||||||
_, err = testUnixSocketPopulation(std)
|
|
||||||
if err == nil {
|
|
||||||
t.Fatal("Did not error on invalid socket mode")
|
|
||||||
}
|
|
||||||
|
|
||||||
std.Uid = usr.Username
|
|
||||||
std.Mode = "640"
|
|
||||||
_, err = testUnixSocketPopulation(std)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal("Unix socket test failed (using username): ", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
std.Uid = usr.Uid
|
|
||||||
sock, err := testUnixSocketPopulation(std)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal("Unix socket test failed (using uid): ", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
addr := &net.UnixAddr{Name: sock.Path, Net: "unix"}
|
|
||||||
_, err = net.Listen(addr.Network(), addr.String())
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal("Error creating socket for futher tests: ", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
std.Uid = "-999999"
|
|
||||||
err = testUnixSocketPermissions(std)
|
|
||||||
if err == nil {
|
|
||||||
t.Fatal("Did not error on invalid uid")
|
|
||||||
}
|
|
||||||
|
|
||||||
std.Uid = usr.Uid
|
|
||||||
std.Gid = "-999999"
|
|
||||||
err = testUnixSocketPermissions(std)
|
|
||||||
if err == nil {
|
|
||||||
t.Fatal("Did not error on invalid uid")
|
|
||||||
}
|
|
||||||
|
|
||||||
std.Gid = usr.Gid
|
|
||||||
err = testUnixSocketPermissions(std)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal("Adjusting socket permissions failed: ", err)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -59,9 +59,13 @@ func NewHTTPServers(agent *Agent, config *Config, logOutput io.Writer) ([]*HTTPS
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
if _, ok := httpAddr.(*net.UnixAddr); ok {
|
if path, ok := unixSocketAddr(config.Addresses.HTTPS); ok {
|
||||||
// Remove the socket if it exists, or we'll get a bind error
|
// See command/agent/config.go
|
||||||
_ = os.Remove(httpAddr.String())
|
if _, err := os.Stat(path); err == nil {
|
||||||
|
if err := os.Remove(path); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ln, err := net.Listen(httpAddr.Network(), httpAddr.String())
|
ln, err := net.Listen(httpAddr.Network(), httpAddr.String())
|
||||||
|
@ -69,18 +73,10 @@ func NewHTTPServers(agent *Agent, config *Config, logOutput io.Writer) ([]*HTTPS
|
||||||
return nil, fmt.Errorf("Failed to get Listen on %s: %v", httpAddr.String(), err)
|
return nil, fmt.Errorf("Failed to get Listen on %s: %v", httpAddr.String(), err)
|
||||||
}
|
}
|
||||||
|
|
||||||
switch httpAddr.(type) {
|
if _, ok := unixSocketAddr(config.Addresses.HTTPS); ok {
|
||||||
case *net.UnixAddr:
|
|
||||||
if err := adjustUnixSocketPermissions(config.Addresses.HTTPS); err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
list = tls.NewListener(ln, tlsConfig)
|
list = tls.NewListener(ln, tlsConfig)
|
||||||
|
} else {
|
||||||
case *net.TCPAddr:
|
|
||||||
list = tls.NewListener(tcpKeepAliveListener{ln.(*net.TCPListener)}, tlsConfig)
|
list = tls.NewListener(tcpKeepAliveListener{ln.(*net.TCPListener)}, tlsConfig)
|
||||||
|
|
||||||
default:
|
|
||||||
return nil, fmt.Errorf("Error determining address type when attempting to get Listen on %s: %v", httpAddr.String(), err)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Create the mux
|
// Create the mux
|
||||||
|
@ -108,9 +104,13 @@ func NewHTTPServers(agent *Agent, config *Config, logOutput io.Writer) ([]*HTTPS
|
||||||
return nil, fmt.Errorf("Failed to get ClientListener address:port: %v", err)
|
return nil, fmt.Errorf("Failed to get ClientListener address:port: %v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
if _, ok := httpAddr.(*net.UnixAddr); ok {
|
if path, ok := unixSocketAddr(config.Addresses.HTTP); ok {
|
||||||
// Remove the socket if it exists, or we'll get a bind error
|
// See command/agent/config.go
|
||||||
_ = os.Remove(httpAddr.String())
|
if _, err := os.Stat(path); err == nil {
|
||||||
|
if err := os.Remove(path); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ln, err := net.Listen(httpAddr.Network(), httpAddr.String())
|
ln, err := net.Listen(httpAddr.Network(), httpAddr.String())
|
||||||
|
@ -118,18 +118,10 @@ func NewHTTPServers(agent *Agent, config *Config, logOutput io.Writer) ([]*HTTPS
|
||||||
return nil, fmt.Errorf("Failed to get Listen on %s: %v", httpAddr.String(), err)
|
return nil, fmt.Errorf("Failed to get Listen on %s: %v", httpAddr.String(), err)
|
||||||
}
|
}
|
||||||
|
|
||||||
switch httpAddr.(type) {
|
if _, ok := unixSocketAddr(config.Addresses.HTTP); ok {
|
||||||
case *net.UnixAddr:
|
|
||||||
if err := adjustUnixSocketPermissions(config.Addresses.HTTP); err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
list = ln
|
list = ln
|
||||||
|
} else {
|
||||||
case *net.TCPAddr:
|
|
||||||
list = tcpKeepAliveListener{ln.(*net.TCPListener)}
|
list = tcpKeepAliveListener{ln.(*net.TCPListener)}
|
||||||
|
|
||||||
default:
|
|
||||||
return nil, fmt.Errorf("Error determining address type when attempting to get Listen on %s: %v", httpAddr.String(), err)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Create the mux
|
// Create the mux
|
||||||
|
|
|
@ -81,24 +81,19 @@ func (c *RPCClient) send(header *requestHeader, obj interface{}) error {
|
||||||
// NewRPCClient is used to create a new RPC client given the address.
|
// NewRPCClient is used to create a new RPC client given the address.
|
||||||
// This will properly dial, handshake, and start listening
|
// This will properly dial, handshake, and start listening
|
||||||
func NewRPCClient(addr string) (*RPCClient, error) {
|
func NewRPCClient(addr string) (*RPCClient, error) {
|
||||||
sanedAddr := os.Getenv("CONSUL_RPC_ADDR")
|
var conn net.Conn
|
||||||
if len(sanedAddr) == 0 {
|
var err error
|
||||||
sanedAddr = addr
|
|
||||||
}
|
|
||||||
|
|
||||||
mode := "tcp"
|
if envAddr := os.Getenv("CONSUL_RPC_ADDR"); envAddr != "" {
|
||||||
|
addr = envAddr
|
||||||
if strings.HasPrefix(sanedAddr, "unix://") {
|
|
||||||
sanedAddr = strings.TrimPrefix(sanedAddr, "unix://")
|
|
||||||
}
|
|
||||||
|
|
||||||
if strings.HasPrefix(sanedAddr, "/") {
|
|
||||||
mode = "unix"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Try to dial to agent
|
// Try to dial to agent
|
||||||
conn, err := net.Dial(mode, sanedAddr)
|
mode := "tcp"
|
||||||
if err != nil {
|
if strings.HasPrefix(addr, "/") {
|
||||||
|
mode = "unix"
|
||||||
|
}
|
||||||
|
if conn, err = net.Dial(mode, addr); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,6 @@ import (
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"net"
|
"net"
|
||||||
"os"
|
"os"
|
||||||
"os/user"
|
|
||||||
"runtime"
|
"runtime"
|
||||||
"strings"
|
"strings"
|
||||||
"testing"
|
"testing"
|
||||||
|
@ -223,19 +222,13 @@ func TestRPCClientStatsUnix(t *testing.T) {
|
||||||
|
|
||||||
tempdir, err := ioutil.TempDir("", "consul-test-")
|
tempdir, err := ioutil.TempDir("", "consul-test-")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatal("Could not create a working directory: ", err)
|
t.Fatalf("err: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
user, err := user.Current()
|
p1 := testRPCClientWithConfig(t, func(c *Config) {
|
||||||
if err != nil {
|
c.Addresses.RPC = fmt.Sprintf("unix://%s/test.sock", tempdir)
|
||||||
t.Fatal("Could not get current user: ", err)
|
})
|
||||||
}
|
defer p1.Close()
|
||||||
|
|
||||||
cb := func(c *Config) {
|
|
||||||
c.Addresses.RPC = "unix://" + tempdir + "/unix-rpc-test.sock;" + user.Uid + ";" + user.Gid + ";640"
|
|
||||||
}
|
|
||||||
|
|
||||||
p1 := testRPCClientWithConfig(t, cb)
|
|
||||||
|
|
||||||
stats, err := p1.client.Stats()
|
stats, err := p1.client.Stats()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
Loading…
Reference in New Issue