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
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
|
// Package websocket implements RFC 6455 WebSocket framing without external dependencies.
// Adapted from muxstr's websocket implementation.
package websocket
import (
"bufio"
"context"
"crypto/rand"
"crypto/sha1"
"crypto/tls"
"encoding/base64"
"encoding/binary"
"fmt"
"io"
"net"
"net/http"
"net/url"
"strings"
"sync"
"time"
)
const (
opContinuation = 0x0
opBinary = 0x2
opClose = 0x8
opPing = 0x9
opPong = 0xA
)
// Conn is a WebSocket connection.
type Conn struct {
rwc net.Conn
br *bufio.Reader
client bool
mu sync.Mutex
}
func mask(key [4]byte, data []byte) {
for i := range data {
data[i] ^= key[i%4]
}
}
func (c *Conn) writeFrame(opcode byte, payload []byte) error {
c.mu.Lock()
defer c.mu.Unlock()
length := len(payload)
header := []byte{0x80 | opcode, 0} // FIN + opcode
if c.client {
header[1] = 0x80 // mask bit
}
switch {
case length <= 125:
header[1] |= byte(length)
case length <= 65535:
header[1] |= 126
ext := make([]byte, 2)
binary.BigEndian.PutUint16(ext, uint16(length))
header = append(header, ext...)
default:
header[1] |= 127
ext := make([]byte, 8)
binary.BigEndian.PutUint64(ext, uint64(length))
header = append(header, ext...)
}
if c.client {
var key [4]byte
rand.Read(key[:])
header = append(header, key[:]...)
// mask a copy so we don't modify the caller's slice
masked := make([]byte, len(payload))
copy(masked, payload)
mask(key, masked)
payload = masked
}
if _, err := c.rwc.Write(header); err != nil {
return err
}
_, err := c.rwc.Write(payload)
return err
}
func (c *Conn) readFrame() (fin bool, opcode byte, payload []byte, err error) {
var hdr [2]byte
if _, err = io.ReadFull(c.br, hdr[:]); err != nil {
return
}
fin = hdr[0]&0x80 != 0
opcode = hdr[0] & 0x0F
masked := hdr[1]&0x80 != 0
length := uint64(hdr[1] & 0x7F)
switch length {
case 126:
var ext [2]byte
if _, err = io.ReadFull(c.br, ext[:]); err != nil {
return
}
length = uint64(binary.BigEndian.Uint16(ext[:]))
case 127:
var ext [8]byte
if _, err = io.ReadFull(c.br, ext[:]); err != nil {
return
}
length = binary.BigEndian.Uint64(ext[:])
}
var key [4]byte
if masked {
if _, err = io.ReadFull(c.br, key[:]); err != nil {
return
}
}
payload = make([]byte, length)
if _, err = io.ReadFull(c.br, payload); err != nil {
return
}
if masked {
mask(key, payload)
}
return
}
// Read reads the next complete message from the connection.
// It handles ping frames automatically by sending pong responses.
// It respects context cancellation by setting a read deadline.
func (c *Conn) Read(ctx context.Context) ([]byte, error) {
stop := context.AfterFunc(ctx, func() {
c.rwc.SetReadDeadline(time.Now())
})
defer stop()
var buf []byte
for {
fin, opcode, payload, err := c.readFrame()
if err != nil {
if ctx.Err() != nil {
return nil, ctx.Err()
}
return nil, err
}
switch opcode {
case opPing:
c.writeFrame(opPong, payload)
continue
case opClose:
return nil, fmt.Errorf("websocket: close frame received")
case opBinary, opContinuation:
buf = append(buf, payload...)
if fin {
return buf, nil
}
default:
// text or other opcodes — treat payload as binary
buf = append(buf, payload...)
if fin {
return buf, nil
}
}
}
}
// Write sends a binary frame to the connection.
func (c *Conn) Write(data []byte) error {
return c.writeFrame(opBinary, data)
}
// Ping sends a WebSocket ping frame.
func (c *Conn) Ping() error {
return c.writeFrame(opPing, nil)
}
// Close sends a close frame with the given code and reason, then closes the
// underlying connection.
func (c *Conn) Close(code uint16, reason string) error {
payload := make([]byte, 2+len(reason))
binary.BigEndian.PutUint16(payload, code)
copy(payload[2:], reason)
c.writeFrame(opClose, payload)
return c.rwc.Close()
}
// CloseConn closes the underlying network connection without sending a close frame.
func (c *Conn) CloseConn() error {
return c.rwc.Close()
}
// SetReadDeadline sets the read deadline on the underlying connection.
func (c *Conn) SetReadDeadline(t time.Time) error {
return c.rwc.SetReadDeadline(t)
}
var wsGUID = "258EAFA5-E914-47DA-95CA-C5AB0DC85B11"
func acceptKey(key string) string {
h := sha1.New()
h.Write([]byte(key))
h.Write([]byte(wsGUID))
return base64.StdEncoding.EncodeToString(h.Sum(nil))
}
// Dial connects to a WebSocket server at rawURL and performs the client-side
// RFC 6455 handshake. Supports ws:// and wss:// schemes.
func Dial(rawURL string) (*Conn, error) {
u, err := url.Parse(rawURL)
if err != nil {
return nil, fmt.Errorf("websocket: parse url: %w", err)
}
host := u.Host
var netConn net.Conn
switch u.Scheme {
case "ws":
if !strings.Contains(host, ":") {
host += ":80"
}
netConn, err = net.Dial("tcp", host)
case "wss":
if !strings.Contains(host, ":") {
host += ":443"
}
netConn, err = tls.Dial("tcp", host, &tls.Config{ServerName: u.Hostname()})
default:
return nil, fmt.Errorf("websocket: unsupported scheme %q (use ws:// or wss://)", u.Scheme)
}
if err != nil {
return nil, fmt.Errorf("websocket: dial %s: %w", host, err)
}
// Generate a random 16-byte key and base64-encode it.
var keyBytes [16]byte
if _, err := rand.Read(keyBytes[:]); err != nil {
netConn.Close()
return nil, fmt.Errorf("websocket: generate key: %w", err)
}
key := base64.StdEncoding.EncodeToString(keyBytes[:])
path := u.RequestURI()
if path == "" {
path = "/"
}
req := "GET " + path + " HTTP/1.1\r\n" +
"Host: " + u.Host + "\r\n" +
"Upgrade: websocket\r\n" +
"Connection: Upgrade\r\n" +
"Sec-WebSocket-Key: " + key + "\r\n" +
"Sec-WebSocket-Version: 13\r\n\r\n"
if _, err := netConn.Write([]byte(req)); err != nil {
netConn.Close()
return nil, fmt.Errorf("websocket: send handshake: %w", err)
}
br := bufio.NewReader(netConn)
resp, err := http.ReadResponse(br, nil)
if err != nil {
netConn.Close()
return nil, fmt.Errorf("websocket: read handshake response: %w", err)
}
resp.Body.Close()
if resp.StatusCode != 101 {
netConn.Close()
return nil, fmt.Errorf("websocket: server returned status %d, want 101", resp.StatusCode)
}
if resp.Header.Get("Sec-WebSocket-Accept") != acceptKey(key) {
netConn.Close()
return nil, fmt.Errorf("websocket: bad Sec-WebSocket-Accept header")
}
return &Conn{rwc: netConn, br: br, client: true}, nil
}
// Accept performs the server-side WebSocket handshake, hijacking the HTTP
// connection and returning a Conn ready for framed I/O.
func Accept(w http.ResponseWriter, r *http.Request) (*Conn, error) {
if !strings.EqualFold(r.Header.Get("Upgrade"), "websocket") {
return nil, fmt.Errorf("websocket: missing Upgrade header")
}
key := r.Header.Get("Sec-WebSocket-Key")
if key == "" {
return nil, fmt.Errorf("websocket: missing Sec-WebSocket-Key")
}
hj, ok := w.(http.Hijacker)
if !ok {
return nil, fmt.Errorf("websocket: response does not support hijacking")
}
rwc, brw, err := hj.Hijack()
if err != nil {
return nil, err
}
accept := acceptKey(key)
respStr := "HTTP/1.1 101 Switching Protocols\r\n" +
"Upgrade: websocket\r\n" +
"Connection: Upgrade\r\n" +
"Sec-WebSocket-Accept: " + accept + "\r\n\r\n"
if _, err := rwc.Write([]byte(respStr)); err != nil {
rwc.Close()
return nil, err
}
return &Conn{rwc: rwc, br: brw.Reader, client: false}, nil
}
|