Authenticate streams

This commit is contained in:
Yohann D'ANELLO 2020-10-01 23:31:14 +02:00
parent b5338e06bc
commit 0371d3dc7c
4 changed files with 42 additions and 12 deletions

View File

@ -96,7 +96,7 @@ func main() {
// Start stream, web and monitoring server, and stream forwarding // Start stream, web and monitoring server, and stream forwarding
go forwarding.Serve(cfg.Forwarding, forwardingChannel) go forwarding.Serve(cfg.Forwarding, forwardingChannel)
go monitoring.Serve(&cfg.Monitoring) go monitoring.Serve(&cfg.Monitoring)
go srt.Serve(&cfg.Srt, forwardingChannel) go srt.Serve(&cfg.Srt, authBackend, forwardingChannel)
go web.Serve(remoteSdpChan, localSdpChan, &cfg.Web) go web.Serve(remoteSdpChan, localSdpChan, &cfg.Web)
go webrtc.Serve(remoteSdpChan, localSdpChan, &cfg.WebRTC) go webrtc.Serve(remoteSdpChan, localSdpChan, &cfg.WebRTC)

View File

@ -59,11 +59,11 @@ func TestForwardStream(t *testing.T) {
go Serve(forwardingList, forwardingChannel) go Serve(forwardingList, forwardingChannel)
// Serve HTTP Server // Serve HTTP Server
go srt.Serve(&srt.Options{ListenAddress: ":9712", MaxClients: 2}, forwardingChannel) go srt.Serve(&srt.Options{ListenAddress: ":9712", MaxClients: 2}, nil, forwardingChannel)
ffmpeg := exec.Command("ffmpeg", ffmpeg := exec.Command("ffmpeg",
"-re", "-f", "lavfi", "-i", "testsrc=size=640x480:rate=10", "-re", "-f", "lavfi", "-i", "testsrc=size=640x480:rate=10",
"-f", "flv", "srt://127.0.0.1:9712") "-f", "flv", "srt://127.0.0.1:9712?streamid=demo|")
output, err := ffmpeg.StdoutPipe() output, err := ffmpeg.StdoutPipe()
errOutput, err := ffmpeg.StderrPipe() errOutput, err := ffmpeg.StderrPipe()

View File

@ -1,9 +1,12 @@
package srt package srt
import ( import (
"gitlab.crans.org/nounous/ghostream/auth"
"gitlab.crans.org/nounous/ghostream/auth/bypass"
"log" "log"
"net" "net"
"strconv" "strconv"
"strings"
"github.com/haivision/srtgo" "github.com/haivision/srtgo"
) )
@ -38,14 +41,18 @@ func splitHostPort(hostport string) (string, uint16) {
} }
// Serve SRT server // Serve SRT server
func Serve(cfg *Options, forwardingChannel chan Packet) { func Serve(cfg *Options, authBackend auth.Backend, forwardingChannel chan Packet) {
if authBackend == nil {
authBackend, _ = bypass.New()
}
options := make(map[string]string) options := make(map[string]string)
options["transtype"] = "live" options["transtype"] = "live"
// Start SRT in listen mode // Start SRT in listen mode
log.Printf("SRT server listening on %s", cfg.ListenAddress) log.Printf("SRT server listening on %s", cfg.ListenAddress)
host, port := splitHostPort(cfg.ListenAddress) host, port := splitHostPort(cfg.ListenAddress)
sck := srtgo.NewSrtSocket(host, uint16(port), options) sck := srtgo.NewSrtSocket(host, port, options)
if err := sck.Listen(cfg.MaxClients); err != nil { if err := sck.Listen(cfg.MaxClients); err != nil {
log.Fatal("Unable to listen to SRT clients:", err) log.Fatal("Unable to listen to SRT clients:", err)
} }
@ -61,12 +68,34 @@ func Serve(cfg *Options, forwardingChannel chan Packet) {
break // FIXME: should not break here break // FIXME: should not break here
} }
streamId, err := s.GetSockOptString(46) // SRTO_STREAMID
if err != nil {
log.Println("Error while fetching stream key:", err)
s.Close()
continue
}
if !strings.Contains(streamId, "|") {
log.Printf("Warning: stream id must be at the format streamId|password. Input: %s", streamId)
s.Close()
continue
}
splittedStreamId := strings.SplitN(streamId, "|", 2)
streamName, password := splittedStreamId[0], splittedStreamId[1]
loggedIn, err := authBackend.Login(streamName, password)
if !loggedIn {
log.Printf("Invalid credentials for stream %s.", streamName)
s.Close()
continue
}
log.Printf("Starting stream %s...", streamName)
// Create a new buffer // Create a new buffer
buff := make([]byte, 2048) buff := make([]byte, 2048)
// Setup stream forwarding // Setup stream forwarding
// FIXME: demo should be replaced by stream name forwardingChannel <- Packet{StreamName: streamName, PacketType: "register", Data: nil}
forwardingChannel <- Packet{StreamName: "demo", PacketType: "register", Data: nil}
// Read RTP packets forever and send them to the WebRTC Client // Read RTP packets forever and send them to the WebRTC Client
for { for {
@ -81,20 +110,21 @@ func Serve(cfg *Options, forwardingChannel chan Packet) {
log.Printf("Received no bytes, stopping stream.") log.Printf("Received no bytes, stopping stream.")
break break
} }
// log.Printf("Received %d bytes", n) // log.Printf("Received %d bytes", n)
// Send raw packet to other streams // Send raw packet to other streams
// Copy data in another buffer to ensure that the data would not be overwritten // Copy data in another buffer to ensure that the data would not be overwritten
data := make([]byte, n) data := make([]byte, n)
copy(data, buff[:n]) copy(data, buff[:n])
forwardingChannel <- Packet{StreamName: "demo", PacketType: "sendData", Data: data} forwardingChannel <- Packet{StreamName: streamName, PacketType: "sendData", Data: data}
// TODO: Send to WebRTC // TODO: Send to WebRTC
// See https://github.com/ebml-go/webm/blob/master/reader.go // See https://github.com/ebml-go/webm/blob/master/reader.go
//err := videoTrack.WriteSample(media.Sample{Data: data, Samples: uint32(sampleCount)}) //err := videoTrack.WriteSample(media.Sample{Data: data, Samples: uint32(sampleCount)})
} }
forwardingChannel <- Packet{StreamName: "demo", PacketType: "close", Data: nil} forwardingChannel <- Packet{StreamName: streamName, PacketType: "close", Data: nil}
} }
sck.Close()
} }

View File

@ -36,11 +36,11 @@ func TestServeSRT(t *testing.T) {
t.Skip("WARNING: FFMPEG is not installed. Skipping stream test") t.Skip("WARNING: FFMPEG is not installed. Skipping stream test")
} }
go Serve(&Options{ListenAddress: ":9711", MaxClients: 2}, nil) go Serve(&Options{ListenAddress: ":9711", MaxClients: 2}, nil, nil)
ffmpeg := exec.Command("ffmpeg", ffmpeg := exec.Command("ffmpeg",
"-i", "http://ftp.crans.org/events/Blender%20OpenMovies/big_buck_bunny_480p_stereo.ogg", "-i", "http://ftp.crans.org/events/Blender%20OpenMovies/big_buck_bunny_480p_stereo.ogg",
"-f", "flv", "srt://127.0.0.1:9711") "-f", "flv", "srt://127.0.0.1:9711??streamid=demo|")
output, err := ffmpeg.StdoutPipe() output, err := ffmpeg.StdoutPipe()
errOutput, err := ffmpeg.StderrPipe() errOutput, err := ffmpeg.StderrPipe()