| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085 |
- // 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 http://mozilla.org/MPL/2.0/.
- package model
- import (
- "bufio"
- "crypto/tls"
- "encoding/json"
- "errors"
- "fmt"
- "io"
- "net"
- "os"
- "path/filepath"
- "reflect"
- "runtime"
- "strings"
- stdsync "sync"
- "time"
- "github.com/syncthing/syncthing/lib/config"
- "github.com/syncthing/syncthing/lib/db"
- "github.com/syncthing/syncthing/lib/events"
- "github.com/syncthing/syncthing/lib/ignore"
- "github.com/syncthing/syncthing/lib/osutil"
- "github.com/syncthing/syncthing/lib/protocol"
- "github.com/syncthing/syncthing/lib/scanner"
- "github.com/syncthing/syncthing/lib/stats"
- "github.com/syncthing/syncthing/lib/symlinks"
- "github.com/syncthing/syncthing/lib/sync"
- "github.com/syncthing/syncthing/lib/versioner"
- "github.com/thejerf/suture"
- )
- // How many files to send in each Index/IndexUpdate message.
- const (
- indexTargetSize = 250 * 1024 // Aim for making index messages no larger than 250 KiB (uncompressed)
- indexPerFileSize = 250 // Each FileInfo is approximately this big, in bytes, excluding BlockInfos
- indexPerBlockSize = 40 // Each BlockInfo is approximately this big
- indexBatchSize = 1000 // Either way, don't include more files than this
- )
- type service interface {
- Serve()
- Stop()
- Jobs() ([]string, []string) // In progress, Queued
- BringToFront(string)
- DelayScan(d time.Duration)
- IndexUpdated() // Remote index was updated notification
- Scan(subs []string) error
- setState(state folderState)
- setError(err error)
- clearError()
- getState() (folderState, time.Time, error)
- }
- type Model struct {
- *suture.Supervisor
- cfg *config.Wrapper
- db *db.Instance
- finder *db.BlockFinder
- progressEmitter *ProgressEmitter
- id protocol.DeviceID
- shortID protocol.ShortID
- cacheIgnoredFiles bool
- protectedFiles []string
- deviceName string
- clientName string
- clientVersion string
- folderCfgs map[string]config.FolderConfiguration // folder -> cfg
- folderFiles map[string]*db.FileSet // folder -> files
- folderDevices map[string][]protocol.DeviceID // folder -> deviceIDs
- deviceFolders map[protocol.DeviceID][]string // deviceID -> folders
- deviceStatRefs map[protocol.DeviceID]*stats.DeviceStatisticsReference // deviceID -> statsRef
- folderIgnores map[string]*ignore.Matcher // folder -> matcher object
- folderRunners map[string]service // folder -> puller or scanner
- folderRunnerTokens map[string][]suture.ServiceToken // folder -> tokens for puller or scanner
- folderStatRefs map[string]*stats.FolderStatisticsReference // folder -> statsRef
- fmut sync.RWMutex // protects the above
- conn map[protocol.DeviceID]Connection
- deviceVer map[protocol.DeviceID]string
- devicePaused map[protocol.DeviceID]bool
- pmut sync.RWMutex // protects the above
- }
- var (
- symlinkWarning = stdsync.Once{}
- )
- // NewModel creates and starts a new model. The model starts in read-only mode,
- // where it sends index information to connected peers and responds to requests
- // for file data without altering the local folder in any way.
- func NewModel(cfg *config.Wrapper, id protocol.DeviceID, deviceName, clientName, clientVersion string, ldb *db.Instance, protectedFiles []string) *Model {
- m := &Model{
- Supervisor: suture.New("model", suture.Spec{
- Log: func(line string) {
- l.Debugln(line)
- },
- }),
- cfg: cfg,
- db: ldb,
- finder: db.NewBlockFinder(ldb),
- progressEmitter: NewProgressEmitter(cfg),
- id: id,
- shortID: id.Short(),
- cacheIgnoredFiles: cfg.Options().CacheIgnoredFiles,
- protectedFiles: protectedFiles,
- deviceName: deviceName,
- clientName: clientName,
- clientVersion: clientVersion,
- folderCfgs: make(map[string]config.FolderConfiguration),
- folderFiles: make(map[string]*db.FileSet),
- folderDevices: make(map[string][]protocol.DeviceID),
- deviceFolders: make(map[protocol.DeviceID][]string),
- deviceStatRefs: make(map[protocol.DeviceID]*stats.DeviceStatisticsReference),
- folderIgnores: make(map[string]*ignore.Matcher),
- folderRunners: make(map[string]service),
- folderRunnerTokens: make(map[string][]suture.ServiceToken),
- folderStatRefs: make(map[string]*stats.FolderStatisticsReference),
- conn: make(map[protocol.DeviceID]Connection),
- deviceVer: make(map[protocol.DeviceID]string),
- devicePaused: make(map[protocol.DeviceID]bool),
- fmut: sync.NewRWMutex(),
- pmut: sync.NewRWMutex(),
- }
- if cfg.Options().ProgressUpdateIntervalS > -1 {
- go m.progressEmitter.Serve()
- }
- return m
- }
- // StartDeadlockDetector starts a deadlock detector on the models locks which
- // causes panics in case the locks cannot be acquired in the given timeout
- // period.
- func (m *Model) StartDeadlockDetector(timeout time.Duration) {
- l.Infof("Starting deadlock detector with %v timeout", timeout)
- deadlockDetect(m.fmut, timeout)
- deadlockDetect(m.pmut, timeout)
- }
- // StartFolderRW starts read/write processing on the current model. When in
- // read/write mode the model will attempt to keep in sync with the cluster by
- // pulling needed files from peer devices.
- func (m *Model) StartFolderRW(folder string) {
- m.fmut.Lock()
- cfg, ok := m.folderCfgs[folder]
- if !ok {
- panic("cannot start nonexistent folder " + folder)
- }
- _, ok = m.folderRunners[folder]
- if ok {
- panic("cannot start already running folder " + folder)
- }
- p := newRWFolder(m, m.shortID, cfg)
- m.folderRunners[folder] = p
- if len(cfg.Versioning.Type) > 0 {
- factory, ok := versioner.Factories[cfg.Versioning.Type]
- if !ok {
- l.Fatalf("Requested versioning type %q that does not exist", cfg.Versioning.Type)
- }
- versioner := factory(folder, cfg.Path(), cfg.Versioning.Params)
- if service, ok := versioner.(suture.Service); ok {
- // The versioner implements the suture.Service interface, so
- // expects to be run in the background in addition to being called
- // when files are going to be archived.
- token := m.Add(service)
- m.folderRunnerTokens[folder] = append(m.folderRunnerTokens[folder], token)
- }
- p.versioner = versioner
- }
- m.warnAboutOverwritingProtectedFiles(folder)
- token := m.Add(p)
- m.folderRunnerTokens[folder] = append(m.folderRunnerTokens[folder], token)
- m.fmut.Unlock()
- l.Infoln("Ready to synchronize", folder, "(read-write)")
- }
- func (m *Model) warnAboutOverwritingProtectedFiles(folder string) {
- if m.folderCfgs[folder].ReadOnly {
- return
- }
- folderLocation := m.folderCfgs[folder].Path()
- ignores := m.folderIgnores[folder]
- var filesAtRisk []string
- for _, protectedFilePath := range m.protectedFiles {
- // check if file is synced in this folder
- if !strings.HasPrefix(protectedFilePath, folderLocation) {
- continue
- }
- // check if file is ignored
- if ignores.Match(protectedFilePath) {
- continue
- }
- filesAtRisk = append(filesAtRisk, protectedFilePath)
- }
- if len(filesAtRisk) > 0 {
- l.Warnln("Some protected files may be overwritten and cause issues. See http://docs.syncthing.net/users/config.html#syncing-configuration-files for more information. The at risk files are:", strings.Join(filesAtRisk, ", "))
- }
- }
- // StartFolderRO starts read only processing on the current model. When in
- // read only mode the model will announce files to the cluster but not pull in
- // any external changes.
- func (m *Model) StartFolderRO(folder string) {
- m.fmut.Lock()
- cfg, ok := m.folderCfgs[folder]
- if !ok {
- panic("cannot start nonexistent folder " + folder)
- }
- _, ok = m.folderRunners[folder]
- if ok {
- panic("cannot start already running folder " + folder)
- }
- s := newROFolder(m, folder, time.Duration(cfg.RescanIntervalS)*time.Second)
- m.folderRunners[folder] = s
- token := m.Add(s)
- m.folderRunnerTokens[folder] = append(m.folderRunnerTokens[folder], token)
- m.fmut.Unlock()
- l.Infoln("Ready to synchronize", folder, "(read only; no external updates accepted)")
- }
- func (m *Model) RemoveFolder(folder string) {
- m.fmut.Lock()
- m.pmut.Lock()
- // Stop the services running for this folder
- for _, id := range m.folderRunnerTokens[folder] {
- m.Remove(id)
- }
- // Close connections to affected devices
- for _, dev := range m.folderDevices[folder] {
- if conn, ok := m.conn[dev]; ok {
- closeRawConn(conn)
- }
- }
- // Clean up our config maps
- delete(m.folderCfgs, folder)
- delete(m.folderFiles, folder)
- delete(m.folderDevices, folder)
- delete(m.folderIgnores, folder)
- delete(m.folderRunners, folder)
- delete(m.folderRunnerTokens, folder)
- delete(m.folderStatRefs, folder)
- for dev, folders := range m.deviceFolders {
- m.deviceFolders[dev] = stringSliceWithout(folders, folder)
- }
- // Remove it from the database
- db.DropFolder(m.db, folder)
- m.pmut.Unlock()
- m.fmut.Unlock()
- }
- type ConnectionInfo struct {
- protocol.Statistics
- Connected bool
- Paused bool
- Address string
- ClientVersion string
- Type ConnectionType
- }
- func (info ConnectionInfo) MarshalJSON() ([]byte, error) {
- return json.Marshal(map[string]interface{}{
- "at": info.At,
- "inBytesTotal": info.InBytesTotal,
- "outBytesTotal": info.OutBytesTotal,
- "connected": info.Connected,
- "paused": info.Paused,
- "address": info.Address,
- "clientVersion": info.ClientVersion,
- "type": info.Type.String(),
- })
- }
- // ConnectionStats returns a map with connection statistics for each device.
- func (m *Model) ConnectionStats() map[string]interface{} {
- type remoteAddrer interface {
- RemoteAddr() net.Addr
- }
- m.pmut.RLock()
- m.fmut.RLock()
- res := make(map[string]interface{})
- devs := m.cfg.Devices()
- conns := make(map[string]ConnectionInfo, len(devs))
- for device := range devs {
- ci := ConnectionInfo{
- ClientVersion: m.deviceVer[device],
- Paused: m.devicePaused[device],
- }
- if conn, ok := m.conn[device]; ok {
- ci.Type = conn.Type
- ci.Connected = ok
- ci.Statistics = conn.Statistics()
- if addr := conn.RemoteAddr(); addr != nil {
- ci.Address = addr.String()
- }
- }
- conns[device.String()] = ci
- }
- res["connections"] = conns
- m.fmut.RUnlock()
- m.pmut.RUnlock()
- in, out := protocol.TotalInOut()
- res["total"] = ConnectionInfo{
- Statistics: protocol.Statistics{
- At: time.Now(),
- InBytesTotal: in,
- OutBytesTotal: out,
- },
- }
- return res
- }
- // DeviceStatistics returns statistics about each device
- func (m *Model) DeviceStatistics() map[string]stats.DeviceStatistics {
- var res = make(map[string]stats.DeviceStatistics)
- for id := range m.cfg.Devices() {
- res[id.String()] = m.deviceStatRef(id).GetStatistics()
- }
- return res
- }
- // FolderStatistics returns statistics about each folder
- func (m *Model) FolderStatistics() map[string]stats.FolderStatistics {
- var res = make(map[string]stats.FolderStatistics)
- for id := range m.cfg.Folders() {
- res[id] = m.folderStatRef(id).GetStatistics()
- }
- return res
- }
- // Completion returns the completion status, in percent, for the given device
- // and folder.
- func (m *Model) Completion(device protocol.DeviceID, folder string) float64 {
- m.fmut.RLock()
- rf, ok := m.folderFiles[folder]
- m.fmut.RUnlock()
- if !ok {
- return 0 // Folder doesn't exist, so we hardly have any of it
- }
- _, _, tot := rf.GlobalSize()
- if tot == 0 {
- return 100 // Folder is empty, so we have all of it
- }
- var need int64
- rf.WithNeedTruncated(device, func(f db.FileIntf) bool {
- need += f.Size()
- return true
- })
- needRatio := float64(need) / float64(tot)
- completionPct := 100 * (1 - needRatio)
- l.Debugf("%v Completion(%s, %q): %f (%d / %d = %f)", m, device, folder, completionPct, need, tot, needRatio)
- return completionPct
- }
- func sizeOfFile(f db.FileIntf) (files, deleted int, bytes int64) {
- if !f.IsDeleted() {
- files++
- } else {
- deleted++
- }
- bytes += f.Size()
- return
- }
- // GlobalSize returns the number of files, deleted files and total bytes for all
- // files in the global model.
- func (m *Model) GlobalSize(folder string) (nfiles, deleted int, bytes int64) {
- m.fmut.RLock()
- defer m.fmut.RUnlock()
- if rf, ok := m.folderFiles[folder]; ok {
- nfiles, deleted, bytes = rf.GlobalSize()
- }
- return
- }
- // LocalSize returns the number of files, deleted files and total bytes for all
- // files in the local folder.
- func (m *Model) LocalSize(folder string) (nfiles, deleted int, bytes int64) {
- m.fmut.RLock()
- defer m.fmut.RUnlock()
- if rf, ok := m.folderFiles[folder]; ok {
- nfiles, deleted, bytes = rf.LocalSize()
- }
- return
- }
- // NeedSize returns the number and total size of currently needed files.
- func (m *Model) NeedSize(folder string) (nfiles int, bytes int64) {
- m.fmut.RLock()
- defer m.fmut.RUnlock()
- if rf, ok := m.folderFiles[folder]; ok {
- rf.WithNeedTruncated(protocol.LocalDeviceID, func(f db.FileIntf) bool {
- fs, de, by := sizeOfFile(f)
- nfiles += fs + de
- bytes += by
- return true
- })
- }
- bytes -= m.progressEmitter.BytesCompleted(folder)
- l.Debugf("%v NeedSize(%q): %d %d", m, folder, nfiles, bytes)
- return
- }
- // NeedFolderFiles returns paginated list of currently needed files in
- // progress, queued, and to be queued on next puller iteration, as well as the
- // total number of files currently needed.
- func (m *Model) NeedFolderFiles(folder string, page, perpage int) ([]db.FileInfoTruncated, []db.FileInfoTruncated, []db.FileInfoTruncated, int) {
- m.fmut.RLock()
- defer m.fmut.RUnlock()
- total := 0
- rf, ok := m.folderFiles[folder]
- if !ok {
- return nil, nil, nil, 0
- }
- var progress, queued, rest []db.FileInfoTruncated
- var seen map[string]struct{}
- skip := (page - 1) * perpage
- get := perpage
- runner, ok := m.folderRunners[folder]
- if ok {
- allProgressNames, allQueuedNames := runner.Jobs()
- var progressNames, queuedNames []string
- progressNames, skip, get = getChunk(allProgressNames, skip, get)
- queuedNames, skip, get = getChunk(allQueuedNames, skip, get)
- progress = make([]db.FileInfoTruncated, len(progressNames))
- queued = make([]db.FileInfoTruncated, len(queuedNames))
- seen = make(map[string]struct{}, len(progressNames)+len(queuedNames))
- for i, name := range progressNames {
- if f, ok := rf.GetGlobalTruncated(name); ok {
- progress[i] = f
- seen[name] = struct{}{}
- }
- }
- for i, name := range queuedNames {
- if f, ok := rf.GetGlobalTruncated(name); ok {
- queued[i] = f
- seen[name] = struct{}{}
- }
- }
- }
- rest = make([]db.FileInfoTruncated, 0, perpage)
- rf.WithNeedTruncated(protocol.LocalDeviceID, func(f db.FileIntf) bool {
- total++
- if skip > 0 {
- skip--
- return true
- }
- if get > 0 {
- ft := f.(db.FileInfoTruncated)
- if _, ok := seen[ft.Name]; !ok {
- rest = append(rest, ft)
- get--
- }
- }
- return true
- })
- return progress, queued, rest, total
- }
- // Index is called when a new device is connected and we receive their full index.
- // Implements the protocol.Model interface.
- func (m *Model) Index(deviceID protocol.DeviceID, folder string, fs []protocol.FileInfo, flags uint32, options []protocol.Option) {
- if flags != 0 {
- l.Warnln("protocol error: unknown flags 0x%x in Index message", flags)
- return
- }
- l.Debugf("IDX(in): %s %q: %d files", deviceID, folder, len(fs))
- if !m.folderSharedWith(folder, deviceID) {
- l.Debugf("Unexpected folder ID %q sent from device %q; ensure that the folder exists and that this device is selected under \"Share With\" in the folder configuration.", folder, deviceID)
- return
- }
- m.fmut.RLock()
- cfg := m.folderCfgs[folder]
- files, ok := m.folderFiles[folder]
- runner := m.folderRunners[folder]
- m.fmut.RUnlock()
- if runner != nil {
- // Runner may legitimately not be set if this is the "cleanup" Index
- // message at startup.
- defer runner.IndexUpdated()
- }
- if !ok {
- l.Fatalf("Index for nonexistant folder %q", folder)
- }
- fs = filterIndex(folder, fs, cfg.IgnoreDelete)
- files.Replace(deviceID, fs)
- events.Default.Log(events.RemoteIndexUpdated, map[string]interface{}{
- "device": deviceID.String(),
- "folder": folder,
- "items": len(fs),
- "version": files.LocalVersion(deviceID),
- })
- }
- // IndexUpdate is called for incremental updates to connected devices' indexes.
- // Implements the protocol.Model interface.
- func (m *Model) IndexUpdate(deviceID protocol.DeviceID, folder string, fs []protocol.FileInfo, flags uint32, options []protocol.Option) {
- if flags != 0 {
- l.Warnln("protocol error: unknown flags 0x%x in IndexUpdate message", flags)
- return
- }
- l.Debugf("%v IDXUP(in): %s / %q: %d files", m, deviceID, folder, len(fs))
- if !m.folderSharedWith(folder, deviceID) {
- l.Debugf("Update for unexpected folder ID %q sent from device %q; ensure that the folder exists and that this device is selected under \"Share With\" in the folder configuration.", folder, deviceID)
- return
- }
- m.fmut.RLock()
- files := m.folderFiles[folder]
- cfg := m.folderCfgs[folder]
- runner, ok := m.folderRunners[folder]
- m.fmut.RUnlock()
- if !ok {
- l.Fatalf("IndexUpdate for nonexistant folder %q", folder)
- }
- fs = filterIndex(folder, fs, cfg.IgnoreDelete)
- files.Update(deviceID, fs)
- events.Default.Log(events.RemoteIndexUpdated, map[string]interface{}{
- "device": deviceID.String(),
- "folder": folder,
- "items": len(fs),
- "version": files.LocalVersion(deviceID),
- })
- runner.IndexUpdated()
- }
- func (m *Model) folderSharedWith(folder string, deviceID protocol.DeviceID) bool {
- m.fmut.RLock()
- defer m.fmut.RUnlock()
- return m.folderSharedWithUnlocked(folder, deviceID)
- }
- func (m *Model) folderSharedWithUnlocked(folder string, deviceID protocol.DeviceID) bool {
- for _, nfolder := range m.deviceFolders[deviceID] {
- if nfolder == folder {
- return true
- }
- }
- return false
- }
- func (m *Model) ClusterConfig(deviceID protocol.DeviceID, cm protocol.ClusterConfigMessage) {
- m.pmut.Lock()
- if cm.ClientName == "syncthing" {
- m.deviceVer[deviceID] = cm.ClientVersion
- } else {
- m.deviceVer[deviceID] = cm.ClientName + " " + cm.ClientVersion
- }
- event := map[string]string{
- "id": deviceID.String(),
- "deviceName": cm.DeviceName,
- "clientName": cm.ClientName,
- "clientVersion": cm.ClientVersion,
- }
- if conn, ok := m.conn[deviceID]; ok {
- event["type"] = conn.Type.String()
- addr := conn.RemoteAddr()
- if addr != nil {
- event["addr"] = addr.String()
- }
- }
- m.pmut.Unlock()
- // Check the peer device's announced folders against our own. Emits events
- // for folders that we don't expect (unknown or not shared).
- m.fmut.Lock()
- nextFolder:
- for _, folder := range cm.Folders {
- cfg := m.folderCfgs[folder.ID]
- if folder.Flags&^protocol.FlagFolderAll != 0 {
- // There are flags set that we don't know what they mean. Scary!
- l.Warnf("Device %v: unknown flags for folder %s", deviceID, folder.ID)
- cfg.Invalid = fmt.Sprintf("Unknown flags from device %v", deviceID)
- m.cfg.SetFolder(cfg)
- if srv := m.folderRunners[folder.ID]; srv != nil {
- srv.setError(fmt.Errorf(cfg.Invalid))
- }
- continue nextFolder
- }
- if !m.folderSharedWithUnlocked(folder.ID, deviceID) {
- events.Default.Log(events.FolderRejected, map[string]string{
- "folder": folder.ID,
- "device": deviceID.String(),
- })
- l.Infof("Unexpected folder ID %q sent from device %q; ensure that the folder exists and that this device is selected under \"Share With\" in the folder configuration.", folder.ID, deviceID)
- continue
- }
- }
- m.fmut.Unlock()
- events.Default.Log(events.DeviceConnected, event)
- l.Infof(`Device %s client is "%s %s" named "%s"`, deviceID, cm.ClientName, cm.ClientVersion, cm.DeviceName)
- var changed bool
- device, ok := m.cfg.Devices()[deviceID]
- if ok && device.Name == "" {
- device.Name = cm.DeviceName
- m.cfg.SetDevice(device)
- changed = true
- }
- if m.cfg.Devices()[deviceID].Introducer {
- // This device is an introducer. Go through the announced lists of folders
- // and devices and add what we are missing.
- for _, folder := range cm.Folders {
- // If we don't have this folder yet, skip it. Ideally, we'd
- // offer up something in the GUI to create the folder, but for the
- // moment we only handle folders that we already have.
- if _, ok := m.folderDevices[folder.ID]; !ok {
- continue
- }
- nextDevice:
- for _, device := range folder.Devices {
- var id protocol.DeviceID
- copy(id[:], device.ID)
- if _, ok := m.cfg.Devices()[id]; !ok {
- // The device is currently unknown. Add it to the config.
- addresses := []string{"dynamic"}
- for _, addr := range device.Addresses {
- if addr != "dynamic" {
- addresses = append(addresses, addr)
- }
- }
- l.Infof("Adding device %v to config (vouched for by introducer %v)", id, deviceID)
- newDeviceCfg := config.DeviceConfiguration{
- DeviceID: id,
- Name: device.Name,
- Compression: m.cfg.Devices()[deviceID].Compression,
- Addresses: addresses,
- CertName: device.CertName,
- }
- // The introducers' introducers are also our introducers.
- if device.Flags&protocol.FlagIntroducer != 0 {
- l.Infof("Device %v is now also an introducer", id)
- newDeviceCfg.Introducer = true
- }
- m.cfg.SetDevice(newDeviceCfg)
- changed = true
- }
- for _, er := range m.deviceFolders[id] {
- if er == folder.ID {
- // We already share the folder with this device, so
- // nothing to do.
- continue nextDevice
- }
- }
- // We don't yet share this folder with this device. Add the device
- // to sharing list of the folder.
- l.Infof("Adding device %v to share %q (vouched for by introducer %v)", id, folder.ID, deviceID)
- m.deviceFolders[id] = append(m.deviceFolders[id], folder.ID)
- m.folderDevices[folder.ID] = append(m.folderDevices[folder.ID], id)
- folderCfg := m.cfg.Folders()[folder.ID]
- folderCfg.Devices = append(folderCfg.Devices, config.FolderDeviceConfiguration{
- DeviceID: id,
- })
- m.cfg.SetFolder(folderCfg)
- changed = true
- }
- }
- }
- if changed {
- m.cfg.Save()
- }
- }
- // Close removes the peer from the model and closes the underlying connection if possible.
- // Implements the protocol.Model interface.
- func (m *Model) Close(device protocol.DeviceID, err error) {
- l.Infof("Connection to %s closed: %v", device, err)
- events.Default.Log(events.DeviceDisconnected, map[string]string{
- "id": device.String(),
- "error": err.Error(),
- })
- m.pmut.Lock()
- m.fmut.RLock()
- for _, folder := range m.deviceFolders[device] {
- m.folderFiles[folder].Replace(device, nil)
- }
- m.fmut.RUnlock()
- conn, ok := m.conn[device]
- if ok {
- closeRawConn(conn)
- }
- delete(m.conn, device)
- delete(m.deviceVer, device)
- m.pmut.Unlock()
- }
- // Request returns the specified data segment by reading it from local disk.
- // Implements the protocol.Model interface.
- func (m *Model) Request(deviceID protocol.DeviceID, folder, name string, offset int64, hash []byte, flags uint32, options []protocol.Option, buf []byte) error {
- if offset < 0 {
- return protocol.ErrInvalid
- }
- if !m.folderSharedWith(folder, deviceID) {
- l.Warnf("Request from %s for file %s in unshared folder %q", deviceID, name, folder)
- return protocol.ErrInvalid
- }
- if flags != 0 {
- // We don't currently support or expect any flags.
- return protocol.ErrInvalid
- }
- if deviceID != protocol.LocalDeviceID {
- l.Debugf("%v REQ(in): %s: %q / %q o=%d s=%d", m, deviceID, folder, name, offset, len(buf))
- }
- m.fmut.RLock()
- folderPath := m.folderCfgs[folder].Path()
- folderIgnores := m.folderIgnores[folder]
- m.fmut.RUnlock()
- // filepath.Join() returns a filepath.Clean()ed path, which (quoting the
- // docs for clarity here):
- //
- // Clean returns the shortest path name equivalent to path by purely lexical
- // processing. It applies the following rules iteratively until no further
- // processing can be done:
- //
- // 1. Replace multiple Separator elements with a single one.
- // 2. Eliminate each . path name element (the current directory).
- // 3. Eliminate each inner .. path name element (the parent directory)
- // along with the non-.. element that precedes it.
- // 4. Eliminate .. elements that begin a rooted path:
- // that is, replace "/.." by "/" at the beginning of a path,
- // assuming Separator is '/'.
- fn := filepath.Join(folderPath, name)
- if !strings.HasPrefix(fn, folderPath) {
- // Request tries to escape!
- l.Debugf("%v Invalid REQ(in) tries to escape: %s: %q / %q o=%d s=%d", m, deviceID, folder, name, offset, len(buf))
- return protocol.ErrInvalid
- }
- if folderIgnores != nil {
- // "rn" becomes the relative name of the file within the folder. This is
- // different than the original "name" parameter in that it's been
- // cleaned from any possible funny business.
- if rn, err := filepath.Rel(folderPath, fn); err != nil {
- return err
- } else if folderIgnores.Match(rn) {
- l.Debugf("%v REQ(in) for ignored file: %s: %q / %q o=%d s=%d", m, deviceID, folder, name, offset, len(buf))
- return protocol.ErrNoSuchFile
- }
- }
- var reader io.ReaderAt
- var err error
- if info, err := os.Lstat(fn); err == nil && info.Mode()&os.ModeSymlink != 0 {
- target, _, err := symlinks.Read(fn)
- if err != nil {
- l.Debugln("symlinks.Read:", err)
- if os.IsNotExist(err) {
- return protocol.ErrNoSuchFile
- }
- return protocol.ErrGeneric
- }
- reader = strings.NewReader(target)
- } else {
- // Cannot easily cache fd's because we might need to delete the file
- // at any moment.
- reader, err = os.Open(fn)
- if err != nil {
- l.Debugln("os.Open:", err)
- if os.IsNotExist(err) {
- return protocol.ErrNoSuchFile
- }
- return protocol.ErrGeneric
- }
- defer reader.(*os.File).Close()
- }
- _, err = reader.ReadAt(buf, offset)
- if err != nil {
- l.Debugln("reader.ReadAt:", err)
- return protocol.ErrGeneric
- }
- return nil
- }
- func (m *Model) CurrentFolderFile(folder string, file string) (protocol.FileInfo, bool) {
- m.fmut.RLock()
- fs, ok := m.folderFiles[folder]
- m.fmut.RUnlock()
- if !ok {
- return protocol.FileInfo{}, false
- }
- f, ok := fs.Get(protocol.LocalDeviceID, file)
- return f, ok
- }
- func (m *Model) CurrentGlobalFile(folder string, file string) (protocol.FileInfo, bool) {
- m.fmut.RLock()
- fs, ok := m.folderFiles[folder]
- m.fmut.RUnlock()
- if !ok {
- return protocol.FileInfo{}, false
- }
- f, ok := fs.GetGlobal(file)
- return f, ok
- }
- type cFiler struct {
- m *Model
- r string
- }
- // Implements scanner.CurrentFiler
- func (cf cFiler) CurrentFile(file string) (protocol.FileInfo, bool) {
- return cf.m.CurrentFolderFile(cf.r, file)
- }
- // ConnectedTo returns true if we are connected to the named device.
- func (m *Model) ConnectedTo(deviceID protocol.DeviceID) bool {
- m.pmut.RLock()
- _, ok := m.conn[deviceID]
- m.pmut.RUnlock()
- if ok {
- m.deviceWasSeen(deviceID)
- }
- return ok
- }
- func (m *Model) GetIgnores(folder string) ([]string, []string, error) {
- var lines []string
- m.fmut.RLock()
- cfg, ok := m.folderCfgs[folder]
- m.fmut.RUnlock()
- if !ok {
- return lines, nil, fmt.Errorf("Folder %s does not exist", folder)
- }
- if !cfg.HasMarker() {
- return lines, nil, fmt.Errorf("Folder %s stopped", folder)
- }
- fd, err := os.Open(filepath.Join(cfg.Path(), ".stignore"))
- if err != nil {
- if os.IsNotExist(err) {
- return lines, nil, nil
- }
- l.Warnln("Loading .stignore:", err)
- return lines, nil, err
- }
- defer fd.Close()
- scanner := bufio.NewScanner(fd)
- for scanner.Scan() {
- lines = append(lines, strings.TrimSpace(scanner.Text()))
- }
- m.fmut.RLock()
- patterns := m.folderIgnores[folder].Patterns()
- m.fmut.RUnlock()
- return lines, patterns, nil
- }
- func (m *Model) SetIgnores(folder string, content []string) error {
- cfg, ok := m.folderCfgs[folder]
- if !ok {
- return fmt.Errorf("Folder %s does not exist", folder)
- }
- path := filepath.Join(cfg.Path(), ".stignore")
- fd, err := osutil.CreateAtomic(path, 0644)
- if err != nil {
- l.Warnln("Saving .stignore:", err)
- return err
- }
- for _, line := range content {
- fmt.Fprintln(fd, line)
- }
- if err := fd.Close(); err != nil {
- l.Warnln("Saving .stignore:", err)
- return err
- }
- osutil.HideFile(path)
- return m.ScanFolder(folder)
- }
- // AddConnection adds a new peer connection to the model. An initial index will
- // be sent to the connected peer, thereafter index updates whenever the local
- // folder changes.
- func (m *Model) AddConnection(conn Connection) {
- deviceID := conn.ID()
- m.pmut.Lock()
- if _, ok := m.conn[deviceID]; ok {
- panic("add existing device")
- }
- m.conn[deviceID] = conn
- conn.Start()
- cm := m.generateClusterConfig(deviceID)
- conn.ClusterConfig(cm)
- m.fmut.RLock()
- for _, folder := range m.deviceFolders[deviceID] {
- fs := m.folderFiles[folder]
- go sendIndexes(conn, folder, fs, m.folderIgnores[folder])
- }
- m.fmut.RUnlock()
- m.pmut.Unlock()
- m.deviceWasSeen(deviceID)
- }
- func (m *Model) PauseDevice(device protocol.DeviceID) {
- m.pmut.Lock()
- m.devicePaused[device] = true
- _, ok := m.conn[device]
- m.pmut.Unlock()
- if ok {
- m.Close(device, errors.New("device paused"))
- }
- events.Default.Log(events.DevicePaused, map[string]string{"device": device.String()})
- }
- func (m *Model) ResumeDevice(device protocol.DeviceID) {
- m.pmut.Lock()
- m.devicePaused[device] = false
- m.pmut.Unlock()
- events.Default.Log(events.DeviceResumed, map[string]string{"device": device.String()})
- }
- func (m *Model) IsPaused(device protocol.DeviceID) bool {
- m.pmut.Lock()
- paused := m.devicePaused[device]
- m.pmut.Unlock()
- return paused
- }
- func (m *Model) deviceStatRef(deviceID protocol.DeviceID) *stats.DeviceStatisticsReference {
- m.fmut.Lock()
- defer m.fmut.Unlock()
- if sr, ok := m.deviceStatRefs[deviceID]; ok {
- return sr
- }
- sr := stats.NewDeviceStatisticsReference(m.db, deviceID.String())
- m.deviceStatRefs[deviceID] = sr
- return sr
- }
- func (m *Model) deviceWasSeen(deviceID protocol.DeviceID) {
- m.deviceStatRef(deviceID).WasSeen()
- }
- func (m *Model) folderStatRef(folder string) *stats.FolderStatisticsReference {
- m.fmut.Lock()
- defer m.fmut.Unlock()
- sr, ok := m.folderStatRefs[folder]
- if !ok {
- sr = stats.NewFolderStatisticsReference(m.db, folder)
- m.folderStatRefs[folder] = sr
- }
- return sr
- }
- func (m *Model) receivedFile(folder string, file protocol.FileInfo) {
- m.folderStatRef(folder).ReceivedFile(file.Name, file.IsDeleted())
- }
- func sendIndexes(conn protocol.Connection, folder string, fs *db.FileSet, ignores *ignore.Matcher) {
- deviceID := conn.ID()
- name := conn.Name()
- var err error
- l.Debugf("sendIndexes for %s-%s/%q starting", deviceID, name, folder)
- defer l.Debugf("sendIndexes for %s-%s/%q exiting: %v", deviceID, name, folder, err)
- minLocalVer, err := sendIndexTo(true, 0, conn, folder, fs, ignores)
- // Subscribe to LocalIndexUpdated (we have new information to send) and
- // DeviceDisconnected (it might be us who disconnected, so we should
- // exit).
- sub := events.Default.Subscribe(events.LocalIndexUpdated | events.DeviceDisconnected)
- defer events.Default.Unsubscribe(sub)
- for err == nil {
- if conn.Closed() {
- // Our work is done.
- return
- }
- // While we have sent a localVersion at least equal to the one
- // currently in the database, wait for the local index to update. The
- // local index may update for other folders than the one we are
- // sending for.
- if fs.LocalVersion(protocol.LocalDeviceID) <= minLocalVer {
- sub.Poll(time.Minute)
- continue
- }
- minLocalVer, err = sendIndexTo(false, minLocalVer, conn, folder, fs, ignores)
- // Wait a short amount of time before entering the next loop. If there
- // are continuous changes happening to the local index, this gives us
- // time to batch them up a little.
- time.Sleep(250 * time.Millisecond)
- }
- }
- func sendIndexTo(initial bool, minLocalVer int64, conn protocol.Connection, folder string, fs *db.FileSet, ignores *ignore.Matcher) (int64, error) {
- deviceID := conn.ID()
- name := conn.Name()
- batch := make([]protocol.FileInfo, 0, indexBatchSize)
- currentBatchSize := 0
- maxLocalVer := int64(0)
- var err error
- fs.WithHave(protocol.LocalDeviceID, func(fi db.FileIntf) bool {
- f := fi.(protocol.FileInfo)
- if f.LocalVersion <= minLocalVer {
- return true
- }
- if f.LocalVersion > maxLocalVer {
- maxLocalVer = f.LocalVersion
- }
- if ignores.Match(f.Name) || symlinkInvalid(folder, f) {
- l.Debugln("not sending update for ignored/unsupported symlink", f)
- return true
- }
- if len(batch) == indexBatchSize || currentBatchSize > indexTargetSize {
- if initial {
- if err = conn.Index(folder, batch, 0, nil); err != nil {
- return false
- }
- l.Debugf("sendIndexes for %s-%s/%q: %d files (<%d bytes) (initial index)", deviceID, name, folder, len(batch), currentBatchSize)
- initial = false
- } else {
- if err = conn.IndexUpdate(folder, batch, 0, nil); err != nil {
- return false
- }
- l.Debugf("sendIndexes for %s-%s/%q: %d files (<%d bytes) (batched update)", deviceID, name, folder, len(batch), currentBatchSize)
- }
- batch = make([]protocol.FileInfo, 0, indexBatchSize)
- currentBatchSize = 0
- }
- batch = append(batch, f)
- currentBatchSize += indexPerFileSize + len(f.Blocks)*indexPerBlockSize
- return true
- })
- if initial && err == nil {
- err = conn.Index(folder, batch, 0, nil)
- if err == nil {
- l.Debugf("sendIndexes for %s-%s/%q: %d files (small initial index)", deviceID, name, folder, len(batch))
- }
- } else if len(batch) > 0 && err == nil {
- err = conn.IndexUpdate(folder, batch, 0, nil)
- if err == nil {
- l.Debugf("sendIndexes for %s-%s/%q: %d files (last batch)", deviceID, name, folder, len(batch))
- }
- }
- return maxLocalVer, err
- }
- func (m *Model) updateLocals(folder string, fs []protocol.FileInfo) {
- m.fmut.RLock()
- files := m.folderFiles[folder]
- m.fmut.RUnlock()
- if files == nil {
- // The folder doesn't exist.
- return
- }
- files.Update(protocol.LocalDeviceID, fs)
- filenames := make([]string, len(fs))
- for i, file := range fs {
- filenames[i] = file.Name
- }
- events.Default.Log(events.LocalIndexUpdated, map[string]interface{}{
- "folder": folder,
- "items": len(fs),
- "filenames": filenames,
- "version": files.LocalVersion(protocol.LocalDeviceID),
- })
- }
- func (m *Model) requestGlobal(deviceID protocol.DeviceID, folder, name string, offset int64, size int, hash []byte, flags uint32, options []protocol.Option) ([]byte, error) {
- m.pmut.RLock()
- nc, ok := m.conn[deviceID]
- m.pmut.RUnlock()
- if !ok {
- return nil, fmt.Errorf("requestGlobal: no such device: %s", deviceID)
- }
- l.Debugf("%v REQ(out): %s: %q / %q o=%d s=%d h=%x f=%x op=%s", m, deviceID, folder, name, offset, size, hash, flags, options)
- return nc.Request(folder, name, offset, size, hash, flags, options)
- }
- func (m *Model) AddFolder(cfg config.FolderConfiguration) {
- if len(cfg.ID) == 0 {
- panic("cannot add empty folder id")
- }
- m.fmut.Lock()
- m.folderCfgs[cfg.ID] = cfg
- m.folderFiles[cfg.ID] = db.NewFileSet(cfg.ID, m.db)
- m.folderDevices[cfg.ID] = make([]protocol.DeviceID, len(cfg.Devices))
- for i, device := range cfg.Devices {
- m.folderDevices[cfg.ID][i] = device.DeviceID
- m.deviceFolders[device.DeviceID] = append(m.deviceFolders[device.DeviceID], cfg.ID)
- }
- ignores := ignore.New(m.cacheIgnoredFiles)
- if err := ignores.Load(filepath.Join(cfg.Path(), ".stignore")); err != nil && !os.IsNotExist(err) {
- l.Warnln("Loading ignores:", err)
- }
- m.folderIgnores[cfg.ID] = ignores
- m.fmut.Unlock()
- }
- func (m *Model) ScanFolders() map[string]error {
- m.fmut.RLock()
- folders := make([]string, 0, len(m.folderCfgs))
- for folder := range m.folderCfgs {
- folders = append(folders, folder)
- }
- m.fmut.RUnlock()
- errors := make(map[string]error, len(m.folderCfgs))
- errorsMut := sync.NewMutex()
- wg := sync.NewWaitGroup()
- wg.Add(len(folders))
- for _, folder := range folders {
- folder := folder
- go func() {
- err := m.ScanFolder(folder)
- if err != nil {
- errorsMut.Lock()
- errors[folder] = err
- errorsMut.Unlock()
- // Potentially sets the error twice, once in the scanner just
- // by doing a check, and once here, if the error returned is
- // the same one as returned by CheckFolderHealth, though
- // duplicate set is handled by setError.
- m.fmut.RLock()
- srv := m.folderRunners[folder]
- m.fmut.RUnlock()
- srv.setError(err)
- }
- wg.Done()
- }()
- }
- wg.Wait()
- return errors
- }
- func (m *Model) ScanFolder(folder string) error {
- return m.ScanFolderSubs(folder, nil)
- }
- func (m *Model) ScanFolderSubs(folder string, subs []string) error {
- m.fmut.Lock()
- runner, ok := m.folderRunners[folder]
- m.fmut.Unlock()
- // Folders are added to folderRunners only when they are started. We can't
- // scan them before they have started, so that's what we need to check for
- // here.
- if !ok {
- return errors.New("no such folder")
- }
- return runner.Scan(subs)
- }
- func (m *Model) internalScanFolderSubs(folder string, subs []string) error {
- for i, sub := range subs {
- sub = osutil.NativeFilename(sub)
- if p := filepath.Clean(filepath.Join(folder, sub)); !strings.HasPrefix(p, folder) {
- return errors.New("invalid subpath")
- }
- subs[i] = sub
- }
- m.fmut.Lock()
- fs := m.folderFiles[folder]
- folderCfg := m.folderCfgs[folder]
- ignores := m.folderIgnores[folder]
- runner, ok := m.folderRunners[folder]
- m.fmut.Unlock()
- // Folders are added to folderRunners only when they are started. We can't
- // scan them before they have started, so that's what we need to check for
- // here.
- if !ok {
- return errors.New("no such folder")
- }
- if err := m.CheckFolderHealth(folder); err != nil {
- runner.setError(err)
- l.Infof("Stopping folder %s due to error: %s", folder, err)
- return err
- }
- if err := ignores.Load(filepath.Join(folderCfg.Path(), ".stignore")); err != nil && !os.IsNotExist(err) {
- err = fmt.Errorf("loading ignores: %v", err)
- runner.setError(err)
- l.Infof("Stopping folder %s due to error: %s", folder, err)
- return err
- }
- // Required to make sure that we start indexing at a directory we're already
- // aware off.
- var unifySubs []string
- nextSub:
- for _, sub := range subs {
- for sub != "" {
- parent := filepath.Dir(sub)
- if parent == "." || parent == string(filepath.Separator) {
- parent = ""
- }
- if _, ok = fs.Get(protocol.LocalDeviceID, parent); ok {
- break
- }
- sub = parent
- }
- for _, us := range unifySubs {
- if strings.HasPrefix(sub, us) {
- continue nextSub
- }
- }
- unifySubs = append(unifySubs, sub)
- }
- subs = unifySubs
- // The cancel channel is closed whenever we return (such as from an error),
- // to signal the potentially still running walker to stop.
- cancel := make(chan struct{})
- defer close(cancel)
- w := &scanner.Walker{
- Folder: folderCfg.ID,
- Dir: folderCfg.Path(),
- Subs: subs,
- Matcher: ignores,
- BlockSize: protocol.BlockSize,
- TempNamer: defTempNamer,
- TempLifetime: time.Duration(m.cfg.Options().KeepTemporariesH) * time.Hour,
- CurrentFiler: cFiler{m, folder},
- MtimeRepo: db.NewVirtualMtimeRepo(m.db, folderCfg.ID),
- IgnorePerms: folderCfg.IgnorePerms,
- AutoNormalize: folderCfg.AutoNormalize,
- Hashers: m.numHashers(folder),
- ShortID: m.shortID,
- ProgressTickIntervalS: folderCfg.ScanProgressIntervalS,
- Cancel: cancel,
- }
- runner.setState(FolderScanning)
- fchan, err := w.Walk()
- if err != nil {
- // The error we get here is likely an OS level error, which might not be
- // as readable as our health check errors. Check if we can get a health
- // check error first, and use that if it's available.
- if ferr := m.CheckFolderHealth(folder); ferr != nil {
- err = ferr
- }
- runner.setError(err)
- return err
- }
- batchSizeFiles := 100
- batchSizeBlocks := 2048 // about 256 MB
- batch := make([]protocol.FileInfo, 0, batchSizeFiles)
- blocksHandled := 0
- for f := range fchan {
- if len(batch) == batchSizeFiles || blocksHandled > batchSizeBlocks {
- if err := m.CheckFolderHealth(folder); err != nil {
- l.Infof("Stopping folder %s mid-scan due to folder error: %s", folder, err)
- return err
- }
- m.updateLocals(folder, batch)
- batch = batch[:0]
- blocksHandled = 0
- }
- batch = append(batch, f)
- blocksHandled += len(f.Blocks)
- }
- if err := m.CheckFolderHealth(folder); err != nil {
- l.Infof("Stopping folder %s mid-scan due to folder error: %s", folder, err)
- return err
- } else if len(batch) > 0 {
- m.updateLocals(folder, batch)
- }
- batch = batch[:0]
- // TODO: We should limit the Have scanning to start at sub
- seenPrefix := false
- var iterError error
- fs.WithHaveTruncated(protocol.LocalDeviceID, func(fi db.FileIntf) bool {
- f := fi.(db.FileInfoTruncated)
- hasPrefix := len(subs) == 0
- for _, sub := range subs {
- if strings.HasPrefix(f.Name, sub) {
- hasPrefix = true
- break
- }
- }
- // Return true so that we keep iterating, until we get to the part
- // of the tree we are interested in. Then return false so we stop
- // iterating when we've passed the end of the subtree.
- if !hasPrefix {
- return !seenPrefix
- }
- seenPrefix = true
- if !f.IsDeleted() {
- if f.IsInvalid() {
- return true
- }
- if len(batch) == batchSizeFiles {
- if err := m.CheckFolderHealth(folder); err != nil {
- iterError = err
- return false
- }
- m.updateLocals(folder, batch)
- batch = batch[:0]
- }
- if ignores.Match(f.Name) || symlinkInvalid(folder, f) {
- // File has been ignored or an unsupported symlink. Set invalid bit.
- l.Debugln("setting invalid bit on ignored", f)
- nf := protocol.FileInfo{
- Name: f.Name,
- Flags: f.Flags | protocol.FlagInvalid,
- Modified: f.Modified,
- Version: f.Version, // The file is still the same, so don't bump version
- }
- batch = append(batch, nf)
- } else if _, err := osutil.Lstat(filepath.Join(folderCfg.Path(), f.Name)); err != nil {
- // File has been deleted.
- // We don't specifically verify that the error is
- // os.IsNotExist because there is a corner case when a
- // directory is suddenly transformed into a file. When that
- // happens, files that were in the directory (that is now a
- // file) are deleted but will return a confusing error ("not a
- // directory") when we try to Lstat() them.
- nf := protocol.FileInfo{
- Name: f.Name,
- Flags: f.Flags | protocol.FlagDeleted,
- Modified: f.Modified,
- Version: f.Version.Update(m.shortID),
- }
- batch = append(batch, nf)
- }
- }
- return true
- })
- if iterError != nil {
- l.Infof("Stopping folder %s mid-scan due to folder error: %s", folder, iterError)
- return iterError
- }
- if err := m.CheckFolderHealth(folder); err != nil {
- l.Infof("Stopping folder %s mid-scan due to folder error: %s", folder, err)
- return err
- } else if len(batch) > 0 {
- m.updateLocals(folder, batch)
- }
- runner.setState(FolderIdle)
- return nil
- }
- func (m *Model) DelayScan(folder string, next time.Duration) {
- m.fmut.Lock()
- runner, ok := m.folderRunners[folder]
- m.fmut.Unlock()
- if !ok {
- return
- }
- runner.DelayScan(next)
- }
- // numHashers returns the number of hasher routines to use for a given folder,
- // taking into account configuration and available CPU cores.
- func (m *Model) numHashers(folder string) int {
- m.fmut.Lock()
- folderCfg := m.folderCfgs[folder]
- numFolders := len(m.folderCfgs)
- m.fmut.Unlock()
- if folderCfg.Hashers > 0 {
- // Specific value set in the config, use that.
- return folderCfg.Hashers
- }
- if runtime.GOOS == "windows" || runtime.GOOS == "darwin" {
- // Interactive operating systems; don't load the system too heavily by
- // default.
- return 1
- }
- // For other operating systems and architectures, lets try to get some
- // work done... Divide the available CPU cores among the configured
- // folders.
- if perFolder := runtime.GOMAXPROCS(-1) / numFolders; perFolder > 0 {
- return perFolder
- }
- return 1
- }
- // generateClusterConfig returns a ClusterConfigMessage that is correct for
- // the given peer device
- func (m *Model) generateClusterConfig(device protocol.DeviceID) protocol.ClusterConfigMessage {
- cm := protocol.ClusterConfigMessage{
- DeviceName: m.deviceName,
- ClientName: m.clientName,
- ClientVersion: m.clientVersion,
- }
- m.fmut.RLock()
- for _, folder := range m.deviceFolders[device] {
- folderCfg := m.cfg.Folders()[folder]
- cr := protocol.Folder{
- ID: folder,
- }
- var flags uint32
- if folderCfg.ReadOnly {
- flags |= protocol.FlagFolderReadOnly
- }
- if folderCfg.IgnorePerms {
- flags |= protocol.FlagFolderIgnorePerms
- }
- if folderCfg.IgnoreDelete {
- flags |= protocol.FlagFolderIgnoreDelete
- }
- cr.Flags = flags
- for _, device := range m.folderDevices[folder] {
- // DeviceID is a value type, but with an underlying array. Copy it
- // so we don't grab aliases to the same array later on in device[:]
- device := device
- // TODO: Set read only bit when relevant, and when we have per device
- // access controls.
- deviceCfg := m.cfg.Devices()[device]
- cn := protocol.Device{
- ID: device[:],
- Name: deviceCfg.Name,
- Addresses: deviceCfg.Addresses,
- Compression: uint32(deviceCfg.Compression),
- CertName: deviceCfg.CertName,
- Flags: protocol.FlagShareTrusted,
- }
- if deviceCfg.Introducer {
- cn.Flags |= protocol.FlagIntroducer
- }
- cr.Devices = append(cr.Devices, cn)
- }
- cm.Folders = append(cm.Folders, cr)
- }
- m.fmut.RUnlock()
- return cm
- }
- func (m *Model) State(folder string) (string, time.Time, error) {
- m.fmut.RLock()
- runner, ok := m.folderRunners[folder]
- m.fmut.RUnlock()
- if !ok {
- // The returned error should be an actual folder error, so returning
- // errors.New("does not exist") or similar here would be
- // inappropriate.
- return "", time.Time{}, nil
- }
- state, changed, err := runner.getState()
- return state.String(), changed, err
- }
- func (m *Model) Override(folder string) {
- m.fmut.RLock()
- fs, ok := m.folderFiles[folder]
- runner := m.folderRunners[folder]
- m.fmut.RUnlock()
- if !ok {
- return
- }
- runner.setState(FolderScanning)
- batch := make([]protocol.FileInfo, 0, indexBatchSize)
- fs.WithNeed(protocol.LocalDeviceID, func(fi db.FileIntf) bool {
- need := fi.(protocol.FileInfo)
- if len(batch) == indexBatchSize {
- m.updateLocals(folder, batch)
- batch = batch[:0]
- }
- have, ok := fs.Get(protocol.LocalDeviceID, need.Name)
- if !ok || have.Name != need.Name {
- // We are missing the file
- need.Flags |= protocol.FlagDeleted
- need.Blocks = nil
- need.Version = need.Version.Update(m.shortID)
- } else {
- // We have the file, replace with our version
- have.Version = have.Version.Merge(need.Version).Update(m.shortID)
- need = have
- }
- need.LocalVersion = 0
- batch = append(batch, need)
- return true
- })
- if len(batch) > 0 {
- m.updateLocals(folder, batch)
- }
- runner.setState(FolderIdle)
- }
- // CurrentLocalVersion returns the change version for the given folder.
- // This is guaranteed to increment if the contents of the local folder has
- // changed.
- func (m *Model) CurrentLocalVersion(folder string) (int64, bool) {
- m.fmut.RLock()
- fs, ok := m.folderFiles[folder]
- m.fmut.RUnlock()
- if !ok {
- // The folder might not exist, since this can be called with a user
- // specified folder name from the REST interface.
- return 0, false
- }
- return fs.LocalVersion(protocol.LocalDeviceID), true
- }
- // RemoteLocalVersion returns the change version for the given folder, as
- // sent by remote peers. This is guaranteed to increment if the contents of
- // the remote or global folder has changed.
- func (m *Model) RemoteLocalVersion(folder string) (int64, bool) {
- m.fmut.RLock()
- defer m.fmut.RUnlock()
- fs, ok := m.folderFiles[folder]
- if !ok {
- // The folder might not exist, since this can be called with a user
- // specified folder name from the REST interface.
- return 0, false
- }
- var ver int64
- for _, n := range m.folderDevices[folder] {
- ver += fs.LocalVersion(n)
- }
- return ver, true
- }
- func (m *Model) GlobalDirectoryTree(folder, prefix string, levels int, dirsonly bool) map[string]interface{} {
- m.fmut.RLock()
- files, ok := m.folderFiles[folder]
- m.fmut.RUnlock()
- if !ok {
- return nil
- }
- output := make(map[string]interface{})
- sep := string(filepath.Separator)
- prefix = osutil.NativeFilename(prefix)
- if prefix != "" && !strings.HasSuffix(prefix, sep) {
- prefix = prefix + sep
- }
- files.WithPrefixedGlobalTruncated(prefix, func(fi db.FileIntf) bool {
- f := fi.(db.FileInfoTruncated)
- if f.IsInvalid() || f.IsDeleted() || f.Name == prefix {
- return true
- }
- f.Name = strings.Replace(f.Name, prefix, "", 1)
- var dir, base string
- if f.IsDirectory() && !f.IsSymlink() {
- dir = f.Name
- } else {
- dir = filepath.Dir(f.Name)
- base = filepath.Base(f.Name)
- }
- if levels > -1 && strings.Count(f.Name, sep) > levels {
- return true
- }
- last := output
- if dir != "." {
- for _, path := range strings.Split(dir, sep) {
- directory, ok := last[path]
- if !ok {
- newdir := make(map[string]interface{})
- last[path] = newdir
- last = newdir
- } else {
- last = directory.(map[string]interface{})
- }
- }
- }
- if !dirsonly && base != "" {
- last[base] = []interface{}{
- time.Unix(f.Modified, 0), f.Size(),
- }
- }
- return true
- })
- return output
- }
- func (m *Model) Availability(folder, file string) []protocol.DeviceID {
- // Acquire this lock first, as the value returned from foldersFiles can
- // get heavily modified on Close()
- m.pmut.RLock()
- defer m.pmut.RUnlock()
- m.fmut.RLock()
- fs, ok := m.folderFiles[folder]
- m.fmut.RUnlock()
- if !ok {
- return nil
- }
- availableDevices := []protocol.DeviceID{}
- for _, device := range fs.Availability(file) {
- _, ok := m.conn[device]
- if ok {
- availableDevices = append(availableDevices, device)
- }
- }
- return availableDevices
- }
- // BringToFront bumps the given files priority in the job queue.
- func (m *Model) BringToFront(folder, file string) {
- m.pmut.RLock()
- defer m.pmut.RUnlock()
- runner, ok := m.folderRunners[folder]
- if ok {
- runner.BringToFront(file)
- }
- }
- // CheckFolderHealth checks the folder for common errors and returns the
- // current folder error, or nil if the folder is healthy.
- func (m *Model) CheckFolderHealth(id string) error {
- folder, ok := m.cfg.Folders()[id]
- if !ok {
- return errors.New("folder does not exist")
- }
- if minFree := m.cfg.Options().MinHomeDiskFreePct; minFree > 0 {
- if free, err := osutil.DiskFreePercentage(m.cfg.ConfigPath()); err == nil && free < minFree {
- return errors.New("home disk has insufficient free space")
- }
- }
- fi, err := os.Stat(folder.Path())
- v, ok := m.CurrentLocalVersion(id)
- indexHasFiles := ok && v > 0
- if indexHasFiles {
- // There are files in the folder according to the index, so it must
- // have existed and had a correct marker at some point. Verify that
- // this is still the case.
- switch {
- case err != nil || !fi.IsDir():
- err = errors.New("folder path missing")
- case !folder.HasMarker():
- err = errors.New("folder marker missing")
- case !folder.ReadOnly:
- // Check for free space, if it isn't a master folder. We aren't
- // going to change the contents of master folders, so we don't
- // care about the amount of free space there.
- diskFreeP, errDfp := osutil.DiskFreePercentage(folder.Path())
- if errDfp == nil && diskFreeP < folder.MinDiskFreePct {
- diskFreeBytes, _ := osutil.DiskFreeBytes(folder.Path())
- str := fmt.Sprintf("insufficient free space (%d MiB, %.2f%%)", diskFreeBytes/1024/1024, diskFreeP)
- err = errors.New(str)
- }
- }
- } else {
- // It's a blank folder, so this may the first time we're looking at
- // it. Attempt to create and tag with our marker as appropriate.
- if os.IsNotExist(err) {
- err = osutil.MkdirAll(folder.Path(), 0700)
- }
- if err == nil && !folder.HasMarker() {
- err = folder.CreateMarker()
- }
- }
- m.fmut.RLock()
- runner, runnerExists := m.folderRunners[folder.ID]
- m.fmut.RUnlock()
- var oldErr error
- if runnerExists {
- _, _, oldErr = runner.getState()
- }
- if err != nil {
- if oldErr != nil && oldErr.Error() != err.Error() {
- l.Infof("Folder %q error changed: %q -> %q", folder.ID, oldErr, err)
- } else if oldErr == nil {
- l.Warnf("Stopping folder %q - %v", folder.ID, err)
- }
- if runnerExists {
- runner.setError(err)
- }
- } else if oldErr != nil {
- l.Infof("Folder %q error is cleared, restarting", folder.ID)
- if runnerExists {
- runner.clearError()
- }
- }
- return err
- }
- func (m *Model) ResetFolder(folder string) {
- l.Infof("Cleaning data for folder %q", folder)
- db.DropFolder(m.db, folder)
- }
- func (m *Model) String() string {
- return fmt.Sprintf("model@%p", m)
- }
- func (m *Model) VerifyConfiguration(from, to config.Configuration) error {
- return nil
- }
- func (m *Model) CommitConfiguration(from, to config.Configuration) bool {
- // TODO: This should not use reflect, and should take more care to try to handle stuff without restart.
- // Go through the folder configs and figure out if we need to restart or not.
- fromFolders := mapFolders(from.Folders)
- toFolders := mapFolders(to.Folders)
- for folderID, cfg := range toFolders {
- if _, ok := fromFolders[folderID]; !ok {
- // A folder was added.
- l.Debugln(m, "adding folder", folderID)
- m.AddFolder(cfg)
- if cfg.ReadOnly {
- m.StartFolderRO(folderID)
- } else {
- m.StartFolderRW(folderID)
- }
- // Drop connections to all devices that can now share the new
- // folder.
- m.pmut.Lock()
- for _, dev := range cfg.DeviceIDs() {
- if conn, ok := m.conn[dev]; ok {
- closeRawConn(conn)
- }
- }
- m.pmut.Unlock()
- }
- }
- for folderID, fromCfg := range fromFolders {
- toCfg, ok := toFolders[folderID]
- if !ok {
- // The folder was removed.
- m.RemoveFolder(folderID)
- continue
- }
- // This folder exists on both sides. Compare the device lists, as we
- // can handle adding a device (but not currently removing one).
- fromDevs := mapDevices(fromCfg.DeviceIDs())
- toDevs := mapDevices(toCfg.DeviceIDs())
- for dev := range fromDevs {
- if _, ok := toDevs[dev]; !ok {
- // A device was removed. Requires restart.
- l.Debugln(m, "requires restart, removing device", dev, "from folder", folderID)
- return false
- }
- }
- for dev := range toDevs {
- if _, ok := fromDevs[dev]; !ok {
- // A device was added. Handle it!
- m.fmut.Lock()
- m.pmut.Lock()
- m.folderCfgs[folderID] = toCfg
- m.folderDevices[folderID] = append(m.folderDevices[folderID], dev)
- m.deviceFolders[dev] = append(m.deviceFolders[dev], folderID)
- // If we already have a connection to this device, we should
- // disconnect it so that we start sharing the folder with it.
- // We close the underlying connection and let the normal error
- // handling kick in to clean up and reconnect.
- if conn, ok := m.conn[dev]; ok {
- closeRawConn(conn)
- }
- m.pmut.Unlock()
- m.fmut.Unlock()
- }
- }
- // Check if anything else differs, apart from the device list.
- fromCfg.Devices = nil
- toCfg.Devices = nil
- if !reflect.DeepEqual(fromCfg, toCfg) {
- l.Debugln(m, "requires restart, folder", folderID, "configuration differs")
- return false
- }
- }
- // Removing a device requires restart
- toDevs := mapDeviceCfgs(from.Devices)
- for _, dev := range from.Devices {
- if _, ok := toDevs[dev.DeviceID]; !ok {
- l.Debugln(m, "requires restart, device", dev.DeviceID, "was removed")
- return false
- }
- }
- // Some options don't require restart as those components handle it fine
- // by themselves.
- from.Options.URAccepted = to.Options.URAccepted
- from.Options.URUniqueID = to.Options.URUniqueID
- // All of the other generic options require restart. Or at least they may;
- // removing this check requires going through those options carefully and
- // making sure there are individual services that handle them correctly.
- // This code is the "original" requires-restart check and protects other
- // components that haven't yet been converted to VerifyConfig/CommitConfig
- // handling.
- if !reflect.DeepEqual(from.Options, to.Options) {
- l.Debugln(m, "requires restart, options differ")
- return false
- }
- return true
- }
- // mapFolders returns a map of folder ID to folder configuration for the given
- // slice of folder configurations.
- func mapFolders(folders []config.FolderConfiguration) map[string]config.FolderConfiguration {
- m := make(map[string]config.FolderConfiguration, len(folders))
- for _, cfg := range folders {
- m[cfg.ID] = cfg
- }
- return m
- }
- // mapDevices returns a map of device ID to nothing for the given slice of
- // device IDs.
- func mapDevices(devices []protocol.DeviceID) map[protocol.DeviceID]struct{} {
- m := make(map[protocol.DeviceID]struct{}, len(devices))
- for _, dev := range devices {
- m[dev] = struct{}{}
- }
- return m
- }
- // mapDeviceCfgs returns a map of device ID to nothing for the given slice of
- // device configurations.
- func mapDeviceCfgs(devices []config.DeviceConfiguration) map[protocol.DeviceID]struct{} {
- m := make(map[protocol.DeviceID]struct{}, len(devices))
- for _, dev := range devices {
- m[dev.DeviceID] = struct{}{}
- }
- return m
- }
- func filterIndex(folder string, fs []protocol.FileInfo, dropDeletes bool) []protocol.FileInfo {
- for i := 0; i < len(fs); {
- if fs[i].Flags&^protocol.FlagsAll != 0 {
- l.Debugln("dropping update for file with unknown bits set", fs[i])
- fs[i] = fs[len(fs)-1]
- fs = fs[:len(fs)-1]
- } else if fs[i].IsDeleted() && dropDeletes {
- l.Debugln("dropping update for undesired delete", fs[i])
- fs[i] = fs[len(fs)-1]
- fs = fs[:len(fs)-1]
- } else if symlinkInvalid(folder, fs[i]) {
- l.Debugln("dropping update for unsupported symlink", fs[i])
- fs[i] = fs[len(fs)-1]
- fs = fs[:len(fs)-1]
- } else {
- i++
- }
- }
- return fs
- }
- func symlinkInvalid(folder string, fi db.FileIntf) bool {
- if !symlinks.Supported && fi.IsSymlink() && !fi.IsInvalid() && !fi.IsDeleted() {
- symlinkWarning.Do(func() {
- l.Warnln("Symlinks are disabled, unsupported or require Administrator privileges. This might cause your folder to appear out of sync.")
- })
- // Need to type switch for the concrete type to be able to access fields...
- var name string
- switch fi := fi.(type) {
- case protocol.FileInfo:
- name = fi.Name
- case db.FileInfoTruncated:
- name = fi.Name
- }
- l.Infoln("Unsupported symlink", name, "in folder", folder)
- return true
- }
- return false
- }
- // Skips `skip` elements and retrieves up to `get` elements from a given slice.
- // Returns the resulting slice, plus how much elements are left to skip or
- // copy to satisfy the values which were provided, given the slice is not
- // big enough.
- func getChunk(data []string, skip, get int) ([]string, int, int) {
- l := len(data)
- if l <= skip {
- return []string{}, skip - l, get
- } else if l < skip+get {
- return data[skip:l], 0, get - (l - skip)
- }
- return data[skip : skip+get], 0, 0
- }
- func closeRawConn(conn io.Closer) error {
- if conn, ok := conn.(*tls.Conn); ok {
- // If the underlying connection is a *tls.Conn, Close() does more
- // than it says on the tin. Specifically, it sends a TLS alert
- // message, which might block forever if the connection is dead
- // and we don't have a deadline set.
- conn.SetWriteDeadline(time.Now().Add(250 * time.Millisecond))
- }
- return conn.Close()
- }
- func stringSliceWithout(ss []string, s string) []string {
- for i := range ss {
- if ss[i] == s {
- copy(ss[i:], ss[i+1:])
- ss = ss[:len(ss)-1]
- return ss
- }
- }
- return ss
- }
|