| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | package rewrite
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import (
 | 
					
						
							|  |  |  | 	"context"
 | 
					
						
							|  |  |  | 	"fmt"
 | 
					
						
							|  |  |  | 	"regexp"
 | 
					
						
							|  |  |  | 	"strconv"
 | 
					
						
							|  |  |  | 	"strings"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/coredns/coredns/plugin"
 | 
					
						
							|  |  |  | 	"github.com/coredns/coredns/request"
 | 
					
						
							|  |  |  | 	//"github.com/miekg/dns"
 | 
					
						
							|  |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-25 08:00:33 +01:00
										 |  |  | type exactTTLRule struct {
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | 	NextAction string
 | 
					
						
							|  |  |  | 	From       string
 | 
					
						
							|  |  |  | 	ResponseRule
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-25 08:00:33 +01:00
										 |  |  | type prefixTTLRule struct {
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | 	NextAction string
 | 
					
						
							|  |  |  | 	Prefix     string
 | 
					
						
							|  |  |  | 	ResponseRule
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-25 08:00:33 +01:00
										 |  |  | type suffixTTLRule struct {
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | 	NextAction string
 | 
					
						
							|  |  |  | 	Suffix     string
 | 
					
						
							|  |  |  | 	ResponseRule
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-25 08:00:33 +01:00
										 |  |  | type substringTTLRule struct {
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | 	NextAction string
 | 
					
						
							|  |  |  | 	Substring  string
 | 
					
						
							|  |  |  | 	ResponseRule
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-25 08:00:33 +01:00
										 |  |  | type regexTTLRule struct {
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | 	NextAction string
 | 
					
						
							|  |  |  | 	Pattern    *regexp.Regexp
 | 
					
						
							|  |  |  | 	ResponseRule
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Rewrite rewrites the current request based upon exact match of the name
 | 
					
						
							|  |  |  | // in the question section of the request.
 | 
					
						
							| 
									
										
										
										
											2019-06-25 08:00:33 +01:00
										 |  |  | func (rule *exactTTLRule) Rewrite(ctx context.Context, state request.Request) Result {
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | 	if rule.From == state.Name() {
 | 
					
						
							|  |  |  | 		return RewriteDone
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	return RewriteIgnored
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Rewrite rewrites the current request when the name begins with the matching string.
 | 
					
						
							| 
									
										
										
										
											2019-06-25 08:00:33 +01:00
										 |  |  | func (rule *prefixTTLRule) Rewrite(ctx context.Context, state request.Request) Result {
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | 	if strings.HasPrefix(state.Name(), rule.Prefix) {
 | 
					
						
							|  |  |  | 		return RewriteDone
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	return RewriteIgnored
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Rewrite rewrites the current request when the name ends with the matching string.
 | 
					
						
							| 
									
										
										
										
											2019-06-25 08:00:33 +01:00
										 |  |  | func (rule *suffixTTLRule) Rewrite(ctx context.Context, state request.Request) Result {
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | 	if strings.HasSuffix(state.Name(), rule.Suffix) {
 | 
					
						
							|  |  |  | 		return RewriteDone
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	return RewriteIgnored
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Rewrite rewrites the current request based upon partial match of the
 | 
					
						
							|  |  |  | // name in the question section of the request.
 | 
					
						
							| 
									
										
										
										
											2019-06-25 08:00:33 +01:00
										 |  |  | func (rule *substringTTLRule) Rewrite(ctx context.Context, state request.Request) Result {
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | 	if strings.Contains(state.Name(), rule.Substring) {
 | 
					
						
							|  |  |  | 		return RewriteDone
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	return RewriteIgnored
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Rewrite rewrites the current request when the name in the question
 | 
					
						
							|  |  |  | // section of the request matches a regular expression.
 | 
					
						
							| 
									
										
										
										
											2019-06-25 08:00:33 +01:00
										 |  |  | func (rule *regexTTLRule) Rewrite(ctx context.Context, state request.Request) Result {
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | 	regexGroups := rule.Pattern.FindStringSubmatch(state.Name())
 | 
					
						
							|  |  |  | 	if len(regexGroups) == 0 {
 | 
					
						
							|  |  |  | 		return RewriteIgnored
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	return RewriteDone
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-25 08:00:33 +01:00
										 |  |  | // newTTLRule creates a name matching rule based on exact, partial, or regex match
 | 
					
						
							|  |  |  | func newTTLRule(nextAction string, args ...string) (Rule, error) {
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | 	if len(args) < 2 {
 | 
					
						
							|  |  |  | 		return nil, fmt.Errorf("too few (%d) arguments for a ttl rule", len(args))
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	var s string
 | 
					
						
							|  |  |  | 	if len(args) == 2 {
 | 
					
						
							|  |  |  | 		s = args[1]
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	if len(args) == 3 {
 | 
					
						
							|  |  |  | 		s = args[2]
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2019-06-25 08:00:33 +01:00
										 |  |  | 	ttl, valid := isValidTTL(s)
 | 
					
						
							|  |  |  | 	if !valid {
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | 		return nil, fmt.Errorf("invalid TTL '%s' for a ttl rule", s)
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	if len(args) == 3 {
 | 
					
						
							|  |  |  | 		switch strings.ToLower(args[0]) {
 | 
					
						
							|  |  |  | 		case ExactMatch:
 | 
					
						
							| 
									
										
										
										
											2019-06-25 08:00:33 +01:00
										 |  |  | 			return &exactTTLRule{
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | 				nextAction,
 | 
					
						
							|  |  |  | 				plugin.Name(args[1]).Normalize(),
 | 
					
						
							|  |  |  | 				ResponseRule{
 | 
					
						
							|  |  |  | 					Active: true,
 | 
					
						
							|  |  |  | 					Type:   "ttl",
 | 
					
						
							| 
									
										
										
										
											2019-06-25 08:00:33 +01:00
										 |  |  | 					TTL:    ttl,
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | 				},
 | 
					
						
							|  |  |  | 			}, nil
 | 
					
						
							|  |  |  | 		case PrefixMatch:
 | 
					
						
							| 
									
										
										
										
											2019-06-25 08:00:33 +01:00
										 |  |  | 			return &prefixTTLRule{
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | 				nextAction,
 | 
					
						
							|  |  |  | 				plugin.Name(args[1]).Normalize(),
 | 
					
						
							|  |  |  | 				ResponseRule{
 | 
					
						
							|  |  |  | 					Active: true,
 | 
					
						
							|  |  |  | 					Type:   "ttl",
 | 
					
						
							| 
									
										
										
										
											2019-06-25 08:00:33 +01:00
										 |  |  | 					TTL:    ttl,
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | 				},
 | 
					
						
							|  |  |  | 			}, nil
 | 
					
						
							|  |  |  | 		case SuffixMatch:
 | 
					
						
							| 
									
										
										
										
											2019-06-25 08:00:33 +01:00
										 |  |  | 			return &suffixTTLRule{
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | 				nextAction,
 | 
					
						
							|  |  |  | 				plugin.Name(args[1]).Normalize(),
 | 
					
						
							|  |  |  | 				ResponseRule{
 | 
					
						
							|  |  |  | 					Active: true,
 | 
					
						
							|  |  |  | 					Type:   "ttl",
 | 
					
						
							| 
									
										
										
										
											2019-06-25 08:00:33 +01:00
										 |  |  | 					TTL:    ttl,
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | 				},
 | 
					
						
							|  |  |  | 			}, nil
 | 
					
						
							|  |  |  | 		case SubstringMatch:
 | 
					
						
							| 
									
										
										
										
											2019-06-25 08:00:33 +01:00
										 |  |  | 			return &substringTTLRule{
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | 				nextAction,
 | 
					
						
							|  |  |  | 				plugin.Name(args[1]).Normalize(),
 | 
					
						
							|  |  |  | 				ResponseRule{
 | 
					
						
							|  |  |  | 					Active: true,
 | 
					
						
							|  |  |  | 					Type:   "ttl",
 | 
					
						
							| 
									
										
										
										
											2019-06-25 08:00:33 +01:00
										 |  |  | 					TTL:    ttl,
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | 				},
 | 
					
						
							|  |  |  | 			}, nil
 | 
					
						
							|  |  |  | 		case RegexMatch:
 | 
					
						
							|  |  |  | 			regexPattern, err := regexp.Compile(args[1])
 | 
					
						
							|  |  |  | 			if err != nil {
 | 
					
						
							| 
									
										
										
										
											2019-02-27 20:25:02 +07:00
										 |  |  | 				return nil, fmt.Errorf("invalid regex pattern in a ttl rule: %s", args[1])
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | 			}
 | 
					
						
							| 
									
										
										
										
											2019-06-25 08:00:33 +01:00
										 |  |  | 			return ®exTTLRule{
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | 				nextAction,
 | 
					
						
							|  |  |  | 				regexPattern,
 | 
					
						
							|  |  |  | 				ResponseRule{
 | 
					
						
							|  |  |  | 					Active: true,
 | 
					
						
							|  |  |  | 					Type:   "ttl",
 | 
					
						
							| 
									
										
										
										
											2019-06-25 08:00:33 +01:00
										 |  |  | 					TTL:    ttl,
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | 				},
 | 
					
						
							|  |  |  | 			}, nil
 | 
					
						
							|  |  |  | 		default:
 | 
					
						
							|  |  |  | 			return nil, fmt.Errorf("A ttl rule supports only exact, prefix, suffix, substring, and regex name matching")
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	if len(args) > 3 {
 | 
					
						
							|  |  |  | 		return nil, fmt.Errorf("many few arguments for a ttl rule")
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2019-06-25 08:00:33 +01:00
										 |  |  | 	return &exactTTLRule{
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | 		nextAction,
 | 
					
						
							|  |  |  | 		plugin.Name(args[0]).Normalize(),
 | 
					
						
							|  |  |  | 		ResponseRule{
 | 
					
						
							|  |  |  | 			Active: true,
 | 
					
						
							|  |  |  | 			Type:   "ttl",
 | 
					
						
							| 
									
										
										
										
											2019-06-25 08:00:33 +01:00
										 |  |  | 			TTL:    ttl,
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | 		},
 | 
					
						
							|  |  |  | 	}, nil
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Mode returns the processing nextAction
 | 
					
						
							| 
									
										
										
										
											2019-06-25 08:00:33 +01:00
										 |  |  | func (rule *exactTTLRule) Mode() string     { return rule.NextAction }
 | 
					
						
							|  |  |  | func (rule *prefixTTLRule) Mode() string    { return rule.NextAction }
 | 
					
						
							|  |  |  | func (rule *suffixTTLRule) Mode() string    { return rule.NextAction }
 | 
					
						
							|  |  |  | func (rule *substringTTLRule) Mode() string { return rule.NextAction }
 | 
					
						
							|  |  |  | func (rule *regexTTLRule) Mode() string     { return rule.NextAction }
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | // GetResponseRule return a rule to rewrite the response with. Currently not implemented.
 | 
					
						
							| 
									
										
										
										
											2019-06-25 08:00:33 +01:00
										 |  |  | func (rule *exactTTLRule) GetResponseRule() ResponseRule {
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | 	return rule.ResponseRule
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // GetResponseRule return a rule to rewrite the response with. Currently not implemented.
 | 
					
						
							| 
									
										
										
										
											2019-06-25 08:00:33 +01:00
										 |  |  | func (rule *prefixTTLRule) GetResponseRule() ResponseRule {
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | 	return rule.ResponseRule
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // GetResponseRule return a rule to rewrite the response with. Currently not implemented.
 | 
					
						
							| 
									
										
										
										
											2019-06-25 08:00:33 +01:00
										 |  |  | func (rule *suffixTTLRule) GetResponseRule() ResponseRule {
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | 	return rule.ResponseRule
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // GetResponseRule return a rule to rewrite the response with. Currently not implemented.
 | 
					
						
							| 
									
										
										
										
											2019-06-25 08:00:33 +01:00
										 |  |  | func (rule *substringTTLRule) GetResponseRule() ResponseRule {
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | 	return rule.ResponseRule
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // GetResponseRule return a rule to rewrite the response with.
 | 
					
						
							| 
									
										
										
										
											2019-06-25 08:00:33 +01:00
										 |  |  | func (rule *regexTTLRule) GetResponseRule() ResponseRule {
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | 	return rule.ResponseRule
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-25 08:00:33 +01:00
										 |  |  | // validTTL returns true if v is valid TTL value.
 | 
					
						
							|  |  |  | func isValidTTL(v string) (uint32, bool) {
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | 	i, err := strconv.Atoi(v)
 | 
					
						
							|  |  |  | 	if err != nil {
 | 
					
						
							|  |  |  | 		return uint32(0), false
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	if i > 2147483647 {
 | 
					
						
							|  |  |  | 		return uint32(0), false
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	if i < 0 {
 | 
					
						
							|  |  |  | 		return uint32(0), false
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	return uint32(i), true
 | 
					
						
							|  |  |  | }
 |