| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802 | 
							- // 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,
 
- // You can obtain one at https://mozilla.org/MPL/2.0/.
 
- package connections
 
- import (
 
- 	"crypto/tls"
 
- 	"errors"
 
- 	"fmt"
 
- 	"net"
 
- 	"net/url"
 
- 	"sort"
 
- 	"strings"
 
- 	stdsync "sync"
 
- 	"time"
 
- 	"github.com/syncthing/syncthing/lib/config"
 
- 	"github.com/syncthing/syncthing/lib/discover"
 
- 	"github.com/syncthing/syncthing/lib/events"
 
- 	"github.com/syncthing/syncthing/lib/nat"
 
- 	"github.com/syncthing/syncthing/lib/osutil"
 
- 	"github.com/syncthing/syncthing/lib/protocol"
 
- 	"github.com/syncthing/syncthing/lib/sync"
 
- 	"github.com/syncthing/syncthing/lib/util"
 
- 	// Registers NAT service providers
 
- 	_ "github.com/syncthing/syncthing/lib/pmp"
 
- 	_ "github.com/syncthing/syncthing/lib/upnp"
 
- 	"github.com/thejerf/suture"
 
- 	"golang.org/x/time/rate"
 
- )
 
- var (
 
- 	dialers   = make(map[string]dialerFactory, 0)
 
- 	listeners = make(map[string]listenerFactory, 0)
 
- )
 
- const (
 
- 	perDeviceWarningIntv = 15 * time.Minute
 
- 	tlsHandshakeTimeout  = 10 * time.Second
 
- )
 
- // From go/src/crypto/tls/cipher_suites.go
 
- var tlsCipherSuiteNames = map[uint16]string{
 
- 	0x0005: "TLS_RSA_WITH_RC4_128_SHA",
 
- 	0x000a: "TLS_RSA_WITH_3DES_EDE_CBC_SHA",
 
- 	0x002f: "TLS_RSA_WITH_AES_128_CBC_SHA",
 
- 	0x0035: "TLS_RSA_WITH_AES_256_CBC_SHA",
 
- 	0x003c: "TLS_RSA_WITH_AES_128_CBC_SHA256",
 
- 	0x009c: "TLS_RSA_WITH_AES_128_GCM_SHA256",
 
- 	0x009d: "TLS_RSA_WITH_AES_256_GCM_SHA384",
 
- 	0xc007: "TLS_ECDHE_ECDSA_WITH_RC4_128_SHA",
 
- 	0xc009: "TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA",
 
- 	0xc00a: "TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA",
 
- 	0xc011: "TLS_ECDHE_RSA_WITH_RC4_128_SHA",
 
- 	0xc012: "TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA",
 
- 	0xc013: "TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA",
 
- 	0xc014: "TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA",
 
- 	0xc023: "TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256",
 
- 	0xc027: "TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256",
 
- 	0xc02f: "TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256",
 
- 	0xc02b: "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256",
 
- 	0xc030: "TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384",
 
- 	0xc02c: "TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384",
 
- 	0xcca8: "TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305",
 
- 	0xcca9: "TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305",
 
- }
 
- // Service listens and dials all configured unconnected devices, via supported
 
- // dialers. Successful connections are handed to the model.
 
- type Service struct {
 
- 	*suture.Supervisor
 
- 	cfg                  *config.Wrapper
 
- 	myID                 protocol.DeviceID
 
- 	model                Model
 
- 	tlsCfg               *tls.Config
 
- 	discoverer           discover.Finder
 
- 	conns                chan internalConn
 
- 	bepProtocolName      string
 
- 	tlsDefaultCommonName string
 
- 	limiter              *limiter
 
- 	natService           *nat.Service
 
- 	natServiceToken      *suture.ServiceToken
 
- 	listenersMut       sync.RWMutex
 
- 	listeners          map[string]genericListener
 
- 	listenerTokens     map[string]suture.ServiceToken
 
- 	listenerSupervisor *suture.Supervisor
 
- }
 
