forked from pion/webrtc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dtlstransport.go
339 lines (282 loc) · 8.34 KB
/
dtlstransport.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
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
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
// +build !js
package webrtc
import (
"crypto/ecdsa"
"crypto/elliptic"
"crypto/rand"
"crypto/x509"
"errors"
"fmt"
"strings"
"sync"
"time"
"github.com/pion/dtls"
"github.com/pion/srtp"
"github.com/pion/webrtc/v2/internal/mux"
"github.com/pion/webrtc/v2/internal/util"
"github.com/pion/webrtc/v2/pkg/rtcerr"
)
// DTLSTransport allows an application access to information about the DTLS
// transport over which RTP and RTCP packets are sent and received by
// RTPSender and RTPReceiver, as well other data such as SCTP packets sent
// and received by data channels.
type DTLSTransport struct {
lock sync.RWMutex
iceTransport *ICETransport
certificates []Certificate
remoteParameters DTLSParameters
remoteCertificate []byte
state DTLSTransportState
onStateChangeHdlr func(DTLSTransportState)
conn *dtls.Conn
srtpSession *srtp.SessionSRTP
srtcpSession *srtp.SessionSRTCP
srtpEndpoint *mux.Endpoint
srtcpEndpoint *mux.Endpoint
dtlsMatcher mux.MatchFunc
api *API
}
// NewDTLSTransport creates a new DTLSTransport.
// This constructor is part of the ORTC API. It is not
// meant to be used together with the basic WebRTC API.
func (api *API) NewDTLSTransport(transport *ICETransport, certificates []Certificate) (*DTLSTransport, error) {
t := &DTLSTransport{
iceTransport: transport,
api: api,
state: DTLSTransportStateNew,
dtlsMatcher: mux.MatchDTLS,
}
if len(certificates) > 0 {
now := time.Now()
for _, x509Cert := range certificates {
if !x509Cert.Expires().IsZero() && now.After(x509Cert.Expires()) {
return nil, &rtcerr.InvalidAccessError{Err: ErrCertificateExpired}
}
t.certificates = append(t.certificates, x509Cert)
}
} else {
sk, err := ecdsa.GenerateKey(elliptic.P256(), rand.Reader)
if err != nil {
return nil, &rtcerr.UnknownError{Err: err}
}
certificate, err := GenerateCertificate(sk)
if err != nil {
return nil, err
}
t.certificates = []Certificate{*certificate}
}
return t, nil
}
// ICETransport returns the currently-configured *ICETransport or nil
// if one has not been configured
func (t *DTLSTransport) ICETransport() *ICETransport {
t.lock.RLock()
defer t.lock.RUnlock()
return t.iceTransport
}
// onStateChange requires the caller holds the lock
func (t *DTLSTransport) onStateChange(state DTLSTransportState) {
t.state = state
hdlr := t.onStateChangeHdlr
if hdlr != nil {
hdlr(state)
}
}
// OnStateChange sets a handler that is fired when the DTLS
// connection state changes.
func (t *DTLSTransport) OnStateChange(f func(DTLSTransportState)) {
t.lock.Lock()
defer t.lock.Unlock()
t.onStateChangeHdlr = f
}
// State returns the current dtls transport state.
func (t *DTLSTransport) State() DTLSTransportState {
t.lock.RLock()
defer t.lock.RUnlock()
return t.state
}
// GetLocalParameters returns the DTLS parameters of the local DTLSTransport upon construction.
func (t *DTLSTransport) GetLocalParameters() (DTLSParameters, error) {
fingerprints := []DTLSFingerprint{}
for _, c := range t.certificates {
prints, err := c.GetFingerprints()
if err != nil {
return DTLSParameters{}, err
}
fingerprints = append(fingerprints, prints...)
}
return DTLSParameters{
Role: DTLSRoleAuto, // always returns the default role
Fingerprints: fingerprints,
}, nil
}
// GetRemoteCertificate returns the certificate chain in use by the remote side
// returns an empty list prior to selection of the remote certificate
func (t *DTLSTransport) GetRemoteCertificate() []byte {
t.lock.RLock()
defer t.lock.RUnlock()
return t.remoteCertificate
}
func (t *DTLSTransport) startSRTP() error {
t.lock.Lock()
defer t.lock.Unlock()
if t.srtpSession != nil && t.srtcpSession != nil {
return nil
} else if t.conn == nil {
return fmt.Errorf("the DTLS transport has not started yet")
}
srtpConfig := &srtp.Config{
Profile: srtp.ProtectionProfileAes128CmHmacSha1_80,
LoggerFactory: t.api.settingEngine.LoggerFactory,
}
err := srtpConfig.ExtractSessionKeysFromDTLS(t.conn, t.isClient())
if err != nil {
return fmt.Errorf("failed to extract sctp session keys: %v", err)
}
srtpSession, err := srtp.NewSessionSRTP(t.srtpEndpoint, srtpConfig)
if err != nil {
return fmt.Errorf("failed to start srtp: %v", err)
}
srtcpSession, err := srtp.NewSessionSRTCP(t.srtcpEndpoint, srtpConfig)
if err != nil {
return fmt.Errorf("failed to start srtp: %v", err)
}
t.srtpSession = srtpSession
t.srtcpSession = srtcpSession
return nil
}
func (t *DTLSTransport) getSRTPSession() (*srtp.SessionSRTP, error) {
t.lock.RLock()
if t.srtpSession != nil {
t.lock.RUnlock()
return t.srtpSession, nil
}
t.lock.RUnlock()
if err := t.startSRTP(); err != nil {
return nil, err
}
return t.srtpSession, nil
}
func (t *DTLSTransport) getSRTCPSession() (*srtp.SessionSRTCP, error) {
t.lock.RLock()
if t.srtcpSession != nil {
t.lock.RUnlock()
return t.srtcpSession, nil
}
t.lock.RUnlock()
if err := t.startSRTP(); err != nil {
return nil, err
}
return t.srtcpSession, nil
}
func (t *DTLSTransport) isClient() bool {
isClient := true
switch t.remoteParameters.Role {
case DTLSRoleClient:
isClient = true
case DTLSRoleServer:
isClient = false
default:
if t.iceTransport.Role() == ICERoleControlling {
isClient = false
}
}
return isClient
}
// Start DTLS transport negotiation with the parameters of the remote DTLS transport
func (t *DTLSTransport) Start(remoteParameters DTLSParameters) error {
t.lock.Lock()
defer t.lock.Unlock()
if err := t.ensureICEConn(); err != nil {
return err
}
if t.state != DTLSTransportStateNew {
return &rtcerr.InvalidStateError{Err: fmt.Errorf("attempted to start DTLSTransport that is not in new state: %s", t.state)}
}
dtlsEndpoint := t.iceTransport.NewEndpoint(mux.MatchDTLS)
t.srtpEndpoint = t.iceTransport.NewEndpoint(mux.MatchSRTP)
t.srtcpEndpoint = t.iceTransport.NewEndpoint(mux.MatchSRTCP)
// pion/webrtc#753
cert := t.certificates[0]
dtlsCofig := &dtls.Config{
Certificate: cert.x509Cert,
PrivateKey: cert.privateKey,
SRTPProtectionProfiles: []dtls.SRTPProtectionProfile{dtls.SRTP_AES128_CM_HMAC_SHA1_80},
ClientAuth: dtls.RequireAnyClientCert,
LoggerFactory: t.api.settingEngine.LoggerFactory,
InsecureSkipVerify: true,
}
t.onStateChange(DTLSTransportStateConnecting)
if t.isClient() {
// Assumes the peer offered to be passive and we accepted.
dtlsConn, err := dtls.Client(dtlsEndpoint, dtlsCofig)
if err != nil {
t.onStateChange(DTLSTransportStateFailed)
return err
}
t.conn = dtlsConn
} else {
// Assumes we offer to be passive and this is accepted.
dtlsConn, err := dtls.Server(dtlsEndpoint, dtlsCofig)
if err != nil {
t.onStateChange(DTLSTransportStateFailed)
return err
}
t.conn = dtlsConn
}
t.onStateChange(DTLSTransportStateConnected)
// Check the fingerprint if a certificate was exchanged
remoteCert := t.conn.RemoteCertificate()
if remoteCert == nil {
return fmt.Errorf("peer didn't provide certificate via DTLS")
}
t.remoteCertificate = remoteCert.Raw
return t.validateFingerPrint(remoteParameters, remoteCert)
}
// Stop stops and closes the DTLSTransport object.
func (t *DTLSTransport) Stop() error {
t.lock.Lock()
defer t.lock.Unlock()
// Try closing everything and collect the errors
var closeErrs []error
if t.srtpSession != nil {
if err := t.srtpSession.Close(); err != nil {
closeErrs = append(closeErrs, err)
}
}
if t.srtcpSession != nil {
if err := t.srtcpSession.Close(); err != nil {
closeErrs = append(closeErrs, err)
}
}
if t.conn != nil {
if err := t.conn.Close(); err != nil {
closeErrs = append(closeErrs, err)
}
}
t.onStateChange(DTLSTransportStateClosed)
return util.FlattenErrs(closeErrs)
}
func (t *DTLSTransport) validateFingerPrint(remoteParameters DTLSParameters, remoteCert *x509.Certificate) error {
for _, fp := range remoteParameters.Fingerprints {
hashAlgo, err := dtls.HashAlgorithmString(fp.Algorithm)
if err != nil {
return err
}
remoteValue, err := dtls.Fingerprint(remoteCert, hashAlgo)
if err != nil {
return err
}
if strings.EqualFold(remoteValue, fp.Value) {
return nil
}
}
return errors.New("no matching fingerprint")
}
func (t *DTLSTransport) ensureICEConn() error {
if t.iceTransport == nil ||
t.iceTransport.State() == ICETransportStateNew {
return errors.New("ICE connection not started")
}
return nil
}