mirror of
https://github.com/PeernetOfficial/core.git
synced 2026-07-17 02:47:51 +01:00
104 lines
4.4 KiB
Go
104 lines
4.4 KiB
Go
/*
|
|
File Name: Transfer UDT.go
|
|
Copyright: 2021 Peernet s.r.o.
|
|
Author: Peter Kleissner
|
|
|
|
TODO: Add timeouts for listening and sending.
|
|
*/
|
|
|
|
package core
|
|
|
|
import (
|
|
"errors"
|
|
"net"
|
|
"time"
|
|
|
|
"github.com/PeernetOfficial/core/protocol"
|
|
"github.com/PeernetOfficial/core/udt"
|
|
)
|
|
|
|
// transferSequenceTimeout is the timeout for a follow-up message to appear, otherwise the transfer will be terminated.
|
|
var transferSequenceTimeout = time.Minute * 1
|
|
|
|
// maxFlowWinSize is the maximum number of unacknowledged packets to permit. A higher number means using more memory, but reduces potential overhead since it does not stop so quickly for missing packets.
|
|
// Each unacknowledged packet may store protocol.TransferMaxEmbedSize (currently 1121 bytes) payload data in memory. A too high number may impact the speed of real-time streaming in case of lost packets.
|
|
// The actual used number will be negotiated through the UDT handshake and must be a minimum of 32.
|
|
const maxFlowWinSize = 64
|
|
|
|
// startFileTransferUDT starts a file transfer from the local warehouse to the remote peer.
|
|
// It creates a virtual UDT client to transfer data to a remote peer. Counterintuitively, this will be the "file server" peer.
|
|
func (peer *PeerInfo) startFileTransferUDT(hash []byte, fileSize uint64, offset, limit uint64, sequenceNumber uint32) (err error) {
|
|
if limit > 0 && offset+limit > fileSize {
|
|
return errors.New("invalid limit")
|
|
} else if offset > fileSize {
|
|
return errors.New("invalid offset")
|
|
} else if limit == 0 {
|
|
limit = fileSize - offset
|
|
}
|
|
|
|
virtualConnection := newVirtualPacketConn(peer, func(data []byte, sequenceNumber uint32) {
|
|
peer.sendTransfer(data, protocol.TransferControlActive, 0, hash, offset, limit, sequenceNumber)
|
|
})
|
|
|
|
// register the sequence since packets are sent bi-directional
|
|
virtualConnection.sequenceNumber = sequenceNumber
|
|
networks.Sequences.RegisterSequenceBi(peer.PublicKey, sequenceNumber, virtualConnection, transferSequenceTimeout, virtualConnection.sequenceTerminate)
|
|
|
|
udtConfig := udt.DefaultConfig()
|
|
udtConfig.MaxPacketSize = protocol.TransferMaxEmbedSize
|
|
udtConfig.MaxFlowWinSize = maxFlowWinSize
|
|
|
|
// start UDT sender
|
|
// Set streaming to true, otherwise udtSocket.Read returns the error "Message truncated" in case the reader has a smaller buffer.
|
|
udtConn, err := udt.DialUDT(udtConfig, virtualConnection, virtualConnection.incomingData, virtualConnection.outgoingData, virtualConnection.terminationSignal, true)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
defer udtConn.Close()
|
|
|
|
// First send the header (Total File Size, Transfer Size) and then the file data.
|
|
protocol.FileTransferWriteHeader(udtConn, fileSize, limit)
|
|
|
|
_, _, err = UserWarehouse.ReadFile(hash, int64(offset), int64(limit), udtConn)
|
|
|
|
return err
|
|
}
|
|
|
|
// FileTransferRequestUDT creates a UDT server listening for incoming data transfer and requests a file transfer from a remote peer.
|
|
// The caller must call udtConn.Close() when done. Do not use any of the closing functions of virtualConn.
|
|
// Limit is optional. 0 means the entire file.
|
|
func (peer *PeerInfo) FileTransferRequestUDT(hash []byte, offset, limit uint64) (udtConn net.Conn, virtualConn *virtualPacketConn, err error) {
|
|
virtualConn = newVirtualPacketConn(peer, func(data []byte, sequenceNumber uint32) {
|
|
peer.sendTransfer(data, protocol.TransferControlActive, protocol.TransferProtocolUDT, hash, offset, limit, sequenceNumber)
|
|
})
|
|
|
|
// new sequence
|
|
sequence := networks.Sequences.NewSequenceBi(peer.PublicKey, &peer.messageSequence, virtualConn, transferSequenceTimeout, virtualConn.sequenceTerminate)
|
|
if sequence == nil {
|
|
return nil, nil, errors.New("cannot acquire sequence")
|
|
}
|
|
virtualConn.sequenceNumber = sequence.SequenceNumber
|
|
|
|
udtConfig := udt.DefaultConfig()
|
|
udtConfig.MaxPacketSize = protocol.TransferMaxEmbedSize
|
|
udtConfig.MaxFlowWinSize = maxFlowWinSize
|
|
|
|
// start UDT receiver
|
|
udtListener := udt.ListenUDT(udtConfig, virtualConn, virtualConn.incomingData, virtualConn.outgoingData, virtualConn.terminationSignal)
|
|
|
|
// request file transfer
|
|
peer.sendTransfer(nil, protocol.TransferControlRequestStart, protocol.TransferProtocolUDT, hash, offset, limit, virtualConn.sequenceNumber)
|
|
|
|
// accept the connection
|
|
udtConn, err = udtListener.Accept()
|
|
if err != nil {
|
|
udtListener.Close()
|
|
return nil, nil, err
|
|
}
|
|
|
|
// We do not close the UDT listener here. It should automatically close after udtConn is closed.
|
|
|
|
return udtConn, virtualConn, nil
|
|
}
|