folder_sendrecv.go 59 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004
  1. // Copyright (C) 2014 The Syncthing Authors.
  2. //
  3. // This Source Code Form is subject to the terms of the Mozilla Public
  4. // License, v. 2.0. If a copy of the MPL was not distributed with this file,
  5. // You can obtain one at https://mozilla.org/MPL/2.0/.
  6. package model
  7. import (
  8. "bytes"
  9. "fmt"
  10. "path/filepath"
  11. "runtime"
  12. "sort"
  13. "strings"
  14. "time"
  15. "github.com/pkg/errors"
  16. "github.com/syncthing/syncthing/lib/config"
  17. "github.com/syncthing/syncthing/lib/db"
  18. "github.com/syncthing/syncthing/lib/events"
  19. "github.com/syncthing/syncthing/lib/fs"
  20. "github.com/syncthing/syncthing/lib/ignore"
  21. "github.com/syncthing/syncthing/lib/osutil"
  22. "github.com/syncthing/syncthing/lib/protocol"
  23. "github.com/syncthing/syncthing/lib/rand"
  24. "github.com/syncthing/syncthing/lib/scanner"
  25. "github.com/syncthing/syncthing/lib/sha256"
  26. "github.com/syncthing/syncthing/lib/sync"
  27. "github.com/syncthing/syncthing/lib/util"
  28. "github.com/syncthing/syncthing/lib/versioner"
  29. "github.com/syncthing/syncthing/lib/weakhash"
  30. )
  31. var (
  32. blockStats = make(map[string]int)
  33. blockStatsMut = sync.NewMutex()
  34. )
  35. func init() {
  36. folderFactories[config.FolderTypeSendReceive] = newSendReceiveFolder
  37. }
  38. // A pullBlockState is passed to the puller routine for each block that needs
  39. // to be fetched.
  40. type pullBlockState struct {
  41. *sharedPullerState
  42. block protocol.BlockInfo
  43. }
  44. // A copyBlocksState is passed to copy routine if the file has blocks to be
  45. // copied.
  46. type copyBlocksState struct {
  47. *sharedPullerState
  48. blocks []protocol.BlockInfo
  49. have int
  50. }
  51. // Which filemode bits to preserve
  52. const retainBits = fs.ModeSetgid | fs.ModeSetuid | fs.ModeSticky
  53. var (
  54. activity = newDeviceActivity()
  55. errNoDevice = errors.New("peers who had this file went away, or the file has changed while syncing. will retry later")
  56. errDirHasToBeScanned = errors.New("directory contains unexpected files, scheduling scan")
  57. errDirHasIgnored = errors.New("directory contains ignored files (see ignore documentation for (?d) prefix)")
  58. errDirNotEmpty = errors.New("directory is not empty; files within are probably ignored on connected devices only")
  59. errNotAvailable = errors.New("no connected device has the required version of this file")
  60. errModified = errors.New("file modified but not rescanned; will try again later")
  61. errUnexpectedDirOnFileDel = errors.New("encountered directory when trying to remove file/symlink")
  62. errIncompatibleSymlink = errors.New("incompatible symlink entry; rescan with newer Syncthing on source")
  63. contextRemovingOldItem = "removing item to be replaced"
  64. )
  65. const (
  66. dbUpdateHandleDir = iota
  67. dbUpdateDeleteDir
  68. dbUpdateHandleFile
  69. dbUpdateDeleteFile
  70. dbUpdateShortcutFile
  71. dbUpdateHandleSymlink
  72. dbUpdateInvalidate
  73. )
  74. const (
  75. defaultCopiers = 2
  76. defaultPullerPause = 60 * time.Second
  77. defaultPullerPendingKiB = 2 * protocol.MaxBlockSize / 1024
  78. maxPullerIterations = 3
  79. )
  80. type dbUpdateJob struct {
  81. file protocol.FileInfo
  82. jobType int
  83. }
  84. type sendReceiveFolder struct {
  85. folder
  86. fs fs.Filesystem
  87. versioner versioner.Versioner
  88. queue *jobQueue
  89. pullErrors map[string]string // path -> error string
  90. pullErrorsMut sync.Mutex
  91. }
  92. func newSendReceiveFolder(model *model, fset *db.FileSet, ignores *ignore.Matcher, cfg config.FolderConfiguration, ver versioner.Versioner, fs fs.Filesystem, evLogger events.Logger) service {
  93. f := &sendReceiveFolder{
  94. folder: newFolder(model, fset, ignores, cfg, evLogger),
  95. fs: fs,
  96. versioner: ver,
  97. queue: newJobQueue(),
  98. pullErrorsMut: sync.NewMutex(),
  99. }
  100. f.folder.puller = f
  101. f.folder.Service = util.AsService(f.serve)
  102. if f.Copiers == 0 {
  103. f.Copiers = defaultCopiers
  104. }
  105. // If the configured max amount of pending data is zero, we use the
  106. // default. If it's configured to something non-zero but less than the
  107. // protocol block size we adjust it upwards accordingly.
  108. if f.PullerMaxPendingKiB == 0 {
  109. f.PullerMaxPendingKiB = defaultPullerPendingKiB
  110. }
  111. if blockSizeKiB := protocol.MaxBlockSize / 1024; f.PullerMaxPendingKiB < blockSizeKiB {
  112. f.PullerMaxPendingKiB = blockSizeKiB
  113. }
  114. return f
  115. }
  116. // pull returns true if it manages to get all needed items from peers, i.e. get
  117. // the device in sync with the global state.
  118. func (f *sendReceiveFolder) pull() bool {
  119. select {
  120. case <-f.initialScanFinished:
  121. default:
  122. // Once the initial scan finished, a pull will be scheduled
  123. return true
  124. }
  125. // If there is nothing to do, don't even enter pulling state.
  126. abort := true
  127. f.fset.WithNeed(protocol.LocalDeviceID, func(intf db.FileIntf) bool {
  128. abort = false
  129. return false
  130. })
  131. if abort {
  132. return true
  133. }
  134. if err := f.CheckHealth(); err != nil {
  135. l.Debugln("Skipping pull of", f.Description(), "due to folder error:", err)
  136. return false
  137. }
  138. // Check if the ignore patterns changed.
  139. oldHash := f.ignores.Hash()
  140. defer func() {
  141. if f.ignores.Hash() != oldHash {
  142. f.ignoresUpdated()
  143. }
  144. }()
  145. if err := f.ignores.Load(".stignore"); err != nil && !fs.IsNotExist(err) {
  146. err = fmt.Errorf("loading ignores: %v", err)
  147. f.setError(err)
  148. return false
  149. }
  150. l.Debugf("%v pulling", f)
  151. f.setState(FolderSyncing)
  152. f.clearPullErrors()
  153. scanChan := make(chan string)
  154. go f.pullScannerRoutine(scanChan)
  155. defer func() {
  156. close(scanChan)
  157. f.setState(FolderIdle)
  158. }()
  159. for tries := 0; tries < maxPullerIterations; tries++ {
  160. select {
  161. case <-f.ctx.Done():
  162. return false
  163. default:
  164. }
  165. changed := f.pullerIteration(scanChan)
  166. l.Debugln(f, "changed", changed, "on try", tries+1)
  167. if changed == 0 {
  168. // No files were changed by the puller, so we are in
  169. // sync. Any errors were just transitional.
  170. f.clearPullErrors()
  171. return true
  172. }
  173. }
  174. // We've tried a bunch of times to get in sync, but
  175. // we're not making it. Probably there are write
  176. // errors preventing us. Flag this with a warning and
  177. // wait a bit longer before retrying.
  178. if errors := f.Errors(); len(errors) > 0 {
  179. f.evLogger.Log(events.FolderErrors, map[string]interface{}{
  180. "folder": f.folderID,
  181. "errors": errors,
  182. })
  183. }
  184. return false
  185. }
  186. // pullerIteration runs a single puller iteration for the given folder and
  187. // returns the number items that should have been synced (even those that
  188. // might have failed). One puller iteration handles all files currently
  189. // flagged as needed in the folder.
  190. func (f *sendReceiveFolder) pullerIteration(scanChan chan<- string) int {
  191. pullChan := make(chan pullBlockState)
  192. copyChan := make(chan copyBlocksState)
  193. finisherChan := make(chan *sharedPullerState)
  194. dbUpdateChan := make(chan dbUpdateJob)
  195. pullWg := sync.NewWaitGroup()
  196. copyWg := sync.NewWaitGroup()
  197. doneWg := sync.NewWaitGroup()
  198. updateWg := sync.NewWaitGroup()
  199. l.Debugln(f, "copiers:", f.Copiers, "pullerPendingKiB:", f.PullerMaxPendingKiB)
  200. updateWg.Add(1)
  201. go func() {
  202. // dbUpdaterRoutine finishes when dbUpdateChan is closed
  203. f.dbUpdaterRoutine(dbUpdateChan)
  204. updateWg.Done()
  205. }()
  206. for i := 0; i < f.Copiers; i++ {
  207. copyWg.Add(1)
  208. go func() {
  209. // copierRoutine finishes when copyChan is closed
  210. f.copierRoutine(copyChan, pullChan, finisherChan)
  211. copyWg.Done()
  212. }()
  213. }
  214. pullWg.Add(1)
  215. go func() {
  216. // pullerRoutine finishes when pullChan is closed
  217. f.pullerRoutine(pullChan, finisherChan)
  218. pullWg.Done()
  219. }()
  220. doneWg.Add(1)
  221. // finisherRoutine finishes when finisherChan is closed
  222. go func() {
  223. f.finisherRoutine(finisherChan, dbUpdateChan, scanChan)
  224. doneWg.Done()
  225. }()
  226. changed, fileDeletions, dirDeletions, err := f.processNeeded(dbUpdateChan, copyChan, scanChan)
  227. // Signal copy and puller routines that we are done with the in data for
  228. // this iteration. Wait for them to finish.
  229. close(copyChan)
  230. copyWg.Wait()
  231. close(pullChan)
  232. pullWg.Wait()
  233. // Signal the finisher chan that there will be no more input and wait
  234. // for it to finish.
  235. close(finisherChan)
  236. doneWg.Wait()
  237. if err == nil {
  238. f.processDeletions(fileDeletions, dirDeletions, dbUpdateChan, scanChan)
  239. }
  240. // Wait for db updates and scan scheduling to complete
  241. close(dbUpdateChan)
  242. updateWg.Wait()
  243. return changed
  244. }
  245. func (f *sendReceiveFolder) processNeeded(dbUpdateChan chan<- dbUpdateJob, copyChan chan<- copyBlocksState, scanChan chan<- string) (int, map[string]protocol.FileInfo, []protocol.FileInfo, error) {
  246. defer f.queue.Reset()
  247. changed := 0
  248. var dirDeletions []protocol.FileInfo
  249. fileDeletions := map[string]protocol.FileInfo{}
  250. buckets := map[string][]protocol.FileInfo{}
  251. // Iterate the list of items that we need and sort them into piles.
  252. // Regular files to pull goes into the file queue, everything else
  253. // (directories, symlinks and deletes) goes into the "process directly"
  254. // pile.
  255. f.fset.WithNeed(protocol.LocalDeviceID, func(intf db.FileIntf) bool {
  256. select {
  257. case <-f.ctx.Done():
  258. return false
  259. default:
  260. }
  261. if f.IgnoreDelete && intf.IsDeleted() {
  262. f.resetPullError(intf.FileName())
  263. l.Debugln(f, "ignore file deletion (config)", intf.FileName())
  264. return true
  265. }
  266. file := intf.(protocol.FileInfo)
  267. switch {
  268. case f.ignores.ShouldIgnore(file.Name):
  269. f.resetPullError(file.Name)
  270. file.SetIgnored(f.shortID)
  271. l.Debugln(f, "Handling ignored file", file)
  272. dbUpdateChan <- dbUpdateJob{file, dbUpdateInvalidate}
  273. changed++
  274. case runtime.GOOS == "windows" && fs.WindowsInvalidFilename(file.Name):
  275. if file.IsDeleted() {
  276. // Just pretend we deleted it, no reason to create an error
  277. // about a deleted file that we can't have anyway.
  278. // Reason we need it in the first place is, that it was
  279. // ignored at some point.
  280. dbUpdateChan <- dbUpdateJob{file, dbUpdateDeleteFile}
  281. changed++
  282. } else {
  283. // We can't pull an invalid file.
  284. f.newPullError(file.Name, fs.ErrInvalidFilename)
  285. }
  286. case file.IsDeleted():
  287. if file.IsDirectory() {
  288. // Perform directory deletions at the end, as we may have
  289. // files to delete inside them before we get to that point.
  290. dirDeletions = append(dirDeletions, file)
  291. } else if file.IsSymlink() {
  292. f.deleteFile(file, dbUpdateChan, scanChan)
  293. } else {
  294. df, ok := f.fset.Get(protocol.LocalDeviceID, file.Name)
  295. // Local file can be already deleted, but with a lower version
  296. // number, hence the deletion coming in again as part of
  297. // WithNeed, furthermore, the file can simply be of the wrong
  298. // type if we haven't yet managed to pull it.
  299. if ok && !df.IsDeleted() && !df.IsSymlink() && !df.IsDirectory() && !df.IsInvalid() {
  300. fileDeletions[file.Name] = file
  301. // Put files into buckets per first hash
  302. key := string(df.Blocks[0].Hash)
  303. buckets[key] = append(buckets[key], df)
  304. } else {
  305. f.deleteFileWithCurrent(file, df, ok, dbUpdateChan, scanChan)
  306. }
  307. }
  308. changed++
  309. case file.Type == protocol.FileInfoTypeFile:
  310. curFile, hasCurFile := f.fset.Get(protocol.LocalDeviceID, file.Name)
  311. if _, need := blockDiff(curFile.Blocks, file.Blocks); hasCurFile && len(need) == 0 {
  312. // We are supposed to copy the entire file, and then fetch nothing. We
  313. // are only updating metadata, so we don't actually *need* to make the
  314. // copy.
  315. f.shortcutFile(file, curFile, dbUpdateChan)
  316. } else {
  317. // Queue files for processing after directories and symlinks.
  318. f.queue.Push(file.Name, file.Size, file.ModTime())
  319. }
  320. case runtime.GOOS == "windows" && file.IsSymlink():
  321. f.resetPullError(file.Name)
  322. file.SetUnsupported(f.shortID)
  323. l.Debugln(f, "Invalidating symlink (unsupported)", file.Name)
  324. dbUpdateChan <- dbUpdateJob{file, dbUpdateInvalidate}
  325. changed++
  326. case file.IsDirectory() && !file.IsSymlink():
  327. changed++
  328. l.Debugln(f, "Handling directory", file.Name)
  329. if f.checkParent(file.Name, scanChan) {
  330. f.handleDir(file, dbUpdateChan, scanChan)
  331. }
  332. case file.IsSymlink():
  333. changed++
  334. l.Debugln(f, "Handling symlink", file.Name)
  335. if f.checkParent(file.Name, scanChan) {
  336. f.handleSymlink(file, dbUpdateChan, scanChan)
  337. }
  338. default:
  339. l.Warnln(file)
  340. panic("unhandleable item type, can't happen")
  341. }
  342. return true
  343. })
  344. select {
  345. case <-f.ctx.Done():
  346. return changed, nil, nil, f.ctx.Err()
  347. default:
  348. }
  349. // Now do the file queue. Reorder it according to configuration.
  350. switch f.Order {
  351. case config.OrderRandom:
  352. f.queue.Shuffle()
  353. case config.OrderAlphabetic:
  354. // The queue is already in alphabetic order.
  355. case config.OrderSmallestFirst:
  356. f.queue.SortSmallestFirst()
  357. case config.OrderLargestFirst:
  358. f.queue.SortLargestFirst()
  359. case config.OrderOldestFirst:
  360. f.queue.SortOldestFirst()
  361. case config.OrderNewestFirst:
  362. f.queue.SortNewestFirst()
  363. }
  364. // Process the file queue.
  365. nextFile:
  366. for {
  367. select {
  368. case <-f.ctx.Done():
  369. return changed, fileDeletions, dirDeletions, f.ctx.Err()
  370. default:
  371. }
  372. fileName, ok := f.queue.Pop()
  373. if !ok {
  374. break
  375. }
  376. f.resetPullError(fileName)
  377. fi, ok := f.fset.GetGlobal(fileName)
  378. if !ok {
  379. // File is no longer in the index. Mark it as done and drop it.
  380. f.queue.Done(fileName)
  381. continue
  382. }
  383. if fi.IsDeleted() || fi.IsInvalid() || fi.Type != protocol.FileInfoTypeFile {
  384. // The item has changed type or status in the index while we
  385. // were processing directories above.
  386. f.queue.Done(fileName)
  387. continue
  388. }
  389. if !f.checkParent(fi.Name, scanChan) {
  390. f.queue.Done(fileName)
  391. continue
  392. }
  393. // Check our list of files to be removed for a match, in which case
  394. // we can just do a rename instead.
  395. key := string(fi.Blocks[0].Hash)
  396. for i, candidate := range buckets[key] {
  397. if protocol.BlocksEqual(candidate.Blocks, fi.Blocks) {
  398. // Remove the candidate from the bucket
  399. lidx := len(buckets[key]) - 1
  400. buckets[key][i] = buckets[key][lidx]
  401. buckets[key] = buckets[key][:lidx]
  402. // candidate is our current state of the file, where as the
  403. // desired state with the delete bit set is in the deletion
  404. // map.
  405. desired := fileDeletions[candidate.Name]
  406. if err := f.renameFile(candidate, desired, fi, dbUpdateChan, scanChan); err != nil {
  407. // Failed to rename, try to handle files as separate
  408. // deletions and updates.
  409. break
  410. }
  411. // Remove the pending deletion (as we performed it by renaming)
  412. delete(fileDeletions, candidate.Name)
  413. changed++
  414. f.queue.Done(fileName)
  415. continue nextFile
  416. }
  417. }
  418. devices := f.fset.Availability(fileName)
  419. for _, dev := range devices {
  420. if _, ok := f.model.Connection(dev); ok {
  421. changed++
  422. // Handle the file normally, by coping and pulling, etc.
  423. f.handleFile(fi, copyChan, dbUpdateChan)
  424. continue nextFile
  425. }
  426. }
  427. f.newPullError(fileName, errNotAvailable)
  428. f.queue.Done(fileName)
  429. }
  430. return changed, fileDeletions, dirDeletions, nil
  431. }
  432. func (f *sendReceiveFolder) processDeletions(fileDeletions map[string]protocol.FileInfo, dirDeletions []protocol.FileInfo, dbUpdateChan chan<- dbUpdateJob, scanChan chan<- string) {
  433. for _, file := range fileDeletions {
  434. select {
  435. case <-f.ctx.Done():
  436. return
  437. default:
  438. }
  439. f.resetPullError(file.Name)
  440. f.deleteFile(file, dbUpdateChan, scanChan)
  441. }
  442. // Process in reverse order to delete depth first
  443. for i := range dirDeletions {
  444. select {
  445. case <-f.ctx.Done():
  446. return
  447. default:
  448. }
  449. dir := dirDeletions[len(dirDeletions)-i-1]
  450. f.resetPullError(dir.Name)
  451. l.Debugln(f, "Deleting dir", dir.Name)
  452. f.deleteDir(dir, dbUpdateChan, scanChan)
  453. }
  454. }
  455. // handleDir creates or updates the given directory
  456. func (f *sendReceiveFolder) handleDir(file protocol.FileInfo, dbUpdateChan chan<- dbUpdateJob, scanChan chan<- string) {
  457. // Used in the defer closure below, updated by the function body. Take
  458. // care not declare another err.
  459. var err error
  460. f.resetPullError(file.Name)
  461. f.evLogger.Log(events.ItemStarted, map[string]string{
  462. "folder": f.folderID,
  463. "item": file.Name,
  464. "type": "dir",
  465. "action": "update",
  466. })
  467. defer func() {
  468. f.evLogger.Log(events.ItemFinished, map[string]interface{}{
  469. "folder": f.folderID,
  470. "item": file.Name,
  471. "error": events.Error(err),
  472. "type": "dir",
  473. "action": "update",
  474. })
  475. }()
  476. mode := fs.FileMode(file.Permissions & 0777)
  477. if f.IgnorePerms || file.NoPermissions {
  478. mode = 0777
  479. }
  480. if shouldDebug() {
  481. curFile, _ := f.fset.Get(protocol.LocalDeviceID, file.Name)
  482. l.Debugf("need dir\n\t%v\n\t%v", file, curFile)
  483. }
  484. info, err := f.fs.Lstat(file.Name)
  485. switch {
  486. // There is already something under that name, we need to handle that.
  487. // Unless it already is a directory, as we only track permissions,
  488. // that don't result in a conflict.
  489. case err == nil && !info.IsDir():
  490. // Check that it is what we have in the database.
  491. curFile, hasCurFile := f.model.CurrentFolderFile(f.folderID, file.Name)
  492. if err := f.scanIfItemChanged(info, curFile, hasCurFile, scanChan); err != nil {
  493. err = errors.Wrap(err, "handling dir")
  494. f.newPullError(file.Name, err)
  495. return
  496. }
  497. // Remove it to replace with the dir.
  498. if !curFile.IsSymlink() && f.inConflict(curFile.Version, file.Version) {
  499. // The new file has been changed in conflict with the existing one. We
  500. // should file it away as a conflict instead of just removing or
  501. // archiving. Also merge with the version vector we had, to indicate
  502. // we have resolved the conflict.
  503. // Symlinks aren't checked for conflicts.
  504. file.Version = file.Version.Merge(curFile.Version)
  505. err = f.inWritableDir(func(name string) error {
  506. return f.moveForConflict(name, file.ModifiedBy.String(), scanChan)
  507. }, curFile.Name)
  508. } else {
  509. err = f.deleteItemOnDisk(curFile, scanChan)
  510. }
  511. if err != nil {
  512. f.newPullError(file.Name, err)
  513. return
  514. }
  515. fallthrough
  516. // The directory doesn't exist, so we create it with the right
  517. // mode bits from the start.
  518. case err != nil && fs.IsNotExist(err):
  519. // We declare a function that acts on only the path name, so
  520. // we can pass it to InWritableDir. We use a regular Mkdir and
  521. // not MkdirAll because the parent should already exist.
  522. mkdir := func(path string) error {
  523. err = f.fs.Mkdir(path, mode)
  524. if err != nil || f.IgnorePerms || file.NoPermissions {
  525. return err
  526. }
  527. // Copy the parent owner and group, if we are supposed to do that.
  528. if err := f.maybeCopyOwner(path); err != nil {
  529. return err
  530. }
  531. // Stat the directory so we can check its permissions.
  532. info, err := f.fs.Lstat(path)
  533. if err != nil {
  534. return err
  535. }
  536. // Mask for the bits we want to preserve and add them in to the
  537. // directories permissions.
  538. return f.fs.Chmod(path, mode|(info.Mode()&retainBits))
  539. }
  540. if err = f.inWritableDir(mkdir, file.Name); err == nil {
  541. dbUpdateChan <- dbUpdateJob{file, dbUpdateHandleDir}
  542. } else {
  543. f.newPullError(file.Name, errors.Wrap(err, "creating directory"))
  544. }
  545. return
  546. // Weird error when stat()'ing the dir. Probably won't work to do
  547. // anything else with it if we can't even stat() it.
  548. case err != nil:
  549. f.newPullError(file.Name, errors.Wrap(err, "checking file to be replaced"))
  550. return
  551. }
  552. // The directory already exists, so we just correct the mode bits. (We
  553. // don't handle modification times on directories, because that sucks...)
  554. // It's OK to change mode bits on stuff within non-writable directories.
  555. if !f.IgnorePerms && !file.NoPermissions {
  556. if err := f.fs.Chmod(file.Name, mode|(fs.FileMode(info.Mode())&retainBits)); err != nil {
  557. f.newPullError(file.Name, err)
  558. return
  559. }
  560. }
  561. dbUpdateChan <- dbUpdateJob{file, dbUpdateHandleDir}
  562. }
  563. // checkParent verifies that the thing we are handling lives inside a directory,
  564. // and not a symlink or regular file. It also resurrects missing parent dirs.
  565. func (f *sendReceiveFolder) checkParent(file string, scanChan chan<- string) bool {
  566. parent := filepath.Dir(file)
  567. if err := osutil.TraversesSymlink(f.fs, parent); err != nil {
  568. f.newPullError(file, errors.Wrap(err, "checking parent dirs"))
  569. return false
  570. }
  571. // issues #114 and #4475: This works around a race condition
  572. // between two devices, when one device removes a directory and the
  573. // other creates a file in it. However that happens, we end up with
  574. // a directory for "foo" with the delete bit, but a file "foo/bar"
  575. // that we want to sync. We never create the directory, and hence
  576. // fail to create the file and end up looping forever on it. This
  577. // breaks that by creating the directory and scheduling a scan,
  578. // where it will be found and the delete bit on it removed. The
  579. // user can then clean up as they like...
  580. // This can also occur if an entire tree structure was deleted, but only
  581. // a leave has been scanned.
  582. if _, err := f.fs.Lstat(parent); !fs.IsNotExist(err) {
  583. l.Debugf("%v parent not missing %v", f, file)
  584. return true
  585. }
  586. l.Debugf("%v resurrecting parent directory of %v", f, file)
  587. if err := f.fs.MkdirAll(parent, 0755); err != nil {
  588. f.newPullError(file, errors.Wrap(err, "resurrecting parent dir"))
  589. return false
  590. }
  591. scanChan <- parent
  592. return true
  593. }
  594. // handleSymlink creates or updates the given symlink
  595. func (f *sendReceiveFolder) handleSymlink(file protocol.FileInfo, dbUpdateChan chan<- dbUpdateJob, scanChan chan<- string) {
  596. // Used in the defer closure below, updated by the function body. Take
  597. // care not declare another err.
  598. var err error
  599. f.resetPullError(file.Name)
  600. f.evLogger.Log(events.ItemStarted, map[string]string{
  601. "folder": f.folderID,
  602. "item": file.Name,
  603. "type": "symlink",
  604. "action": "update",
  605. })
  606. defer func() {
  607. f.evLogger.Log(events.ItemFinished, map[string]interface{}{
  608. "folder": f.folderID,
  609. "item": file.Name,
  610. "error": events.Error(err),
  611. "type": "symlink",
  612. "action": "update",
  613. })
  614. }()
  615. if shouldDebug() {
  616. curFile, _ := f.fset.Get(protocol.LocalDeviceID, file.Name)
  617. l.Debugf("need symlink\n\t%v\n\t%v", file, curFile)
  618. }
  619. if len(file.SymlinkTarget) == 0 {
  620. // Index entry from a Syncthing predating the support for including
  621. // the link target in the index entry. We log this as an error.
  622. f.newPullError(file.Name, errIncompatibleSymlink)
  623. return
  624. }
  625. // There is already something under that name, we need to handle that.
  626. if info, err := f.fs.Lstat(file.Name); err == nil {
  627. // Check that it is what we have in the database.
  628. curFile, hasCurFile := f.model.CurrentFolderFile(f.folderID, file.Name)
  629. if err := f.scanIfItemChanged(info, curFile, hasCurFile, scanChan); err != nil {
  630. err = errors.Wrap(err, "handling symlink")
  631. f.newPullError(file.Name, err)
  632. return
  633. }
  634. // Remove it to replace with the symlink. This also handles the
  635. // "change symlink type" path.
  636. if !curFile.IsDirectory() && !curFile.IsSymlink() && f.inConflict(curFile.Version, file.Version) {
  637. // The new file has been changed in conflict with the existing one. We
  638. // should file it away as a conflict instead of just removing or
  639. // archiving. Also merge with the version vector we had, to indicate
  640. // we have resolved the conflict.
  641. // Directories and symlinks aren't checked for conflicts.
  642. file.Version = file.Version.Merge(curFile.Version)
  643. err = f.inWritableDir(func(name string) error {
  644. return f.moveForConflict(name, file.ModifiedBy.String(), scanChan)
  645. }, curFile.Name)
  646. } else {
  647. err = f.deleteItemOnDisk(curFile, scanChan)
  648. }
  649. if err != nil {
  650. f.newPullError(file.Name, errors.Wrap(err, "symlink remove"))
  651. return
  652. }
  653. }
  654. // We declare a function that acts on only the path name, so
  655. // we can pass it to InWritableDir.
  656. createLink := func(path string) error {
  657. if err := f.fs.CreateSymlink(file.SymlinkTarget, path); err != nil {
  658. return err
  659. }
  660. return f.maybeCopyOwner(path)
  661. }
  662. if err = f.inWritableDir(createLink, file.Name); err == nil {
  663. dbUpdateChan <- dbUpdateJob{file, dbUpdateHandleSymlink}
  664. } else {
  665. f.newPullError(file.Name, errors.Wrap(err, "symlink create"))
  666. }
  667. }
  668. // deleteDir attempts to remove a directory that was deleted on a remote
  669. func (f *sendReceiveFolder) deleteDir(file protocol.FileInfo, dbUpdateChan chan<- dbUpdateJob, scanChan chan<- string) {
  670. // Used in the defer closure below, updated by the function body. Take
  671. // care not declare another err.
  672. var err error
  673. f.evLogger.Log(events.ItemStarted, map[string]string{
  674. "folder": f.folderID,
  675. "item": file.Name,
  676. "type": "dir",
  677. "action": "delete",
  678. })
  679. defer func() {
  680. f.evLogger.Log(events.ItemFinished, map[string]interface{}{
  681. "folder": f.folderID,
  682. "item": file.Name,
  683. "error": events.Error(err),
  684. "type": "dir",
  685. "action": "delete",
  686. })
  687. }()
  688. if err = f.deleteDirOnDisk(file.Name, scanChan); err != nil {
  689. f.newPullError(file.Name, errors.Wrap(err, "delete dir"))
  690. return
  691. }
  692. dbUpdateChan <- dbUpdateJob{file, dbUpdateDeleteDir}
  693. }
  694. // deleteFile attempts to delete the given file
  695. func (f *sendReceiveFolder) deleteFile(file protocol.FileInfo, dbUpdateChan chan<- dbUpdateJob, scanChan chan<- string) {
  696. cur, hasCur := f.fset.Get(protocol.LocalDeviceID, file.Name)
  697. f.deleteFileWithCurrent(file, cur, hasCur, dbUpdateChan, scanChan)
  698. }
  699. func (f *sendReceiveFolder) deleteFileWithCurrent(file, cur protocol.FileInfo, hasCur bool, dbUpdateChan chan<- dbUpdateJob, scanChan chan<- string) {
  700. // Used in the defer closure below, updated by the function body. Take
  701. // care not declare another err.
  702. var err error
  703. l.Debugln(f, "Deleting file", file.Name)
  704. f.resetPullError(file.Name)
  705. f.evLogger.Log(events.ItemStarted, map[string]string{
  706. "folder": f.folderID,
  707. "item": file.Name,
  708. "type": "file",
  709. "action": "delete",
  710. })
  711. defer func() {
  712. if err != nil {
  713. f.newPullError(file.Name, errors.Wrap(err, "delete file"))
  714. }
  715. f.evLogger.Log(events.ItemFinished, map[string]interface{}{
  716. "folder": f.folderID,
  717. "item": file.Name,
  718. "error": events.Error(err),
  719. "type": "file",
  720. "action": "delete",
  721. })
  722. }()
  723. if !hasCur {
  724. // We should never try to pull a deletion for a file we don't have in the DB.
  725. l.Debugln(f, "not deleting file we don't have", file.Name)
  726. dbUpdateChan <- dbUpdateJob{file, dbUpdateDeleteFile}
  727. return
  728. }
  729. if err = f.checkToBeDeleted(cur, scanChan); err != nil {
  730. return
  731. }
  732. // We are asked to delete a file, but what we have on disk and in db
  733. // is a directory. Something is wrong here, should probably not happen.
  734. if cur.IsDirectory() {
  735. err = errUnexpectedDirOnFileDel
  736. return
  737. }
  738. if f.inConflict(cur.Version, file.Version) {
  739. // There is a conflict here, which shouldn't happen as deletions
  740. // always lose. Merge the version vector of the file we have
  741. // locally and commit it to db to resolve the conflict.
  742. cur.Version = cur.Version.Merge(file.Version)
  743. dbUpdateChan <- dbUpdateJob{cur, dbUpdateHandleFile}
  744. return
  745. }
  746. if f.versioner != nil && !cur.IsSymlink() {
  747. err = f.inWritableDir(f.versioner.Archive, file.Name)
  748. } else {
  749. err = f.inWritableDir(f.fs.Remove, file.Name)
  750. }
  751. if err == nil || fs.IsNotExist(err) {
  752. // It was removed or it doesn't exist to start with
  753. dbUpdateChan <- dbUpdateJob{file, dbUpdateDeleteFile}
  754. return
  755. }
  756. if _, serr := f.fs.Lstat(file.Name); serr != nil && !fs.IsPermission(serr) {
  757. // We get an error just looking at the file, and it's not a permission
  758. // problem. Lets assume the error is in fact some variant of "file
  759. // does not exist" (possibly expressed as some parent being a file and
  760. // not a directory etc) and that the delete is handled.
  761. err = nil
  762. dbUpdateChan <- dbUpdateJob{file, dbUpdateDeleteFile}
  763. }
  764. }
  765. // renameFile attempts to rename an existing file to a destination
  766. // and set the right attributes on it.
  767. func (f *sendReceiveFolder) renameFile(cur, source, target protocol.FileInfo, dbUpdateChan chan<- dbUpdateJob, scanChan chan<- string) error {
  768. // Used in the defer closure below, updated by the function body. Take
  769. // care not declare another err.
  770. var err error
  771. f.evLogger.Log(events.ItemStarted, map[string]string{
  772. "folder": f.folderID,
  773. "item": source.Name,
  774. "type": "file",
  775. "action": "delete",
  776. })
  777. f.evLogger.Log(events.ItemStarted, map[string]string{
  778. "folder": f.folderID,
  779. "item": target.Name,
  780. "type": "file",
  781. "action": "update",
  782. })
  783. defer func() {
  784. f.evLogger.Log(events.ItemFinished, map[string]interface{}{
  785. "folder": f.folderID,
  786. "item": source.Name,
  787. "error": events.Error(err),
  788. "type": "file",
  789. "action": "delete",
  790. })
  791. f.evLogger.Log(events.ItemFinished, map[string]interface{}{
  792. "folder": f.folderID,
  793. "item": target.Name,
  794. "error": events.Error(err),
  795. "type": "file",
  796. "action": "update",
  797. })
  798. }()
  799. l.Debugln(f, "taking rename shortcut", source.Name, "->", target.Name)
  800. // Check that source is compatible with what we have in the DB
  801. if err = f.checkToBeDeleted(cur, scanChan); err != nil {
  802. return err
  803. }
  804. // Check that the target corresponds to what we have in the DB
  805. curTarget, ok := f.fset.Get(protocol.LocalDeviceID, target.Name)
  806. switch stat, serr := f.fs.Lstat(target.Name); {
  807. case serr != nil && fs.IsNotExist(serr):
  808. if !ok || curTarget.IsDeleted() {
  809. break
  810. }
  811. scanChan <- target.Name
  812. err = errModified
  813. case serr != nil:
  814. // We can't check whether the file changed as compared to the db,
  815. // do not delete.
  816. err = serr
  817. case !ok:
  818. // Target appeared from nowhere
  819. scanChan <- target.Name
  820. err = errModified
  821. default:
  822. var fi protocol.FileInfo
  823. if fi, err = scanner.CreateFileInfo(stat, target.Name, f.fs); err == nil {
  824. if !fi.IsEquivalentOptional(curTarget, f.ModTimeWindow(), f.IgnorePerms, true, protocol.LocalAllFlags) {
  825. // Target changed
  826. scanChan <- target.Name
  827. err = errModified
  828. }
  829. }
  830. }
  831. if err != nil {
  832. return err
  833. }
  834. tempName := fs.TempName(target.Name)
  835. if f.versioner != nil {
  836. err = f.CheckAvailableSpace(source.Size)
  837. if err == nil {
  838. err = osutil.Copy(f.fs, f.fs, source.Name, tempName)
  839. if err == nil {
  840. err = f.inWritableDir(f.versioner.Archive, source.Name)
  841. }
  842. }
  843. } else {
  844. err = osutil.RenameOrCopy(f.fs, f.fs, source.Name, tempName)
  845. }
  846. if err != nil {
  847. return err
  848. }
  849. blockStatsMut.Lock()
  850. blockStats["total"] += len(target.Blocks)
  851. blockStats["renamed"] += len(target.Blocks)
  852. blockStatsMut.Unlock()
  853. // The file was renamed, so we have handled both the necessary delete
  854. // of the source and the creation of the target temp file. Fix-up the metadata,
  855. // update the local index of the target file and rename from temp to real name.
  856. if err = f.performFinish(target, curTarget, true, tempName, dbUpdateChan, scanChan); err != nil {
  857. return err
  858. }
  859. dbUpdateChan <- dbUpdateJob{source, dbUpdateDeleteFile}
  860. return nil
  861. }
  862. // This is the flow of data and events here, I think...
  863. //
  864. // +-----------------------+
  865. // | | - - - - > ItemStarted
  866. // | handleFile | - - - - > ItemFinished (on shortcuts)
  867. // | |
  868. // +-----------------------+
  869. // |
  870. // | copyChan (copyBlocksState; unless shortcut taken)
  871. // |
  872. // | +-----------------------+
  873. // | | +-----------------------+
  874. // +--->| | |
  875. // | | copierRoutine |
  876. // +-| |
  877. // +-----------------------+
  878. // |
  879. // | pullChan (sharedPullerState)
  880. // |
  881. // | +-----------------------+
  882. // | | +-----------------------+
  883. // +-->| | |
  884. // | | pullerRoutine |
  885. // +-| |
  886. // +-----------------------+
  887. // |
  888. // | finisherChan (sharedPullerState)
  889. // |
  890. // | +-----------------------+
  891. // | | |
  892. // +-->| finisherRoutine | - - - - > ItemFinished
  893. // | |
  894. // +-----------------------+
  895. // handleFile queues the copies and pulls as necessary for a single new or
  896. // changed file.
  897. func (f *sendReceiveFolder) handleFile(file protocol.FileInfo, copyChan chan<- copyBlocksState, dbUpdateChan chan<- dbUpdateJob) {
  898. curFile, hasCurFile := f.fset.Get(protocol.LocalDeviceID, file.Name)
  899. have, _ := blockDiff(curFile.Blocks, file.Blocks)
  900. tempName := fs.TempName(file.Name)
  901. populateOffsets(file.Blocks)
  902. blocks := make([]protocol.BlockInfo, 0, len(file.Blocks))
  903. reused := make([]int32, 0, len(file.Blocks))
  904. // Check for an old temporary file which might have some blocks we could
  905. // reuse.
  906. tempBlocks, err := scanner.HashFile(f.ctx, f.fs, tempName, file.BlockSize(), nil, false)
  907. if err == nil {
  908. // Check for any reusable blocks in the temp file
  909. tempCopyBlocks, _ := blockDiff(tempBlocks, file.Blocks)
  910. // block.String() returns a string unique to the block
  911. existingBlocks := make(map[string]struct{}, len(tempCopyBlocks))
  912. for _, block := range tempCopyBlocks {
  913. existingBlocks[block.String()] = struct{}{}
  914. }
  915. // Since the blocks are already there, we don't need to get them.
  916. for i, block := range file.Blocks {
  917. _, ok := existingBlocks[block.String()]
  918. if !ok {
  919. blocks = append(blocks, block)
  920. } else {
  921. reused = append(reused, int32(i))
  922. }
  923. }
  924. // The sharedpullerstate will know which flags to use when opening the
  925. // temp file depending if we are reusing any blocks or not.
  926. if len(reused) == 0 {
  927. // Otherwise, discard the file ourselves in order for the
  928. // sharedpuller not to panic when it fails to exclusively create a
  929. // file which already exists
  930. f.inWritableDir(f.fs.Remove, tempName)
  931. }
  932. } else {
  933. // Copy the blocks, as we don't want to shuffle them on the FileInfo
  934. blocks = append(blocks, file.Blocks...)
  935. }
  936. // Shuffle the blocks
  937. rand.Shuffle(blocks)
  938. f.evLogger.Log(events.ItemStarted, map[string]string{
  939. "folder": f.folderID,
  940. "item": file.Name,
  941. "type": "file",
  942. "action": "update",
  943. })
  944. s := sharedPullerState{
  945. file: file,
  946. fs: f.fs,
  947. folder: f.folderID,
  948. tempName: tempName,
  949. realName: file.Name,
  950. copyTotal: len(blocks),
  951. copyNeeded: len(blocks),
  952. reused: len(reused),
  953. updated: time.Now(),
  954. available: reused,
  955. availableUpdated: time.Now(),
  956. ignorePerms: f.IgnorePerms || file.NoPermissions,
  957. hasCurFile: hasCurFile,
  958. curFile: curFile,
  959. mut: sync.NewRWMutex(),
  960. sparse: !f.DisableSparseFiles,
  961. created: time.Now(),
  962. }
  963. l.Debugf("%v need file %s; copy %d, reused %v", f, file.Name, len(blocks), len(reused))
  964. cs := copyBlocksState{
  965. sharedPullerState: &s,
  966. blocks: blocks,
  967. have: len(have),
  968. }
  969. copyChan <- cs
  970. }
  971. // blockDiff returns lists of common and missing (to transform src into tgt)
  972. // blocks. Both block lists must have been created with the same block size.
  973. func blockDiff(src, tgt []protocol.BlockInfo) ([]protocol.BlockInfo, []protocol.BlockInfo) {
  974. if len(tgt) == 0 {
  975. return nil, nil
  976. }
  977. if len(src) == 0 {
  978. // Copy the entire file
  979. return nil, tgt
  980. }
  981. have := make([]protocol.BlockInfo, 0, len(src))
  982. need := make([]protocol.BlockInfo, 0, len(tgt))
  983. for i := range tgt {
  984. if i >= len(src) {
  985. return have, append(need, tgt[i:]...)
  986. }
  987. if !bytes.Equal(tgt[i].Hash, src[i].Hash) {
  988. // Copy differing block
  989. need = append(need, tgt[i])
  990. } else {
  991. have = append(have, tgt[i])
  992. }
  993. }
  994. return have, need
  995. }
  996. // populateOffsets sets the Offset field on each block
  997. func populateOffsets(blocks []protocol.BlockInfo) {
  998. var offset int64
  999. for i := range blocks {
  1000. blocks[i].Offset = offset
  1001. offset += int64(blocks[i].Size)
  1002. }
  1003. }
  1004. // shortcutFile sets file mode and modification time, when that's the only
  1005. // thing that has changed.
  1006. func (f *sendReceiveFolder) shortcutFile(file, curFile protocol.FileInfo, dbUpdateChan chan<- dbUpdateJob) {
  1007. l.Debugln(f, "taking shortcut on", file.Name)
  1008. f.resetPullError(file.Name)
  1009. f.evLogger.Log(events.ItemStarted, map[string]string{
  1010. "folder": f.folderID,
  1011. "item": file.Name,
  1012. "type": "file",
  1013. "action": "metadata",
  1014. })
  1015. var err error
  1016. defer f.evLogger.Log(events.ItemFinished, map[string]interface{}{
  1017. "folder": f.folderID,
  1018. "item": file.Name,
  1019. "error": events.Error(err),
  1020. "type": "file",
  1021. "action": "metadata",
  1022. })
  1023. f.queue.Done(file.Name)
  1024. if !f.IgnorePerms && !file.NoPermissions {
  1025. if err = f.fs.Chmod(file.Name, fs.FileMode(file.Permissions&0777)); err != nil {
  1026. f.newPullError(file.Name, err)
  1027. return
  1028. }
  1029. }
  1030. f.fs.Chtimes(file.Name, file.ModTime(), file.ModTime()) // never fails
  1031. // This may have been a conflict. We should merge the version vectors so
  1032. // that our clock doesn't move backwards.
  1033. file.Version = file.Version.Merge(curFile.Version)
  1034. dbUpdateChan <- dbUpdateJob{file, dbUpdateShortcutFile}
  1035. }
  1036. // copierRoutine reads copierStates until the in channel closes and performs
  1037. // the relevant copies when possible, or passes it to the puller routine.
  1038. func (f *sendReceiveFolder) copierRoutine(in <-chan copyBlocksState, pullChan chan<- pullBlockState, out chan<- *sharedPullerState) {
  1039. buf := protocol.BufferPool.Get(protocol.MinBlockSize)
  1040. defer func() {
  1041. protocol.BufferPool.Put(buf)
  1042. }()
  1043. for state := range in {
  1044. if err := f.CheckAvailableSpace(state.file.Size); err != nil {
  1045. state.fail(err)
  1046. // Nothing more to do for this failed file, since it would use to much disk space
  1047. out <- state.sharedPullerState
  1048. continue
  1049. }
  1050. dstFd, err := state.tempFile()
  1051. if err != nil {
  1052. // Nothing more to do for this failed file, since we couldn't create a temporary for it.
  1053. out <- state.sharedPullerState
  1054. continue
  1055. }
  1056. f.model.progressEmitter.Register(state.sharedPullerState)
  1057. folderFilesystems := make(map[string]fs.Filesystem)
  1058. var folders []string
  1059. for folder, cfg := range f.model.cfg.Folders() {
  1060. folderFilesystems[folder] = cfg.Filesystem()
  1061. folders = append(folders, folder)
  1062. }
  1063. var file fs.File
  1064. var weakHashFinder *weakhash.Finder
  1065. blocksPercentChanged := 0
  1066. if tot := len(state.file.Blocks); tot > 0 {
  1067. blocksPercentChanged = (tot - state.have) * 100 / tot
  1068. }
  1069. if blocksPercentChanged >= f.WeakHashThresholdPct {
  1070. hashesToFind := make([]uint32, 0, len(state.blocks))
  1071. for _, block := range state.blocks {
  1072. if block.WeakHash != 0 {
  1073. hashesToFind = append(hashesToFind, block.WeakHash)
  1074. }
  1075. }
  1076. if len(hashesToFind) > 0 {
  1077. file, err = f.fs.Open(state.file.Name)
  1078. if err == nil {
  1079. weakHashFinder, err = weakhash.NewFinder(f.ctx, file, state.file.BlockSize(), hashesToFind)
  1080. if err != nil {
  1081. l.Debugln("weak hasher", err)
  1082. }
  1083. }
  1084. } else {
  1085. l.Debugf("not weak hashing %s. file did not contain any weak hashes", state.file.Name)
  1086. }
  1087. } else {
  1088. l.Debugf("not weak hashing %s. not enough changed %.02f < %d", state.file.Name, blocksPercentChanged, f.WeakHashThresholdPct)
  1089. }
  1090. blocks:
  1091. for _, block := range state.blocks {
  1092. select {
  1093. case <-f.ctx.Done():
  1094. state.fail(errors.Wrap(f.ctx.Err(), "folder stopped"))
  1095. break blocks
  1096. default:
  1097. }
  1098. if !f.DisableSparseFiles && state.reused == 0 && block.IsEmpty() {
  1099. // The block is a block of all zeroes, and we are not reusing
  1100. // a temp file, so there is no need to do anything with it.
  1101. // If we were reusing a temp file and had this block to copy,
  1102. // it would be because the block in the temp file was *not* a
  1103. // block of all zeroes, so then we should not skip it.
  1104. // Pretend we copied it.
  1105. state.copiedFromOrigin()
  1106. state.copyDone(block)
  1107. continue
  1108. }
  1109. buf = protocol.BufferPool.Upgrade(buf, int(block.Size))
  1110. found, err := weakHashFinder.Iterate(block.WeakHash, buf, func(offset int64) bool {
  1111. if verifyBuffer(buf, block) != nil {
  1112. return true
  1113. }
  1114. _, err = dstFd.WriteAt(buf, block.Offset)
  1115. if err != nil {
  1116. state.fail(errors.Wrap(err, "dst write"))
  1117. }
  1118. if offset == block.Offset {
  1119. state.copiedFromOrigin()
  1120. } else {
  1121. state.copiedFromOriginShifted()
  1122. }
  1123. return false
  1124. })
  1125. if err != nil {
  1126. l.Debugln("weak hasher iter", err)
  1127. }
  1128. if !found {
  1129. found = f.model.finder.Iterate(folders, block.Hash, func(folder, path string, index int32) bool {
  1130. fs := folderFilesystems[folder]
  1131. fd, err := fs.Open(path)
  1132. if err != nil {
  1133. return false
  1134. }
  1135. _, err = fd.ReadAt(buf, int64(state.file.BlockSize())*int64(index))
  1136. fd.Close()
  1137. if err != nil {
  1138. return false
  1139. }
  1140. if err := verifyBuffer(buf, block); err != nil {
  1141. l.Debugln("Finder failed to verify buffer", err)
  1142. return false
  1143. }
  1144. _, err = dstFd.WriteAt(buf, block.Offset)
  1145. if err != nil {
  1146. state.fail(errors.Wrap(err, "dst write"))
  1147. }
  1148. if path == state.file.Name {
  1149. state.copiedFromOrigin()
  1150. }
  1151. return true
  1152. })
  1153. }
  1154. if state.failed() != nil {
  1155. break
  1156. }
  1157. if !found {
  1158. state.pullStarted()
  1159. ps := pullBlockState{
  1160. sharedPullerState: state.sharedPullerState,
  1161. block: block,
  1162. }
  1163. pullChan <- ps
  1164. } else {
  1165. state.copyDone(block)
  1166. }
  1167. }
  1168. if file != nil {
  1169. // os.File used to return invalid argument if nil.
  1170. // fs.File panics as it's an interface.
  1171. file.Close()
  1172. }
  1173. out <- state.sharedPullerState
  1174. }
  1175. }
  1176. func verifyBuffer(buf []byte, block protocol.BlockInfo) error {
  1177. if len(buf) != int(block.Size) {
  1178. return fmt.Errorf("length mismatch %d != %d", len(buf), block.Size)
  1179. }
  1180. hf := sha256.New()
  1181. _, err := hf.Write(buf)
  1182. if err != nil {
  1183. return err
  1184. }
  1185. hash := hf.Sum(nil)
  1186. if !bytes.Equal(hash, block.Hash) {
  1187. return fmt.Errorf("hash mismatch %x != %x", hash, block.Hash)
  1188. }
  1189. return nil
  1190. }
  1191. func (f *sendReceiveFolder) pullerRoutine(in <-chan pullBlockState, out chan<- *sharedPullerState) {
  1192. requestLimiter := newByteSemaphore(f.PullerMaxPendingKiB * 1024)
  1193. wg := sync.NewWaitGroup()
  1194. for state := range in {
  1195. if state.failed() != nil {
  1196. out <- state.sharedPullerState
  1197. continue
  1198. }
  1199. // The requestLimiter limits how many pending block requests we have
  1200. // ongoing at any given time, based on the size of the blocks
  1201. // themselves.
  1202. state := state
  1203. bytes := int(state.block.Size)
  1204. requestLimiter.take(bytes)
  1205. wg.Add(1)
  1206. go func() {
  1207. defer wg.Done()
  1208. defer requestLimiter.give(bytes)
  1209. f.pullBlock(state, out)
  1210. }()
  1211. }
  1212. wg.Wait()
  1213. }
  1214. func (f *sendReceiveFolder) pullBlock(state pullBlockState, out chan<- *sharedPullerState) {
  1215. // Get an fd to the temporary file. Technically we don't need it until
  1216. // after fetching the block, but if we run into an error here there is
  1217. // no point in issuing the request to the network.
  1218. fd, err := state.tempFile()
  1219. if err != nil {
  1220. out <- state.sharedPullerState
  1221. return
  1222. }
  1223. if !f.DisableSparseFiles && state.reused == 0 && state.block.IsEmpty() {
  1224. // There is no need to request a block of all zeroes. Pretend we
  1225. // requested it and handled it correctly.
  1226. state.pullDone(state.block)
  1227. out <- state.sharedPullerState
  1228. return
  1229. }
  1230. var lastError error
  1231. candidates := f.model.Availability(f.folderID, state.file, state.block)
  1232. for {
  1233. select {
  1234. case <-f.ctx.Done():
  1235. state.fail(errors.Wrap(f.ctx.Err(), "folder stopped"))
  1236. return
  1237. default:
  1238. }
  1239. // Select the least busy device to pull the block from. If we found no
  1240. // feasible device at all, fail the block (and in the long run, the
  1241. // file).
  1242. selected, found := activity.leastBusy(candidates)
  1243. if !found {
  1244. if lastError != nil {
  1245. state.fail(errors.Wrap(lastError, "pull"))
  1246. } else {
  1247. state.fail(errors.Wrap(errNoDevice, "pull"))
  1248. }
  1249. break
  1250. }
  1251. candidates = removeAvailability(candidates, selected)
  1252. // Fetch the block, while marking the selected device as in use so that
  1253. // leastBusy can select another device when someone else asks.
  1254. activity.using(selected)
  1255. var buf []byte
  1256. buf, lastError = f.model.requestGlobal(selected.ID, f.folderID, state.file.Name, state.block.Offset, int(state.block.Size), state.block.Hash, state.block.WeakHash, selected.FromTemporary)
  1257. activity.done(selected)
  1258. if lastError != nil {
  1259. l.Debugln("request:", f.folderID, state.file.Name, state.block.Offset, state.block.Size, "returned error:", lastError)
  1260. continue
  1261. }
  1262. // Verify that the received block matches the desired hash, if not
  1263. // try pulling it from another device.
  1264. lastError = verifyBuffer(buf, state.block)
  1265. if lastError != nil {
  1266. l.Debugln("request:", f.folderID, state.file.Name, state.block.Offset, state.block.Size, "hash mismatch")
  1267. continue
  1268. }
  1269. // Save the block data we got from the cluster
  1270. _, err = fd.WriteAt(buf, state.block.Offset)
  1271. if err != nil {
  1272. state.fail(errors.Wrap(err, "save"))
  1273. } else {
  1274. state.pullDone(state.block)
  1275. }
  1276. break
  1277. }
  1278. out <- state.sharedPullerState
  1279. }
  1280. func (f *sendReceiveFolder) performFinish(file, curFile protocol.FileInfo, hasCurFile bool, tempName string, dbUpdateChan chan<- dbUpdateJob, scanChan chan<- string) error {
  1281. // Set the correct permission bits on the new file
  1282. if !f.IgnorePerms && !file.NoPermissions {
  1283. if err := f.fs.Chmod(tempName, fs.FileMode(file.Permissions&0777)); err != nil {
  1284. return err
  1285. }
  1286. }
  1287. // Copy the parent owner and group, if we are supposed to do that.
  1288. if err := f.maybeCopyOwner(tempName); err != nil {
  1289. return err
  1290. }
  1291. if stat, err := f.fs.Lstat(file.Name); err == nil {
  1292. // There is an old file or directory already in place. We need to
  1293. // handle that.
  1294. if err := f.scanIfItemChanged(stat, curFile, hasCurFile, scanChan); err != nil {
  1295. err = errors.Wrap(err, "handling file")
  1296. f.newPullError(file.Name, err)
  1297. return err
  1298. }
  1299. if !curFile.IsDirectory() && !curFile.IsSymlink() && f.inConflict(curFile.Version, file.Version) {
  1300. // The new file has been changed in conflict with the existing one. We
  1301. // should file it away as a conflict instead of just removing or
  1302. // archiving. Also merge with the version vector we had, to indicate
  1303. // we have resolved the conflict.
  1304. // Directories and symlinks aren't checked for conflicts.
  1305. file.Version = file.Version.Merge(curFile.Version)
  1306. err = f.inWritableDir(func(name string) error {
  1307. return f.moveForConflict(name, file.ModifiedBy.String(), scanChan)
  1308. }, curFile.Name)
  1309. } else {
  1310. err = f.deleteItemOnDisk(curFile, scanChan)
  1311. }
  1312. if err != nil {
  1313. return err
  1314. }
  1315. }
  1316. // Replace the original content with the new one. If it didn't work,
  1317. // leave the temp file in place for reuse.
  1318. if err := osutil.RenameOrCopy(f.fs, f.fs, tempName, file.Name); err != nil {
  1319. return err
  1320. }
  1321. // Set the correct timestamp on the new file
  1322. f.fs.Chtimes(file.Name, file.ModTime(), file.ModTime()) // never fails
  1323. // Record the updated file in the index
  1324. dbUpdateChan <- dbUpdateJob{file, dbUpdateHandleFile}
  1325. return nil
  1326. }
  1327. func (f *sendReceiveFolder) finisherRoutine(in <-chan *sharedPullerState, dbUpdateChan chan<- dbUpdateJob, scanChan chan<- string) {
  1328. for state := range in {
  1329. if closed, err := state.finalClose(); closed {
  1330. l.Debugln(f, "closing", state.file.Name)
  1331. f.queue.Done(state.file.Name)
  1332. if err == nil {
  1333. err = f.performFinish(state.file, state.curFile, state.hasCurFile, state.tempName, dbUpdateChan, scanChan)
  1334. }
  1335. if err != nil {
  1336. f.newPullError(state.file.Name, err)
  1337. } else {
  1338. blockStatsMut.Lock()
  1339. blockStats["total"] += state.reused + state.copyTotal + state.pullTotal
  1340. blockStats["reused"] += state.reused
  1341. blockStats["pulled"] += state.pullTotal
  1342. // copyOriginShifted is counted towards copyOrigin due to progress bar reasons
  1343. // for reporting reasons we want to separate these.
  1344. blockStats["copyOrigin"] += state.copyOrigin - state.copyOriginShifted
  1345. blockStats["copyOriginShifted"] += state.copyOriginShifted
  1346. blockStats["copyElsewhere"] += state.copyTotal - state.copyOrigin
  1347. blockStatsMut.Unlock()
  1348. }
  1349. f.model.progressEmitter.Deregister(state)
  1350. f.evLogger.Log(events.ItemFinished, map[string]interface{}{
  1351. "folder": f.folderID,
  1352. "item": state.file.Name,
  1353. "error": events.Error(err),
  1354. "type": "file",
  1355. "action": "update",
  1356. })
  1357. }
  1358. }
  1359. }
  1360. // Moves the given filename to the front of the job queue
  1361. func (f *sendReceiveFolder) BringToFront(filename string) {
  1362. f.queue.BringToFront(filename)
  1363. }
  1364. func (f *sendReceiveFolder) Jobs(page, perpage int) ([]string, []string, int) {
  1365. return f.queue.Jobs(page, perpage)
  1366. }
  1367. // dbUpdaterRoutine aggregates db updates and commits them in batches no
  1368. // larger than 1000 items, and no more delayed than 2 seconds.
  1369. func (f *sendReceiveFolder) dbUpdaterRoutine(dbUpdateChan <-chan dbUpdateJob) {
  1370. const maxBatchTime = 2 * time.Second
  1371. batch := newFileInfoBatch(nil)
  1372. tick := time.NewTicker(maxBatchTime)
  1373. defer tick.Stop()
  1374. changedDirs := make(map[string]struct{})
  1375. found := false
  1376. var lastFile protocol.FileInfo
  1377. batch.flushFn = func(files []protocol.FileInfo) error {
  1378. // sync directories
  1379. for dir := range changedDirs {
  1380. delete(changedDirs, dir)
  1381. fd, err := f.fs.Open(dir)
  1382. if err != nil {
  1383. l.Debugf("fsync %q failed: %v", dir, err)
  1384. continue
  1385. }
  1386. if err := fd.Sync(); err != nil {
  1387. l.Debugf("fsync %q failed: %v", dir, err)
  1388. }
  1389. fd.Close()
  1390. }
  1391. // All updates to file/folder objects that originated remotely
  1392. // (across the network) use this call to updateLocals
  1393. f.updateLocalsFromPulling(files)
  1394. if found {
  1395. f.ReceivedFile(lastFile.Name, lastFile.IsDeleted())
  1396. found = false
  1397. }
  1398. return nil
  1399. }
  1400. loop:
  1401. for {
  1402. select {
  1403. case job, ok := <-dbUpdateChan:
  1404. if !ok {
  1405. break loop
  1406. }
  1407. switch job.jobType {
  1408. case dbUpdateHandleFile, dbUpdateShortcutFile:
  1409. changedDirs[filepath.Dir(job.file.Name)] = struct{}{}
  1410. case dbUpdateHandleDir:
  1411. changedDirs[job.file.Name] = struct{}{}
  1412. case dbUpdateHandleSymlink, dbUpdateInvalidate:
  1413. // fsyncing symlinks is only supported by MacOS
  1414. // and invalidated files are db only changes -> no sync
  1415. }
  1416. // For some reason we seem to care about file deletions and
  1417. // content modification, but not about metadata and dirs/symlinks.
  1418. if !job.file.IsInvalid() && job.jobType&(dbUpdateHandleFile|dbUpdateDeleteFile) != 0 {
  1419. found = true
  1420. lastFile = job.file
  1421. }
  1422. job.file.Sequence = 0
  1423. batch.append(job.file)
  1424. batch.flushIfFull()
  1425. case <-tick.C:
  1426. batch.flush()
  1427. }
  1428. }
  1429. batch.flush()
  1430. }
  1431. // pullScannerRoutine aggregates paths to be scanned after pulling. The scan is
  1432. // scheduled once when scanChan is closed (scanning can not happen during pulling).
  1433. func (f *sendReceiveFolder) pullScannerRoutine(scanChan <-chan string) {
  1434. toBeScanned := make(map[string]struct{})
  1435. for path := range scanChan {
  1436. toBeScanned[path] = struct{}{}
  1437. }
  1438. if len(toBeScanned) != 0 {
  1439. scanList := make([]string, 0, len(toBeScanned))
  1440. for path := range toBeScanned {
  1441. l.Debugln(f, "scheduling scan after pulling for", path)
  1442. scanList = append(scanList, path)
  1443. }
  1444. f.Scan(scanList)
  1445. }
  1446. }
  1447. func (f *sendReceiveFolder) inConflict(current, replacement protocol.Vector) bool {
  1448. if current.Concurrent(replacement) {
  1449. // Obvious case
  1450. return true
  1451. }
  1452. if replacement.Counter(f.shortID) > current.Counter(f.shortID) {
  1453. // The replacement file contains a higher version for ourselves than
  1454. // what we have. This isn't supposed to be possible, since it's only
  1455. // we who can increment that counter. We take it as a sign that
  1456. // something is wrong (our index may have been corrupted or removed)
  1457. // and flag it as a conflict.
  1458. return true
  1459. }
  1460. return false
  1461. }
  1462. func removeAvailability(availabilities []Availability, availability Availability) []Availability {
  1463. for i := range availabilities {
  1464. if availabilities[i] == availability {
  1465. availabilities[i] = availabilities[len(availabilities)-1]
  1466. return availabilities[:len(availabilities)-1]
  1467. }
  1468. }
  1469. return availabilities
  1470. }
  1471. func (f *sendReceiveFolder) moveForConflict(name, lastModBy string, scanChan chan<- string) error {
  1472. if isConflict(name) {
  1473. l.Infoln("Conflict for", name, "which is already a conflict copy; not copying again.")
  1474. if err := f.fs.Remove(name); err != nil && !fs.IsNotExist(err) {
  1475. return errors.Wrap(err, contextRemovingOldItem)
  1476. }
  1477. return nil
  1478. }
  1479. if f.MaxConflicts == 0 {
  1480. if err := f.fs.Remove(name); err != nil && !fs.IsNotExist(err) {
  1481. return errors.Wrap(err, contextRemovingOldItem)
  1482. }
  1483. return nil
  1484. }
  1485. newName := conflictName(name, lastModBy)
  1486. err := f.fs.Rename(name, newName)
  1487. if fs.IsNotExist(err) {
  1488. // We were supposed to move a file away but it does not exist. Either
  1489. // the user has already moved it away, or the conflict was between a
  1490. // remote modification and a local delete. In either way it does not
  1491. // matter, go ahead as if the move succeeded.
  1492. err = nil
  1493. }
  1494. if f.MaxConflicts > -1 {
  1495. matches := existingConflicts(name, f.fs)
  1496. if len(matches) > f.MaxConflicts {
  1497. sort.Sort(sort.Reverse(sort.StringSlice(matches)))
  1498. for _, match := range matches[f.MaxConflicts:] {
  1499. if gerr := f.fs.Remove(match); gerr != nil {
  1500. l.Debugln(f, "removing extra conflict", gerr)
  1501. }
  1502. }
  1503. }
  1504. }
  1505. if err == nil {
  1506. scanChan <- newName
  1507. }
  1508. return err
  1509. }
  1510. func (f *sendReceiveFolder) newPullError(path string, err error) {
  1511. f.pullErrorsMut.Lock()
  1512. defer f.pullErrorsMut.Unlock()
  1513. // We might get more than one error report for a file (i.e. error on
  1514. // Write() followed by Close()); we keep the first error as that is
  1515. // probably closer to the root cause.
  1516. if _, ok := f.pullErrors[path]; ok {
  1517. return
  1518. }
  1519. l.Infof("Puller (folder %s, item %q): %v", f.Description(), path, err)
  1520. // Establish context to differentiate from errors while scanning.
  1521. // Use "syncing" as opposed to "pulling" as the latter might be used
  1522. // for errors occurring specificly in the puller routine.
  1523. f.pullErrors[path] = fmt.Sprintln("syncing:", err)
  1524. }
  1525. // resetPullError removes the error at path in case there was an error on a
  1526. // previous pull iteration.
  1527. func (f *sendReceiveFolder) resetPullError(path string) {
  1528. f.pullErrorsMut.Lock()
  1529. delete(f.pullErrors, path)
  1530. f.pullErrorsMut.Unlock()
  1531. }
  1532. func (f *sendReceiveFolder) clearPullErrors() {
  1533. f.pullErrorsMut.Lock()
  1534. f.pullErrors = make(map[string]string)
  1535. f.pullErrorsMut.Unlock()
  1536. }
  1537. func (f *sendReceiveFolder) Errors() []FileError {
  1538. scanErrors := f.folder.Errors()
  1539. f.pullErrorsMut.Lock()
  1540. errors := make([]FileError, 0, len(f.pullErrors)+len(f.scanErrors))
  1541. for path, err := range f.pullErrors {
  1542. errors = append(errors, FileError{path, err})
  1543. }
  1544. f.pullErrorsMut.Unlock()
  1545. errors = append(errors, scanErrors...)
  1546. sort.Sort(fileErrorList(errors))
  1547. return errors
  1548. }
  1549. // deleteItemOnDisk deletes the file represented by old that is about to be replaced by new.
  1550. func (f *sendReceiveFolder) deleteItemOnDisk(item protocol.FileInfo, scanChan chan<- string) (err error) {
  1551. defer func() {
  1552. err = errors.Wrap(err, contextRemovingOldItem)
  1553. }()
  1554. switch {
  1555. case item.IsDirectory():
  1556. // Directories aren't archived and need special treatment due
  1557. // to potential children.
  1558. return f.deleteDirOnDisk(item.Name, scanChan)
  1559. case !item.IsSymlink() && f.versioner != nil:
  1560. // If we should use versioning, let the versioner archive the
  1561. // file before we replace it. Archiving a non-existent file is not
  1562. // an error.
  1563. // Symlinks aren't archived.
  1564. return f.inWritableDir(f.versioner.Archive, item.Name)
  1565. }
  1566. return f.inWritableDir(f.fs.Remove, item.Name)
  1567. }
  1568. // deleteDirOnDisk attempts to delete a directory. It checks for files/dirs inside
  1569. // the directory and removes them if possible or returns an error if it fails
  1570. func (f *sendReceiveFolder) deleteDirOnDisk(dir string, scanChan chan<- string) error {
  1571. files, _ := f.fs.DirNames(dir)
  1572. toBeDeleted := make([]string, 0, len(files))
  1573. hasIgnored := false
  1574. hasKnown := false
  1575. hasToBeScanned := false
  1576. for _, dirFile := range files {
  1577. fullDirFile := filepath.Join(dir, dirFile)
  1578. if fs.IsTemporary(dirFile) || f.ignores.Match(fullDirFile).IsDeletable() {
  1579. toBeDeleted = append(toBeDeleted, fullDirFile)
  1580. } else if f.ignores != nil && f.ignores.Match(fullDirFile).IsIgnored() {
  1581. hasIgnored = true
  1582. } else if cf, ok := f.fset.Get(protocol.LocalDeviceID, fullDirFile); !ok || cf.IsDeleted() || cf.IsInvalid() {
  1583. // Something appeared in the dir that we either are not aware of
  1584. // at all, that we think should be deleted or that is invalid,
  1585. // but not currently ignored -> schedule scan. The scanChan
  1586. // might be nil, in which case we trust the scanning to be
  1587. // handled later as a result of our error return.
  1588. if scanChan != nil {
  1589. scanChan <- fullDirFile
  1590. }
  1591. hasToBeScanned = true
  1592. } else {
  1593. // Dir contains file that is valid according to db and
  1594. // not ignored -> something weird is going on
  1595. hasKnown = true
  1596. }
  1597. }
  1598. if hasToBeScanned {
  1599. return errDirHasToBeScanned
  1600. }
  1601. if hasIgnored {
  1602. return errDirHasIgnored
  1603. }
  1604. if hasKnown {
  1605. return errDirNotEmpty
  1606. }
  1607. for _, del := range toBeDeleted {
  1608. f.fs.RemoveAll(del)
  1609. }
  1610. err := f.inWritableDir(f.fs.Remove, dir)
  1611. if err == nil || fs.IsNotExist(err) {
  1612. // It was removed or it doesn't exist to start with
  1613. return nil
  1614. }
  1615. if _, serr := f.fs.Lstat(dir); serr != nil && !fs.IsPermission(serr) {
  1616. // We get an error just looking at the directory, and it's not a
  1617. // permission problem. Lets assume the error is in fact some variant
  1618. // of "file does not exist" (possibly expressed as some parent being a
  1619. // file and not a directory etc) and that the delete is handled.
  1620. return nil
  1621. }
  1622. return err
  1623. }
  1624. // scanIfItemChanged schedules the given file for scanning and returns errModified
  1625. // if it differs from the information in the database. Returns nil if the file has
  1626. // not changed.
  1627. func (f *sendReceiveFolder) scanIfItemChanged(stat fs.FileInfo, item protocol.FileInfo, hasItem bool, scanChan chan<- string) (err error) {
  1628. defer func() {
  1629. if err == errModified {
  1630. scanChan <- item.Name
  1631. }
  1632. }()
  1633. if !hasItem || item.Deleted {
  1634. // The item appeared from nowhere
  1635. return errModified
  1636. }
  1637. // Check that the item on disk is what we expect it to be according
  1638. // to the database. If there's a mismatch here, there might be local
  1639. // changes that we don't know about yet and we should scan before
  1640. // touching the item.
  1641. statItem, err := scanner.CreateFileInfo(stat, item.Name, f.fs)
  1642. if err != nil {
  1643. return errors.Wrap(err, "comparing item on disk to db")
  1644. }
  1645. if !statItem.IsEquivalentOptional(item, f.ModTimeWindow(), f.IgnorePerms, true, protocol.LocalAllFlags) {
  1646. return errModified
  1647. }
  1648. return nil
  1649. }
  1650. // checkToBeDeleted makes sure the file on disk is compatible with what there is
  1651. // in the DB before the caller proceeds with actually deleting it.
  1652. // I.e. non-nil error status means "Do not delete!".
  1653. func (f *sendReceiveFolder) checkToBeDeleted(cur protocol.FileInfo, scanChan chan<- string) error {
  1654. stat, err := f.fs.Lstat(cur.Name)
  1655. if err != nil {
  1656. if fs.IsNotExist(err) {
  1657. // File doesn't exist to start with.
  1658. return nil
  1659. }
  1660. // We can't check whether the file changed as compared to the db,
  1661. // do not delete.
  1662. return err
  1663. }
  1664. return f.scanIfItemChanged(stat, cur, true, scanChan)
  1665. }
  1666. func (f *sendReceiveFolder) maybeCopyOwner(path string) error {
  1667. if !f.CopyOwnershipFromParent {
  1668. // Not supposed to do anything.
  1669. return nil
  1670. }
  1671. if runtime.GOOS == "windows" {
  1672. // Can't do anything.
  1673. return nil
  1674. }
  1675. info, err := f.fs.Lstat(filepath.Dir(path))
  1676. if err != nil {
  1677. return errors.Wrap(err, "copy owner from parent")
  1678. }
  1679. if err := f.fs.Lchown(path, info.Owner(), info.Group()); err != nil {
  1680. return errors.Wrap(err, "copy owner from parent")
  1681. }
  1682. return nil
  1683. }
  1684. func (f *sendReceiveFolder) inWritableDir(fn func(string) error, path string) error {
  1685. return inWritableDir(fn, f.fs, path, f.IgnorePerms)
  1686. }
  1687. // A []FileError is sent as part of an event and will be JSON serialized.
  1688. type FileError struct {
  1689. Path string `json:"path"`
  1690. Err string `json:"error"`
  1691. }
  1692. type fileErrorList []FileError
  1693. func (l fileErrorList) Len() int {
  1694. return len(l)
  1695. }
  1696. func (l fileErrorList) Less(a, b int) bool {
  1697. return l[a].Path < l[b].Path
  1698. }
  1699. func (l fileErrorList) Swap(a, b int) {
  1700. l[a], l[b] = l[b], l[a]
  1701. }
  1702. func conflictName(name, lastModBy string) string {
  1703. ext := filepath.Ext(name)
  1704. return name[:len(name)-len(ext)] + time.Now().Format(".sync-conflict-20060102-150405-") + lastModBy + ext
  1705. }
  1706. func isConflict(name string) bool {
  1707. return strings.Contains(filepath.Base(name), ".sync-conflict-")
  1708. }
  1709. func existingConflicts(name string, fs fs.Filesystem) []string {
  1710. ext := filepath.Ext(name)
  1711. matches, err := fs.Glob(name[:len(name)-len(ext)] + ".sync-conflict-????????-??????*" + ext)
  1712. if err != nil {
  1713. l.Debugln("globbing for conflicts", err)
  1714. }
  1715. return matches
  1716. }