- func NewService(cfg *config.Wrapper, myID protocol.DeviceID, mdl Model, tlsCfg *tls.Config, discoverer discover.Finder,
 
- 	bepProtocolName string, tlsDefaultCommonName string) *Service {
 
- 	service := &Service{
 
- 		Supervisor: suture.New("connections.Service", suture.Spec{
 
- 			Log: func(line string) {
 
- 				l.Infoln(line)
 
- 			},
 
- 		}),
 
- 		cfg:                  cfg,
 
- 		myID:                 myID,
 
- 		model:                mdl,
 
- 		tlsCfg:               tlsCfg,
 
- 		discoverer:           discoverer,
 
- 		conns:                make(chan internalConn),
 
- 		bepProtocolName:      bepProtocolName,
 
- 		tlsDefaultCommonName: tlsDefaultCommonName,
 
- 		limiter:              newLimiter(cfg),
 
- 		natService:           nat.NewService(myID, cfg),
 
- 		listenersMut:   sync.NewRWMutex(),
 
- 		listeners:      make(map[string]genericListener),
 
- 		listenerTokens: make(map[string]suture.ServiceToken),
 
- 		// A listener can fail twice, rapidly. Any more than that and it
 
- 		// will be put on suspension for ten minutes. Restarts and changes
 
- 		// due to config are done by removing and adding services, so are
 
- 		// not subject to these limitations.
 
- 		listenerSupervisor: suture.New("c.S.listenerSupervisor", suture.Spec{
 
- 			Log: func(line string) {
 
- 				l.Infoln(line)
 
- 			},
 
- 			FailureThreshold: 2,
 
- 			FailureBackoff:   600 * time.Second,
 
- 		}),
 
- 	}
 
- 	cfg.Subscribe(service)
 
- 	raw := cfg.RawCopy()
 
- 	// Actually starts the listeners and NAT service
 
- 	// Need to start this before service.connect so that any dials that
 
- 	// try punch through already have a listener to cling on.
 
- 	service.CommitConfiguration(raw, raw)
 
- 	// There are several moving parts here; one routine per listening address
 
- 	// (handled in configuration changing) to handle incoming connections,
 
- 	// one routine to periodically attempt outgoing connections, one routine to
 
- 	// the common handling regardless of whether the connection was
 
- 	// incoming or outgoing.
 
- 	service.Add(serviceFunc(service.connect))
 
- 	service.Add(serviceFunc(service.handle))
 
- 	service.Add(service.listenerSupervisor)
 
- 	return service
 
- }
 
- var (
 
- 	errDisabled = errors.New("disabled by configuration")
 
- )
 
