mirror of
				https://github.com/coredns/coredns.git
				synced 2025-11-04 03:03:14 -05:00 
			
		
		
		
	* Add edns0 code rewrite * check arg count * change `new`; set EDNS0 if request doesn't have it set * change set to replace_or_append * change to append_or_replace * return error in new * update documents * fixt UT * return error * go fmt * Rework for more general EDNS0 use Also changed how rules are created and validated. Implements EDNS0 NSID in addition to local. * go fmt * README updates, NSID tests and fixes * gofmt -s -w * Fix tests for rewrite syntax change * Add tests, fix error message * Review nits * Missed on nit * More tests, integration test, fix edns0 parse issue * Fix README, use RewriteIgnored * go fmt
		
			
				
	
	
		
			36 lines
		
	
	
		
			817 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			817 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package rewrite
 | 
						|
 | 
						|
import (
 | 
						|
	"fmt"
 | 
						|
	"strings"
 | 
						|
 | 
						|
	"github.com/miekg/dns"
 | 
						|
)
 | 
						|
 | 
						|
type classRule struct {
 | 
						|
	fromClass, toClass uint16
 | 
						|
}
 | 
						|
 | 
						|
func newClassRule(fromS, toS string) (Rule, error) {
 | 
						|
	var from, to uint16
 | 
						|
	var ok bool
 | 
						|
	if from, ok = dns.StringToClass[strings.ToUpper(fromS)]; !ok {
 | 
						|
		return nil, fmt.Errorf("invalid class %q", strings.ToUpper(fromS))
 | 
						|
	}
 | 
						|
	if to, ok = dns.StringToClass[strings.ToUpper(toS)]; !ok {
 | 
						|
		return nil, fmt.Errorf("invalid class %q", strings.ToUpper(toS))
 | 
						|
	}
 | 
						|
	return &classRule{fromClass: from, toClass: to}, nil
 | 
						|
}
 | 
						|
 | 
						|
// Rewrite rewrites the the current request.
 | 
						|
func (rule *classRule) Rewrite(r *dns.Msg) Result {
 | 
						|
	if rule.fromClass > 0 && rule.toClass > 0 {
 | 
						|
		if r.Question[0].Qclass == rule.fromClass {
 | 
						|
			r.Question[0].Qclass = rule.toClass
 | 
						|
			return RewriteDone
 | 
						|
		}
 | 
						|
	}
 | 
						|
	return RewriteIgnored
 | 
						|
}
 |