mirror of
https://github.com/octoleo/syncthing.git
synced 2024-12-22 02:48:59 +00:00
77970d5113
At a high level, this is what I've done and why: - I'm moving the protobuf generation for the `protocol`, `discovery` and `db` packages to the modern alternatives, and using `buf` to generate because it's nice and simple. - After trying various approaches on how to integrate the new types with the existing code, I opted for splitting off our own data model types from the on-the-wire generated types. This means we can have a `FileInfo` type with nicer ergonomics and lots of methods, while the protobuf generated type stays clean and close to the wire protocol. It does mean copying between the two when required, which certainly adds a small amount of inefficiency. If we want to walk this back in the future and use the raw generated type throughout, that's possible, this however makes the refactor smaller (!) as it doesn't change everything about the type for everyone at the same time. - I have simply removed in cold blood a significant number of old database migrations. These depended on previous generations of generated messages of various kinds and were annoying to support in the new fashion. The oldest supported database version now is the one from Syncthing 1.9.0 from Sep 7, 2020. - I changed config structs to be regular manually defined structs. For the sake of discussion, some things I tried that turned out not to work... ### Embedding / wrapping Embedding the protobuf generated structs in our existing types as a data container and keeping our methods and stuff: ``` package protocol type FileInfo struct { *generated.FileInfo } ``` This generates a lot of problems because the internal shape of the generated struct is quite different (different names, different types, more pointers), because initializing it doesn't work like you'd expect (i.e., you end up with an embedded nil pointer and a panic), and because the types of child types don't get wrapped. That is, even if we also have a similar wrapper around a `Vector`, that's not the type you get when accessing `someFileInfo.Version`, you get the `*generated.Vector` that doesn't have methods, etc. ### Aliasing ``` package protocol type FileInfo = generated.FileInfo ``` Doesn't help because you can't attach methods to it, plus all the above. ### Generating the types into the target package like we do now and attaching methods This fails because of the different shape of the generated type (as in the embedding case above) plus the generated struct already has a bunch of methods that we can't necessarily override properly (like `String()` and a bunch of getters). ### Methods to functions I considered just moving all the methods we attach to functions in a specific package, so that for example ``` package protocol func (f FileInfo) Equal(other FileInfo) bool ``` would become ``` package fileinfos func Equal(a, b *generated.FileInfo) bool ``` and this would mostly work, but becomes quite verbose and cumbersome, and somewhat limits discoverability (you can't see what methods are available on the type in auto completions, etc). In the end I did this in some cases, like in the database layer where a lot of things like `func (fv *FileVersion) IsEmpty() bool` becomes `func fvIsEmpty(fv *generated.FileVersion)` because they were anyway just internal methods. Fixes #8247
340 lines
10 KiB
Go
340 lines
10 KiB
Go
// Copyright (C) 2015 Audrius Butkevicius and Contributors.
|
|
|
|
package main
|
|
|
|
import (
|
|
"context"
|
|
"crypto/tls"
|
|
"flag"
|
|
"fmt"
|
|
"log"
|
|
"net"
|
|
"net/http"
|
|
"net/url"
|
|
"os"
|
|
"os/signal"
|
|
"path/filepath"
|
|
"strings"
|
|
"sync/atomic"
|
|
"syscall"
|
|
"time"
|
|
|
|
"golang.org/x/time/rate"
|
|
|
|
_ "github.com/syncthing/syncthing/lib/automaxprocs"
|
|
"github.com/syncthing/syncthing/lib/build"
|
|
"github.com/syncthing/syncthing/lib/config"
|
|
"github.com/syncthing/syncthing/lib/events"
|
|
"github.com/syncthing/syncthing/lib/nat"
|
|
"github.com/syncthing/syncthing/lib/osutil"
|
|
_ "github.com/syncthing/syncthing/lib/pmp"
|
|
syncthingprotocol "github.com/syncthing/syncthing/lib/protocol"
|
|
"github.com/syncthing/syncthing/lib/relay/protocol"
|
|
"github.com/syncthing/syncthing/lib/tlsutil"
|
|
_ "github.com/syncthing/syncthing/lib/upnp"
|
|
)
|
|
|
|
var (
|
|
listen string
|
|
debug bool
|
|
|
|
sessionAddress []byte
|
|
sessionPort uint16
|
|
|
|
networkTimeout = 2 * time.Minute
|
|
pingInterval = time.Minute
|
|
messageTimeout = time.Minute
|
|
|
|
limitCheckTimer *time.Timer
|
|
|
|
sessionLimitBps int
|
|
globalLimitBps int
|
|
overLimit atomic.Bool
|
|
descriptorLimit int64
|
|
sessionLimiter *rate.Limiter
|
|
globalLimiter *rate.Limiter
|
|
networkBufferSize int
|
|
|
|
statusAddr string
|
|
token string
|
|
poolAddrs string
|
|
pools []string
|
|
providedBy string
|
|
defaultPoolAddrs = "https://relays.syncthing.net/endpoint"
|
|
|
|
natEnabled bool
|
|
natLease int
|
|
natRenewal int
|
|
natTimeout int
|
|
|
|
pprofEnabled bool
|
|
)
|
|
|
|
// httpClient is the HTTP client we use for outbound requests. It has a
|
|
// timeout and may get further options set during initialization.
|
|
var httpClient = &http.Client{
|
|
Timeout: 30 * time.Second,
|
|
}
|
|
|
|
func main() {
|
|
log.SetFlags(log.Lshortfile | log.LstdFlags)
|
|
|
|
var dir, extAddress, proto string
|
|
|
|
flag.StringVar(&listen, "listen", ":22067", "Protocol listen address")
|
|
flag.StringVar(&dir, "keys", ".", "Directory where cert.pem and key.pem is stored")
|
|
flag.DurationVar(&networkTimeout, "network-timeout", networkTimeout, "Timeout for network operations between the client and the relay.\n\tIf no data is received between the client and the relay in this period of time, the connection is terminated.\n\tFurthermore, if no data is sent between either clients being relayed within this period of time, the session is also terminated.")
|
|
flag.DurationVar(&pingInterval, "ping-interval", pingInterval, "How often pings are sent")
|
|
flag.DurationVar(&messageTimeout, "message-timeout", messageTimeout, "Maximum amount of time we wait for relevant messages to arrive")
|
|
flag.IntVar(&sessionLimitBps, "per-session-rate", sessionLimitBps, "Per session rate limit, in bytes/s")
|
|
flag.IntVar(&globalLimitBps, "global-rate", globalLimitBps, "Global rate limit, in bytes/s")
|
|
flag.BoolVar(&debug, "debug", debug, "Enable debug output")
|
|
flag.StringVar(&statusAddr, "status-srv", ":22070", "Listen address for status service (blank to disable)")
|
|
flag.StringVar(&token, "token", "", "Token to restrict access to the relay (optional). Disables joining any pools.")
|
|
flag.StringVar(&poolAddrs, "pools", defaultPoolAddrs, "Comma separated list of relay pool addresses to join")
|
|
flag.StringVar(&providedBy, "provided-by", "", "An optional description about who provides the relay")
|
|
flag.StringVar(&extAddress, "ext-address", "", "An optional address to advertise as being available on.\n\tAllows listening on an unprivileged port with port forwarding from e.g. 443, and be connected to on port 443.")
|
|
flag.StringVar(&proto, "protocol", "tcp", "Protocol used for listening. 'tcp' for IPv4 and IPv6, 'tcp4' for IPv4, 'tcp6' for IPv6")
|
|
flag.BoolVar(&natEnabled, "nat", false, "Use UPnP/NAT-PMP to acquire external port mapping")
|
|
flag.IntVar(&natLease, "nat-lease", 60, "NAT lease length in minutes")
|
|
flag.IntVar(&natRenewal, "nat-renewal", 30, "NAT renewal frequency in minutes")
|
|
flag.IntVar(&natTimeout, "nat-timeout", 10, "NAT discovery timeout in seconds")
|
|
flag.BoolVar(&pprofEnabled, "pprof", false, "Enable the built in profiling on the status server")
|
|
flag.IntVar(&networkBufferSize, "network-buffer", 65536, "Network buffer size (two of these per proxied connection)")
|
|
showVersion := flag.Bool("version", false, "Show version")
|
|
flag.Parse()
|
|
|
|
longVer := build.LongVersionFor("strelaysrv")
|
|
if *showVersion {
|
|
fmt.Println(longVer)
|
|
return
|
|
}
|
|
|
|
if extAddress == "" {
|
|
extAddress = listen
|
|
}
|
|
|
|
if len(providedBy) > 30 {
|
|
log.Fatal("Provided-by cannot be longer than 30 characters")
|
|
}
|
|
|
|
addr, err := net.ResolveTCPAddr(proto, extAddress)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
laddr, err := net.ResolveTCPAddr(proto, listen)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
if laddr.IP != nil && !laddr.IP.IsUnspecified() {
|
|
// We bind to a specific address. Our outgoing HTTP requests should
|
|
// also come from that address.
|
|
laddr.Port = 0
|
|
boundDialer := &net.Dialer{LocalAddr: laddr}
|
|
httpClient.Transport = &http.Transport{
|
|
DialContext: boundDialer.DialContext,
|
|
}
|
|
}
|
|
|
|
log.Println(longVer)
|
|
|
|
maxDescriptors, err := osutil.MaximizeOpenFileLimit()
|
|
if maxDescriptors > 0 {
|
|
// Assume that 20% of FD's are leaked/unaccounted for.
|
|
descriptorLimit = int64(maxDescriptors*80) / 100
|
|
log.Println("Connection limit", descriptorLimit)
|
|
|
|
go monitorLimits()
|
|
} else if err != nil && !build.IsWindows {
|
|
log.Println("Assuming no connection limit, due to error retrieving rlimits:", err)
|
|
}
|
|
|
|
sessionAddress = addr.IP[:]
|
|
sessionPort = uint16(addr.Port)
|
|
|
|
certFile, keyFile := filepath.Join(dir, "cert.pem"), filepath.Join(dir, "key.pem")
|
|
cert, err := tls.LoadX509KeyPair(certFile, keyFile)
|
|
if err != nil {
|
|
log.Println("Failed to load keypair. Generating one, this might take a while...")
|
|
cert, err = tlsutil.NewCertificate(certFile, keyFile, "strelaysrv", 20*365)
|
|
if err != nil {
|
|
log.Fatalln("Failed to generate X509 key pair:", err)
|
|
}
|
|
}
|
|
|
|
tlsCfg := &tls.Config{
|
|
Certificates: []tls.Certificate{cert},
|
|
NextProtos: []string{protocol.ProtocolName},
|
|
ClientAuth: tls.RequestClientCert,
|
|
SessionTicketsDisabled: true,
|
|
InsecureSkipVerify: true,
|
|
MinVersion: tls.VersionTLS12,
|
|
CipherSuites: []uint16{
|
|
tls.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,
|
|
tls.TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,
|
|
tls.TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA,
|
|
tls.TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA,
|
|
tls.TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA,
|
|
tls.TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA,
|
|
},
|
|
}
|
|
|
|
id := syncthingprotocol.NewDeviceID(cert.Certificate[0])
|
|
if debug {
|
|
log.Println("ID:", id)
|
|
}
|
|
|
|
wrapper := config.Wrap("config", config.New(id), id, events.NoopLogger)
|
|
go wrapper.Serve(context.TODO())
|
|
wrapper.Modify(func(cfg *config.Configuration) {
|
|
cfg.Options.NATLeaseM = natLease
|
|
cfg.Options.NATRenewalM = natRenewal
|
|
cfg.Options.NATTimeoutS = natTimeout
|
|
})
|
|
natSvc := nat.NewService(id, wrapper)
|
|
var ipVersion nat.IPVersion
|
|
if strings.HasSuffix(proto, "4") {
|
|
ipVersion = nat.IPv4Only
|
|
} else if strings.HasSuffix(proto, "6") {
|
|
ipVersion = nat.IPv6Only
|
|
} else {
|
|
ipVersion = nat.IPvAny
|
|
}
|
|
mapping := mapping{natSvc.NewMapping(nat.TCP, ipVersion, addr.IP, addr.Port)}
|
|
|
|
if natEnabled {
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
go natSvc.Serve(ctx)
|
|
defer cancel()
|
|
found := make(chan struct{})
|
|
mapping.OnChanged(func() {
|
|
select {
|
|
case found <- struct{}{}:
|
|
default:
|
|
}
|
|
})
|
|
|
|
// Need to wait a few extra seconds, since NAT library waits exactly natTimeout seconds on all interfaces.
|
|
timeout := time.Duration(natTimeout+2) * time.Second
|
|
log.Printf("Waiting %s to acquire NAT mapping", timeout)
|
|
|
|
select {
|
|
case <-found:
|
|
log.Printf("Found NAT mapping: %s", mapping.ExternalAddresses())
|
|
case <-time.After(timeout):
|
|
log.Println("Timeout out waiting for NAT mapping.")
|
|
}
|
|
}
|
|
|
|
if sessionLimitBps > 0 {
|
|
sessionLimiter = rate.NewLimiter(rate.Limit(sessionLimitBps), 2*sessionLimitBps)
|
|
}
|
|
if globalLimitBps > 0 {
|
|
globalLimiter = rate.NewLimiter(rate.Limit(globalLimitBps), 2*globalLimitBps)
|
|
}
|
|
|
|
if statusAddr != "" {
|
|
go statusService(statusAddr)
|
|
}
|
|
|
|
uri, err := url.Parse(fmt.Sprintf("relay://%s/", mapping.Address()))
|
|
if err != nil {
|
|
log.Fatalln("Failed to construct URI", err)
|
|
return
|
|
}
|
|
|
|
// Add properly encoded query string parameters to URL.
|
|
query := make(url.Values)
|
|
query.Set("id", id.String())
|
|
query.Set("pingInterval", pingInterval.String())
|
|
query.Set("networkTimeout", networkTimeout.String())
|
|
if sessionLimitBps > 0 {
|
|
query.Set("sessionLimitBps", fmt.Sprint(sessionLimitBps))
|
|
}
|
|
if globalLimitBps > 0 {
|
|
query.Set("globalLimitBps", fmt.Sprint(globalLimitBps))
|
|
}
|
|
if statusAddr != "" {
|
|
query.Set("statusAddr", statusAddr)
|
|
}
|
|
if providedBy != "" {
|
|
query.Set("providedBy", providedBy)
|
|
}
|
|
uri.RawQuery = query.Encode()
|
|
|
|
log.Println("URI:", uri.String())
|
|
|
|
if token != "" {
|
|
poolAddrs = ""
|
|
}
|
|
|
|
if poolAddrs == defaultPoolAddrs {
|
|
log.Println("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!")
|
|
log.Println("!! Joining default relay pools, this relay will be available for public use. !!")
|
|
log.Println(`!! Use the -pools="" command line option to make the relay private. !!`)
|
|
log.Println("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!")
|
|
}
|
|
|
|
pools = strings.Split(poolAddrs, ",")
|
|
for _, pool := range pools {
|
|
pool = strings.TrimSpace(pool)
|
|
if len(pool) > 0 {
|
|
go poolHandler(pool, uri, mapping, cert)
|
|
}
|
|
}
|
|
|
|
go listener(proto, listen, tlsCfg, token)
|
|
|
|
sigs := make(chan os.Signal, 1)
|
|
signal.Notify(sigs, syscall.SIGINT, syscall.SIGTERM)
|
|
<-sigs
|
|
|
|
// Gracefully close all connections, hoping that clients will be faster
|
|
// to realize that the relay is now gone.
|
|
|
|
sessionMut.RLock()
|
|
for _, session := range activeSessions {
|
|
session.CloseConns()
|
|
}
|
|
|
|
for _, session := range pendingSessions {
|
|
session.CloseConns()
|
|
}
|
|
sessionMut.RUnlock()
|
|
|
|
outboxesMut.RLock()
|
|
for _, outbox := range outboxes {
|
|
close(outbox)
|
|
}
|
|
outboxesMut.RUnlock()
|
|
|
|
time.Sleep(500 * time.Millisecond)
|
|
}
|
|
|
|
func monitorLimits() {
|
|
limitCheckTimer = time.NewTimer(time.Minute)
|
|
for range limitCheckTimer.C {
|
|
if numConnections.Load()+numProxies.Load() > descriptorLimit {
|
|
overLimit.Store(true)
|
|
log.Println("Gone past our connection limits. Starting to refuse new/drop idle connections.")
|
|
} else if overLimit.CompareAndSwap(true, false) {
|
|
log.Println("Dropped below our connection limits. Accepting new connections.")
|
|
}
|
|
limitCheckTimer.Reset(time.Minute)
|
|
}
|
|
}
|
|
|
|
type mapping struct {
|
|
*nat.Mapping
|
|
}
|
|
|
|
func (m *mapping) Address() nat.Address {
|
|
ext := m.ExternalAddresses()
|
|
if len(ext) > 0 {
|
|
return ext[0]
|
|
}
|
|
return m.Mapping.Address()
|
|
}
|