protocol.go 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991
  1. // Copyright (C) 2014 The Protocol Authors.
  2. package protocol
  3. import (
  4. "crypto/sha256"
  5. "encoding/binary"
  6. "errors"
  7. "fmt"
  8. "io"
  9. "path"
  10. "strings"
  11. "sync"
  12. "time"
  13. lz4 "github.com/bkaradzic/go-lz4"
  14. )
  15. const (
  16. // Shifts
  17. KiB = 10
  18. MiB = 20
  19. GiB = 30
  20. )
  21. const (
  22. // MaxMessageLen is the largest message size allowed on the wire. (500 MB)
  23. MaxMessageLen = 500 * 1000 * 1000
  24. // MinBlockSize is the minimum block size allowed
  25. MinBlockSize = 128 << KiB
  26. // MaxBlockSize is the maximum block size allowed
  27. MaxBlockSize = 16 << MiB
  28. // DesiredPerFileBlocks is the number of blocks we aim for per file
  29. DesiredPerFileBlocks = 2000
  30. )
  31. // BlockSizes is the list of valid block sizes, from min to max
  32. var BlockSizes []int
  33. // For each block size, the hash of a block of all zeroes
  34. var sha256OfEmptyBlock = map[int][sha256.Size]byte{
  35. 128 << KiB: {0xfa, 0x43, 0x23, 0x9b, 0xce, 0xe7, 0xb9, 0x7c, 0xa6, 0x2f, 0x0, 0x7c, 0xc6, 0x84, 0x87, 0x56, 0xa, 0x39, 0xe1, 0x9f, 0x74, 0xf3, 0xdd, 0xe7, 0x48, 0x6d, 0xb3, 0xf9, 0x8d, 0xf8, 0xe4, 0x71},
  36. 256 << KiB: {0x8a, 0x39, 0xd2, 0xab, 0xd3, 0x99, 0x9a, 0xb7, 0x3c, 0x34, 0xdb, 0x24, 0x76, 0x84, 0x9c, 0xdd, 0xf3, 0x3, 0xce, 0x38, 0x9b, 0x35, 0x82, 0x68, 0x50, 0xf9, 0xa7, 0x0, 0x58, 0x9b, 0x4a, 0x90},
  37. 512 << KiB: {0x7, 0x85, 0x4d, 0x2f, 0xef, 0x29, 0x7a, 0x6, 0xba, 0x81, 0x68, 0x5e, 0x66, 0xc, 0x33, 0x2d, 0xe3, 0x6d, 0x5d, 0x18, 0xd5, 0x46, 0x92, 0x7d, 0x30, 0xda, 0xad, 0x6d, 0x7f, 0xda, 0x15, 0x41},
  38. 1 << MiB: {0x30, 0xe1, 0x49, 0x55, 0xeb, 0xf1, 0x35, 0x22, 0x66, 0xdc, 0x2f, 0xf8, 0x6, 0x7e, 0x68, 0x10, 0x46, 0x7, 0xe7, 0x50, 0xab, 0xb9, 0xd3, 0xb3, 0x65, 0x82, 0xb8, 0xaf, 0x90, 0x9f, 0xcb, 0x58},
  39. 2 << MiB: {0x56, 0x47, 0xf0, 0x5e, 0xc1, 0x89, 0x58, 0x94, 0x7d, 0x32, 0x87, 0x4e, 0xeb, 0x78, 0x8f, 0xa3, 0x96, 0xa0, 0x5d, 0xb, 0xab, 0x7c, 0x1b, 0x71, 0xf1, 0x12, 0xce, 0xb7, 0xe9, 0xb3, 0x1e, 0xee},
  40. 4 << MiB: {0xbb, 0x9f, 0x8d, 0xf6, 0x14, 0x74, 0xd2, 0x5e, 0x71, 0xfa, 0x0, 0x72, 0x23, 0x18, 0xcd, 0x38, 0x73, 0x96, 0xca, 0x17, 0x36, 0x60, 0x5e, 0x12, 0x48, 0x82, 0x1c, 0xc0, 0xde, 0x3d, 0x3a, 0xf8},
  41. 8 << MiB: {0x2d, 0xae, 0xb1, 0xf3, 0x60, 0x95, 0xb4, 0x4b, 0x31, 0x84, 0x10, 0xb3, 0xf4, 0xe8, 0xb5, 0xd9, 0x89, 0xdc, 0xc7, 0xbb, 0x2, 0x3d, 0x14, 0x26, 0xc4, 0x92, 0xda, 0xb0, 0xa3, 0x5, 0x3e, 0x74},
  42. 16 << MiB: {0x8, 0xa, 0xcf, 0x35, 0xa5, 0x7, 0xac, 0x98, 0x49, 0xcf, 0xcb, 0xa4, 0x7d, 0xc2, 0xad, 0x83, 0xe0, 0x1b, 0x75, 0x66, 0x3a, 0x51, 0x62, 0x79, 0xc8, 0xb9, 0xd2, 0x43, 0xb7, 0x19, 0x64, 0x3e},
  43. }
  44. func init() {
  45. for blockSize := MinBlockSize; blockSize <= MaxBlockSize; blockSize *= 2 {
  46. BlockSizes = append(BlockSizes, blockSize)
  47. if _, ok := sha256OfEmptyBlock[blockSize]; !ok {
  48. panic("missing hard coded value for sha256 of empty block")
  49. }
  50. }
  51. BufferPool = newBufferPool()
  52. }
  53. // BlockSize returns the block size to use for the given file size
  54. func BlockSize(fileSize int64) int {
  55. var blockSize int
  56. for _, blockSize = range BlockSizes {
  57. if fileSize < DesiredPerFileBlocks*int64(blockSize) {
  58. break
  59. }
  60. }
  61. return blockSize
  62. }
  63. const (
  64. stateInitial = iota
  65. stateReady
  66. )
  67. // Request message flags
  68. const (
  69. FlagFromTemporary uint32 = 1 << iota
  70. )
  71. // ClusterConfigMessage.Folders flags
  72. const (
  73. FlagFolderReadOnly uint32 = 1 << 0
  74. FlagFolderIgnorePerms = 1 << 1
  75. FlagFolderIgnoreDelete = 1 << 2
  76. FlagFolderDisabledTempIndexes = 1 << 3
  77. FlagFolderAll = 1<<4 - 1
  78. )
  79. // ClusterConfigMessage.Folders.Devices flags
  80. const (
  81. FlagShareTrusted uint32 = 1 << 0
  82. FlagShareReadOnly = 1 << 1
  83. FlagIntroducer = 1 << 2
  84. FlagShareBits = 0x000000ff
  85. )
  86. // FileInfo.LocalFlags flags
  87. const (
  88. FlagLocalUnsupported = 1 << 0 // The kind is unsupported, e.g. symlinks on Windows
  89. FlagLocalIgnored = 1 << 1 // Matches local ignore patterns
  90. FlagLocalMustRescan = 1 << 2 // Doesn't match content on disk, must be rechecked fully
  91. FlagLocalReceiveOnly = 1 << 3 // Change detected on receive only folder
  92. // Flags that should result in the Invalid bit on outgoing updates
  93. LocalInvalidFlags = FlagLocalUnsupported | FlagLocalIgnored | FlagLocalMustRescan | FlagLocalReceiveOnly
  94. // Flags that should result in a file being in conflict with its
  95. // successor, due to us not having an up to date picture of its state on
  96. // disk.
  97. LocalConflictFlags = FlagLocalUnsupported | FlagLocalIgnored | FlagLocalReceiveOnly
  98. LocalAllFlags = FlagLocalUnsupported | FlagLocalIgnored | FlagLocalMustRescan | FlagLocalReceiveOnly
  99. )
  100. var (
  101. ErrClosed = errors.New("connection closed")
  102. ErrTimeout = errors.New("read timeout")
  103. ErrSwitchingConnections = errors.New("switching connections")
  104. errUnknownMessage = errors.New("unknown message")
  105. errInvalidFilename = errors.New("filename is invalid")
  106. errUncleanFilename = errors.New("filename not in canonical format")
  107. errDeletedHasBlocks = errors.New("deleted file with non-empty block list")
  108. errDirectoryHasBlocks = errors.New("directory with non-empty block list")
  109. errFileHasNoBlocks = errors.New("file with empty block list")
  110. )
  111. type Model interface {
  112. // An index was received from the peer device
  113. Index(deviceID DeviceID, folder string, files []FileInfo)
  114. // An index update was received from the peer device
  115. IndexUpdate(deviceID DeviceID, folder string, files []FileInfo)
  116. // A request was made by the peer device
  117. Request(deviceID DeviceID, folder, name string, size int32, offset int64, hash []byte, weakHash uint32, fromTemporary bool) (RequestResponse, error)
  118. // A cluster configuration message was received
  119. ClusterConfig(deviceID DeviceID, config ClusterConfig)
  120. // The peer device closed the connection
  121. Closed(conn Connection, err error)
  122. // The peer device sent progress updates for the files it is currently downloading
  123. DownloadProgress(deviceID DeviceID, folder string, updates []FileDownloadProgressUpdate)
  124. }
  125. type RequestResponse interface {
  126. Data() []byte
  127. Close() // Must always be called once the byte slice is no longer in use
  128. Wait() // Blocks until Close is called
  129. }
  130. type Connection interface {
  131. Start()
  132. Close(err error)
  133. ID() DeviceID
  134. Name() string
  135. Index(folder string, files []FileInfo) error
  136. IndexUpdate(folder string, files []FileInfo) error
  137. Request(folder string, name string, offset int64, size int, hash []byte, weakHash uint32, fromTemporary bool) ([]byte, error)
  138. ClusterConfig(config ClusterConfig)
  139. DownloadProgress(folder string, updates []FileDownloadProgressUpdate)
  140. Statistics() Statistics
  141. Closed() bool
  142. }
  143. type rawConnection struct {
  144. id DeviceID
  145. name string
  146. receiver Model
  147. cr *countingReader
  148. cw *countingWriter
  149. awaiting map[int32]chan asyncResult
  150. awaitingMut sync.Mutex
  151. idxMut sync.Mutex // ensures serialization of Index calls
  152. nextID int32
  153. nextIDMut sync.Mutex
  154. sentClusterConfig chan struct{}
  155. outbox chan asyncMessage
  156. closed chan struct{}
  157. closeOnce sync.Once
  158. sendCloseOnce sync.Once
  159. wg sync.WaitGroup
  160. compression Compression
  161. }
  162. type asyncResult struct {
  163. val []byte
  164. err error
  165. }
  166. type message interface {
  167. ProtoSize() int
  168. Marshal() ([]byte, error)
  169. MarshalTo([]byte) (int, error)
  170. Unmarshal([]byte) error
  171. }
  172. type asyncMessage struct {
  173. msg message
  174. done chan struct{} // done closes when we're done sending the message
  175. }
  176. const (
  177. // PingSendInterval is how often we make sure to send a message, by
  178. // triggering pings if necessary.
  179. PingSendInterval = 90 * time.Second
  180. // ReceiveTimeout is the longest we'll wait for a message from the other
  181. // side before closing the connection.
  182. ReceiveTimeout = 300 * time.Second
  183. )
  184. func NewConnection(deviceID DeviceID, reader io.Reader, writer io.Writer, receiver Model, name string, compress Compression) Connection {
  185. cr := &countingReader{Reader: reader}
  186. cw := &countingWriter{Writer: writer}
  187. c := rawConnection{
  188. id: deviceID,
  189. name: name,
  190. receiver: nativeModel{receiver},
  191. cr: cr,
  192. cw: cw,
  193. awaiting: make(map[int32]chan asyncResult),
  194. sentClusterConfig: make(chan struct{}),
  195. outbox: make(chan asyncMessage),
  196. closed: make(chan struct{}),
  197. compression: compress,
  198. }
  199. return wireFormatConnection{&c}
  200. }
  201. // Start creates the goroutines for sending and receiving of messages. It must
  202. // be called exactly once after creating a connection.
  203. func (c *rawConnection) Start() {
  204. c.startGoroutine(c.readerLoop)
  205. c.startGoroutine(c.writerLoop)
  206. c.startGoroutine(c.pingSender)
  207. c.startGoroutine(c.pingReceiver)
  208. }
  209. func (c *rawConnection) startGoroutine(loop func() error) {
  210. c.wg.Add(1)
  211. go func() {
  212. err := loop()
  213. c.wg.Done()
  214. if err != nil && err != ErrClosed {
  215. c.internalClose(err)
  216. }
  217. }()
  218. }
  219. func (c *rawConnection) ID() DeviceID {
  220. return c.id
  221. }
  222. func (c *rawConnection) Name() string {
  223. return c.name
  224. }
  225. // Index writes the list of file information to the connected peer device
  226. func (c *rawConnection) Index(folder string, idx []FileInfo) error {
  227. select {
  228. case <-c.closed:
  229. return ErrClosed
  230. default:
  231. }
  232. c.idxMut.Lock()
  233. c.send(&Index{
  234. Folder: folder,
  235. Files: idx,
  236. }, nil)
  237. c.idxMut.Unlock()
  238. return nil
  239. }
  240. // IndexUpdate writes the list of file information to the connected peer device as an update
  241. func (c *rawConnection) IndexUpdate(folder string, idx []FileInfo) error {
  242. select {
  243. case <-c.closed:
  244. return ErrClosed
  245. default:
  246. }
  247. c.idxMut.Lock()
  248. c.send(&IndexUpdate{
  249. Folder: folder,
  250. Files: idx,
  251. }, nil)
  252. c.idxMut.Unlock()
  253. return nil
  254. }
  255. // Request returns the bytes for the specified block after fetching them from the connected peer.
  256. func (c *rawConnection) Request(folder string, name string, offset int64, size int, hash []byte, weakHash uint32, fromTemporary bool) ([]byte, error) {
  257. c.nextIDMut.Lock()
  258. id := c.nextID
  259. c.nextID++
  260. c.nextIDMut.Unlock()
  261. c.awaitingMut.Lock()
  262. if _, ok := c.awaiting[id]; ok {
  263. panic("id taken")
  264. }
  265. rc := make(chan asyncResult, 1)
  266. c.awaiting[id] = rc
  267. c.awaitingMut.Unlock()
  268. ok := c.send(&Request{
  269. ID: id,
  270. Folder: folder,
  271. Name: name,
  272. Offset: offset,
  273. Size: int32(size),
  274. Hash: hash,
  275. WeakHash: weakHash,
  276. FromTemporary: fromTemporary,
  277. }, nil)
  278. if !ok {
  279. return nil, ErrClosed
  280. }
  281. res, ok := <-rc
  282. if !ok {
  283. return nil, ErrClosed
  284. }
  285. return res.val, res.err
  286. }
  287. // ClusterConfig sends the cluster configuration message to the peer.
  288. // It must be called just once (as per BEP).
  289. func (c *rawConnection) ClusterConfig(config ClusterConfig) {
  290. select {
  291. case <-c.sentClusterConfig:
  292. return
  293. case <-c.closed:
  294. return
  295. default:
  296. }
  297. if err := c.writeMessage(asyncMessage{&config, nil}); err != nil {
  298. c.internalClose(err)
  299. }
  300. close(c.sentClusterConfig)
  301. }
  302. func (c *rawConnection) Closed() bool {
  303. select {
  304. case <-c.closed:
  305. return true
  306. default:
  307. return false
  308. }
  309. }
  310. // DownloadProgress sends the progress updates for the files that are currently being downloaded.
  311. func (c *rawConnection) DownloadProgress(folder string, updates []FileDownloadProgressUpdate) {
  312. c.send(&DownloadProgress{
  313. Folder: folder,
  314. Updates: updates,
  315. }, nil)
  316. }
  317. func (c *rawConnection) ping() bool {
  318. return c.send(&Ping{}, nil)
  319. }
  320. type messageWithError struct {
  321. msg message
  322. err error
  323. }
  324. func (c *rawConnection) readerLoop() error {
  325. fourByteBuf := make([]byte, 4)
  326. inbox := make(chan messageWithError)
  327. // Reading from the wire may block until the underlying connection is closed.
  328. go func() {
  329. for {
  330. msg, err := c.readMessage(fourByteBuf)
  331. select {
  332. case inbox <- messageWithError{msg: msg, err: err}:
  333. case <-c.closed:
  334. return
  335. }
  336. }
  337. }()
  338. state := stateInitial
  339. var msgWithErr messageWithError
  340. for {
  341. select {
  342. case msgWithErr = <-inbox:
  343. case <-c.closed:
  344. return ErrClosed
  345. }
  346. if msgWithErr.err != nil {
  347. if msgWithErr.err == errUnknownMessage {
  348. // Unknown message types are skipped, for future extensibility.
  349. continue
  350. }
  351. return msgWithErr.err
  352. }
  353. switch msg := msgWithErr.msg.(type) {
  354. case *ClusterConfig:
  355. l.Debugln("read ClusterConfig message")
  356. if state != stateInitial {
  357. return fmt.Errorf("protocol error: cluster config message in state %d", state)
  358. }
  359. c.receiver.ClusterConfig(c.id, *msg)
  360. state = stateReady
  361. case *Index:
  362. l.Debugln("read Index message")
  363. if state != stateReady {
  364. return fmt.Errorf("protocol error: index message in state %d", state)
  365. }
  366. if err := checkIndexConsistency(msg.Files); err != nil {
  367. return fmt.Errorf("protocol error: index: %v", err)
  368. }
  369. c.handleIndex(*msg)
  370. state = stateReady
  371. case *IndexUpdate:
  372. l.Debugln("read IndexUpdate message")
  373. if state != stateReady {
  374. return fmt.Errorf("protocol error: index update message in state %d", state)
  375. }
  376. if err := checkIndexConsistency(msg.Files); err != nil {
  377. return fmt.Errorf("protocol error: index update: %v", err)
  378. }
  379. c.handleIndexUpdate(*msg)
  380. state = stateReady
  381. case *Request:
  382. l.Debugln("read Request message")
  383. if state != stateReady {
  384. return fmt.Errorf("protocol error: request message in state %d", state)
  385. }
  386. if err := checkFilename(msg.Name); err != nil {
  387. return fmt.Errorf("protocol error: request: %q: %v", msg.Name, err)
  388. }
  389. go c.handleRequest(*msg)
  390. case *Response:
  391. l.Debugln("read Response message")
  392. if state != stateReady {
  393. return fmt.Errorf("protocol error: response message in state %d", state)
  394. }
  395. c.handleResponse(*msg)
  396. case *DownloadProgress:
  397. l.Debugln("read DownloadProgress message")
  398. if state != stateReady {
  399. return fmt.Errorf("protocol error: response message in state %d", state)
  400. }
  401. c.receiver.DownloadProgress(c.id, msg.Folder, msg.Updates)
  402. case *Ping:
  403. l.Debugln("read Ping message")
  404. if state != stateReady {
  405. return fmt.Errorf("protocol error: ping message in state %d", state)
  406. }
  407. // Nothing
  408. case *Close:
  409. l.Debugln("read Close message")
  410. return errors.New(msg.Reason)
  411. default:
  412. l.Debugf("read unknown message: %+T", msg)
  413. return fmt.Errorf("protocol error: %s: unknown or empty message", c.id)
  414. }
  415. }
  416. }
  417. func (c *rawConnection) readMessage(fourByteBuf []byte) (message, error) {
  418. hdr, err := c.readHeader(fourByteBuf)
  419. if err != nil {
  420. return nil, err
  421. }
  422. return c.readMessageAfterHeader(hdr, fourByteBuf)
  423. }
  424. func (c *rawConnection) readMessageAfterHeader(hdr Header, fourByteBuf []byte) (message, error) {
  425. // First comes a 4 byte message length
  426. if _, err := io.ReadFull(c.cr, fourByteBuf[:4]); err != nil {
  427. return nil, fmt.Errorf("reading message length: %v", err)
  428. }
  429. msgLen := int32(binary.BigEndian.Uint32(fourByteBuf))
  430. if msgLen < 0 {
  431. return nil, fmt.Errorf("negative message length %d", msgLen)
  432. }
  433. // Then comes the message
  434. buf := BufferPool.Get(int(msgLen))
  435. if _, err := io.ReadFull(c.cr, buf); err != nil {
  436. return nil, fmt.Errorf("reading message: %v", err)
  437. }
  438. // ... which might be compressed
  439. switch hdr.Compression {
  440. case MessageCompressionNone:
  441. // Nothing
  442. case MessageCompressionLZ4:
  443. decomp, err := c.lz4Decompress(buf)
  444. BufferPool.Put(buf)
  445. if err != nil {
  446. return nil, fmt.Errorf("decompressing message: %v", err)
  447. }
  448. buf = decomp
  449. default:
  450. return nil, fmt.Errorf("unknown message compression %d", hdr.Compression)
  451. }
  452. // ... and is then unmarshalled
  453. msg, err := c.newMessage(hdr.Type)
  454. if err != nil {
  455. return nil, err
  456. }
  457. if err := msg.Unmarshal(buf); err != nil {
  458. return nil, fmt.Errorf("unmarshalling message: %v", err)
  459. }
  460. BufferPool.Put(buf)
  461. return msg, nil
  462. }
  463. func (c *rawConnection) readHeader(fourByteBuf []byte) (Header, error) {
  464. // First comes a 2 byte header length
  465. if _, err := io.ReadFull(c.cr, fourByteBuf[:2]); err != nil {
  466. return Header{}, fmt.Errorf("reading length: %v", err)
  467. }
  468. hdrLen := int16(binary.BigEndian.Uint16(fourByteBuf))
  469. if hdrLen < 0 {
  470. return Header{}, fmt.Errorf("negative header length %d", hdrLen)
  471. }
  472. // Then comes the header
  473. buf := BufferPool.Get(int(hdrLen))
  474. if _, err := io.ReadFull(c.cr, buf); err != nil {
  475. return Header{}, fmt.Errorf("reading header: %v", err)
  476. }
  477. var hdr Header
  478. if err := hdr.Unmarshal(buf); err != nil {
  479. return Header{}, fmt.Errorf("unmarshalling header: %v", err)
  480. }
  481. BufferPool.Put(buf)
  482. return hdr, nil
  483. }
  484. func (c *rawConnection) handleIndex(im Index) {
  485. l.Debugf("Index(%v, %v, %d file)", c.id, im.Folder, len(im.Files))
  486. c.receiver.Index(c.id, im.Folder, im.Files)
  487. }
  488. func (c *rawConnection) handleIndexUpdate(im IndexUpdate) {
  489. l.Debugf("queueing IndexUpdate(%v, %v, %d files)", c.id, im.Folder, len(im.Files))
  490. c.receiver.IndexUpdate(c.id, im.Folder, im.Files)
  491. }
  492. // checkIndexConsistency verifies a number of invariants on FileInfos received in
  493. // index messages.
  494. func checkIndexConsistency(fs []FileInfo) error {
  495. for _, f := range fs {
  496. if err := checkFileInfoConsistency(f); err != nil {
  497. return fmt.Errorf("%q: %v", f.Name, err)
  498. }
  499. }
  500. return nil
  501. }
  502. // checkFileInfoConsistency verifies a number of invariants on the given FileInfo
  503. func checkFileInfoConsistency(f FileInfo) error {
  504. if err := checkFilename(f.Name); err != nil {
  505. return err
  506. }
  507. switch {
  508. case f.Deleted && len(f.Blocks) != 0:
  509. // Deleted files should have no blocks
  510. return errDeletedHasBlocks
  511. case f.Type == FileInfoTypeDirectory && len(f.Blocks) != 0:
  512. // Directories should have no blocks
  513. return errDirectoryHasBlocks
  514. case !f.Deleted && !f.IsInvalid() && f.Type == FileInfoTypeFile && len(f.Blocks) == 0:
  515. // Non-deleted, non-invalid files should have at least one block
  516. return errFileHasNoBlocks
  517. }
  518. return nil
  519. }
  520. // checkFilename verifies that the given filename is valid according to the
  521. // spec on what's allowed over the wire. A filename failing this test is
  522. // grounds for disconnecting the device.
  523. func checkFilename(name string) error {
  524. cleanedName := path.Clean(name)
  525. if cleanedName != name {
  526. // The filename on the wire should be in canonical format. If
  527. // Clean() managed to clean it up, there was something wrong with
  528. // it.
  529. return errUncleanFilename
  530. }
  531. switch name {
  532. case "", ".", "..":
  533. // These names are always invalid.
  534. return errInvalidFilename
  535. }
  536. if strings.HasPrefix(name, "/") {
  537. // Names are folder relative, not absolute.
  538. return errInvalidFilename
  539. }
  540. if strings.HasPrefix(name, "../") {
  541. // Starting with a dotdot is not allowed. Any other dotdots would
  542. // have been handled by the Clean() call at the top.
  543. return errInvalidFilename
  544. }
  545. return nil
  546. }
  547. func (c *rawConnection) handleRequest(req Request) {
  548. res, err := c.receiver.Request(c.id, req.Folder, req.Name, req.Size, req.Offset, req.Hash, req.WeakHash, req.FromTemporary)
  549. if err != nil {
  550. c.send(&Response{
  551. ID: req.ID,
  552. Code: errorToCode(err),
  553. }, nil)
  554. return
  555. }
  556. done := make(chan struct{})
  557. c.send(&Response{
  558. ID: req.ID,
  559. Data: res.Data(),
  560. Code: errorToCode(nil),
  561. }, done)
  562. <-done
  563. res.Close()
  564. }
  565. func (c *rawConnection) handleResponse(resp Response) {
  566. c.awaitingMut.Lock()
  567. if rc := c.awaiting[resp.ID]; rc != nil {
  568. delete(c.awaiting, resp.ID)
  569. rc <- asyncResult{resp.Data, codeToError(resp.Code)}
  570. close(rc)
  571. }
  572. c.awaitingMut.Unlock()
  573. }
  574. func (c *rawConnection) send(msg message, done chan struct{}) (sent bool) {
  575. defer func() {
  576. if !sent && done != nil {
  577. close(done)
  578. }
  579. }()
  580. select {
  581. case <-c.sentClusterConfig:
  582. case <-c.closed:
  583. return false
  584. }
  585. select {
  586. case c.outbox <- asyncMessage{msg, done}:
  587. return true
  588. case <-c.closed:
  589. return false
  590. }
  591. }
  592. func (c *rawConnection) writerLoop() error {
  593. for {
  594. select {
  595. case hm := <-c.outbox:
  596. err := c.writeMessage(hm)
  597. if hm.done != nil {
  598. close(hm.done)
  599. }
  600. if err != nil {
  601. return err
  602. }
  603. case <-c.closed:
  604. return ErrClosed
  605. }
  606. }
  607. }
  608. func (c *rawConnection) writeMessage(hm asyncMessage) error {
  609. if c.shouldCompressMessage(hm.msg) {
  610. return c.writeCompressedMessage(hm)
  611. }
  612. return c.writeUncompressedMessage(hm)
  613. }
  614. func (c *rawConnection) writeCompressedMessage(hm asyncMessage) error {
  615. size := hm.msg.ProtoSize()
  616. buf := BufferPool.Get(size)
  617. if _, err := hm.msg.MarshalTo(buf); err != nil {
  618. return fmt.Errorf("marshalling message: %v", err)
  619. }
  620. compressed, err := c.lz4Compress(buf)
  621. if err != nil {
  622. return fmt.Errorf("compressing message: %v", err)
  623. }
  624. hdr := Header{
  625. Type: c.typeOf(hm.msg),
  626. Compression: MessageCompressionLZ4,
  627. }
  628. hdrSize := hdr.ProtoSize()
  629. if hdrSize > 1<<16-1 {
  630. panic("impossibly large header")
  631. }
  632. totSize := 2 + hdrSize + 4 + len(compressed)
  633. buf = BufferPool.Upgrade(buf, totSize)
  634. // Header length
  635. binary.BigEndian.PutUint16(buf, uint16(hdrSize))
  636. // Header
  637. if _, err := hdr.MarshalTo(buf[2:]); err != nil {
  638. return fmt.Errorf("marshalling header: %v", err)
  639. }
  640. // Message length
  641. binary.BigEndian.PutUint32(buf[2+hdrSize:], uint32(len(compressed)))
  642. // Message
  643. copy(buf[2+hdrSize+4:], compressed)
  644. BufferPool.Put(compressed)
  645. n, err := c.cw.Write(buf)
  646. BufferPool.Put(buf)
  647. l.Debugf("wrote %d bytes on the wire (2 bytes length, %d bytes header, 4 bytes message length, %d bytes message (%d uncompressed)), err=%v", n, hdrSize, len(compressed), size, err)
  648. if err != nil {
  649. return fmt.Errorf("writing message: %v", err)
  650. }
  651. return nil
  652. }
  653. func (c *rawConnection) writeUncompressedMessage(hm asyncMessage) error {
  654. size := hm.msg.ProtoSize()
  655. hdr := Header{
  656. Type: c.typeOf(hm.msg),
  657. }
  658. hdrSize := hdr.ProtoSize()
  659. if hdrSize > 1<<16-1 {
  660. panic("impossibly large header")
  661. }
  662. totSize := 2 + hdrSize + 4 + size
  663. buf := BufferPool.Get(totSize)
  664. // Header length
  665. binary.BigEndian.PutUint16(buf, uint16(hdrSize))
  666. // Header
  667. if _, err := hdr.MarshalTo(buf[2:]); err != nil {
  668. return fmt.Errorf("marshalling header: %v", err)
  669. }
  670. // Message length
  671. binary.BigEndian.PutUint32(buf[2+hdrSize:], uint32(size))
  672. // Message
  673. if _, err := hm.msg.MarshalTo(buf[2+hdrSize+4:]); err != nil {
  674. return fmt.Errorf("marshalling message: %v", err)
  675. }
  676. n, err := c.cw.Write(buf[:totSize])
  677. BufferPool.Put(buf)
  678. l.Debugf("wrote %d bytes on the wire (2 bytes length, %d bytes header, 4 bytes message length, %d bytes message), err=%v", n, hdrSize, size, err)
  679. if err != nil {
  680. return fmt.Errorf("writing message: %v", err)
  681. }
  682. return nil
  683. }
  684. func (c *rawConnection) typeOf(msg message) MessageType {
  685. switch msg.(type) {
  686. case *ClusterConfig:
  687. return messageTypeClusterConfig
  688. case *Index:
  689. return messageTypeIndex
  690. case *IndexUpdate:
  691. return messageTypeIndexUpdate
  692. case *Request:
  693. return messageTypeRequest
  694. case *Response:
  695. return messageTypeResponse
  696. case *DownloadProgress:
  697. return messageTypeDownloadProgress
  698. case *Ping:
  699. return messageTypePing
  700. case *Close:
  701. return messageTypeClose
  702. default:
  703. panic("bug: unknown message type")
  704. }
  705. }
  706. func (c *rawConnection) newMessage(t MessageType) (message, error) {
  707. switch t {
  708. case messageTypeClusterConfig:
  709. return new(ClusterConfig), nil
  710. case messageTypeIndex:
  711. return new(Index), nil
  712. case messageTypeIndexUpdate:
  713. return new(IndexUpdate), nil
  714. case messageTypeRequest:
  715. return new(Request), nil
  716. case messageTypeResponse:
  717. return new(Response), nil
  718. case messageTypeDownloadProgress:
  719. return new(DownloadProgress), nil
  720. case messageTypePing:
  721. return new(Ping), nil
  722. case messageTypeClose:
  723. return new(Close), nil
  724. default:
  725. return nil, errUnknownMessage
  726. }
  727. }
  728. func (c *rawConnection) shouldCompressMessage(msg message) bool {
  729. switch c.compression {
  730. case CompressNever:
  731. return false
  732. case CompressAlways:
  733. // Use compression for large enough messages
  734. return msg.ProtoSize() >= compressionThreshold
  735. case CompressMetadata:
  736. _, isResponse := msg.(*Response)
  737. // Compress if it's large enough and not a response message
  738. return !isResponse && msg.ProtoSize() >= compressionThreshold
  739. default:
  740. panic("unknown compression setting")
  741. }
  742. }
  743. // Close is called when the connection is regularely closed and thus the Close
  744. // BEP message is sent before terminating the actual connection. The error
  745. // argument specifies the reason for closing the connection.
  746. func (c *rawConnection) Close(err error) {
  747. c.sendCloseOnce.Do(func() {
  748. done := make(chan struct{})
  749. c.send(&Close{err.Error()}, done)
  750. select {
  751. case <-done:
  752. case <-c.closed:
  753. }
  754. })
  755. c.internalClose(err)
  756. }
  757. // internalClose is called if there is an unexpected error during normal operation.
  758. func (c *rawConnection) internalClose(err error) {
  759. c.closeOnce.Do(func() {
  760. l.Debugln("close due to", err)
  761. close(c.closed)
  762. c.awaitingMut.Lock()
  763. for i, ch := range c.awaiting {
  764. if ch != nil {
  765. close(ch)
  766. delete(c.awaiting, i)
  767. }
  768. }
  769. c.awaitingMut.Unlock()
  770. // Wait for all our operations to terminate before signaling
  771. // to the receiver that the connection was closed.
  772. c.wg.Wait()
  773. // No more sends are necessary, therefore further steps to close the
  774. // connection outside of this package can proceed immediately.
  775. // And this prevents a potential deadlock.
  776. go c.receiver.Closed(c, err)
  777. })
  778. }
  779. // The pingSender makes sure that we've sent a message within the last
  780. // PingSendInterval. If we already have something sent in the last
  781. // PingSendInterval/2, we do nothing. Otherwise we send a ping message. This
  782. // results in an effecting ping interval of somewhere between
  783. // PingSendInterval/2 and PingSendInterval.
  784. func (c *rawConnection) pingSender() error {
  785. ticker := time.NewTicker(PingSendInterval / 2)
  786. defer ticker.Stop()
  787. for {
  788. select {
  789. case <-ticker.C:
  790. d := time.Since(c.cw.Last())
  791. if d < PingSendInterval/2 {
  792. l.Debugln(c.id, "ping skipped after wr", d)
  793. continue
  794. }
  795. l.Debugln(c.id, "ping -> after", d)
  796. c.ping()
  797. case <-c.closed:
  798. return ErrClosed
  799. }
  800. }
  801. }
  802. // The pingReceiver checks that we've received a message (any message will do,
  803. // but we expect pings in the absence of other messages) within the last
  804. // ReceiveTimeout. If not, we close the connection with an ErrTimeout.
  805. func (c *rawConnection) pingReceiver() error {
  806. ticker := time.NewTicker(ReceiveTimeout / 2)
  807. defer ticker.Stop()
  808. for {
  809. select {
  810. case <-ticker.C:
  811. d := time.Since(c.cr.Last())
  812. if d > ReceiveTimeout {
  813. l.Debugln(c.id, "ping timeout", d)
  814. return ErrTimeout
  815. }
  816. l.Debugln(c.id, "last read within", d)
  817. case <-c.closed:
  818. return ErrClosed
  819. }
  820. }
  821. }
  822. type Statistics struct {
  823. At time.Time
  824. InBytesTotal int64
  825. OutBytesTotal int64
  826. }
  827. func (c *rawConnection) Statistics() Statistics {
  828. return Statistics{
  829. At: time.Now(),
  830. InBytesTotal: c.cr.Tot(),
  831. OutBytesTotal: c.cw.Tot(),
  832. }
  833. }
  834. func (c *rawConnection) lz4Compress(src []byte) ([]byte, error) {
  835. var err error
  836. buf := BufferPool.Get(len(src))
  837. buf, err = lz4.Encode(buf, src)
  838. if err != nil {
  839. return nil, err
  840. }
  841. binary.BigEndian.PutUint32(buf, binary.LittleEndian.Uint32(buf))
  842. return buf, nil
  843. }
  844. func (c *rawConnection) lz4Decompress(src []byte) ([]byte, error) {
  845. size := binary.BigEndian.Uint32(src)
  846. binary.LittleEndian.PutUint32(src, size)
  847. var err error
  848. buf := BufferPool.Get(int(size))
  849. buf, err = lz4.Decode(buf, src)
  850. if err != nil {
  851. return nil, err
  852. }
  853. return buf, nil
  854. }