2014-11-16 20:13:20 +00:00
|
|
|
// Copyright (C) 2014 The Syncthing Authors.
|
2014-09-29 19:43:32 +00:00
|
|
|
//
|
2015-03-07 20:36:35 +00:00
|
|
|
// 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/.
|
2014-09-04 06:31:38 +00:00
|
|
|
|
2019-03-26 19:53:58 +00:00
|
|
|
package ur
|
2014-06-11 18:04:23 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2017-04-26 00:15:23 +00:00
|
|
|
"context"
|
2014-06-11 18:04:23 +00:00
|
|
|
"crypto/rand"
|
2015-09-10 12:08:40 +00:00
|
|
|
"crypto/tls"
|
2014-06-11 18:04:23 +00:00
|
|
|
"encoding/json"
|
2017-10-15 07:45:15 +00:00
|
|
|
"net"
|
2014-06-11 18:04:23 +00:00
|
|
|
"net/http"
|
|
|
|
"runtime"
|
2015-09-06 14:36:09 +00:00
|
|
|
"sort"
|
2016-05-04 19:38:12 +00:00
|
|
|
"strings"
|
2018-11-07 10:05:07 +00:00
|
|
|
"sync"
|
2014-06-11 18:04:23 +00:00
|
|
|
"time"
|
|
|
|
|
2019-02-12 06:58:24 +00:00
|
|
|
"github.com/syncthing/syncthing/lib/build"
|
2015-08-06 09:29:25 +00:00
|
|
|
"github.com/syncthing/syncthing/lib/config"
|
2017-10-12 06:16:46 +00:00
|
|
|
"github.com/syncthing/syncthing/lib/connections"
|
2015-10-12 18:30:14 +00:00
|
|
|
"github.com/syncthing/syncthing/lib/dialer"
|
2015-08-06 09:29:25 +00:00
|
|
|
"github.com/syncthing/syncthing/lib/model"
|
2015-09-22 17:38:46 +00:00
|
|
|
"github.com/syncthing/syncthing/lib/protocol"
|
2017-01-23 21:56:43 +00:00
|
|
|
"github.com/syncthing/syncthing/lib/scanner"
|
2015-09-06 14:36:09 +00:00
|
|
|
"github.com/syncthing/syncthing/lib/upgrade"
|
2014-06-11 18:04:23 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// 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.
|
2019-03-26 19:53:58 +00:00
|
|
|
const Version = 3
|
2014-06-11 18:04:23 +00:00
|
|
|
|
2019-03-26 19:53:58 +00:00
|
|
|
var StartTime = time.Now()
|
|
|
|
|
|
|
|
type Service struct {
|
|
|
|
cfg config.Wrapper
|
|
|
|
model model.Model
|
|
|
|
connectionsService connections.Service
|
|
|
|
noUpgrade bool
|
|
|
|
forceRun chan struct{}
|
|
|
|
stop chan struct{}
|
|
|
|
stopped chan struct{}
|
|
|
|
stopMut sync.RWMutex
|
|
|
|
}
|
|
|
|
|
|
|
|
func New(cfg config.Wrapper, m model.Model, connectionsService connections.Service, noUpgrade bool) *Service {
|
|
|
|
svc := &Service{
|
|
|
|
cfg: cfg,
|
|
|
|
model: m,
|
|
|
|
connectionsService: connectionsService,
|
|
|
|
noUpgrade: noUpgrade,
|
|
|
|
forceRun: make(chan struct{}),
|
|
|
|
stop: make(chan struct{}),
|
|
|
|
stopped: make(chan struct{}),
|
|
|
|
}
|
|
|
|
close(svc.stopped) // Not yet running, dont block on Stop()
|
|
|
|
cfg.Subscribe(svc)
|
|
|
|
return svc
|
|
|
|
}
|
|
|
|
|
|
|
|
// ReportData returns the data to be sent in a usage report with the currently
|
|
|
|
// configured usage reporting version.
|
|
|
|
func (s *Service) ReportData() map[string]interface{} {
|
2019-06-11 06:19:11 +00:00
|
|
|
urVersion := s.cfg.Options().URAccepted
|
|
|
|
return s.reportData(urVersion, false)
|
2019-03-26 19:53:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ReportDataPreview returns a preview of the data to be sent in a usage report
|
|
|
|
// with the given version.
|
|
|
|
func (s *Service) ReportDataPreview(urVersion int) map[string]interface{} {
|
|
|
|
return s.reportData(urVersion, true)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Service) reportData(urVersion int, preview bool) map[string]interface{} {
|
|
|
|
opts := s.cfg.Options()
|
2014-06-11 18:04:23 +00:00
|
|
|
res := make(map[string]interface{})
|
2019-03-26 19:53:58 +00:00
|
|
|
res["urVersion"] = urVersion
|
2017-01-30 21:33:07 +00:00
|
|
|
res["uniqueID"] = opts.URUniqueID
|
2019-02-12 06:58:24 +00:00
|
|
|
res["version"] = build.Version
|
|
|
|
res["longVersion"] = build.LongVersion
|
2014-06-11 18:04:23 +00:00
|
|
|
res["platform"] = runtime.GOOS + "-" + runtime.GOARCH
|
2019-03-26 19:53:58 +00:00
|
|
|
res["numFolders"] = len(s.cfg.Folders())
|
|
|
|
res["numDevices"] = len(s.cfg.Devices())
|
2014-06-11 18:04:23 +00:00
|
|
|
|
|
|
|
var totFiles, maxFiles int
|
|
|
|
var totBytes, maxBytes int64
|
2019-03-26 19:53:58 +00:00
|
|
|
for folderID := range s.cfg.Folders() {
|
|
|
|
global := s.model.GlobalSize(folderID)
|
2017-12-14 09:51:17 +00:00
|
|
|
totFiles += int(global.Files)
|
2016-10-17 12:10:17 +00:00
|
|
|
totBytes += global.Bytes
|
2017-12-14 09:51:17 +00:00
|
|
|
if int(global.Files) > maxFiles {
|
|
|
|
maxFiles = int(global.Files)
|
2014-06-11 18:04:23 +00:00
|
|
|
}
|
2016-10-17 12:10:17 +00:00
|
|
|
if global.Bytes > maxBytes {
|
|
|
|
maxBytes = global.Bytes
|
2014-06-11 18:04:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
res["totFiles"] = totFiles
|
2014-09-28 11:00:38 +00:00
|
|
|
res["folderMaxFiles"] = maxFiles
|
2014-06-11 18:04:23 +00:00
|
|
|
res["totMiB"] = totBytes / 1024 / 1024
|
2014-09-28 11:00:38 +00:00
|
|
|
res["folderMaxMiB"] = maxBytes / 1024 / 1024
|
2014-06-11 18:04:23 +00:00
|
|
|
|
|
|
|
var mem runtime.MemStats
|
|
|
|
runtime.ReadMemStats(&mem)
|
2014-08-05 21:13:55 +00:00
|
|
|
res["memoryUsageMiB"] = (mem.Sys - mem.HeapReleased) / 1024 / 1024
|
2019-03-26 19:53:58 +00:00
|
|
|
res["sha256Perf"] = CpuBench(5, 125*time.Millisecond, false)
|
|
|
|
res["hashPerf"] = CpuBench(5, 125*time.Millisecond, true)
|
2014-06-11 18:04:23 +00:00
|
|
|
|
2014-06-12 18:47:46 +00:00
|
|
|
bytes, err := memorySize()
|
|
|
|
if err == nil {
|
|
|
|
res["memorySize"] = bytes / 1024 / 1024
|
|
|
|
}
|
2015-09-06 14:36:09 +00:00
|
|
|
res["numCPU"] = runtime.NumCPU()
|
|
|
|
|
|
|
|
var rescanIntvs []int
|
|
|
|
folderUses := map[string]int{
|
2018-05-13 07:58:00 +00:00
|
|
|
"sendonly": 0,
|
|
|
|
"sendreceive": 0,
|
2018-09-09 11:55:19 +00:00
|
|
|
"receiveonly": 0,
|
2016-02-13 07:18:40 +00:00
|
|
|
"ignorePerms": 0,
|
|
|
|
"ignoreDelete": 0,
|
|
|
|
"autoNormalize": 0,
|
|
|
|
"simpleVersioning": 0,
|
|
|
|
"externalVersioning": 0,
|
|
|
|
"staggeredVersioning": 0,
|
|
|
|
"trashcanVersioning": 0,
|
2015-09-06 14:36:09 +00:00
|
|
|
}
|
2019-03-26 19:53:58 +00:00
|
|
|
for _, cfg := range s.cfg.Folders() {
|
2015-09-06 14:36:09 +00:00
|
|
|
rescanIntvs = append(rescanIntvs, cfg.RescanIntervalS)
|
|
|
|
|
2018-05-13 07:58:00 +00:00
|
|
|
switch cfg.Type {
|
|
|
|
case config.FolderTypeSendOnly:
|
|
|
|
folderUses["sendonly"]++
|
|
|
|
case config.FolderTypeSendReceive:
|
|
|
|
folderUses["sendreceive"]++
|
2018-09-09 11:55:19 +00:00
|
|
|
case config.FolderTypeReceiveOnly:
|
|
|
|
folderUses["receiveonly"]++
|
2015-09-06 14:36:09 +00:00
|
|
|
}
|
|
|
|
if cfg.IgnorePerms {
|
|
|
|
folderUses["ignorePerms"]++
|
|
|
|
}
|
|
|
|
if cfg.IgnoreDelete {
|
|
|
|
folderUses["ignoreDelete"]++
|
|
|
|
}
|
|
|
|
if cfg.AutoNormalize {
|
|
|
|
folderUses["autoNormalize"]++
|
|
|
|
}
|
2016-02-13 07:18:40 +00:00
|
|
|
if cfg.Versioning.Type != "" {
|
|
|
|
folderUses[cfg.Versioning.Type+"Versioning"]++
|
|
|
|
}
|
2015-09-06 14:36:09 +00:00
|
|
|
}
|
|
|
|
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,
|
|
|
|
}
|
2019-03-26 19:53:58 +00:00
|
|
|
for _, cfg := range s.cfg.Devices() {
|
2015-09-06 14:36:09 +00:00
|
|
|
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
|
2017-01-30 21:33:07 +00:00
|
|
|
for _, addr := range opts.GlobalAnnServers {
|
2015-11-09 14:35:14 +00:00
|
|
|
if addr == "default" || addr == "default-v4" || addr == "default-v6" {
|
2015-09-06 14:36:09 +00:00
|
|
|
defaultAnnounceServersDNS++
|
2015-09-21 08:54:21 +00:00
|
|
|
} else {
|
2015-09-06 14:36:09 +00:00
|
|
|
otherAnnounceServers++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
res["announce"] = map[string]interface{}{
|
2017-01-30 21:33:07 +00:00
|
|
|
"globalEnabled": opts.GlobalAnnEnabled,
|
|
|
|
"localEnabled": opts.LocalAnnEnabled,
|
2015-09-06 14:36:09 +00:00
|
|
|
"defaultServersDNS": defaultAnnounceServersDNS,
|
|
|
|
"defaultServersIP": defaultAnnounceServersIP,
|
|
|
|
"otherServers": otherAnnounceServers,
|
|
|
|
}
|
|
|
|
|
2015-09-06 19:15:46 +00:00
|
|
|
defaultRelayServers, otherRelayServers := 0, 0
|
2019-03-26 19:53:58 +00:00
|
|
|
for _, addr := range s.cfg.ListenAddresses() {
|
2016-05-04 19:38:12 +00:00
|
|
|
switch {
|
|
|
|
case addr == "dynamic+https://relays.syncthing.net/endpoint":
|
2015-09-06 19:15:46 +00:00
|
|
|
defaultRelayServers++
|
2016-05-04 19:38:12 +00:00
|
|
|
case strings.HasPrefix(addr, "relay://") || strings.HasPrefix(addr, "dynamic+http"):
|
2015-09-06 19:15:46 +00:00
|
|
|
otherRelayServers++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
res["relays"] = map[string]interface{}{
|
2016-05-04 19:38:12 +00:00
|
|
|
"enabled": defaultRelayServers+otherAnnounceServers > 0,
|
2015-09-06 19:15:46 +00:00
|
|
|
"defaultServers": defaultRelayServers,
|
|
|
|
"otherServers": otherRelayServers,
|
|
|
|
}
|
|
|
|
|
2017-01-30 21:33:07 +00:00
|
|
|
res["usesRateLimit"] = opts.MaxRecvKbps > 0 || opts.MaxSendKbps > 0
|
2015-09-06 14:36:09 +00:00
|
|
|
|
2019-03-26 19:53:58 +00:00
|
|
|
res["upgradeAllowedManual"] = !(upgrade.DisabledByCompilation || s.noUpgrade)
|
|
|
|
res["upgradeAllowedAuto"] = !(upgrade.DisabledByCompilation || s.noUpgrade) && opts.AutoUpgradeIntervalH > 0
|
|
|
|
res["upgradeAllowedPre"] = !(upgrade.DisabledByCompilation || s.noUpgrade) && opts.AutoUpgradeIntervalH > 0 && opts.UpgradeToPreReleases
|
2014-06-12 18:47:46 +00:00
|
|
|
|
2019-03-26 19:53:58 +00:00
|
|
|
if urVersion >= 3 {
|
|
|
|
res["uptime"] = s.UptimeS()
|
|
|
|
res["natType"] = s.connectionsService.NATType()
|
2017-10-15 07:45:15 +00:00
|
|
|
res["alwaysLocalNets"] = len(opts.AlwaysLocalNets) > 0
|
|
|
|
res["cacheIgnoredFiles"] = opts.CacheIgnoredFiles
|
|
|
|
res["overwriteRemoteDeviceNames"] = opts.OverwriteRemoteDevNames
|
|
|
|
res["progressEmitterEnabled"] = opts.ProgressUpdateIntervalS > -1
|
|
|
|
res["customDefaultFolderPath"] = opts.DefaultFolderPath != "~"
|
|
|
|
res["customTrafficClass"] = opts.TrafficClass != 0
|
|
|
|
res["customTempIndexMinBlocks"] = opts.TempIndexMinBlocks != 10
|
|
|
|
res["temporariesDisabled"] = opts.KeepTemporariesH == 0
|
|
|
|
res["temporariesCustom"] = opts.KeepTemporariesH != 24
|
|
|
|
res["limitBandwidthInLan"] = opts.LimitBandwidthInLan
|
|
|
|
res["customReleaseURL"] = opts.ReleasesURL != "https://upgrades.syncthing.net/meta.json"
|
|
|
|
res["restartOnWakeup"] = opts.RestartOnWakeup
|
|
|
|
|
|
|
|
folderUsesV3 := map[string]int{
|
|
|
|
"scanProgressDisabled": 0,
|
|
|
|
"conflictsDisabled": 0,
|
|
|
|
"conflictsUnlimited": 0,
|
|
|
|
"conflictsOther": 0,
|
|
|
|
"disableSparseFiles": 0,
|
|
|
|
"disableTempIndexes": 0,
|
|
|
|
"alwaysWeakHash": 0,
|
|
|
|
"customWeakHashThreshold": 0,
|
2017-10-20 16:25:20 +00:00
|
|
|
"fsWatcherEnabled": 0,
|
2017-10-15 07:45:15 +00:00
|
|
|
}
|
|
|
|
pullOrder := make(map[string]int)
|
|
|
|
filesystemType := make(map[string]int)
|
2017-10-20 16:25:20 +00:00
|
|
|
var fsWatcherDelays []int
|
2019-03-26 19:53:58 +00:00
|
|
|
for _, cfg := range s.cfg.Folders() {
|
2017-10-15 07:45:15 +00:00
|
|
|
if cfg.ScanProgressIntervalS < 0 {
|
|
|
|
folderUsesV3["scanProgressDisabled"]++
|
|
|
|
}
|
|
|
|
if cfg.MaxConflicts == 0 {
|
|
|
|
folderUsesV3["conflictsDisabled"]++
|
|
|
|
} else if cfg.MaxConflicts < 0 {
|
|
|
|
folderUsesV3["conflictsUnlimited"]++
|
|
|
|
} else {
|
|
|
|
folderUsesV3["conflictsOther"]++
|
|
|
|
}
|
|
|
|
if cfg.DisableSparseFiles {
|
|
|
|
folderUsesV3["disableSparseFiles"]++
|
|
|
|
}
|
|
|
|
if cfg.DisableTempIndexes {
|
|
|
|
folderUsesV3["disableTempIndexes"]++
|
|
|
|
}
|
|
|
|
if cfg.WeakHashThresholdPct < 0 {
|
|
|
|
folderUsesV3["alwaysWeakHash"]++
|
|
|
|
} else if cfg.WeakHashThresholdPct != 25 {
|
|
|
|
folderUsesV3["customWeakHashThreshold"]++
|
|
|
|
}
|
2017-10-20 16:25:20 +00:00
|
|
|
if cfg.FSWatcherEnabled {
|
|
|
|
folderUsesV3["fsWatcherEnabled"]++
|
|
|
|
}
|
2017-10-15 07:45:15 +00:00
|
|
|
pullOrder[cfg.Order.String()]++
|
|
|
|
filesystemType[cfg.FilesystemType.String()]++
|
2017-10-20 16:25:20 +00:00
|
|
|
fsWatcherDelays = append(fsWatcherDelays, cfg.FSWatcherDelayS)
|
2017-10-15 07:45:15 +00:00
|
|
|
}
|
2017-10-20 16:25:20 +00:00
|
|
|
sort.Ints(fsWatcherDelays)
|
2017-10-15 07:45:15 +00:00
|
|
|
folderUsesV3Interface := map[string]interface{}{
|
2017-10-20 16:25:20 +00:00
|
|
|
"pullOrder": pullOrder,
|
|
|
|
"filesystemType": filesystemType,
|
|
|
|
"fsWatcherDelays": fsWatcherDelays,
|
2017-10-15 07:45:15 +00:00
|
|
|
}
|
|
|
|
for key, value := range folderUsesV3 {
|
|
|
|
folderUsesV3Interface[key] = value
|
|
|
|
}
|
|
|
|
res["folderUsesV3"] = folderUsesV3Interface
|
|
|
|
|
2019-03-26 19:53:58 +00:00
|
|
|
guiCfg := s.cfg.GUI()
|
2017-10-15 07:45:15 +00:00
|
|
|
// Anticipate multiple GUI configs in the future, hence store counts.
|
|
|
|
guiStats := map[string]int{
|
|
|
|
"enabled": 0,
|
|
|
|
"useTLS": 0,
|
|
|
|
"useAuth": 0,
|
|
|
|
"insecureAdminAccess": 0,
|
|
|
|
"debugging": 0,
|
|
|
|
"insecureSkipHostCheck": 0,
|
|
|
|
"insecureAllowFrameLoading": 0,
|
|
|
|
"listenLocal": 0,
|
|
|
|
"listenUnspecified": 0,
|
|
|
|
}
|
|
|
|
theme := make(map[string]int)
|
|
|
|
if guiCfg.Enabled {
|
|
|
|
guiStats["enabled"]++
|
|
|
|
if guiCfg.UseTLS() {
|
|
|
|
guiStats["useTLS"]++
|
|
|
|
}
|
|
|
|
if len(guiCfg.User) > 0 && len(guiCfg.Password) > 0 {
|
|
|
|
guiStats["useAuth"]++
|
|
|
|
}
|
|
|
|
if guiCfg.InsecureAdminAccess {
|
|
|
|
guiStats["insecureAdminAccess"]++
|
|
|
|
}
|
|
|
|
if guiCfg.Debugging {
|
|
|
|
guiStats["debugging"]++
|
|
|
|
}
|
|
|
|
if guiCfg.InsecureSkipHostCheck {
|
|
|
|
guiStats["insecureSkipHostCheck"]++
|
|
|
|
}
|
|
|
|
if guiCfg.InsecureAllowFrameLoading {
|
|
|
|
guiStats["insecureAllowFrameLoading"]++
|
|
|
|
}
|
|
|
|
|
|
|
|
addr, err := net.ResolveTCPAddr("tcp", guiCfg.Address())
|
|
|
|
if err == nil {
|
|
|
|
if addr.IP.IsLoopback() {
|
|
|
|
guiStats["listenLocal"]++
|
|
|
|
} else if addr.IP.IsUnspecified() {
|
|
|
|
guiStats["listenUnspecified"]++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
theme[guiCfg.Theme]++
|
|
|
|
}
|
|
|
|
guiStatsInterface := map[string]interface{}{
|
|
|
|
"theme": theme,
|
|
|
|
}
|
|
|
|
for key, value := range guiStats {
|
|
|
|
guiStatsInterface[key] = value
|
|
|
|
}
|
|
|
|
res["guiStats"] = guiStatsInterface
|
2017-10-12 06:16:46 +00:00
|
|
|
}
|
|
|
|
|
2019-03-26 19:53:58 +00:00
|
|
|
for key, value := range s.model.UsageReportingStats(urVersion, preview) {
|
2017-10-12 06:16:46 +00:00
|
|
|
res[key] = value
|
|
|
|
}
|
|
|
|
|
2014-06-11 18:04:23 +00:00
|
|
|
return res
|
|
|
|
}
|
|
|
|
|
2019-03-26 19:53:58 +00:00
|
|
|
func (s *Service) UptimeS() int {
|
|
|
|
return int(time.Since(StartTime).Seconds())
|
2015-09-29 18:05:22 +00:00
|
|
|
}
|
|
|
|
|
2019-03-26 19:53:58 +00:00
|
|
|
func (s *Service) sendUsageReport() error {
|
|
|
|
d := s.ReportData()
|
2014-06-11 18:04:23 +00:00
|
|
|
var b bytes.Buffer
|
2019-02-02 09:11:42 +00:00
|
|
|
if err := json.NewEncoder(&b).Encode(d); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2014-06-11 23:05:00 +00:00
|
|
|
|
2015-11-24 19:46:07 +00:00
|
|
|
client := &http.Client{
|
|
|
|
Transport: &http.Transport{
|
|
|
|
Dial: dialer.Dial,
|
|
|
|
Proxy: http.ProxyFromEnvironment,
|
|
|
|
TLSClientConfig: &tls.Config{
|
|
|
|
InsecureSkipVerify: s.cfg.Options().URPostInsecurely,
|
|
|
|
},
|
|
|
|
},
|
2015-09-10 12:08:40 +00:00
|
|
|
}
|
2015-09-29 18:05:22 +00:00
|
|
|
_, err := client.Post(s.cfg.Options().URURL, "application/json", &b)
|
2014-06-11 18:04:23 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-03-26 19:53:58 +00:00
|
|
|
func (s *Service) Serve() {
|
2018-11-07 10:05:07 +00:00
|
|
|
s.stopMut.Lock()
|
2015-05-12 07:35:37 +00:00
|
|
|
s.stop = make(chan struct{})
|
2018-11-07 10:05:07 +00:00
|
|
|
s.stopped = make(chan struct{})
|
|
|
|
s.stopMut.Unlock()
|
2017-10-12 06:16:46 +00:00
|
|
|
t := time.NewTimer(time.Duration(s.cfg.Options().URInitialDelayS) * time.Second)
|
2018-11-07 10:05:07 +00:00
|
|
|
s.stopMut.RLock()
|
|
|
|
defer func() {
|
|
|
|
close(s.stopped)
|
|
|
|
s.stopMut.RUnlock()
|
|
|
|
}()
|
2014-06-11 18:04:23 +00:00
|
|
|
for {
|
|
|
|
select {
|
2015-05-12 07:35:37 +00:00
|
|
|
case <-s.stop:
|
|
|
|
return
|
2017-10-12 06:16:46 +00:00
|
|
|
case <-s.forceRun:
|
|
|
|
t.Reset(0)
|
2014-06-11 18:04:23 +00:00
|
|
|
case <-t.C:
|
2017-10-12 06:16:46 +00:00
|
|
|
if s.cfg.Options().URAccepted >= 2 {
|
|
|
|
err := s.sendUsageReport()
|
|
|
|
if err != nil {
|
|
|
|
l.Infoln("Usage report:", err)
|
|
|
|
} else {
|
|
|
|
l.Infof("Sent usage report (version %d)", s.cfg.Options().URAccepted)
|
|
|
|
}
|
2014-06-11 23:05:00 +00:00
|
|
|
}
|
2015-05-12 07:35:37 +00:00
|
|
|
t.Reset(24 * time.Hour) // next report tomorrow
|
2014-06-11 18:04:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-26 19:53:58 +00:00
|
|
|
func (s *Service) VerifyConfiguration(from, to config.Configuration) error {
|
2017-10-12 06:16:46 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-03-26 19:53:58 +00:00
|
|
|
func (s *Service) CommitConfiguration(from, to config.Configuration) bool {
|
2017-10-12 06:16:46 +00:00
|
|
|
if from.Options.URAccepted != to.Options.URAccepted || from.Options.URUniqueID != to.Options.URUniqueID || from.Options.URURL != to.Options.URURL {
|
2018-11-07 10:05:07 +00:00
|
|
|
s.stopMut.RLock()
|
|
|
|
select {
|
|
|
|
case s.forceRun <- struct{}{}:
|
|
|
|
case <-s.stop:
|
|
|
|
}
|
|
|
|
s.stopMut.RUnlock()
|
2017-10-12 06:16:46 +00:00
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2019-03-26 19:53:58 +00:00
|
|
|
func (s *Service) Stop() {
|
2018-11-07 10:05:07 +00:00
|
|
|
s.stopMut.RLock()
|
2015-05-12 07:35:37 +00:00
|
|
|
close(s.stop)
|
2018-11-07 10:05:07 +00:00
|
|
|
<-s.stopped
|
|
|
|
s.stopMut.RUnlock()
|
2017-10-12 06:16:46 +00:00
|
|
|
}
|
|
|
|
|
2019-03-26 19:53:58 +00:00
|
|
|
func (*Service) String() string {
|
|
|
|
return "ur.Service"
|
2014-06-11 18:04:23 +00:00
|
|
|
}
|
|
|
|
|
2019-03-26 19:53:58 +00:00
|
|
|
// CpuBench returns CPU performance as a measure of single threaded SHA-256 MiB/s
|
|
|
|
func CpuBench(iterations int, duration time.Duration, useWeakHash bool) float64 {
|
2018-04-16 18:08:50 +00:00
|
|
|
dataSize := 16 * protocol.MinBlockSize
|
2017-02-06 12:42:39 +00:00
|
|
|
bs := make([]byte, dataSize)
|
2019-02-02 11:16:27 +00:00
|
|
|
rand.Reader.Read(bs)
|
2017-02-06 12:42:39 +00:00
|
|
|
|
2015-10-20 06:27:22 +00:00
|
|
|
var perf float64
|
|
|
|
for i := 0; i < iterations; i++ {
|
2017-02-06 12:42:39 +00:00
|
|
|
if v := cpuBenchOnce(duration, useWeakHash, bs); v > perf {
|
2015-10-20 06:27:22 +00:00
|
|
|
perf = v
|
|
|
|
}
|
|
|
|
}
|
2017-01-23 21:56:43 +00:00
|
|
|
blocksResult = nil
|
2015-10-20 06:27:22 +00:00
|
|
|
return perf
|
|
|
|
}
|
|
|
|
|
2017-01-23 21:56:43 +00:00
|
|
|
var blocksResult []protocol.BlockInfo // so the result is not optimized away
|
|
|
|
|
2017-02-06 12:42:39 +00:00
|
|
|
func cpuBenchOnce(duration time.Duration, useWeakHash bool, bs []byte) float64 {
|
2014-06-11 18:04:23 +00:00
|
|
|
t0 := time.Now()
|
|
|
|
b := 0
|
2015-10-20 06:27:22 +00:00
|
|
|
for time.Since(t0) < duration {
|
2017-01-23 21:56:43 +00:00
|
|
|
r := bytes.NewReader(bs)
|
2018-04-16 18:08:50 +00:00
|
|
|
blocksResult, _ = scanner.Blocks(context.TODO(), r, protocol.MinBlockSize, int64(len(bs)), nil, useWeakHash)
|
2017-02-06 12:42:39 +00:00
|
|
|
b += len(bs)
|
2014-06-11 18:04:23 +00:00
|
|
|
}
|
|
|
|
d := time.Since(t0)
|
|
|
|
return float64(int(float64(b)/d.Seconds()/(1<<20)*100)) / 100
|
|
|
|
}
|