mirror of
https://github.com/pion/webrtc.git
synced 2025-09-27 11:32:19 +08:00
1550 lines
46 KiB
Go
1550 lines
46 KiB
Go
// Package webrtc implements the WebRTC 1.0 as defined in W3C WebRTC specification document.
|
|
package webrtc
|
|
|
|
import (
|
|
"crypto/ecdsa"
|
|
"crypto/elliptic"
|
|
"crypto/rand"
|
|
"fmt"
|
|
"net"
|
|
"strconv"
|
|
"strings"
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/pions/rtcp"
|
|
"github.com/pions/rtp"
|
|
"github.com/pions/sdp/v2"
|
|
"github.com/pions/webrtc/pkg/ice"
|
|
"github.com/pions/webrtc/pkg/logging"
|
|
"github.com/pions/webrtc/pkg/rtcerr"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
var pcLog = logging.NewScopedLogger("pc")
|
|
|
|
const (
|
|
// Unknown defines default public constant to use for "enum" like struct
|
|
// comparisons when no value was defined.
|
|
Unknown = iota
|
|
unknownStr = "unknown"
|
|
|
|
receiveMTU = 8192
|
|
)
|
|
|
|
// PeerConnection represents a WebRTC connection that establishes a
|
|
// peer-to-peer communications with another PeerConnection instance in a
|
|
// browser, or to another endpoint implementing the required protocols.
|
|
type PeerConnection struct {
|
|
mu sync.RWMutex
|
|
|
|
configuration Configuration
|
|
|
|
// CurrentLocalDescription represents the local description that was
|
|
// successfully negotiated the last time the PeerConnection transitioned
|
|
// into the stable state plus any local candidates that have been generated
|
|
// by the ICEAgent since the offer or answer was created.
|
|
CurrentLocalDescription *SessionDescription
|
|
|
|
// PendingLocalDescription represents a local description that is in the
|
|
// process of being negotiated plus any local candidates that have been
|
|
// generated by the ICEAgent since the offer or answer was created. If the
|
|
// PeerConnection is in the stable state, the value is null.
|
|
PendingLocalDescription *SessionDescription
|
|
|
|
// CurrentRemoteDescription represents the last remote description that was
|
|
// successfully negotiated the last time the PeerConnection transitioned
|
|
// into the stable state plus any remote candidates that have been supplied
|
|
// via AddICECandidate() since the offer or answer was created.
|
|
CurrentRemoteDescription *SessionDescription
|
|
|
|
// PendingRemoteDescription represents a remote description that is in the
|
|
// process of being negotiated, complete with any remote candidates that
|
|
// have been supplied via AddICECandidate() since the offer or answer was
|
|
// created. If the PeerConnection is in the stable state, the value is
|
|
// null.
|
|
PendingRemoteDescription *SessionDescription
|
|
|
|
// SignalingState attribute returns the signaling state of the
|
|
// PeerConnection instance.
|
|
SignalingState SignalingState
|
|
|
|
// ICEGatheringState attribute returns the ICE gathering state of the
|
|
// PeerConnection instance.
|
|
ICEGatheringState ICEGatheringState // FIXME NOT-USED
|
|
|
|
// ICEConnectionState attribute returns the ICE connection state of the
|
|
// PeerConnection instance.
|
|
// ICEConnectionState ICEConnectionState // FIXME SWAP-FOR-THIS
|
|
ICEConnectionState ice.ConnectionState // FIXME REMOVE
|
|
|
|
// ConnectionState attribute returns the connection state of the
|
|
// PeerConnection instance.
|
|
ConnectionState PeerConnectionState
|
|
|
|
idpLoginURL *string
|
|
|
|
isClosed bool
|
|
negotiationNeeded bool
|
|
|
|
lastOffer string
|
|
lastAnswer string
|
|
|
|
rtpTransceivers []*RTPTransceiver
|
|
|
|
// DataChannels
|
|
dataChannels map[uint16]*DataChannel
|
|
|
|
// OnNegotiationNeeded func() // FIXME NOT-USED
|
|
// OnICECandidate func() // FIXME NOT-USED
|
|
// OnICECandidateError func() // FIXME NOT-USED
|
|
|
|
// OnICEGatheringStateChange func() // FIXME NOT-USED
|
|
// OnConnectionStateChange func() // FIXME NOT-USED
|
|
|
|
onSignalingStateChangeHandler func(SignalingState)
|
|
onICEConnectionStateChangeHandler func(ice.ConnectionState)
|
|
onTrackHandler func(*Track)
|
|
onDataChannelHandler func(*DataChannel)
|
|
|
|
iceGatherer *ICEGatherer
|
|
iceTransport *ICETransport
|
|
dtlsTransport *DTLSTransport
|
|
sctpTransport *SCTPTransport
|
|
|
|
// A reference to the associated API state used by this connection
|
|
api *API
|
|
}
|
|
|
|
// NewPeerConnection creates a new PeerConnection with the provided configuration against the received API object
|
|
func (api *API) NewPeerConnection(configuration Configuration) (*PeerConnection, error) {
|
|
// https://w3c.github.io/webrtc-pc/#constructor (Step #2)
|
|
// Some variables defined explicitly despite their implicit zero values to
|
|
// allow better readability to understand what is happening.
|
|
pc := &PeerConnection{
|
|
configuration: Configuration{
|
|
ICEServers: []ICEServer{},
|
|
ICETransportPolicy: ICETransportPolicyAll,
|
|
BundlePolicy: BundlePolicyBalanced,
|
|
RTCPMuxPolicy: RTCPMuxPolicyRequire,
|
|
Certificates: []Certificate{},
|
|
ICECandidatePoolSize: 0,
|
|
},
|
|
isClosed: false,
|
|
negotiationNeeded: false,
|
|
lastOffer: "",
|
|
lastAnswer: "",
|
|
SignalingState: SignalingStateStable,
|
|
// ICEConnectionState: ICEConnectionStateNew, // FIXME SWAP-FOR-THIS
|
|
ICEConnectionState: ice.ConnectionStateNew, // FIXME REMOVE
|
|
ICEGatheringState: ICEGatheringStateNew,
|
|
ConnectionState: PeerConnectionStateNew,
|
|
dataChannels: make(map[uint16]*DataChannel),
|
|
|
|
api: api,
|
|
}
|
|
|
|
var err error
|
|
if err = pc.initConfiguration(configuration); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// For now we eagerly allocate and start the gatherer
|
|
gatherer, err := pc.createICEGatherer()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
pc.iceGatherer = gatherer
|
|
|
|
err = pc.gather()
|
|
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// Create the ice transport
|
|
iceTransport := pc.createICETransport()
|
|
pc.iceTransport = iceTransport
|
|
|
|
// Create the DTLS transport
|
|
dtlsTransport, err := pc.createDTLSTransport()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
pc.dtlsTransport = dtlsTransport
|
|
|
|
return pc, nil
|
|
}
|
|
|
|
// initConfiguration defines validation of the specified Configuration and
|
|
// its assignment to the internal configuration variable. This function differs
|
|
// from its SetConfiguration counterpart because most of the checks do not
|
|
// include verification statements related to the existing state. Thus the
|
|
// function describes only minor verification of some the struct variables.
|
|
func (pc *PeerConnection) initConfiguration(configuration Configuration) error {
|
|
if configuration.PeerIdentity != "" {
|
|
pc.configuration.PeerIdentity = configuration.PeerIdentity
|
|
}
|
|
|
|
// https://www.w3.org/TR/webrtc/#constructor (step #3)
|
|
if len(configuration.Certificates) > 0 {
|
|
now := time.Now()
|
|
for _, x509Cert := range configuration.Certificates {
|
|
if !x509Cert.Expires().IsZero() && now.After(x509Cert.Expires()) {
|
|
return &rtcerr.InvalidAccessError{Err: ErrCertificateExpired}
|
|
}
|
|
pc.configuration.Certificates = append(pc.configuration.Certificates, x509Cert)
|
|
}
|
|
} else {
|
|
sk, err := ecdsa.GenerateKey(elliptic.P256(), rand.Reader)
|
|
if err != nil {
|
|
return &rtcerr.UnknownError{Err: err}
|
|
}
|
|
certificate, err := GenerateCertificate(sk)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
pc.configuration.Certificates = []Certificate{*certificate}
|
|
}
|
|
|
|
if configuration.BundlePolicy != BundlePolicy(Unknown) {
|
|
pc.configuration.BundlePolicy = configuration.BundlePolicy
|
|
}
|
|
|
|
if configuration.RTCPMuxPolicy != RTCPMuxPolicy(Unknown) {
|
|
pc.configuration.RTCPMuxPolicy = configuration.RTCPMuxPolicy
|
|
}
|
|
|
|
if configuration.ICECandidatePoolSize != 0 {
|
|
pc.configuration.ICECandidatePoolSize = configuration.ICECandidatePoolSize
|
|
}
|
|
|
|
if configuration.ICETransportPolicy != ICETransportPolicy(Unknown) {
|
|
pc.configuration.ICETransportPolicy = configuration.ICETransportPolicy
|
|
}
|
|
|
|
if len(configuration.ICEServers) > 0 {
|
|
for _, server := range configuration.ICEServers {
|
|
if _, err := server.validate(); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
pc.configuration.ICEServers = configuration.ICEServers
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// OnSignalingStateChange sets an event handler which is invoked when the
|
|
// peer connection's signaling state changes
|
|
func (pc *PeerConnection) OnSignalingStateChange(f func(SignalingState)) {
|
|
pc.mu.Lock()
|
|
defer pc.mu.Unlock()
|
|
pc.onSignalingStateChangeHandler = f
|
|
}
|
|
|
|
func (pc *PeerConnection) onSignalingStateChange(newState SignalingState) (done chan struct{}) {
|
|
pc.mu.RLock()
|
|
hdlr := pc.onSignalingStateChangeHandler
|
|
pc.mu.RUnlock()
|
|
|
|
pcLog.Infof("signaling state changed to %s", newState)
|
|
done = make(chan struct{})
|
|
if hdlr == nil {
|
|
close(done)
|
|
return
|
|
}
|
|
|
|
go func() {
|
|
hdlr(newState)
|
|
close(done)
|
|
}()
|
|
|
|
return
|
|
}
|
|
|
|
// OnDataChannel sets an event handler which is invoked when a data
|
|
// channel message arrives from a remote peer.
|
|
func (pc *PeerConnection) OnDataChannel(f func(*DataChannel)) {
|
|
pc.mu.Lock()
|
|
defer pc.mu.Unlock()
|
|
pc.onDataChannelHandler = f
|
|
}
|
|
|
|
// OnTrack sets an event handler which is called when remote track
|
|
// arrives from a remote peer.
|
|
func (pc *PeerConnection) OnTrack(f func(*Track)) {
|
|
pc.mu.Lock()
|
|
defer pc.mu.Unlock()
|
|
pc.onTrackHandler = f
|
|
}
|
|
|
|
func (pc *PeerConnection) onTrack(t *Track) (done chan struct{}) {
|
|
pc.mu.RLock()
|
|
hdlr := pc.onTrackHandler
|
|
pc.mu.RUnlock()
|
|
|
|
pcLog.Debugf("got new track: %+v", t)
|
|
done = make(chan struct{})
|
|
if hdlr == nil || t == nil {
|
|
close(done)
|
|
return
|
|
}
|
|
|
|
go func() {
|
|
hdlr(t)
|
|
close(done)
|
|
}()
|
|
|
|
return
|
|
}
|
|
|
|
// OnICEConnectionStateChange sets an event handler which is called
|
|
// when an ICE connection state is changed.
|
|
func (pc *PeerConnection) OnICEConnectionStateChange(f func(ice.ConnectionState)) {
|
|
pc.mu.Lock()
|
|
defer pc.mu.Unlock()
|
|
pc.onICEConnectionStateChangeHandler = f
|
|
}
|
|
|
|
func (pc *PeerConnection) onICEConnectionStateChange(cs ice.ConnectionState) (done chan struct{}) {
|
|
pc.mu.RLock()
|
|
hdlr := pc.onICEConnectionStateChangeHandler
|
|
pc.mu.RUnlock()
|
|
|
|
pcLog.Infof("ICE connection state changed: %s", cs)
|
|
done = make(chan struct{})
|
|
if hdlr == nil {
|
|
close(done)
|
|
return
|
|
}
|
|
|
|
go func() {
|
|
hdlr(cs)
|
|
close(done)
|
|
}()
|
|
|
|
return
|
|
}
|
|
|
|
// SetConfiguration updates the configuration of this PeerConnection object.
|
|
func (pc *PeerConnection) SetConfiguration(configuration Configuration) error {
|
|
// https://www.w3.org/TR/webrtc/#dom-rtcpeerconnection-setconfiguration (step #2)
|
|
if pc.isClosed {
|
|
return &rtcerr.InvalidStateError{Err: ErrConnectionClosed}
|
|
}
|
|
|
|
// https://www.w3.org/TR/webrtc/#set-the-configuration (step #3)
|
|
if configuration.PeerIdentity != "" {
|
|
if configuration.PeerIdentity != pc.configuration.PeerIdentity {
|
|
return &rtcerr.InvalidModificationError{Err: ErrModifyingPeerIdentity}
|
|
}
|
|
pc.configuration.PeerIdentity = configuration.PeerIdentity
|
|
}
|
|
|
|
// https://www.w3.org/TR/webrtc/#set-the-configuration (step #4)
|
|
if len(configuration.Certificates) > 0 {
|
|
if len(configuration.Certificates) != len(pc.configuration.Certificates) {
|
|
return &rtcerr.InvalidModificationError{Err: ErrModifyingCertificates}
|
|
}
|
|
|
|
for i, certificate := range configuration.Certificates {
|
|
if !pc.configuration.Certificates[i].Equals(certificate) {
|
|
return &rtcerr.InvalidModificationError{Err: ErrModifyingCertificates}
|
|
}
|
|
}
|
|
pc.configuration.Certificates = configuration.Certificates
|
|
}
|
|
|
|
// https://www.w3.org/TR/webrtc/#set-the-configuration (step #5)
|
|
if configuration.BundlePolicy != BundlePolicy(Unknown) {
|
|
if configuration.BundlePolicy != pc.configuration.BundlePolicy {
|
|
return &rtcerr.InvalidModificationError{Err: ErrModifyingBundlePolicy}
|
|
}
|
|
pc.configuration.BundlePolicy = configuration.BundlePolicy
|
|
}
|
|
|
|
// https://www.w3.org/TR/webrtc/#set-the-configuration (step #6)
|
|
if configuration.RTCPMuxPolicy != RTCPMuxPolicy(Unknown) {
|
|
if configuration.RTCPMuxPolicy != pc.configuration.RTCPMuxPolicy {
|
|
return &rtcerr.InvalidModificationError{Err: ErrModifyingRTCPMuxPolicy}
|
|
}
|
|
pc.configuration.RTCPMuxPolicy = configuration.RTCPMuxPolicy
|
|
}
|
|
|
|
// https://www.w3.org/TR/webrtc/#set-the-configuration (step #7)
|
|
if configuration.ICECandidatePoolSize != 0 {
|
|
if pc.configuration.ICECandidatePoolSize != configuration.ICECandidatePoolSize &&
|
|
pc.LocalDescription() != nil {
|
|
return &rtcerr.InvalidModificationError{Err: ErrModifyingICECandidatePoolSize}
|
|
}
|
|
pc.configuration.ICECandidatePoolSize = configuration.ICECandidatePoolSize
|
|
}
|
|
|
|
// https://www.w3.org/TR/webrtc/#set-the-configuration (step #8)
|
|
if configuration.ICETransportPolicy != ICETransportPolicy(Unknown) {
|
|
pc.configuration.ICETransportPolicy = configuration.ICETransportPolicy
|
|
}
|
|
|
|
// https://www.w3.org/TR/webrtc/#set-the-configuration (step #11)
|
|
if len(configuration.ICEServers) > 0 {
|
|
// https://www.w3.org/TR/webrtc/#set-the-configuration (step #11.3)
|
|
for _, server := range configuration.ICEServers {
|
|
if _, err := server.validate(); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
pc.configuration.ICEServers = configuration.ICEServers
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// GetConfiguration returns a Configuration object representing the current
|
|
// configuration of this PeerConnection object. The returned object is a
|
|
// copy and direct mutation on it will not take affect until SetConfiguration
|
|
// has been called with Configuration passed as its only argument.
|
|
// https://www.w3.org/TR/webrtc/#dom-rtcpeerconnection-getconfiguration
|
|
func (pc *PeerConnection) GetConfiguration() Configuration {
|
|
return pc.configuration
|
|
}
|
|
|
|
// ------------------------------------------------------------------------
|
|
// --- FIXME - BELOW CODE NEEDS REVIEW/CLEANUP
|
|
// ------------------------------------------------------------------------
|
|
|
|
// CreateOffer starts the PeerConnection and generates the localDescription
|
|
func (pc *PeerConnection) CreateOffer(options *OfferOptions) (SessionDescription, error) {
|
|
useIdentity := pc.idpLoginURL != nil
|
|
switch {
|
|
case options != nil:
|
|
return SessionDescription{}, errors.Errorf("TODO handle options")
|
|
case useIdentity:
|
|
return SessionDescription{}, errors.Errorf("TODO handle identity provider")
|
|
case pc.isClosed:
|
|
return SessionDescription{}, &rtcerr.InvalidStateError{Err: ErrConnectionClosed}
|
|
}
|
|
|
|
d := sdp.NewJSEPSessionDescription(useIdentity)
|
|
pc.addFingerprint(d)
|
|
|
|
iceParams, err := pc.iceGatherer.GetLocalParameters()
|
|
if err != nil {
|
|
return SessionDescription{}, err
|
|
}
|
|
|
|
candidates, err := pc.iceGatherer.GetLocalCandidates()
|
|
if err != nil {
|
|
return SessionDescription{}, err
|
|
}
|
|
|
|
bundleValue := "BUNDLE"
|
|
|
|
if pc.addRTPMediaSection(d, RTPCodecTypeAudio, "audio", iceParams, RTPTransceiverDirectionSendrecv, candidates, sdp.ConnectionRoleActpass) {
|
|
bundleValue += " audio"
|
|
}
|
|
if pc.addRTPMediaSection(d, RTPCodecTypeVideo, "video", iceParams, RTPTransceiverDirectionSendrecv, candidates, sdp.ConnectionRoleActpass) {
|
|
bundleValue += " video"
|
|
}
|
|
|
|
pc.addDataMediaSection(d, "data", iceParams, candidates, sdp.ConnectionRoleActpass)
|
|
d = d.WithValueAttribute(sdp.AttrKeyGroup, bundleValue+" data")
|
|
|
|
for _, m := range d.MediaDescriptions {
|
|
m.WithPropertyAttribute("setup:actpass")
|
|
}
|
|
|
|
desc := SessionDescription{
|
|
Type: SDPTypeOffer,
|
|
SDP: d.Marshal(),
|
|
parsed: d,
|
|
}
|
|
pc.lastOffer = desc.SDP
|
|
return desc, nil
|
|
}
|
|
|
|
func (pc *PeerConnection) createICEGatherer() (*ICEGatherer, error) {
|
|
g, err := pc.api.NewICEGatherer(ICEGatherOptions{
|
|
ICEServers: pc.configuration.ICEServers,
|
|
// TODO: GatherPolicy
|
|
})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return g, nil
|
|
}
|
|
|
|
func (pc *PeerConnection) gather() error {
|
|
return pc.iceGatherer.Gather()
|
|
}
|
|
|
|
func (pc *PeerConnection) createICETransport() *ICETransport {
|
|
t := pc.api.NewICETransport(pc.iceGatherer)
|
|
|
|
t.OnConnectionStateChange(func(state ICETransportState) {
|
|
// We convert the state back to the ICE state to not brake the
|
|
// existing public API at this point.
|
|
iceState := state.toICE()
|
|
pc.iceStateChange(iceState)
|
|
})
|
|
|
|
return t
|
|
}
|
|
|
|
func (pc *PeerConnection) createDTLSTransport() (*DTLSTransport, error) {
|
|
dtlsTransport, err := pc.api.NewDTLSTransport(pc.iceTransport, pc.configuration.Certificates)
|
|
return dtlsTransport, err
|
|
}
|
|
|
|
// CreateAnswer starts the PeerConnection and generates the localDescription
|
|
func (pc *PeerConnection) CreateAnswer(options *AnswerOptions) (SessionDescription, error) {
|
|
useIdentity := pc.idpLoginURL != nil
|
|
switch {
|
|
case options != nil:
|
|
return SessionDescription{}, errors.Errorf("TODO handle options")
|
|
case useIdentity:
|
|
return SessionDescription{}, errors.Errorf("TODO handle identity provider")
|
|
case pc.isClosed:
|
|
return SessionDescription{}, &rtcerr.InvalidStateError{Err: ErrConnectionClosed}
|
|
}
|
|
|
|
iceParams, err := pc.iceGatherer.GetLocalParameters()
|
|
if err != nil {
|
|
return SessionDescription{}, err
|
|
}
|
|
|
|
candidates, err := pc.iceGatherer.GetLocalCandidates()
|
|
if err != nil {
|
|
return SessionDescription{}, err
|
|
}
|
|
|
|
d := sdp.NewJSEPSessionDescription(useIdentity)
|
|
pc.addFingerprint(d)
|
|
|
|
bundleValue := "BUNDLE"
|
|
for _, remoteMedia := range pc.RemoteDescription().parsed.MediaDescriptions {
|
|
// TODO @trivigy better SDP parser
|
|
var peerDirection RTPTransceiverDirection
|
|
midValue := ""
|
|
for _, a := range remoteMedia.Attributes {
|
|
switch {
|
|
case strings.HasPrefix(*a.String(), "mid"):
|
|
midValue = (*a.String())[len("mid:"):]
|
|
case strings.HasPrefix(*a.String(), "sendrecv"):
|
|
peerDirection = RTPTransceiverDirectionSendrecv
|
|
case strings.HasPrefix(*a.String(), "sendonly"):
|
|
peerDirection = RTPTransceiverDirectionSendonly
|
|
case strings.HasPrefix(*a.String(), "recvonly"):
|
|
peerDirection = RTPTransceiverDirectionRecvonly
|
|
}
|
|
}
|
|
|
|
appendBundle := func() {
|
|
bundleValue += " " + midValue
|
|
}
|
|
|
|
switch {
|
|
case strings.HasPrefix(*remoteMedia.MediaName.String(), "audio"):
|
|
if pc.addRTPMediaSection(d, RTPCodecTypeAudio, midValue, iceParams, peerDirection, candidates, sdp.ConnectionRoleActive) {
|
|
appendBundle()
|
|
}
|
|
case strings.HasPrefix(*remoteMedia.MediaName.String(), "video"):
|
|
if pc.addRTPMediaSection(d, RTPCodecTypeVideo, midValue, iceParams, peerDirection, candidates, sdp.ConnectionRoleActive) {
|
|
appendBundle()
|
|
}
|
|
case strings.HasPrefix(*remoteMedia.MediaName.String(), "application"):
|
|
pc.addDataMediaSection(d, midValue, iceParams, candidates, sdp.ConnectionRoleActive)
|
|
appendBundle()
|
|
}
|
|
}
|
|
|
|
d = d.WithValueAttribute(sdp.AttrKeyGroup, bundleValue)
|
|
|
|
desc := SessionDescription{
|
|
Type: SDPTypeAnswer,
|
|
SDP: d.Marshal(),
|
|
parsed: d,
|
|
}
|
|
pc.lastAnswer = desc.SDP
|
|
return desc, nil
|
|
}
|
|
|
|
// 4.4.1.6 Set the SessionDescription
|
|
func (pc *PeerConnection) setDescription(sd *SessionDescription, op stateChangeOp) error {
|
|
if pc.isClosed {
|
|
return &rtcerr.InvalidStateError{Err: ErrConnectionClosed}
|
|
}
|
|
|
|
cur := pc.SignalingState
|
|
setLocal := stateChangeOpSetLocal
|
|
setRemote := stateChangeOpSetRemote
|
|
newSDPDoesNotMatchOffer := &rtcerr.InvalidModificationError{Err: errors.New("New sdp does not match previous offer")}
|
|
newSDPDoesNotMatchAnswer := &rtcerr.InvalidModificationError{Err: errors.New("New sdp does not match previous answer")}
|
|
|
|
var nextState SignalingState
|
|
var err error
|
|
switch op {
|
|
case setLocal:
|
|
switch sd.Type {
|
|
// stable->SetLocal(offer)->have-local-offer
|
|
case SDPTypeOffer:
|
|
if sd.SDP != pc.lastOffer {
|
|
return newSDPDoesNotMatchOffer
|
|
}
|
|
nextState, err = checkNextSignalingState(cur, SignalingStateHaveLocalOffer, setLocal, sd.Type)
|
|
if err == nil {
|
|
pc.PendingLocalDescription = sd
|
|
}
|
|
// have-remote-offer->SetLocal(answer)->stable
|
|
// have-local-pranswer->SetLocal(answer)->stable
|
|
case SDPTypeAnswer:
|
|
if sd.SDP != pc.lastAnswer {
|
|
return newSDPDoesNotMatchAnswer
|
|
}
|
|
nextState, err = checkNextSignalingState(cur, SignalingStateStable, setLocal, sd.Type)
|
|
if err == nil {
|
|
pc.CurrentLocalDescription = sd
|
|
pc.CurrentRemoteDescription = pc.PendingRemoteDescription
|
|
pc.PendingRemoteDescription = nil
|
|
pc.PendingLocalDescription = nil
|
|
}
|
|
case SDPTypeRollback:
|
|
nextState, err = checkNextSignalingState(cur, SignalingStateStable, setLocal, sd.Type)
|
|
if err == nil {
|
|
pc.PendingLocalDescription = nil
|
|
}
|
|
// have-remote-offer->SetLocal(pranswer)->have-local-pranswer
|
|
case SDPTypePranswer:
|
|
if sd.SDP != pc.lastAnswer {
|
|
return newSDPDoesNotMatchAnswer
|
|
}
|
|
nextState, err = checkNextSignalingState(cur, SignalingStateHaveLocalPranswer, setLocal, sd.Type)
|
|
if err == nil {
|
|
pc.PendingLocalDescription = sd
|
|
}
|
|
default:
|
|
return &rtcerr.OperationError{Err: fmt.Errorf("invalid state change op: %s(%s)", op, sd.Type)}
|
|
}
|
|
case setRemote:
|
|
switch sd.Type {
|
|
// stable->SetRemote(offer)->have-remote-offer
|
|
case SDPTypeOffer:
|
|
nextState, err = checkNextSignalingState(cur, SignalingStateHaveRemoteOffer, setRemote, sd.Type)
|
|
if err == nil {
|
|
pc.PendingRemoteDescription = sd
|
|
}
|
|
// have-local-offer->SetRemote(answer)->stable
|
|
// have-remote-pranswer->SetRemote(answer)->stable
|
|
case SDPTypeAnswer:
|
|
nextState, err = checkNextSignalingState(cur, SignalingStateStable, setRemote, sd.Type)
|
|
if err == nil {
|
|
pc.CurrentRemoteDescription = sd
|
|
pc.CurrentLocalDescription = pc.PendingLocalDescription
|
|
pc.PendingRemoteDescription = nil
|
|
pc.PendingLocalDescription = nil
|
|
}
|
|
case SDPTypeRollback:
|
|
nextState, err = checkNextSignalingState(cur, SignalingStateStable, setRemote, sd.Type)
|
|
if err == nil {
|
|
pc.PendingRemoteDescription = nil
|
|
}
|
|
// have-local-offer->SetRemote(pranswer)->have-remote-pranswer
|
|
case SDPTypePranswer:
|
|
nextState, err = checkNextSignalingState(cur, SignalingStateHaveRemotePranswer, setRemote, sd.Type)
|
|
if err == nil {
|
|
pc.PendingRemoteDescription = sd
|
|
}
|
|
default:
|
|
return &rtcerr.OperationError{Err: fmt.Errorf("invalid state change op: %s(%s)", op, sd.Type)}
|
|
}
|
|
default:
|
|
return &rtcerr.OperationError{Err: fmt.Errorf("unhandled state change op: %q", op)}
|
|
}
|
|
|
|
if err == nil {
|
|
pc.SignalingState = nextState
|
|
pc.onSignalingStateChange(nextState)
|
|
}
|
|
return err
|
|
}
|
|
|
|
// SetLocalDescription sets the SessionDescription of the local peer
|
|
func (pc *PeerConnection) SetLocalDescription(desc SessionDescription) error {
|
|
if pc.isClosed {
|
|
return &rtcerr.InvalidStateError{Err: ErrConnectionClosed}
|
|
}
|
|
|
|
// JSEP 5.4
|
|
if desc.SDP == "" {
|
|
switch desc.Type {
|
|
case SDPTypeAnswer, SDPTypePranswer:
|
|
desc.SDP = pc.lastAnswer
|
|
case SDPTypeOffer:
|
|
desc.SDP = pc.lastOffer
|
|
default:
|
|
return &rtcerr.InvalidModificationError{
|
|
Err: fmt.Errorf("invalid SDP type supplied to SetLocalDescription(): %s", desc.Type),
|
|
}
|
|
}
|
|
}
|
|
|
|
// TODO: Initiate ICE candidate gathering?
|
|
|
|
desc.parsed = &sdp.SessionDescription{}
|
|
if err := desc.parsed.Unmarshal(desc.SDP); err != nil {
|
|
return err
|
|
}
|
|
return pc.setDescription(&desc, stateChangeOpSetLocal)
|
|
}
|
|
|
|
// LocalDescription returns PendingLocalDescription if it is not null and
|
|
// otherwise it returns CurrentLocalDescription. This property is used to
|
|
// determine if setLocalDescription has already been called.
|
|
// https://www.w3.org/TR/webrtc/#dom-rtcpeerconnection-localdescription
|
|
func (pc *PeerConnection) LocalDescription() *SessionDescription {
|
|
if pc.PendingLocalDescription != nil {
|
|
return pc.PendingLocalDescription
|
|
}
|
|
return pc.CurrentLocalDescription
|
|
}
|
|
|
|
// SetRemoteDescription sets the SessionDescription of the remote peer
|
|
func (pc *PeerConnection) SetRemoteDescription(desc SessionDescription) error {
|
|
// FIXME: Remove this when renegotiation is supported
|
|
if pc.CurrentRemoteDescription != nil {
|
|
return errors.Errorf("remoteDescription is already defined, SetRemoteDescription can only be called once")
|
|
}
|
|
if pc.isClosed {
|
|
return &rtcerr.InvalidStateError{Err: ErrConnectionClosed}
|
|
}
|
|
|
|
desc.parsed = &sdp.SessionDescription{}
|
|
if err := desc.parsed.Unmarshal(desc.SDP); err != nil {
|
|
return err
|
|
}
|
|
if err := pc.setDescription(&desc, stateChangeOpSetRemote); err != nil {
|
|
return err
|
|
}
|
|
|
|
weOffer := true
|
|
remoteUfrag := ""
|
|
remotePwd := ""
|
|
if desc.Type == SDPTypeOffer {
|
|
weOffer = false
|
|
}
|
|
|
|
for _, m := range pc.RemoteDescription().parsed.MediaDescriptions {
|
|
for _, a := range m.Attributes {
|
|
switch {
|
|
case a.IsICECandidate():
|
|
sdpCandidate, err := a.ToICECandidate()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
candidate, err := newICECandidateFromSDP(sdpCandidate)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if err = pc.iceTransport.AddRemoteCandidate(candidate); err != nil {
|
|
return err
|
|
}
|
|
case strings.HasPrefix(*a.String(), "ice-ufrag"):
|
|
remoteUfrag = (*a.String())[len("ice-ufrag:"):]
|
|
case strings.HasPrefix(*a.String(), "ice-pwd"):
|
|
remotePwd = (*a.String())[len("ice-pwd:"):]
|
|
}
|
|
}
|
|
}
|
|
|
|
fingerprint, ok := desc.parsed.Attribute("fingerprint")
|
|
if !ok {
|
|
fingerprint, ok = desc.parsed.MediaDescriptions[0].Attribute("fingerprint")
|
|
if !ok {
|
|
return errors.New("could not find fingerprint")
|
|
}
|
|
}
|
|
var fingerprintHash string
|
|
parts := strings.Split(fingerprint, " ")
|
|
if len(parts) != 2 {
|
|
return errors.New("invalid fingerprint")
|
|
}
|
|
fingerprint = parts[1]
|
|
fingerprintHash = parts[0]
|
|
|
|
// Create the SCTP transport
|
|
sctp := pc.api.NewSCTPTransport(pc.dtlsTransport)
|
|
pc.sctpTransport = sctp
|
|
|
|
// Wire up the on datachannel handler
|
|
sctp.OnDataChannel(func(d *DataChannel) {
|
|
pc.mu.RLock()
|
|
hdlr := pc.onDataChannelHandler
|
|
pc.mu.RUnlock()
|
|
if hdlr != nil {
|
|
hdlr(d)
|
|
}
|
|
})
|
|
|
|
go func() {
|
|
// Star the networking in a new routine since it will block until
|
|
// the connection is actually established.
|
|
|
|
// Start the ice transport
|
|
iceRole := ICERoleControlled
|
|
if weOffer {
|
|
iceRole = ICERoleControlling
|
|
}
|
|
err := pc.iceTransport.Start(
|
|
pc.iceGatherer,
|
|
ICEParameters{
|
|
UsernameFragment: remoteUfrag,
|
|
Password: remotePwd,
|
|
ICELite: false,
|
|
},
|
|
&iceRole,
|
|
)
|
|
|
|
if err != nil {
|
|
// TODO: Handle error
|
|
pcLog.Warnf("Failed to start manager: %s", err)
|
|
return
|
|
}
|
|
|
|
// Start the dtls transport
|
|
err = pc.dtlsTransport.Start(DTLSParameters{
|
|
Role: DTLSRoleAuto,
|
|
Fingerprints: []DTLSFingerprint{{Algorithm: fingerprintHash, Value: fingerprint}},
|
|
})
|
|
if err != nil {
|
|
// TODO: Handle error
|
|
pcLog.Warnf("Failed to start manager: %s", err)
|
|
return
|
|
}
|
|
|
|
if pc.onTrackHandler != nil {
|
|
pc.openSRTP()
|
|
} else {
|
|
pcLog.Warnf("OnTrack unset, unable to handle incoming media streams")
|
|
}
|
|
|
|
for _, tranceiver := range pc.rtpTransceivers {
|
|
if tranceiver.Sender != nil {
|
|
tranceiver.Sender.Send(RTPSendParameters{
|
|
encodings: RTPEncodingParameters{
|
|
RTPCodingParameters{SSRC: tranceiver.Sender.Track.SSRC, PayloadType: tranceiver.Sender.Track.PayloadType},
|
|
}})
|
|
}
|
|
}
|
|
|
|
go pc.drainSRTP()
|
|
|
|
// Start sctp
|
|
err = pc.sctpTransport.Start(SCTPCapabilities{
|
|
MaxMessageSize: 0,
|
|
})
|
|
if err != nil {
|
|
// TODO: Handle error
|
|
pcLog.Warnf("Failed to start SCTP: %s", err)
|
|
return
|
|
}
|
|
|
|
// Open data channels that where created before signaling
|
|
pc.openDataChannels()
|
|
}()
|
|
|
|
return nil
|
|
}
|
|
|
|
// openDataChannels opens the existing data channels
|
|
func (pc *PeerConnection) openDataChannels() {
|
|
for _, d := range pc.dataChannels {
|
|
err := d.open(pc.sctpTransport)
|
|
if err != nil {
|
|
pcLog.Warnf("failed to open data channel: %s", err)
|
|
continue
|
|
}
|
|
}
|
|
}
|
|
|
|
// openSRTP opens knows inbound SRTP streams from the RemoteDescription
|
|
func (pc *PeerConnection) openSRTP() {
|
|
incomingSSRCes := map[uint32]RTPCodecType{}
|
|
|
|
for _, media := range pc.RemoteDescription().parsed.MediaDescriptions {
|
|
for _, attr := range media.Attributes {
|
|
var codecType RTPCodecType
|
|
switch media.MediaName.Media {
|
|
case "audio":
|
|
codecType = RTPCodecTypeAudio
|
|
case "video":
|
|
codecType = RTPCodecTypeVideo
|
|
default:
|
|
continue
|
|
}
|
|
|
|
if attr.Key == sdp.AttrKeySSRC {
|
|
ssrc, err := strconv.ParseUint(strings.Split(attr.Value, " ")[0], 10, 32)
|
|
if err != nil {
|
|
pcLog.Warnf("Failed to parse SSRC: %v", err)
|
|
continue
|
|
}
|
|
|
|
incomingSSRCes[uint32(ssrc)] = codecType
|
|
}
|
|
}
|
|
}
|
|
|
|
for i := range incomingSSRCes {
|
|
go func(ssrc uint32, codecType RTPCodecType) {
|
|
receiver := NewRTPReceiver(codecType, pc.dtlsTransport)
|
|
<-receiver.Receive(RTPReceiveParameters{
|
|
encodings: RTPDecodingParameters{
|
|
RTPCodingParameters{SSRC: ssrc},
|
|
}})
|
|
|
|
sdpCodec, err := pc.CurrentLocalDescription.parsed.GetCodecForPayloadType(receiver.Track.PayloadType)
|
|
if err != nil {
|
|
pcLog.Warnf("no codec could be found in RemoteDescription for payloadType %d", receiver.Track.PayloadType)
|
|
return
|
|
}
|
|
|
|
codec, err := pc.api.mediaEngine.getCodecSDP(sdpCodec)
|
|
if err != nil {
|
|
pcLog.Warnf("codec %s in not registered", sdpCodec)
|
|
return
|
|
}
|
|
|
|
receiver.Track.Kind = codec.Type
|
|
receiver.Track.Codec = codec
|
|
pc.newRTPTransceiver(
|
|
receiver,
|
|
nil,
|
|
RTPTransceiverDirectionRecvonly,
|
|
)
|
|
|
|
pc.onTrack(receiver.Track)
|
|
}(i, incomingSSRCes[i])
|
|
}
|
|
|
|
}
|
|
|
|
// drainSRTP pulls and discards RTP/RTCP packets that don't match any SRTP
|
|
// These could be sent to the user, but right now we don't provide an API
|
|
// to distribute orphaned RTCP messages. This is needed to make sure we don't block
|
|
// and provides useful debugging messages
|
|
func (pc *PeerConnection) drainSRTP() {
|
|
go func() {
|
|
for {
|
|
srtpSession, err := pc.dtlsTransport.getSRTPSession()
|
|
if err != nil {
|
|
pcLog.Warnf("drainSRTP failed to open SrtpSession: %v", err)
|
|
return
|
|
}
|
|
|
|
r, ssrc, err := srtpSession.AcceptStream()
|
|
if err != nil {
|
|
pcLog.Warnf("Failed to accept RTP %v \n", err)
|
|
return
|
|
}
|
|
|
|
go func() {
|
|
rtpBuf := make([]byte, receiveMTU)
|
|
rtpPacket := &rtp.Packet{}
|
|
|
|
for {
|
|
i, err := r.Read(rtpBuf)
|
|
if err != nil {
|
|
pcLog.Warnf("Failed to read, drainSRTP done for: %v %d \n", err, ssrc)
|
|
return
|
|
}
|
|
|
|
if err := rtpPacket.Unmarshal(rtpBuf[:i]); err != nil {
|
|
pcLog.Warnf("Failed to unmarshal RTP packet, discarding: %v \n", err)
|
|
continue
|
|
}
|
|
pcLog.Debugf("got RTP: %+v", rtpPacket)
|
|
}
|
|
}()
|
|
}
|
|
}()
|
|
|
|
for {
|
|
srtcpSession, err := pc.dtlsTransport.getSRTCPSession()
|
|
if err != nil {
|
|
pcLog.Warnf("drainSRTP failed to open SrtcpSession: %v", err)
|
|
return
|
|
}
|
|
|
|
r, ssrc, err := srtcpSession.AcceptStream()
|
|
if err != nil {
|
|
pcLog.Warnf("Failed to accept RTCP %v \n", err)
|
|
return
|
|
}
|
|
|
|
go func() {
|
|
rtcpBuf := make([]byte, receiveMTU)
|
|
for {
|
|
i, err := r.Read(rtcpBuf)
|
|
if err != nil {
|
|
pcLog.Warnf("Failed to read, drainSRTCP done for: %v %d \n", err, ssrc)
|
|
return
|
|
}
|
|
|
|
rtcpPacket, _, err := rtcp.Unmarshal(rtcpBuf[:i])
|
|
if err != nil {
|
|
pcLog.Warnf("Failed to unmarshal RTCP packet, discarding: %v \n", err)
|
|
continue
|
|
}
|
|
pcLog.Debugf("got RTCP: %+v", rtcpPacket)
|
|
}
|
|
}()
|
|
}
|
|
}
|
|
|
|
// RemoteDescription returns PendingRemoteDescription if it is not null and
|
|
// otherwise it returns CurrentRemoteDescription. This property is used to
|
|
// determine if setRemoteDescription has already been called.
|
|
// https://www.w3.org/TR/webrtc/#dom-rtcpeerconnection-remotedescription
|
|
func (pc *PeerConnection) RemoteDescription() *SessionDescription {
|
|
if pc.PendingRemoteDescription != nil {
|
|
return pc.PendingRemoteDescription
|
|
}
|
|
return pc.CurrentRemoteDescription
|
|
}
|
|
|
|
// AddICECandidate accepts an ICE candidate string and adds it
|
|
// to the existing set of candidates
|
|
func (pc *PeerConnection) AddICECandidate(s string) error {
|
|
// TODO: AddICECandidate should take ICECandidateInit
|
|
if pc.RemoteDescription() == nil {
|
|
return &rtcerr.InvalidStateError{Err: ErrNoRemoteDescription}
|
|
}
|
|
|
|
s = strings.TrimPrefix(s, "candidate:")
|
|
|
|
attribute := sdp.NewAttribute("candidate", s)
|
|
sdpCandidate, err := attribute.ToICECandidate()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
candidate, err := newICECandidateFromSDP(sdpCandidate)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return pc.iceTransport.AddRemoteCandidate(candidate)
|
|
}
|
|
|
|
// ------------------------------------------------------------------------
|
|
// --- FIXME - BELOW CODE NEEDS RE-ORGANIZATION - https://w3c.github.io/webrtc-pc/#rtp-media-api
|
|
// ------------------------------------------------------------------------
|
|
|
|
// GetSenders returns the RTPSender that are currently attached to this PeerConnection
|
|
func (pc *PeerConnection) GetSenders() []*RTPSender {
|
|
pc.mu.Lock()
|
|
defer pc.mu.Unlock()
|
|
|
|
result := make([]*RTPSender, len(pc.rtpTransceivers))
|
|
for i, tranceiver := range pc.rtpTransceivers {
|
|
if tranceiver.Sender != nil {
|
|
result[i] = tranceiver.Sender
|
|
}
|
|
}
|
|
return result
|
|
}
|
|
|
|
// GetReceivers returns the RTPReceivers that are currently attached to this RTCPeerConnection
|
|
func (pc *PeerConnection) GetReceivers() []*RTPReceiver {
|
|
pc.mu.Lock()
|
|
defer pc.mu.Unlock()
|
|
|
|
result := make([]*RTPReceiver, len(pc.rtpTransceivers))
|
|
for i, tranceiver := range pc.rtpTransceivers {
|
|
if tranceiver.Receiver != nil {
|
|
result[i] = tranceiver.Receiver
|
|
|
|
}
|
|
}
|
|
return result
|
|
}
|
|
|
|
// GetTransceivers returns the RTCRtpTransceiver that are currently attached to this RTCPeerConnection
|
|
func (pc *PeerConnection) GetTransceivers() []*RTPTransceiver {
|
|
pc.mu.Lock()
|
|
defer pc.mu.Unlock()
|
|
|
|
return pc.rtpTransceivers
|
|
}
|
|
|
|
// AddTrack adds a Track to the PeerConnection
|
|
func (pc *PeerConnection) AddTrack(track *Track) (*RTPSender, error) {
|
|
if pc.isClosed {
|
|
return nil, &rtcerr.InvalidStateError{Err: ErrConnectionClosed}
|
|
}
|
|
for _, transceiver := range pc.rtpTransceivers {
|
|
if transceiver.Sender.Track == nil {
|
|
continue
|
|
}
|
|
if track.ID == transceiver.Sender.Track.ID {
|
|
return nil, &rtcerr.InvalidAccessError{Err: ErrExistingTrack}
|
|
}
|
|
}
|
|
var transceiver *RTPTransceiver
|
|
for _, t := range pc.rtpTransceivers {
|
|
if !t.stopped &&
|
|
// t.Sender == nil && // TODO: check that the sender has never sent
|
|
t.Sender.Track == nil &&
|
|
t.Receiver.Track != nil &&
|
|
t.Receiver.Track.Kind == track.Kind {
|
|
transceiver = t
|
|
break
|
|
}
|
|
}
|
|
if transceiver != nil {
|
|
if err := transceiver.setSendingTrack(track); err != nil {
|
|
return nil, err
|
|
}
|
|
} else {
|
|
sender := NewRTPSender(track, pc.dtlsTransport)
|
|
transceiver = pc.newRTPTransceiver(
|
|
nil,
|
|
sender,
|
|
RTPTransceiverDirectionSendonly,
|
|
)
|
|
}
|
|
|
|
transceiver.Mid = track.Kind.String() // TODO: Mid generation
|
|
|
|
return transceiver.Sender, nil
|
|
}
|
|
|
|
// func (pc *PeerConnection) RemoveTrack() {
|
|
// panic("not implemented yet") // FIXME NOT-IMPLEMENTED nolint
|
|
// }
|
|
|
|
// func (pc *PeerConnection) AddTransceiver() RTPTransceiver {
|
|
// panic("not implemented yet") // FIXME NOT-IMPLEMENTED nolint
|
|
// }
|
|
|
|
// ------------------------------------------------------------------------
|
|
// --- FIXME - BELOW CODE NEEDS RE-ORGANIZATION - https://w3c.github.io/webrtc-pc/#peer-to-peer-data-api
|
|
// ------------------------------------------------------------------------
|
|
|
|
// CreateDataChannel creates a new DataChannel object with the given label
|
|
// and optional DataChannelInit used to configure properties of the
|
|
// underlying channel such as data reliability.
|
|
func (pc *PeerConnection) CreateDataChannel(label string, options *DataChannelInit) (*DataChannel, error) {
|
|
// https://w3c.github.io/webrtc-pc/#peer-to-peer-data-api (Step #2)
|
|
if pc.isClosed {
|
|
return nil, &rtcerr.InvalidStateError{Err: ErrConnectionClosed}
|
|
}
|
|
|
|
// TODO: Add additional options once implemented. DataChannelInit
|
|
// implements all options. DataChannelParameters implements the
|
|
// options that actually have an effect at this point.
|
|
params := &DataChannelParameters{
|
|
Label: label,
|
|
}
|
|
|
|
// https://w3c.github.io/webrtc-pc/#peer-to-peer-data-api (Step #19)
|
|
if options == nil ||
|
|
options.ID == nil {
|
|
var err error
|
|
if params.ID, err = pc.generateDataChannelID(true); err != nil {
|
|
return nil, err
|
|
}
|
|
} else {
|
|
params.ID = *options.ID
|
|
}
|
|
|
|
// TODO: Re-enable validation of the parameters once they are implemented.
|
|
/*
|
|
// https://w3c.github.io/webrtc-pc/#peer-to-peer-data-api (Step #3)
|
|
// Some variables defined explicitly despite their implicit zero values to
|
|
// allow better readability to understand what is happening. Additionally,
|
|
// some members are set to a non zero value default due to the default
|
|
// definitions in https://w3c.github.io/webrtc-pc/#dom-rtcdatachannelinit
|
|
// which are later overwriten by the options if any were specified.
|
|
channel := DataChannel{
|
|
rtcPeerConnection: pc,
|
|
// https://w3c.github.io/webrtc-pc/#peer-to-peer-data-api (Step #4)
|
|
Label: label,
|
|
Ordered: true,
|
|
MaxPacketLifeTime: nil,
|
|
MaxRetransmits: nil,
|
|
Protocol: "",
|
|
Negotiated: false,
|
|
ID: nil,
|
|
Priority: PriorityTypeLow,
|
|
// https://w3c.github.io/webrtc-pc/#dfn-create-an-rtcdatachannel (Step #3)
|
|
BufferedAmount: 0,
|
|
}
|
|
|
|
if options != nil {
|
|
// https://w3c.github.io/webrtc-pc/#peer-to-peer-data-api (Step #7)
|
|
if options.MaxPacketLifeTime != nil {
|
|
channel.MaxPacketLifeTime = options.MaxPacketLifeTime
|
|
}
|
|
|
|
// https://w3c.github.io/webrtc-pc/#peer-to-peer-data-api (Step #8)
|
|
if options.MaxRetransmits != nil {
|
|
channel.MaxRetransmits = options.MaxRetransmits
|
|
}
|
|
|
|
// https://w3c.github.io/webrtc-pc/#peer-to-peer-data-api (Step #9)
|
|
if options.Ordered != nil {
|
|
channel.Ordered = *options.Ordered
|
|
}
|
|
|
|
// https://w3c.github.io/webrtc-pc/#peer-to-peer-data-api (Step #10)
|
|
if options.Protocol != nil {
|
|
channel.Protocol = *options.Protocol
|
|
}
|
|
|
|
// https://w3c.github.io/webrtc-pc/#peer-to-peer-da ta-api (Step #12)
|
|
if options.Negotiated != nil {
|
|
channel.Negotiated = *options.Negotiated
|
|
}
|
|
|
|
// https://w3c.github.io/webrtc-pc/#peer-to-peer-data-api (Step #13)
|
|
if options.ID != nil && channel.Negotiated {
|
|
channel.ID = options.ID
|
|
}
|
|
|
|
// https://w3c.github.io/webrtc-pc/#peer-to-peer-data-api (Step #15)
|
|
if options.Priority != nil {
|
|
channel.Priority = *options.Priority
|
|
}
|
|
}
|
|
|
|
// https://w3c.github.io/webrtc-pc/#peer-to-peer-data-api (Step #11)
|
|
if len(channel.Protocol) > 65535 {
|
|
return nil, &rtcerr.TypeError{Err: ErrStringSizeLimit}
|
|
}
|
|
|
|
// https://w3c.github.io/webrtc-pc/#peer-to-peer-data-api (Step #14)
|
|
if channel.Negotiated && channel.ID == nil {
|
|
return nil, &rtcerr.TypeError{Err: ErrNegotiatedWithoutID}
|
|
}
|
|
|
|
// https://w3c.github.io/webrtc-pc/#peer-to-peer-data-api (Step #16)
|
|
if channel.MaxPacketLifeTime != nil && channel.MaxRetransmits != nil {
|
|
return nil, &rtcerr.TypeError{Err: ErrRetransmitsOrPacketLifeTime}
|
|
}
|
|
|
|
// FIXME https://w3c.github.io/webrtc-pc/#dom-rtcpeerconnection-createdatachannel (Step #17)
|
|
|
|
|
|
// // https://w3c.github.io/webrtc-pc/#peer-to-peer-data-api (Step #18)
|
|
if *channel.ID > 65534 {
|
|
return nil, &rtcerr.TypeError{Err: ErrMaxDataChannelID}
|
|
}
|
|
|
|
if pc.sctpTransport.State == SCTPTransportStateConnected &&
|
|
*channel.ID >= *pc.sctpTransport.MaxChannels {
|
|
return nil, &rtcerr.OperationError{Err: ErrMaxDataChannelID}
|
|
}
|
|
*/
|
|
|
|
d, err := pc.api.newDataChannel(params)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// Remember datachannel
|
|
pc.dataChannels[params.ID] = d
|
|
|
|
// Open if networking already started
|
|
if pc.sctpTransport != nil {
|
|
err = d.open(pc.sctpTransport)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
return d, nil
|
|
}
|
|
|
|
func (pc *PeerConnection) generateDataChannelID(client bool) (uint16, error) {
|
|
var id uint16
|
|
if !client {
|
|
id++
|
|
}
|
|
|
|
max := sctpMaxChannels
|
|
if pc.sctpTransport != nil {
|
|
max = *pc.sctpTransport.MaxChannels
|
|
}
|
|
|
|
for ; id < max-1; id += 2 {
|
|
_, ok := pc.dataChannels[id]
|
|
if !ok {
|
|
return id, nil
|
|
}
|
|
}
|
|
return 0, &rtcerr.OperationError{Err: ErrMaxDataChannelID}
|
|
}
|
|
|
|
// SetIdentityProvider is used to configure an identity provider to generate identity assertions
|
|
func (pc *PeerConnection) SetIdentityProvider(provider string) error {
|
|
return errors.Errorf("TODO SetIdentityProvider")
|
|
}
|
|
|
|
// SendRTCP sends a user provided RTCP packet to the connected peer
|
|
// If no peer is connected the packet is discarded
|
|
func (pc *PeerConnection) SendRTCP(pkt rtcp.Packet) error {
|
|
raw, err := pkt.Marshal()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
srtcpSession, err := pc.dtlsTransport.getSRTCPSession()
|
|
if err != nil {
|
|
return nil // TODO SendRTCP before would gracefully discard packets until ready
|
|
}
|
|
|
|
writeStream, err := srtcpSession.OpenWriteStream()
|
|
if err != nil {
|
|
return fmt.Errorf("SendRTCP failed to open WriteStream: %v", err)
|
|
}
|
|
|
|
if _, err := writeStream.Write(raw); err != nil {
|
|
return fmt.Errorf("SendRTCP failed to write: %v", err)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Close ends the PeerConnection
|
|
func (pc *PeerConnection) Close() error {
|
|
// https://www.w3.org/TR/webrtc/#dom-rtcpeerconnection-close (step #2)
|
|
if pc.isClosed {
|
|
return nil
|
|
}
|
|
|
|
// https://www.w3.org/TR/webrtc/#dom-rtcpeerconnection-close (step #3)
|
|
pc.isClosed = true
|
|
|
|
// https://www.w3.org/TR/webrtc/#dom-rtcpeerconnection-close (step #4)
|
|
pc.SignalingState = SignalingStateClosed
|
|
|
|
// https://www.w3.org/TR/webrtc/#dom-rtcpeerconnection-close (step #11)
|
|
// pc.ICEConnectionState = ICEConnectionStateClosed
|
|
pc.iceStateChange(ice.ConnectionStateClosed) // FIXME REMOVE
|
|
|
|
// https://www.w3.org/TR/webrtc/#dom-rtcpeerconnection-close (step #12)
|
|
pc.ConnectionState = PeerConnectionStateClosed
|
|
|
|
// Try closing everything and collect the errors
|
|
var closeErrs []error
|
|
|
|
// Shutdown strategy:
|
|
// 1. All Conn close by closing their underlying Conn.
|
|
// 2. A Mux stops this chain. It won't close the underlying
|
|
// Conn if one of the endpoints is closed down. To
|
|
// continue the chain the Mux has to be closed.
|
|
|
|
if err := pc.dtlsTransport.Stop(); err != nil {
|
|
closeErrs = append(closeErrs, err)
|
|
}
|
|
|
|
for _, t := range pc.rtpTransceivers {
|
|
if err := t.Stop(); err != nil {
|
|
closeErrs = append(closeErrs, err)
|
|
}
|
|
}
|
|
|
|
if pc.sctpTransport != nil {
|
|
if err := pc.sctpTransport.Stop(); err != nil {
|
|
closeErrs = append(closeErrs, err)
|
|
}
|
|
}
|
|
|
|
// TODO: Close DTLS?
|
|
|
|
if pc.iceTransport != nil {
|
|
if err := pc.iceTransport.Stop(); err != nil {
|
|
closeErrs = append(closeErrs, err)
|
|
}
|
|
}
|
|
|
|
// TODO: Figure out stopping ICE transport & Gatherer independently.
|
|
// pc.iceGatherer()
|
|
|
|
return flattenErrs(closeErrs)
|
|
}
|
|
|
|
func flattenErrs(errs []error) error {
|
|
var errstrings []string
|
|
|
|
for _, err := range errs {
|
|
if err != nil {
|
|
errstrings = append(errstrings, err.Error())
|
|
}
|
|
}
|
|
|
|
if len(errstrings) == 0 {
|
|
return nil
|
|
}
|
|
|
|
return fmt.Errorf(strings.Join(errstrings, "\n"))
|
|
}
|
|
|
|
func (pc *PeerConnection) iceStateChange(newState ice.ConnectionState) {
|
|
pc.mu.Lock()
|
|
pc.ICEConnectionState = newState
|
|
pc.mu.Unlock()
|
|
|
|
pc.onICEConnectionStateChange(newState)
|
|
}
|
|
|
|
func localDirection(weSend bool, peerDirection RTPTransceiverDirection) RTPTransceiverDirection {
|
|
theySend := (peerDirection == RTPTransceiverDirectionSendrecv || peerDirection == RTPTransceiverDirectionSendonly)
|
|
switch {
|
|
case weSend && theySend:
|
|
return RTPTransceiverDirectionSendrecv
|
|
case weSend && !theySend:
|
|
return RTPTransceiverDirectionSendonly
|
|
case !weSend && theySend:
|
|
return RTPTransceiverDirectionRecvonly
|
|
}
|
|
|
|
return RTPTransceiverDirectionInactive
|
|
}
|
|
|
|
func (pc *PeerConnection) addFingerprint(d *sdp.SessionDescription) {
|
|
// TODO: Handle multiple certificates
|
|
for _, fingerprint := range pc.configuration.Certificates[0].GetFingerprints() {
|
|
d.WithFingerprint(fingerprint.Algorithm, strings.ToUpper(fingerprint.Value))
|
|
}
|
|
}
|
|
|
|
func (pc *PeerConnection) addRTPMediaSection(d *sdp.SessionDescription, codecType RTPCodecType, midValue string, iceParams ICEParameters, peerDirection RTPTransceiverDirection, candidates []ICECandidate, dtlsRole sdp.ConnectionRole) bool {
|
|
if codecs := pc.api.mediaEngine.getCodecsByKind(codecType); len(codecs) == 0 {
|
|
return false
|
|
}
|
|
media := sdp.NewJSEPMediaDescription(codecType.String(), []string{}).
|
|
WithValueAttribute(sdp.AttrKeyConnectionSetup, dtlsRole.String()). // TODO: Support other connection types
|
|
WithValueAttribute(sdp.AttrKeyMID, midValue).
|
|
WithICECredentials(iceParams.UsernameFragment, iceParams.Password).
|
|
WithPropertyAttribute(sdp.AttrKeyRTCPMux). // TODO: support RTCP fallback
|
|
WithPropertyAttribute(sdp.AttrKeyRTCPRsize) // TODO: Support Reduced-Size RTCP?
|
|
|
|
for _, codec := range pc.api.mediaEngine.getCodecsByKind(codecType) {
|
|
media.WithCodec(codec.PayloadType, codec.Name, codec.ClockRate, codec.Channels, codec.SDPFmtpLine)
|
|
}
|
|
|
|
weSend := false
|
|
for _, transceiver := range pc.rtpTransceivers {
|
|
if transceiver.Sender == nil ||
|
|
transceiver.Sender.Track == nil ||
|
|
transceiver.Sender.Track.Kind != codecType {
|
|
continue
|
|
}
|
|
weSend = true
|
|
track := transceiver.Sender.Track
|
|
media = media.WithMediaSource(track.SSRC, track.Label /* cname */, track.Label /* streamLabel */, track.Label)
|
|
}
|
|
media = media.WithPropertyAttribute(localDirection(weSend, peerDirection).String())
|
|
|
|
for _, c := range candidates {
|
|
sdpCandidate := c.toSDP()
|
|
sdpCandidate.ExtensionAttributes = append(sdpCandidate.ExtensionAttributes, sdp.ICECandidateAttribute{Key: "generation", Value: "0"})
|
|
sdpCandidate.Component = 1
|
|
media.WithICECandidate(sdpCandidate)
|
|
sdpCandidate.Component = 2
|
|
media.WithICECandidate(sdpCandidate)
|
|
}
|
|
media.WithPropertyAttribute("end-of-candidates")
|
|
d.WithMedia(media)
|
|
return true
|
|
}
|
|
|
|
func (pc *PeerConnection) addDataMediaSection(d *sdp.SessionDescription, midValue string, iceParams ICEParameters, candidates []ICECandidate, dtlsRole sdp.ConnectionRole) {
|
|
media := (&sdp.MediaDescription{
|
|
MediaName: sdp.MediaName{
|
|
Media: "application",
|
|
Port: sdp.RangedPort{Value: 9},
|
|
Protos: []string{"DTLS", "SCTP"},
|
|
Formats: []string{"5000"},
|
|
},
|
|
ConnectionInformation: &sdp.ConnectionInformation{
|
|
NetworkType: "IN",
|
|
AddressType: "IP4",
|
|
Address: &sdp.Address{
|
|
IP: net.ParseIP("0.0.0.0"),
|
|
},
|
|
},
|
|
}).
|
|
WithValueAttribute(sdp.AttrKeyConnectionSetup, dtlsRole.String()). // TODO: Support other connection types
|
|
WithValueAttribute(sdp.AttrKeyMID, midValue).
|
|
WithPropertyAttribute(RTPTransceiverDirectionSendrecv.String()).
|
|
WithPropertyAttribute("sctpmap:5000 webrtc-datachannel 1024").
|
|
WithICECredentials(iceParams.UsernameFragment, iceParams.Password)
|
|
|
|
for _, c := range candidates {
|
|
sdpCandidate := c.toSDP()
|
|
sdpCandidate.ExtensionAttributes = append(sdpCandidate.ExtensionAttributes, sdp.ICECandidateAttribute{Key: "generation", Value: "0"})
|
|
sdpCandidate.Component = 1
|
|
media.WithICECandidate(sdpCandidate)
|
|
sdpCandidate.Component = 2
|
|
media.WithICECandidate(sdpCandidate)
|
|
}
|
|
media.WithPropertyAttribute("end-of-candidates")
|
|
|
|
d.WithMedia(media)
|
|
}
|
|
|
|
// NewRawRTPTrack Creates a new Track
|
|
//
|
|
// See NewSampleTrack for documentation
|
|
func (pc *PeerConnection) NewRawRTPTrack(payloadType uint8, ssrc uint32, id, label string) (*Track, error) {
|
|
codec, err := pc.api.mediaEngine.getCodec(payloadType)
|
|
if err != nil {
|
|
return nil, err
|
|
} else if codec.Payloader == nil {
|
|
return nil, errors.New("codec payloader not set")
|
|
}
|
|
|
|
return NewRawRTPTrack(payloadType, ssrc, id, label, codec)
|
|
}
|
|
|
|
// NewSampleTrack Creates a new Track
|
|
//
|
|
// See NewSampleTrack for documentation
|
|
func (pc *PeerConnection) NewSampleTrack(payloadType uint8, id, label string) (*Track, error) {
|
|
codec, err := pc.api.mediaEngine.getCodec(payloadType)
|
|
if err != nil {
|
|
return nil, err
|
|
} else if codec.Payloader == nil {
|
|
return nil, errors.New("codec payloader not set")
|
|
}
|
|
|
|
return NewSampleTrack(payloadType, id, label, codec)
|
|
}
|
|
|
|
// NewTrack is used to create a new Track
|
|
//
|
|
// Deprecated: Use NewSampleTrack() instead
|
|
func (pc *PeerConnection) NewTrack(payloadType uint8, id, label string) (*Track, error) {
|
|
return pc.NewSampleTrack(payloadType, id, label)
|
|
}
|
|
|
|
func (pc *PeerConnection) newRTPTransceiver(
|
|
receiver *RTPReceiver,
|
|
sender *RTPSender,
|
|
direction RTPTransceiverDirection,
|
|
) *RTPTransceiver {
|
|
|
|
t := &RTPTransceiver{
|
|
Receiver: receiver,
|
|
Sender: sender,
|
|
Direction: direction,
|
|
}
|
|
pc.mu.Lock()
|
|
defer pc.mu.Unlock()
|
|
pc.rtpTransceivers = append(pc.rtpTransceivers, t)
|
|
return t
|
|
}
|