2018-09-29 12:36:47 +00:00
|
|
|
package websocket
|
2018-05-03 17:31:09 +00:00
|
|
|
|
|
|
|
import (
|
2018-09-29 12:36:47 +00:00
|
|
|
"encoding/binary"
|
2018-05-05 22:18:01 +00:00
|
|
|
"fmt"
|
2018-05-03 17:31:09 +00:00
|
|
|
"io"
|
2018-09-29 12:36:47 +00:00
|
|
|
"unicode/utf8"
|
2018-05-03 17:31:09 +00:00
|
|
|
)
|
|
|
|
|
2018-05-08 09:15:01 +00:00
|
|
|
var ErrUnmaskedFrame = fmt.Errorf("Received unmasked frame")
|
|
|
|
var ErrTooLongControlFrame = fmt.Errorf("Received a control frame that is fragmented or too long")
|
|
|
|
var ErrInvalidFragment = fmt.Errorf("Received invalid fragmentation")
|
2018-05-08 10:10:24 +00:00
|
|
|
var ErrUnexpectedContinuation = fmt.Errorf("Received unexpected continuation frame")
|
2018-05-08 09:15:01 +00:00
|
|
|
var ErrInvalidSize = fmt.Errorf("Received invalid payload size")
|
|
|
|
var ErrInvalidPayload = fmt.Errorf("Received invalid utf8 payload")
|
|
|
|
var ErrInvalidCloseStatus = fmt.Errorf("Received invalid close status")
|
|
|
|
var ErrInvalidOpCode = fmt.Errorf("Received invalid OpCode")
|
2018-09-29 12:36:47 +00:00
|
|
|
var ErrReservedBits = fmt.Errorf("Received reserved bits")
|
2018-05-08 09:31:37 +00:00
|
|
|
var CloseFrame = fmt.Errorf("Received close Frame")
|
2018-05-08 09:15:01 +00:00
|
|
|
|
2018-05-03 17:31:09 +00:00
|
|
|
// Maximum Header Size = Final/OpCode + isMask/Length + Length + Mask
|
|
|
|
const maximumHeaderSize = 1 + 1 + 8 + 4
|
2018-05-05 23:05:38 +00:00
|
|
|
const maxWriteChunk = 0x7fff
|
2018-05-03 17:31:09 +00:00
|
|
|
|
|
|
|
// Lists websocket close status
|
|
|
|
type MessageError uint16
|
|
|
|
|
|
|
|
const (
|
|
|
|
NONE MessageError = 0
|
|
|
|
NORMAL MessageError = 1000
|
|
|
|
GOING_AWAY MessageError = 1001
|
|
|
|
PROTOCOL_ERR MessageError = 1002
|
|
|
|
UNACCEPTABLE_OPCODE MessageError = 1003
|
|
|
|
INVALID_PAYLOAD MessageError = 1007 // utf8
|
|
|
|
MESSAGE_TOO_LARGE MessageError = 1009
|
|
|
|
)
|
|
|
|
|
|
|
|
// Lists websocket message types
|
|
|
|
type MessageType byte
|
|
|
|
|
|
|
|
const (
|
2018-05-05 23:05:38 +00:00
|
|
|
CONTINUATION MessageType = 0x00
|
|
|
|
TEXT MessageType = 0x01
|
|
|
|
BINARY MessageType = 0x02
|
|
|
|
CLOSE MessageType = 0x08
|
|
|
|
PING MessageType = 0x09
|
|
|
|
PONG MessageType = 0x0a
|
2018-09-29 12:36:47 +00:00
|
|
|
)
|
2018-05-03 17:31:09 +00:00
|
|
|
|
|
|
|
// Represents a websocket message
|
|
|
|
type Message struct {
|
2018-05-05 22:18:01 +00:00
|
|
|
Final bool
|
2018-05-03 17:31:09 +00:00
|
|
|
Type MessageType
|
|
|
|
Size uint
|
2018-05-05 22:18:01 +00:00
|
|
|
Data []byte
|
2018-05-03 17:31:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// receive reads a message form reader
|
2018-09-29 12:36:47 +00:00
|
|
|
func readMessage(reader io.Reader) (*Message, error) {
|
2018-05-03 17:31:09 +00:00
|
|
|
|
2018-09-29 12:36:47 +00:00
|
|
|
var err error
|
2018-05-03 17:31:09 +00:00
|
|
|
var tmpBuf []byte
|
2018-09-29 12:36:47 +00:00
|
|
|
var mask []byte
|
2018-05-03 17:31:09 +00:00
|
|
|
var cursor int
|
|
|
|
|
|
|
|
m := new(Message)
|
|
|
|
|
|
|
|
/* (2) Byte 1: FIN and OpCode */
|
|
|
|
tmpBuf = make([]byte, 1)
|
2018-05-08 09:52:34 +00:00
|
|
|
err = readBytes(reader, tmpBuf)
|
2018-09-29 12:36:47 +00:00
|
|
|
if err != nil {
|
|
|
|
return m, err
|
|
|
|
}
|
2018-05-03 17:31:09 +00:00
|
|
|
|
2018-05-08 09:52:34 +00:00
|
|
|
// check reserved bits
|
2018-09-29 12:36:47 +00:00
|
|
|
if tmpBuf[0]&0x70 != 0 {
|
2018-05-08 09:52:34 +00:00
|
|
|
return m, ErrReservedBits
|
|
|
|
}
|
|
|
|
|
2018-09-29 12:36:47 +00:00
|
|
|
m.Final = bool(tmpBuf[0]&0x80 == 0x80)
|
|
|
|
m.Type = MessageType(tmpBuf[0] & 0x0f)
|
2018-05-03 17:31:09 +00:00
|
|
|
|
|
|
|
/* (3) Byte 2: Mask and Length[0] */
|
|
|
|
tmpBuf = make([]byte, 1)
|
2018-05-08 09:52:34 +00:00
|
|
|
err = readBytes(reader, tmpBuf)
|
2018-09-29 12:36:47 +00:00
|
|
|
if err != nil {
|
|
|
|
return m, err
|
|
|
|
}
|
2018-05-03 17:31:09 +00:00
|
|
|
|
|
|
|
// if mask, byte array not nil
|
2018-09-29 12:36:47 +00:00
|
|
|
if tmpBuf[0]&0x80 == 0x80 {
|
2018-05-03 17:31:09 +00:00
|
|
|
mask = make([]byte, 0)
|
|
|
|
}
|
|
|
|
|
|
|
|
// payload length
|
2018-09-29 12:36:47 +00:00
|
|
|
m.Size = uint(tmpBuf[0] & 0x7f)
|
2018-05-03 17:31:09 +00:00
|
|
|
|
|
|
|
/* (4) Extended payload */
|
|
|
|
if m.Size == 127 {
|
|
|
|
|
|
|
|
tmpBuf = make([]byte, 8)
|
2018-05-08 09:52:34 +00:00
|
|
|
err := readBytes(reader, tmpBuf)
|
2018-09-29 12:36:47 +00:00
|
|
|
if err != nil {
|
|
|
|
return m, err
|
|
|
|
}
|
2018-05-03 17:31:09 +00:00
|
|
|
|
2018-09-29 12:36:47 +00:00
|
|
|
m.Size = uint(binary.BigEndian.Uint64(tmpBuf))
|
2018-05-03 17:31:09 +00:00
|
|
|
|
|
|
|
} else if m.Size == 126 {
|
|
|
|
|
|
|
|
tmpBuf = make([]byte, 2)
|
2018-05-08 09:52:34 +00:00
|
|
|
err := readBytes(reader, tmpBuf)
|
2018-09-29 12:36:47 +00:00
|
|
|
if err != nil {
|
|
|
|
return m, err
|
|
|
|
}
|
2018-05-03 17:31:09 +00:00
|
|
|
|
2018-09-29 12:36:47 +00:00
|
|
|
m.Size = uint(binary.BigEndian.Uint16(tmpBuf))
|
2018-05-03 17:31:09 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* (5) Masking key */
|
|
|
|
if mask != nil {
|
|
|
|
|
|
|
|
tmpBuf = make([]byte, 4)
|
2018-05-08 09:52:34 +00:00
|
|
|
err := readBytes(reader, tmpBuf)
|
2018-09-29 12:36:47 +00:00
|
|
|
if err != nil {
|
|
|
|
return m, err
|
|
|
|
}
|
2018-05-03 17:31:09 +00:00
|
|
|
|
|
|
|
mask = make([]byte, 4)
|
|
|
|
copy(mask, tmpBuf)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* (6) Read payload by chunks */
|
|
|
|
m.Data = make([]byte, int(m.Size))
|
|
|
|
|
|
|
|
cursor = 0
|
|
|
|
|
|
|
|
// {1} While we have data to read //
|
|
|
|
for uint(cursor) < m.Size {
|
|
|
|
|
|
|
|
// {2} Try to read (at least 1 byte) //
|
|
|
|
nbread, err := io.ReadAtLeast(reader, m.Data[cursor:m.Size], 1)
|
|
|
|
if err != nil {
|
2018-05-06 12:45:38 +00:00
|
|
|
return m, err
|
2018-05-03 17:31:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// {3} Unmask data //
|
|
|
|
if mask != nil {
|
2018-09-29 12:36:47 +00:00
|
|
|
for i, l := cursor, cursor+nbread; i < l; i++ {
|
2018-05-03 17:31:09 +00:00
|
|
|
|
|
|
|
mi := i % 4 // mask index
|
|
|
|
m.Data[i] = m.Data[i] ^ mask[mi]
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// {4} Update cursor //
|
|
|
|
cursor += nbread
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-05-05 22:18:01 +00:00
|
|
|
// return error if unmasked frame
|
2018-05-06 12:45:38 +00:00
|
|
|
// we have to fully read it for read buffer to be clean
|
|
|
|
err = nil
|
2018-05-05 22:18:01 +00:00
|
|
|
if mask == nil {
|
2018-05-08 09:15:01 +00:00
|
|
|
err = ErrUnmaskedFrame
|
2018-05-05 22:18:01 +00:00
|
|
|
}
|
|
|
|
|
2018-05-06 12:45:38 +00:00
|
|
|
return m, err
|
2018-05-03 17:31:09 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// Send sends a frame over a socket
|
2018-05-05 21:53:38 +00:00
|
|
|
func (m Message) Send(writer io.Writer) error {
|
2018-05-03 17:31:09 +00:00
|
|
|
|
|
|
|
header := make([]byte, 0, maximumHeaderSize)
|
|
|
|
|
2018-05-05 21:53:00 +00:00
|
|
|
// fix size
|
|
|
|
if uint(len(m.Data)) <= m.Size {
|
2018-09-29 12:36:47 +00:00
|
|
|
m.Size = uint(len(m.Data))
|
2018-05-05 21:53:00 +00:00
|
|
|
}
|
|
|
|
|
2018-05-03 17:31:09 +00:00
|
|
|
/* (1) Byte 0 : FIN + opcode */
|
2018-05-05 22:27:45 +00:00
|
|
|
var final byte = 0x80
|
|
|
|
if !m.Final {
|
|
|
|
final = 0
|
|
|
|
}
|
2018-09-29 12:36:47 +00:00
|
|
|
header = append(header, final|byte(m.Type))
|
2018-05-03 17:31:09 +00:00
|
|
|
|
|
|
|
/* (2) Get payload length */
|
|
|
|
if m.Size < 126 { // simple
|
|
|
|
|
2018-09-29 12:36:47 +00:00
|
|
|
header = append(header, byte(m.Size))
|
2018-05-03 17:31:09 +00:00
|
|
|
|
2018-05-07 17:25:54 +00:00
|
|
|
} else if m.Size <= 0xffff { // extended: 16 bits
|
2018-05-03 17:31:09 +00:00
|
|
|
|
|
|
|
header = append(header, 126)
|
|
|
|
|
|
|
|
buf := make([]byte, 2)
|
|
|
|
binary.BigEndian.PutUint16(buf, uint16(m.Size))
|
|
|
|
header = append(header, buf...)
|
|
|
|
|
2018-05-07 17:25:54 +00:00
|
|
|
} else if m.Size <= 0xffffffffffffffff { // extended: 64 bits
|
2018-05-03 17:31:09 +00:00
|
|
|
|
|
|
|
header = append(header, 127)
|
|
|
|
|
|
|
|
buf := make([]byte, 8)
|
|
|
|
binary.BigEndian.PutUint64(buf, uint64(m.Size))
|
|
|
|
header = append(header, buf...)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-05-05 15:39:39 +00:00
|
|
|
/* (3) Build write buffer */
|
2018-09-29 12:36:47 +00:00
|
|
|
writeBuf := make([]byte, 0, len(header)+int(m.Size))
|
2018-05-05 15:39:39 +00:00
|
|
|
writeBuf = append(writeBuf, header...)
|
2018-05-05 21:53:00 +00:00
|
|
|
writeBuf = append(writeBuf, m.Data[0:m.Size]...)
|
2018-05-03 17:31:09 +00:00
|
|
|
|
2018-05-05 23:05:38 +00:00
|
|
|
/* (4) Send over socket by chunks */
|
|
|
|
toWrite := len(header) + int(m.Size)
|
|
|
|
cursor := 0
|
|
|
|
for cursor < toWrite {
|
|
|
|
|
2018-09-29 12:36:47 +00:00
|
|
|
maxBoundary := cursor + maxWriteChunk
|
2018-05-05 23:05:38 +00:00
|
|
|
if maxBoundary > toWrite {
|
|
|
|
maxBoundary = toWrite
|
|
|
|
}
|
|
|
|
|
|
|
|
// Try to wrote (at max 1024 bytes) //
|
|
|
|
nbwritten, err := writer.Write(writeBuf[cursor:maxBoundary])
|
2018-09-29 12:36:47 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2018-05-05 23:05:38 +00:00
|
|
|
|
|
|
|
// Update cursor //
|
|
|
|
cursor += nbwritten
|
|
|
|
|
|
|
|
}
|
2018-05-03 17:31:09 +00:00
|
|
|
|
2018-05-08 09:15:01 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check for message errors with:
|
|
|
|
// (m) the current message
|
|
|
|
// (fragment) whether there is a fragment in construction
|
|
|
|
// returns the message error
|
2018-09-29 12:36:47 +00:00
|
|
|
func (m *Message) check(fragment bool) error {
|
2018-05-08 09:15:01 +00:00
|
|
|
|
|
|
|
/* (1) Invalid first fragment (not TEXT nor BINARY) */
|
|
|
|
if !m.Final && !fragment && m.Type != TEXT && m.Type != BINARY {
|
|
|
|
return ErrInvalidFragment
|
|
|
|
}
|
|
|
|
|
|
|
|
/* (2) Waiting fragment but received standalone frame */
|
2018-05-08 15:21:49 +00:00
|
|
|
if fragment && m.Type != CONTINUATION && m.Type != CLOSE && m.Type != PING && m.Type != PONG {
|
2018-05-08 09:15:01 +00:00
|
|
|
return ErrInvalidFragment
|
|
|
|
}
|
|
|
|
|
|
|
|
/* (3) Control frame too long */
|
|
|
|
if (m.Type == CLOSE || m.Type == PING || m.Type == PONG) && (m.Size > 125 || !m.Final) {
|
|
|
|
return ErrTooLongControlFrame
|
|
|
|
}
|
|
|
|
|
|
|
|
switch m.Type {
|
2018-09-29 12:36:47 +00:00
|
|
|
case CONTINUATION:
|
|
|
|
// unexpected continuation
|
|
|
|
if !fragment {
|
|
|
|
return ErrUnexpectedContinuation
|
|
|
|
}
|
|
|
|
return nil
|
2018-05-08 09:15:01 +00:00
|
|
|
|
2018-09-29 12:36:47 +00:00
|
|
|
case TEXT:
|
|
|
|
if m.Final && !utf8.Valid(m.Data) {
|
|
|
|
return ErrInvalidPayload
|
|
|
|
}
|
|
|
|
return nil
|
2018-05-08 09:15:01 +00:00
|
|
|
|
2018-09-29 12:36:47 +00:00
|
|
|
case BINARY:
|
|
|
|
return nil
|
2018-05-08 09:15:01 +00:00
|
|
|
|
2018-09-29 12:36:47 +00:00
|
|
|
case CLOSE:
|
|
|
|
// incomplete code
|
|
|
|
if m.Size == 1 {
|
|
|
|
return ErrInvalidCloseStatus
|
|
|
|
}
|
2018-05-08 09:15:01 +00:00
|
|
|
|
2018-09-29 12:36:47 +00:00
|
|
|
// invalid utf-8 reason
|
|
|
|
if m.Size > 2 && !utf8.Valid(m.Data[2:]) {
|
|
|
|
return ErrInvalidPayload
|
|
|
|
}
|
2018-05-08 09:15:01 +00:00
|
|
|
|
2018-09-29 12:36:47 +00:00
|
|
|
// invalid code
|
|
|
|
if m.Size >= 2 {
|
|
|
|
c := binary.BigEndian.Uint16(m.Data[0:2])
|
2018-05-08 09:15:01 +00:00
|
|
|
|
2018-09-29 12:36:47 +00:00
|
|
|
if c < 1000 || c >= 1004 && c <= 1006 || c >= 1012 && c <= 1016 || c == 1100 || c == 2000 || c == 2999 {
|
|
|
|
return ErrInvalidCloseStatus
|
2018-05-08 09:15:01 +00:00
|
|
|
}
|
2018-09-29 12:36:47 +00:00
|
|
|
}
|
|
|
|
return CloseFrame
|
2018-05-08 09:15:01 +00:00
|
|
|
|
2018-09-29 12:36:47 +00:00
|
|
|
case PING:
|
|
|
|
return nil
|
2018-05-08 09:15:01 +00:00
|
|
|
|
2018-09-29 12:36:47 +00:00
|
|
|
case PONG:
|
|
|
|
return nil
|
2018-05-08 09:15:01 +00:00
|
|
|
|
2018-09-29 12:36:47 +00:00
|
|
|
default:
|
|
|
|
return ErrInvalidOpCode
|
2018-05-08 09:15:01 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-05-03 17:31:09 +00:00
|
|
|
return nil
|
2018-05-08 09:52:34 +00:00
|
|
|
}
|
|
|
|
|
2018-05-08 10:10:24 +00:00
|
|
|
// readBytes reads from a reader into a byte array
|
|
|
|
// until the byte length is fully filled with data
|
|
|
|
// loops while there is no error
|
|
|
|
//
|
|
|
|
// It manages connections which chunks data
|
2018-05-08 09:52:34 +00:00
|
|
|
func readBytes(reader io.Reader, buffer []byte) error {
|
|
|
|
|
|
|
|
var cur, len int = 0, len(buffer)
|
|
|
|
|
|
|
|
// try to read until the full size is read
|
|
|
|
for cur < len {
|
|
|
|
|
|
|
|
nbread, err := reader.Read(buffer[cur:])
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
cur += nbread
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
2018-09-29 12:36:47 +00:00
|
|
|
}
|