- func (s *Service) handle() {
 
- next:
 
- 	for c := range s.conns {
 
- 		cs := c.ConnectionState()
 
- 		// We should have negotiated the next level protocol "bep/1.0" as part
 
- 		// of the TLS handshake. Unfortunately this can't be a hard error,
 
- 		// because there are implementations out there that don't support
 
- 		// protocol negotiation (iOS for one...).
 
- 		if !cs.NegotiatedProtocolIsMutual || cs.NegotiatedProtocol != s.bepProtocolName {
 
- 			l.Infof("Peer %s did not negotiate bep/1.0", c.RemoteAddr())
 
- 		}
 
- 		// We should have received exactly one certificate from the other
 
- 		// side. If we didn't, they don't have a device ID and we drop the
 
- 		// connection.
 
- 		certs := cs.PeerCertificates
 
- 		if cl := len(certs); cl != 1 {
 
- 			l.Infof("Got peer certificate list of length %d != 1 from %s; protocol error", cl, c.RemoteAddr())
 
- 			c.Close()
 
- 			continue
 
- 		}
 
- 		remoteCert := certs[0]
 
- 		remoteID := protocol.NewDeviceID(remoteCert.Raw)
 
- 		// The device ID should not be that of ourselves. It can happen
 
- 		// though, especially in the presence of NAT hairpinning, multiple
 
- 		// clients between the same NAT gateway, and global discovery.
 
- 		if remoteID == s.myID {
 
- 			l.Infof("Connected to myself (%s) - should not happen", remoteID)
 
- 			c.Close()
 
- 			continue
 
- 		}
 
- 		c.SetDeadline(time.Now().Add(20 * time.Second))
 
- 		hello, err := protocol.ExchangeHello(c, s.model.GetHello(remoteID))
 
- 		if err != nil {
 
- 			if protocol.IsVersionMismatch(err) {
 
- 				// The error will be a relatively user friendly description
 
- 				// of what's wrong with the version compatibility. By
 
- 				// default identify the other side by device ID and IP.
 
- 				remote := fmt.Sprintf("%v (%v)", remoteID, c.RemoteAddr())
 
- 				if hello.DeviceName != "" {
 
- 					// If the name was set in the hello return, use that to
 
- 					// give the user more info about which device is the
 
- 					// affected one. It probably says more than the remote
 
- 					// IP.
 
- 					remote = fmt.Sprintf("%q (%s %s, %v)", hello.DeviceName, hello.ClientName, hello.ClientVersion, remoteID)
 
- 				}
 
- 				msg := fmt.Sprintf("Connecting to %s: %s", remote, err)
 
- 				warningFor(remoteID, msg)
 
- 			} else {
 
- 				// It's something else - connection reset or whatever
 
- 				l.Infof("Failed to exchange Hello messages with %s (%s): %s", remoteID, c.RemoteAddr(), err)
 
- 			}
 
- 			c.Close()
 
- 			continue
 
- 		}
 
- 		c.SetDeadline(time.Time{})
 
- 		// The Model will return an error for devices that we don't want to
 
- 		// have a connection with for whatever reason, for example unknown devices.
 
- 		if err := s.model.OnHello(remoteID, c.RemoteAddr(), hello); err != nil {
 
- 			l.Infof("Connection from %s at %s (%s) rejected: %v", remoteID, c.RemoteAddr(), c.Type(), err)
 
- 			c.Close()
 
- 			continue
 
- 		}
 
- 		// If we have a relay connection, and the new incoming connection is
 
- 		// not a relay connection, we should drop that, and prefer this one.
 
- 		ct, connected := s.model.Connection(remoteID)
 
- 		// Lower priority is better, just like nice etc.
 
- 		if connected && ct.Priority() > c.priority {
 
- 			l.Debugf("Switching connections %s (existing: %s new: %s)", remoteID, ct, c)
 
- 		} else if connected {
 
- 			// We should not already be connected to the other party. TODO: This
 
- 			// could use some better handling. If the old connection is dead but
 
- 			// hasn't timed out yet we may want to drop *that* connection and keep
 
- 			// this one. But in case we are two devices connecting to each other
 
- 			// in parallel we don't want to do that or we end up with no
 
- 			// connections still established...
 
- 			l.Infof("Connected to already connected device %s (existing: %s new: %s)", remoteID, ct, c)
 
- 			c.Close()
 
- 			continue
 
- 		}
 
- 		deviceCfg, ok := s.cfg.Device(remoteID)
 
- 		if !ok {
 
- 			panic("bug: unknown device should already have been rejected")
 
- 		}
 
- 		// Verify the name on the certificate. By default we set it to
 
- 		// "syncthing" when generating, but the user may have replaced
 
- 		// the certificate and used another name.
 
- 		certName := deviceCfg.CertName
 
- 		if certName == "" {
 
- 			certName = s.tlsDefaultCommonName
 
- 		}
 
- 		if err := remoteCert.VerifyHostname(certName); err != nil {
 
- 			// Incorrect certificate name is something the user most
 
- 			// likely wants to know about, since it's an advanced
 
- 			// config. Warn instead of Info.
 
- 			l.Warnf("Bad certificate from %s (%v): %v", remoteID, c.RemoteAddr(), err)
 
- 			c.Close()
 
- 			continue next
 
- 		}
 
- 		// Wrap the connection in rate limiters. The limiter itself will
 
- 		// keep up with config changes to the rate and whether or not LAN
 
- 		// connections are limited.
 
- 		isLAN := s.isLAN(c.RemoteAddr())
 
- 		wr := s.limiter.newWriteLimiter(c, isLAN)
 
- 		rd := s.limiter.newReadLimiter(c, isLAN)
 
- 		name := fmt.Sprintf("%s-%s (%s)", c.LocalAddr(), c.RemoteAddr(), c.Type())
 
- 		protoConn := protocol.NewConnection(remoteID, rd, wr, s.model, name, deviceCfg.Compression)
 
- 		modelConn := completeConn{c, protoConn}
 
- 		l.Infof("Established secure connection to %s at %s (%s)", remoteID, name, tlsCipherSuiteNames[c.ConnectionState().CipherSuite])
 
- 		s.model.AddConnection(modelConn, hello)
 
- 		continue next
 
- 	}
 
- }
 
