| 
									
										
										
										
											2018-01-15 09:59:29 -08:00
										 |  |  | package route53
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import (
 | 
					
						
							| 
									
										
										
										
											2018-09-17 11:19:07 -07:00
										 |  |  | 	"context"
 | 
					
						
							| 
									
										
										
										
											2018-01-15 09:59:29 -08:00
										 |  |  | 	"strings"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/coredns/coredns/core/dnsserver"
 | 
					
						
							|  |  |  | 	"github.com/coredns/coredns/plugin"
 | 
					
						
							| 
									
										
										
										
											2018-09-25 11:41:05 -07:00
										 |  |  | 	"github.com/coredns/coredns/plugin/pkg/fall"
 | 
					
						
							| 
									
										
										
										
											2018-09-17 11:19:07 -07:00
										 |  |  | 	clog "github.com/coredns/coredns/plugin/pkg/log"
 | 
					
						
							|  |  |  | 	"github.com/coredns/coredns/plugin/pkg/upstream"
 | 
					
						
							| 
									
										
										
										
											2018-01-15 09:59:29 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/aws/aws-sdk-go/aws"
 | 
					
						
							|  |  |  | 	"github.com/aws/aws-sdk-go/aws/credentials"
 | 
					
						
							|  |  |  | 	"github.com/aws/aws-sdk-go/aws/session"
 | 
					
						
							|  |  |  | 	"github.com/aws/aws-sdk-go/service/route53"
 | 
					
						
							|  |  |  | 	"github.com/aws/aws-sdk-go/service/route53/route53iface"
 | 
					
						
							|  |  |  | 	"github.com/mholt/caddy"
 | 
					
						
							|  |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-17 11:19:07 -07:00
										 |  |  | var log = clog.NewWithPlugin("route53")
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-15 09:59:29 -08:00
										 |  |  | func init() {
 | 
					
						
							|  |  |  | 	caddy.RegisterPlugin("route53", caddy.Plugin{
 | 
					
						
							|  |  |  | 		ServerType: "dns",
 | 
					
						
							|  |  |  | 		Action: func(c *caddy.Controller) error {
 | 
					
						
							|  |  |  | 			f := func(credential *credentials.Credentials) route53iface.Route53API {
 | 
					
						
							|  |  |  | 				return route53.New(session.Must(session.NewSession(&aws.Config{
 | 
					
						
							|  |  |  | 					Credentials: credential,
 | 
					
						
							|  |  |  | 				})))
 | 
					
						
							|  |  |  | 			}
 | 
					
						
							|  |  |  | 			return setup(c, f)
 | 
					
						
							|  |  |  | 		},
 | 
					
						
							|  |  |  | 	})
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func setup(c *caddy.Controller, f func(*credentials.Credentials) route53iface.Route53API) error {
 | 
					
						
							| 
									
										
										
										
											2018-10-10 10:55:54 -07:00
										 |  |  | 	keyPairs := map[string]struct{}{}
 | 
					
						
							|  |  |  | 	keys := map[string][]string{}
 | 
					
						
							| 
									
										
										
										
											2018-09-25 15:57:16 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Route53 plugin attempts to find AWS credentials by using ChainCredentials.
 | 
					
						
							|  |  |  | 	// And the order of that provider chain is as follows:
 | 
					
						
							|  |  |  | 	// Static AWS keys -> Environment Variables -> Credentials file -> IAM role
 | 
					
						
							|  |  |  | 	// With that said, even though a user doesn't define any credentials in
 | 
					
						
							|  |  |  | 	// Corefile, we should still attempt to read the default credentials file,
 | 
					
						
							|  |  |  | 	// ~/.aws/credentials with the default profile.
 | 
					
						
							|  |  |  | 	sharedProvider := &credentials.SharedCredentialsProvider{}
 | 
					
						
							|  |  |  | 	var providers []credentials.Provider
 | 
					
						
							| 
									
										
										
										
											2018-09-25 11:41:05 -07:00
										 |  |  | 	var fall fall.F
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-13 16:54:49 +00:00
										 |  |  | 	up := upstream.New()
 | 
					
						
							| 
									
										
										
										
											2018-01-15 09:59:29 -08:00
										 |  |  | 	for c.Next() {
 | 
					
						
							|  |  |  | 		args := c.RemainingArgs()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		for i := 0; i < len(args); i++ {
 | 
					
						
							|  |  |  | 			parts := strings.SplitN(args[i], ":", 2)
 | 
					
						
							|  |  |  | 			if len(parts) != 2 {
 | 
					
						
							|  |  |  | 				return c.Errf("invalid zone '%s'", args[i])
 | 
					
						
							|  |  |  | 			}
 | 
					
						
							| 
									
										
										
										
											2018-10-10 10:55:54 -07:00
										 |  |  | 			dns, hostedZoneID := parts[0], parts[1]
 | 
					
						
							|  |  |  | 			if dns == "" || hostedZoneID == "" {
 | 
					
						
							| 
									
										
										
										
											2018-01-15 09:59:29 -08:00
										 |  |  | 				return c.Errf("invalid zone '%s'", args[i])
 | 
					
						
							|  |  |  | 			}
 | 
					
						
							| 
									
										
										
										
											2018-10-10 10:55:54 -07:00
										 |  |  | 			if _, ok := keyPairs[args[i]]; ok {
 | 
					
						
							|  |  |  | 				return c.Errf("conflict zone '%s'", args[i])
 | 
					
						
							| 
									
										
										
										
											2018-01-15 09:59:29 -08:00
										 |  |  | 			}
 | 
					
						
							| 
									
										
										
										
											2018-10-10 10:55:54 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			keyPairs[args[i]] = struct{}{}
 | 
					
						
							|  |  |  | 			keys[dns] = append(keys[dns], hostedZoneID)
 | 
					
						
							| 
									
										
										
										
											2018-01-15 09:59:29 -08:00
										 |  |  | 		}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		for c.NextBlock() {
 | 
					
						
							|  |  |  | 			switch c.Val() {
 | 
					
						
							|  |  |  | 			case "aws_access_key":
 | 
					
						
							|  |  |  | 				v := c.RemainingArgs()
 | 
					
						
							|  |  |  | 				if len(v) < 2 {
 | 
					
						
							|  |  |  | 					return c.Errf("invalid access key '%v'", v)
 | 
					
						
							|  |  |  | 				}
 | 
					
						
							| 
									
										
										
										
											2018-09-25 15:57:16 -07:00
										 |  |  | 				providers = append(providers, &credentials.StaticProvider{
 | 
					
						
							|  |  |  | 					Value: credentials.Value{
 | 
					
						
							|  |  |  | 						AccessKeyID:     v[0],
 | 
					
						
							|  |  |  | 						SecretAccessKey: v[1],
 | 
					
						
							|  |  |  | 					},
 | 
					
						
							|  |  |  | 				})
 | 
					
						
							| 
									
										
										
										
											2018-09-17 11:19:07 -07:00
										 |  |  | 			case "upstream":
 | 
					
						
							| 
									
										
										
										
											2019-01-13 16:54:49 +00:00
										 |  |  | 				c.RemainingArgs() // eats args
 | 
					
						
							| 
									
										
										
										
											2018-09-25 15:57:16 -07:00
										 |  |  | 			case "credentials":
 | 
					
						
							|  |  |  | 				if c.NextArg() {
 | 
					
						
							|  |  |  | 					sharedProvider.Profile = c.Val()
 | 
					
						
							|  |  |  | 				} else {
 | 
					
						
							|  |  |  | 					return c.ArgErr()
 | 
					
						
							|  |  |  | 				}
 | 
					
						
							|  |  |  | 				if c.NextArg() {
 | 
					
						
							|  |  |  | 					sharedProvider.Filename = c.Val()
 | 
					
						
							|  |  |  | 				}
 | 
					
						
							| 
									
										
										
										
											2018-09-25 11:41:05 -07:00
										 |  |  | 			case "fallthrough":
 | 
					
						
							|  |  |  | 				fall.SetZonesFromArgs(c.RemainingArgs())
 | 
					
						
							| 
									
										
										
										
											2018-01-15 09:59:29 -08:00
										 |  |  | 			default:
 | 
					
						
							|  |  |  | 				return c.Errf("unknown property '%s'", c.Val())
 | 
					
						
							|  |  |  | 			}
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2018-09-25 15:57:16 -07:00
										 |  |  | 	providers = append(providers, &credentials.EnvProvider{}, sharedProvider)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	client := f(credentials.NewChainCredentials(providers))
 | 
					
						
							| 
									
										
										
										
											2018-09-17 11:19:07 -07:00
										 |  |  | 	ctx := context.Background()
 | 
					
						
							| 
									
										
										
										
											2019-01-13 16:54:49 +00:00
										 |  |  | 	h, err := New(ctx, client, keys, up)
 | 
					
						
							| 
									
										
										
										
											2018-09-17 11:19:07 -07:00
										 |  |  | 	if err != nil {
 | 
					
						
							|  |  |  | 		return c.Errf("failed to create Route53 plugin: %v", err)
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2018-09-25 11:41:05 -07:00
										 |  |  | 	h.Fall = fall
 | 
					
						
							| 
									
										
										
										
											2018-09-17 11:19:07 -07:00
										 |  |  | 	if err := h.Run(ctx); err != nil {
 | 
					
						
							|  |  |  | 		return c.Errf("failed to initialize Route53 plugin: %v", err)
 | 
					
						
							| 
									
										
										
										
											2018-01-15 09:59:29 -08:00
										 |  |  | 	}
 | 
					
						
							|  |  |  | 	dnsserver.GetConfig(c).AddPlugin(func(next plugin.Handler) plugin.Handler {
 | 
					
						
							| 
									
										
										
										
											2018-09-17 11:19:07 -07:00
										 |  |  | 		h.Next = next
 | 
					
						
							|  |  |  | 		return h
 | 
					
						
							| 
									
										
										
										
											2018-01-15 09:59:29 -08:00
										 |  |  | 	})
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return nil
 | 
					
						
							|  |  |  | }
 |