Hunter0x7c7
2022-08-11 b8230139fb40edea387617b6accd8371e37eda58
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
package kcp
 
import (
    "encoding/binary"
 
    "github.com/v2fly/v2ray-core/v5/common/buf"
)
 
// Command is a KCP command that indicate the purpose of a Segment.
type Command byte
 
const (
    // CommandACK indicates an AckSegment.
    CommandACK Command = 0
    // CommandData indicates a DataSegment.
    CommandData Command = 1
    // CommandTerminate indicates that peer terminates the connection.
    CommandTerminate Command = 2
    // CommandPing indicates a ping.
    CommandPing Command = 3
)
 
type SegmentOption byte
 
const (
    SegmentOptionClose SegmentOption = 1
)
 
type Segment interface {
    Release()
    Conversation() uint16
    Command() Command
    ByteSize() int32
    Serialize([]byte)
    parse(conv uint16, cmd Command, opt SegmentOption, buf []byte) (bool, []byte)
}
 
const (
    DataSegmentOverhead = 18
)
 
type DataSegment struct {
    Conv        uint16
    Option      SegmentOption
    Timestamp   uint32
    Number      uint32
    SendingNext uint32
 
    payload  *buf.Buffer
    timeout  uint32
    transmit uint32
}
 
func NewDataSegment() *DataSegment {
    return new(DataSegment)
}
 
func (s *DataSegment) parse(conv uint16, cmd Command, opt SegmentOption, buf []byte) (bool, []byte) {
    s.Conv = conv
    s.Option = opt
    if len(buf) < 15 {
        return false, nil
    }
    s.Timestamp = binary.BigEndian.Uint32(buf)
    buf = buf[4:]
 
    s.Number = binary.BigEndian.Uint32(buf)
    buf = buf[4:]
 
    s.SendingNext = binary.BigEndian.Uint32(buf)
    buf = buf[4:]
 
    dataLen := int(binary.BigEndian.Uint16(buf))
    buf = buf[2:]
 
    if len(buf) < dataLen {
        return false, nil
    }
    s.Data().Clear()
    s.Data().Write(buf[:dataLen])
    buf = buf[dataLen:]
 
    return true, buf
}
 
func (s *DataSegment) Conversation() uint16 {
    return s.Conv
}
 
func (*DataSegment) Command() Command {
    return CommandData
}
 
func (s *DataSegment) Detach() *buf.Buffer {
    r := s.payload
    s.payload = nil
    return r
}
 
func (s *DataSegment) Data() *buf.Buffer {
    if s.payload == nil {
        s.payload = buf.New()
    }
    return s.payload
}
 
func (s *DataSegment) Serialize(b []byte) {
    binary.BigEndian.PutUint16(b, s.Conv)
    b[2] = byte(CommandData)
    b[3] = byte(s.Option)
    binary.BigEndian.PutUint32(b[4:], s.Timestamp)
    binary.BigEndian.PutUint32(b[8:], s.Number)
    binary.BigEndian.PutUint32(b[12:], s.SendingNext)
    binary.BigEndian.PutUint16(b[16:], uint16(s.payload.Len()))
    copy(b[18:], s.payload.Bytes())
}
 
func (s *DataSegment) ByteSize() int32 {
    return 2 + 1 + 1 + 4 + 4 + 4 + 2 + s.payload.Len()
}
 
func (s *DataSegment) Release() {
    s.payload.Release()
    s.payload = nil
}
 
type AckSegment struct {
    Conv            uint16
    Option          SegmentOption
    ReceivingWindow uint32
    ReceivingNext   uint32
    Timestamp       uint32
    NumberList      []uint32
}
 
const ackNumberLimit = 128
 
func NewAckSegment() *AckSegment {
    return new(AckSegment)
}
 
func (s *AckSegment) parse(conv uint16, cmd Command, opt SegmentOption, buf []byte) (bool, []byte) {
    s.Conv = conv
    s.Option = opt
    if len(buf) < 13 {
        return false, nil
    }
 
    s.ReceivingWindow = binary.BigEndian.Uint32(buf)
    buf = buf[4:]
 
    s.ReceivingNext = binary.BigEndian.Uint32(buf)
    buf = buf[4:]
 
    s.Timestamp = binary.BigEndian.Uint32(buf)
    buf = buf[4:]
 
    count := int(buf[0])
    buf = buf[1:]
 
    if len(buf) < count*4 {
        return false, nil
    }
    for i := 0; i < count; i++ {
        s.PutNumber(binary.BigEndian.Uint32(buf))
        buf = buf[4:]
    }
 
    return true, buf
}
 
