| 
									
										
										
										
											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"
 | 
					
						
							| 
									
										
										
										
											2021-05-04 10:05:45 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/miekg/dns"
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-04 10:05:45 +02:00
										 |  |  | type ttlResponseRule struct {
 | 
					
						
							| 
									
										
										
										
											2022-08-17 21:33:51 +02:00
										 |  |  | 	minTTL uint32
 | 
					
						
							|  |  |  | 	maxTTL uint32
 | 
					
						
							| 
									
										
										
										
											2021-05-04 10:05:45 +02:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-13 17:49:36 +05:30
										 |  |  | func (r *ttlResponseRule) RewriteResponse(res *dns.Msg, rr dns.RR) {
 | 
					
						
							| 
									
										
										
										
											2022-08-17 21:33:51 +02:00
										 |  |  | 	if rr.Header().Ttl < r.minTTL {
 | 
					
						
							|  |  |  | 		rr.Header().Ttl = r.minTTL
 | 
					
						
							|  |  |  | 	} else if rr.Header().Ttl > r.maxTTL {
 | 
					
						
							|  |  |  | 		rr.Header().Ttl = r.maxTTL
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2021-05-04 10:05:45 +02:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type ttlRuleBase struct {
 | 
					
						
							|  |  |  | 	nextAction string
 | 
					
						
							|  |  |  | 	response   ttlResponseRule
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-17 21:33:51 +02:00
										 |  |  | func newTTLRuleBase(nextAction string, minTtl, maxTtl uint32) ttlRuleBase {
 | 
					
						
							| 
									
										
										
										
											2021-05-04 10:05:45 +02:00
										 |  |  | 	return ttlRuleBase{
 | 
					
						
							|  |  |  | 		nextAction: nextAction,
 | 
					
						
							| 
									
										
										
										
											2022-08-17 21:33:51 +02:00
										 |  |  | 		response:   ttlResponseRule{minTTL: minTtl, maxTTL: maxTtl},
 | 
					
						
							| 
									
										
										
										
											2021-05-04 10:05:45 +02:00
										 |  |  | 	}
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (rule *ttlRuleBase) responseRule(match bool) (ResponseRules, Result) {
 | 
					
						
							|  |  |  | 	if match {
 | 
					
						
							|  |  |  | 		return ResponseRules{&rule.response}, RewriteDone
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	return nil, RewriteIgnored
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Mode returns the processing nextAction
 | 
					
						
							|  |  |  | func (rule *ttlRuleBase) Mode() string { return rule.nextAction }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-25 08:00:33 +01:00
										 |  |  | type exactTTLRule struct {
 | 
					
						
							| 
									
										
										
										
											2021-05-04 10:05:45 +02:00
										 |  |  | 	ttlRuleBase
 | 
					
						
							|  |  |  | 	From string
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-25 08:00:33 +01:00
										 |  |  | type prefixTTLRule struct {
 | 
					
						
							| 
									
										
										
										
											2021-05-04 10:05:45 +02:00
										 |  |  | 	ttlRuleBase
 | 
					
						
							|  |  |  | 	Prefix string
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-25 08:00:33 +01:00
										 |  |  | type suffixTTLRule struct {
 | 
					
						
							| 
									
										
										
										
											2021-05-04 10:05:45 +02:00
										 |  |  | 	ttlRuleBase
 | 
					
						
							|  |  |  | 	Suffix string
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-25 08:00:33 +01:00
										 |  |  | type substringTTLRule struct {
 | 
					
						
							| 
									
										
										
										
											2021-05-04 10:05:45 +02:00
										 |  |  | 	ttlRuleBase
 | 
					
						
							|  |  |  | 	Substring string
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-25 08:00:33 +01:00
										 |  |  | type regexTTLRule struct {
 | 
					
						
							| 
									
										
										
										
											2021-05-04 10:05:45 +02:00
										 |  |  | 	ttlRuleBase
 | 
					
						
							|  |  |  | 	Pattern *regexp.Regexp
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Rewrite rewrites the current request based upon exact match of the name
 | 
					
						
							|  |  |  | // in the question section of the request.
 | 
					
						
							| 
									
										
										
										
											2021-05-04 10:05:45 +02:00
										 |  |  | func (rule *exactTTLRule) Rewrite(ctx context.Context, state request.Request) (ResponseRules, Result) {
 | 
					
						
							|  |  |  | 	return rule.responseRule(rule.From == state.Name())
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Rewrite rewrites the current request when the name begins with the matching string.
 | 
					
						
							| 
									
										
										
										
											2021-05-04 10:05:45 +02:00
										 |  |  | func (rule *prefixTTLRule) Rewrite(ctx context.Context, state request.Request) (ResponseRules, Result) {
 | 
					
						
							|  |  |  | 	return rule.responseRule(strings.HasPrefix(state.Name(), rule.Prefix))
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Rewrite rewrites the current request when the name ends with the matching string.
 | 
					
						
							| 
									
										
										
										
											2021-05-04 10:05:45 +02:00
										 |  |  | func (rule *suffixTTLRule) Rewrite(ctx context.Context, state request.Request) (ResponseRules, Result) {
 | 
					
						
							|  |  |  | 	return rule.responseRule(strings.HasSuffix(state.Name(), rule.Suffix))
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Rewrite rewrites the current request based upon partial match of the
 | 
					
						
							|  |  |  | // name in the question section of the request.
 | 
					
						
							| 
									
										
										
										
											2021-05-04 10:05:45 +02:00
										 |  |  | func (rule *substringTTLRule) Rewrite(ctx context.Context, state request.Request) (ResponseRules, Result) {
 | 
					
						
							|  |  |  | 	return rule.responseRule(strings.Contains(state.Name(), rule.Substring))
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Rewrite rewrites the current request when the name in the question
 | 
					
						
							|  |  |  | // section of the request matches a regular expression.
 | 
					
						
							| 
									
										
										
										
											2021-05-04 10:05:45 +02:00
										 |  |  | func (rule *regexTTLRule) Rewrite(ctx context.Context, state request.Request) (ResponseRules, Result) {
 | 
					
						
							|  |  |  | 	return rule.responseRule(len(rule.Pattern.FindStringSubmatch(state.Name())) != 0)
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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]
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2022-08-17 21:33:51 +02:00
										 |  |  | 	minTtl, maxTtl, valid := isValidTTL(s)
 | 
					
						
							| 
									
										
										
										
											2019-06-25 08:00:33 +01:00
										 |  |  | 	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{
 | 
					
						
							| 
									
										
										
										
											2022-08-17 21:33:51 +02:00
										 |  |  | 				newTTLRuleBase(nextAction, minTtl, maxTtl),
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | 				plugin.Name(args[1]).Normalize(),
 | 
					
						
							|  |  |  | 			}, nil
 | 
					
						
							|  |  |  | 		case PrefixMatch:
 | 
					
						
							| 
									
										
										
										
											2019-06-25 08:00:33 +01:00
										 |  |  | 			return &prefixTTLRule{
 | 
					
						
							| 
									
										
										
										
											2022-08-17 21:33:51 +02:00
										 |  |  | 				newTTLRuleBase(nextAction, minTtl, maxTtl),
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | 				plugin.Name(args[1]).Normalize(),
 | 
					
						
							|  |  |  | 			}, nil
 | 
					
						
							|  |  |  | 		case SuffixMatch:
 | 
					
						
							| 
									
										
										
										
											2019-06-25 08:00:33 +01:00
										 |  |  | 			return &suffixTTLRule{
 | 
					
						
							| 
									
										
										
										
											2022-08-17 21:33:51 +02:00
										 |  |  | 				newTTLRuleBase(nextAction, minTtl, maxTtl),
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | 				plugin.Name(args[1]).Normalize(),
 | 
					
						
							|  |  |  | 			}, nil
 | 
					
						
							|  |  |  | 		case SubstringMatch:
 | 
					
						
							| 
									
										
										
										
											2019-06-25 08:00:33 +01:00
										 |  |  | 			return &substringTTLRule{
 | 
					
						
							| 
									
										
										
										
											2022-08-17 21:33:51 +02:00
										 |  |  | 				newTTLRuleBase(nextAction, minTtl, maxTtl),
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | 				plugin.Name(args[1]).Normalize(),
 | 
					
						
							|  |  |  | 			}, 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{
 | 
					
						
							| 
									
										
										
										
											2022-08-17 21:33:51 +02:00
										 |  |  | 				newTTLRuleBase(nextAction, minTtl, maxTtl),
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | 				regexPattern,
 | 
					
						
							|  |  |  | 			}, nil
 | 
					
						
							|  |  |  | 		default:
 | 
					
						
							| 
									
										
										
										
											2019-10-01 07:41:29 +01:00
										 |  |  | 			return nil, fmt.Errorf("ttl rule supports only exact, prefix, suffix, substring, and regex name matching")
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | 		}
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	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{
 | 
					
						
							| 
									
										
										
										
											2022-08-17 21:33:51 +02:00
										 |  |  | 		newTTLRuleBase(nextAction, minTtl, maxTtl),
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | 		plugin.Name(args[0]).Normalize(),
 | 
					
						
							|  |  |  | 	}, nil
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-25 08:00:33 +01:00
										 |  |  | // validTTL returns true if v is valid TTL value.
 | 
					
						
							| 
									
										
										
										
											2022-08-17 21:33:51 +02:00
										 |  |  | func isValidTTL(v string) (uint32, uint32, bool) {
 | 
					
						
							|  |  |  | 	s := strings.Split(v, "-")
 | 
					
						
							|  |  |  | 	if len(s) == 1 {
 | 
					
						
							|  |  |  | 		i, err := strconv.ParseUint(s[0], 10, 32)
 | 
					
						
							|  |  |  | 		if err != nil {
 | 
					
						
							|  |  |  | 			return 0, 0, false
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 		return uint32(i), uint32(i), true
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2022-08-17 21:33:51 +02:00
										 |  |  | 	if len(s) == 2 {
 | 
					
						
							|  |  |  | 		var min, max uint64
 | 
					
						
							|  |  |  | 		var err error
 | 
					
						
							|  |  |  | 		if s[0] == "" {
 | 
					
						
							|  |  |  | 			min = 0
 | 
					
						
							|  |  |  | 		} else {
 | 
					
						
							|  |  |  | 			min, err = strconv.ParseUint(s[0], 10, 32)
 | 
					
						
							|  |  |  | 			if err != nil {
 | 
					
						
							|  |  |  | 				return 0, 0, false
 | 
					
						
							|  |  |  | 			}
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 		if s[1] == "" {
 | 
					
						
							|  |  |  | 			if s[0] == "" {
 | 
					
						
							|  |  |  | 				// explicitly reject ttl directive "-" that would otherwise be interpreted
 | 
					
						
							|  |  |  | 				// as 0-2147483647 which is pretty useless
 | 
					
						
							|  |  |  | 				return 0, 0, false
 | 
					
						
							|  |  |  | 			}
 | 
					
						
							|  |  |  | 			max = 2147483647
 | 
					
						
							|  |  |  | 		} else {
 | 
					
						
							|  |  |  | 			max, err = strconv.ParseUint(s[1], 10, 32)
 | 
					
						
							|  |  |  | 			if err != nil {
 | 
					
						
							|  |  |  | 				return 0, 0, false
 | 
					
						
							|  |  |  | 			}
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 		if min > max {
 | 
					
						
							|  |  |  | 			// reject invalid range
 | 
					
						
							|  |  |  | 			return 0, 0, false
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 		return uint32(min), uint32(max), true
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2022-08-17 21:33:51 +02:00
										 |  |  | 	return 0, 0, false
 | 
					
						
							| 
									
										
										
										
											2018-08-29 10:41:03 -04:00
										 |  |  | }
 |