2018-05-23 16:41:16 +03:00
|
|
|
package lncfg
|
|
|
|
|
|
|
|
import (
|
2019-12-17 15:37:25 +03:00
|
|
|
"context"
|
2018-05-23 16:41:16 +03:00
|
|
|
"crypto/tls"
|
2018-12-20 08:51:29 +03:00
|
|
|
"encoding/hex"
|
2018-06-28 01:03:24 +03:00
|
|
|
"fmt"
|
|
|
|
"net"
|
|
|
|
"strconv"
|
2018-05-23 16:41:16 +03:00
|
|
|
"strings"
|
2018-06-28 01:03:24 +03:00
|
|
|
|
2018-12-20 08:51:29 +03:00
|
|
|
"github.com/btcsuite/btcd/btcec"
|
|
|
|
"github.com/lightningnetwork/lnd/lnwire"
|
2018-06-28 01:03:24 +03:00
|
|
|
"github.com/lightningnetwork/lnd/tor"
|
2018-05-23 16:41:16 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
loopBackAddrs = []string{"localhost", "127.0.0.1", "[::1]"}
|
|
|
|
)
|
|
|
|
|
2019-06-14 04:23:42 +03:00
|
|
|
// TCPResolver is a function signature that resolves an address on a given
|
|
|
|
// network.
|
|
|
|
type TCPResolver = func(network, addr string) (*net.TCPAddr, error)
|
2018-06-28 01:02:39 +03:00
|
|
|
|
2018-05-23 16:41:16 +03:00
|
|
|
// NormalizeAddresses returns a new slice with all the passed addresses
|
|
|
|
// normalized with the given default port and all duplicates removed.
|
2018-06-28 01:02:39 +03:00
|
|
|
func NormalizeAddresses(addrs []string, defaultPort string,
|
2019-06-14 04:23:42 +03:00
|
|
|
tcpResolver TCPResolver) ([]net.Addr, error) {
|
2018-06-28 01:02:39 +03:00
|
|
|
|
2018-05-23 16:41:16 +03:00
|
|
|
result := make([]net.Addr, 0, len(addrs))
|
|
|
|
seen := map[string]struct{}{}
|
2018-06-28 01:02:39 +03:00
|
|
|
|
|
|
|
for _, addr := range addrs {
|
|
|
|
parsedAddr, err := ParseAddressString(
|
|
|
|
addr, defaultPort, tcpResolver,
|
|
|
|
)
|
2018-05-23 16:41:16 +03:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2018-06-28 01:02:39 +03:00
|
|
|
if _, ok := seen[parsedAddr.String()]; !ok {
|
|
|
|
result = append(result, parsedAddr)
|
|
|
|
seen[parsedAddr.String()] = struct{}{}
|
2018-05-23 16:41:16 +03:00
|
|
|
}
|
|
|
|
}
|
2018-06-28 01:02:39 +03:00
|
|
|
|
2018-05-23 16:41:16 +03:00
|
|
|
return result, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// EnforceSafeAuthentication enforces "safe" authentication taking into account
|
|
|
|
// the interfaces that the RPC servers are listening on, and if macaroons are
|
|
|
|
// activated or not. To protect users from using dangerous config combinations,
|
2018-04-18 08:22:55 +03:00
|
|
|
// we'll prevent disabling authentication if the server is listening on a public
|
2018-05-23 16:41:16 +03:00
|
|
|
// interface.
|
|
|
|
func EnforceSafeAuthentication(addrs []net.Addr, macaroonsActive bool) error {
|
|
|
|
// We'll now examine all addresses that this RPC server is listening
|
|
|
|
// on. If it's a localhost address, we'll skip it, otherwise, we'll
|
|
|
|
// return an error if macaroons are inactive.
|
|
|
|
for _, addr := range addrs {
|
2018-06-28 04:27:05 +03:00
|
|
|
if IsLoopback(addr.String()) || IsUnix(addr) {
|
2018-05-23 16:41:16 +03:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
if !macaroonsActive {
|
|
|
|
return fmt.Errorf("Detected RPC server listening on "+
|
|
|
|
"publicly reachable interface %v with "+
|
|
|
|
"authentication disabled! Refusing to start "+
|
|
|
|
"with --no-macaroons specified.", addr)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-04-13 04:45:11 +03:00
|
|
|
// parseNetwork parses the network type of the given address.
|
|
|
|
func parseNetwork(addr net.Addr) string {
|
|
|
|
switch addr := addr.(type) {
|
|
|
|
// TCP addresses resolved through net.ResolveTCPAddr give a default
|
|
|
|
// network of "tcp", so we'll map back the correct network for the given
|
|
|
|
// address. This ensures that we can listen on the correct interface
|
|
|
|
// (IPv4 vs IPv6).
|
|
|
|
case *net.TCPAddr:
|
|
|
|
if addr.IP.To4() != nil {
|
|
|
|
return "tcp4"
|
|
|
|
}
|
|
|
|
return "tcp6"
|
|
|
|
|
|
|
|
default:
|
|
|
|
return addr.Network()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-28 01:02:39 +03:00
|
|
|
// ListenOnAddress creates a listener that listens on the given address.
|
2018-05-23 16:41:16 +03:00
|
|
|
func ListenOnAddress(addr net.Addr) (net.Listener, error) {
|
2019-04-13 04:45:11 +03:00
|
|
|
return net.Listen(parseNetwork(addr), addr.String())
|
2018-05-23 16:41:16 +03:00
|
|
|
}
|
|
|
|
|
2018-07-31 11:29:12 +03:00
|
|
|
// TLSListenOnAddress creates a TLS listener that listens on the given address.
|
|
|
|
func TLSListenOnAddress(addr net.Addr,
|
2018-05-23 16:41:16 +03:00
|
|
|
config *tls.Config) (net.Listener, error) {
|
2019-04-13 04:45:11 +03:00
|
|
|
return tls.Listen(parseNetwork(addr), addr.String(), config)
|
2018-05-23 16:41:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// IsLoopback returns true if an address describes a loopback interface.
|
2018-06-28 04:27:05 +03:00
|
|
|
func IsLoopback(addr string) bool {
|
2018-05-23 16:41:16 +03:00
|
|
|
for _, loopback := range loopBackAddrs {
|
2018-06-28 04:27:05 +03:00
|
|
|
if strings.Contains(addr, loopback) {
|
2018-05-23 16:41:16 +03:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2018-06-28 01:02:39 +03:00
|
|
|
// IsUnix returns true if an address describes an Unix socket address.
|
2018-05-23 16:41:16 +03:00
|
|
|
func IsUnix(addr net.Addr) bool {
|
|
|
|
return strings.HasPrefix(addr.Network(), "unix")
|
|
|
|
}
|
|
|
|
|
|
|
|
// ParseAddressString converts an address in string format to a net.Addr that is
|
|
|
|
// compatible with lnd. UDP is not supported because lnd needs reliable
|
2018-06-28 01:02:39 +03:00
|
|
|
// connections. We accept a custom function to resolve any TCP addresses so
|
|
|
|
// that caller is able control exactly how resolution is performed.
|
|
|
|
func ParseAddressString(strAddress string, defaultPort string,
|
2019-06-14 04:23:42 +03:00
|
|
|
tcpResolver TCPResolver) (net.Addr, error) {
|
2018-06-28 01:02:39 +03:00
|
|
|
|
2018-05-23 16:41:16 +03:00
|
|
|
var parsedNetwork, parsedAddr string
|
|
|
|
|
2018-06-28 01:02:39 +03:00
|
|
|
// Addresses can either be in network://address:port format,
|
|
|
|
// network:address:port, address:port, or just port. We want to support
|
|
|
|
// all possible types.
|
2018-05-23 16:41:16 +03:00
|
|
|
if strings.Contains(strAddress, "://") {
|
|
|
|
parts := strings.Split(strAddress, "://")
|
|
|
|
parsedNetwork, parsedAddr = parts[0], parts[1]
|
|
|
|
} else if strings.Contains(strAddress, ":") {
|
|
|
|
parts := strings.Split(strAddress, ":")
|
|
|
|
parsedNetwork = parts[0]
|
|
|
|
parsedAddr = strings.Join(parts[1:], ":")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Only TCP and Unix socket addresses are valid. We can't use IP or
|
|
|
|
// UDP only connections for anything we do in lnd.
|
|
|
|
switch parsedNetwork {
|
|
|
|
case "unix", "unixpacket":
|
|
|
|
return net.ResolveUnixAddr(parsedNetwork, parsedAddr)
|
2018-06-28 01:02:39 +03:00
|
|
|
|
2018-05-23 16:41:16 +03:00
|
|
|
case "tcp", "tcp4", "tcp6":
|
2018-06-28 01:02:39 +03:00
|
|
|
return tcpResolver(
|
|
|
|
parsedNetwork, verifyPort(parsedAddr, defaultPort),
|
|
|
|
)
|
|
|
|
|
2018-05-23 16:41:16 +03:00
|
|
|
case "ip", "ip4", "ip6", "udp", "udp4", "udp6", "unixgram":
|
|
|
|
return nil, fmt.Errorf("only TCP or unix socket "+
|
|
|
|
"addresses are supported: %s", parsedAddr)
|
2018-06-28 01:02:39 +03:00
|
|
|
|
2018-05-23 16:41:16 +03:00
|
|
|
default:
|
2018-06-28 01:02:39 +03:00
|
|
|
// We'll now possibly apply the default port, use the local
|
|
|
|
// host short circuit, or parse out an all interfaces listen.
|
|
|
|
addrWithPort := verifyPort(strAddress, defaultPort)
|
|
|
|
rawHost, rawPort, _ := net.SplitHostPort(addrWithPort)
|
|
|
|
|
|
|
|
// If we reach this point, then we'll check to see if we have
|
|
|
|
// an onion addresses, if so, we can directly pass the raw
|
|
|
|
// address and port to create the proper address.
|
|
|
|
if tor.IsOnionHost(rawHost) {
|
|
|
|
portNum, err := strconv.Atoi(rawPort)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return &tor.OnionAddr{
|
|
|
|
OnionService: rawHost,
|
|
|
|
Port: portNum,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise, we'll attempt the resolve the host. The Tor
|
|
|
|
// resolver is unable to resolve local addresses, so we'll use
|
|
|
|
// the system resolver instead.
|
|
|
|
if rawHost == "" || IsLoopback(rawHost) {
|
|
|
|
return net.ResolveTCPAddr("tcp", addrWithPort)
|
|
|
|
}
|
|
|
|
|
|
|
|
return tcpResolver("tcp", addrWithPort)
|
2018-05-23 16:41:16 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-20 08:51:29 +03:00
|
|
|
// ParseLNAddressString converts a string of the form <pubkey>@<addr> into an
|
|
|
|
// lnwire.NetAddress. The <pubkey> must be presented in hex, and result in a
|
|
|
|
// 33-byte, compressed public key that lies on the secp256k1 curve. The <addr>
|
|
|
|
// may be any address supported by ParseAddressString. If no port is specified,
|
|
|
|
// the defaultPort will be used. Any tcp addresses that need resolving will be
|
2019-06-14 04:23:42 +03:00
|
|
|
// resolved using the custom TCPResolver.
|
2018-12-20 08:51:29 +03:00
|
|
|
func ParseLNAddressString(strAddress string, defaultPort string,
|
2019-06-14 04:23:42 +03:00
|
|
|
tcpResolver TCPResolver) (*lnwire.NetAddress, error) {
|
2018-12-20 08:51:29 +03:00
|
|
|
|
|
|
|
// Split the address string around the @ sign.
|
|
|
|
parts := strings.Split(strAddress, "@")
|
|
|
|
|
|
|
|
// The string is malformed if there are not exactly two parts.
|
|
|
|
if len(parts) != 2 {
|
|
|
|
return nil, fmt.Errorf("invalid lightning address %s: "+
|
|
|
|
"must be of the form <pubkey-hex>@<addr>", strAddress)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now, take the first portion as the hex pubkey, and the latter as the
|
|
|
|
// address string.
|
|
|
|
parsedPubKey, parsedAddr := parts[0], parts[1]
|
|
|
|
|
|
|
|
// Decode the hex pubkey to get the raw compressed pubkey bytes.
|
|
|
|
pubKeyBytes, err := hex.DecodeString(parsedPubKey)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("invalid lightning address pubkey: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// The compressed pubkey should have a length of exactly 33 bytes.
|
|
|
|
if len(pubKeyBytes) != 33 {
|
|
|
|
return nil, fmt.Errorf("invalid lightning address pubkey: "+
|
|
|
|
"length must be 33 bytes, found %d", len(pubKeyBytes))
|
|
|
|
}
|
|
|
|
|
|
|
|
// Parse the pubkey bytes to verify that it corresponds to valid public
|
|
|
|
// key on the secp256k1 curve.
|
|
|
|
pubKey, err := btcec.ParsePubKey(pubKeyBytes, btcec.S256())
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("invalid lightning address pubkey: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Finally, parse the address string using our generic address parser.
|
|
|
|
addr, err := ParseAddressString(parsedAddr, defaultPort, tcpResolver)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("invalid lightning address address: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return &lnwire.NetAddress{
|
|
|
|
IdentityKey: pubKey,
|
|
|
|
Address: addr,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2018-06-28 01:03:24 +03:00
|
|
|
// verifyPort makes sure that an address string has both a host and a port. If
|
|
|
|
// there is no port found, the default port is appended. If the address is just
|
|
|
|
// a port, then we'll assume that the user is using the short cut to specify a
|
|
|
|
// localhost:port address.
|
|
|
|
func verifyPort(address string, defaultPort string) string {
|
|
|
|
host, port, err := net.SplitHostPort(address)
|
2018-05-23 16:41:16 +03:00
|
|
|
if err != nil {
|
2018-06-28 01:03:24 +03:00
|
|
|
// If the address itself is just an integer, then we'll assume
|
|
|
|
// that we're mapping this directly to a localhost:port pair.
|
|
|
|
// This ensures we maintain the legacy behavior.
|
|
|
|
if _, err := strconv.Atoi(address); err == nil {
|
|
|
|
return net.JoinHostPort("localhost", address)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise, we'll assume that the address just failed to
|
|
|
|
// attach its own port, so we'll use the default port. In the
|
|
|
|
// case of IPv6 addresses, if the host is already surrounded by
|
|
|
|
// brackets, then we'll avoid using the JoinHostPort function,
|
|
|
|
// since it will always add a pair of brackets.
|
|
|
|
if strings.HasPrefix(address, "[") {
|
|
|
|
return address + ":" + defaultPort
|
2018-05-23 16:41:16 +03:00
|
|
|
}
|
2018-06-28 01:03:24 +03:00
|
|
|
return net.JoinHostPort(address, defaultPort)
|
|
|
|
}
|
|
|
|
|
|
|
|
// In the case that both the host and port are empty, we'll use the
|
|
|
|
// default port.
|
|
|
|
if host == "" && port == "" {
|
|
|
|
return ":" + defaultPort
|
2018-05-23 16:41:16 +03:00
|
|
|
}
|
|
|
|
|
2018-06-28 01:03:24 +03:00
|
|
|
return address
|
2018-05-23 16:41:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// ClientAddressDialer creates a gRPC dialer that can also dial unix socket
|
|
|
|
// addresses instead of just TCP addresses.
|
2019-12-17 15:37:25 +03:00
|
|
|
func ClientAddressDialer(defaultPort string) func(context.Context,
|
|
|
|
string) (net.Conn, error) {
|
|
|
|
|
|
|
|
return func(ctx context.Context, addr string) (net.Conn, error) {
|
2018-06-28 01:02:39 +03:00
|
|
|
parsedAddr, err := ParseAddressString(
|
|
|
|
addr, defaultPort, net.ResolveTCPAddr,
|
|
|
|
)
|
2018-05-23 16:41:16 +03:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2018-06-28 01:02:39 +03:00
|
|
|
|
2019-12-17 15:37:25 +03:00
|
|
|
d := net.Dialer{}
|
|
|
|
return d.DialContext(
|
|
|
|
ctx, parsedAddr.Network(), parsedAddr.String(),
|
2018-06-28 01:02:39 +03:00
|
|
|
)
|
2018-05-23 16:41:16 +03:00
|
|
|
}
|
|
|
|
}
|