This repository has been archived by the owner on Oct 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
main.go
465 lines (394 loc) · 10.6 KB
/
main.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
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
// Package cmd contains an entrypoint for running an ion-sfu instance.
package main
import (
"context"
"encoding/json"
"errors"
"flag"
"fmt"
"net/http"
"os"
// "github.com/davecgh/go-spew/spew"
"github.com/gorilla/websocket"
"github.com/pion/sdp/v2"
"github.com/pion/webrtc/v3"
"github.com/sourcegraph/jsonrpc2"
websocketjsonrpc2 "github.com/sourcegraph/jsonrpc2/websocket"
"github.com/spf13/viper"
sfu "github.com/pion/ion-sfu/pkg"
"github.com/pion/ion-sfu/pkg/log"
)
var (
conf = sfu.Config{}
file string
cert string
key string
addr string
)
const (
portRangeLimit = 100
)
func showHelp() {
fmt.Printf("Usage:%s {params}\n", os.Args[0])
fmt.Println(" -c {config file}")
fmt.Println(" -cert {cert file}")
fmt.Println(" -key {key file}")
fmt.Println(" -a {listen addr}")
fmt.Println(" -h (show help info)")
}
func load() bool {
_, err := os.Stat(file)
if err != nil {
return false
}
viper.SetConfigFile(file)
viper.SetConfigType("toml")
err = viper.ReadInConfig()
if err != nil {
fmt.Printf("config file %s read failed. %v\n", file, err)
return false
}
err = viper.GetViper().Unmarshal(&conf)
if err != nil {
fmt.Printf("sfu config file %s loaded failed. %v\n", file, err)
return false
}
if len(conf.WebRTC.ICEPortRange) > 2 {
fmt.Printf("config file %s loaded failed. range port must be [min,max]\n", file)
return false
}
if len(conf.WebRTC.ICEPortRange) != 0 && conf.WebRTC.ICEPortRange[1]-conf.WebRTC.ICEPortRange[0] < portRangeLimit {
fmt.Printf("config file %s loaded failed. range port must be [min, max] and max - min >= %d\n", file, portRangeLimit)
return false
}
fmt.Printf("config %s load ok!\n", file)
return true
}
func parse() bool {
flag.StringVar(&file, "c", "config.toml", "config file")
flag.StringVar(&addr, "a", ":7000", "address to use")
help := flag.Bool("h", false, "help info")
flag.Parse()
if !load() {
return false
}
if *help {
showHelp()
return false
}
return true
}
type contextKey struct {
name string
}
type peerContext struct {
peer *sfu.WebRTCTransport
}
var peerCtxKey = &contextKey{"peer"}
func forContext(ctx context.Context) *peerContext {
raw, _ := ctx.Value(peerCtxKey).(*peerContext)
return raw
}
// RPC defines the json-rpc
type RPC struct {
sfu *sfu.SFU
}
// NewRPC ...
func NewRPC() *RPC {
return &RPC{
sfu: sfu.NewSFU(conf),
}
}
// Join message sent when initializing a peer connection
type Join struct {
Sid string `json:"sid"`
Offer webrtc.SessionDescription `json:"offer"`
}
// Negotiation message sent when renegotiating
type Negotiation struct {
Desc webrtc.SessionDescription `json:"desc"`
}
// Trickle message sent when renegotiating
type Trickle struct {
Candidate webrtc.ICECandidateInit `json:"candidate"`
}
func dumpSDP(sdpStr string) error {
sdp := sdp.SessionDescription{}
if err := sdp.Unmarshal([]byte(sdpStr)); err != nil {
return err
}
for _, md := range sdp.MediaDescriptions {
for _, a := range md.Attributes {
if a.Key == "ssrc" {
// spew.Dump(a.Value)
log.Infof(a.Value)
}
}
}
return nil
}
// Handle RPC call
func (r *RPC) Handle(ctx context.Context, conn *jsonrpc2.Conn, req *jsonrpc2.Request) {
log.Infof("[main]Handling......")
p := forContext(ctx)
switch req.Method {
case "join":
if p.peer != nil {
log.Errorf("connect: peer already exists for connection")
_ = conn.ReplyWithError(ctx, req.ID, &jsonrpc2.Error{
Code: 500,
Message: fmt.Sprintf("%s", errors.New("peer already exists")),
})
break
}
var join Join
err := json.Unmarshal(*req.Params, &join)
if err != nil {
log.Errorf("connect: error parsing offer: %v", err)
_ = conn.ReplyWithError(ctx, req.ID, &jsonrpc2.Error{
Code: 500,
Message: fmt.Sprintf("%s", err),
})
break
}
me := sfu.MediaEngine{}
fmt.Println("<--------------------SDP offer received------------------")
// fmt.Printf("sid: %s\n", join.Sid)
// fmt.Println(join.Offer.SDP)
dumpSDP(join.Offer.SDP)
fmt.Println("<--------------------------------------------------")
err = me.PopulateFromSDP(join.Offer)
// spew.Dump(me)
if err != nil {
log.Errorf("connect: error creating peer: %v", err)
_ = conn.ReplyWithError(ctx, req.ID, &jsonrpc2.Error{
Code: 500,
Message: fmt.Sprintf("%s", err),
})
break
}
peer, err := r.sfu.NewWebRTCTransport(join.Sid, me)
if err != nil {
log.Errorf("connect: error creating peer: %v", err)
_ = conn.ReplyWithError(ctx, req.ID, &jsonrpc2.Error{
Code: 500,
Message: fmt.Sprintf("%s", err),
})
break
}
log.Infof("[main]peer %s join session %s", peer.ID(), join.Sid)
err = peer.SetRemoteDescription(join.Offer)
if err != nil {
log.Errorf("Offer error: %v", err)
_ = conn.ReplyWithError(ctx, req.ID, &jsonrpc2.Error{
Code: 500,
Message: fmt.Sprintf("%s", err),
})
break
}
answer, err := peer.CreateAnswer()
if err != nil {
log.Errorf("Offer error: answer=%v err=%v", answer, err)
_ = conn.ReplyWithError(ctx, req.ID, &jsonrpc2.Error{
Code: 500,
Message: fmt.Sprintf("%s", err),
})
break
}
fmt.Println("--------------------SDP send 1--------------------->")
// spew.Dump(answer.SDP)
// fmt.Println(answer.SDP)
dumpSDP(answer.SDP)
fmt.Println("------------------------------------------------->")
err = peer.SetLocalDescription(answer)
if err != nil {
log.Errorf("Offer error: answer=%v err=%v", answer, err)
_ = conn.ReplyWithError(ctx, req.ID, &jsonrpc2.Error{
Code: 500,
Message: fmt.Sprintf("%s", err),
})
break
}
// Notify user of trickle candidates
peer.OnICECandidate(func(c *webrtc.ICECandidate) {
log.Debugf("[rtc]OnICECandidate")
if c == nil {
// Gathering done
return
}
if err := conn.Notify(ctx, "trickle", c.ToJSON()); err != nil {
log.Errorf("error sending trickle %s", err)
}
})
peer.OnNegotiationNeeded(func() {
log.Debugf("[rtc]OnNegotiationNeeded")
offer, err := p.peer.CreateOffer()
if err != nil {
log.Errorf("CreateOffer error: %v", err)
return
}
log.Debugf("------------New offer SDP-from sfu send to client---------->")
dumpSDP(offer.SDP)
log.Debugf("----------------------------------------------------------->")
err = p.peer.SetLocalDescription(offer)
if err != nil {
log.Errorf("SetLocalDescription error: %v", err)
return
}
if err := conn.Notify(ctx, "offer", offer); err != nil {
log.Errorf("error sending offer %s", err)
}
})
p.peer = peer
fmt.Println("--------------------SDP send--------------------->")
// spew.Dump(answer.SDP)
// fmt.Println(answer.SDP)
dumpSDP(answer.SDP)
fmt.Println("------------------------------------------------->")
_ = conn.Reply(ctx, req.ID, answer)
case "offer":
if p.peer == nil {
log.Errorf("connect: no peer exists for connection")
_ = conn.ReplyWithError(ctx, req.ID, &jsonrpc2.Error{
Code: 500,
Message: fmt.Sprintf("%s", errors.New("no peer exists")),
})
break
}
log.Infof("peer %s offer", p.peer.ID())
var negotiation Negotiation
err := json.Unmarshal(*req.Params, &negotiation)
if err != nil {
log.Errorf("connect: error parsing offer: %v", err)
_ = conn.ReplyWithError(ctx, req.ID, &jsonrpc2.Error{
Code: 500,
Message: fmt.Sprintf("%s", err),
})
break
}
// Peer exists, renegotiating existing peer
err = p.peer.SetRemoteDescription(negotiation.Desc)
if err != nil {
log.Errorf("Offer error: %v", err)
_ = conn.ReplyWithError(ctx, req.ID, &jsonrpc2.Error{
Code: 500,
Message: fmt.Sprintf("%s", err),
})
break
}
answer, err := p.peer.CreateAnswer()
if err != nil {
log.Errorf("Offer error: answer=%v err=%v", answer, err)
_ = conn.ReplyWithError(ctx, req.ID, &jsonrpc2.Error{
Code: 500,
Message: fmt.Sprintf("%s", err),
})
break
}
err = p.peer.SetLocalDescription(answer)
if err != nil {
log.Errorf("Offer error: answer=%v err=%v", answer, err)
_ = conn.ReplyWithError(ctx, req.ID, &jsonrpc2.Error{
Code: 500,
Message: fmt.Sprintf("%s", err),
})
break
}
_ = conn.Reply(ctx, req.ID, answer)
case "answer":
if p.peer == nil {
log.Errorf("connect: no peer exists for connection")
_ = conn.ReplyWithError(ctx, req.ID, &jsonrpc2.Error{
Code: 500,
Message: fmt.Sprintf("%s", errors.New("no peer exists")),
})
break
}
log.Infof("[ws]<-- peer %s answer", p.peer.ID())
var negotiation Negotiation
err := json.Unmarshal(*req.Params, &negotiation)
if err != nil {
log.Errorf("connect: error parsing answer: %v", err)
_ = conn.ReplyWithError(ctx, req.ID, &jsonrpc2.Error{
Code: 500,
Message: fmt.Sprintf("%s", err),
})
break
}
err = p.peer.SetRemoteDescription(negotiation.Desc)
dumpSDP(negotiation.Desc.SDP)
if err != nil {
log.Errorf("error setting remote description %s", err)
}
case "trickle":
log.Debugf("trickle")
if p.peer == nil {
log.Errorf("connect: no peer exists for connection")
_ = conn.ReplyWithError(ctx, req.ID, &jsonrpc2.Error{
Code: 500,
Message: fmt.Sprintf("%s", errors.New("no peer exists")),
})
break
}
log.Infof("peer %s trickle", p.peer.ID())
var trickle Trickle
err := json.Unmarshal(*req.Params, &trickle)
if err != nil {
log.Errorf("connect: error parsing candidate: %v", err)
_ = conn.ReplyWithError(ctx, req.ID, &jsonrpc2.Error{
Code: 500,
Message: fmt.Sprintf("%s", err),
})
break
}
err = p.peer.AddICECandidate(trickle.Candidate)
if err != nil {
log.Errorf("error setting ice candidate %s", err)
}
}
}
func main() {
if _, err := os.Stat("cert.pem"); os.IsNotExist(err) {
fmt.Println("Generating perm")
genPem()
}
if _, err := os.Stat("key.pem"); os.IsNotExist(err) {
fmt.Println("Generating perm")
genPem()
}
if !parse() {
showHelp()
os.Exit(-1)
}
log.Infof("--- Starting SFU Node ---")
rpc := NewRPC()
upgrader := websocket.Upgrader{
CheckOrigin: func(r *http.Request) bool {
return true
},
ReadBufferSize: 1024,
WriteBufferSize: 1024,
}
http.Handle("/ws", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
c, err := upgrader.Upgrade(w, r, nil)
if err != nil {
panic(err)
}
defer c.Close()
p := &peerContext{}
ctx := context.WithValue(r.Context(), peerCtxKey, p)
jc := jsonrpc2.NewConn(ctx, websocketjsonrpc2.NewObjectStream(c), rpc)
<-jc.DisconnectNotify()
if p.peer != nil {
log.Infof("Closing peer")
p.peer.Close()
}
}))
http.Handle("/", http.FileServer(http.Dir(".")))
var err error
log.Infof("Listening at https://[%s]", addr)
err = http.ListenAndServeTLS(addr, "cert.pem", "key.pem", nil)
if err != nil {
panic(err)
}
}