2020-05-09 16:47:41 -07:00
|
|
|
package wgsd
|
|
|
|
|
|
|
|
import (
|
2020-05-12 17:40:19 -07:00
|
|
|
"fmt"
|
|
|
|
|
2020-05-09 16:47:41 -07:00
|
|
|
"github.com/caddyserver/caddy"
|
|
|
|
"github.com/coredns/coredns/core/dnsserver"
|
|
|
|
"github.com/coredns/coredns/plugin"
|
2020-05-12 17:40:19 -07:00
|
|
|
"golang.zx2c4.com/wireguard/wgctrl"
|
2020-05-09 16:47:41 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
plugin.Register("wgsd", setup)
|
|
|
|
}
|
|
|
|
|
|
|
|
func setup(c *caddy.Controller) error {
|
2020-05-12 17:40:19 -07:00
|
|
|
client, err := wgctrl.New()
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("wgsd: error constructing wgctrl client: %v",
|
|
|
|
err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: parse zone and wireguard device name from config
|
|
|
|
|
2020-05-09 16:47:41 -07:00
|
|
|
// Add the Plugin to CoreDNS, so Servers can use it in their plugin chain.
|
|
|
|
dnsserver.GetConfig(c).AddPlugin(func(next plugin.Handler) plugin.Handler {
|
2020-05-12 17:40:19 -07:00
|
|
|
return &WGSD{
|
|
|
|
Next: next,
|
|
|
|
client: client,
|
|
|
|
}
|
2020-05-09 16:47:41 -07:00
|
|
|
})
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|