proxyutil

package
v0.42.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 8, 2022 License: Apache-2.0 Imports: 10 Imported by: 0

Documentation

Overview

Package proxyutil contains helper functions that are used in all other dnsproxy packages

Index

Constants

View Source
const ErrTooLarge errors.Error = "dns message is too large"

ErrTooLarge means that a DNS message is larger than 64KiB.

Variables

This section is empty.

Functions

func AppendIPAddrs

func AppendIPAddrs(ipAddrs *[]net.IPAddr, answers []dns.RR)

AppendIPAddrs appends the IP addresses got from dns.RR to the specified array

func ContainsIP

func ContainsIP(nets []*net.IPNet, ip net.IP) (ok bool)

ContainsIP returns true if any of nets contains ip.

func DNSSize

func DNSSize(isUDP bool, r *dns.Msg) int

DNSSize returns if buffer size *advertised* in the requests OPT record. Or when the request was over TCP, we return the maximum allowed size of 64K.

func IPFromRR

func IPFromRR(rr dns.RR) (ip net.IP)

IPFromRR returns the IP address from rr if any.

func ReadPrefixed

func ReadPrefixed(conn net.Conn) ([]byte, error)

ReadPrefixed reads a DNS message with a 2-byte prefix containing message length from conn.

func SortIPAddrs

func SortIPAddrs(ipAddrs []net.IPAddr) []net.IPAddr

SortIPAddrs sorts the specified IP addresses array IPv4 addresses go first, then IPv6 addresses

func UDPGetOOBSize

func UDPGetOOBSize() (oobSize int)

UDPGetOOBSize returns maximum size of the received OOB data.

func UDPRead

func UDPRead(
	c *net.UDPConn,
	buf []byte,
	udpOOBSize int,
) (n int, localIP net.IP, remoteAddr *net.UDPAddr, err error)

UDPRead udpRead reads the message from c using buf receives payload of size udpOOBSize from the UDP socket. It returns the number of bytes copied into buf, the number of bytes copied with OOB and the source address of the message.

func UDPSetOptions

func UDPSetOptions(c *net.UDPConn) (err error)

UDPSetOptions sets flag options on a UDP socket to be able to receive the necessary OOB data.

func UDPWrite

func UDPWrite(
	data []byte,
	conn *net.UDPConn,
	remoteAddr *net.UDPAddr,
	localIP net.IP,
) (n int, err error)

UDPWrite writes the data to the remoteAddr using conn.

func WritePrefixed

func WritePrefixed(b []byte, conn net.Conn) error

WritePrefixed -- write a DNS message to a TCP connection it first writes a 2-byte prefix followed by the message itself

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL