AdGuardHome/dnsforward/upstream_pool.go

75 lines
1.5 KiB
Go
Raw Normal View History

2018-11-28 12:40:56 +00:00
package dnsforward
import (
"crypto/tls"
"net"
"sync"
"github.com/joomcode/errorx"
)
2018-12-05 09:52:23 +00:00
// Upstream TLS pool.
2018-11-28 12:40:56 +00:00
//
// Example:
2018-12-05 09:52:23 +00:00
// pool := TLSPool{Address: "tls://1.1.1.1:853"}
// netConn, err := pool.Get()
// if err != nil {panic(err)}
// c := dns.Conn{Conn: netConn}
// q := dns.Msg{}
// q.SetQuestion("google.com.", dns.TypeA)
// log.Println(q)
// err = c.WriteMsg(&q)
// if err != nil {panic(err)}
// r, err := c.ReadMsg()
// if err != nil {panic(err)}
// log.Println(r)
// pool.Put(c.Conn)
2018-11-28 12:40:56 +00:00
type TLSPool struct {
boot *bootstrapper
2018-11-28 12:40:56 +00:00
// connections
2018-11-28 12:40:56 +00:00
conns []net.Conn
connsMutex sync.Mutex // protects conns
2018-11-28 12:40:56 +00:00
}
func (n *TLSPool) Get() (net.Conn, error) {
address, tlsConfig, err := n.boot.get()
2018-11-28 12:40:56 +00:00
if err != nil {
return nil, err
}
// get the connection from the slice inside the lock
var c net.Conn
n.connsMutex.Lock()
2018-11-28 12:40:56 +00:00
num := len(n.conns)
if num > 0 {
last := num - 1
c = n.conns[last]
n.conns = n.conns[:last]
}
n.connsMutex.Unlock()
2018-11-28 12:40:56 +00:00
// if we got connection from the slice, return it
if c != nil {
// log.Printf("Returning existing connection to %s", host)
return c, nil
}
// we'll need a new connection, dial now
// log.Printf("Dialing to %s", address)
conn, err := tls.Dial("tcp", address, tlsConfig)
2018-11-28 12:40:56 +00:00
if err != nil {
return nil, errorx.Decorate(err, "Failed to connect to %s", address)
2018-11-28 12:40:56 +00:00
}
return conn, nil
}
func (n *TLSPool) Put(c net.Conn) {
if c == nil {
return
}
n.connsMutex.Lock()
2018-11-28 12:40:56 +00:00
n.conns = append(n.conns, c)
n.connsMutex.Unlock()
2018-11-28 12:40:56 +00:00
}