This repository has been archived by the owner on Feb 4, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
handshake.go
146 lines (129 loc) · 4.2 KB
/
handshake.go
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
package rtmp
import (
"bufio"
"crypto/rand"
"encoding/binary"
"io"
"time"
)
// The C0 and S0 packets are a single octet, treated as a single 8-bit integer field:
//
// 0 1 2 3 4 5 6 7
// +-+-+-+-+-+-+-+-+
// | version |
// +-+-+-+-+-+-+-+-+
//
// In RTMP 1.0, A server that does not recognize the client's requested version SHOULD respond with 3.
func newChunkC0S0() *chunkC0S0 {
return &chunkC0S0{version: 3}
}
type chunkC0S0 struct {
version uint8
}
func (c *chunkC0S0) Bytes() []byte {
return []byte{c.version}
}
func readC0S0(br *bufio.Reader) (*chunkC0S0, error) {
ver, err := br.ReadByte()
if err != nil {
return nil, err
}
return &chunkC0S0{
version: ver,
}, nil
}
// The C1 and S1 packets are 1536 (=32*48) octets long, consisting of the following fields:
//
// 0 1 2 3
// 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// | time (4 bytes) |
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// | zero (4 bytes) |
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// | random bytes |
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// | random bytes |
// | (cont) |
// | .... |
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
//
func newChunkC1S1(time1 uint32) *chunkC1S1 {
randomBytes := make([]byte, 1528)
rand.Read(randomBytes)
return &chunkC1S1{
time: time1,
randomBytes: randomBytes,
}
}
type chunkC1S1 struct {
time uint32
randomBytes []byte // 1528 bytes
}
func (c *chunkC1S1) Bytes() []byte {
chunk := make([]byte, 1536)
binary.BigEndian.PutUint32(chunk[:4], c.time)
copy(chunk[8:], c.randomBytes)
return chunk
}
func readC1S1(br *bufio.Reader) (*chunkC1S1, error) {
chunk := make([]byte, 1536)
_, err := io.ReadAtLeast(br, chunk, 1536)
if err != nil {
return nil, err
}
return &chunkC1S1{
time: binary.BigEndian.Uint32(chunk[:4]),
randomBytes: chunk[8:],
}, nil
}
// The C2 and S2 packets are 1536 (=32*48) octets long, and nearly an echo of S1 and C1 (respectively), consisting of the following fields:
//
// 0 1 2 3
// 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// | time (4 bytes) |
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// | time2 (4 bytes) |
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// | random echo |
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// | random echo |
// | (cont) |
// | .... |
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
//
func newChunkC2S2(c *chunkC1S1) *chunkC2S2 {
now := uint32(time.Now().UnixNano() / int64(time.Millisecond))
return &chunkC2S2{
time: c.time,
time2: now,
randomEcho: c.randomBytes,
}
}
type chunkC2S2 struct {
time uint32
time2 uint32
randomEcho []byte // 1528 bytes
}
func (c *chunkC2S2) Bytes() []byte {
chunk := make([]byte, 1536)
binary.BigEndian.PutUint32(chunk[:4], c.time)
binary.BigEndian.PutUint32(chunk[4:8], c.time2)
copy(chunk[8:], c.randomEcho)
return chunk
}
func readC2S2(br *bufio.Reader) (*chunkC2S2, error) {
chunk := make([]byte, 1536)
_, err := io.ReadAtLeast(br, chunk, 1536)
if err != nil {
return nil, err
}
time1 := chunk[:4]
time2 := chunk[4:8]
return &chunkC2S2{
time: binary.BigEndian.Uint32(time1),
time2: binary.BigEndian.Uint32(time2),
randomEcho: chunk[8:],
}, nil
}