2016-04-10 19:36:38 +00:00
|
|
|
// Copyright (C) 2015 The Syncthing Authors.
|
|
|
|
//
|
|
|
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
2017-02-09 06:52:18 +00:00
|
|
|
// You can obtain one at https://mozilla.org/MPL/2.0/.
|
2016-04-10 19:36:38 +00:00
|
|
|
|
|
|
|
package nat
|
|
|
|
|
|
|
|
import (
|
2019-11-21 07:41:15 +00:00
|
|
|
"context"
|
2016-04-10 19:36:38 +00:00
|
|
|
"fmt"
|
2016-05-27 06:28:46 +00:00
|
|
|
"hash/fnv"
|
2016-04-10 19:36:38 +00:00
|
|
|
"math/rand"
|
|
|
|
"net"
|
|
|
|
stdsync "sync"
|
|
|
|
"time"
|
|
|
|
|
2019-07-19 17:40:40 +00:00
|
|
|
"github.com/thejerf/suture"
|
|
|
|
|
2016-04-10 19:36:38 +00:00
|
|
|
"github.com/syncthing/syncthing/lib/config"
|
|
|
|
"github.com/syncthing/syncthing/lib/protocol"
|
|
|
|
"github.com/syncthing/syncthing/lib/sync"
|
2019-07-19 17:40:40 +00:00
|
|
|
"github.com/syncthing/syncthing/lib/util"
|
2016-04-10 19:36:38 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Service runs a loop for discovery of IGDs (Internet Gateway Devices) and
|
|
|
|
// setup/renewal of a port mapping.
|
|
|
|
type Service struct {
|
2019-07-19 17:40:40 +00:00
|
|
|
suture.Service
|
|
|
|
|
|
|
|
id protocol.DeviceID
|
|
|
|
cfg config.Wrapper
|
2016-04-10 19:36:38 +00:00
|
|
|
|
|
|
|
mappings []*Mapping
|
2016-05-04 19:38:12 +00:00
|
|
|
timer *time.Timer
|
2016-04-10 19:36:38 +00:00
|
|
|
mut sync.RWMutex
|
|
|
|
}
|
|
|
|
|
2019-02-26 08:09:25 +00:00
|
|
|
func NewService(id protocol.DeviceID, cfg config.Wrapper) *Service {
|
2019-07-19 17:40:40 +00:00
|
|
|
s := &Service{
|
2016-04-10 19:36:38 +00:00
|
|
|
id: id,
|
|
|
|
cfg: cfg,
|
|
|
|
|
2016-05-04 19:38:12 +00:00
|
|
|
timer: time.NewTimer(0),
|
|
|
|
mut: sync.NewRWMutex(),
|
2016-04-10 19:36:38 +00:00
|
|
|
}
|
2019-11-21 07:41:15 +00:00
|
|
|
s.Service = util.AsService(s.serve, s.String())
|
2019-07-19 17:40:40 +00:00
|
|
|
return s
|
2016-04-10 19:36:38 +00:00
|
|
|
}
|
|
|
|
|
2019-11-21 07:41:15 +00:00
|
|
|
func (s *Service) serve(ctx context.Context) {
|
2016-05-04 19:38:12 +00:00
|
|
|
announce := stdsync.Once{}
|
|
|
|
|
|
|
|
s.mut.Lock()
|
2016-06-26 10:17:12 +00:00
|
|
|
s.timer.Reset(0)
|
2016-05-04 19:38:12 +00:00
|
|
|
s.mut.Unlock()
|
2016-04-10 19:36:38 +00:00
|
|
|
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-s.timer.C:
|
2019-11-21 07:41:15 +00:00
|
|
|
if found := s.process(ctx); found != -1 {
|
2016-05-04 19:38:12 +00:00
|
|
|
announce.Do(func() {
|
|
|
|
suffix := "s"
|
|
|
|
if found == 1 {
|
|
|
|
suffix = ""
|
|
|
|
}
|
2017-12-30 19:16:08 +00:00
|
|
|
l.Infoln("Detected", found, "NAT service"+suffix)
|
2016-05-04 19:38:12 +00:00
|
|
|
})
|
|
|
|
}
|
2019-11-21 07:41:15 +00:00
|
|
|
case <-ctx.Done():
|
2016-04-10 19:36:38 +00:00
|
|
|
s.timer.Stop()
|
2016-05-04 19:38:12 +00:00
|
|
|
s.mut.RLock()
|
|
|
|
for _, mapping := range s.mappings {
|
|
|
|
mapping.clearAddresses()
|
|
|
|
}
|
|
|
|
s.mut.RUnlock()
|
2016-04-10 19:36:38 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-21 07:41:15 +00:00
|
|
|
func (s *Service) process(ctx context.Context) int {
|
2016-04-10 19:36:38 +00:00
|
|
|
// toRenew are mappings which are due for renewal
|
|
|
|
// toUpdate are the remaining mappings, which will only be updated if one of
|
|
|
|
// the old IGDs has gone away, or a new IGD has appeared, but only if we
|
|
|
|
// actually need to perform a renewal.
|
|
|
|
var toRenew, toUpdate []*Mapping
|
|
|
|
|
|
|
|
renewIn := time.Duration(s.cfg.Options().NATRenewalM) * time.Minute
|
|
|
|
if renewIn == 0 {
|
|
|
|
// We always want to do renewal so lets just pick a nice sane number.
|
|
|
|
renewIn = 30 * time.Minute
|
|
|
|
}
|
|
|
|
|
|
|
|
s.mut.RLock()
|
|
|
|
for _, mapping := range s.mappings {
|
|
|
|
if mapping.expires.Before(time.Now()) {
|
|
|
|
toRenew = append(toRenew, mapping)
|
|
|
|
} else {
|
|
|
|
toUpdate = append(toUpdate, mapping)
|
2019-02-02 09:11:42 +00:00
|
|
|
mappingRenewIn := time.Until(mapping.expires)
|
2016-04-10 19:36:38 +00:00
|
|
|
if mappingRenewIn < renewIn {
|
|
|
|
renewIn = mappingRenewIn
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-05-04 19:38:12 +00:00
|
|
|
// Reset the timer while holding the lock, because of the following race:
|
|
|
|
// T1: process acquires lock
|
|
|
|
// T1: process checks the mappings and gets next renewal time in 30m
|
|
|
|
// T2: process releases the lock
|
|
|
|
// T2: NewMapping acquires the lock
|
|
|
|
// T2: NewMapping adds mapping
|
|
|
|
// T2: NewMapping releases the lock
|
|
|
|
// T2: NewMapping resets timer to 1s
|
|
|
|
// T1: process resets timer to 30
|
2016-04-10 19:36:38 +00:00
|
|
|
s.timer.Reset(renewIn)
|
2016-05-04 19:38:12 +00:00
|
|
|
s.mut.RUnlock()
|
2016-04-10 19:36:38 +00:00
|
|
|
|
|
|
|
// Don't do anything, unless we really need to renew
|
|
|
|
if len(toRenew) == 0 {
|
2016-05-04 19:38:12 +00:00
|
|
|
return -1
|
2016-04-10 19:36:38 +00:00
|
|
|
}
|
|
|
|
|
2019-11-21 07:41:15 +00:00
|
|
|
nats := discoverAll(ctx, time.Duration(s.cfg.Options().NATRenewalM)*time.Minute, time.Duration(s.cfg.Options().NATTimeoutS)*time.Second)
|
2016-04-10 19:36:38 +00:00
|
|
|
|
|
|
|
for _, mapping := range toRenew {
|
2019-11-21 07:41:15 +00:00
|
|
|
s.updateMapping(ctx, mapping, nats, true)
|
2016-04-10 19:36:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, mapping := range toUpdate {
|
2019-11-21 07:41:15 +00:00
|
|
|
s.updateMapping(ctx, mapping, nats, false)
|
2016-04-10 19:36:38 +00:00
|
|
|
}
|
2016-05-04 19:38:12 +00:00
|
|
|
|
|
|
|
return len(nats)
|
2016-04-10 19:36:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Service) NewMapping(protocol Protocol, ip net.IP, port int) *Mapping {
|
|
|
|
mapping := &Mapping{
|
|
|
|
protocol: protocol,
|
|
|
|
address: Address{
|
|
|
|
IP: ip,
|
|
|
|
Port: port,
|
|
|
|
},
|
|
|
|
extAddresses: make(map[string]Address),
|
|
|
|
mut: sync.NewRWMutex(),
|
|
|
|
}
|
|
|
|
|
|
|
|
s.mut.Lock()
|
|
|
|
s.mappings = append(s.mappings, mapping)
|
2016-05-04 19:38:12 +00:00
|
|
|
// Reset the timer while holding the lock, see process() for explanation
|
|
|
|
s.timer.Reset(time.Second)
|
2016-04-10 19:36:38 +00:00
|
|
|
s.mut.Unlock()
|
|
|
|
|
|
|
|
return mapping
|
|
|
|
}
|
|
|
|
|
2016-05-04 19:38:12 +00:00
|
|
|
// RemoveMapping does not actually remove the mapping from the IGD, it just
|
|
|
|
// internally removes it which stops renewing the mapping. Also, it clears any
|
|
|
|
// existing mapped addresses from the mapping, which as a result should cause
|
|
|
|
// discovery to reannounce the new addresses.
|
|
|
|
func (s *Service) RemoveMapping(mapping *Mapping) {
|
|
|
|
s.mut.Lock()
|
|
|
|
defer s.mut.Unlock()
|
|
|
|
for i, existing := range s.mappings {
|
|
|
|
if existing == mapping {
|
|
|
|
mapping.clearAddresses()
|
|
|
|
last := len(s.mappings) - 1
|
|
|
|
s.mappings[i] = s.mappings[last]
|
|
|
|
s.mappings[last] = nil
|
|
|
|
s.mappings = s.mappings[:last]
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2016-04-10 19:36:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// updateMapping compares the addresses of the existing mapping versus the natds
|
|
|
|
// discovered, and removes any addresses of natds that do not exist, or tries to
|
|
|
|
// acquire mappings for natds which the mapping was unaware of before.
|
|
|
|
// Optionally takes renew flag which indicates whether or not we should renew
|
|
|
|
// mappings with existing natds
|
2019-11-21 07:41:15 +00:00
|
|
|
func (s *Service) updateMapping(ctx context.Context, mapping *Mapping, nats map[string]Device, renew bool) {
|
2016-04-10 19:36:38 +00:00
|
|
|
var added, removed []Address
|
|
|
|
|
|
|
|
renewalTime := time.Duration(s.cfg.Options().NATRenewalM) * time.Minute
|
|
|
|
mapping.expires = time.Now().Add(renewalTime)
|
|
|
|
|
2019-11-21 07:41:15 +00:00
|
|
|
newAdded, newRemoved := s.verifyExistingMappings(ctx, mapping, nats, renew)
|
2016-04-10 19:36:38 +00:00
|
|
|
added = append(added, newAdded...)
|
|
|
|
removed = append(removed, newRemoved...)
|
|
|
|
|
2019-11-21 07:41:15 +00:00
|
|
|
newAdded, newRemoved = s.acquireNewMappings(ctx, mapping, nats)
|
2016-04-10 19:36:38 +00:00
|
|
|
added = append(added, newAdded...)
|
|
|
|
removed = append(removed, newRemoved...)
|
|
|
|
|
|
|
|
if len(added) > 0 || len(removed) > 0 {
|
|
|
|
mapping.notify(added, removed)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-21 07:41:15 +00:00
|
|
|
func (s *Service) verifyExistingMappings(ctx context.Context, mapping *Mapping, nats map[string]Device, renew bool) ([]Address, []Address) {
|
2016-04-10 19:36:38 +00:00
|
|
|
var added, removed []Address
|
|
|
|
|
|
|
|
leaseTime := time.Duration(s.cfg.Options().NATLeaseM) * time.Minute
|
|
|
|
|
|
|
|
for id, address := range mapping.addressMap() {
|
2019-07-19 17:40:40 +00:00
|
|
|
select {
|
2019-11-21 07:41:15 +00:00
|
|
|
case <-ctx.Done():
|
2019-07-19 17:40:40 +00:00
|
|
|
return nil, nil
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
|
2016-04-10 19:36:38 +00:00
|
|
|
// Delete addresses for NATDevice's that do not exist anymore
|
|
|
|
nat, ok := nats[id]
|
|
|
|
if !ok {
|
|
|
|
mapping.removeAddress(id)
|
|
|
|
removed = append(removed, address)
|
|
|
|
continue
|
|
|
|
} else if renew {
|
|
|
|
// Only perform renewals on the nat's that have the right local IP
|
|
|
|
// address
|
|
|
|
localIP := nat.GetLocalIPAddress()
|
|
|
|
if !mapping.validGateway(localIP) {
|
|
|
|
l.Debugf("Skipping %s for %s because of IP mismatch. %s != %s", id, mapping, mapping.address.IP, localIP)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
l.Debugf("Renewing %s -> %s mapping on %s", mapping, address, id)
|
|
|
|
|
2019-11-21 07:41:15 +00:00
|
|
|
addr, err := s.tryNATDevice(ctx, nat, mapping.address.Port, address.Port, leaseTime)
|
2016-04-10 19:36:38 +00:00
|
|
|
if err != nil {
|
|
|
|
l.Debugf("Failed to renew %s -> mapping on %s", mapping, address, id)
|
|
|
|
mapping.removeAddress(id)
|
|
|
|
removed = append(removed, address)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
l.Debugf("Renewed %s -> %s mapping on %s", mapping, address, id)
|
|
|
|
|
|
|
|
if !addr.Equal(address) {
|
|
|
|
mapping.removeAddress(id)
|
|
|
|
mapping.setAddress(id, addr)
|
|
|
|
removed = append(removed, address)
|
|
|
|
added = append(added, address)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return added, removed
|
|
|
|
}
|
|
|
|
|
2019-11-21 07:41:15 +00:00
|
|
|
func (s *Service) acquireNewMappings(ctx context.Context, mapping *Mapping, nats map[string]Device) ([]Address, []Address) {
|
2016-04-10 19:36:38 +00:00
|
|
|
var added, removed []Address
|
|
|
|
|
|
|
|
leaseTime := time.Duration(s.cfg.Options().NATLeaseM) * time.Minute
|
|
|
|
addrMap := mapping.addressMap()
|
|
|
|
|
|
|
|
for id, nat := range nats {
|
2019-07-19 17:40:40 +00:00
|
|
|
select {
|
2019-11-21 07:41:15 +00:00
|
|
|
case <-ctx.Done():
|
2019-07-19 17:40:40 +00:00
|
|
|
return nil, nil
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
|
2016-04-10 19:36:38 +00:00
|
|
|
if _, ok := addrMap[id]; ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// Only perform mappings on the nat's that have the right local IP
|
|
|
|
// address
|
|
|
|
localIP := nat.GetLocalIPAddress()
|
|
|
|
if !mapping.validGateway(localIP) {
|
|
|
|
l.Debugf("Skipping %s for %s because of IP mismatch. %s != %s", id, mapping, mapping.address.IP, localIP)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
l.Debugf("Acquiring %s mapping on %s", mapping, id)
|
|
|
|
|
2019-11-21 07:41:15 +00:00
|
|
|
addr, err := s.tryNATDevice(ctx, nat, mapping.address.Port, 0, leaseTime)
|
2016-04-10 19:36:38 +00:00
|
|
|
if err != nil {
|
|
|
|
l.Debugf("Failed to acquire %s mapping on %s", mapping, id)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
l.Debugf("Acquired %s -> %s mapping on %s", mapping, addr, id)
|
|
|
|
|
|
|
|
mapping.setAddress(id, addr)
|
|
|
|
added = append(added, addr)
|
|
|
|
}
|
|
|
|
|
|
|
|
return added, removed
|
|
|
|
}
|
|
|
|
|
|
|
|
// tryNATDevice tries to acquire a port mapping for the given internal address to
|
|
|
|
// the given external port. If external port is 0, picks a pseudo-random port.
|
2019-11-21 07:41:15 +00:00
|
|
|
func (s *Service) tryNATDevice(ctx context.Context, natd Device, intPort, extPort int, leaseTime time.Duration) (Address, error) {
|
2016-04-10 19:36:38 +00:00
|
|
|
var err error
|
2016-04-16 16:48:07 +00:00
|
|
|
var port int
|
2016-04-10 19:36:38 +00:00
|
|
|
|
2016-05-27 06:28:46 +00:00
|
|
|
// Generate a predictable random which is based on device ID + local port + hash of the device ID
|
|
|
|
// number so that the ports we'd try to acquire for the mapping would always be the same for the
|
|
|
|
// same device trying to get the same internal port.
|
|
|
|
predictableRand := rand.New(rand.NewSource(int64(s.id.Short()) + int64(intPort) + hash(natd.ID())))
|
2016-04-10 19:36:38 +00:00
|
|
|
|
|
|
|
if extPort != 0 {
|
|
|
|
// First try renewing our existing mapping, if we have one.
|
|
|
|
name := fmt.Sprintf("syncthing-%d", extPort)
|
2020-02-24 20:57:15 +00:00
|
|
|
port, err = natd.AddPortMapping(ctx, TCP, intPort, extPort, name, leaseTime)
|
2016-04-10 19:36:38 +00:00
|
|
|
if err == nil {
|
|
|
|
extPort = port
|
|
|
|
goto findIP
|
|
|
|
}
|
|
|
|
l.Debugln("Error extending lease on", natd.ID(), err)
|
|
|
|
}
|
|
|
|
|
|
|
|
for i := 0; i < 10; i++ {
|
2019-07-23 08:49:22 +00:00
|
|
|
select {
|
2019-11-21 07:41:15 +00:00
|
|
|
case <-ctx.Done():
|
2019-07-23 08:49:22 +00:00
|
|
|
return Address{}, nil
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
|
2016-04-10 19:36:38 +00:00
|
|
|
// Then try up to ten random ports.
|
|
|
|
extPort = 1024 + predictableRand.Intn(65535-1024)
|
|
|
|
name := fmt.Sprintf("syncthing-%d", extPort)
|
2020-02-24 20:57:15 +00:00
|
|
|
port, err = natd.AddPortMapping(ctx, TCP, intPort, extPort, name, leaseTime)
|
2016-04-10 19:36:38 +00:00
|
|
|
if err == nil {
|
|
|
|
extPort = port
|
|
|
|
goto findIP
|
|
|
|
}
|
|
|
|
l.Debugln("Error getting new lease on", natd.ID(), err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return Address{}, err
|
|
|
|
|
|
|
|
findIP:
|
2020-02-24 20:57:15 +00:00
|
|
|
ip, err := natd.GetExternalIPAddress(ctx)
|
2016-04-10 19:36:38 +00:00
|
|
|
if err != nil {
|
|
|
|
l.Debugln("Error getting external ip on", natd.ID(), err)
|
|
|
|
ip = nil
|
|
|
|
}
|
|
|
|
return Address{
|
|
|
|
IP: ip,
|
|
|
|
Port: extPort,
|
|
|
|
}, nil
|
|
|
|
}
|
2016-05-27 06:28:46 +00:00
|
|
|
|
2019-11-21 07:41:15 +00:00
|
|
|
func (s *Service) String() string {
|
|
|
|
return fmt.Sprintf("nat.Service@%p", s)
|
|
|
|
}
|
|
|
|
|
2016-05-27 06:28:46 +00:00
|
|
|
func hash(input string) int64 {
|
|
|
|
h := fnv.New64a()
|
2019-02-02 11:16:27 +00:00
|
|
|
h.Write([]byte(input))
|
2016-05-27 06:28:46 +00:00
|
|
|
return int64(h.Sum64())
|
|
|
|
}
|