mirror of
https://github.com/bluenviron/mediamtx
synced 2025-01-07 07:20:01 +00:00
350 lines
8.5 KiB
Go
350 lines
8.5 KiB
Go
package conf
|
|
|
|
import (
|
|
"encoding/base64"
|
|
"fmt"
|
|
"io/ioutil"
|
|
"os"
|
|
"time"
|
|
|
|
"github.com/aler9/gortsplib/pkg/headers"
|
|
"golang.org/x/crypto/nacl/secretbox"
|
|
"gopkg.in/yaml.v2"
|
|
|
|
"github.com/aler9/rtsp-simple-server/internal/confenv"
|
|
"github.com/aler9/rtsp-simple-server/internal/logger"
|
|
)
|
|
|
|
// Encryption is an encryption policy.
|
|
type Encryption int
|
|
|
|
// encryption policies.
|
|
const (
|
|
EncryptionNo Encryption = iota
|
|
EncryptionOptional
|
|
EncryptionStrict
|
|
)
|
|
|
|
// Protocol is a RTSP protocol
|
|
type Protocol int
|
|
|
|
// RTSP protocols.
|
|
const (
|
|
ProtocolUDP Protocol = iota
|
|
ProtocolMulticast
|
|
ProtocolTCP
|
|
)
|
|
|
|
func decrypt(key string, byts []byte) ([]byte, error) {
|
|
enc, err := base64.StdEncoding.DecodeString(string(byts))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var secretKey [32]byte
|
|
copy(secretKey[:], key)
|
|
|
|
var decryptNonce [24]byte
|
|
copy(decryptNonce[:], enc[:24])
|
|
decrypted, ok := secretbox.Open(nil, enc[24:], &decryptNonce, &secretKey)
|
|
if !ok {
|
|
return nil, fmt.Errorf("decryption error")
|
|
}
|
|
|
|
return decrypted, nil
|
|
}
|
|
|
|
// Conf is the main program configuration.
|
|
type Conf struct {
|
|
// general
|
|
LogLevel string `yaml:"logLevel"`
|
|
LogLevelParsed logger.Level `yaml:"-" json:"-"`
|
|
LogDestinations []string `yaml:"logDestinations"`
|
|
LogDestinationsParsed map[logger.Destination]struct{} `yaml:"-" json:"-"`
|
|
LogFile string `yaml:"logFile"`
|
|
ReadTimeout time.Duration `yaml:"readTimeout"`
|
|
WriteTimeout time.Duration `yaml:"writeTimeout"`
|
|
ReadBufferCount int `yaml:"readBufferCount"`
|
|
Metrics bool `yaml:"metrics"`
|
|
MetricsAddress string `yaml:"metricsAddress"`
|
|
PPROF bool `yaml:"pprof"`
|
|
PPROFAddress string `yaml:"pprofAddress"`
|
|
RunOnConnect string `yaml:"runOnConnect"`
|
|
RunOnConnectRestart bool `yaml:"runOnConnectRestart"`
|
|
|
|
// rtsp
|
|
RTSPDisable bool `yaml:"rtspDisable"`
|
|
Protocols []string `yaml:"protocols"`
|
|
ProtocolsParsed map[Protocol]struct{} `yaml:"-" json:"-"`
|
|
Encryption string `yaml:"encryption"`
|
|
EncryptionParsed Encryption `yaml:"-" json:"-"`
|
|
RTSPAddress string `yaml:"rtspAddress"`
|
|
RTSPSAddress string `yaml:"rtspsAddress"`
|
|
RTPAddress string `yaml:"rtpAddress"`
|
|
RTCPAddress string `yaml:"rtcpAddress"`
|
|
MulticastIPRange string `yaml:"multicastIPRange"`
|
|
MulticastRTPPort int `yaml:"multicastRTPPort"`
|
|
MulticastRTCPPort int `yaml:"multicastRTCPPort"`
|
|
ServerKey string `yaml:"serverKey"`
|
|
ServerCert string `yaml:"serverCert"`
|
|
AuthMethods []string `yaml:"authMethods"`
|
|
AuthMethodsParsed []headers.AuthMethod `yaml:"-" json:"-"`
|
|
ReadBufferSize int `yaml:"readBufferSize"`
|
|
|
|
// rtmp
|
|
RTMPDisable bool `yaml:"rtmpDisable"`
|
|
RTMPAddress string `yaml:"rtmpAddress"`
|
|
|
|
// hls
|
|
HLSDisable bool `yaml:"hlsDisable"`
|
|
HLSAddress string `yaml:"hlsAddress"`
|
|
HLSSegmentCount int `yaml:"hlsSegmentCount"`
|
|
HLSSegmentDuration time.Duration `yaml:"hlsSegmentDuration"`
|
|
HLSAllowOrigin string `yaml:"hlsAllowOrigin"`
|
|
|
|
// paths
|
|
Paths map[string]*PathConf `yaml:"paths"`
|
|
}
|
|
|
|
func (conf *Conf) fillAndCheck() error {
|
|
if conf.LogLevel == "" {
|
|
conf.LogLevel = "info"
|
|
}
|
|
switch conf.LogLevel {
|
|
case "warn":
|
|
conf.LogLevelParsed = logger.Warn
|
|
|
|
case "info":
|
|
conf.LogLevelParsed = logger.Info
|
|
|
|
case "debug":
|
|
conf.LogLevelParsed = logger.Debug
|
|
|
|
default:
|
|
return fmt.Errorf("unsupported log level: %s", conf.LogLevel)
|
|
}
|
|
|
|
if len(conf.LogDestinations) == 0 {
|
|
conf.LogDestinations = []string{"stdout"}
|
|
}
|
|
conf.LogDestinationsParsed = make(map[logger.Destination]struct{})
|
|
for _, dest := range conf.LogDestinations {
|
|
switch dest {
|
|
case "stdout":
|
|
conf.LogDestinationsParsed[logger.DestinationStdout] = struct{}{}
|
|
|
|
case "file":
|
|
conf.LogDestinationsParsed[logger.DestinationFile] = struct{}{}
|
|
|
|
case "syslog":
|
|
conf.LogDestinationsParsed[logger.DestinationSyslog] = struct{}{}
|
|
|
|
default:
|
|
return fmt.Errorf("unsupported log destination: %s", dest)
|
|
}
|
|
}
|
|
|
|
if conf.LogFile == "" {
|
|
conf.LogFile = "rtsp-simple-server.log"
|
|
}
|
|
if conf.ReadTimeout == 0 {
|
|
conf.ReadTimeout = 10 * time.Second
|
|
}
|
|
if conf.WriteTimeout == 0 {
|
|
conf.WriteTimeout = 10 * time.Second
|
|
}
|
|
if conf.ReadBufferCount == 0 {
|
|
conf.ReadBufferCount = 512
|
|
}
|
|
|
|
if conf.MetricsAddress == "" {
|
|
conf.MetricsAddress = ":9998"
|
|
}
|
|
|
|
if conf.PPROFAddress == "" {
|
|
conf.PPROFAddress = ":9999"
|
|
}
|
|
|
|
if len(conf.Protocols) == 0 {
|
|
conf.Protocols = []string{"udp", "multicast", "tcp"}
|
|
}
|
|
conf.ProtocolsParsed = make(map[Protocol]struct{})
|
|
for _, proto := range conf.Protocols {
|
|
switch proto {
|
|
case "udp":
|
|
conf.ProtocolsParsed[ProtocolUDP] = struct{}{}
|
|
|
|
case "multicast":
|
|
conf.ProtocolsParsed[ProtocolMulticast] = struct{}{}
|
|
|
|
case "tcp":
|
|
conf.ProtocolsParsed[ProtocolTCP] = struct{}{}
|
|
|
|
default:
|
|
return fmt.Errorf("unsupported protocol: %s", proto)
|
|
}
|
|
}
|
|
if len(conf.ProtocolsParsed) == 0 {
|
|
return fmt.Errorf("no protocols provided")
|
|
}
|
|
|
|
if conf.Encryption == "" {
|
|
conf.Encryption = "no"
|
|
}
|
|
switch conf.Encryption {
|
|
case "no", "false":
|
|
conf.EncryptionParsed = EncryptionNo
|
|
|
|
case "optional":
|
|
conf.EncryptionParsed = EncryptionOptional
|
|
|
|
case "strict", "yes", "true":
|
|
conf.EncryptionParsed = EncryptionStrict
|
|
|
|
if _, ok := conf.ProtocolsParsed[ProtocolUDP]; ok {
|
|
return fmt.Errorf("encryption can't be used with the UDP stream protocol")
|
|
}
|
|
|
|
default:
|
|
return fmt.Errorf("unsupported encryption value: '%s'", conf.Encryption)
|
|
}
|
|
|
|
if conf.RTSPAddress == "" {
|
|
conf.RTSPAddress = ":8554"
|
|
}
|
|
if conf.RTSPSAddress == "" {
|
|
conf.RTSPSAddress = ":8555"
|
|
}
|
|
if conf.RTPAddress == "" {
|
|
conf.RTPAddress = ":8000"
|
|
}
|
|
if conf.RTCPAddress == "" {
|
|
conf.RTCPAddress = ":8001"
|
|
}
|
|
if conf.MulticastIPRange == "" {
|
|
conf.MulticastIPRange = "224.1.0.0/16"
|
|
}
|
|
if conf.MulticastRTPPort == 0 {
|
|
conf.MulticastRTPPort = 8002
|
|
}
|
|
if conf.MulticastRTCPPort == 0 {
|
|
conf.MulticastRTCPPort = 8003
|
|
}
|
|
|
|
if conf.ServerKey == "" {
|
|
conf.ServerKey = "server.key"
|
|
}
|
|
if conf.ServerCert == "" {
|
|
conf.ServerCert = "server.crt"
|
|
}
|
|
|
|
if len(conf.AuthMethods) == 0 {
|
|
conf.AuthMethods = []string{"basic", "digest"}
|
|
}
|
|
for _, method := range conf.AuthMethods {
|
|
switch method {
|
|
case "basic":
|
|
conf.AuthMethodsParsed = append(conf.AuthMethodsParsed, headers.AuthBasic)
|
|
|
|
case "digest":
|
|
conf.AuthMethodsParsed = append(conf.AuthMethodsParsed, headers.AuthDigest)
|
|
|
|
default:
|
|
return fmt.Errorf("unsupported authentication method: %s", method)
|
|
}
|
|
}
|
|
|
|
if conf.RTMPAddress == "" {
|
|
conf.RTMPAddress = ":1935"
|
|
}
|
|
|
|
if conf.HLSAddress == "" {
|
|
conf.HLSAddress = ":8888"
|
|
}
|
|
if conf.HLSSegmentCount == 0 {
|
|
conf.HLSSegmentCount = 5
|
|
}
|
|
if conf.HLSSegmentDuration == 0 {
|
|
conf.HLSSegmentDuration = 1 * time.Second
|
|
}
|
|
if conf.HLSAllowOrigin == "" {
|
|
conf.HLSAllowOrigin = "*"
|
|
}
|
|
|
|
if len(conf.Paths) == 0 {
|
|
conf.Paths = map[string]*PathConf{
|
|
"all": {},
|
|
}
|
|
}
|
|
|
|
// "all" is an alias for "~^.*$"
|
|
if _, ok := conf.Paths["all"]; ok {
|
|
conf.Paths["~^.*$"] = conf.Paths["all"]
|
|
delete(conf.Paths, "all")
|
|
}
|
|
|
|
for name, pconf := range conf.Paths {
|
|
if pconf == nil {
|
|
conf.Paths[name] = &PathConf{}
|
|
pconf = conf.Paths[name]
|
|
}
|
|
|
|
err := pconf.fillAndCheck(name)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// Load loads a Conf.
|
|
func Load(fpath string) (*Conf, bool, error) {
|
|
conf := &Conf{}
|
|
|
|
// read from file
|
|
found, err := func() (bool, error) {
|
|
// rtsp-simple-server.yml is optional
|
|
if fpath == "rtsp-simple-server.yml" {
|
|
if _, err := os.Stat(fpath); err != nil {
|
|
return false, nil
|
|
}
|
|
}
|
|
|
|
byts, err := ioutil.ReadFile(fpath)
|
|
if err != nil {
|
|
return true, err
|
|
}
|
|
|
|
if key, ok := os.LookupEnv("RTSP_CONFKEY"); ok {
|
|
byts, err = decrypt(key, byts)
|
|
if err != nil {
|
|
return true, err
|
|
}
|
|
}
|
|
|
|
err = yaml.Unmarshal(byts, conf)
|
|
if err != nil {
|
|
return true, err
|
|
}
|
|
|
|
return true, nil
|
|
}()
|
|
if err != nil {
|
|
return nil, false, err
|
|
}
|
|
|
|
// read from environment
|
|
err = confenv.Load("RTSP", conf)
|
|
if err != nil {
|
|
return nil, false, err
|
|
}
|
|
|
|
err = conf.fillAndCheck()
|
|
if err != nil {
|
|
return nil, false, err
|
|
}
|
|
|
|
return conf, found, nil
|
|
}
|