2019-01-07 10:30:42 +03:00
|
|
|
/*
|
|
|
|
NAME
|
|
|
|
packet.go
|
|
|
|
|
|
|
|
DESCRIPTION
|
2019-01-10 17:11:28 +03:00
|
|
|
RTMP packet functionality.
|
2019-01-07 10:30:42 +03:00
|
|
|
|
|
|
|
AUTHORS
|
|
|
|
Saxon Nelson-Milton <saxon@ausocean.org>
|
|
|
|
Dan Kortschak <dan@ausocean.org>
|
|
|
|
Alan Noble <alan@ausocean.org>
|
|
|
|
|
|
|
|
LICENSE
|
|
|
|
packet.go is Copyright (C) 2017-2019 the Australian Ocean Lab (AusOcean)
|
|
|
|
|
|
|
|
It is free software: you can redistribute it and/or modify them
|
|
|
|
under the terms of the GNU General Public License as published by the
|
|
|
|
Free Software Foundation, either version 3 of the License, or (at your
|
|
|
|
option) any later version.
|
|
|
|
|
|
|
|
It is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with revid in gpl.txt. If not, see http://www.gnu.org/licenses.
|
|
|
|
|
|
|
|
Derived from librtmp under the GNU Lesser General Public License 2.1
|
|
|
|
Copyright (C) 2005-2008 Team XBMC http://www.xbmc.org
|
|
|
|
Copyright (C) 2008-2009 Andrej Stepanchuk
|
|
|
|
Copyright (C) 2009-2010 Howard Chu
|
|
|
|
*/
|
|
|
|
|
|
|
|
package rtmp
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/binary"
|
2019-01-10 15:46:20 +03:00
|
|
|
"io"
|
2019-01-11 23:43:27 +03:00
|
|
|
|
|
|
|
"bitbucket.org/ausocean/av/rtmp/amf"
|
2019-01-07 10:30:42 +03:00
|
|
|
)
|
|
|
|
|
2019-01-11 02:22:21 +03:00
|
|
|
// Packet types.
|
2019-01-07 10:30:42 +03:00
|
|
|
const (
|
2019-01-11 02:22:21 +03:00
|
|
|
packetTypeChunkSize = 0x01
|
|
|
|
packetTypeBytesReadReport = 0x03
|
|
|
|
packetTypeControl = 0x04
|
|
|
|
packetTypeServerBW = 0x05
|
|
|
|
packetTypeClientBW = 0x06
|
|
|
|
packetTypeAudio = 0x08
|
|
|
|
packetTypeVideo = 0x09
|
|
|
|
packetTypeFlexStreamSend = 0x0F // not implemented
|
|
|
|
packetTypeFlexSharedObject = 0x10 // not implemented
|
|
|
|
packetTypeFlexMessage = 0x11 // not implemented
|
|
|
|
packetTypeInfo = 0x12
|
|
|
|
packetTypeInvoke = 0x14
|
|
|
|
packetTypeFlashVideo = 0x16 // not implemented
|
2019-01-07 10:30:42 +03:00
|
|
|
)
|
|
|
|
|
2019-01-11 02:22:21 +03:00
|
|
|
// Header sizes.
|
2019-01-07 10:30:42 +03:00
|
|
|
const (
|
2019-01-11 02:22:21 +03:00
|
|
|
headerSizeLarge = 0
|
|
|
|
headerSizeMedium = 1
|
|
|
|
headerSizeSmall = 2
|
|
|
|
headerSizeMinimum = 3
|
|
|
|
headerSizeAuto = 4
|
2019-01-07 10:30:42 +03:00
|
|
|
)
|
|
|
|
|
2019-01-11 02:22:21 +03:00
|
|
|
// Special channels.
|
2019-01-07 14:15:00 +03:00
|
|
|
const (
|
2019-01-11 02:22:21 +03:00
|
|
|
chanBytesRead = 0x02
|
|
|
|
chanControl = 0x03
|
|
|
|
chanSource = 0x04
|
2019-01-07 14:15:00 +03:00
|
|
|
)
|
|
|
|
|
2019-01-10 05:53:12 +03:00
|
|
|
// headerSizes defines header sizes for header types 0, 1, 2 and 3 respectively:
|
|
|
|
// 0: full header (12 bytes)
|
|
|
|
// 1: header without message ID (8 bytes)
|
|
|
|
// 2: basic header + timestamp (4 byes)
|
|
|
|
// 3: basic header (chunk type and stream ID) (1 byte)
|
|
|
|
var headerSizes = [...]int{12, 8, 4, 1}
|
2019-01-07 10:30:42 +03:00
|
|
|
|
2019-01-20 00:26:55 +03:00
|
|
|
// packet represents an RTMP packet.
|
2019-01-07 10:30:42 +03:00
|
|
|
type packet struct {
|
|
|
|
headerType uint8
|
|
|
|
packetType uint8
|
|
|
|
channel int32
|
|
|
|
hasAbsTimestamp bool
|
|
|
|
timestamp uint32
|
2019-01-19 10:21:34 +03:00
|
|
|
streamID uint32
|
2019-01-07 10:30:42 +03:00
|
|
|
bodySize uint32
|
2019-01-19 09:08:40 +03:00
|
|
|
buf []byte
|
2019-01-07 10:30:42 +03:00
|
|
|
body []byte
|
|
|
|
}
|
|
|
|
|
2019-01-13 05:45:03 +03:00
|
|
|
// readFrom reads a packet from the RTMP connection.
|
2019-01-19 05:41:19 +03:00
|
|
|
func (pkt *packet) readFrom(c *Conn) error {
|
2019-01-11 02:22:21 +03:00
|
|
|
var hbuf [fullHeaderSize]byte
|
2019-01-07 10:30:42 +03:00
|
|
|
header := hbuf[:]
|
|
|
|
|
2019-01-19 05:41:19 +03:00
|
|
|
_, err := c.read(header[:1])
|
2019-01-07 10:30:42 +03:00
|
|
|
if err != nil {
|
2019-01-19 05:41:19 +03:00
|
|
|
c.log(DebugLevel, pkg+"failed to read packet header 1st byte", "error", err.Error())
|
2019-01-10 05:18:31 +03:00
|
|
|
if err == io.EOF {
|
2019-01-19 05:41:19 +03:00
|
|
|
c.log(WarnLevel, pkg+"EOF error; connection likely terminated")
|
2019-01-10 05:18:31 +03:00
|
|
|
}
|
2019-01-07 10:30:42 +03:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
pkt.headerType = (header[0] & 0xc0) >> 6
|
|
|
|
pkt.channel = int32(header[0] & 0x3f)
|
|
|
|
header = header[1:]
|
|
|
|
|
|
|
|
switch {
|
|
|
|
case pkt.channel == 0:
|
2019-01-19 05:41:19 +03:00
|
|
|
_, err = c.read(header[:1])
|
2019-01-07 10:30:42 +03:00
|
|
|
if err != nil {
|
2019-01-19 05:41:19 +03:00
|
|
|
c.log(DebugLevel, pkg+"failed to read packet header 2nd byte", "error", err.Error())
|
2019-01-07 10:30:42 +03:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
header = header[1:]
|
|
|
|
pkt.channel = int32(header[0]) + 64
|
|
|
|
|
|
|
|
case pkt.channel == 1:
|
2019-01-19 05:41:19 +03:00
|
|
|
_, err = c.read(header[:2])
|
2019-01-07 10:30:42 +03:00
|
|
|
if err != nil {
|
2019-01-19 05:41:19 +03:00
|
|
|
c.log(DebugLevel, pkg+"failed to read packet header 3rd byte", "error", err.Error())
|
2019-01-07 10:30:42 +03:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
header = header[2:]
|
|
|
|
pkt.channel = int32(binary.BigEndian.Uint16(header[:2])) + 64
|
|
|
|
}
|
|
|
|
|
2019-01-19 05:41:19 +03:00
|
|
|
if pkt.channel >= c.channelsAllocatedIn {
|
2019-01-07 10:30:42 +03:00
|
|
|
n := pkt.channel + 10
|
2019-01-19 05:41:19 +03:00
|
|
|
timestamp := append(c.channelTimestamp, make([]int32, 10)...)
|
2019-01-07 10:30:42 +03:00
|
|
|
|
|
|
|
var pkts []*packet
|
2019-01-19 05:41:19 +03:00
|
|
|
if c.channelsIn == nil {
|
2019-01-07 10:30:42 +03:00
|
|
|
pkts = make([]*packet, n)
|
|
|
|
} else {
|
2019-01-19 05:41:19 +03:00
|
|
|
pkts = append(c.channelsIn[:pkt.channel:pkt.channel], make([]*packet, 10)...)
|
2019-01-07 10:30:42 +03:00
|
|
|
}
|
|
|
|
|
2019-01-19 05:41:19 +03:00
|
|
|
c.channelTimestamp = timestamp
|
|
|
|
c.channelsIn = pkts
|
2019-01-07 10:30:42 +03:00
|
|
|
|
2019-01-19 05:41:19 +03:00
|
|
|
for i := int(c.channelsAllocatedIn); i < len(c.channelTimestamp); i++ {
|
|
|
|
c.channelTimestamp[i] = 0
|
2019-01-07 10:30:42 +03:00
|
|
|
}
|
2019-01-19 05:41:19 +03:00
|
|
|
for i := int(c.channelsAllocatedIn); i < int(n); i++ {
|
|
|
|
c.channelsIn[i] = nil
|
2019-01-07 10:30:42 +03:00
|
|
|
}
|
2019-01-19 05:41:19 +03:00
|
|
|
c.channelsAllocatedIn = n
|
2019-01-07 10:30:42 +03:00
|
|
|
}
|
|
|
|
|
2019-01-10 05:53:12 +03:00
|
|
|
size := headerSizes[pkt.headerType]
|
2019-01-07 10:30:42 +03:00
|
|
|
switch {
|
2019-01-11 02:22:21 +03:00
|
|
|
case size == fullHeaderSize:
|
2019-01-07 10:30:42 +03:00
|
|
|
pkt.hasAbsTimestamp = true
|
2019-01-11 02:22:21 +03:00
|
|
|
case size < fullHeaderSize:
|
2019-01-19 05:41:19 +03:00
|
|
|
if c.channelsIn[pkt.channel] != nil {
|
|
|
|
*pkt = *(c.channelsIn[pkt.channel])
|
2019-01-07 10:30:42 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
size--
|
|
|
|
|
|
|
|
if size > 0 {
|
2019-01-19 05:41:19 +03:00
|
|
|
_, err = c.read(header[:size])
|
2019-01-07 10:30:42 +03:00
|
|
|
if err != nil {
|
2019-01-19 05:41:19 +03:00
|
|
|
c.log(DebugLevel, pkg+"failed to read packet header", "error", err.Error())
|
2019-01-07 10:30:42 +03:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
hSize := len(hbuf) - len(header) + size
|
|
|
|
|
|
|
|
if size >= 3 {
|
2019-01-11 23:43:27 +03:00
|
|
|
pkt.timestamp = amf.DecodeInt24(header[:3])
|
2019-01-07 10:30:42 +03:00
|
|
|
if size >= 6 {
|
2019-01-11 23:43:27 +03:00
|
|
|
pkt.bodySize = amf.DecodeInt24(header[3:6])
|
2019-01-07 10:30:42 +03:00
|
|
|
|
|
|
|
if size > 6 {
|
|
|
|
pkt.packetType = header[6]
|
|
|
|
if size == 11 {
|
2019-01-19 10:21:34 +03:00
|
|
|
pkt.streamID = amf.DecodeInt32LE(header[7:11])
|
2019-01-07 10:30:42 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
extendedTimestamp := pkt.timestamp == 0xffffff
|
|
|
|
if extendedTimestamp {
|
2019-01-19 05:41:19 +03:00
|
|
|
_, err = c.read(header[size : size+4])
|
2019-01-07 10:30:42 +03:00
|
|
|
if err != nil {
|
2019-01-19 05:41:19 +03:00
|
|
|
c.log(DebugLevel, pkg+"failed to read extended timestamp", "error", err.Error())
|
2019-01-07 10:30:42 +03:00
|
|
|
return err
|
|
|
|
}
|
2019-01-11 23:43:27 +03:00
|
|
|
pkt.timestamp = amf.DecodeInt32(header[size : size+4])
|
2019-01-07 10:30:42 +03:00
|
|
|
hSize += 4
|
|
|
|
}
|
|
|
|
|
|
|
|
if pkt.bodySize > 0 && pkt.body == nil {
|
2019-01-10 15:59:51 +03:00
|
|
|
pkt.resize(pkt.bodySize, (hbuf[0]&0xc0)>>6)
|
2019-01-07 10:30:42 +03:00
|
|
|
}
|
|
|
|
|
2019-01-20 00:39:49 +03:00
|
|
|
if pkt.bodySize > c.inChunkSize {
|
|
|
|
c.log(WarnLevel, pkg+"reading large packet", "size", int(pkt.bodySize))
|
2019-01-07 10:30:42 +03:00
|
|
|
}
|
|
|
|
|
2019-01-20 00:39:49 +03:00
|
|
|
_, err = c.read(pkt.body[:pkt.bodySize])
|
2019-01-07 10:30:42 +03:00
|
|
|
if err != nil {
|
2019-01-19 05:41:19 +03:00
|
|
|
c.log(DebugLevel, pkg+"failed to read packet body", "error", err.Error())
|
2019-01-07 10:30:42 +03:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-01-13 05:58:34 +03:00
|
|
|
// Keep the packet as a reference for other packets on this channel.
|
2019-01-19 05:41:19 +03:00
|
|
|
if c.channelsIn[pkt.channel] == nil {
|
|
|
|
c.channelsIn[pkt.channel] = &packet{}
|
2019-01-07 10:30:42 +03:00
|
|
|
}
|
2019-01-19 05:41:19 +03:00
|
|
|
*(c.channelsIn[pkt.channel]) = *pkt
|
2019-01-07 10:30:42 +03:00
|
|
|
|
|
|
|
if extendedTimestamp {
|
2019-01-19 05:41:19 +03:00
|
|
|
c.channelsIn[pkt.channel].timestamp = 0xffffff
|
2019-01-07 10:30:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if !pkt.hasAbsTimestamp {
|
2019-01-13 05:58:34 +03:00
|
|
|
// Timestamps seem to always be relative.
|
2019-01-19 05:41:19 +03:00
|
|
|
pkt.timestamp += uint32(c.channelTimestamp[pkt.channel])
|
2019-01-07 10:30:42 +03:00
|
|
|
}
|
2019-01-19 05:41:19 +03:00
|
|
|
c.channelTimestamp[pkt.channel] = int32(pkt.timestamp)
|
2019-01-07 10:30:42 +03:00
|
|
|
|
2019-01-19 05:41:19 +03:00
|
|
|
c.channelsIn[pkt.channel].body = nil
|
|
|
|
c.channelsIn[pkt.channel].hasAbsTimestamp = false
|
2019-01-07 10:30:42 +03:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-01-11 03:05:20 +03:00
|
|
|
// resize adjusts the packet's storage to accommodate a body of the given size and header type.
|
2019-01-13 00:16:47 +03:00
|
|
|
// When headerSizeAuto is specified, the header type is computed based on packet type.
|
2019-01-10 15:59:51 +03:00
|
|
|
func (pkt *packet) resize(size uint32, ht uint8) {
|
2019-01-19 09:08:40 +03:00
|
|
|
pkt.buf = make([]byte, fullHeaderSize+size)
|
|
|
|
pkt.body = pkt.buf[fullHeaderSize:]
|
2019-01-11 02:22:21 +03:00
|
|
|
if ht != headerSizeAuto {
|
2019-01-10 09:04:00 +03:00
|
|
|
pkt.headerType = ht
|
|
|
|
return
|
|
|
|
}
|
|
|
|
switch pkt.packetType {
|
2019-01-11 02:22:21 +03:00
|
|
|
case packetTypeVideo, packetTypeAudio:
|
2019-01-10 09:04:00 +03:00
|
|
|
if pkt.timestamp == 0 {
|
2019-01-11 02:22:21 +03:00
|
|
|
pkt.headerType = headerSizeLarge
|
2019-01-10 09:04:00 +03:00
|
|
|
} else {
|
2019-01-11 02:22:21 +03:00
|
|
|
pkt.headerType = headerSizeMedium
|
2019-01-10 09:04:00 +03:00
|
|
|
}
|
2019-01-11 02:22:21 +03:00
|
|
|
case packetTypeInfo:
|
|
|
|
pkt.headerType = headerSizeLarge
|
2019-01-10 09:04:00 +03:00
|
|
|
pkt.bodySize += 16
|
|
|
|
default:
|
2019-01-11 02:22:21 +03:00
|
|
|
pkt.headerType = headerSizeMedium
|
2019-01-10 09:04:00 +03:00
|
|
|
}
|
2019-01-07 10:30:42 +03:00
|
|
|
}
|
|
|
|
|
2019-01-13 05:44:12 +03:00
|
|
|
// writeTo writes a packet to the RTMP connection.
|
2019-01-13 00:16:47 +03:00
|
|
|
// Packets are written in chunks which are Session.chunkSize in length (128 bytes in length).
|
2019-01-13 05:58:34 +03:00
|
|
|
// We defer sending small audio packets and combine consecutive small audio packets where possible to reduce I/O.
|
2019-01-19 07:48:10 +03:00
|
|
|
// When queue is true, we expect a response to this request and cache the method on c.methodCalls.
|
2019-01-19 05:41:19 +03:00
|
|
|
func (pkt *packet) writeTo(c *Conn, queue bool) error {
|
2019-01-13 06:58:24 +03:00
|
|
|
if pkt.body == nil || pkt.bodySize == 0 {
|
2019-01-10 17:11:28 +03:00
|
|
|
return errInvalidBody
|
|
|
|
}
|
2019-01-07 10:30:42 +03:00
|
|
|
|
2019-01-19 05:41:19 +03:00
|
|
|
if pkt.channel >= c.channelsAllocatedOut {
|
|
|
|
c.log(DebugLevel, pkg+"growing channelsOut", "channel", pkt.channel)
|
2019-01-07 10:30:42 +03:00
|
|
|
n := int(pkt.channel + 10)
|
|
|
|
|
|
|
|
var pkts []*packet
|
2019-01-19 05:41:19 +03:00
|
|
|
if c.channelsOut == nil {
|
2019-01-07 10:30:42 +03:00
|
|
|
pkts = make([]*packet, n)
|
|
|
|
} else {
|
2019-01-19 05:41:19 +03:00
|
|
|
pkts = append(c.channelsOut[:pkt.channel:pkt.channel], make([]*packet, 10)...)
|
2019-01-07 10:30:42 +03:00
|
|
|
}
|
2019-01-19 05:41:19 +03:00
|
|
|
c.channelsOut = pkts
|
2019-01-07 10:30:42 +03:00
|
|
|
|
2019-01-19 05:41:19 +03:00
|
|
|
for i := int(c.channelsAllocatedOut); i < n; i++ {
|
|
|
|
c.channelsOut[i] = nil
|
2019-01-07 10:30:42 +03:00
|
|
|
}
|
|
|
|
|
2019-01-19 05:41:19 +03:00
|
|
|
c.channelsAllocatedOut = int32(n)
|
2019-01-07 10:30:42 +03:00
|
|
|
}
|
|
|
|
|
2019-01-19 05:41:19 +03:00
|
|
|
prevPkt := c.channelsOut[pkt.channel]
|
2019-01-10 17:11:28 +03:00
|
|
|
var last int
|
2019-01-11 02:22:21 +03:00
|
|
|
if prevPkt != nil && pkt.headerType != headerSizeLarge {
|
2019-01-19 07:48:10 +03:00
|
|
|
// Compress header by using the previous packet's attributes.
|
2019-01-11 02:22:21 +03:00
|
|
|
if prevPkt.bodySize == pkt.bodySize && prevPkt.packetType == pkt.packetType && pkt.headerType == headerSizeMedium {
|
|
|
|
pkt.headerType = headerSizeSmall
|
2019-01-07 10:30:42 +03:00
|
|
|
}
|
|
|
|
|
2019-01-11 02:22:21 +03:00
|
|
|
if prevPkt.timestamp == pkt.timestamp && pkt.headerType == headerSizeSmall {
|
|
|
|
pkt.headerType = headerSizeMinimum
|
2019-01-07 10:30:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
last = int(prevPkt.timestamp)
|
|
|
|
}
|
|
|
|
|
|
|
|
if pkt.headerType > 3 {
|
2019-01-19 05:41:19 +03:00
|
|
|
c.log(WarnLevel, pkg+"unexpected header type", "type", pkt.headerType)
|
2019-01-07 10:30:42 +03:00
|
|
|
return errInvalidHeader
|
|
|
|
}
|
|
|
|
|
2019-01-10 17:11:28 +03:00
|
|
|
// The complete packet starts from headerSize _before_ the start the body.
|
|
|
|
// origIdx is the original offset, which will be 0 for a full (12-byte) header or 11 for a minimum (1-byte) header.
|
2019-01-19 09:11:22 +03:00
|
|
|
buf := pkt.buf
|
2019-01-10 17:11:28 +03:00
|
|
|
hSize := headerSizes[pkt.headerType]
|
2019-01-11 02:22:21 +03:00
|
|
|
origIdx := fullHeaderSize - hSize
|
2019-01-07 10:30:42 +03:00
|
|
|
|
2019-01-13 05:58:34 +03:00
|
|
|
// Adjust 1 or 2 bytes depending on the channel.
|
2019-01-10 17:11:28 +03:00
|
|
|
cSize := 0
|
2019-01-07 10:30:42 +03:00
|
|
|
switch {
|
|
|
|
case pkt.channel > 319:
|
|
|
|
cSize = 2
|
|
|
|
case pkt.channel > 63:
|
|
|
|
cSize = 1
|
|
|
|
}
|
|
|
|
|
|
|
|
if cSize != 0 {
|
|
|
|
origIdx -= cSize
|
|
|
|
hSize += cSize
|
|
|
|
}
|
|
|
|
|
2019-01-13 05:58:34 +03:00
|
|
|
// Adjust 4 bytes for the timestamp.
|
2019-01-07 10:30:42 +03:00
|
|
|
var ts uint32
|
|
|
|
if prevPkt != nil {
|
|
|
|
ts = uint32(int(pkt.timestamp) - last)
|
|
|
|
}
|
|
|
|
if ts >= 0xffffff {
|
|
|
|
origIdx -= 4
|
|
|
|
hSize += 4
|
2019-01-19 05:41:19 +03:00
|
|
|
c.log(DebugLevel, pkg+"larger timestamp than 24 bits", "timestamp", ts)
|
2019-01-07 10:30:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
headerIdx := origIdx
|
|
|
|
|
2019-01-19 05:41:19 +03:00
|
|
|
ch := pkt.headerType << 6
|
2019-01-07 10:30:42 +03:00
|
|
|
switch cSize {
|
|
|
|
case 0:
|
2019-01-19 05:41:19 +03:00
|
|
|
ch |= byte(pkt.channel)
|
2019-01-07 10:30:42 +03:00
|
|
|
case 1:
|
|
|
|
// Do nothing.
|
|
|
|
case 2:
|
2019-01-19 05:41:19 +03:00
|
|
|
ch |= 1
|
2019-01-07 10:30:42 +03:00
|
|
|
}
|
2019-01-19 09:11:22 +03:00
|
|
|
buf[headerIdx] = ch
|
2019-01-07 10:30:42 +03:00
|
|
|
headerIdx++
|
|
|
|
|
|
|
|
if cSize != 0 {
|
|
|
|
tmp := pkt.channel - 64
|
2019-01-19 09:11:22 +03:00
|
|
|
buf[headerIdx] = byte(tmp & 0xff)
|
2019-01-07 10:30:42 +03:00
|
|
|
headerIdx++
|
|
|
|
|
|
|
|
if cSize == 2 {
|
2019-01-19 09:11:22 +03:00
|
|
|
buf[headerIdx] = byte(tmp >> 8)
|
2019-01-07 10:30:42 +03:00
|
|
|
headerIdx++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-10 05:53:12 +03:00
|
|
|
if headerSizes[pkt.headerType] > 1 {
|
2019-01-13 05:58:34 +03:00
|
|
|
tmp := ts
|
2019-01-07 10:30:42 +03:00
|
|
|
if ts > 0xffffff {
|
2019-01-13 05:58:34 +03:00
|
|
|
tmp = 0xffffff
|
2019-01-07 10:30:42 +03:00
|
|
|
}
|
2019-01-19 09:11:22 +03:00
|
|
|
amf.EncodeInt24(buf[headerIdx:], tmp)
|
2019-01-07 10:30:42 +03:00
|
|
|
headerIdx += 3 // 24bits
|
|
|
|
}
|
|
|
|
|
2019-01-10 05:53:12 +03:00
|
|
|
if headerSizes[pkt.headerType] > 4 {
|
2019-01-19 09:11:22 +03:00
|
|
|
amf.EncodeInt24(buf[headerIdx:], pkt.bodySize)
|
2019-01-07 10:30:42 +03:00
|
|
|
headerIdx += 3 // 24bits
|
2019-01-19 09:11:22 +03:00
|
|
|
buf[headerIdx] = pkt.packetType
|
2019-01-07 10:30:42 +03:00
|
|
|
headerIdx++
|
|
|
|
}
|
|
|
|
|
2019-01-10 05:53:12 +03:00
|
|
|
if headerSizes[pkt.headerType] > 8 {
|
2019-01-19 10:21:34 +03:00
|
|
|
binary.LittleEndian.PutUint32(buf[headerIdx:headerIdx+4], pkt.streamID)
|
2019-01-10 17:11:28 +03:00
|
|
|
headerIdx += 4 // 32bits
|
2019-01-07 10:30:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if ts >= 0xffffff {
|
2019-01-19 09:11:22 +03:00
|
|
|
amf.EncodeInt32(buf[headerIdx:], ts)
|
2019-01-07 10:30:42 +03:00
|
|
|
headerIdx += 4 // 32bits
|
|
|
|
}
|
|
|
|
|
|
|
|
size := int(pkt.bodySize)
|
2019-01-19 05:41:19 +03:00
|
|
|
chunkSize := int(c.outChunkSize)
|
2019-01-07 10:30:42 +03:00
|
|
|
|
2019-01-19 05:41:19 +03:00
|
|
|
if c.deferred == nil {
|
2019-01-10 17:11:28 +03:00
|
|
|
// Defer sending small audio packets (at most once).
|
2019-01-11 02:22:21 +03:00
|
|
|
if pkt.packetType == packetTypeAudio && size < chunkSize {
|
2019-01-19 09:11:22 +03:00
|
|
|
c.deferred = buf[origIdx:][:size+hSize]
|
2019-01-19 05:41:19 +03:00
|
|
|
c.log(DebugLevel, pkg+"deferred sending packet", "size", size, "la", c.link.conn.LocalAddr(), "ra", c.link.conn.RemoteAddr())
|
2019-01-10 17:11:28 +03:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Send previously deferrd packet if combining it with the next one would exceed the chunk size.
|
2019-01-19 05:41:19 +03:00
|
|
|
if len(c.deferred)+size+hSize > chunkSize {
|
|
|
|
c.log(DebugLevel, pkg+"sending deferred packet separately", "size", len(c.deferred))
|
|
|
|
_, err := c.write(c.deferred)
|
2019-01-10 17:11:28 +03:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-01-19 05:41:19 +03:00
|
|
|
c.deferred = nil
|
2019-01-07 10:30:42 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO(kortschak): Rewrite this horrific peice of premature optimisation.
|
2019-01-19 05:41:19 +03:00
|
|
|
c.log(DebugLevel, pkg+"sending packet", "la", c.link.conn.LocalAddr(), "ra", c.link.conn.RemoteAddr(), "size", size)
|
2019-01-07 10:30:42 +03:00
|
|
|
for size+hSize != 0 {
|
|
|
|
if chunkSize > size {
|
|
|
|
chunkSize = size
|
|
|
|
}
|
2019-01-19 09:11:22 +03:00
|
|
|
bytes := buf[origIdx:][:chunkSize+hSize]
|
2019-01-19 05:41:19 +03:00
|
|
|
if c.deferred != nil {
|
2019-01-07 10:30:42 +03:00
|
|
|
// Prepend the previously deferred packet and write it with the current one.
|
2019-01-19 05:41:19 +03:00
|
|
|
c.log(DebugLevel, pkg+"combining deferred packet", "size", len(c.deferred))
|
|
|
|
bytes = append(c.deferred, bytes...)
|
2019-01-07 10:30:42 +03:00
|
|
|
}
|
2019-01-19 05:41:19 +03:00
|
|
|
_, err := c.write(bytes)
|
2019-01-07 10:30:42 +03:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-01-19 05:41:19 +03:00
|
|
|
c.deferred = nil
|
2019-01-07 10:30:42 +03:00
|
|
|
|
|
|
|
size -= chunkSize
|
|
|
|
origIdx += chunkSize + hSize
|
|
|
|
hSize = 0
|
|
|
|
|
|
|
|
if size > 0 {
|
2019-01-13 00:16:47 +03:00
|
|
|
// We are writing the 2nd or subsequent chunk.
|
2019-01-07 10:30:42 +03:00
|
|
|
origIdx -= 1 + cSize
|
|
|
|
hSize = 1 + cSize
|
|
|
|
|
|
|
|
if ts >= 0xffffff {
|
|
|
|
origIdx -= 4
|
|
|
|
hSize += 4
|
|
|
|
}
|
|
|
|
|
2019-01-19 09:11:22 +03:00
|
|
|
buf[origIdx] = 0xc0 | ch
|
2019-01-07 10:30:42 +03:00
|
|
|
|
|
|
|
if cSize != 0 {
|
|
|
|
tmp := int(pkt.channel) - 64
|
2019-01-19 09:11:22 +03:00
|
|
|
buf[origIdx+1] = byte(tmp)
|
2019-01-07 10:30:42 +03:00
|
|
|
|
|
|
|
if cSize == 2 {
|
2019-01-19 09:11:22 +03:00
|
|
|
buf[origIdx+2] = byte(tmp >> 8)
|
2019-01-07 10:30:42 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if ts >= 0xffffff {
|
2019-01-19 09:11:22 +03:00
|
|
|
extendedTimestamp := buf[origIdx+1+cSize:]
|
2019-01-14 02:47:47 +03:00
|
|
|
amf.EncodeInt32(extendedTimestamp[:4], ts)
|
2019-01-07 10:30:42 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-19 07:48:10 +03:00
|
|
|
// If we invoked a remote method and queue is true, we queue the method until the result arrives.
|
2019-01-13 05:58:34 +03:00
|
|
|
if pkt.packetType == packetTypeInvoke && queue {
|
2019-01-07 10:30:42 +03:00
|
|
|
buf := pkt.body[1:]
|
2019-01-11 23:43:27 +03:00
|
|
|
meth := amf.DecodeString(buf)
|
2019-01-19 05:41:19 +03:00
|
|
|
c.log(DebugLevel, pkg+"queuing method "+meth)
|
2019-01-13 05:58:34 +03:00
|
|
|
buf = buf[3+len(meth):]
|
|
|
|
txn := int32(amf.DecodeNumber(buf[:8]))
|
2019-01-19 05:41:19 +03:00
|
|
|
c.methodCalls = append(c.methodCalls, method{name: meth, num: txn})
|
2019-01-07 10:30:42 +03:00
|
|
|
}
|
|
|
|
|
2019-01-19 05:41:19 +03:00
|
|
|
if c.channelsOut[pkt.channel] == nil {
|
|
|
|
c.channelsOut[pkt.channel] = &packet{}
|
2019-01-07 10:30:42 +03:00
|
|
|
}
|
2019-01-19 05:41:19 +03:00
|
|
|
*(c.channelsOut[pkt.channel]) = *pkt
|
2019-01-07 10:30:42 +03:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|