- func (s *Service) connect() {
 
- 	nextDial := make(map[string]time.Time)
 
- 	// Used as delay for the first few connection attempts, increases
 
- 	// exponentially
 
- 	initialRampup := time.Second
 
- 	// Calculated from actual dialers reconnectInterval
 
- 	var sleep time.Duration
 
- 	for {
 
- 		cfg := s.cfg.RawCopy()
 
- 		bestDialerPrio := 1<<31 - 1 // worse prio won't build on 32 bit
 
- 		for _, df := range dialers {
 
- 			if !df.Enabled(cfg) {
 
- 				continue
 
- 			}
 
- 			if prio := df.Priority(); prio < bestDialerPrio {
 
- 				bestDialerPrio = prio
 
- 			}
 
- 		}
 
- 		l.Debugln("Reconnect loop")
 
- 		now := time.Now()
 
- 		var seen []string
 
- 		for _, deviceCfg := range cfg.Devices {
 
- 			deviceID := deviceCfg.DeviceID
 
- 			if deviceID == s.myID {
 
- 				continue
 
- 			}
 
- 			if deviceCfg.Paused {
 
- 				continue
 
- 			}
 
- 			ct, connected := s.model.Connection(deviceID)
 
- 			if connected && ct.Priority() == bestDialerPrio {
 
- 				// Things are already as good as they can get.
 
- 				continue
 
- 			}
 
- 			var addrs []string
 
- 			for _, addr := range deviceCfg.Addresses {
 
- 				if addr == "dynamic" {
 
- 					if s.discoverer != nil {
 
- 						if t, err := s.discoverer.Lookup(deviceID); err == nil {
 
- 							addrs = append(addrs, t...)
 
- 						}
 
- 					}
 
- 				} else {
 
- 					addrs = append(addrs, addr)
 
- 				}
 
- 			}
 
- 			addrs = util.UniqueStrings(addrs)
 
- 			l.Debugln("Reconnect loop for", deviceID, addrs)
 
- 			seen = append(seen, addrs...)
 
- 			dialTargets := make([]dialTarget, 0)
 
- 			for _, addr := range addrs {
 
- 				nextDialAt, ok := nextDial[addr]
 
- 				if ok && initialRampup >= sleep && nextDialAt.After(now) {
 
- 					l.Debugf("Not dialing %v as sleep is %v, next dial is at %s and current time is %s", addr, sleep, nextDialAt, now)
 
- 					continue
 
- 				}
 
- 				// If we fail at any step before actually getting the dialer
 
- 				// retry in a minute
 
- 				nextDial[addr] = now.Add(time.Minute)
 
- 				uri, err := url.Parse(addr)
 
- 				if err != nil {
 
- 					l.Infof("Parsing dialer address %s: %v", addr, err)
 
- 					continue
 
- 				}
 
- 				if len(deviceCfg.AllowedNetworks) > 0 {
 
- 					if !IsAllowedNetwork(uri.Host, deviceCfg.AllowedNetworks) {
 
- 						l.Debugln("Network for", uri, "is disallowed")
 
- 						continue
 
- 					}
 
- 				}
 
- 				dialerFactory, err := s.getDialerFactory(cfg, uri)
 
- 				if err == errDisabled {
 
- 					l.Debugln(dialerFactory, "for", uri, "is disabled")
 
- 					continue
 
- 				}
 
- 				if err != nil {
 
- 					l.Infof("%v for %v: %v", dialerFactory, uri, err)
 
- 					continue
 
- 				}
 
- 				priority := dialerFactory.Priority()
 
- 				if connected && priority >= ct.Priority() {
 
- 					l.Debugf("Not dialing using %s as priority is less than current connection (%d >= %d)", dialerFactory, dialerFactory.Priority(), ct.Priority())
 
- 					continue
 
- 				}
 
- 				dialer := dialerFactory.New(s.cfg, s.tlsCfg)
 
- 				nextDial[addr] = now.Add(dialer.RedialFrequency())
 
- 				// For LAN addresses, increase the priority so that we
 
- 				// try these first.
 
- 				switch {
 
- 				case dialerFactory.AlwaysWAN():
 
- 					// Do nothing.
 
- 				case s.isLANHost(uri.Host):
 
- 					priority -= 1
 
- 				}
 
- 				dialTargets = append(dialTargets, dialTarget{
 
- 					dialer:   dialer,
 
- 					priority: priority,
 
- 					deviceID: deviceID,
 
- 					uri:      uri,
 
- 				})
 
- 			}
 
- 			conn, ok := dialParallel(deviceCfg.DeviceID, dialTargets)
 
- 			if ok {
 
- 				s.conns <- conn
 
- 			}
 
- 		}
 
- 		nextDial, sleep = filterAndFindSleepDuration(nextDial, seen, now)
 
- 		if initialRampup < sleep {
 
- 			l.Debugln("initial rampup; sleep", initialRampup, "and update to", initialRampup*2)
 
- 			time.Sleep(initialRampup)
 
- 			initialRampup *= 2
 
- 		} else {
 
- 			l.Debugln("sleep until next dial", sleep)
 
- 			time.Sleep(sleep)
 
- 		}
 
- 	}
 
- }
 
