coredns/plugin/sign/setup.go
Miek Gieben b003d06003
For caddy v1 in our org (#4018)
* For caddy v1 in our org

This RP changes all imports for caddyserver/caddy to coredns/caddy. This
is the v1 code of caddy.

For the coredns/caddy repo the following changes have been made:

* anything not needed by us is deleted
* all `telemetry` stuff is deleted
* all its import paths are also changed to point to coredns/caddy
* the v1 branch has been moved to the master branch
* a v1.1.0 tag has been added to signal the latest release

Signed-off-by: Miek Gieben <miek@miek.nl>

* Fix imports

Signed-off-by: Miek Gieben <miek@miek.nl>

* Group coredns/caddy with out plugins

Signed-off-by: Miek Gieben <miek@miek.nl>

* remove this file

Signed-off-by: Miek Gieben <miek@miek.nl>

* Relax import ordering

github.com/coredns is now also a coredns dep, this makes
github.com/coredns/caddy fit more natural in the list.

Signed-off-by: Miek Gieben <miek@miek.nl>

* Fix final import

Signed-off-by: Miek Gieben <miek@miek.nl>
2020-09-24 18:14:41 +02:00

109 lines
2.6 KiB
Go

package sign
import (
"fmt"
"math/rand"
"path/filepath"
"time"
"github.com/coredns/caddy"
"github.com/coredns/coredns/core/dnsserver"
"github.com/coredns/coredns/plugin"
)
func init() { plugin.Register("sign", setup) }
func setup(c *caddy.Controller) error {
sign, err := parse(c)
if err != nil {
return plugin.Error("sign", err)
}
c.OnStartup(sign.OnStartup)
c.OnStartup(func() error {
for _, signer := range sign.signers {
go signer.refresh(durationRefreshHours)
}
return nil
})
c.OnShutdown(func() error {
for _, signer := range sign.signers {
close(signer.stop)
}
return nil
})
// Don't call AddPlugin, *sign* is not a plugin.
return nil
}
func parse(c *caddy.Controller) (*Sign, error) {
sign := &Sign{}
config := dnsserver.GetConfig(c)
for c.Next() {
if !c.NextArg() {
return nil, c.ArgErr()
}
dbfile := c.Val()
if !filepath.IsAbs(dbfile) && config.Root != "" {
dbfile = filepath.Join(config.Root, dbfile)
}
origins := make([]string, len(c.ServerBlockKeys))
copy(origins, c.ServerBlockKeys)
args := c.RemainingArgs()
if len(args) > 0 {
origins = args
}
for i := range origins {
origins[i] = plugin.Host(origins[i]).Normalize()
}
signers := make([]*Signer, len(origins))
for i := range origins {
signers[i] = &Signer{
dbfile: dbfile,
origin: plugin.Host(origins[i]).Normalize(),
jitterIncep: time.Duration(float32(durationInceptionJitter) * rand.Float32()),
jitterExpir: time.Duration(float32(durationExpirationDayJitter) * rand.Float32()),
directory: "/var/lib/coredns",
stop: make(chan struct{}),
signedfile: fmt.Sprintf("db.%ssigned", origins[i]), // origins[i] is a fqdn, so it ends with a dot, hence %ssigned.
}
}
for c.NextBlock() {
switch c.Val() {
case "key":
pairs, err := keyParse(c)
if err != nil {
return sign, err
}
for i := range signers {
for _, p := range pairs {
p.Public.Header().Name = signers[i].origin
}
signers[i].keys = append(signers[i].keys, pairs...)
}
case "directory":
dir := c.RemainingArgs()
if len(dir) == 0 || len(dir) > 1 {
return sign, fmt.Errorf("can only be one argument after %q", "directory")
}
if !filepath.IsAbs(dir[0]) && config.Root != "" {
dir[0] = filepath.Join(config.Root, dir[0])
}
for i := range signers {
signers[i].directory = dir[0]
signers[i].signedfile = fmt.Sprintf("db.%ssigned", signers[i].origin)
}
default:
return nil, c.Errf("unknown property '%s'", c.Val())
}
}
sign.signers = append(sign.signers, signers...)
}
return sign, nil
}