golanggohlsrtmpwebrtcmedia-serverobs-studiortcprtmp-proxyrtmp-serverrtprtsprtsp-proxyrtsp-relayrtsp-serversrtstreamingwebrtc-proxy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
327 lines
6.9 KiB
327 lines
6.9 KiB
package core |
|
|
|
import ( |
|
"context" |
|
"crypto/tls" |
|
"fmt" |
|
"net" |
|
"sort" |
|
"sync" |
|
|
|
"github.com/google/uuid" |
|
|
|
"github.com/bluenviron/mediamtx/internal/conf" |
|
"github.com/bluenviron/mediamtx/internal/defs" |
|
"github.com/bluenviron/mediamtx/internal/externalcmd" |
|
"github.com/bluenviron/mediamtx/internal/logger" |
|
"github.com/bluenviron/mediamtx/internal/restrictnetwork" |
|
) |
|
|
|
type rtmpServerAPIConnsListRes struct { |
|
data *defs.APIRTMPConnList |
|
err error |
|
} |
|
|
|
type rtmpServerAPIConnsListReq struct { |
|
res chan rtmpServerAPIConnsListRes |
|
} |
|
|
|
type rtmpServerAPIConnsGetRes struct { |
|
data *defs.APIRTMPConn |
|
err error |
|
} |
|
|
|
type rtmpServerAPIConnsGetReq struct { |
|
uuid uuid.UUID |
|
res chan rtmpServerAPIConnsGetRes |
|
} |
|
|
|
type rtmpServerAPIConnsKickRes struct { |
|
err error |
|
} |
|
|
|
type rtmpServerAPIConnsKickReq struct { |
|
uuid uuid.UUID |
|
res chan rtmpServerAPIConnsKickRes |
|
} |
|
|
|
type rtmpServerParent interface { |
|
logger.Writer |
|
} |
|
|
|
type rtmpServer struct { |
|
readTimeout conf.StringDuration |
|
writeTimeout conf.StringDuration |
|
writeQueueSize int |
|
isTLS bool |
|
rtspAddress string |
|
runOnConnect string |
|
runOnConnectRestart bool |
|
runOnDisconnect string |
|
externalCmdPool *externalcmd.Pool |
|
pathManager *pathManager |
|
parent rtmpServerParent |
|
|
|
ctx context.Context |
|
ctxCancel func() |
|
wg sync.WaitGroup |
|
ln net.Listener |
|
conns map[*rtmpConn]struct{} |
|
|
|
// in |
|
chNewConn chan net.Conn |
|
chAcceptErr chan error |
|
chCloseConn chan *rtmpConn |
|
chAPIConnsList chan rtmpServerAPIConnsListReq |
|
chAPIConnsGet chan rtmpServerAPIConnsGetReq |
|
chAPIConnsKick chan rtmpServerAPIConnsKickReq |
|
} |
|
|
|
func newRTMPServer( |
|
address string, |
|
readTimeout conf.StringDuration, |
|
writeTimeout conf.StringDuration, |
|
writeQueueSize int, |
|
isTLS bool, |
|
serverCert string, |
|
serverKey string, |
|
rtspAddress string, |
|
runOnConnect string, |
|
runOnConnectRestart bool, |
|
runOnDisconnect string, |
|
externalCmdPool *externalcmd.Pool, |
|
pathManager *pathManager, |
|
parent rtmpServerParent, |
|
) (*rtmpServer, error) { |
|
ln, err := func() (net.Listener, error) { |
|
if !isTLS { |
|
return net.Listen(restrictnetwork.Restrict("tcp", address)) |
|
} |
|
|
|
cert, err := tls.LoadX509KeyPair(serverCert, serverKey) |
|
if err != nil { |
|
return nil, err |
|
} |
|
|
|
network, address := restrictnetwork.Restrict("tcp", address) |
|
return tls.Listen(network, address, &tls.Config{Certificates: []tls.Certificate{cert}}) |
|
}() |
|
if err != nil { |
|
return nil, err |
|
} |
|
|
|
ctx, ctxCancel := context.WithCancel(context.Background()) |
|
|
|
s := &rtmpServer{ |
|
readTimeout: readTimeout, |
|
writeTimeout: writeTimeout, |
|
writeQueueSize: writeQueueSize, |
|
rtspAddress: rtspAddress, |
|
runOnConnect: runOnConnect, |
|
runOnConnectRestart: runOnConnectRestart, |
|
runOnDisconnect: runOnDisconnect, |
|
isTLS: isTLS, |
|
externalCmdPool: externalCmdPool, |
|
pathManager: pathManager, |
|
parent: parent, |
|
ctx: ctx, |
|
ctxCancel: ctxCancel, |
|
ln: ln, |
|
conns: make(map[*rtmpConn]struct{}), |
|
chNewConn: make(chan net.Conn), |
|
chAcceptErr: make(chan error), |
|
chCloseConn: make(chan *rtmpConn), |
|
chAPIConnsList: make(chan rtmpServerAPIConnsListReq), |
|
chAPIConnsGet: make(chan rtmpServerAPIConnsGetReq), |
|
chAPIConnsKick: make(chan rtmpServerAPIConnsKickReq), |
|
} |
|
|
|
s.Log(logger.Info, "listener opened on %s", address) |
|
|
|
newRTMPListener( |
|
s.ln, |
|
&s.wg, |
|
s, |
|
) |
|
|
|
s.wg.Add(1) |
|
go s.run() |
|
|
|
return s, nil |
|
} |
|
|
|
func (s *rtmpServer) Log(level logger.Level, format string, args ...interface{}) { |
|
label := func() string { |
|
if s.isTLS { |
|
return "RTMPS" |
|
} |
|
return "RTMP" |
|
}() |
|
s.parent.Log(level, "[%s] "+format, append([]interface{}{label}, args...)...) |
|
} |
|
|
|
func (s *rtmpServer) close() { |
|
s.Log(logger.Info, "listener is closing") |
|
s.ctxCancel() |
|
s.wg.Wait() |
|
} |
|
|
|
func (s *rtmpServer) run() { |
|
defer s.wg.Done() |
|
|
|
outer: |
|
for { |
|
select { |
|
case err := <-s.chAcceptErr: |
|
s.Log(logger.Error, "%s", err) |
|
break outer |
|
|
|
case nconn := <-s.chNewConn: |
|
c := newRTMPConn( |
|
s.ctx, |
|
s.isTLS, |
|
s.rtspAddress, |
|
s.readTimeout, |
|
s.writeTimeout, |
|
s.writeQueueSize, |
|
s.runOnConnect, |
|
s.runOnConnectRestart, |
|
s.runOnDisconnect, |
|
&s.wg, |
|
nconn, |
|
s.externalCmdPool, |
|
s.pathManager, |
|
s) |
|
s.conns[c] = struct{}{} |
|
|
|
case c := <-s.chCloseConn: |
|
delete(s.conns, c) |
|
|
|
case req := <-s.chAPIConnsList: |
|
data := &defs.APIRTMPConnList{ |
|
Items: []*defs.APIRTMPConn{}, |
|
} |
|
|
|
for c := range s.conns { |
|
data.Items = append(data.Items, c.apiItem()) |
|
} |
|
|
|
sort.Slice(data.Items, func(i, j int) bool { |
|
return data.Items[i].Created.Before(data.Items[j].Created) |
|
}) |
|
|
|
req.res <- rtmpServerAPIConnsListRes{data: data} |
|
|
|
case req := <-s.chAPIConnsGet: |
|
c := s.findConnByUUID(req.uuid) |
|
if c == nil { |
|
req.res <- rtmpServerAPIConnsGetRes{err: fmt.Errorf("connection not found")} |
|
continue |
|
} |
|
|
|
req.res <- rtmpServerAPIConnsGetRes{data: c.apiItem()} |
|
|
|
case req := <-s.chAPIConnsKick: |
|
c := s.findConnByUUID(req.uuid) |
|
if c == nil { |
|
req.res <- rtmpServerAPIConnsKickRes{err: fmt.Errorf("connection not found")} |
|
continue |
|
} |
|
|
|
delete(s.conns, c) |
|
c.close() |
|
req.res <- rtmpServerAPIConnsKickRes{} |
|
|
|
case <-s.ctx.Done(): |
|
break outer |
|
} |
|
} |
|
|
|
s.ctxCancel() |
|
|
|
s.ln.Close() |
|
} |
|
|
|
func (s *rtmpServer) findConnByUUID(uuid uuid.UUID) *rtmpConn { |
|
for c := range s.conns { |
|
if c.uuid == uuid { |
|
return c |
|
} |
|
} |
|
return nil |
|
} |
|
|
|
// newConn is called by rtmpListener. |
|
func (s *rtmpServer) newConn(conn net.Conn) { |
|
select { |
|
case s.chNewConn <- conn: |
|
case <-s.ctx.Done(): |
|
conn.Close() |
|
} |
|
} |
|
|
|
// acceptError is called by rtmpListener. |
|
func (s *rtmpServer) acceptError(err error) { |
|
select { |
|
case s.chAcceptErr <- err: |
|
case <-s.ctx.Done(): |
|
} |
|
} |
|
|
|
// closeConn is called by rtmpConn. |
|
func (s *rtmpServer) closeConn(c *rtmpConn) { |
|
select { |
|
case s.chCloseConn <- c: |
|
case <-s.ctx.Done(): |
|
} |
|
} |
|
|
|
// apiConnsList is called by api. |
|
func (s *rtmpServer) apiConnsList() (*defs.APIRTMPConnList, error) { |
|
req := rtmpServerAPIConnsListReq{ |
|
res: make(chan rtmpServerAPIConnsListRes), |
|
} |
|
|
|
select { |
|
case s.chAPIConnsList <- req: |
|
res := <-req.res |
|
return res.data, res.err |
|
|
|
case <-s.ctx.Done(): |
|
return nil, fmt.Errorf("terminated") |
|
} |
|
} |
|
|
|
// apiConnsGet is called by api. |
|
func (s *rtmpServer) apiConnsGet(uuid uuid.UUID) (*defs.APIRTMPConn, error) { |
|
req := rtmpServerAPIConnsGetReq{ |
|
uuid: uuid, |
|
res: make(chan rtmpServerAPIConnsGetRes), |
|
} |
|
|
|
select { |
|
case s.chAPIConnsGet <- req: |
|
res := <-req.res |
|
return res.data, res.err |
|
|
|
case <-s.ctx.Done(): |
|
return nil, fmt.Errorf("terminated") |
|
} |
|
} |
|
|
|
// apiConnsKick is called by api. |
|
func (s *rtmpServer) apiConnsKick(uuid uuid.UUID) error { |
|
req := rtmpServerAPIConnsKickReq{ |
|
uuid: uuid, |
|
res: make(chan rtmpServerAPIConnsKickRes), |
|
} |
|
|
|
select { |
|
case s.chAPIConnsKick <- req: |
|
res := <-req.res |
|
return res.err |
|
|
|
case <-s.ctx.Done(): |
|
return fmt.Errorf("terminated") |
|
} |
|
}
|
|
|