- func (s *Service) isLANHost(host string) bool {
 
- 	// Probably we are called with an ip:port combo which we can resolve as
 
- 	// a TCP address.
 
- 	if addr, err := net.ResolveTCPAddr("tcp", host); err == nil {
 
- 		return s.isLAN(addr)
 
- 	}
 
- 	// ... but this function looks general enough that someone might try
 
- 	// with just an IP as well in the future so lets allow that.
 
- 	if addr, err := net.ResolveIPAddr("ip", host); err == nil {
 
- 		return s.isLAN(addr)
 
- 	}
 
- 	return false
 
- }
 
- func (s *Service) isLAN(addr net.Addr) bool {
 
- 	var ip net.IP
 
- 	switch addr := addr.(type) {
 
- 	case *net.IPAddr:
 
- 		ip = addr.IP
 
- 	case *net.TCPAddr:
 
- 		ip = addr.IP
 
- 	case *net.UDPAddr:
 
- 		ip = addr.IP
 
- 	default:
 
- 		// From the standard library, just Unix sockets.
 
- 		// If you invent your own, handle it.
 
- 		return false
 
- 	}
 
- 	if ip.IsLoopback() {
 
- 		return true
 
- 	}
 
- 	for _, lan := range s.cfg.Options().AlwaysLocalNets {
 
- 		_, ipnet, err := net.ParseCIDR(lan)
 
- 		if err != nil {
 
- 			l.Debugln("Network", lan, "is malformed:", err)
 
- 			continue
 
- 		}
 
- 		if ipnet.Contains(ip) {
 
- 			return true
 
- 		}
 
- 	}
 
- 	lans, _ := osutil.GetLans()
 
- 	for _, lan := range lans {
 
- 		if lan.Contains(ip) {
 
- 			return true
 
- 		}
 
- 	}
 
- 	return false
 
- }
 
