forked from folbricht/routedns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
doqlistener.go
222 lines (194 loc) · 5.4 KB
/
doqlistener.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
package rdns
import (
"context"
"crypto/tls"
"encoding/binary"
"expvar"
"io"
"net"
"time"
"github.com/miekg/dns"
quic "github.com/quic-go/quic-go"
"github.com/sirupsen/logrus"
)
// DoQListener is a DNS listener/server for QUIC.
type DoQListener struct {
id string
addr string
r Resolver
opt DoQListenerOptions
ln quic.Listener
log *logrus.Entry
metrics *DoQListenerMetrics
}
var _ Listener = &DoQListener{}
// DoQListenerOptions contains options used by the QUIC server.
type DoQListenerOptions struct {
ListenOptions
TLSConfig *tls.Config
}
type DoQListenerMetrics struct {
ListenerMetrics
// Count of connections initiated.
connection *expvar.Int
// Count of streams seen in all connections.
stream *expvar.Int
}
func NewDoQListenerMetrics(id string) *DoQListenerMetrics {
return &DoQListenerMetrics{
ListenerMetrics: ListenerMetrics{
query: getVarInt("listener", id, "query"),
response: getVarMap("listener", id, "response"),
drop: getVarInt("listener", id, "drop"),
err: getVarMap("listener", id, "error"),
},
connection: getVarInt("listener", id, "session"),
stream: getVarInt("listener", id, "stream"),
}
}
// NewQuicListener returns an instance of a QUIC listener.
func NewQUICListener(id, addr string, opt DoQListenerOptions, resolver Resolver) *DoQListener {
if opt.TLSConfig == nil {
opt.TLSConfig = new(tls.Config)
}
opt.TLSConfig.NextProtos = []string{"doq"}
l := &DoQListener{
id: id,
addr: addr,
r: resolver,
opt: opt,
log: Log.WithFields(logrus.Fields{"id": id, "protocol": "doq", "addr": addr}),
metrics: NewDoQListenerMetrics(id),
}
return l
}
// Start the QUIC server.
func (s DoQListener) Start() error {
var err error
s.ln, err = quic.ListenAddr(s.addr, s.opt.TLSConfig, &quic.Config{})
if err != nil {
return err
}
s.log.Info("starting listener")
for {
connection, err := s.ln.Accept(context.Background())
if err != nil {
s.log.WithError(err).Warn("failed to accept")
continue
}
s.log.Trace("started connection")
go func() {
s.handleConnection(connection)
_ = connection.CloseWithError(DOQNoError, "")
s.log.Trace("closing connection")
}()
}
}
// Stop the server.
func (s DoQListener) Stop() error {
Log.WithFields(logrus.Fields{"protocol": "quic", "addr": s.addr}).Info("stopping listener")
return s.ln.Close()
}
func (s DoQListener) handleConnection(connection quic.Connection) {
tlsServerName := connection.ConnectionState().TLS.ServerName
ci := ClientInfo{
Listener: s.id,
TLSServerName: tlsServerName,
}
switch addr := connection.RemoteAddr().(type) {
case *net.TCPAddr:
ci.SourceIP = addr.IP
case *net.UDPAddr:
ci.SourceIP = addr.IP
}
log := s.log.WithField("client", connection.RemoteAddr())
if !isAllowed(s.opt.AllowedNet, ci.SourceIP) {
log.Debug("rejecting incoming connection")
s.metrics.drop.Add(1)
return
}
log.Trace("accepting incoming connection")
s.metrics.connection.Add(1)
for {
ctx, cancel := context.WithTimeout(context.Background(), 2*time.Second) // TODO: configurable
stream, err := connection.AcceptStream(ctx)
if err != nil {
cancel()
break
}
log.WithField("stream", stream.StreamID()).Trace("opening stream")
go func() {
s.handleStream(stream, log, ci)
cancel()
log.WithField("stream", stream.StreamID()).Trace("closing stream")
}()
}
}
func (s DoQListener) handleStream(stream quic.Stream, log *logrus.Entry, ci ClientInfo) {
// DNS over QUIC uses one stream per query/response.
defer stream.Close()
s.metrics.stream.Add(1)
// DoQ requires a length prefix, like TCP
var length uint16
if err := binary.Read(stream, binary.BigEndian, &length); err != nil {
s.metrics.err.Add("read", 1)
log.WithError(err).Error("failed to read query")
return
}
// Read the raw query
b := make([]byte, length)
_ = stream.SetReadDeadline(time.Now().Add(time.Second)) // TODO: configurable timeout
if _, err := io.ReadFull(stream, b); err != nil {
s.metrics.err.Add("read", 1)
log.WithError(err).Error("failed to read query")
return
}
// Decode the query
q := new(dns.Msg)
if err := q.Unpack(b); err != nil {
s.metrics.err.Add("unpack", 1)
log.WithError(err).Error("failed to decode query")
return
}
log = log.WithField("qname", qName(q))
log.Debug("received query")
s.metrics.query.Add(1)
// Receiving a edns-tcp-keepalive EDNS(0) option is a fatal error according to the RFC
edns0 := q.IsEdns0()
if edns0 != nil {
for _, opt := range edns0.Option {
if opt.Option() == dns.EDNS0TCPKEEPALIVE {
log.Error("received edns-tcp-keepalive, aborting")
s.metrics.err.Add("keepalive", 1)
return
}
}
}
// Resolve the query using the next hop
a, err := s.r.Resolve(q, ci)
if err != nil {
log.WithError(err).Error("failed to resolve")
a = new(dns.Msg)
a.SetRcode(q, dns.RcodeServerFailure)
}
p, err := a.Pack()
if err != nil {
log.WithError(err).Error("failed to encode response")
s.metrics.err.Add("encode", 1)
return
}
// Add a length prefix
out := make([]byte, 2+len(p))
binary.BigEndian.PutUint16(out, uint16(len(p)))
copy(out[2:], p)
// Send the response
_ = stream.SetWriteDeadline(time.Now().Add(time.Second)) // TODO: configurable timeout
if _, err = stream.Write(out); err != nil {
s.metrics.err.Add("send", 1)
log.WithError(err).Error("failed to send response")
}
s.metrics.response.Add(rCode(a), 1)
}
func (s DoQListener) String() string {
return s.id
}