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

289 lines
5.5 KiB
Go
Raw Normal View History

2016-06-27 16:22:01 -04:00
package kcp
import (
2016-08-20 14:55:45 -04:00
"v2ray.com/core/common"
"v2ray.com/core/common/alloc"
"v2ray.com/core/common/serial"
2016-06-27 16:22:01 -04:00
)
2016-12-08 10:32:53 -05:00
// Command is a KCP command that indicate the purpose of a Segment.
2016-07-14 16:10:37 -04:00
type Command byte
2016-06-27 16:22:01 -04:00
const (
2016-12-08 10:32:53 -05:00
// CommandACK indicates a AckSegment.
CommandACK Command = 0
// CommandData indicates a DataSegment.
CommandData Command = 1
// CommandTerminate indicates that peer terminates the connection.
2016-07-14 16:10:37 -04:00
CommandTerminate Command = 2
2016-12-08 10:32:53 -05:00
// CommandPing indicates a ping.
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-11-27 02:58:31 -05:00
Conversation() uint16
2016-12-08 10:27:41 -05:00
Command() Command
2016-06-27 16:22:01 -04:00
ByteSize() int
2016-12-06 05:03:42 -05:00
Bytes() alloc.BytesWriter
2016-06-27 16:22:01 -04:00
}
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
2016-07-14 16:52:00 -04:00
Option SegmentOption
2016-06-29 04:34:34 -04:00
Timestamp uint32
Number uint32
SendingNext uint32
Data *alloc.Buffer
2016-06-27 16:22:01 -04:00
2016-10-11 07:17:57 -04:00
timeout uint32
transmit uint32
2016-06-27 16:22:01 -04:00
}
2016-07-05 04:28:23 -04:00
func NewDataSegment() *DataSegment {
return new(DataSegment)
2016-07-05 04:28:23 -04:00
}
2016-11-27 15:39:09 -05:00
func (v *DataSegment) Conversation() uint16 {
return v.Conv
2016-11-27 02:58:31 -05:00
}
2016-12-08 10:27:41 -05:00
func (v *DataSegment) Command() Command {
return CommandData
}
2016-11-27 15:39:09 -05:00
func (v *DataSegment) SetData(b []byte) {
if v.Data == nil {
v.Data = alloc.NewSmallBuffer()
2016-11-01 07:07:20 -04:00
}
2016-12-06 05:03:42 -05:00
v.Data.Clear()
v.Data.Append(b)
}
func (v *DataSegment) Bytes() alloc.BytesWriter {
return func(b []byte) int {
b = serial.Uint16ToBytes(v.Conv, b[:0])
b = append(b, byte(CommandData), byte(v.Option))
b = serial.Uint32ToBytes(v.Timestamp, b)
b = serial.Uint32ToBytes(v.Number, b)
b = serial.Uint32ToBytes(v.SendingNext, b)
b = serial.Uint16ToBytes(uint16(v.Data.Len()), b)
b = append(b, v.Data.Bytes()...)
return v.ByteSize()
}
2016-06-27 16:22:01 -04:00
}
2016-11-27 15:39:09 -05:00
func (v *DataSegment) ByteSize() int {
return 2 + 1 + 1 + 4 + 4 + 4 + 2 + v.Data.Len()
2016-06-27 16:22:01 -04:00
}
2016-11-27 15:39:09 -05:00
func (v *DataSegment) Release() {
v.Data.Release()
v.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
2016-07-14 16:52:00 -04:00
Option SegmentOption
2016-06-27 16:22:01 -04:00
ReceivingWindow uint32
2016-06-29 04:34:34 -04:00
ReceivingNext uint32
Timestamp uint32
2016-06-27 16:22:01 -04:00
Count byte
NumberList []uint32
}
2016-11-30 16:24:06 -05:00
const ackNumberLimit = 128
2016-07-05 04:28:23 -04:00
func NewAckSegment() *AckSegment {
2016-11-30 16:24:06 -05:00
return &AckSegment{
NumberList: make([]uint32, 0, ackNumberLimit),
}
2016-07-05 04:28:23 -04:00
}
2016-11-27 15:39:09 -05:00
func (v *AckSegment) Conversation() uint16 {
return v.Conv
2016-11-27 02:58:31 -05:00
}
2016-12-08 10:27:41 -05:00
func (v *AckSegment) Command() Command {
return CommandACK
}
2016-11-27 15:39:09 -05:00
func (v *AckSegment) PutTimestamp(timestamp uint32) {
if timestamp-v.Timestamp < 0x7FFFFFFF {
v.Timestamp = timestamp
}
}
2016-11-27 15:39:09 -05:00
func (v *AckSegment) PutNumber(number uint32) {
v.Count++
v.NumberList = append(v.NumberList, number)
2016-07-05 04:33:11 -04:00
}
2016-11-27 15:39:09 -05:00
func (v *AckSegment) IsFull() bool {
2016-11-30 16:24:06 -05:00
return v.Count == ackNumberLimit
2016-07-05 04:33:11 -04:00
}
2016-11-27 15:39:09 -05:00
func (v *AckSegment) ByteSize() int {
return 2 + 1 + 1 + 4 + 4 + 4 + 1 + int(v.Count)*4
2016-06-27 16:22:01 -04:00
}
2016-12-06 05:03:42 -05:00
func (v *AckSegment) Bytes() alloc.BytesWriter {
return func(b []byte) int {
b = serial.Uint16ToBytes(v.Conv, b[:0])
b = append(b, byte(CommandACK), byte(v.Option))
b = serial.Uint32ToBytes(v.ReceivingWindow, b)
b = serial.Uint32ToBytes(v.ReceivingNext, b)
b = serial.Uint32ToBytes(v.Timestamp, b)
b = append(b, v.Count)
for i := byte(0); i < v.Count; i++ {
b = serial.Uint32ToBytes(v.NumberList[i], b)
}
return v.ByteSize()
2016-06-27 16:22:01 -04:00
}
}
2016-11-27 15:39:09 -05:00
func (v *AckSegment) Release() {
v.NumberList = 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-12-08 10:27:41 -05:00
Cmd Command
2016-07-14 16:52:00 -04:00
Option SegmentOption
2016-06-29 04:34:34 -04:00
SendingNext uint32
ReceivinNext uint32
PeerRTO 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-11-27 15:39:09 -05:00
func (v *CmdOnlySegment) Conversation() uint16 {
return v.Conv
2016-11-27 02:58:31 -05:00
}
2016-12-08 10:27:41 -05:00
func (v *CmdOnlySegment) Command() Command {
return v.Cmd
}
2016-11-27 15:39:09 -05:00
func (v *CmdOnlySegment) ByteSize() int {
return 2 + 1 + 1 + 4 + 4 + 4
2016-06-27 16:22:01 -04:00
}
2016-12-06 05:03:42 -05:00
func (v *CmdOnlySegment) Bytes() alloc.BytesWriter {
return func(b []byte) int {
b = serial.Uint16ToBytes(v.Conv, b[:0])
2016-12-08 10:27:41 -05:00
b = append(b, byte(v.Cmd), byte(v.Option))
2016-12-06 05:03:42 -05:00
b = serial.Uint32ToBytes(v.SendingNext, b)
b = serial.Uint32ToBytes(v.ReceivinNext, b)
b = serial.Uint32ToBytes(v.PeerRTO, b)
return v.ByteSize()
}
2016-06-27 16:22:01 -04:00
}
2016-11-27 15:39:09 -05:00
func (v *CmdOnlySegment) Release() {
2016-07-05 04:28:23 -04:00
}
2016-06-27 16:54:59 -04:00
2016-07-04 08:17:42 -04:00
func ReadSegment(buf []byte) (Segment, []byte) {
2016-10-11 05:44:30 -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
2016-07-14 16:52:00 -04:00
seg.Option = 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
}
2016-11-01 07:07:20 -04:00
seg.SetData(buf[:dataLen])
2016-06-29 18:12:36 -04:00
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
2016-07-14 16:52:00 -04:00
seg.Option = opt
if len(buf) < 13 {
2016-06-29 18:12:36 -04:00
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:]
seg.Timestamp = serial.BytesToUint32(buf)
buf = buf[4:]
count := int(buf[0])
2016-06-27 16:22:01 -04:00
buf = buf[1:]
if len(buf) < count*4 {
2016-06-29 18:12:36 -04:00
return nil, nil
}
for i := 0; i < count; i++ {
seg.PutNumber(serial.BytesToUint32(buf))
buf = buf[4:]
2016-06-27 16:22:01 -04:00
}
return seg, buf
}
2016-07-05 05:36:05 -04:00
seg := NewCmdOnlySegment()
seg.Conv = conv
2016-12-08 10:27:41 -05:00
seg.Cmd = cmd
2016-07-14 16:52:00 -04:00
seg.Option = opt
2016-06-27 16:22:01 -04:00
if len(buf) < 12 {
2016-06-29 18:12:36 -04:00
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:]
seg.PeerRTO = serial.BytesToUint32(buf)
buf = buf[4:]
2016-06-29 04:34:34 -04:00
return seg, buf
2016-06-27 16:22:01 -04:00
}