mirror of
https://github.com/bluenviron/mediamtx
synced 2024-12-16 11:44:50 +00:00
216 lines
4.3 KiB
Go
216 lines
4.3 KiB
Go
package core
|
|
|
|
import (
|
|
"context"
|
|
"crypto/sha256"
|
|
"crypto/tls"
|
|
"encoding/hex"
|
|
"fmt"
|
|
"strings"
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/aler9/gortsplib"
|
|
"github.com/aler9/gortsplib/pkg/base"
|
|
|
|
"github.com/aler9/rtsp-simple-server/internal/logger"
|
|
)
|
|
|
|
const (
|
|
rtspSourceRetryPause = 5 * time.Second
|
|
)
|
|
|
|
type rtspSourceParent interface {
|
|
Log(logger.Level, string, ...interface{})
|
|
OnSourceStaticSetReady(req pathSourceStaticSetReadyReq) pathSourceStaticSetReadyRes
|
|
OnSourceStaticSetNotReady(req pathSourceStaticSetNotReadyReq)
|
|
}
|
|
|
|
type rtspSource struct {
|
|
ur string
|
|
proto *gortsplib.ClientProtocol
|
|
anyPortEnable bool
|
|
fingerprint string
|
|
readTimeout time.Duration
|
|
writeTimeout time.Duration
|
|
readBufferCount int
|
|
readBufferSize int
|
|
wg *sync.WaitGroup
|
|
parent rtspSourceParent
|
|
|
|
ctx context.Context
|
|
ctxCancel func()
|
|
}
|
|
|
|
func newRTSPSource(
|
|
parentCtx context.Context,
|
|
ur string,
|
|
proto *gortsplib.ClientProtocol,
|
|
anyPortEnable bool,
|
|
fingerprint string,
|
|
readTimeout time.Duration,
|
|
writeTimeout time.Duration,
|
|
readBufferCount int,
|
|
readBufferSize int,
|
|
wg *sync.WaitGroup,
|
|
parent rtspSourceParent) *rtspSource {
|
|
ctx, ctxCancel := context.WithCancel(parentCtx)
|
|
|
|
s := &rtspSource{
|
|
ur: ur,
|
|
proto: proto,
|
|
anyPortEnable: anyPortEnable,
|
|
fingerprint: fingerprint,
|
|
readTimeout: readTimeout,
|
|
writeTimeout: writeTimeout,
|
|
readBufferCount: readBufferCount,
|
|
readBufferSize: readBufferSize,
|
|
wg: wg,
|
|
parent: parent,
|
|
ctx: ctx,
|
|
ctxCancel: ctxCancel,
|
|
}
|
|
|
|
s.log(logger.Info, "started")
|
|
|
|
s.wg.Add(1)
|
|
go s.run()
|
|
|
|
return s
|
|
}
|
|
|
|
func (s *rtspSource) Close() {
|
|
s.log(logger.Info, "stopped")
|
|
s.ctxCancel()
|
|
}
|
|
|
|
func (s *rtspSource) log(level logger.Level, format string, args ...interface{}) {
|
|
s.parent.Log(level, "[rtsp source] "+format, args...)
|
|
}
|
|
|
|
func (s *rtspSource) run() {
|
|
defer s.wg.Done()
|
|
|
|
for {
|
|
ok := func() bool {
|
|
ok := s.runInner()
|
|
if !ok {
|
|
return false
|
|
}
|
|
|
|
select {
|
|
case <-time.After(rtspSourceRetryPause):
|
|
return true
|
|
case <-s.ctx.Done():
|
|
return false
|
|
}
|
|
}()
|
|
if !ok {
|
|
break
|
|
}
|
|
}
|
|
|
|
s.ctxCancel()
|
|
}
|
|
|
|
func (s *rtspSource) runInner() bool {
|
|
s.log(logger.Debug, "connecting")
|
|
|
|
client := &gortsplib.Client{
|
|
Protocol: s.proto,
|
|
TLSConfig: &tls.Config{
|
|
InsecureSkipVerify: true,
|
|
VerifyConnection: func(cs tls.ConnectionState) error {
|
|
h := sha256.New()
|
|
h.Write(cs.PeerCertificates[0].Raw)
|
|
hstr := hex.EncodeToString(h.Sum(nil))
|
|
fingerprintLower := strings.ToLower(s.fingerprint)
|
|
|
|
if hstr != fingerprintLower {
|
|
return fmt.Errorf("server fingerprint do not match: expected %s, got %s",
|
|
fingerprintLower, hstr)
|
|
}
|
|
|
|
return nil
|
|
},
|
|
},
|
|
ReadTimeout: s.readTimeout,
|
|
WriteTimeout: s.writeTimeout,
|
|
ReadBufferCount: s.readBufferCount,
|
|
ReadBufferSize: s.readBufferSize,
|
|
AnyPortEnable: s.anyPortEnable,
|
|
OnRequest: func(req *base.Request) {
|
|
s.log(logger.Debug, "c->s %v", req)
|
|
},
|
|
OnResponse: func(res *base.Response) {
|
|
s.log(logger.Debug, "s->c %v", res)
|
|
},
|
|
}
|
|
|
|
innerCtx, innerCtxCancel := context.WithCancel(context.Background())
|
|
|
|
var conn *gortsplib.ClientConn
|
|
var err error
|
|
dialDone := make(chan struct{})
|
|
go func() {
|
|
defer close(dialDone)
|
|
conn, err = client.DialReadContext(innerCtx, s.ur)
|
|
}()
|
|
|
|
select {
|
|
case <-s.ctx.Done():
|
|
innerCtxCancel()
|
|
<-dialDone
|
|
return false
|
|
|
|
case <-dialDone:
|
|
innerCtxCancel()
|
|
}
|
|
|
|
if err != nil {
|
|
s.log(logger.Info, "ERR: %s", err)
|
|
return true
|
|
}
|
|
|
|
res := s.parent.OnSourceStaticSetReady(pathSourceStaticSetReadyReq{
|
|
Source: s,
|
|
Tracks: conn.Tracks(),
|
|
})
|
|
if res.Err != nil {
|
|
s.log(logger.Info, "ERR: %s", res.Err)
|
|
return true
|
|
}
|
|
|
|
s.log(logger.Info, "ready")
|
|
|
|
defer func() {
|
|
s.parent.OnSourceStaticSetNotReady(pathSourceStaticSetNotReadyReq{Source: s})
|
|
}()
|
|
|
|
readErr := make(chan error)
|
|
go func() {
|
|
readErr <- conn.ReadFrames(func(trackID int, streamType gortsplib.StreamType, payload []byte) {
|
|
res.Stream.onFrame(trackID, streamType, payload)
|
|
})
|
|
}()
|
|
|
|
select {
|
|
case <-s.ctx.Done():
|
|
conn.Close()
|
|
<-readErr
|
|
return false
|
|
|
|
case err := <-readErr:
|
|
s.log(logger.Info, "ERR: %s", err)
|
|
conn.Close()
|
|
return true
|
|
}
|
|
}
|
|
|
|
// OnSourceAPIDescribe implements source.
|
|
func (*rtspSource) OnSourceAPIDescribe() interface{} {
|
|
return struct {
|
|
Type string `json:"type"`
|
|
}{"rtspSource"}
|
|
}
|