- func (s *Service) createListener(factory listenerFactory, uri *url.URL) bool {
 
- 	// must be called with listenerMut held
 
- 	l.Debugln("Starting listener", uri)
 
- 	listener := factory.New(uri, s.cfg, s.tlsCfg, s.conns, s.natService)
 
- 	listener.OnAddressesChanged(s.logListenAddressesChangedEvent)
 
- 	s.listeners[uri.String()] = listener
 
- 	s.listenerTokens[uri.String()] = s.listenerSupervisor.Add(listener)
 
- 	return true
 
- }
 
- func (s *Service) logListenAddressesChangedEvent(l genericListener) {
 
- 	events.Default.Log(events.ListenAddressesChanged, map[string]interface{}{
 
- 		"address": l.URI(),
 
- 		"lan":     l.LANAddresses(),
 
- 		"wan":     l.WANAddresses(),
 
- 	})
 
- }
 
- func (s *Service) VerifyConfiguration(from, to config.Configuration) error {
 
- 	return nil
 
- }
 
- func (s *Service) CommitConfiguration(from, to config.Configuration) bool {
 
- 	newDevices := make(map[protocol.DeviceID]bool, len(to.Devices))
 
- 	for _, dev := range to.Devices {
 
- 		newDevices[dev.DeviceID] = true
 
- 	}
 
- 	for _, dev := range from.Devices {
 
- 		if !newDevices[dev.DeviceID] {
 
- 			warningLimitersMut.Lock()
 
- 			delete(warningLimiters, dev.DeviceID)
 
- 			warningLimitersMut.Unlock()
 
- 		}
 
- 	}
 
- 	s.listenersMut.Lock()
 
- 	seen := make(map[string]struct{})
 
- 	for _, addr := range config.Wrap("", to).ListenAddresses() {
 
- 		if addr == "" {
 
- 			// We can get an empty address if there is an empty listener
 
- 			// element in the config, indicating no listeners should be
 
- 			// used. This is not an error.
 
- 			continue
 
- 		}
 
- 		if _, ok := s.listeners[addr]; ok {
 
- 			seen[addr] = struct{}{}
 
- 			continue
 
- 		}
 
- 		uri, err := url.Parse(addr)
 
- 		if err != nil {
 
- 			l.Infof("Parsing listener address %s: %v", addr, err)
 
- 			continue
 
- 		}
 
- 		factory, err := s.getListenerFactory(to, uri)
 
- 		if err == errDisabled {
 
- 			l.Debugln("Listener for", uri, "is disabled")
 
- 			continue
 
- 		}
 
- 		if err != nil {
 
- 			l.Infof("Getting listener factory for %v: %v", uri, err)
 
- 			continue
 
- 		}
 
- 		s.createListener(factory, uri)
 
- 		seen[addr] = struct{}{}
 
- 	}
 
- 	for addr, listener := range s.listeners {
 
- 		if _, ok := seen[addr]; !ok || !listener.Factory().Enabled(to) {
 
- 			l.Debugln("Stopping listener", addr)
 
- 			s.listenerSupervisor.Remove(s.listenerTokens[addr])
 
- 			delete(s.listenerTokens, addr)
 
- 			delete(s.listeners, addr)
 
- 		}
 
- 	}
 
- 	s.listenersMut.Unlock()
 
- 	if to.Options.NATEnabled && s.natServiceToken == nil {
 
- 		l.Debugln("Starting NAT service")
 
- 		token := s.Add(s.natService)
 
- 		s.natServiceToken = &token
 
- 	} else if !to.Options.NATEnabled && s.natServiceToken != nil {
 
- 		l.Debugln("Stopping NAT service")
 
- 		s.Remove(*s.natServiceToken)
 
- 		s.natServiceToken = nil
 
- 	}
 
- 	return true
 
- }
 
- func (s *Service) AllAddresses() []string {
 
- 	s.listenersMut.RLock()
 
- 	var addrs []string
 
- 	for _, listener := range s.listeners {
 
- 		for _, lanAddr := range listener.LANAddresses() {
 
- 			addrs = append(addrs, lanAddr.String())
 
- 		}
 
- 		for _, wanAddr := range listener.WANAddresses() {
 
- 			addrs = append(addrs, wanAddr.String())
 
- 		}
 
- 	}
 
- 	s.listenersMut.RUnlock()
 
- 	return util.UniqueStrings(addrs)
 
- }
 
