syncthing/main.go

411 lines
10 KiB
Go
Raw Normal View History

2013-12-15 11:43:31 +01:00
package main
import (
2014-01-01 22:31:04 +01:00
"compress/gzip"
2013-12-15 11:43:31 +01:00
"crypto/tls"
"log"
"net"
"net/http"
_ "net/http/pprof"
"os"
"path"
"strconv"
"strings"
"time"
"github.com/calmh/ini"
"github.com/calmh/syncthing/discover"
flags "github.com/calmh/syncthing/github.com/jessevdk/go-flags"
"github.com/calmh/syncthing/model"
2013-12-15 11:43:31 +01:00
"github.com/calmh/syncthing/protocol"
)
2013-12-18 19:36:28 +01:00
type Options struct {
2013-12-29 18:18:59 +01:00
ConfDir string `short:"c" long:"cfg" description:"Configuration directory" default:"~/.syncthing" value-name:"DIR"`
Listen string `short:"l" long:"listen" description:"Listen address" default:":22000" value-name:"ADDR"`
ReadOnly bool `short:"r" long:"ro" description:"Repository is read only"`
Rehash bool `long:"rehash" description:"Ignore cache and rehash all files in repository"`
2014-01-07 16:15:18 +01:00
NoDelete bool `long:"no-delete" description:"Never delete files"`
2013-12-29 18:18:59 +01:00
NoSymlinks bool `long:"no-symlinks" description:"Don't follow first level symlinks in the repo"`
2014-01-05 23:54:57 +01:00
NoStats bool `long:"no-stats" description:"Don't print model and connection statistics"`
NoGUI bool `long:"no-gui" description:"Don't start GUI"`
GUIAddr string `long:"gui-addr" description:"GUI listen address" default:"127.0.0.1:8080" value-name:"ADDR"`
2013-12-29 18:18:59 +01:00
Discovery DiscoveryOptions `group:"Discovery Options"`
Advanced AdvancedOptions `group:"Advanced Options"`
Debug DebugOptions `group:"Debugging Options"`
2013-12-18 19:36:28 +01:00
}
type DebugOptions struct {
LogSource bool `long:"log-source"`
TraceModel []string `long:"trace-model" value-name:"TRACE" description:"idx, net, file, need"`
TraceConnect bool `long:"trace-connect"`
Profiler string `long:"profiler" value-name:"ADDR"`
2013-12-22 22:29:23 +01:00
}
type DiscoveryOptions struct {
ExternalServer string `long:"ext-server" description:"External discovery server" value-name:"NAME" default:"syncthing.nym.se"`
ExternalPort int `short:"e" long:"ext-port" description:"External listen port" value-name:"PORT" default:"22000"`
NoExternalDiscovery bool `short:"n" long:"no-ext-announce" description:"Do not announce presence externally"`
NoLocalDiscovery bool `short:"N" long:"no-local-announce" description:"Do not announce presence locally"`
2013-12-18 19:36:28 +01:00
}
2013-12-29 18:18:59 +01:00
type AdvancedOptions struct {
RequestsInFlight int `long:"reqs-in-flight" description:"Parallell in flight requests per file" default:"4" value-name:"REQS"`
FilesInFlight int `long:"files-in-flight" description:"Parallell in flight file pulls" default:"8" value-name:"FILES"`
2013-12-29 18:18:59 +01:00
ScanInterval time.Duration `long:"scan-intv" description:"Repository scan interval" default:"60s" value-name:"INTV"`
ConnInterval time.Duration `long:"conn-intv" description:"Node reconnect interval" default:"60s" value-name:"INTV"`
}
2013-12-18 19:36:28 +01:00
var opts Options
2013-12-30 16:05:27 +01:00
var Version string = "unknown-dev"
2013-12-18 19:36:28 +01:00
2013-12-15 11:43:31 +01:00
const (
confFileName = "syncthing.ini"
)
var (
config ini.Config
nodeAddrs = make(map[string][]string)
)
func main() {
2013-12-18 19:36:28 +01:00
_, err := flags.Parse(&opts)
if err != nil {
os.Exit(0)
2013-12-15 11:43:31 +01:00
}
if len(opts.Debug.TraceModel) > 0 || opts.Debug.LogSource {
2013-12-31 03:21:31 +01:00
logger = log.New(os.Stderr, "", log.Lshortfile|log.Ldate|log.Ltime|log.Lmicroseconds)
}
opts.ConfDir = expandTilde(opts.ConfDir)
2013-12-15 11:43:31 +01:00
2013-12-22 00:16:49 +01:00
infoln("Version", Version)
2013-12-15 11:43:31 +01:00
// Ensure that our home directory exists and that we have a certificate and key.
2014-01-01 14:49:55 +01:00
ensureDir(opts.ConfDir, 0700)
cert, err := loadCert(opts.ConfDir)
2013-12-15 11:43:31 +01:00
if err != nil {
2014-01-01 14:49:55 +01:00
newCertificate(opts.ConfDir)
cert, err = loadCert(opts.ConfDir)
2013-12-15 11:43:31 +01:00
fatalErr(err)
}
myID := string(certId(cert.Certificate[0]))
infoln("My ID:", myID)
2013-12-18 19:36:28 +01:00
if opts.Debug.Profiler != "" {
2013-12-15 11:43:31 +01:00
go func() {
2013-12-18 19:36:28 +01:00
err := http.ListenAndServe(opts.Debug.Profiler, nil)
if err != nil {
warnln(err)
}
2013-12-15 11:43:31 +01:00
}()
}
// The TLS configuration is used for both the listening socket and outgoing
// connections.
cfg := &tls.Config{
ClientAuth: tls.RequestClientCert,
ServerName: "syncthing",
NextProtos: []string{"bep/1.0"},
InsecureSkipVerify: true,
Certificates: []tls.Certificate{cert},
}
// Load the configuration file, if it exists.
2014-01-01 14:49:55 +01:00
cf, err := os.Open(path.Join(opts.ConfDir, confFileName))
2013-12-15 11:43:31 +01:00
if err != nil {
fatalln("No config file")
config = ini.Config{}
}
config = ini.Parse(cf)
cf.Close()
var dir = expandTilde(config.Get("repository", "dir"))
2013-12-15 11:43:31 +01:00
// Create a map of desired node connections based on the configuration file
// directives.
for nodeID, addrs := range config.OptionMap("nodes") {
addrs := strings.Fields(addrs)
nodeAddrs[nodeID] = addrs
}
2013-12-22 00:16:49 +01:00
ensureDir(dir, -1)
m := model.NewModel(dir)
for _, t := range opts.Debug.TraceModel {
m.Trace(t)
}
2013-12-15 11:43:31 +01:00
2014-01-05 23:54:57 +01:00
// GUI
if !opts.NoGUI && opts.GUIAddr != "" {
2014-01-05 23:54:57 +01:00
startGUI(opts.GUIAddr, m)
}
2013-12-15 11:43:31 +01:00
// Walk the repository and update the local model before establishing any
// connections to other nodes.
if !opts.Rehash {
infoln("Loading index cache")
loadIndex(m)
}
infoln("Populating repository index")
2013-12-15 11:43:31 +01:00
updateLocalModel(m)
// Routine to listen for incoming connections
infoln("Listening for incoming connections")
2013-12-18 19:36:28 +01:00
go listen(myID, opts.Listen, m, cfg)
2013-12-15 11:43:31 +01:00
// Routine to connect out to configured nodes
infoln("Attempting to connect to other nodes")
2013-12-18 19:36:28 +01:00
go connect(myID, opts.Listen, nodeAddrs, m, cfg)
2013-12-15 11:43:31 +01:00
// Routine to pull blocks from other nodes to synchronize the local
// repository. Does not run when we are in read only (publish only) mode.
2013-12-18 19:36:28 +01:00
if !opts.ReadOnly {
2014-01-07 16:15:18 +01:00
if opts.NoDelete {
infoln("Deletes from peer nodes will be ignored")
2014-01-07 16:15:18 +01:00
} else {
infoln("Deletes from peer nodes are allowed")
}
okln("Ready to synchronize (read-write)")
2014-01-07 16:15:18 +01:00
m.StartRW(!opts.NoDelete, opts.Advanced.FilesInFlight, opts.Advanced.RequestsInFlight)
} else {
okln("Ready to synchronize (read only; no external updates accepted)")
2013-12-15 11:43:31 +01:00
}
// Periodically scan the repository and update the local model.
// XXX: Should use some fsnotify mechanism.
go func() {
for {
2013-12-29 18:18:59 +01:00
time.Sleep(opts.Advanced.ScanInterval)
2013-12-15 11:43:31 +01:00
updateLocalModel(m)
}
}()
2014-01-05 23:54:57 +01:00
if !opts.NoStats {
// Periodically print statistics
go printStatsLoop(m)
}
2014-01-05 16:16:37 +01:00
2013-12-15 11:43:31 +01:00
select {}
}
func printStatsLoop(m *model.Model) {
2014-01-05 16:16:37 +01:00
var lastUpdated int64
var lastStats = make(map[string]model.ConnectionInfo)
2014-01-05 16:16:37 +01:00
for {
time.Sleep(60 * time.Second)
for node, stats := range m.ConnectionStats() {
secs := time.Since(lastStats[node].At).Seconds()
inbps := 8 * int(float64(stats.InBytesTotal-lastStats[node].InBytesTotal)/secs)
outbps := 8 * int(float64(stats.OutBytesTotal-lastStats[node].OutBytesTotal)/secs)
if inbps+outbps > 0 {
infof("%s: %sb/s in, %sb/s out", node, MetricPrefix(inbps), MetricPrefix(outbps))
}
lastStats[node] = stats
}
if lu := m.Generation(); lu > lastUpdated {
lastUpdated = lu
2014-01-05 23:54:57 +01:00
files, _, bytes := m.GlobalSize()
2014-01-05 16:16:37 +01:00
infof("%6d files, %9sB in cluster", files, BinaryPrefix(bytes))
2014-01-05 23:54:57 +01:00
files, _, bytes = m.LocalSize()
2014-01-05 16:16:37 +01:00
infof("%6d files, %9sB in local repo", files, BinaryPrefix(bytes))
2014-01-05 23:54:57 +01:00
needFiles, bytes := m.NeedFiles()
infof("%6d files, %9sB to synchronize", len(needFiles), BinaryPrefix(bytes))
2014-01-05 16:16:37 +01:00
}
}
}
func listen(myID string, addr string, m *model.Model, cfg *tls.Config) {
2013-12-15 11:43:31 +01:00
l, err := tls.Listen("tcp", addr, cfg)
fatalErr(err)
listen:
for {
conn, err := l.Accept()
if err != nil {
warnln(err)
continue
}
if opts.Debug.TraceConnect {
2013-12-15 11:43:31 +01:00
debugln("NET: Connect from", conn.RemoteAddr())
}
tc := conn.(*tls.Conn)
err = tc.Handshake()
if err != nil {
warnln(err)
tc.Close()
continue
}
remoteID := certId(tc.ConnectionState().PeerCertificates[0].Raw)
if remoteID == myID {
warnf("Connect from myself (%s) - should not happen", remoteID)
conn.Close()
continue
}
if m.ConnectedTo(remoteID) {
warnf("Connect from connected node (%s)", remoteID)
}
for nodeID := range nodeAddrs {
if nodeID == remoteID {
m.AddConnection(conn, remoteID)
2013-12-15 11:43:31 +01:00
continue listen
}
}
conn.Close()
}
}
func connect(myID string, addr string, nodeAddrs map[string][]string, m *model.Model, cfg *tls.Config) {
2013-12-15 11:43:31 +01:00
_, portstr, err := net.SplitHostPort(addr)
fatalErr(err)
port, _ := strconv.Atoi(portstr)
2013-12-22 22:29:23 +01:00
if opts.Discovery.NoLocalDiscovery {
port = -1
} else {
infoln("Sending local discovery announcements")
}
if opts.Discovery.NoExternalDiscovery {
opts.Discovery.ExternalPort = -1
} else {
infoln("Sending external discovery announcements")
}
disc, err := discover.NewDiscoverer(myID, port, opts.Discovery.ExternalPort, opts.Discovery.ExternalServer)
2013-12-15 11:43:31 +01:00
if err != nil {
2013-12-22 22:29:23 +01:00
warnf("No discovery possible (%v)", err)
2013-12-15 11:43:31 +01:00
}
for {
nextNode:
for nodeID, addrs := range nodeAddrs {
if nodeID == myID {
continue
}
if m.ConnectedTo(nodeID) {
continue
}
for _, addr := range addrs {
if addr == "dynamic" {
var ok bool
if disc != nil {
addr, ok = disc.Lookup(nodeID)
}
if !ok {
continue
}
}
if opts.Debug.TraceConnect {
2013-12-15 11:43:31 +01:00
debugln("NET: Dial", nodeID, addr)
}
conn, err := tls.Dial("tcp", addr, cfg)
if err != nil {
if opts.Debug.TraceConnect {
2013-12-15 11:43:31 +01:00
debugln("NET:", err)
}
continue
}
remoteID := certId(conn.ConnectionState().PeerCertificates[0].Raw)
if remoteID != nodeID {
warnln("Unexpected nodeID", remoteID, "!=", nodeID)
conn.Close()
continue
}
m.AddConnection(conn, remoteID)
2013-12-15 11:43:31 +01:00
continue nextNode
}
}
2013-12-29 18:18:59 +01:00
time.Sleep(opts.Advanced.ConnInterval)
2013-12-15 11:43:31 +01:00
}
}
func updateLocalModel(m *model.Model) {
files := m.FilteredWalk(!opts.NoSymlinks)
2013-12-15 11:43:31 +01:00
m.ReplaceLocal(files)
saveIndex(m)
}
func saveIndex(m *model.Model) {
name := m.RepoID() + ".idx.gz"
2014-01-01 14:49:55 +01:00
fullName := path.Join(opts.ConfDir, name)
2013-12-31 04:04:30 +01:00
idxf, err := os.Create(fullName + ".tmp")
2013-12-15 11:43:31 +01:00
if err != nil {
return
}
2014-01-01 22:31:04 +01:00
gzw := gzip.NewWriter(idxf)
protocol.WriteIndex(gzw, m.ProtocolIndex())
gzw.Close()
2013-12-15 11:43:31 +01:00
idxf.Close()
2013-12-31 04:04:30 +01:00
os.Rename(fullName+".tmp", fullName)
2013-12-15 11:43:31 +01:00
}
func loadIndex(m *model.Model) {
name := m.RepoID() + ".idx.gz"
idxf, err := os.Open(path.Join(opts.ConfDir, name))
2013-12-15 11:43:31 +01:00
if err != nil {
return
}
defer idxf.Close()
2014-01-01 22:31:04 +01:00
gzr, err := gzip.NewReader(idxf)
if err != nil {
return
}
defer gzr.Close()
idx, err := protocol.ReadIndex(gzr)
2013-12-15 11:43:31 +01:00
if err != nil {
return
}
m.SeedLocal(idx)
2013-12-15 11:43:31 +01:00
}
2013-12-22 00:16:49 +01:00
func ensureDir(dir string, mode int) {
2013-12-15 11:43:31 +01:00
fi, err := os.Stat(dir)
if os.IsNotExist(err) {
err := os.MkdirAll(dir, 0700)
fatalErr(err)
2013-12-22 00:16:49 +01:00
} else if mode >= 0 && err == nil && int(fi.Mode()&0777) != mode {
err := os.Chmod(dir, os.FileMode(mode))
2013-12-15 11:43:31 +01:00
fatalErr(err)
}
}
func expandTilde(p string) string {
if strings.HasPrefix(p, "~/") {
return strings.Replace(p, "~", getHomeDir(), 1)
}
return p
}
2013-12-15 11:43:31 +01:00
func getHomeDir() string {
home := os.Getenv("HOME")
if home == "" {
fatalln("No home directory?")
}
return home
}