| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318 |
- // Copyright (C) 2014 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 main
- import (
- "bytes"
- "context"
- "crypto/rand"
- "crypto/tls"
- "encoding/json"
- "fmt"
- "net/http"
- "runtime"
- "sort"
- "strings"
- "time"
- "github.com/syncthing/syncthing/lib/config"
- "github.com/syncthing/syncthing/lib/dialer"
- "github.com/syncthing/syncthing/lib/model"
- "github.com/syncthing/syncthing/lib/protocol"
- "github.com/syncthing/syncthing/lib/scanner"
- "github.com/syncthing/syncthing/lib/upgrade"
- "github.com/thejerf/suture"
- )
- // Current version number of the usage report, for acceptance purposes. If
- // fields are added or changed this integer must be incremented so that users
- // are prompted for acceptance of the new report.
- const usageReportVersion = 2
- type usageReportingManager struct {
- cfg *config.Wrapper
- model *model.Model
- sup *suture.Supervisor
- }
- func newUsageReportingManager(cfg *config.Wrapper, m *model.Model) *usageReportingManager {
- mgr := &usageReportingManager{
- cfg: cfg,
- model: m,
- }
- // Start UR if it's enabled.
- mgr.CommitConfiguration(config.Configuration{}, cfg.RawCopy())
- // Listen to future config changes so that we can start and stop as
- // appropriate.
- cfg.Subscribe(mgr)
- return mgr
- }
- func (m *usageReportingManager) VerifyConfiguration(from, to config.Configuration) error {
- return nil
- }
- func (m *usageReportingManager) CommitConfiguration(from, to config.Configuration) bool {
- if to.Options.URAccepted >= usageReportVersion && m.sup == nil {
- // Usage reporting was turned on; lets start it.
- service := newUsageReportingService(m.cfg, m.model)
- m.sup = suture.NewSimple("usageReporting")
- m.sup.Add(service)
- m.sup.ServeBackground()
- } else if to.Options.URAccepted < usageReportVersion && m.sup != nil {
- // Usage reporting was turned off
- m.sup.Stop()
- m.sup = nil
- }
- return true
- }
- func (m *usageReportingManager) String() string {
- return fmt.Sprintf("usageReportingManager@%p", m)
- }
- // reportData returns the data to be sent in a usage report. It's used in
- // various places, so not part of the usageReportingManager object.
- func reportData(cfg configIntf, m modelIntf) map[string]interface{} {
- opts := cfg.Options()
- res := make(map[string]interface{})
- res["urVersion"] = usageReportVersion
- res["uniqueID"] = opts.URUniqueID
- res["version"] = Version
- res["longVersion"] = LongVersion
- res["platform"] = runtime.GOOS + "-" + runtime.GOARCH
- res["numFolders"] = len(cfg.Folders())
- res["numDevices"] = len(cfg.Devices())
- var totFiles, maxFiles int
- var totBytes, maxBytes int64
- for folderID := range cfg.Folders() {
- global := m.GlobalSize(folderID)
- totFiles += global.Files
- totBytes += global.Bytes
- if global.Files > maxFiles {
- maxFiles = global.Files
- }
- if global.Bytes > maxBytes {
- maxBytes = global.Bytes
- }
- }
- res["totFiles"] = totFiles
- res["folderMaxFiles"] = maxFiles
- res["totMiB"] = totBytes / 1024 / 1024
- res["folderMaxMiB"] = maxBytes / 1024 / 1024
- var mem runtime.MemStats
- runtime.ReadMemStats(&mem)
- res["memoryUsageMiB"] = (mem.Sys - mem.HeapReleased) / 1024 / 1024
- res["sha256Perf"] = cpuBench(5, 125*time.Millisecond, false)
- res["hashPerf"] = cpuBench(5, 125*time.Millisecond, true)
- bytes, err := memorySize()
- if err == nil {
- res["memorySize"] = bytes / 1024 / 1024
- }
- res["numCPU"] = runtime.NumCPU()
- var rescanIntvs []int
- folderUses := map[string]int{
- "readonly": 0,
- "ignorePerms": 0,
- "ignoreDelete": 0,
- "autoNormalize": 0,
- "simpleVersioning": 0,
- "externalVersioning": 0,
- "staggeredVersioning": 0,
- "trashcanVersioning": 0,
- }
- for _, cfg := range cfg.Folders() {
- rescanIntvs = append(rescanIntvs, cfg.RescanIntervalS)
- if cfg.Type == config.FolderTypeSendOnly {
- folderUses["readonly"]++
- }
- if cfg.IgnorePerms {
- folderUses["ignorePerms"]++
- }
- if cfg.IgnoreDelete {
- folderUses["ignoreDelete"]++
- }
- if cfg.AutoNormalize {
- folderUses["autoNormalize"]++
- }
- if cfg.Versioning.Type != "" {
- folderUses[cfg.Versioning.Type+"Versioning"]++
- }
- }
- sort.Ints(rescanIntvs)
- res["rescanIntvs"] = rescanIntvs
- res["folderUses"] = folderUses
- deviceUses := map[string]int{
- "introducer": 0,
- "customCertName": 0,
- "compressAlways": 0,
- "compressMetadata": 0,
- "compressNever": 0,
- "dynamicAddr": 0,
- "staticAddr": 0,
- }
- for _, cfg := range cfg.Devices() {
- if cfg.Introducer {
- deviceUses["introducer"]++
- }
- if cfg.CertName != "" && cfg.CertName != "syncthing" {
- deviceUses["customCertName"]++
- }
- if cfg.Compression == protocol.CompressAlways {
- deviceUses["compressAlways"]++
- } else if cfg.Compression == protocol.CompressMetadata {
- deviceUses["compressMetadata"]++
- } else if cfg.Compression == protocol.CompressNever {
- deviceUses["compressNever"]++
- }
- for _, addr := range cfg.Addresses {
- if addr == "dynamic" {
- deviceUses["dynamicAddr"]++
- } else {
- deviceUses["staticAddr"]++
- }
- }
- }
- res["deviceUses"] = deviceUses
- defaultAnnounceServersDNS, defaultAnnounceServersIP, otherAnnounceServers := 0, 0, 0
- for _, addr := range opts.GlobalAnnServers {
- if addr == "default" || addr == "default-v4" || addr == "default-v6" {
- defaultAnnounceServersDNS++
- } else {
- otherAnnounceServers++
- }
- }
- res["announce"] = map[string]interface{}{
- "globalEnabled": opts.GlobalAnnEnabled,
- "localEnabled": opts.LocalAnnEnabled,
- "defaultServersDNS": defaultAnnounceServersDNS,
- "defaultServersIP": defaultAnnounceServersIP,
- "otherServers": otherAnnounceServers,
- }
- defaultRelayServers, otherRelayServers := 0, 0
- for _, addr := range cfg.ListenAddresses() {
- switch {
- case addr == "dynamic+https://relays.syncthing.net/endpoint":
- defaultRelayServers++
- case strings.HasPrefix(addr, "relay://") || strings.HasPrefix(addr, "dynamic+http"):
- otherRelayServers++
- }
- }
- res["relays"] = map[string]interface{}{
- "enabled": defaultRelayServers+otherAnnounceServers > 0,
- "defaultServers": defaultRelayServers,
- "otherServers": otherRelayServers,
- }
- res["usesRateLimit"] = opts.MaxRecvKbps > 0 || opts.MaxSendKbps > 0
- res["upgradeAllowedManual"] = !(upgrade.DisabledByCompilation || noUpgradeFromEnv)
- res["upgradeAllowedAuto"] = !(upgrade.DisabledByCompilation || noUpgradeFromEnv) && opts.AutoUpgradeIntervalH > 0
- res["upgradeAllowedPre"] = !(upgrade.DisabledByCompilation || noUpgradeFromEnv) && opts.AutoUpgradeIntervalH > 0 && opts.UpgradeToPreReleases
- return res
- }
- type usageReportingService struct {
- cfg *config.Wrapper
- model *model.Model
- stop chan struct{}
- }
- func newUsageReportingService(cfg *config.Wrapper, model *model.Model) *usageReportingService {
- return &usageReportingService{
- cfg: cfg,
- model: model,
- stop: make(chan struct{}),
- }
- }
- func (s *usageReportingService) sendUsageReport() error {
- d := reportData(s.cfg, s.model)
- var b bytes.Buffer
- json.NewEncoder(&b).Encode(d)
- client := &http.Client{
- Transport: &http.Transport{
- Dial: dialer.Dial,
- Proxy: http.ProxyFromEnvironment,
- TLSClientConfig: &tls.Config{
- InsecureSkipVerify: s.cfg.Options().URPostInsecurely,
- },
- },
- }
- _, err := client.Post(s.cfg.Options().URURL, "application/json", &b)
- return err
- }
- func (s *usageReportingService) Serve() {
- s.stop = make(chan struct{})
- l.Infoln("Starting usage reporting")
- defer l.Infoln("Stopping usage reporting")
- t := time.NewTimer(time.Duration(s.cfg.Options().URInitialDelayS) * time.Second) // time to initial report at start
- for {
- select {
- case <-s.stop:
- return
- case <-t.C:
- err := s.sendUsageReport()
- if err != nil {
- l.Infoln("Usage report:", err)
- }
- t.Reset(24 * time.Hour) // next report tomorrow
- }
- }
- }
- func (s *usageReportingService) Stop() {
- close(s.stop)
- }
- // cpuBench returns CPU performance as a measure of single threaded SHA-256 MiB/s
- func cpuBench(iterations int, duration time.Duration, useWeakHash bool) float64 {
- dataSize := 16 * protocol.BlockSize
- bs := make([]byte, dataSize)
- rand.Reader.Read(bs)
- var perf float64
- for i := 0; i < iterations; i++ {
- if v := cpuBenchOnce(duration, useWeakHash, bs); v > perf {
- perf = v
- }
- }
- blocksResult = nil
- return perf
- }
- var blocksResult []protocol.BlockInfo // so the result is not optimized away
- func cpuBenchOnce(duration time.Duration, useWeakHash bool, bs []byte) float64 {
- t0 := time.Now()
- b := 0
- for time.Since(t0) < duration {
- r := bytes.NewReader(bs)
- blocksResult, _ = scanner.Blocks(context.TODO(), r, protocol.BlockSize, int64(len(bs)), nil, useWeakHash)
- b += len(bs)
- }
- d := time.Since(t0)
- return float64(int(float64(b)/d.Seconds()/(1<<20)*100)) / 100
- }
|