- func (s *Service) ExternalAddresses() []string {
 
- 	s.listenersMut.RLock()
 
- 	var addrs []string
 
- 	for _, listener := range s.listeners {
 
- 		for _, wanAddr := range listener.WANAddresses() {
 
- 			addrs = append(addrs, wanAddr.String())
 
- 		}
 
- 	}
 
- 	s.listenersMut.RUnlock()
 
- 	return util.UniqueStrings(addrs)
 
- }
 
- func (s *Service) Status() map[string]interface{} {
 
- 	s.listenersMut.RLock()
 
- 	result := make(map[string]interface{})
 
- 	for addr, listener := range s.listeners {
 
- 		status := make(map[string]interface{})
 
- 		err := listener.Error()
 
- 		if err != nil {
 
- 			status["error"] = err.Error()
 
- 		}
 
- 		status["lanAddresses"] = urlsToStrings(listener.LANAddresses())
 
- 		status["wanAddresses"] = urlsToStrings(listener.WANAddresses())
 
- 		result[addr] = status
 
- 	}
 
- 	s.listenersMut.RUnlock()
 
- 	return result
 
- }
 
- func (s *Service) NATType() string {
 
- 	s.listenersMut.RLock()
 
- 	defer s.listenersMut.RUnlock()
 
- 	for _, listener := range s.listeners {
 
- 		natType := listener.NATType()
 
- 		if natType != "unknown" {
 
- 			return natType
 
- 		}
 
- 	}
 
- 	return "unknown"
 
- }
 
- func (s *Service) getDialerFactory(cfg config.Configuration, uri *url.URL) (dialerFactory, error) {
 
- 	dialerFactory, ok := dialers[uri.Scheme]
 
- 	if !ok {
 
- 		return nil, fmt.Errorf("unknown address scheme %q", uri.Scheme)
 
- 	}
 
- 	if !dialerFactory.Enabled(cfg) {
 
- 		return nil, errDisabled
 
- 	}
 
- 	return dialerFactory, nil
 
- }
 
- func (s *Service) getListenerFactory(cfg config.Configuration, uri *url.URL) (listenerFactory, error) {
 
- 	listenerFactory, ok := listeners[uri.Scheme]
 
- 	if !ok {
 
- 		return nil, fmt.Errorf("unknown address scheme %q", uri.Scheme)
 
- 	}
 
- 	if !listenerFactory.Enabled(cfg) {
 
- 		return nil, errDisabled
 
- 	}
 
- 	return listenerFactory, nil
 
- }
 
- func filterAndFindSleepDuration(nextDial map[string]time.Time, seen []string, now time.Time) (map[string]time.Time, time.Duration) {
 
- 	newNextDial := make(map[string]time.Time)
 
- 	for _, addr := range seen {
 
- 		nextDialAt, ok := nextDial[addr]
 
- 		if ok {
 
- 			newNextDial[addr] = nextDialAt
 
- 		}
 
- 	}
 
- 	min := time.Minute
 
- 	for _, next := range newNextDial {
 
- 		cur := next.Sub(now)
 
- 		if cur < min {
 
- 			min = cur
 
- 		}
 
- 	}
 
- 	return newNextDial, min
 
- }
 
- func urlsToStrings(urls []*url.URL) []string {
 
- 	strings := make([]string, len(urls))
 
- 	for i, url := range urls {
 
- 		strings[i] = url.String()
 
- 	}
 
- 	return strings
 
- }
 
- var warningLimiters = make(map[protocol.DeviceID]*rate.Limiter)
 
- var warningLimitersMut = sync.NewMutex()
 