func (s *AckSegment) Conversation() uint16 {
    return s.Conv
}
 
func (*AckSegment) Command() Command {
    return CommandACK
}
 
func (s *AckSegment) PutTimestamp(timestamp uint32) {
    if timestamp-s.Timestamp < 0x7FFFFFFF {
        s.Timestamp = timestamp
    }
}
 
func (s *AckSegment) PutNumber(number uint32) {
    s.NumberList = append(s.NumberList, number)
}
 
func (s *AckSegment) IsFull() bool {
    return len(s.NumberList) == ackNumberLimit
}
 
func (s *AckSegment) IsEmpty() bool {
    return len(s.NumberList) == 0
}
 
func (s *AckSegment) ByteSize() int32 {
    return 2 + 1 + 1 + 4 + 4 + 4 + 1 + int32(len(s.NumberList)*4)
}
 
func (s *AckSegment) Serialize(b []byte) {
    binary.BigEndian.PutUint16(b, s.Conv)
    b[2] = byte(CommandACK)
    b[3] = byte(s.Option)
    binary.BigEndian.PutUint32(b[4:], s.ReceivingWindow)
    binary.BigEndian.PutUint32(b[8:], s.ReceivingNext)
    binary.BigEndian.PutUint32(b[12:], s.Timestamp)
    b[16] = byte(len(s.NumberList))
    n := 17
    for _, number := range s.NumberList {
        binary.BigEndian.PutUint32(b[n:], number)
        n += 4
    }
}
 
func (s *AckSegment) Release() {}
 
type CmdOnlySegment struct {
    Conv          uint16
    Cmd           Command
    Option        SegmentOption
    SendingNext   uint32
    ReceivingNext uint32
    PeerRTO       uint32
}
 
func NewCmdOnlySegment() *CmdOnlySegment {
    return new(CmdOnlySegment)
}
 
func (s *CmdOnlySegment) parse(conv uint16, cmd Command, opt SegmentOption, buf []byte) (bool, []byte) {
    s.Conv = conv
    s.Cmd = cmd
    s.Option = opt
 
    if len(buf) < 12 {
        return false, nil
    }
 
    s.SendingNext = binary.BigEndian.Uint32(buf)
    buf = buf[4:]
 
    s.ReceivingNext = binary.BigEndian.Uint32(buf)
    buf = buf[4:]
 
    s.PeerRTO = binary.BigEndian.Uint32(buf)
    buf = buf[4:]
 
    return true, buf
}
 
func (s *CmdOnlySegment) Conversation() uint16 {
    return s.Conv
}
 
func (s *CmdOnlySegment) Command() Command {
    return s.Cmd
}
 
func (*CmdOnlySegment) ByteSize() int32 {
    return 2 + 1 + 1 + 4 + 4 + 4
}
 
func (s *CmdOnlySegment) Serialize(b []byte) {
    binary.BigEndian.PutUint16(b, s.Conv)
    b[2] = byte(s.Cmd)
    b[3] = byte(s.Option)
    binary.BigEndian.PutUint32(b[4:], s.SendingNext)
    binary.BigEndian.PutUint32(b[8:], s.ReceivingNext)
    binary.BigEndian.PutUint32(b[12:], s.PeerRTO)
}
 
func (*CmdOnlySegment) Release() {}
 
func ReadSegment(buf []byte) (Segment, []byte) {
    if len(buf) < 4 {
        return nil, nil
    }
 
    conv := binary.BigEndian.Uint16(buf)
    buf = buf[2:]
 
    cmd := Command(buf[0])
    opt := SegmentOption(buf[1])
    buf = buf[2:]
 
    var seg Segment
    switch cmd {
    case CommandData:
        seg = NewDataSegment()
    case CommandACK:
        seg = NewAckSegment()
    default:
        seg = NewCmdOnlySegment()
    }
 
    valid, extra := seg.parse(conv, cmd, opt, buf)
    if !valid {
        return nil, nil
    }
    return seg, extra
}