| 
									
										
										
										
											2019-09-26 20:19:45 +08:00
										 |  |  | // Package rewrite is a plugin for rewriting requests internally to something different.
 | 
					
						
							| 
									
										
										
										
											2017-03-06 16:32:17 -05:00
										 |  |  | package rewrite
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import (
 | 
					
						
							| 
									
										
										
										
											2018-07-08 03:18:01 -04:00
										 |  |  | 	"context"
 | 
					
						
							| 
									
										
										
										
											2017-03-06 16:32:17 -05:00
										 |  |  | 	"encoding/hex"
 | 
					
						
							|  |  |  | 	"fmt"
 | 
					
						
							| 
									
										
										
										
											2017-08-24 09:34:07 -07:00
										 |  |  | 	"net"
 | 
					
						
							| 
									
										
										
										
											2017-03-06 16:32:17 -05:00
										 |  |  | 	"strconv"
 | 
					
						
							|  |  |  | 	"strings"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-08 03:18:01 -04:00
										 |  |  | 	"github.com/coredns/coredns/plugin/metadata"
 | 
					
						
							| 
									
										
										
										
											2018-12-06 21:18:11 +00:00
										 |  |  | 	"github.com/coredns/coredns/plugin/pkg/edns"
 | 
					
						
							| 
									
										
										
										
											2017-08-24 09:34:07 -07:00
										 |  |  | 	"github.com/coredns/coredns/request"
 | 
					
						
							| 
									
										
										
										
											2018-06-30 21:55:38 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-06 16:32:17 -05:00
										 |  |  | 	"github.com/miekg/dns"
 | 
					
						
							|  |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 15:39:50 +01:00
										 |  |  | // edns0LocalRule is a rewrite rule for EDNS0_LOCAL options.
 | 
					
						
							| 
									
										
										
										
											2017-03-06 16:32:17 -05:00
										 |  |  | type edns0LocalRule struct {
 | 
					
						
							| 
									
										
										
										
											2017-09-20 13:06:53 -07:00
										 |  |  | 	mode   string
 | 
					
						
							| 
									
										
										
										
											2017-03-06 16:32:17 -05:00
										 |  |  | 	action string
 | 
					
						
							|  |  |  | 	code   uint16
 | 
					
						
							|  |  |  | 	data   []byte
 | 
					
						
							| 
									
										
										
										
											2024-10-07 20:47:56 +03:00
										 |  |  | 	revert bool
 | 
					
						
							| 
									
										
										
										
											2017-03-06 16:32:17 -05:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 15:39:50 +01:00
										 |  |  | // edns0VariableRule is a rewrite rule for EDNS0_LOCAL options with variable.
 | 
					
						
							| 
									
										
										
										
											2017-08-24 09:34:07 -07:00
										 |  |  | type edns0VariableRule struct {
 | 
					
						
							| 
									
										
										
										
											2017-09-20 13:06:53 -07:00
										 |  |  | 	mode     string
 | 
					
						
							| 
									
										
										
										
											2017-08-24 09:34:07 -07:00
										 |  |  | 	action   string
 | 
					
						
							|  |  |  | 	code     uint16
 | 
					
						
							|  |  |  | 	variable string
 | 
					
						
							| 
									
										
										
										
											2024-10-07 20:47:56 +03:00
										 |  |  | 	revert   bool
 | 
					
						
							| 
									
										
										
										
											2017-08-24 09:34:07 -07:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 15:39:50 +01:00
										 |  |  | // ends0NsidRule is a rewrite rule for EDNS0_NSID options.
 | 
					
						
							| 
									
										
										
										
											2017-03-06 16:32:17 -05:00
										 |  |  | type edns0NsidRule struct {
 | 
					
						
							| 
									
										
										
										
											2017-09-20 13:06:53 -07:00
										 |  |  | 	mode   string
 | 
					
						
							| 
									
										
										
										
											2017-03-06 16:32:17 -05:00
										 |  |  | 	action string
 | 
					
						
							| 
									
										
										
										
											2024-10-07 20:47:56 +03:00
										 |  |  | 	revert bool
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type edns0SetResponseRule struct {
 | 
					
						
							|  |  |  | 	code uint16
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (r *edns0SetResponseRule) RewriteResponse(res *dns.Msg, _ dns.RR) {
 | 
					
						
							|  |  |  | 	ednsOpt := res.IsEdns0()
 | 
					
						
							|  |  |  | 	for idx, opt := range ednsOpt.Option {
 | 
					
						
							|  |  |  | 		if opt.Option() == r.code {
 | 
					
						
							|  |  |  | 			ednsOpt.Option = append(ednsOpt.Option[:idx], ednsOpt.Option[idx+1:]...)
 | 
					
						
							|  |  |  | 			return
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type edns0ReplaceResponseRule[T dns.EDNS0] struct {
 | 
					
						
							|  |  |  | 	code   uint16
 | 
					
						
							|  |  |  | 	source T
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (r *edns0ReplaceResponseRule[T]) RewriteResponse(res *dns.Msg, _ dns.RR) {
 | 
					
						
							|  |  |  | 	ednsOpt := res.IsEdns0()
 | 
					
						
							|  |  |  | 	for idx, opt := range ednsOpt.Option {
 | 
					
						
							|  |  |  | 		if opt.Option() == r.code {
 | 
					
						
							|  |  |  | 			ednsOpt.Option[idx] = r.source
 | 
					
						
							|  |  |  | 			return
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2017-03-06 16:32:17 -05:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 15:39:50 +01:00
										 |  |  | // setupEdns0Opt will retrieve the EDNS0 OPT or create it if it does not exist.
 | 
					
						
							| 
									
										
										
										
											2017-03-06 16:32:17 -05:00
										 |  |  | func setupEdns0Opt(r *dns.Msg) *dns.OPT {
 | 
					
						
							|  |  |  | 	o := r.IsEdns0()
 | 
					
						
							|  |  |  | 	if o == nil {
 | 
					
						
							| 
									
										
										
										
											2018-02-07 13:53:23 -05:00
										 |  |  | 		r.SetEdns0(4096, false)
 | 
					
						
							| 
									
										
										
										
											2017-03-06 16:32:17 -05:00
										 |  |  | 		o = r.IsEdns0()
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	return o
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-06-20 00:49:37 +03:00
										 |  |  | func unsetEdns0Option(opt *dns.OPT, code uint16) {
 | 
					
						
							|  |  |  | 	var newOpts []dns.EDNS0
 | 
					
						
							|  |  |  | 	for _, o := range opt.Option {
 | 
					
						
							|  |  |  | 		if o.Option() != code {
 | 
					
						
							|  |  |  | 			newOpts = append(newOpts, o)
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	opt.Option = newOpts
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-06 16:32:17 -05:00
										 |  |  | // Rewrite will alter the request EDNS0 NSID option
 | 
					
						
							| 
									
										
										
										
											2021-05-04 10:05:45 +02:00
										 |  |  | func (rule *edns0NsidRule) Rewrite(ctx context.Context, state request.Request) (ResponseRules, Result) {
 | 
					
						
							| 
									
										
										
										
											2018-07-02 15:39:50 +01:00
										 |  |  | 	o := setupEdns0Opt(state.Req)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-06-20 00:49:37 +03:00
										 |  |  | 	if rule.action == Unset {
 | 
					
						
							|  |  |  | 		unsetEdns0Option(o, dns.EDNS0NSID)
 | 
					
						
							|  |  |  | 		return nil, RewriteDone
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-10-07 20:47:56 +03:00
										 |  |  | 	var resp ResponseRules
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-06 16:32:17 -05:00
										 |  |  | 	for _, s := range o.Option {
 | 
					
						
							| 
									
										
										
										
											2018-07-02 15:39:50 +01:00
										 |  |  | 		if e, ok := s.(*dns.EDNS0_NSID); ok {
 | 
					
						
							| 
									
										
										
										
											2017-08-06 05:54:24 -07:00
										 |  |  | 			if rule.action == Replace || rule.action == Set {
 | 
					
						
							| 
									
										
										
										
											2024-10-07 20:47:56 +03:00
										 |  |  | 				if rule.revert {
 | 
					
						
							|  |  |  | 					old := *e
 | 
					
						
							|  |  |  | 					resp = append(resp, &edns0ReplaceResponseRule[*dns.EDNS0_NSID]{code: e.Code, source: &old})
 | 
					
						
							|  |  |  | 				}
 | 
					
						
							| 
									
										
										
										
											2017-03-06 16:32:17 -05:00
										 |  |  | 				e.Nsid = "" // make sure it is empty for request
 | 
					
						
							| 
									
										
										
										
											2024-10-07 20:47:56 +03:00
										 |  |  | 				return resp, RewriteDone
 | 
					
						
							| 
									
										
										
										
											2017-03-06 16:32:17 -05:00
										 |  |  | 			}
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// add option if not found
 | 
					
						
							| 
									
										
										
										
											2018-07-02 15:39:50 +01:00
										 |  |  | 	if rule.action == Append || rule.action == Set {
 | 
					
						
							| 
									
										
										
										
											2017-03-06 16:32:17 -05:00
										 |  |  | 		o.Option = append(o.Option, &dns.EDNS0_NSID{Code: dns.EDNS0NSID, Nsid: ""})
 | 
					
						
							| 
									
										
										
										
											2024-10-07 20:47:56 +03:00
										 |  |  | 		if rule.revert {
 | 
					
						
							|  |  |  | 			resp = append(resp, &edns0SetResponseRule{code: dns.EDNS0NSID})
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 		return resp, RewriteDone
 | 
					
						
							| 
									
										
										
										
											2017-03-06 16:32:17 -05:00
										 |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-04 10:05:45 +02:00
										 |  |  | 	return nil, RewriteIgnored
 | 
					
						
							| 
									
										
										
										
											2017-03-06 16:32:17 -05:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 15:39:50 +01:00
										 |  |  | // Mode returns the processing mode.
 | 
					
						
							|  |  |  | func (rule *edns0NsidRule) Mode() string { return rule.mode }
 | 
					
						
							| 
									
										
										
										
											2017-09-20 13:06:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 15:39:50 +01:00
										 |  |  | // Rewrite will alter the request EDNS0 local options.
 | 
					
						
							| 
									
										
										
										
											2021-05-04 10:05:45 +02:00
										 |  |  | func (rule *edns0LocalRule) Rewrite(ctx context.Context, state request.Request) (ResponseRules, Result) {
 | 
					
						
							| 
									
										
										
										
											2018-07-02 15:39:50 +01:00
										 |  |  | 	o := setupEdns0Opt(state.Req)
 | 
					
						
							| 
									
										
										
										
											2018-01-18 10:41:14 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-06-20 00:49:37 +03:00
										 |  |  | 	if rule.action == Unset {
 | 
					
						
							|  |  |  | 		unsetEdns0Option(o, rule.code)
 | 
					
						
							|  |  |  | 		return nil, RewriteDone
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-10-07 20:47:56 +03:00
										 |  |  | 	var resp ResponseRules
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-06 16:32:17 -05:00
										 |  |  | 	for _, s := range o.Option {
 | 
					
						
							| 
									
										
										
										
											2018-07-02 15:39:50 +01:00
										 |  |  | 		if e, ok := s.(*dns.EDNS0_LOCAL); ok {
 | 
					
						
							| 
									
										
										
										
											2017-03-06 16:32:17 -05:00
										 |  |  | 			if rule.code == e.Code {
 | 
					
						
							| 
									
										
										
										
											2017-08-06 05:54:24 -07:00
										 |  |  | 				if rule.action == Replace || rule.action == Set {
 | 
					
						
							| 
									
										
										
										
											2024-10-07 20:47:56 +03:00
										 |  |  | 					if rule.revert {
 | 
					
						
							|  |  |  | 						old := *e
 | 
					
						
							|  |  |  | 						resp = append(resp, &edns0ReplaceResponseRule[*dns.EDNS0_LOCAL]{code: rule.code, source: &old})
 | 
					
						
							|  |  |  | 					}
 | 
					
						
							| 
									
										
										
										
											2017-03-06 16:32:17 -05:00
										 |  |  | 					e.Data = rule.data
 | 
					
						
							| 
									
										
										
										
											2024-10-07 20:47:56 +03:00
										 |  |  | 					return resp, RewriteDone
 | 
					
						
							| 
									
										
										
										
											2017-03-06 16:32:17 -05:00
										 |  |  | 				}
 | 
					
						
							|  |  |  | 			}
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// add option if not found
 | 
					
						
							| 
									
										
										
										
											2018-07-02 15:39:50 +01:00
										 |  |  | 	if rule.action == Append || rule.action == Set {
 | 
					
						
							|  |  |  | 		o.Option = append(o.Option, &dns.EDNS0_LOCAL{Code: rule.code, Data: rule.data})
 | 
					
						
							| 
									
										
										
										
											2024-10-07 20:47:56 +03:00
										 |  |  | 		if rule.revert {
 | 
					
						
							|  |  |  | 			resp = append(resp, &edns0SetResponseRule{code: rule.code})
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 		return resp, RewriteDone
 | 
					
						
							| 
									
										
										
										
											2017-03-06 16:32:17 -05:00
										 |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-04 10:05:45 +02:00
										 |  |  | 	return nil, RewriteIgnored
 | 
					
						
							| 
									
										
										
										
											2017-03-06 16:32:17 -05:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 15:39:50 +01:00
										 |  |  | // Mode returns the processing mode.
 | 
					
						
							|  |  |  | func (rule *edns0LocalRule) Mode() string { return rule.mode }
 | 
					
						
							| 
									
										
										
										
											2017-09-20 13:06:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-06 16:32:17 -05:00
										 |  |  | // newEdns0Rule creates an EDNS0 rule of the appropriate type based on the args
 | 
					
						
							| 
									
										
										
										
											2017-09-20 13:06:53 -07:00
										 |  |  | func newEdns0Rule(mode string, args ...string) (Rule, error) {
 | 
					
						
							| 
									
										
										
										
											2017-03-06 16:32:17 -05:00
										 |  |  | 	if len(args) < 2 {
 | 
					
						
							| 
									
										
										
										
											2017-06-14 09:37:10 -07:00
										 |  |  | 		return nil, fmt.Errorf("too few arguments for an EDNS0 rule")
 | 
					
						
							| 
									
										
										
										
											2017-03-06 16:32:17 -05:00
										 |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ruleType := strings.ToLower(args[0])
 | 
					
						
							|  |  |  | 	action := strings.ToLower(args[1])
 | 
					
						
							|  |  |  | 	switch action {
 | 
					
						
							| 
									
										
										
										
											2017-08-06 05:54:24 -07:00
										 |  |  | 	case Append:
 | 
					
						
							|  |  |  | 	case Replace:
 | 
					
						
							|  |  |  | 	case Set:
 | 
					
						
							| 
									
										
										
										
											2025-06-20 00:49:37 +03:00
										 |  |  | 	case Unset:
 | 
					
						
							|  |  |  | 		return newEdns0UnsetRule(mode, action, ruleType, args...)
 | 
					
						
							| 
									
										
										
										
											2017-03-06 16:32:17 -05:00
										 |  |  | 	default:
 | 
					
						
							|  |  |  | 		return nil, fmt.Errorf("invalid action: %q", action)
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-10-07 20:47:56 +03:00
										 |  |  | 	// Extract "revert" parameter.
 | 
					
						
							|  |  |  | 	var revert bool
 | 
					
						
							|  |  |  | 	if args[len(args)-1] == "revert" {
 | 
					
						
							|  |  |  | 		revert = true
 | 
					
						
							|  |  |  | 		args = args[:len(args)-1]
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-06 16:32:17 -05:00
										 |  |  | 	switch ruleType {
 | 
					
						
							|  |  |  | 	case "local":
 | 
					
						
							|  |  |  | 		if len(args) != 4 {
 | 
					
						
							| 
									
										
										
										
											2024-10-07 20:47:56 +03:00
										 |  |  | 			return nil, fmt.Errorf("EDNS0 local rules require three or four args")
 | 
					
						
							| 
									
										
										
										
											2017-03-06 16:32:17 -05:00
										 |  |  | 		}
 | 
					
						
							| 
									
										
										
										
											2018-07-02 15:39:50 +01:00
										 |  |  | 		// Check for variable option.
 | 
					
						
							| 
									
										
										
										
											2017-08-24 09:34:07 -07:00
										 |  |  | 		if strings.HasPrefix(args[3], "{") && strings.HasSuffix(args[3], "}") {
 | 
					
						
							| 
									
										
										
										
											2024-10-07 20:47:56 +03:00
										 |  |  | 			return newEdns0VariableRule(mode, action, args[2], args[3], revert)
 | 
					
						
							| 
									
										
										
										
											2017-08-24 09:34:07 -07:00
										 |  |  | 		}
 | 
					
						
							| 
									
										
										
										
											2024-10-07 20:47:56 +03:00
										 |  |  | 		return newEdns0LocalRule(mode, action, args[2], args[3], revert)
 | 
					
						
							| 
									
										
										
										
											2017-03-06 16:32:17 -05:00
										 |  |  | 	case "nsid":
 | 
					
						
							|  |  |  | 		if len(args) != 2 {
 | 
					
						
							| 
									
										
										
										
											2024-10-07 20:47:56 +03:00
										 |  |  | 			return nil, fmt.Errorf("EDNS0 NSID rules can accept no more than one arg")
 | 
					
						
							| 
									
										
										
										
											2017-03-06 16:32:17 -05:00
										 |  |  | 		}
 | 
					
						
							| 
									
										
										
										
											2024-10-07 20:47:56 +03:00
										 |  |  | 		return &edns0NsidRule{mode: mode, action: action, revert: revert}, nil
 | 
					
						
							| 
									
										
										
										
											2017-09-08 13:36:09 -07:00
										 |  |  | 	case "subnet":
 | 
					
						
							|  |  |  | 		if len(args) != 4 {
 | 
					
						
							| 
									
										
										
										
											2024-10-07 20:47:56 +03:00
										 |  |  | 			return nil, fmt.Errorf("EDNS0 subnet rules require three or four args")
 | 
					
						
							| 
									
										
										
										
											2017-09-08 13:36:09 -07:00
										 |  |  | 		}
 | 
					
						
							| 
									
										
										
										
											2024-10-07 20:47:56 +03:00
										 |  |  | 		return newEdns0SubnetRule(mode, action, args[2], args[3], revert)
 | 
					
						
							| 
									
										
										
										
											2017-03-06 16:32:17 -05:00
										 |  |  | 	default:
 | 
					
						
							|  |  |  | 		return nil, fmt.Errorf("invalid rule type %q", ruleType)
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-06-20 00:49:37 +03:00
										 |  |  | func newEdns0UnsetRule(mode string, action string, ruleType string, args ...string) (Rule, error) {
 | 
					
						
							|  |  |  | 	switch ruleType {
 | 
					
						
							|  |  |  | 	case "local":
 | 
					
						
							|  |  |  | 		if len(args) != 3 {
 | 
					
						
							|  |  |  | 			return nil, fmt.Errorf("local unset action requires exactly two arguments")
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 		return newEdns0LocalRule(mode, action, args[2], "", false)
 | 
					
						
							|  |  |  | 	case "nsid":
 | 
					
						
							|  |  |  | 		if len(args) != 2 {
 | 
					
						
							|  |  |  | 			return nil, fmt.Errorf("nsid unset action requires exactly one argument")
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 		return &edns0NsidRule{mode, action, false}, nil
 | 
					
						
							|  |  |  | 	case "subnet":
 | 
					
						
							|  |  |  | 		if len(args) != 2 {
 | 
					
						
							|  |  |  | 			return nil, fmt.Errorf("subnet unset action requires exactly one argument")
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 		return &edns0SubnetRule{mode, 0, 0, action, false}, nil
 | 
					
						
							|  |  |  | 	default:
 | 
					
						
							|  |  |  | 		return nil, fmt.Errorf("invalid rule type %q", ruleType)
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-10-07 20:47:56 +03:00
										 |  |  | func newEdns0LocalRule(mode, action, code, data string, revert bool) (*edns0LocalRule, error) {
 | 
					
						
							| 
									
										
										
										
											2017-03-06 16:32:17 -05:00
										 |  |  | 	c, err := strconv.ParseUint(code, 0, 16)
 | 
					
						
							|  |  |  | 	if err != nil {
 | 
					
						
							|  |  |  | 		return nil, err
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	decoded := []byte(data)
 | 
					
						
							|  |  |  | 	if strings.HasPrefix(data, "0x") {
 | 
					
						
							|  |  |  | 		decoded, err = hex.DecodeString(data[2:])
 | 
					
						
							|  |  |  | 		if err != nil {
 | 
					
						
							|  |  |  | 			return nil, err
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2018-12-06 21:18:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Add this code to the ones the server supports.
 | 
					
						
							|  |  |  | 	edns.SetSupportedOption(uint16(c))
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-10-07 20:47:56 +03:00
										 |  |  | 	return &edns0LocalRule{mode: mode, action: action, code: uint16(c), data: decoded, revert: revert}, nil
 | 
					
						
							| 
									
										
										
										
											2017-03-06 16:32:17 -05:00
										 |  |  | }
 | 
					
						
							| 
									
										
										
										
											2017-08-06 05:54:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-24 09:34:07 -07:00
										 |  |  | // newEdns0VariableRule creates an EDNS0 rule that handles variable substitution
 | 
					
						
							| 
									
										
										
										
											2024-10-07 20:47:56 +03:00
										 |  |  | func newEdns0VariableRule(mode, action, code, variable string, revert bool) (*edns0VariableRule, error) {
 | 
					
						
							| 
									
										
										
										
											2017-08-24 09:34:07 -07:00
										 |  |  | 	c, err := strconv.ParseUint(code, 0, 16)
 | 
					
						
							|  |  |  | 	if err != nil {
 | 
					
						
							|  |  |  | 		return nil, err
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2018-07-01 20:01:17 +01:00
										 |  |  | 	//Validate
 | 
					
						
							|  |  |  | 	if !isValidVariable(variable) {
 | 
					
						
							|  |  |  | 		return nil, fmt.Errorf("unsupported variable name %q", variable)
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2018-12-06 21:18:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Add this code to the ones the server supports.
 | 
					
						
							|  |  |  | 	edns.SetSupportedOption(uint16(c))
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-10-07 20:47:56 +03:00
										 |  |  | 	return &edns0VariableRule{mode: mode, action: action, code: uint16(c), variable: variable, revert: revert}, nil
 | 
					
						
							| 
									
										
										
										
											2017-08-24 09:34:07 -07:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 15:39:50 +01:00
										 |  |  | // ruleData returns the data specified by the variable.
 | 
					
						
							| 
									
										
										
										
											2018-07-08 03:18:01 -04:00
										 |  |  | func (rule *edns0VariableRule) ruleData(ctx context.Context, state request.Request) ([]byte, error) {
 | 
					
						
							| 
									
										
										
										
											2018-07-01 20:01:17 +01:00
										 |  |  | 	switch rule.variable {
 | 
					
						
							|  |  |  | 	case queryName:
 | 
					
						
							| 
									
										
										
										
											2018-07-02 15:39:50 +01:00
										 |  |  | 		return []byte(state.QName()), nil
 | 
					
						
							| 
									
										
										
										
											2018-07-01 20:01:17 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	case queryType:
 | 
					
						
							| 
									
										
										
										
											2018-07-02 15:39:50 +01:00
										 |  |  | 		return uint16ToWire(state.QType()), nil
 | 
					
						
							| 
									
										
										
										
											2018-07-01 20:01:17 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	case clientIP:
 | 
					
						
							| 
									
										
										
										
											2018-07-02 15:39:50 +01:00
										 |  |  | 		return ipToWire(state.Family(), state.IP())
 | 
					
						
							| 
									
										
										
										
											2018-07-01 20:01:17 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	case serverIP:
 | 
					
						
							| 
									
										
										
										
											2018-07-02 15:39:50 +01:00
										 |  |  | 		return ipToWire(state.Family(), state.LocalIP())
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	case clientPort:
 | 
					
						
							|  |  |  | 		return portToWire(state.Port())
 | 
					
						
							| 
									
										
										
										
											2018-07-01 20:01:17 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	case serverPort:
 | 
					
						
							| 
									
										
										
										
											2018-07-02 15:39:50 +01:00
										 |  |  | 		return portToWire(state.LocalPort())
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	case protocol:
 | 
					
						
							|  |  |  | 		return []byte(state.Proto()), nil
 | 
					
						
							| 
									
										
										
										
											2017-08-24 09:34:07 -07:00
										 |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2018-07-01 20:01:17 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-08 03:18:01 -04:00
										 |  |  | 	fetcher := metadata.ValueFunc(ctx, rule.variable[1:len(rule.variable)-1])
 | 
					
						
							|  |  |  | 	if fetcher != nil {
 | 
					
						
							| 
									
										
										
										
											2018-07-08 17:38:46 -04:00
										 |  |  | 		value := fetcher()
 | 
					
						
							|  |  |  | 		if len(value) > 0 {
 | 
					
						
							|  |  |  | 			return []byte(value), nil
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							| 
									
										
										
										
											2018-07-08 03:18:01 -04:00
										 |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-13 16:08:06 +00:00
										 |  |  | 	return nil, fmt.Errorf("unable to extract data for variable %s", rule.variable)
 | 
					
						
							| 
									
										
										
										
											2017-08-24 09:34:07 -07:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 15:39:50 +01:00
										 |  |  | // Rewrite will alter the request EDNS0 local options with specified variables.
 | 
					
						
							| 
									
										
										
										
											2021-05-04 10:05:45 +02:00
										 |  |  | func (rule *edns0VariableRule) Rewrite(ctx context.Context, state request.Request) (ResponseRules, Result) {
 | 
					
						
							| 
									
										
										
										
											2018-07-08 03:18:01 -04:00
										 |  |  | 	data, err := rule.ruleData(ctx, state)
 | 
					
						
							| 
									
										
										
										
											2017-08-24 09:34:07 -07:00
										 |  |  | 	if err != nil || data == nil {
 | 
					
						
							| 
									
										
										
										
											2021-05-04 10:05:45 +02:00
										 |  |  | 		return nil, RewriteIgnored
 | 
					
						
							| 
									
										
										
										
											2017-08-24 09:34:07 -07:00
										 |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-10-07 20:47:56 +03:00
										 |  |  | 	var resp ResponseRules
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 15:39:50 +01:00
										 |  |  | 	o := setupEdns0Opt(state.Req)
 | 
					
						
							| 
									
										
										
										
											2017-08-24 09:34:07 -07:00
										 |  |  | 	for _, s := range o.Option {
 | 
					
						
							| 
									
										
										
										
											2018-07-02 15:39:50 +01:00
										 |  |  | 		if e, ok := s.(*dns.EDNS0_LOCAL); ok {
 | 
					
						
							| 
									
										
										
										
											2017-08-24 09:34:07 -07:00
										 |  |  | 			if rule.code == e.Code {
 | 
					
						
							|  |  |  | 				if rule.action == Replace || rule.action == Set {
 | 
					
						
							| 
									
										
										
										
											2024-10-07 20:47:56 +03:00
										 |  |  | 					if rule.revert {
 | 
					
						
							|  |  |  | 						old := *e
 | 
					
						
							|  |  |  | 						resp = append(resp, &edns0ReplaceResponseRule[*dns.EDNS0_LOCAL]{code: rule.code, source: &old})
 | 
					
						
							|  |  |  | 					}
 | 
					
						
							| 
									
										
										
										
											2017-08-24 09:34:07 -07:00
										 |  |  | 					e.Data = data
 | 
					
						
							| 
									
										
										
										
											2024-10-07 20:47:56 +03:00
										 |  |  | 					return resp, RewriteDone
 | 
					
						
							| 
									
										
										
										
											2017-08-24 09:34:07 -07:00
										 |  |  | 				}
 | 
					
						
							| 
									
										
										
										
											2021-05-04 10:05:45 +02:00
										 |  |  | 				return nil, RewriteIgnored
 | 
					
						
							| 
									
										
										
										
											2017-08-24 09:34:07 -07:00
										 |  |  | 			}
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// add option if not found
 | 
					
						
							| 
									
										
										
										
											2018-07-02 15:39:50 +01:00
										 |  |  | 	if rule.action == Append || rule.action == Set {
 | 
					
						
							|  |  |  | 		o.Option = append(o.Option, &dns.EDNS0_LOCAL{Code: rule.code, Data: data})
 | 
					
						
							| 
									
										
										
										
											2024-10-07 20:47:56 +03:00
										 |  |  | 		if rule.revert {
 | 
					
						
							|  |  |  | 			resp = append(resp, &edns0SetResponseRule{code: rule.code})
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 		return resp, RewriteDone
 | 
					
						
							| 
									
										
										
										
											2017-08-24 09:34:07 -07:00
										 |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-04 10:05:45 +02:00
										 |  |  | 	return nil, RewriteIgnored
 | 
					
						
							| 
									
										
										
										
											2017-08-24 09:34:07 -07:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 15:39:50 +01:00
										 |  |  | // Mode returns the processing mode.
 | 
					
						
							|  |  |  | func (rule *edns0VariableRule) Mode() string { return rule.mode }
 | 
					
						
							| 
									
										
										
										
											2017-09-20 13:06:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-01 20:01:17 +01:00
										 |  |  | func isValidVariable(variable string) bool {
 | 
					
						
							|  |  |  | 	switch variable {
 | 
					
						
							|  |  |  | 	case
 | 
					
						
							|  |  |  | 		queryName,
 | 
					
						
							|  |  |  | 		queryType,
 | 
					
						
							|  |  |  | 		clientIP,
 | 
					
						
							|  |  |  | 		clientPort,
 | 
					
						
							|  |  |  | 		protocol,
 | 
					
						
							|  |  |  | 		serverIP,
 | 
					
						
							|  |  |  | 		serverPort:
 | 
					
						
							|  |  |  | 		return true
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2018-07-08 03:18:01 -04:00
										 |  |  | 	// we cannot validate the labels of metadata - but we can verify it has the syntax of a label
 | 
					
						
							|  |  |  | 	if strings.HasPrefix(variable, "{") && strings.HasSuffix(variable, "}") && metadata.IsLabel(variable[1:len(variable)-1]) {
 | 
					
						
							|  |  |  | 		return true
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2018-07-01 20:01:17 +01:00
										 |  |  | 	return false
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-08 13:36:09 -07:00
										 |  |  | // ends0SubnetRule is a rewrite rule for EDNS0 subnet options
 | 
					
						
							|  |  |  | type edns0SubnetRule struct {
 | 
					
						
							| 
									
										
										
										
											2017-09-20 13:06:53 -07:00
										 |  |  | 	mode         string
 | 
					
						
							| 
									
										
										
										
											2017-09-08 13:36:09 -07:00
										 |  |  | 	v4BitMaskLen uint8
 | 
					
						
							|  |  |  | 	v6BitMaskLen uint8
 | 
					
						
							|  |  |  | 	action       string
 | 
					
						
							| 
									
										
										
										
											2024-10-07 20:47:56 +03:00
										 |  |  | 	revert       bool
 | 
					
						
							| 
									
										
										
										
											2017-09-08 13:36:09 -07:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-10-07 20:47:56 +03:00
										 |  |  | func newEdns0SubnetRule(mode, action, v4BitMaskLen, v6BitMaskLen string, revert bool) (*edns0SubnetRule, error) {
 | 
					
						
							| 
									
										
										
										
											2017-09-08 13:36:09 -07:00
										 |  |  | 	v4Len, err := strconv.ParseUint(v4BitMaskLen, 0, 16)
 | 
					
						
							|  |  |  | 	if err != nil {
 | 
					
						
							|  |  |  | 		return nil, err
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2018-07-02 15:39:50 +01:00
										 |  |  | 	// validate V4 length
 | 
					
						
							|  |  |  | 	if v4Len > net.IPv4len*8 {
 | 
					
						
							| 
									
										
										
										
											2017-09-08 13:36:09 -07:00
										 |  |  | 		return nil, fmt.Errorf("invalid IPv4 bit mask length %d", v4Len)
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	v6Len, err := strconv.ParseUint(v6BitMaskLen, 0, 16)
 | 
					
						
							|  |  |  | 	if err != nil {
 | 
					
						
							|  |  |  | 		return nil, err
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2018-07-02 15:39:50 +01:00
										 |  |  | 	// validate V6 length
 | 
					
						
							|  |  |  | 	if v6Len > net.IPv6len*8 {
 | 
					
						
							| 
									
										
										
										
											2017-09-08 13:36:09 -07:00
										 |  |  | 		return nil, fmt.Errorf("invalid IPv6 bit mask length %d", v6Len)
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-20 13:06:53 -07:00
										 |  |  | 	return &edns0SubnetRule{mode: mode, action: action,
 | 
					
						
							| 
									
										
										
										
											2024-10-07 20:47:56 +03:00
										 |  |  | 		v4BitMaskLen: uint8(v4Len), v6BitMaskLen: uint8(v6Len), revert: revert}, nil
 | 
					
						
							| 
									
										
										
										
											2017-09-08 13:36:09 -07:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // fillEcsData sets the subnet data into the ecs option
 | 
					
						
							| 
									
										
										
										
											2018-07-02 15:39:50 +01:00
										 |  |  | func (rule *edns0SubnetRule) fillEcsData(state request.Request, ecs *dns.EDNS0_SUBNET) error {
 | 
					
						
							|  |  |  | 	family := state.Family()
 | 
					
						
							| 
									
										
										
										
											2017-09-08 13:36:09 -07:00
										 |  |  | 	if (family != 1) && (family != 2) {
 | 
					
						
							|  |  |  | 		return fmt.Errorf("unable to fill data for EDNS0 subnet due to invalid IP family")
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ecs.Family = uint16(family)
 | 
					
						
							|  |  |  | 	ecs.SourceScope = 0
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 15:39:50 +01:00
										 |  |  | 	ipAddr := state.IP()
 | 
					
						
							| 
									
										
										
										
											2017-09-08 13:36:09 -07:00
										 |  |  | 	switch family {
 | 
					
						
							|  |  |  | 	case 1:
 | 
					
						
							|  |  |  | 		ipv4Mask := net.CIDRMask(int(rule.v4BitMaskLen), 32)
 | 
					
						
							|  |  |  | 		ipv4Addr := net.ParseIP(ipAddr)
 | 
					
						
							|  |  |  | 		ecs.SourceNetmask = rule.v4BitMaskLen
 | 
					
						
							|  |  |  | 		ecs.Address = ipv4Addr.Mask(ipv4Mask).To4()
 | 
					
						
							|  |  |  | 	case 2:
 | 
					
						
							|  |  |  | 		ipv6Mask := net.CIDRMask(int(rule.v6BitMaskLen), 128)
 | 
					
						
							|  |  |  | 		ipv6Addr := net.ParseIP(ipAddr)
 | 
					
						
							|  |  |  | 		ecs.SourceNetmask = rule.v6BitMaskLen
 | 
					
						
							|  |  |  | 		ecs.Address = ipv6Addr.Mask(ipv6Mask).To16()
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	return nil
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 15:39:50 +01:00
										 |  |  | // Rewrite will alter the request EDNS0 subnet option.
 | 
					
						
							| 
									
										
										
										
											2021-05-04 10:05:45 +02:00
										 |  |  | func (rule *edns0SubnetRule) Rewrite(ctx context.Context, state request.Request) (ResponseRules, Result) {
 | 
					
						
							| 
									
										
										
										
											2018-07-02 15:39:50 +01:00
										 |  |  | 	o := setupEdns0Opt(state.Req)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-06-20 00:49:37 +03:00
										 |  |  | 	if rule.action == Unset {
 | 
					
						
							|  |  |  | 		unsetEdns0Option(o, dns.EDNS0SUBNET)
 | 
					
						
							|  |  |  | 		return nil, RewriteDone
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-10-07 20:47:56 +03:00
										 |  |  | 	var resp ResponseRules
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-08 13:36:09 -07:00
										 |  |  | 	for _, s := range o.Option {
 | 
					
						
							| 
									
										
										
										
											2018-07-02 15:39:50 +01:00
										 |  |  | 		if e, ok := s.(*dns.EDNS0_SUBNET); ok {
 | 
					
						
							| 
									
										
										
										
											2017-09-08 13:36:09 -07:00
										 |  |  | 			if rule.action == Replace || rule.action == Set {
 | 
					
						
							| 
									
										
										
										
											2024-10-07 20:47:56 +03:00
										 |  |  | 				if rule.revert {
 | 
					
						
							|  |  |  | 					old := *e
 | 
					
						
							|  |  |  | 					resp = append(resp, &edns0ReplaceResponseRule[*dns.EDNS0_SUBNET]{code: e.Code, source: &old})
 | 
					
						
							|  |  |  | 				}
 | 
					
						
							| 
									
										
										
										
											2018-07-02 15:39:50 +01:00
										 |  |  | 				if rule.fillEcsData(state, e) == nil {
 | 
					
						
							| 
									
										
										
										
											2024-10-07 20:47:56 +03:00
										 |  |  | 					return resp, RewriteDone
 | 
					
						
							| 
									
										
										
										
											2017-09-08 13:36:09 -07:00
										 |  |  | 				}
 | 
					
						
							|  |  |  | 			}
 | 
					
						
							| 
									
										
										
										
											2021-05-04 10:05:45 +02:00
										 |  |  | 			return nil, RewriteIgnored
 | 
					
						
							| 
									
										
										
										
											2017-09-08 13:36:09 -07:00
										 |  |  | 		}
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// add option if not found
 | 
					
						
							| 
									
										
										
										
											2018-07-02 15:39:50 +01:00
										 |  |  | 	if rule.action == Append || rule.action == Set {
 | 
					
						
							|  |  |  | 		opt := &dns.EDNS0_SUBNET{Code: dns.EDNS0SUBNET}
 | 
					
						
							|  |  |  | 		if rule.fillEcsData(state, opt) == nil {
 | 
					
						
							|  |  |  | 			o.Option = append(o.Option, opt)
 | 
					
						
							| 
									
										
										
										
											2024-10-07 20:47:56 +03:00
										 |  |  | 			if rule.revert {
 | 
					
						
							|  |  |  | 				resp = append(resp, &edns0SetResponseRule{code: dns.EDNS0SUBNET})
 | 
					
						
							|  |  |  | 			}
 | 
					
						
							|  |  |  | 			return resp, RewriteDone
 | 
					
						
							| 
									
										
										
										
											2017-09-08 13:36:09 -07:00
										 |  |  | 		}
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-04 10:05:45 +02:00
										 |  |  | 	return nil, RewriteIgnored
 | 
					
						
							| 
									
										
										
										
											2017-09-08 13:36:09 -07:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-20 13:06:53 -07:00
										 |  |  | // Mode returns the processing mode
 | 
					
						
							| 
									
										
										
										
											2018-07-02 15:39:50 +01:00
										 |  |  | func (rule *edns0SubnetRule) Mode() string { return rule.mode }
 | 
					
						
							| 
									
										
										
										
											2017-09-20 13:06:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-06 05:54:24 -07:00
										 |  |  | // These are all defined actions.
 | 
					
						
							|  |  |  | const (
 | 
					
						
							|  |  |  | 	Replace = "replace"
 | 
					
						
							|  |  |  | 	Set     = "set"
 | 
					
						
							|  |  |  | 	Append  = "append"
 | 
					
						
							| 
									
										
										
										
											2025-06-20 00:49:37 +03:00
										 |  |  | 	Unset   = "unset"
 | 
					
						
							| 
									
										
										
										
											2017-08-06 05:54:24 -07:00
										 |  |  | )
 | 
					
						
							| 
									
										
										
										
											2017-08-24 09:34:07 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-01 20:01:17 +01:00
										 |  |  | // Supported local EDNS0 variables
 | 
					
						
							|  |  |  | const (
 | 
					
						
							|  |  |  | 	queryName  = "{qname}"
 | 
					
						
							|  |  |  | 	queryType  = "{qtype}"
 | 
					
						
							|  |  |  | 	clientIP   = "{client_ip}"
 | 
					
						
							|  |  |  | 	clientPort = "{client_port}"
 | 
					
						
							|  |  |  | 	protocol   = "{protocol}"
 | 
					
						
							|  |  |  | 	serverIP   = "{server_ip}"
 | 
					
						
							|  |  |  | 	serverPort = "{server_port}"
 | 
					
						
							|  |  |  | )
 |