gecko/nat/nat.go

140 lines
3.6 KiB
Go
Raw Normal View History

2020-06-15 12:16:24 -07:00
// (c) 2019-2020, Ava Labs, Inc. All rights reserved.
// See the file LICENSE for licensing terms.
2020-06-07 17:02:29 -07:00
package nat
import (
2020-06-24 08:41:22 -07:00
"errors"
2020-06-07 17:02:29 -07:00
"net"
"sync"
"time"
"github.com/ava-labs/gecko/utils/logging"
)
const (
2020-06-15 12:16:24 -07:00
mapTimeout = 30 * time.Second
mapUpdateTimeout = mapTimeout / 2
maxRetries = 20
2020-06-07 17:02:29 -07:00
)
2020-06-17 19:33:41 -07:00
// Router describes the functionality that a network device must support to be
// able to open ports to an external IP.
type Router interface {
MapPort(protocol string, intPort, extPort uint16, desc string, duration time.Duration) error
2020-06-15 12:16:24 -07:00
UnmapPort(protocol string, intPort, extPort uint16) error
2020-06-07 17:02:29 -07:00
ExternalIP() (net.IP, error)
GetPortMappingEntry(extPort uint16, protocol string) (
InternalIP string,
InternalPort uint16,
Description string,
err error,
)
2020-06-07 17:02:29 -07:00
}
2020-06-17 19:33:41 -07:00
// GetRouter returns a router on the current network.
func GetRouter() Router {
if r := getUPnPRouter(); r != nil {
return r
2020-06-12 07:07:17 -07:00
}
2020-06-15 12:16:24 -07:00
if r := getPMPRouter(); r != nil {
return r
}
2020-06-12 14:40:41 -07:00
return NewNoRouter()
2020-06-07 17:02:29 -07:00
}
2020-06-17 19:33:41 -07:00
// Mapper attempts to open a set of ports on a router
type Mapper struct {
2020-06-17 14:13:35 -07:00
log logging.Logger
r Router
closer chan struct{}
wg sync.WaitGroup
2020-06-07 17:02:29 -07:00
}
2020-06-17 19:33:41 -07:00
// NewPortMapper returns an initialized mapper
func NewPortMapper(log logging.Logger, r Router) Mapper {
return Mapper{
2020-06-07 17:02:29 -07:00
log: log,
r: r,
closer: make(chan struct{}),
}
}
// Map sets up port mapping using given protocol, internal and external ports
// and returns the final port mapped. It returns 0 if mapping failed after the
// maximun number of retries
2020-06-24 08:41:22 -07:00
func (dev *Mapper) Map(protocol string, intPort uint16, desc string) (uint16, error) {
mappedPort := make(chan uint16)
go dev.keepPortMapping(mappedPort, protocol, intPort, desc)
2020-06-24 08:41:22 -07:00
port := <-mappedPort
if port == 0 {
return 0, errors.New("failed to map port")
}
return port, nil
2020-06-07 17:02:29 -07:00
}
// keepPortMapping runs in the background to keep a port mapped. It renews the
// the port mapping in mapUpdateTimeout.
func (dev *Mapper) keepPortMapping(mappedPort chan<- uint16, protocol string,
intPort uint16, desc string) {
updateTimer := time.NewTimer(mapUpdateTimeout)
for i := 0; i <= maxRetries; i++ {
extPort := intPort + uint16(i)
if intaddr, intPort, desc, err := dev.r.GetPortMappingEntry(extPort, protocol); err == nil {
dev.log.Debug("Port %d is taken by %s:%d: %s, retry with the next port",
extPort, intaddr, intPort, desc)
2020-06-17 14:13:35 -07:00
} else if err := dev.r.MapPort(protocol, intPort, extPort, desc, mapTimeout); err != nil {
dev.log.Debug("Map port failed. Protocol %s Internal %d External %d. %s",
protocol, intPort, extPort, err)
} else {
dev.log.Info("Mapped Protocol %s Internal %d External %d.", protocol,
intPort, extPort)
2020-06-07 17:02:29 -07:00
dev.wg.Add(1)
mappedPort <- extPort
defer func(extPort uint16) {
updateTimer.Stop()
dev.log.Debug("Unmap protocol %s external port %d", protocol, extPort)
dev.r.UnmapPort(protocol, intPort, extPort)
dev.wg.Done()
}(extPort)
for {
select {
case <-updateTimer.C:
if err := dev.r.MapPort(protocol, intPort, extPort, desc, mapTimeout); err != nil {
dev.log.Error("Renewing port mapping from external port %d to internal port %d failed with %s",
intPort, extPort, err)
} else {
dev.log.Info("Renewed port mapping from external port %d to internal port %d.",
intPort, extPort)
}
updateTimer.Reset(mapUpdateTimeout)
case _, _ = <-dev.closer:
return
}
2020-06-07 17:02:29 -07:00
}
}
}
dev.log.Debug("Unable to map port %d~%d", intPort, intPort+maxRetries)
mappedPort <- 0
2020-06-07 17:02:29 -07:00
}
2020-06-17 19:33:41 -07:00
// UnmapAllPorts stops mapping all ports from this mapper and attempts to unmap
// them.
2020-06-17 14:13:35 -07:00
func (dev *Mapper) UnmapAllPorts() {
2020-06-07 17:02:29 -07:00
close(dev.closer)
dev.wg.Wait()
2020-06-12 07:07:17 -07:00
dev.log.Info("Unmapped all ports")
2020-06-07 17:02:29 -07:00
}