This repository has been archived by the owner on Nov 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
conn.go
431 lines (352 loc) · 8.56 KB
/
conn.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
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
package libp2pwebrtcdirect
import (
"context"
"errors"
"fmt"
"io"
"math"
"net"
"net/http"
"sync"
"time"
ic "github.com/libp2p/go-libp2p-core/crypto"
smux "github.com/libp2p/go-libp2p-core/mux"
peer "github.com/libp2p/go-libp2p-core/peer"
tpt "github.com/libp2p/go-libp2p-core/transport"
ma "github.com/multiformats/go-multiaddr"
manet "github.com/multiformats/go-multiaddr/net"
"github.com/pion/datachannel"
"github.com/pion/webrtc/v3"
)
type connConfig struct {
transport *Transport
maAddr ma.Multiaddr
addr net.Addr
isServer bool
remoteID peer.ID
}
func newConnConfig(transport *Transport, maAddr ma.Multiaddr, isServer bool) (*connConfig, error) {
httpMa := maAddr.Decapsulate(webrtcma)
tcpMa := httpMa.Decapsulate(httpma)
addr, err := manet.ToNetAddr(tcpMa)
if err != nil {
return nil, fmt.Errorf("failed to get net addr: %v", err)
}
return &connConfig{
transport: transport,
maAddr: maAddr,
addr: addr,
isServer: isServer,
}, nil
}
// Conn is a stream-multiplexing connection to a remote peer.
type Conn struct {
config *connConfig
peerConnection *webrtc.PeerConnection
initChannel datachannel.ReadWriteCloser
lock sync.RWMutex
accept chan chan detachResult
isMuxed bool
muxedConn smux.MuxedConn
}
func newConn(config *connConfig, pc *webrtc.PeerConnection, initChannel datachannel.ReadWriteCloser) *Conn {
conn := &Conn{
config: config,
peerConnection: pc,
initChannel: initChannel,
accept: make(chan chan detachResult),
isMuxed: config.transport.muxer != nil,
}
pc.OnDataChannel(func(dc *webrtc.DataChannel) {
// We have to detach in OnDataChannel
detachRes := detachChannel(dc)
conn.accept <- detachRes
})
return conn
}
func dial(ctx context.Context, config *connConfig) (*Conn, error) {
api := config.transport.api
pc, err := api.NewPeerConnection(config.transport.webrtcOptions)
if err != nil {
return nil, err
}
dc, err := pc.CreateDataChannel("data", nil)
if err != nil {
return nil, err
}
detachRes := detachChannel(dc)
offer, err := pc.CreateOffer(nil)
if err != nil {
return nil, err
}
// Complete ICE Gathering for single-shot signaling.
gatherComplete := webrtc.GatheringCompletePromise(pc)
err = pc.SetLocalDescription(offer)
if err != nil {
return nil, err
}
<-gatherComplete
offerEnc, err := encodeSignal(*pc.LocalDescription())
if err != nil {
return nil, err
}
req, err := http.NewRequest("GET", "http://"+config.addr.String()+"/?signal="+offerEnc, nil)
if err != nil {
return nil, err
}
req = req.WithContext(ctx)
var client = &http.Client{}
resp, err := client.Do(req)
if err != nil {
return nil, err
}
defer resp.Body.Close()
answerEnc, err := io.ReadAll(resp.Body)
if err != nil && err != io.EOF {
return nil, err
}
answer, err := decodeSignal(string(answerEnc))
if err != nil {
return nil, err
}
if err := pc.SetRemoteDescription(answer); err != nil {
return nil, err
}
select {
case res := <-detachRes:
if res.err != nil {
return nil, res.err
}
return newConn(config, pc, res.dc), nil
case <-ctx.Done():
return newConn(config, pc, nil), ctx.Err()
}
}
type detachResult struct {
dc datachannel.ReadWriteCloser
err error
}
func detachChannel(dc *webrtc.DataChannel) chan detachResult {
onOpenRes := make(chan detachResult)
dc.OnOpen(func() {
// Detach the data channel
raw, err := dc.Detach()
onOpenRes <- detachResult{raw, err}
})
return onOpenRes
}
// Close closes the stream muxer and the the underlying net.Conn.
func (c *Conn) Close() error {
c.lock.Lock()
defer c.lock.Unlock()
var err error
if c.peerConnection != nil {
err = c.peerConnection.Close()
}
c.peerConnection = nil
close(c.accept)
return err
}
// IsClosed returns whether a connection is fully closed, so it can
// be garbage collected.
func (c *Conn) IsClosed() bool {
c.lock.RLock()
pc := c.peerConnection
c.lock.RUnlock()
return pc == nil
}
// OpenStream creates a new stream.
func (c *Conn) OpenStream(ctx context.Context) (smux.MuxedStream, error) {
muxed, err := c.getMuxed()
if err != nil {
return nil, err
}
if muxed != nil {
return muxed.OpenStream(ctx)
}
rawDC := c.checkInitChannel()
if rawDC == nil {
pc, err := c.getPC()
if err != nil {
return nil, err
}
dc, err := pc.CreateDataChannel("data", nil)
if err != nil {
return nil, err
}
detachRes := detachChannel(dc)
res := <-detachRes
if res.err != nil {
return nil, res.err
}
rawDC = res.dc
}
return newStream(rawDC), nil
}
func (c *Conn) getPC() (*webrtc.PeerConnection, error) {
c.lock.RLock()
pc := c.peerConnection
c.lock.RUnlock()
if pc == nil {
return nil, errors.New("Conn closed")
}
return pc, nil
}
func (c *Conn) getMuxed() (smux.MuxedConn, error) {
c.lock.Lock()
defer c.lock.Unlock()
if !c.isMuxed {
return nil, nil
}
if c.muxedConn != nil {
return c.muxedConn, nil
}
rawDC := c.initChannel
if rawDC == nil {
var err error
rawDC, err = c.awaitAccept()
if err != nil {
return nil, err
}
}
err := c.useMuxer(&dcWrapper{channel: rawDC, addr: c.config.addr, buf: make([]byte, dcWrapperBufSize)}, c.config.transport.muxer)
if err != nil {
return nil, err
}
return c.muxedConn, nil
}
// Note: caller should hold the conn lock.
func (c *Conn) useMuxer(conn net.Conn, muxer smux.Multiplexer) error {
muxed, err := muxer.NewConn(conn, c.config.isServer)
if err != nil {
return err
}
c.muxedConn = muxed
return nil
}
func (c *Conn) checkInitChannel() datachannel.ReadWriteCloser {
c.lock.Lock()
defer c.lock.Unlock()
// Since a WebRTC offer can't be empty the offering side will have
// an initial data channel opened. We return it here, the first time
// OpenStream is called.
if c.initChannel != nil {
ch := c.initChannel
c.initChannel = nil
return ch
}
return nil
}
// AcceptStream accepts a stream opened by the other side.
func (c *Conn) AcceptStream() (smux.MuxedStream, error) {
muxed, err := c.getMuxed()
if err != nil {
return nil, err
}
if muxed != nil {
return muxed.AcceptStream()
}
rawDC := c.checkInitChannel()
if rawDC == nil {
rawDC, err = c.awaitAccept()
if err != nil {
return nil, err
}
}
return newStream(rawDC), nil
}
func (c *Conn) awaitAccept() (datachannel.ReadWriteCloser, error) {
detachRes, ok := <-c.accept
if !ok {
return nil, errors.New("Conn closed")
}
res := <-detachRes
return res.dc, res.err
}
// LocalPeer returns our peer ID
func (c *Conn) LocalPeer() peer.ID {
// TODO: Base on WebRTC security?
return c.config.transport.localID
}
// LocalPrivateKey returns our private key
func (c *Conn) LocalPrivateKey() ic.PrivKey {
// TODO: Base on WebRTC security?
return nil
}
// RemotePeer returns the peer ID of the remote peer.
func (c *Conn) RemotePeer() peer.ID {
// TODO: Base on WebRTC security?
return c.config.remoteID
}
// RemotePublicKey returns the public key of the remote peer.
func (c *Conn) RemotePublicKey() ic.PubKey {
// TODO: Base on WebRTC security?
return nil
}
// LocalMultiaddr returns the local Multiaddr associated
// with this connection
func (c *Conn) LocalMultiaddr() ma.Multiaddr {
return c.config.maAddr
}
// RemoteMultiaddr returns the remote Multiaddr associated
// with this connection
func (c *Conn) RemoteMultiaddr() ma.Multiaddr {
return c.config.maAddr
}
// Transport returns the transport to which this connection belongs.
func (c *Conn) Transport() tpt.Transport {
return c.config.transport
}
// Limit message size until we have a better
// packetizing strategy.
const dcWrapperBufSize = math.MaxUint16
// dcWrapper wraps datachannel.ReadWriteCloser to form a net.Conn
type dcWrapper struct {
channel datachannel.ReadWriteCloser
addr net.Addr
buf []byte
bufStart int
bufEnd int
}
func (w *dcWrapper) Read(p []byte) (int, error) {
var err error
if w.bufEnd == 0 {
n := 0
n, err = w.channel.Read(w.buf)
w.bufEnd = n
}
n := 0
if w.bufEnd-w.bufStart > 0 {
n = copy(p, w.buf[w.bufStart:w.bufEnd])
w.bufStart += n
if w.bufStart >= w.bufEnd {
w.bufStart = 0
w.bufEnd = 0
}
}
return n, err
}
func (w *dcWrapper) Write(p []byte) (n int, err error) {
if len(p) > dcWrapperBufSize {
return w.channel.Write(p[:dcWrapperBufSize])
}
return w.channel.Write(p)
}
func (w *dcWrapper) Close() error {
return w.channel.Close()
}
func (w *dcWrapper) LocalAddr() net.Addr {
return w.addr
}
func (w *dcWrapper) RemoteAddr() net.Addr {
return w.addr
}
func (w *dcWrapper) SetDeadline(t time.Time) error {
return nil
}
func (w *dcWrapper) SetReadDeadline(t time.Time) error {
return nil
}
func (w *dcWrapper) SetWriteDeadline(t time.Time) error {
return nil
}