Cloak/internal/multiplex/frameSorter.go

126 lines
3.5 KiB
Go
Raw Normal View History

2018-10-05 22:44:20 +00:00
package multiplex
import (
"container/heap"
2019-01-12 15:51:20 +00:00
//"log"
2018-10-05 22:44:20 +00:00
)
// The data is multiplexed through several TCP connections, therefore the
// order of arrival is not guaranteed. A stream's first packet may be sent through
// connection0 and its second packet may be sent through connection1. Although both
// packets are transmitted reliably (as TCP is reliable), packet1 may arrive to the
// remote side before packet0. Cloak have to therefore sequence the packets so that they
// arrive in order as they were sent by the proxy software
2018-10-05 22:44:20 +00:00
//
// Cloak packets will have a 32-bit sequence number on them, so we know in which order
// they should be sent to the proxy software. The code in this file provides buffering and sorting.
2018-10-05 22:44:20 +00:00
//
// Similar to TCP, the next seq number after 2^32-1 is 0. This is called wrap around.
//
// Note that in golang, integer overflow results in wrap around
//
// Stream.nextRecvSeq is the expected sequence number of the next packet
// Stream.rev counts the amount of time the sequence number gets wrapped
type frameNode struct {
2019-01-13 19:06:12 +00:00
trueSeq uint64
frame *Frame
2018-10-05 22:44:20 +00:00
}
type sorterHeap []*frameNode
func (sh sorterHeap) Less(i, j int) bool {
2019-01-13 19:06:12 +00:00
return sh[i].trueSeq < sh[j].trueSeq
2018-10-05 22:44:20 +00:00
}
func (sh sorterHeap) Len() int {
return len(sh)
}
func (sh sorterHeap) Swap(i, j int) {
sh[i], sh[j] = sh[j], sh[i]
}
func (sh *sorterHeap) Push(x interface{}) {
*sh = append(*sh, x.(*frameNode))
}
func (sh *sorterHeap) Pop() interface{} {
old := *sh
n := len(old)
x := old[n-1]
*sh = old[0 : n-1]
return x
}
2018-11-07 21:16:13 +00:00
func (s *Stream) writeNewFrame(f *Frame) {
s.newFrameCh <- f
}
// recvNewFrame is a forever running loop which receives frames unordered,
// cache and order them and send them into sortedBufCh
2018-10-09 20:53:55 +00:00
func (s *Stream) recvNewFrame() {
for {
2019-07-28 10:58:45 +00:00
f := <-s.newFrameCh
if f == nil {
2018-10-27 14:27:43 +00:00
return
2018-10-09 20:53:55 +00:00
}
2018-10-16 20:13:19 +00:00
2018-12-22 23:58:03 +00:00
// when there's no ooo packages in heap and we receive the next package in order
2018-10-20 16:03:39 +00:00
if len(s.sh) == 0 && f.Seq == s.nextRecvSeq {
2019-01-19 19:30:00 +00:00
if f.Closing == 1 {
// empty data indicates closing signal
s.passiveClose()
2019-01-19 19:30:00 +00:00
return
} else {
s.sortedBuf.Write(f.Payload)
s.nextRecvSeq += 1
if s.nextRecvSeq == 0 { // getting wrapped
s.rev += 1
s.wrapMode = false
}
2019-01-19 19:30:00 +00:00
}
2018-10-20 16:03:39 +00:00
continue
}
2018-10-09 20:53:55 +00:00
fs := &frameNode{
2019-01-13 19:06:12 +00:00
trueSeq: 0,
frame: f,
}
if f.Seq < s.nextRecvSeq {
// For the ease of demonstration, assume seq is uint8, i.e. it wraps around after 255
// e.g. we are on rev=0 (wrap has not happened yet)
// and we get the order of recv as 253 254 0 1
// after 254, nextN should be 255, but 0 is received and 0 < 255
// now 0 should have a trueSeq of 256
if !s.wrapMode {
// wrapMode is true when the latest seq is wrapped but nextN is not
s.wrapMode = true
}
2019-01-21 11:42:27 +00:00
fs.trueSeq = uint64(1<<32)*uint64(s.rev+1) + uint64(f.Seq) + 1
2019-01-13 19:06:12 +00:00
// +1 because wrapped 0 should have trueSeq of 256 instead of 255
// when this bit was run on 1, the trueSeq of 1 would become 256
} else {
2019-01-21 11:42:27 +00:00
fs.trueSeq = uint64(1<<32)*uint64(s.rev) + uint64(f.Seq)
2019-01-13 19:06:12 +00:00
// when this bit was run on 255, the trueSeq of 255 would be 255
2018-10-09 20:53:55 +00:00
}
2018-10-05 22:44:20 +00:00
2018-10-09 20:53:55 +00:00
heap.Push(&s.sh, fs)
// Keep popping from the heap until empty or to the point that the wanted seq was not received
2019-01-13 19:06:12 +00:00
for len(s.sh) > 0 && s.sh[0].frame.Seq == s.nextRecvSeq {
f = heap.Pop(&s.sh).(*frameNode).frame
if f.Closing == 1 {
2019-01-19 19:30:00 +00:00
// empty data indicates closing signal
s.passiveClose()
2019-01-19 19:30:00 +00:00
return
} else {
s.sortedBuf.Write(f.Payload)
s.nextRecvSeq += 1
if s.nextRecvSeq == 0 { // getting wrapped
s.rev += 1
s.wrapMode = false
}
2019-01-19 19:30:00 +00:00
}
2018-10-05 22:44:20 +00:00
}
}
}