1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-08-27 06:44:24 -04:00
v2fly/transport/internet/kcp/segment.go

230 lines
4.5 KiB
Go
Raw Normal View History

2016-06-27 16:22:01 -04:00
package kcp
import (
2016-06-27 16:54:59 -04:00
"github.com/v2ray/v2ray-core/common"
2016-06-27 16:22:01 -04:00
"github.com/v2ray/v2ray-core/common/alloc"
2016-06-29 04:34:34 -04:00
_ "github.com/v2ray/v2ray-core/common/log"
2016-06-27 16:22:01 -04:00
"github.com/v2ray/v2ray-core/common/serial"
)
2016-07-14 16:10:37 -04:00
type Command byte
2016-06-27 16:22:01 -04:00
const (
2016-07-14 16:10:37 -04:00
CommandACK Command = 0
CommandData Command = 1
CommandTerminate Command = 2
CommandPing Command = 3
2016-06-27 16:22:01 -04:00
)
type SegmentOption byte
const (
SegmentOptionClose SegmentOption = 1
)
2016-07-04 08:17:42 -04:00
type Segment interface {
2016-06-27 16:54:59 -04:00
common.Releasable
2016-06-27 16:22:01 -04:00
ByteSize() int
Bytes([]byte) []byte
}
2016-06-29 06:52:23 -04:00
const (
DataSegmentOverhead = 18
)
2016-06-27 16:22:01 -04:00
type DataSegment struct {
2016-06-29 04:34:34 -04:00
Conv uint16
Opt SegmentOption
Timestamp uint32
Number uint32
SendingNext uint32
Data *alloc.Buffer
2016-06-27 16:22:01 -04:00
timeout uint32
ackSkipped uint32
transmit uint32
}
2016-07-05 04:28:23 -04:00
func NewDataSegment() *DataSegment {
return new(DataSegment)
2016-07-05 04:28:23 -04:00
}
2016-06-27 16:22:01 -04:00
func (this *DataSegment) Bytes(b []byte) []byte {
b = serial.Uint16ToBytes(this.Conv, b)
2016-07-14 16:10:37 -04:00
b = append(b, byte(CommandData), byte(this.Opt))
2016-06-27 16:22:01 -04:00
b = serial.Uint32ToBytes(this.Timestamp, b)
b = serial.Uint32ToBytes(this.Number, b)
2016-06-29 04:34:34 -04:00
b = serial.Uint32ToBytes(this.SendingNext, b)
2016-06-27 16:22:01 -04:00
b = serial.Uint16ToBytes(uint16(this.Data.Len()), b)
b = append(b, this.Data.Value...)
return b
}
func (this *DataSegment) ByteSize() int {
2016-06-29 04:34:34 -04:00
return 2 + 1 + 1 + 4 + 4 + 4 + 2 + this.Data.Len()
2016-06-27 16:22:01 -04:00
}
2016-06-27 16:54:59 -04:00
func (this *DataSegment) Release() {
this.Data.Release()
2016-07-05 04:28:23 -04:00
this.Data = nil
2016-06-27 16:54:59 -04:00
}
2016-07-02 16:17:41 -04:00
type AckSegment struct {
2016-06-27 16:22:01 -04:00
Conv uint16
Opt SegmentOption
ReceivingWindow uint32
2016-06-29 04:34:34 -04:00
ReceivingNext uint32
2016-06-27 16:22:01 -04:00
Count byte
NumberList []uint32
TimestampList []uint32
}
2016-07-05 04:28:23 -04:00
func NewAckSegment() *AckSegment {
return new(AckSegment)
2016-07-05 04:28:23 -04:00
}
2016-07-05 04:33:11 -04:00
func (this *AckSegment) PutNumber(number uint32, timestamp uint32) {
this.Count++
this.NumberList = append(this.NumberList, number)
this.TimestampList = append(this.TimestampList, timestamp)
}
func (this *AckSegment) IsFull() bool {
return this.Count == 128
}
2016-07-02 16:17:41 -04:00
func (this *AckSegment) ByteSize() int {
2016-06-29 04:34:34 -04:00
return 2 + 1 + 1 + 4 + 4 + 1 + int(this.Count)*4 + int(this.Count)*4
2016-06-27 16:22:01 -04:00
}
2016-07-02 16:17:41 -04:00
func (this *AckSegment) Bytes(b []byte) []byte {
2016-06-27 16:22:01 -04:00
b = serial.Uint16ToBytes(this.Conv, b)
2016-07-14 16:10:37 -04:00
b = append(b, byte(CommandACK), byte(this.Opt))
2016-06-27 16:22:01 -04:00
b = serial.Uint32ToBytes(this.ReceivingWindow, b)
2016-06-29 04:34:34 -04:00
b = serial.Uint32ToBytes(this.ReceivingNext, b)
2016-06-27 16:22:01 -04:00
b = append(b, this.Count)
for i := byte(0); i < this.Count; i++ {
b = serial.Uint32ToBytes(this.NumberList[i], b)
b = serial.Uint32ToBytes(this.TimestampList[i], b)
}
return b
}
2016-07-05 04:28:23 -04:00
func (this *AckSegment) Release() {
this.NumberList = nil
this.TimestampList = nil
2016-07-05 04:28:23 -04:00
}
2016-06-27 16:54:59 -04:00
2016-06-29 04:34:34 -04:00
type CmdOnlySegment struct {
Conv uint16
2016-07-14 16:10:37 -04:00
Cmd Command
2016-06-29 04:34:34 -04:00
Opt SegmentOption
SendingNext uint32
ReceivinNext uint32
2016-06-27 16:22:01 -04:00
}
2016-07-05 04:28:23 -04:00
func NewCmdOnlySegment() *CmdOnlySegment {
return new(CmdOnlySegment)
2016-07-05 04:28:23 -04:00
}
2016-06-29 04:34:34 -04:00
func (this *CmdOnlySegment) ByteSize() int {
return 2 + 1 + 1 + 4 + 4
2016-06-27 16:22:01 -04:00
}
2016-06-29 04:34:34 -04:00
func (this *CmdOnlySegment) Bytes(b []byte) []byte {
2016-06-27 16:22:01 -04:00
b = serial.Uint16ToBytes(this.Conv, b)
2016-06-29 04:34:34 -04:00
b = append(b, byte(this.Cmd), byte(this.Opt))
b = serial.Uint32ToBytes(this.SendingNext, b)
b = serial.Uint32ToBytes(this.ReceivinNext, b)
2016-06-27 16:22:01 -04:00
return b
}
2016-07-05 04:28:23 -04:00
func (this *CmdOnlySegment) Release() {
}
2016-06-27 16:54:59 -04:00
2016-07-04 08:17:42 -04:00
func ReadSegment(buf []byte) (Segment, []byte) {
2016-06-29 18:12:36 -04:00
if len(buf) <= 4 {
2016-06-27 16:22:01 -04:00
return nil, nil
}
conv := serial.BytesToUint16(buf)
buf = buf[2:]
2016-07-14 16:10:37 -04:00
cmd := Command(buf[0])
2016-06-27 16:22:01 -04:00
opt := SegmentOption(buf[1])
buf = buf[2:]
2016-07-14 16:10:37 -04:00
if cmd == CommandData {
2016-07-05 05:36:05 -04:00
seg := NewDataSegment()
seg.Conv = conv
seg.Opt = opt
2016-06-29 18:12:36 -04:00
if len(buf) < 16 {
return nil, nil
}
2016-06-27 16:22:01 -04:00
seg.Timestamp = serial.BytesToUint32(buf)
buf = buf[4:]
seg.Number = serial.BytesToUint32(buf)
buf = buf[4:]
2016-06-29 04:34:34 -04:00
seg.SendingNext = serial.BytesToUint32(buf)
2016-06-27 16:22:01 -04:00
buf = buf[4:]
2016-06-29 18:12:36 -04:00
dataLen := int(serial.BytesToUint16(buf))
2016-06-27 16:22:01 -04:00
buf = buf[2:]
2016-06-29 18:12:36 -04:00
if len(buf) < dataLen {
return nil, nil
}
seg.Data = alloc.NewSmallBuffer().Clear().Append(buf[:dataLen])
buf = buf[dataLen:]
2016-06-27 16:22:01 -04:00
return seg, buf
}
2016-07-14 16:10:37 -04:00
if cmd == CommandACK {
2016-07-05 05:36:05 -04:00
seg := NewAckSegment()
seg.Conv = conv
seg.Opt = opt
2016-06-29 18:12:36 -04:00
if len(buf) < 9 {
return nil, nil
}
2016-06-27 16:22:01 -04:00
seg.ReceivingWindow = serial.BytesToUint32(buf)
buf = buf[4:]
2016-06-29 04:34:34 -04:00
seg.ReceivingNext = serial.BytesToUint32(buf)
2016-06-27 16:22:01 -04:00
buf = buf[4:]
count := int(buf[0])
2016-06-27 16:22:01 -04:00
buf = buf[1:]
if len(buf) < count*8 {
2016-06-29 18:12:36 -04:00
return nil, nil
}
for i := 0; i < count; i++ {
seg.PutNumber(serial.BytesToUint32(buf), serial.BytesToUint32(buf[4:]))
2016-06-27 16:22:01 -04:00
buf = buf[8:]
}
return seg, buf
}
2016-07-05 05:36:05 -04:00
seg := NewCmdOnlySegment()
seg.Conv = conv
seg.Cmd = cmd
seg.Opt = opt
2016-06-27 16:22:01 -04:00
2016-06-29 18:12:36 -04:00
if len(buf) < 8 {
return nil, nil
}
2016-06-29 04:34:34 -04:00
seg.SendingNext = serial.BytesToUint32(buf)
buf = buf[4:]
seg.ReceivinNext = serial.BytesToUint32(buf)
buf = buf[4:]
return seg, buf
2016-06-27 16:22:01 -04:00
}