2016-06-15 13:50:56 +02:00
|
|
|
// Copyright (c) 2012-2014 Jeremy Latt
|
|
|
|
// Copyright (c) 2014-2015 Edmund Huber
|
|
|
|
// Copyright (c) 2016- Daniel Oaks <daniel@danieloaks.net>
|
|
|
|
// released under the MIT license
|
|
|
|
|
2014-02-09 16:53:42 +01:00
|
|
|
package irc
|
|
|
|
|
|
|
|
import (
|
2016-04-13 12:45:09 +02:00
|
|
|
"crypto/tls"
|
2014-03-01 23:34:51 +01:00
|
|
|
"errors"
|
2016-04-12 15:00:09 +02:00
|
|
|
"io/ioutil"
|
2014-02-24 07:21:39 +01:00
|
|
|
"log"
|
2016-04-12 15:00:09 +02:00
|
|
|
|
|
|
|
"gopkg.in/yaml.v2"
|
2014-02-09 16:53:42 +01:00
|
|
|
)
|
|
|
|
|
2014-03-01 23:34:51 +01:00
|
|
|
type PassConfig struct {
|
|
|
|
Password string
|
|
|
|
}
|
|
|
|
|
2016-04-28 12:12:23 +02:00
|
|
|
// TLSListenConfig defines configuration options for listening on TLS
|
|
|
|
type TLSListenConfig struct {
|
2016-04-13 12:45:09 +02:00
|
|
|
Cert string
|
|
|
|
Key string
|
|
|
|
}
|
|
|
|
|
2016-04-28 12:12:23 +02:00
|
|
|
// Certificate returns the TLS certificate assicated with this TLSListenConfig
|
|
|
|
func (conf *TLSListenConfig) Config() (*tls.Config, error) {
|
2016-04-13 12:45:09 +02:00
|
|
|
cert, err := tls.LoadX509KeyPair(conf.Cert, conf.Key)
|
|
|
|
if err != nil {
|
2016-04-28 12:12:23 +02:00
|
|
|
return nil, errors.New("tls cert+key: invalid pair")
|
2016-04-13 12:45:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return &tls.Config{
|
|
|
|
Certificates: []tls.Certificate{cert},
|
|
|
|
}, err
|
|
|
|
}
|
|
|
|
|
2014-03-01 23:34:51 +01:00
|
|
|
func (conf *PassConfig) PasswordBytes() []byte {
|
2014-03-02 20:41:24 +01:00
|
|
|
bytes, err := DecodePassword(conf.Password)
|
2014-02-24 07:21:39 +01:00
|
|
|
if err != nil {
|
2014-03-06 08:07:55 +01:00
|
|
|
log.Fatal("decode password error: ", err)
|
2014-02-24 07:21:39 +01:00
|
|
|
}
|
|
|
|
return bytes
|
|
|
|
}
|
|
|
|
|
2016-09-04 11:25:33 +02:00
|
|
|
type AccountRegistrationConfig struct {
|
|
|
|
Enabled bool
|
|
|
|
EnabledCallbacks []string `yaml:"enabled-callbacks"`
|
|
|
|
Callbacks struct {
|
|
|
|
Mailto struct {
|
|
|
|
Server string
|
|
|
|
Port int
|
|
|
|
TLS struct {
|
|
|
|
Enabled bool
|
|
|
|
InsecureSkipVerify bool `yaml:"insecure_skip_verify"`
|
|
|
|
ServerName string `yaml:"servername"`
|
|
|
|
}
|
|
|
|
Username string
|
|
|
|
Password string
|
|
|
|
Sender string
|
|
|
|
VerifyMessageSubject string `yaml:"verify-message-subject"`
|
|
|
|
VerifyMessage string `yaml:"verify-message"`
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-09 16:53:42 +01:00
|
|
|
type Config struct {
|
2016-04-12 07:44:00 +02:00
|
|
|
Network struct {
|
|
|
|
Name string
|
|
|
|
}
|
|
|
|
|
2014-03-01 23:34:51 +01:00
|
|
|
Server struct {
|
|
|
|
PassConfig
|
2016-06-28 08:06:17 +02:00
|
|
|
Password string
|
2016-04-21 08:39:31 +02:00
|
|
|
Name string
|
|
|
|
Listen []string
|
2016-04-28 12:12:23 +02:00
|
|
|
Wslisten string `yaml:"ws-listen"`
|
|
|
|
TLSListeners map[string]*TLSListenConfig `yaml:"tls-listeners"`
|
2016-06-30 11:28:34 +02:00
|
|
|
CheckIdent bool `yaml:"check-ident"`
|
2016-04-21 08:39:31 +02:00
|
|
|
Log string
|
|
|
|
MOTD string
|
|
|
|
ProxyAllowedFrom []string `yaml:"proxy-allowed-from"`
|
2014-03-01 23:34:51 +01:00
|
|
|
}
|
2014-02-25 20:11:34 +01:00
|
|
|
|
2016-09-04 11:25:33 +02:00
|
|
|
Datastore struct {
|
2016-09-17 13:23:04 +02:00
|
|
|
Path string
|
2016-09-04 11:25:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Registration struct {
|
|
|
|
Accounts AccountRegistrationConfig
|
|
|
|
}
|
|
|
|
|
2014-03-01 23:34:51 +01:00
|
|
|
Operator map[string]*PassConfig
|
2014-03-13 09:55:46 +01:00
|
|
|
|
2016-08-12 14:20:32 +02:00
|
|
|
Limits struct {
|
2016-08-14 06:07:50 +02:00
|
|
|
NickLen int `yaml:"nicklen"`
|
|
|
|
ChannelLen int `yaml:"channellen"`
|
2016-09-12 04:40:09 +02:00
|
|
|
AwayLen int `yaml:"awaylen"`
|
2016-09-12 04:22:50 +02:00
|
|
|
KickLen int `yaml:"kicklen"`
|
|
|
|
TopicLen int `yaml:"topiclen"`
|
2016-08-14 06:07:50 +02:00
|
|
|
WhowasEntries uint `yaml:"whowas-entries"`
|
2016-08-12 14:20:32 +02:00
|
|
|
}
|
2014-02-24 07:21:39 +01:00
|
|
|
}
|
|
|
|
|
2014-03-09 21:45:36 +01:00
|
|
|
func (conf *Config) Operators() map[Name][]byte {
|
|
|
|
operators := make(map[Name][]byte)
|
2014-03-01 23:34:51 +01:00
|
|
|
for name, opConf := range conf.Operator {
|
2014-03-09 21:45:36 +01:00
|
|
|
operators[NewName(name)] = opConf.PasswordBytes()
|
2014-02-24 18:41:09 +01:00
|
|
|
}
|
|
|
|
return operators
|
|
|
|
}
|
|
|
|
|
2016-04-28 12:12:23 +02:00
|
|
|
func (conf *Config) TLSListeners() map[Name]*tls.Config {
|
|
|
|
tlsListeners := make(map[Name]*tls.Config)
|
|
|
|
for s, tlsListenersConf := range conf.Server.TLSListeners {
|
|
|
|
config, err := tlsListenersConf.Config()
|
2016-04-13 12:45:09 +02:00
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
2016-04-28 12:12:23 +02:00
|
|
|
tlsListeners[NewName(s)] = config
|
2016-04-13 12:45:09 +02:00
|
|
|
}
|
2016-04-28 12:12:23 +02:00
|
|
|
return tlsListeners
|
2016-04-13 12:45:09 +02:00
|
|
|
}
|
|
|
|
|
2014-02-24 07:21:39 +01:00
|
|
|
func LoadConfig(filename string) (config *Config, err error) {
|
2016-04-12 15:00:09 +02:00
|
|
|
data, err := ioutil.ReadFile(filename)
|
2014-02-09 16:53:42 +01:00
|
|
|
if err != nil {
|
2016-04-12 15:00:09 +02:00
|
|
|
return nil, err
|
2014-02-09 16:53:42 +01:00
|
|
|
}
|
2016-04-12 15:00:09 +02:00
|
|
|
|
|
|
|
err = yaml.Unmarshal(data, &config)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2016-06-28 08:06:17 +02:00
|
|
|
// we need this so PasswordBytes returns the correct info
|
|
|
|
if config.Server.Password != "" {
|
|
|
|
config.Server.PassConfig.Password = config.Server.Password
|
|
|
|
}
|
|
|
|
|
2016-04-12 07:44:00 +02:00
|
|
|
if config.Network.Name == "" {
|
|
|
|
return nil, errors.New("Network name missing")
|
|
|
|
}
|
2014-03-01 23:34:51 +01:00
|
|
|
if config.Server.Name == "" {
|
2016-04-12 15:00:09 +02:00
|
|
|
return nil, errors.New("Server name missing")
|
2014-03-01 23:34:51 +01:00
|
|
|
}
|
2016-04-21 02:48:15 +02:00
|
|
|
if !IsHostname(config.Server.Name) {
|
|
|
|
return nil, errors.New("Server name must match the format of a hostname")
|
|
|
|
}
|
2016-08-19 15:21:52 +02:00
|
|
|
if config.Datastore.Path == "" {
|
|
|
|
return nil, errors.New("Datastore path missing")
|
|
|
|
}
|
2014-03-01 23:34:51 +01:00
|
|
|
if len(config.Server.Listen) == 0 {
|
2016-04-12 15:00:09 +02:00
|
|
|
return nil, errors.New("Server listening addresses missing")
|
2014-02-10 22:52:28 +01:00
|
|
|
}
|
2016-09-12 04:40:09 +02:00
|
|
|
if config.Limits.NickLen < 1 || config.Limits.ChannelLen < 2 || config.Limits.AwayLen < 1 || config.Limits.TopicLen < 1 || config.Limits.TopicLen < 1 {
|
2016-08-12 14:20:32 +02:00
|
|
|
return nil, errors.New("Limits aren't setup properly, check them and make them sane")
|
|
|
|
}
|
2016-04-12 15:00:09 +02:00
|
|
|
return config, nil
|
2014-02-09 16:53:42 +01:00
|
|
|
}
|