mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-31 14:31:02 +00:00 
			
		
		
		
	* Add Dependencie Update Script * update gitea.com/lunny/levelqueue * update github.com/PuerkitoBio/goquery * update github.com/alecthomas/chroma * update github.com/blevesearch/bleve/v2 * update github.com/caddyserver/certmagic * update github.com/go-enry/go-enry/v2 * update github.com/go-redis/redis/v8 * update github.com/hashicorp/golang-lru * update github.com/klauspost/compress * update github.com/markbates/goth * update github.com/mholt/archiver/v3 * update github.com/microcosm-cc/bluemonday * update github.com/minio/minio-go/v7 * update github.com/olivere/elastic/v7 * update github.com/xanzy/go-gitlab * update github.com/yuin/goldmark
		
			
				
	
	
		
			62 lines
		
	
	
	
		
			1.9 KiB
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
			
		
		
	
	
			62 lines
		
	
	
	
		
			1.9 KiB
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
| package dns
 | |
| 
 | |
| // MsgAcceptFunc is used early in the server code to accept or reject a message with RcodeFormatError.
 | |
| // It returns a MsgAcceptAction to indicate what should happen with the message.
 | |
| type MsgAcceptFunc func(dh Header) MsgAcceptAction
 | |
| 
 | |
| // DefaultMsgAcceptFunc checks the request and will reject if:
 | |
| //
 | |
| // * isn't a request (don't respond in that case)
 | |
| //
 | |
| // * opcode isn't OpcodeQuery or OpcodeNotify
 | |
| //
 | |
| // * Zero bit isn't zero
 | |
| //
 | |
| // * has more than 1 question in the question section
 | |
| //
 | |
| // * has more than 1 RR in the Answer section
 | |
| //
 | |
| // * has more than 0 RRs in the Authority section
 | |
| //
 | |
| // * has more than 2 RRs in the Additional section
 | |
| //
 | |
| var DefaultMsgAcceptFunc MsgAcceptFunc = defaultMsgAcceptFunc
 | |
| 
 | |
| // MsgAcceptAction represents the action to be taken.
 | |
| type MsgAcceptAction int
 | |
| 
 | |
| // Allowed returned values from a MsgAcceptFunc.
 | |
| const (
 | |
| 	MsgAccept               MsgAcceptAction = iota // Accept the message
 | |
| 	MsgReject                                      // Reject the message with a RcodeFormatError
 | |
| 	MsgIgnore                                      // Ignore the error and send nothing back.
 | |
| 	MsgRejectNotImplemented                        // Reject the message with a RcodeNotImplemented
 | |
| )
 | |
| 
 | |
| func defaultMsgAcceptFunc(dh Header) MsgAcceptAction {
 | |
| 	if isResponse := dh.Bits&_QR != 0; isResponse {
 | |
| 		return MsgIgnore
 | |
| 	}
 | |
| 
 | |
| 	// Don't allow dynamic updates, because then the sections can contain a whole bunch of RRs.
 | |
| 	opcode := int(dh.Bits>>11) & 0xF
 | |
| 	if opcode != OpcodeQuery && opcode != OpcodeNotify {
 | |
| 		return MsgRejectNotImplemented
 | |
| 	}
 | |
| 
 | |
| 	if dh.Qdcount != 1 {
 | |
| 		return MsgReject
 | |
| 	}
 | |
| 	// NOTIFY requests can have a SOA in the ANSWER section. See RFC 1996 Section 3.7 and 3.11.
 | |
| 	if dh.Ancount > 1 {
 | |
| 		return MsgReject
 | |
| 	}
 | |
| 	// IXFR request could have one SOA RR in the NS section. See RFC 1995, section 3.
 | |
| 	if dh.Nscount > 1 {
 | |
| 		return MsgReject
 | |
| 	}
 | |
| 	if dh.Arcount > 2 {
 | |
| 		return MsgReject
 | |
| 	}
 | |
| 	return MsgAccept
 | |
| }
 |