- func warningFor(dev protocol.DeviceID, msg string) {
 
- 	warningLimitersMut.Lock()
 
- 	defer warningLimitersMut.Unlock()
 
- 	lim, ok := warningLimiters[dev]
 
- 	if !ok {
 
- 		lim = rate.NewLimiter(rate.Every(perDeviceWarningIntv), 1)
 
- 		warningLimiters[dev] = lim
 
- 	}
 
- 	if lim.Allow() {
 
- 		l.Warnln(msg)
 
- 	}
 
- }
 
- func tlsTimedHandshake(tc *tls.Conn) error {
 
- 	tc.SetDeadline(time.Now().Add(tlsHandshakeTimeout))
 
- 	defer tc.SetDeadline(time.Time{})
 
- 	return tc.Handshake()
 
- }
 
- // IsAllowedNetwork returns true if the given host (IP or resolvable
 
- // hostname) is in the set of allowed networks (CIDR format only).
 
- func IsAllowedNetwork(host string, allowed []string) bool {
 
- 	if hostNoPort, _, err := net.SplitHostPort(host); err == nil {
 
- 		host = hostNoPort
 
- 	}
 
- 	addr, err := net.ResolveIPAddr("ip", host)
 
- 	if err != nil {
 
- 		return false
 
- 	}
 
- 	for _, n := range allowed {
 
- 		result := true
 
- 		if strings.HasPrefix(n, "!") {
 
- 			result = false
 
- 			n = n[1:]
 
- 		}
 
- 		_, cidr, err := net.ParseCIDR(n)
 
- 		if err != nil {
 
- 			continue
 
- 		}
 
- 		if cidr.Contains(addr.IP) {
 
- 			return result
 
- 		}
 
- 	}
 
- 	return false
 
- }
 
- func dialParallel(deviceID protocol.DeviceID, dialTargets []dialTarget) (internalConn, bool) {
 
- 	// Group targets into buckets by priority
 
- 	dialTargetBuckets := make(map[int][]dialTarget, len(dialTargets))
 
- 	for _, tgt := range dialTargets {
 
- 		dialTargetBuckets[tgt.priority] = append(dialTargetBuckets[tgt.priority], tgt)
 
- 	}
 
- 	// Get all available priorities
 
- 	priorities := make([]int, 0, len(dialTargetBuckets))
 
- 	for prio := range dialTargetBuckets {
 
- 		priorities = append(priorities, prio)
 
- 	}
 
- 	// Sort the priorities so that we dial lowest first (which means highest...)
 
- 	sort.Ints(priorities)
 
- 	for _, prio := range priorities {
 
- 		tgts := dialTargetBuckets[prio]
 
- 		res := make(chan internalConn, len(tgts))
 
- 		wg := stdsync.WaitGroup{}
 
- 		for _, tgt := range tgts {
 
- 			wg.Add(1)
 
- 			go func(tgt dialTarget) {
 
- 				conn, err := tgt.Dial()
 
- 				if err == nil {
 
- 					res <- conn
 
- 				}
 
- 				wg.Done()
 
- 			}(tgt)
 
- 		}
 
- 		// Spawn a routine which will unblock main routine in case we fail
 
- 		// to connect to anyone.
 
- 		go func() {
 
- 			wg.Wait()
 
- 			close(res)
 
- 		}()
 
- 		// Wait for the first connection, or for channel closure.
 
- 		conn, ok := <-res
 
- 		// Got a connection, means more might come back, hence spawn a
 
- 		// routine that will do the discarding.
 
- 		if ok {
 
- 			l.Debugln("connected to", deviceID, prio, "using", conn, conn.priority)
 
- 			go func(deviceID protocol.DeviceID, prio int) {
 
- 				wg.Wait()
 
- 				l.Debugln("discarding", len(res), "connections while connecting to", deviceID, prio)
 
- 				for conn := range res {
 
- 					conn.Close()
 
- 				}
 
- 			}(deviceID, prio)
 
- 			return conn, ok
 
- 		} else {
 
- 			// Failed to connect, report that fact.
 
- 			l.Debugln("failed to connect to", deviceID, prio)
 
- 		}
 
- 	}
 
- 	return internalConn{}, false
 
- }
 
 
  |