mirror of
https://github.com/namecoin/ncdns
synced 2024-11-18 03:26:00 +00:00
191 lines
5.0 KiB
Go
191 lines
5.0 KiB
Go
package server
|
|
|
|
import "github.com/hlandau/madns"
|
|
import "github.com/hlandau/degoutils/log"
|
|
import "github.com/hlandau/ncdns/backend"
|
|
import "github.com/hlandau/ncdns/namecoin"
|
|
import "github.com/miekg/dns"
|
|
import "os"
|
|
import "net"
|
|
import "fmt"
|
|
import "strings"
|
|
import "path/filepath"
|
|
|
|
const version = "1.0"
|
|
|
|
type Server struct {
|
|
cfg ServerConfig
|
|
|
|
engine madns.Engine
|
|
namecoinConn namecoin.Conn
|
|
|
|
mux *dns.ServeMux
|
|
udpListener *dns.Server
|
|
tcpListener *dns.Server
|
|
}
|
|
|
|
type ServerConfig struct {
|
|
Bind string `default:":53" usage:"Address to bind to (e.g. 0.0.0.0:53)"`
|
|
PublicKey string `default:"" usage:"Path to the DNSKEY KSK public key file"`
|
|
PrivateKey string `default:"" usage:"Path to the KSK's corresponding private key file"`
|
|
ZonePublicKey string `default:"" usage:"Path to the DNSKEY ZSK public key file; if one is not specified, a temporary one is generated on startup and used only for the duration of that process"`
|
|
ZonePrivateKey string `default:"" usage:"Path to the ZSK's corresponding private key file"`
|
|
|
|
NamecoinRPCUsername string `default:"" usage:"Namecoin RPC username"`
|
|
NamecoinRPCPassword string `default:"" usage:"Namecoin RPC password"`
|
|
NamecoinRPCAddress string `default:"localhost:8336" usage:"Namecoin RPC server address"`
|
|
CacheMaxEntries int `default:"100" usage:"Maximum name cache entries"`
|
|
SelfName string `default:"" usage:"The FQDN of this nameserver. If empty, a psuedo-hostname is generated."`
|
|
SelfIP string `default:"127.127.127.127" usage:"The canonical IP address for this service"`
|
|
|
|
HTTPListenAddr string `default:"" usage:"Address for webserver to listen at (default: disabled)"`
|
|
|
|
CanonicalSuffix string `default:"bit" usage:"Suffix to advertise via HTTP"`
|
|
CanonicalNameservers string `default:"" usage:"Comma-separated list of nameservers to use for NS records. If blank, SelfName (or autogenerated psuedo-hostname) is used."`
|
|
canonicalNameservers []string
|
|
Hostmaster string `default:"" usage:"Hostmaster e. mail address"`
|
|
VanityIPs string `default:"" usage:"Comma separated list of IP addresses to place in A/AAAA records at the zone apex (default: don't add any records)"`
|
|
vanityIPs []net.IP
|
|
|
|
ConfigDir string // path to interpret filenames relative to
|
|
}
|
|
|
|
func (cfg *ServerConfig) cpath(s string) string {
|
|
return filepath.Join(cfg.ConfigDir, s)
|
|
}
|
|
|
|
func NewServer(cfg *ServerConfig) (s *Server, err error) {
|
|
s = &Server{}
|
|
s.cfg = *cfg
|
|
|
|
s.cfg.canonicalNameservers = strings.Split(s.cfg.CanonicalNameservers, ",")
|
|
for i := range s.cfg.canonicalNameservers {
|
|
s.cfg.canonicalNameservers[i] = dns.Fqdn(s.cfg.canonicalNameservers[i])
|
|
}
|
|
|
|
vanityIPs := strings.Split(s.cfg.VanityIPs, ",")
|
|
for _, ips := range vanityIPs {
|
|
ip := net.ParseIP(ips)
|
|
if ip == nil {
|
|
return nil, fmt.Errorf("Couldn't parse IP: %s", ips)
|
|
}
|
|
s.cfg.vanityIPs = append(s.cfg.vanityIPs, ip)
|
|
}
|
|
|
|
s.namecoinConn = namecoin.Conn{
|
|
Username: cfg.NamecoinRPCUsername,
|
|
Password: cfg.NamecoinRPCPassword,
|
|
Server: cfg.NamecoinRPCAddress,
|
|
}
|
|
|
|
bcfg := &backend.Config{
|
|
NamecoinConn: s.namecoinConn,
|
|
CacheMaxEntries: cfg.CacheMaxEntries,
|
|
SelfIP: cfg.SelfIP,
|
|
Hostmaster: cfg.Hostmaster,
|
|
CanonicalNameservers: s.cfg.canonicalNameservers,
|
|
VanityIPs: s.cfg.vanityIPs,
|
|
}
|
|
|
|
b, err := backend.New(bcfg)
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
ecfg := &madns.EngineConfig{
|
|
Backend: b,
|
|
VersionString: "ncdns/" + version,
|
|
}
|
|
|
|
// key setup
|
|
if cfg.PublicKey != "" {
|
|
ecfg.KSK, ecfg.KSKPrivate, err = s.loadKey(cfg.PublicKey, cfg.PrivateKey)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
if cfg.ZonePublicKey != "" {
|
|
ecfg.ZSK, ecfg.ZSKPrivate, err = s.loadKey(cfg.ZonePublicKey, cfg.ZonePrivateKey)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
if ecfg.KSK != nil && ecfg.ZSK == nil {
|
|
return nil, fmt.Errorf("Must specify ZSK if KSK is specified")
|
|
}
|
|
|
|
e, err := madns.NewEngine(ecfg)
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
s.engine = e
|
|
|
|
if cfg.HTTPListenAddr != "" {
|
|
err = webStart(cfg.HTTPListenAddr, s)
|
|
if err != nil {
|
|
return
|
|
}
|
|
}
|
|
|
|
return
|
|
}
|
|
|
|
func (s *Server) loadKey(fn, privateFn string) (k *dns.DNSKEY, privatek dns.PrivateKey, err error) {
|
|
fn = s.cfg.cpath(fn)
|
|
privateFn = s.cfg.cpath(privateFn)
|
|
|
|
f, err := os.Open(fn)
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
rr, err := dns.ReadRR(f, fn)
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
k, ok := rr.(*dns.DNSKEY)
|
|
if !ok {
|
|
err = fmt.Errorf("Loaded record from key file, but it wasn't a DNSKEY")
|
|
return
|
|
}
|
|
|
|
privatef, err := os.Open(privateFn)
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
privatek, err = k.ReadPrivateKey(privatef, privateFn)
|
|
log.Fatale(err)
|
|
|
|
return
|
|
}
|
|
|
|
func (s *Server) Start() error {
|
|
s.mux = dns.NewServeMux()
|
|
s.mux.Handle(".", s.engine)
|
|
|
|
s.udpListener = s.runListener("udp")
|
|
s.tcpListener = s.runListener("tcp")
|
|
|
|
return nil
|
|
}
|
|
|
|
func (s *Server) doRunListener(ds *dns.Server) {
|
|
err := ds.ListenAndServe()
|
|
log.Fatale(err)
|
|
}
|
|
|
|
func (s *Server) runListener(net string) *dns.Server {
|
|
ds := &dns.Server{
|
|
Addr: s.cfg.Bind,
|
|
Net: net,
|
|
Handler: s.mux,
|
|
}
|
|
go s.doRunListener(ds)
|
|
return ds
|
|
}
|