forked from serverless-dns/serverless-dns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
server-node.js
550 lines (471 loc) · 15.3 KB
/
server-node.js
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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
/*
* Copyright (c) 2021 RethinkDNS and its authors.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
import net, { isIPv6 } from "net";
import tls from "tls";
import http2 from "http2";
import * as h2c from "httpx-server";
import { V1ProxyProtocol } from "proxy-protocol-js";
import * as system from "./system.js";
import { handleRequest } from "./core/doh.js";
import * as bufutil from "./commons/bufutil.js";
import * as dnsutil from "./commons/dnsutil.js";
import * as envutil from "./commons/envutil.js";
import * as nodeutil from "./core/node/util.js";
import * as util from "./commons/util.js";
import "./core/node/config.js";
/**
* @typedef {import("net").Socket} Socket
* @typedef {import("tls").TLSSocket} TLSSocket
* @typedef {import("http2").Http2ServerRequest} Http2ServerRequest
* @typedef {import("http2").Http2ServerResponse} Http2ServerResponse
*/
let OUR_RG_DN_RE = null; // regular dns name match
let OUR_WC_DN_RE = null; // wildcard dns name match
let log = null;
((main) => {
system.sub("go", systemUp);
// ask prepare phase to commence
system.pub("prepare");
})();
function systemUp() {
log = util.logger("NodeJs");
if (!log) throw new Error("logger unavailable on system up");
const tlsoffload = envutil.isCleartext();
if (tlsoffload) {
// fly.io terminated tls?
const portdoh = envutil.dohCleartextBackendPort();
const portdot = envutil.dotCleartextBackendPort();
// TODO: ProxyProtoV2 with TLS ClientHello (unsupported by Fly.io, rn)
// DNS over TLS Cleartext
const dotct = net
.createServer(serveTCP)
.listen(portdot, () => up("DoT Cleartext", dotct.address()));
// DNS over HTTPS Cleartext
// Same port for http1.1/h2 does not work on node without tls, that is,
// http2.createServer with opts { ALPNProtocols: ["h2", "http/1.1"],
// allowHTTP1: true } doesn't handle http1.1 at all (but it does with
// http2.createSecureServer which involves tls).
// Ref (for servers): github.com/nodejs/node/issues/34296
// Ref (for clients): github.com/nodejs/node/issues/31759
// Impl: stackoverflow.com/a/42019773
const dohct = h2c
.createServer(serveHTTPS)
.listen(portdoh, () => up("DoH Cleartext", dohct.address()));
} else {
// terminate tls ourselves
const tlsOpts = {
key: envutil.tlsKey(),
cert: envutil.tlsCrt(),
};
const portdot1 = envutil.dotBackendPort();
const portdot2 = envutil.dotProxyProtoBackendPort();
const portdoh = envutil.dohBackendPort();
// DNS over TLS
const dot1 = tls
.createServer(tlsOpts, serveTLS)
.listen(portdot1, () => up("DoT", dot1.address()));
// DNS over TLS w ProxyProto
const dot2 =
envutil.isDotOverProxyProto() &&
net
.createServer(serveDoTProxyProto)
.listen(portdot2, () => up("DoT ProxyProto", dot2.address()));
// DNS over HTTPS
const doh = http2
.createSecureServer({ ...tlsOpts, allowHTTP1: true }, serveHTTPS)
.listen(portdoh, () => up("DoH", doh.address()));
}
function up(server, addr) {
log.i(server, `listening on: [${addr.address}]:${addr.port}`);
}
}
function close(sock) {
util.safeBox(() => sock.destroy());
}
/**
* Creates a duplex pipe between `a` and `b` sockets.
* @param {Socket} a
* @param {Socket} b
* @return {Boolean} - true if pipe created, false if error
*/
function proxySockets(a, b) {
if (a.destroyed || b.destroyed) return false;
a.pipe(b);
b.pipe(a);
return true;
}
/**
* Proxies connection to DOT server, retrieving proxy proto header.
* @param {Socket} clientSocket
*/
function serveDoTProxyProto(clientSocket) {
let ppHandled = false;
log.d("--> new client Connection");
const dotSock = net.connect(envutil.dotBackendPort(), () =>
log.d("DoT socket ready")
);
dotSock.on("error", (e) => {
log.w("DoT socket error, closing client connection", e);
close(clientSocket);
close(dotSock);
});
function handleProxyProto(buf) {
// Data from only first tcp segment is to be consumed to get proxy proto.
// After extracting proxy proto, a duplex pipe is created to DoT server.
// So, further tcp segments return here.
if (ppHandled) return;
const chunk = buf.toString("ascii");
const delim = chunk.indexOf("\r\n") + 2; // CRLF = \x0D \x0A
ppHandled = true;
if (delim < 0) {
log.e("proxy proto header invalid / not found =>", chunk);
close(clientSocket);
close(dotSock);
return;
}
try {
// TODO: admission control
const proto = V1ProxyProtocol.parse(chunk.slice(0, delim));
log.d(`--> [${proto.source.ipAddress}]:${proto.source.port}`);
// remaining data from first tcp segment
if (!dotSock.destroyed) dotSock.write(buf.slice(delim));
const ok = proxySockets(clientSocket, dotSock);
if (!ok) throw new Error(proto + " err clientSock <> dotSock proxy");
} catch (e) {
log.w(e);
close(clientSocket);
close(dotSock);
return;
}
}
clientSocket.on("data", handleProxyProto);
clientSocket.on("close", () => {
close(dotSock);
});
clientSocket.on("error", (e) => {
log.w("Client socket error, closing connection");
close(clientSocket);
close(dotSock);
});
}
function makeScratchBuffer() {
const qlenBuf = bufutil.createBuffer(dnsutil.dnsHeaderSize);
const qlenBufOffset = bufutil.recycleBuffer(qlenBuf);
return {
qlenBuf: qlenBuf,
qlenBufOffset: qlenBufOffset,
qBuf: null,
qBufOffset: 0,
};
}
/**
* Get RegEx's to match dns names of a CA certificate.
* A non matching RegEx is returned if no DNS names are found.
* @param {TLSSocket} socket - TLS socket to get CA certificate from.
* @return {Array<[String]>} [regular RegExs, wildcard RegExs]
*/
function getDnRE(socket) {
const SAN_DNS_PREFIX = "DNS:";
const SAN = socket.getCertificate().subjectaltname;
// Compute DNS RegExs from TLS SAN (subject-alt-names)
// for max.rethinkdns.com SANs, see: https://crt.sh/?id=5708836299
const regExs = SAN.split(",").reduce(
(arr, entry) => {
entry = entry.trim();
// Ignore non-DNS entries
const u = entry.indexOf(SAN_DNS_PREFIX);
if (u !== 0) return arr;
// entry => DNS:*.max.rethinkdns.com
// sliced => *.max.rethinkdns.com
entry = entry.slice(SAN_DNS_PREFIX.length);
// d => *\\.max\\.rethinkdns\\.com
// wc => true
// pos => 1
// match => [a-z0-9-_]*\\.max\\.rethinkdns\\.com
const d = entry.replace(/\./g, "\\.");
const wc = d.startsWith("*");
const pos = wc ? 1 : 0;
const match = wc ? "[a-z0-9-_]" + d : d;
arr[pos].push("(^" + match + "$)");
return arr;
},
// [[Regular matches], [Wildcard matches]]
[[], []]
);
const rgDnRE = new RegExp(regExs[0].join("|") || "(?!)", "i");
const wcDnRE = new RegExp(regExs[1].join("|") || "(?!)", "i");
log.i(rgDnRE, wcDnRE);
return [rgDnRE, wcDnRE];
}
/**
* Gets flag and hostname from the wildcard domain name.
* @param {String} sni - Wildcard SNI
* @return {Array<String>} [flag, hostname]
*/
function getMetadata(sni) {
// 1-flag.max.rethinkdns.com => ["1-flag", "max", "rethinkdns", "com"]
const s = sni.split(".");
if (s.length > 3) {
// ["1-flag", "max", "rethinkdns", "com"] => "max.rethinkdns.com"]
const host = s.splice(1).join(".");
// previously, "-" was replaced with "+" as doh handlers used "+" to
// differentiate between a b32 flag and a b64 flag ("-" is a valid b64url
// char; "+" is not); but not anymore. If ":" appears first, the flag
// is treated as b64 or if "-" appears first, then as a b32 flag.
const flag = s[0];
log.d(`flag: ${flag}, host: ${host}`);
return [flag, host];
} else {
// sni => max.rethinkdns.com
log.d(`flag: "", host: ${host}`);
return ["", sni];
}
}
/**
* Services a DNS over TLS connection
* @param {TLSSocket} socket
*/
function serveTLS(socket) {
const sni = socket.servername;
if (!sni) {
log.d("No SNI, closing client connection");
close(socket);
return;
}
if (!OUR_RG_DN_RE || !OUR_WC_DN_RE) {
[OUR_RG_DN_RE, OUR_WC_DN_RE] = getDnRE(socket);
}
const isOurRgDn = OUR_RG_DN_RE.test(sni);
const isOurWcDn = OUR_WC_DN_RE.test(sni);
if (!isOurWcDn && !isOurRgDn) {
log.w("Not our DNS name, closing client connection");
close(socket);
return;
}
log.d(`(${socket.getProtocol()}), tls reused? ${socket.isSessionReused()}`);
const [flag, host] = isOurWcDn ? getMetadata(sni) : ["", sni];
const sb = makeScratchBuffer();
log.d("----> DoT request", host, flag);
socket.on("data", (data) => {
handleTCPData(socket, data, sb, host, flag);
});
socket.on("end", () => {
socket.end();
});
socket.on("error", (e) => {
log.w("TLS socket error, closing connection");
close(socket);
});
}
/**
* Services a DNS over TCP connection
* @param {Socket} socket
*/
function serveTCP(socket) {
// TODO: TLS ClientHello is sent in proxy-proto v2, but fly.io
// doesn't yet support v2, but only v1. ClientHello would contain
// the SNI which we could then use here.
const [flag, host] = ["", "ignored.example.com"];
const sb = makeScratchBuffer();
log.d("----> DoT Cleartext request", host, flag);
socket.on("data", (data) => {
handleTCPData(socket, data, sb, host, flag);
});
socket.on("end", () => {
socket.end();
});
socket.on("error", (e) => {
log.w("TCP socket error, closing connection");
close(socket);
});
}
/**
* Handle DNS over TCP/TLS data stream.
* @param {TLSSocket} socket
* @param {Buffer} chunk - A TCP data segment
* @param {Object} sb - Scratch buffer
* @param {String} host - Hostname
* @param {String} flag - Blocklist Flag
*/
function handleTCPData(socket, chunk, sb, host, flag) {
const cl = chunk.byteLength;
if (cl <= 0) return;
// read header first which contains length(dns-query)
const rem = dnsutil.dnsHeaderSize - sb.qlenBufOffset;
if (rem > 0) {
const seek = Math.min(rem, cl);
const read = chunk.slice(0, seek);
sb.qlenBuf.fill(read, sb.qlenBufOffset);
sb.qlenBufOffset += seek;
}
// header has not been read fully, yet
if (sb.qlenBufOffset !== dnsutil.dnsHeaderSize) return;
const qlen = sb.qlenBuf.readUInt16BE();
if (!dnsutil.validateSize(qlen)) {
log.w(`query range err: ql:${qlen} cl:${cl} rem:${rem}`);
close(socket);
return;
}
// rem bytes already read, is any more left in chunk?
const size = cl - rem;
if (size <= 0) return;
// hopefully fast github.com/nodejs/node/issues/20130#issuecomment-382417255
// chunk out dns-query starting rem-th byte
const data = chunk.slice(rem);
if (sb.qBuf === null) {
sb.qBuf = bufutil.createBuffer(qlen);
sb.qBufOffset = bufutil.recycleBuffer(sb.qBuf);
}
sb.qBuf.fill(data, sb.qBufOffset);
sb.qBufOffset += size;
// exactly qlen bytes read till now, handle the dns query
if (sb.qBufOffset === qlen) {
handleTCPQuery(sb.qBuf, socket, host, flag);
// reset qBuf and qlenBuf states
sb.qlenBufOffset = bufutil.recycleBuffer(sb.qlenBuf);
sb.qBuf = null;
sb.qBufOffset = 0;
} else if (sb.qBufOffset > qlen) {
log.w(`size mismatch: ${chunk.byteLength} <> ${qlen}`);
close(socket);
return;
} // continue reading from socket
}
/**
* @param {Buffer} q
* @param {TLSSocket} socket
* @param {String} host
* @param {String} flag
*/
async function handleTCPQuery(q, socket, host, flag) {
let ok = true;
if (socket.destroyed) return;
const rxid = util.xid();
const t = log.startTime("handle-tcp-query-" + rxid);
try {
const r = await resolveQuery(rxid, q, host, flag);
if (bufutil.emptyBuf(r)) {
log.w("empty ans from resolve");
ok = false;
} else {
const rlBuf = bufutil.encodeUint8ArrayBE(r.byteLength, 2);
const chunk = new Uint8Array([...rlBuf, ...r]);
// writing to a destroyed socket crashes nodejs
if (!socket.destroyed) {
socket.write(chunk);
} else {
ok = false;
log.w("send fail, tcp socket destroyed");
}
}
} catch (e) {
ok = false;
log.w("send fail, err", e);
}
log.endTime(t);
// close socket when !ok
if (!ok && !socket.destroyed) {
close(socket);
} // else: expect pipelined queries on the same socket
}
/**
* @param {Buffer} q
* @param {String} host
* @param {String} flag
* @return {Promise<Uint8Array>}
*/
async function resolveQuery(rxid, q, host, flag) {
// Using POST, since GET requests cannot be greater than 2KB,
// where-as DNS-over-TCP msgs could be upto 64KB in size.
const freq = new Request(`https://${host}/${flag}`, {
method: "POST",
headers: util.concatHeaders(
util.dnsHeaders(),
util.contentLengthHeader(q),
util.rxidHeader(rxid)
),
body: q,
});
const r = await handleRequest(util.mkFetchEvent(freq));
const ans = await r.arrayBuffer();
if (!bufutil.emptyBuf(ans)) {
return new Uint8Array(ans);
} else {
log.w(rxid, host, "empty ans, send servfail; flags?", flag);
return dnsutil.servfailQ(q);
}
}
/**
* Services a DNS over HTTPS connection
* @param {Http2ServerRequest} req
* @param {Http2ServerResponse} res
*/
async function serveHTTPS(req, res) {
const ua = req.headers["user-agent"];
const buffers = [];
const t = log.startTime("recv-https");
for await (const chunk of req) {
buffers.push(chunk);
}
const b = bufutil.concatBuf(buffers);
const bLen = b.byteLength;
log.endTime(t);
if (util.isPostRequest(req) && !dnsutil.validResponseSize(b)) {
res.writeHead(dnsutil.dohStatusCode(b), util.corsHeadersIfNeeded(ua));
res.end();
log.w(`HTTP req body length out of bounds: ${bLen}`);
return;
}
log.d("----> DoH request", req.method, bLen, req.url);
handleHTTPRequest(b, req, res);
}
/**
* @param {Buffer} b - Request body
* @param {Http2ServerRequest} req
* @param {Http2ServerResponse} res
*/
async function handleHTTPRequest(b, req, res) {
const rxid = util.xid();
const t = log.startTime("handle-http-req-" + rxid);
try {
let host = req.headers.host || req.headers[":authority"];
if (isIPv6(host)) host = `[${host}]`;
// nb: req.url is a url-path, for ex: /a/b/c
const fReq = new Request(new URL(req.url, `https://${host}`), {
// Note: In VM container, Object spread may not be working for all
// properties, especially of "hidden" Symbol values!? like "headers"?
...req,
headers: util.concatHeaders(
util.rxidHeader(rxid),
nodeutil.copyNonPseudoHeaders(req.headers)
),
method: req.method,
body: req.method === "POST" ? b : null,
});
log.lapTime(t, "upstream-start");
const fRes = await handleRequest(util.mkFetchEvent(fReq));
log.lapTime(t, "upstream-end");
res.writeHead(fRes.status, util.copyHeaders(fRes));
log.lapTime(t, "send-head");
// ans may be null on non-2xx responses, such as redirects (3xx) by cc.js
// or 4xx responses on timeouts or 5xx on invalid http method
const ans = await fRes.arrayBuffer();
log.lapTime(t, "recv-ans");
if (!bufutil.emptyBuf(ans)) {
res.end(bufutil.bufferOf(ans));
} else {
// expect fRes.status to be set to non 2xx above
res.end();
}
} catch (e) {
res.writeHead(400); // bad request
res.end();
log.w(e);
}
log.endTime(t);
}