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 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379
// Copyright 2015-2021 Benjamin Fry <benjaminfry@me.com>
//
// Licensed under the Apache License, Version 2.0, <LICENSE-APACHE or
// https://apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or
// https://opensource.org/licenses/MIT>, at your option. This file may not be
// copied, modified, or distributed except according to those terms.
use std::{
io,
net::{IpAddr, Ipv4Addr, Ipv6Addr, SocketAddr},
sync::Arc,
time::Duration,
};
use futures_util::{FutureExt, StreamExt};
use hickory_proto::{op::MessageType, rr::Record};
#[cfg(feature = "dns-over-rustls")]
use rustls::{Certificate, PrivateKey, ServerConfig};
use tokio::{net, task::JoinSet};
use tokio_util::sync::CancellationToken;
use tracing::{debug, info, warn};
#[cfg(all(feature = "dns-over-openssl", not(feature = "dns-over-rustls")))]
use crate::proto::openssl::tls_server::*;
use crate::{
authority::{MessageRequest, MessageResponseBuilder},
proto::{
error::ProtoError,
iocompat::AsyncIoTokioAsStd,
op::{Edns, Header, LowerQuery, Query, ResponseCode},
serialize::binary::{BinDecodable, BinDecoder},
tcp::TcpStream,
udp::UdpStream,
xfer::SerialMessage,
BufDnsStreamHandle,
},
server::{Protocol, Request, RequestHandler, ResponseHandle, ResponseHandler, TimeoutStream},
};
// TODO, would be nice to have a Slab for buffers here...
/// A Futures based implementation of a DNS server
pub struct ServerFuture<T: RequestHandler> {
handler: Arc<T>,
join_set: JoinSet<Result<(), ProtoError>>,
shutdown_token: CancellationToken,
}
impl<T: RequestHandler> ServerFuture<T> {
/// Creates a new ServerFuture with the specified Handler.
pub fn new(handler: T) -> Self {
Self {
handler: Arc::new(handler),
join_set: JoinSet::new(),
shutdown_token: CancellationToken::new(),
}
}
/// Register a UDP socket. Should be bound before calling this function.
pub fn register_socket(&mut self, socket: net::UdpSocket) {
debug!("registering udp: {:?}", socket);
// create the new UdpStream, the IP address isn't relevant, and ideally goes essentially no where.
// the address used is acquired from the inbound queries
let (mut stream, stream_handle) =
UdpStream::with_bound(socket, ([127, 255, 255, 254], 0).into());
let shutdown = self.shutdown_token.clone();
let handler = self.handler.clone();
// this spawns a ForEach future which handles all the requests into a Handler.
self.join_set.spawn({
async move {
let mut inner_join_set = JoinSet::new();
loop {
let message = tokio::select! {
message = stream.next() => match message {
None => break,
Some(message) => message,
},
_ = shutdown.cancelled() => break,
};
let message = match message {
Err(e) => {
warn!("error receiving message on udp_socket: {}", e);
continue;
}
Ok(message) => message,
};
let src_addr = message.addr();
debug!("received udp request from: {}", src_addr);
// verify that the src address is safe for responses
if let Err(e) = sanitize_src_address(src_addr) {
warn!(
"address can not be responded to {src_addr}: {e}",
src_addr = src_addr,
e = e
);
continue;
}
let handler = handler.clone();
let stream_handle = stream_handle.with_remote_addr(src_addr);
inner_join_set.spawn(async move {
handle_raw_request(message, Protocol::Udp, handler, stream_handle).await;
});
reap_tasks(&mut inner_join_set);
}
if shutdown.is_cancelled() {
Ok(())
} else {
// TODO: let's consider capturing all the initial configuration details so that the socket could be recreated...
Err(ProtoError::from("unexpected close of UDP socket"))
}
}
});
}
/// Register a UDP socket. Should be bound before calling this function.
pub fn register_socket_std(&mut self, socket: std::net::UdpSocket) -> io::Result<()> {
self.register_socket(net::UdpSocket::from_std(socket)?);
Ok(())
}
/// Register a TcpListener to the Server. This should already be bound to either an IPv6 or an
/// IPv4 address.
///
/// To make the server more resilient to DOS issues, there is a timeout. Care should be taken
/// to not make this too low depending on use cases.
///
/// # Arguments
/// * `listener` - a bound TCP socket
/// * `timeout` - timeout duration of incoming requests, any connection that does not send
/// requests within this time period will be closed. In the future it should be
/// possible to create long-lived queries, but these should be from trusted sources
/// only, this would require some type of whitelisting.
pub fn register_listener(&mut self, listener: net::TcpListener, timeout: Duration) {
debug!("register tcp: {:?}", listener);
let handler = self.handler.clone();
// for each incoming request...
let shutdown = self.shutdown_token.clone();
self.join_set.spawn(async move {
let mut inner_join_set = JoinSet::new();
loop {
let (tcp_stream, src_addr) = tokio::select! {
tcp_stream = listener.accept() => match tcp_stream {
Ok((t, s)) => (t, s),
Err(e) => {
debug!("error receiving TCP tcp_stream error: {}", e);
continue;
},
},
_ = shutdown.cancelled() => {
// A graceful shutdown was initiated. Break out of the loop.
break;
},
};
// verify that the src address is safe for responses
if let Err(e) = sanitize_src_address(src_addr) {
warn!(
"address can not be responded to {src_addr}: {e}",
src_addr = src_addr,
e = e
);
continue;
}
let handler = handler.clone();
// and spawn to the io_loop
inner_join_set.spawn(async move {
debug!("accepted request from: {}", src_addr);
// take the created stream...
let (buf_stream, stream_handle) =
TcpStream::from_stream(AsyncIoTokioAsStd(tcp_stream), src_addr);
let mut timeout_stream = TimeoutStream::new(buf_stream, timeout);
while let Some(message) = timeout_stream.next().await {
let message = match message {
Ok(message) => message,
Err(e) => {
debug!(
"error in TCP request_stream src: {} error: {}",
src_addr, e
);
// we're going to bail on this connection...
return;
}
};
// we don't spawn here to limit clients from getting too many resources
handle_raw_request(
message,
Protocol::Tcp,
handler.clone(),
stream_handle.clone(),
)
.await;
}
});
reap_tasks(&mut inner_join_set);
}
Ok(())
});
}
/// Register a TcpListener to the Server. This should already be bound to either an IPv6 or an
/// IPv4 address.
///
/// To make the server more resilient to DOS issues, there is a timeout. Care should be taken
/// to not make this too low depending on use cases.
///
/// # Arguments
/// * `listener` - a bound TCP socket
/// * `timeout` - timeout duration of incoming requests, any connection that does not send
/// requests within this time period will be closed. In the future it should be
/// possible to create long-lived queries, but these should be from trusted sources
/// only, this would require some type of whitelisting.
pub fn register_listener_std(
&mut self,
listener: std::net::TcpListener,
timeout: Duration,
) -> io::Result<()> {
self.register_listener(net::TcpListener::from_std(listener)?, timeout);
Ok(())
}
/// Register a TlsListener to the Server. The TlsListener should already be bound to either an
/// IPv6 or an IPv4 address.
///
/// To make the server more resilient to DOS issues, there is a timeout. Care should be taken
/// to not make this too low depending on use cases.
///
/// # Arguments
/// * `listener` - a bound TCP (needs to be on a different port from standard TCP connections) socket
/// * `timeout` - timeout duration of incoming requests, any connection that does not send
/// requests within this time period will be closed. In the future it should be
/// possible to create long-lived queries, but these should be from trusted sources
/// only, this would require some type of whitelisting.
/// * `pkcs12` - certificate used to announce to clients
#[cfg(all(feature = "dns-over-openssl", not(feature = "dns-over-rustls")))]
#[cfg_attr(
docsrs,
doc(cfg(all(feature = "dns-over-openssl", not(feature = "dns-over-rustls"))))
)]
pub fn register_tls_listener(
&mut self,
listener: net::TcpListener,
timeout: Duration,
certificate_and_key: ((X509, Option<Stack<X509>>), PKey<Private>),
) -> io::Result<()> {
use crate::proto::openssl::{tls_server, TlsStream};
use openssl::ssl::Ssl;
use std::pin::Pin;
use tokio_openssl::SslStream as TokioSslStream;
let ((cert, chain), key) = certificate_and_key;
let handler = self.handler.clone();
debug!("registered tcp: {:?}", listener);
let tls_acceptor = Box::pin(tls_server::new_acceptor(cert, chain, key)?);
// for each incoming request...
let shutdown = self.shutdown_watch.clone();
self.join_set.spawn(async move {
let mut inner_join_set = JoinSet::new();
loop {
let (tcp_stream, src_addr) = tokio::select! {
tcp_stream = listener.accept() => match tcp_stream {
Ok((t, s)) => (t, s),
Err(e) => {
debug!("error receiving TLS tcp_stream error: {}", e);
continue;
},
},
_ = shutdown.clone().signaled() => {
// A graceful shutdown was initiated. Break out of the loop.
break;
},
};
// verify that the src address is safe for responses
if let Err(e) = sanitize_src_address(src_addr) {
warn!(
"address can not be responded to {src_addr}: {e}",
src_addr = src_addr,
e = e
);
continue;
}
let handler = handler.clone();
let tls_acceptor = tls_acceptor.clone();
// kick out to a different task immediately, let them do the TLS handshake
inner_join_set.spawn(async move {
debug!("starting TLS request from: {}", src_addr);
// perform the TLS
let mut tls_stream = match Ssl::new(tls_acceptor.context())
.and_then(|ssl| TokioSslStream::new(ssl, tcp_stream))
{
Ok(tls_stream) => tls_stream,
Err(e) => {
debug!("tls handshake src: {} error: {}", src_addr, e);
return ();
}
};
match Pin::new(&mut tls_stream).accept().await {
Ok(()) => {}
Err(e) => {
debug!("tls handshake src: {} error: {}", src_addr, e);
return ();
}
};
debug!("accepted TLS request from: {}", src_addr);
let (buf_stream, stream_handle) =
TlsStream::from_stream(AsyncIoTokioAsStd(tls_stream), src_addr);
let mut timeout_stream = TimeoutStream::new(buf_stream, timeout);
while let Some(message) = timeout_stream.next().await {
let message = match message {
Ok(message) => message,
Err(e) => {
debug!(
"error in TLS request_stream src: {:?} error: {}",
src_addr, e
);
// kill this connection
return ();
}
};
self::handle_raw_request(
message,
Protocol::Tls,
handler.clone(),
stream_handle.clone(),
)
.await;
}
});
reap_tasks(&mut inner_join_set);
}
Ok(())
});
Ok(())
}
/// Register a TlsListener to the Server. The TlsListener should already be bound to either an
/// IPv6 or an IPv4 address.
///
/// To make the server more resilient to DOS issues, there is a timeout. Care should be taken
/// to not make this too low depending on use cases.
///
/// # Arguments
/// * `listener` - a bound TCP (needs to be on a different port from standard TCP connections) socket
/// * `timeout` - timeout duration of incoming requests, any connection that does not send
/// requests within this time period will be closed. In the future it should be
/// possible to create long-lived queries, but these should be from trusted sources
/// only, this would require some type of whitelisting.
/// * `pkcs12` - certificate used to announce to clients
#[cfg(all(feature = "dns-over-openssl", not(feature = "dns-over-rustls")))]
#[cfg_attr(
docsrs,
doc(cfg(all(feature = "dns-over-openssl", not(feature = "dns-over-rustls"))))
)]
pub fn register_tls_listener_std(
&mut self,
listener: std::net::TcpListener,
timeout: Duration,
certificate_and_key: ((X509, Option<Stack<X509>>), PKey<Private>),
) -> io::Result<()> {
self.register_tls_listener(
net::TcpListener::from_std(listener)?,
timeout,
certificate_and_key,
)
}
/// Register a TlsListener to the Server. The TlsListener should already be bound to either an
/// IPv6 or an IPv4 address.
///
/// To make the server more resilient to DOS issues, there is a timeout. Care should be taken
/// to not make this too low depending on use cases.
///
/// # Arguments
/// * `listener` - a bound TCP (needs to be on a different port from standard TCP connections) socket
/// * `timeout` - timeout duration of incoming requests, any connection that does not send
/// requests within this time period will be closed. In the future it should be
/// possible to create long-lived queries, but these should be from trusted sources
/// only, this would require some type of whitelisting.
/// * `tls_config` - rustls server config
#[cfg(feature = "dns-over-rustls")]
#[cfg_attr(docsrs, doc(cfg(feature = "dns-over-rustls")))]
pub fn register_tls_listener_with_tls_config(
&mut self,
listener: net::TcpListener,
timeout: Duration,
tls_config: Arc<ServerConfig>,
) -> io::Result<()> {
use crate::proto::rustls::tls_from_stream;
use tokio_rustls::TlsAcceptor;
let handler = self.handler.clone();
debug!("registered tcp: {:?}", listener);
let tls_acceptor = TlsAcceptor::from(tls_config);
// for each incoming request...
let shutdown = self.shutdown_token.clone();
self.join_set.spawn(async move {
let mut inner_join_set = JoinSet::new();
loop {
let (tcp_stream, src_addr) = tokio::select! {
tcp_stream = listener.accept() => match tcp_stream {
Ok((t, s)) => (t, s),
Err(e) => {
debug!("error receiving TLS tcp_stream error: {}", e);
continue;
},
},
_ = shutdown.cancelled() => {
// A graceful shutdown was initiated. Break out of the loop.
break;
},
};
// verify that the src address is safe for responses
if let Err(e) = sanitize_src_address(src_addr) {
warn!(
"address can not be responded to {src_addr}: {e}",
src_addr = src_addr,
e = e
);
continue;
}
let handler = handler.clone();
let tls_acceptor = tls_acceptor.clone();
// kick out to a different task immediately, let them do the TLS handshake
inner_join_set.spawn(async move {
debug!("starting TLS request from: {}", src_addr);
// perform the TLS
let tls_stream = tls_acceptor.accept(tcp_stream).await;
let tls_stream = match tls_stream {
Ok(tls_stream) => AsyncIoTokioAsStd(tls_stream),
Err(e) => {
debug!("tls handshake src: {} error: {}", src_addr, e);
return;
}
};
debug!("accepted TLS request from: {}", src_addr);
let (buf_stream, stream_handle) = tls_from_stream(tls_stream, src_addr);
let mut timeout_stream = TimeoutStream::new(buf_stream, timeout);
while let Some(message) = timeout_stream.next().await {
let message = match message {
Ok(message) => message,
Err(e) => {
debug!(
"error in TLS request_stream src: {:?} error: {}",
src_addr, e
);
// kill this connection
return;
}
};
handle_raw_request(
message,
Protocol::Tls,
handler.clone(),
stream_handle.clone(),
)
.await;
}
});
reap_tasks(&mut inner_join_set);
}
Ok(())
});
Ok(())
}
/// Register a TlsListener to the Server by providing a pkcs12 certificate and key. The TlsListener
/// should already be bound to either an IPv6 or an IPv4 address.
///
/// To make the server more resilient to DOS issues, there is a timeout. Care should be taken
/// to not make this too low depending on use cases.
///
/// # Arguments
/// * `listener` - a bound TCP (needs to be on a different port from standard TCP connections) socket
/// * `timeout` - timeout duration of incoming requests, any connection that does not send
/// requests within this time period will be closed. In the future it should be
/// possible to create long-lived queries, but these should be from trusted sources
/// only, this would require some type of whitelisting.
/// * `pkcs12` - certificate used to announce to clients
#[cfg(feature = "dns-over-rustls")]
#[cfg_attr(docsrs, doc(cfg(feature = "dns-over-rustls")))]
pub fn register_tls_listener(
&mut self,
listener: net::TcpListener,
timeout: Duration,
certificate_and_key: (Vec<Certificate>, PrivateKey),
) -> io::Result<()> {
use crate::proto::rustls::tls_server;
let tls_acceptor = tls_server::new_acceptor(certificate_and_key.0, certificate_and_key.1)
.map_err(|e| {
io::Error::new(
io::ErrorKind::Other,
format!("error creating TLS acceptor: {e}"),
)
})?;
Self::register_tls_listener_with_tls_config(self, listener, timeout, Arc::new(tls_acceptor))
}
/// Register a TlsListener to the Server. The TlsListener should already be bound to either an
/// IPv6 or an IPv4 address.
///
/// To make the server more resilient to DOS issues, there is a timeout. Care should be taken
/// to not make this too low depending on use cases.
///
/// # Arguments
/// * `listener` - a bound TCP (needs to be on a different port from standard TCP connections) socket
/// * `timeout` - timeout duration of incoming requests, any connection that does not send
/// requests within this time period will be closed. In the future it should be
/// possible to create long-lived queries, but these should be from trusted sources
/// only, this would require some type of whitelisting.
/// * `pkcs12` - certificate used to announce to clients
#[cfg(all(
feature = "dns-over-https-openssl",
not(feature = "dns-over-https-rustls")
))]
#[cfg_attr(
docsrs,
doc(cfg(all(
feature = "dns-over-https-openssl",
not(feature = "dns-over-https-rustls")
)))
)]
pub fn register_https_listener(
&self,
listener: tcp::TcpListener,
timeout: Duration,
pkcs12: ParsedPkcs12,
) -> io::Result<()> {
unimplemented!("openssl based `dns-over-https` not yet supported. see the `dns-over-https-rustls` feature")
}
/// Register a TcpListener for HTTPS (h2) to the Server for supporting DoH (dns-over-https). The TcpListener should already be bound to either an
/// IPv6 or an IPv4 address.
///
/// To make the server more resilient to DOS issues, there is a timeout. Care should be taken
/// to not make this too low depending on use cases.
///
/// # Arguments
/// * `listener` - a bound TCP (needs to be on a different port from standard TCP connections) socket
/// * `timeout` - timeout duration of incoming requests, any connection that does not send
/// requests within this time period will be closed. In the future it should be
/// possible to create long-lived queries, but these should be from trusted sources
/// only, this would require some type of whitelisting.
/// * `certificate_and_key` - certificate and key used to announce to clients
#[cfg(feature = "dns-over-https-rustls")]
#[cfg_attr(docsrs, doc(cfg(feature = "dns-over-https-rustls")))]
pub fn register_https_listener(
&mut self,
listener: net::TcpListener,
// TODO: need to set a timeout between requests.
_timeout: Duration,
certificate_and_key: (Vec<Certificate>, PrivateKey),
dns_hostname: Option<String>,
) -> io::Result<()> {
use tokio_rustls::TlsAcceptor;
use crate::proto::rustls::tls_server;
use crate::server::h2_handler::h2_handler;
let dns_hostname: Option<Arc<str>> = dns_hostname.map(|n| n.into());
let handler = self.handler.clone();
debug!("registered https: {listener:?}");
let tls_acceptor = tls_server::new_acceptor(certificate_and_key.0, certificate_and_key.1)
.map_err(|e| {
io::Error::new(
io::ErrorKind::Other,
format!("error creating TLS acceptor: {e}"),
)
})?;
let tls_acceptor = TlsAcceptor::from(Arc::new(tls_acceptor));
// for each incoming request...
let shutdown = self.shutdown_token.clone();
self.join_set.spawn(async move {
let mut inner_join_set = JoinSet::new();
loop {
let shutdown = shutdown.clone();
let (tcp_stream, src_addr) = tokio::select! {
tcp_stream = listener.accept() => match tcp_stream {
Ok((t, s)) => (t, s),
Err(e) => {
debug!("error receiving HTTPS tcp_stream error: {}", e);
continue;
},
},
_ = shutdown.cancelled() => {
// A graceful shutdown was initiated. Break out of the loop.
break;
},
};
// verify that the src address is safe for responses
if let Err(e) = sanitize_src_address(src_addr) {
warn!("address can not be responded to {src_addr}: {e}");
continue;
}
let handler = handler.clone();
let tls_acceptor = tls_acceptor.clone();
let dns_hostname = dns_hostname.clone();
inner_join_set.spawn(async move {
debug!("starting HTTPS request from: {src_addr}");
// TODO: need to consider timeout of total connect...
// take the created stream...
let tls_stream = tls_acceptor.accept(tcp_stream).await;
let tls_stream = match tls_stream {
Ok(tls_stream) => tls_stream,
Err(e) => {
debug!("https handshake src: {src_addr} error: {e}");
return;
}
};
debug!("accepted HTTPS request from: {src_addr}");
h2_handler(
handler,
tls_stream,
src_addr,
dns_hostname,
shutdown.clone(),
)
.await;
});
reap_tasks(&mut inner_join_set);
}
Ok(())
});
Ok(())
}
/// Register a UdpSocket to the Server for supporting DoQ (dns-over-quic). The UdpSocket should already be bound to either an
/// IPv6 or an IPv4 address.
///
/// To make the server more resilient to DOS issues, there is a timeout. Care should be taken
/// to not make this too low depending on use cases.
///
/// # Arguments
/// * `listener` - a bound TCP (needs to be on a different port from standard TCP connections) socket
/// * `timeout` - timeout duration of incoming requests, any connection that does not send
/// requests within this time period will be closed. In the future it should be
/// possible to create long-lived queries, but these should be from trusted sources
/// only, this would require some type of whitelisting.
/// * `pkcs12` - certificate used to announce to clients
#[cfg(feature = "dns-over-quic")]
#[cfg_attr(docsrs, doc(cfg(feature = "dns-over-quic")))]
pub fn register_quic_listener(
&mut self,
socket: net::UdpSocket,
// TODO: need to set a timeout between requests.
_timeout: Duration,
certificate_and_key: (Vec<Certificate>, PrivateKey),
dns_hostname: Option<String>,
) -> io::Result<()> {
use crate::proto::quic::QuicServer;
use crate::server::quic_handler::quic_handler;
let dns_hostname: Option<Arc<str>> = dns_hostname.map(|n| n.into());
let handler = self.handler.clone();
debug!("registered quic: {:?}", socket);
let mut server =
QuicServer::with_socket(socket, certificate_and_key.0, certificate_and_key.1)?;
// for each incoming request...
let shutdown = self.shutdown_token.clone();
self.join_set.spawn(async move {
let mut inner_join_set = JoinSet::new();
loop {
let shutdown = shutdown.clone();
let (streams, src_addr) = tokio::select! {
result = server.next() => match result {
Ok(Some(c)) => c,
Ok(None) => continue,
Err(e) => {
debug!("error receiving quic connection: {e}");
continue;
}
},
_ = shutdown.cancelled() => {
// A graceful shutdown was initiated. Break out of the loop.
break;
},
};
// verify that the src address is safe for responses
// TODO: we're relying the quinn library to actually validate responses before we get here, but this check is still worth doing
if let Err(e) = sanitize_src_address(src_addr) {
warn!(
"address can not be responded to {src_addr}: {e}",
src_addr = src_addr,
e = e
);
continue;
}
let handler = handler.clone();
let dns_hostname = dns_hostname.clone();
inner_join_set.spawn(async move {
debug!("starting quic stream request from: {src_addr}");
// TODO: need to consider timeout of total connect...
let result =
quic_handler(handler, streams, src_addr, dns_hostname, shutdown.clone())
.await;
if let Err(e) = result {
warn!("quic stream processing failed from {src_addr}: {e}")
}
});
reap_tasks(&mut inner_join_set);
}
Ok(())
});
Ok(())
}
/// Register a UdpSocket to the Server for supporting DoH3 (dns-over-h3). The UdpSocket should already be bound to either an
/// IPv6 or an IPv4 address.
///
/// To make the server more resilient to DOS issues, there is a timeout. Care should be taken
/// to not make this too low depending on use cases.
///
/// # Arguments
/// * `listener` - a bound TCP (needs to be on a different port from standard TCP connections) socket
/// * `timeout` - timeout duration of incoming requests, any connection that does not send
/// requests within this time period will be closed. In the future it should be
/// possible to create long-lived queries, but these should be from trusted sources
/// only, this would require some type of whitelisting.
/// * `pkcs12` - certificate used to announce to clients
#[cfg(feature = "dns-over-h3")]
#[cfg_attr(docsrs, doc(cfg(feature = "dns-over-h3")))]
pub fn register_h3_listener(
&mut self,
socket: net::UdpSocket,
// TODO: need to set a timeout between requests.
_timeout: Duration,
certificate_and_key: (Vec<Certificate>, PrivateKey),
dns_hostname: Option<String>,
) -> io::Result<()> {
use crate::proto::h3::h3_server::H3Server;
use crate::server::h3_handler::h3_handler;
let dns_hostname: Option<Arc<str>> = dns_hostname.map(|n| n.into());
let handler = self.handler.clone();
debug!("registered h3: {:?}", socket);
let mut server =
H3Server::with_socket(socket, certificate_and_key.0, certificate_and_key.1)?;
// for each incoming request...
let shutdown = self.shutdown_token.clone();
self.join_set.spawn(async move {
let mut inner_join_set = JoinSet::new();
loop {
let shutdown = shutdown.clone();
let (streams, src_addr) = tokio::select! {
result = server.accept() => match result {
Ok(Some(c)) => c,
Ok(None) => continue,
Err(e) => {
debug!("error receiving h3 connection: {e}");
continue;
}
},
_ = shutdown.cancelled() => {
// A graceful shutdown was initiated. Break out of the loop.
break;
},
};
// verify that the src address is safe for responses
// TODO: we're relying the quinn library to actually validate responses before we get here, but this check is still worth doing
if let Err(e) = sanitize_src_address(src_addr) {
warn!(
"address can not be responded to {src_addr}: {e}",
src_addr = src_addr,
e = e
);
continue;
}
let handler = handler.clone();
let dns_hostname = dns_hostname.clone();
inner_join_set.spawn(async move {
debug!("starting h3 stream request from: {src_addr}");
// TODO: need to consider timeout of total connect...
let result =
h3_handler(handler, streams, src_addr, dns_hostname, shutdown.clone())
.await;
if let Err(e) = result {
warn!("h3 stream processing failed from {src_addr}: {e}")
}
});
reap_tasks(&mut inner_join_set);
}
Ok(())
});
Ok(())
}
/// Triggers a graceful shutdown the server. All background tasks will stop accepting
/// new connections and the returned future will complete once all tasks have terminated.
pub async fn shutdown_gracefully(&mut self) -> Result<(), ProtoError> {
self.shutdown_token.cancel();
// Wait for the server to complete.
block_until_done(&mut self.join_set).await
}
/// This will run until all background tasks complete. If one or more tasks return an error,
/// one will be chosen as the returned error for this future.
pub async fn block_until_done(&mut self) -> Result<(), ProtoError> {
block_until_done(&mut self.join_set).await
}
}
async fn block_until_done(
join_set: &mut JoinSet<Result<(), ProtoError>>,
) -> Result<(), ProtoError> {
if join_set.is_empty() {
warn!("block_until_done called with no pending tasks");
return Ok(());
}
// Now wait for all of the tasks to complete.
let mut out = Ok(());
while let Some(join_result) = join_set.join_next().await {
match join_result {
Ok(result) => {
match result {
Ok(_) => (),
Err(e) => {
// Save the last error.
out = Err(e);
}
}
}
Err(e) => return Err(ProtoError::from(format!("Internal error in spawn: {e}"))),
}
}
out
}
/// Reap finished tasks from a `JoinSet`, without awaiting or blocking.
fn reap_tasks(join_set: &mut JoinSet<()>) {
while FutureExt::now_or_never(join_set.join_next())
.flatten()
.is_some()
{}
}
pub(crate) async fn handle_raw_request<T: RequestHandler>(
message: SerialMessage,
protocol: Protocol,
request_handler: Arc<T>,
response_handler: BufDnsStreamHandle,
) {
let src_addr = message.addr();
let response_handler = ResponseHandle::new(message.addr(), response_handler, protocol);
handle_request(
message.bytes(),
src_addr,
protocol,
request_handler,
response_handler,
)
.await;
}
#[derive(Clone)]
struct ReportingResponseHandler<R: ResponseHandler> {
request_header: Header,
query: LowerQuery,
protocol: Protocol,
src_addr: SocketAddr,
handler: R,
}
#[async_trait::async_trait]
#[allow(clippy::uninlined_format_args)]
impl<R: ResponseHandler> ResponseHandler for ReportingResponseHandler<R> {
async fn send_response<'a>(
&mut self,
response: crate::authority::MessageResponse<
'_,
'a,
impl Iterator<Item = &'a Record> + Send + 'a,
impl Iterator<Item = &'a Record> + Send + 'a,
impl Iterator<Item = &'a Record> + Send + 'a,
impl Iterator<Item = &'a Record> + Send + 'a,
>,
) -> io::Result<super::ResponseInfo> {
let response_info = self.handler.send_response(response).await?;
let id = self.request_header.id();
let rid = response_info.id();
if id != rid {
warn!("request id:{id} does not match response id:{rid}");
debug_assert_eq!(id, rid, "request id and response id should match");
}
let rflags = response_info.flags();
let answer_count = response_info.answer_count();
let authority_count = response_info.name_server_count();
let additional_count = response_info.additional_count();
let response_code = response_info.response_code();
info!("request:{id} src:{proto}://{addr}#{port} {op}:{query}:{qtype}:{class} qflags:{qflags} response:{code:?} rr:{answers}/{authorities}/{additionals} rflags:{rflags}",
id = rid,
proto = self.protocol,
addr = self.src_addr.ip(),
port = self.src_addr.port(),
op = self.request_header.op_code(),
query = self.query.name(),
qtype = self.query.query_type(),
class = self.query.query_class(),
qflags = self.request_header.flags(),
code = response_code,
answers = answer_count,
authorities = authority_count,
additionals = additional_count,
rflags = rflags
);
Ok(response_info)
}
}
pub(crate) async fn handle_request<R: ResponseHandler, T: RequestHandler>(
// TODO: allow Message here...
message_bytes: &[u8],
src_addr: SocketAddr,
protocol: Protocol,
request_handler: Arc<T>,
response_handler: R,
) {
let mut decoder = BinDecoder::new(message_bytes);
// method to handle the request
let inner_handle_request = |message: MessageRequest, response_handler: R| async move {
if message.message_type() == MessageType::Response {
// Don't process response messages to avoid DoS attacks from reflection.
return;
}
let id = message.id();
let qflags = message.header().flags();
let qop_code = message.op_code();
let message_type = message.message_type();
let is_dnssec = message.edns().map_or(false, Edns::dnssec_ok);
let request = Request::new(message, src_addr, protocol);
let info = request.request_info();
let query = info.query.clone();
let query_name = info.query.name();
let query_type = info.query.query_type();
let query_class = info.query.query_class();
debug!(
"request:{id} src:{proto}://{addr}#{port} type:{message_type} dnssec:{is_dnssec} {op}:{query}:{qtype}:{class} qflags:{qflags}",
id = id,
proto = protocol,
addr = src_addr.ip(),
port = src_addr.port(),
message_type= message_type,
is_dnssec = is_dnssec,
op = qop_code,
query = query_name,
qtype = query_type,
class = query_class,
qflags = qflags,
);
// The reporter will handle making sure to log the result of the request
let reporter = ReportingResponseHandler {
request_header: *request.header(),
query,
protocol,
src_addr,
handler: response_handler,
};
request_handler.handle_request(&request, reporter).await;
};
// Attempt to decode the message
match MessageRequest::read(&mut decoder) {
Ok(message) => {
inner_handle_request(message, response_handler).await;
}
Err(ProtoError { kind, .. }) if kind.as_form_error().is_some() => {
// We failed to parse the request due to some issue in the message, but the header is available, so we can respond
let (header, error) = kind
.into_form_error()
.expect("as form_error already confirmed this is a FormError");
let query = LowerQuery::query(Query::default());
// debug for more info on why the message parsing failed
debug!(
"request:{id} src:{proto}://{addr}#{port} type:{message_type} {op}:FormError:{error}",
id = header.id(),
proto = protocol,
addr = src_addr.ip(),
port = src_addr.port(),
message_type= header.message_type(),
op = header.op_code(),
error = error,
);
// The reporter will handle making sure to log the result of the request
let mut reporter = ReportingResponseHandler {
request_header: header,
query,
protocol,
src_addr,
handler: response_handler,
};
let response = MessageResponseBuilder::new(None);
let result = reporter
.send_response(response.error_msg(&header, ResponseCode::FormErr))
.await;
if let Err(e) = result {
warn!("failed to return FormError to client: {}", e);
}
}
Err(e) => warn!("failed to read message: {}", e),
}
}
/// Checks if the IP address is safe for returning messages
///
/// Examples of unsafe addresses are any with a port of `0`
///
/// # Returns
///
/// Error if the address should not be used for returned requests
fn sanitize_src_address(src: SocketAddr) -> Result<(), String> {
// currently checks that the src address aren't either the undefined IPv4 or IPv6 address, and not port 0.
if src.port() == 0 {
return Err(format!("cannot respond to src on port 0: {src}"));
}
fn verify_v4(src: Ipv4Addr) -> Result<(), String> {
if src.is_unspecified() {
return Err(format!("cannot respond to unspecified v4 addr: {src}"));
}
if src.is_broadcast() {
return Err(format!("cannot respond to broadcast v4 addr: {src}"));
}
// TODO: add check for is_reserved when that stabilizes
Ok(())
}
fn verify_v6(src: Ipv6Addr) -> Result<(), String> {
if src.is_unspecified() {
return Err(format!("cannot respond to unspecified v6 addr: {src}"));
}
Ok(())
}
// currently checks that the src address aren't either the undefined IPv4 or IPv6 address, and not port 0.
match src.ip() {
IpAddr::V4(v4) => verify_v4(v4),
IpAddr::V6(v6) => verify_v6(v6),
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::authority::Catalog;
use futures_util::future;
#[cfg(feature = "dns-over-rustls")]
use rustls::{Certificate, PrivateKey};
use std::net::SocketAddr;
use tokio::net::{TcpListener, UdpSocket};
use tokio::time::timeout;
#[tokio::test]
async fn abort() {
let endpoints = Endpoints::new().await;
let endpoints2 = endpoints.clone();
let (abortable, abort_handle) = future::abortable(async move {
let mut server_future = ServerFuture::new(Catalog::new());
endpoints2.register(&mut server_future).await;
server_future.block_until_done().await
});
abort_handle.abort();
abortable.await.expect_err("expected abort");
endpoints.rebind_all().await;
}
#[tokio::test]
async fn graceful_shutdown() {
let mut server_future = ServerFuture::new(Catalog::new());
let endpoints = Endpoints::new().await;
endpoints.register(&mut server_future).await;
timeout(Duration::from_secs(2), server_future.shutdown_gracefully())
.await
.expect("timed out waiting for the server to complete")
.expect("error while awaiting tasks");
endpoints.rebind_all().await;
}
#[test]
fn test_sanitize_src_addr() {
// ipv4 tests
assert!(sanitize_src_address(SocketAddr::from(([192, 168, 1, 1], 4096))).is_ok());
assert!(sanitize_src_address(SocketAddr::from(([127, 0, 0, 1], 53))).is_ok());
assert!(sanitize_src_address(SocketAddr::from(([0, 0, 0, 0], 0))).is_err());
assert!(sanitize_src_address(SocketAddr::from(([192, 168, 1, 1], 0))).is_err());
assert!(sanitize_src_address(SocketAddr::from(([0, 0, 0, 0], 4096))).is_err());
assert!(sanitize_src_address(SocketAddr::from(([255, 255, 255, 255], 4096))).is_err());
// ipv6 tests
assert!(
sanitize_src_address(SocketAddr::from(([0x20, 0, 0, 0, 0, 0, 0, 0x1], 4096))).is_ok()
);
assert!(sanitize_src_address(SocketAddr::from(([0, 0, 0, 0, 0, 0, 0, 1], 4096))).is_ok());
assert!(sanitize_src_address(SocketAddr::from(([0, 0, 0, 0, 0, 0, 0, 0], 4096))).is_err());
assert!(sanitize_src_address(SocketAddr::from(([0, 0, 0, 0, 0, 0, 0, 0], 0))).is_err());
assert!(
sanitize_src_address(SocketAddr::from(([0x20, 0, 0, 0, 0, 0, 0, 0x1], 0))).is_err()
);
}
#[derive(Clone)]
struct Endpoints {
udp_addr: SocketAddr,
udp_std_addr: SocketAddr,
tcp_addr: SocketAddr,
tcp_std_addr: SocketAddr,
#[cfg(feature = "dns-over-rustls")]
rustls_addr: SocketAddr,
#[cfg(feature = "dns-over-https-rustls")]
https_rustls_addr: SocketAddr,
#[cfg(feature = "dns-over-quic")]
quic_addr: SocketAddr,
#[cfg(feature = "dns-over-h3")]
h3_addr: SocketAddr,
}
impl Endpoints {
async fn new() -> Self {
let udp = UdpSocket::bind("127.0.0.1:0").await.unwrap();
let udp_std = UdpSocket::bind("127.0.0.1:0").await.unwrap();
let tcp = TcpListener::bind("127.0.0.1:0").await.unwrap();
let tcp_std = TcpListener::bind("127.0.0.1:0").await.unwrap();
#[cfg(feature = "dns-over-rustls")]
let rustls = TcpListener::bind("127.0.0.1:0").await.unwrap();
#[cfg(feature = "dns-over-https-rustls")]
let https_rustls = TcpListener::bind("127.0.0.1:0").await.unwrap();
#[cfg(feature = "dns-over-quic")]
let quic = UdpSocket::bind("127.0.0.1:0").await.unwrap();
#[cfg(feature = "dns-over-h3")]
let h3 = UdpSocket::bind("127.0.0.1:0").await.unwrap();
Self {
udp_addr: udp.local_addr().unwrap(),
udp_std_addr: udp_std.local_addr().unwrap(),
tcp_addr: tcp.local_addr().unwrap(),
tcp_std_addr: tcp_std.local_addr().unwrap(),
#[cfg(feature = "dns-over-rustls")]
rustls_addr: rustls.local_addr().unwrap(),
#[cfg(feature = "dns-over-https-rustls")]
https_rustls_addr: https_rustls.local_addr().unwrap(),
#[cfg(feature = "dns-over-quic")]
quic_addr: quic.local_addr().unwrap(),
#[cfg(feature = "dns-over-h3")]
h3_addr: h3.local_addr().unwrap(),
}
}
async fn register<T: RequestHandler>(&self, server: &mut ServerFuture<T>) {
server.register_socket(UdpSocket::bind(self.udp_addr).await.unwrap());
server
.register_socket_std(std::net::UdpSocket::bind(self.udp_std_addr).unwrap())
.unwrap();
server.register_listener(
TcpListener::bind(self.tcp_addr).await.unwrap(),
Duration::from_secs(1),
);
server
.register_listener_std(
std::net::TcpListener::bind(self.tcp_std_addr).unwrap(),
Duration::from_secs(1),
)
.unwrap();
#[cfg(feature = "dns-over-rustls")]
{
let cert_key = rustls_cert_key();
server
.register_tls_listener(
TcpListener::bind(self.rustls_addr).await.unwrap(),
Duration::from_secs(30),
cert_key,
)
.unwrap();
}
#[cfg(feature = "dns-over-https-rustls")]
{
let cert_key = rustls_cert_key();
server
.register_https_listener(
TcpListener::bind(self.https_rustls_addr).await.unwrap(),
Duration::from_secs(1),
cert_key,
None,
)
.unwrap();
}
#[cfg(feature = "dns-over-quic")]
{
let cert_key = rustls_cert_key();
server
.register_quic_listener(
UdpSocket::bind(self.quic_addr).await.unwrap(),
Duration::from_secs(1),
cert_key,
None,
)
.unwrap();
}
#[cfg(feature = "dns-over-h3")]
{
let cert_key = rustls_cert_key();
server
.register_h3_listener(
UdpSocket::bind(self.h3_addr).await.unwrap(),
Duration::from_secs(1),
cert_key,
None,
)
.unwrap();
}
}
async fn rebind_all(&self) {
UdpSocket::bind(self.udp_addr).await.unwrap();
UdpSocket::bind(self.udp_std_addr).await.unwrap();
TcpListener::bind(self.tcp_addr).await.unwrap();
TcpListener::bind(self.tcp_std_addr).await.unwrap();
#[cfg(feature = "dns-over-rustls")]
TcpListener::bind(self.rustls_addr).await.unwrap();
#[cfg(feature = "dns-over-https-rustls")]
TcpListener::bind(self.https_rustls_addr).await.unwrap();
#[cfg(feature = "dns-over-quic")]
UdpSocket::bind(self.quic_addr).await.unwrap();
#[cfg(feature = "dns-over-h3")]
UdpSocket::bind(self.h3_addr).await.unwrap();
}
}
#[cfg(feature = "dns-over-rustls")]
fn rustls_cert_key() -> (Vec<Certificate>, PrivateKey) {
use hickory_proto::rustls::tls_server;
use std::env;
use std::path::Path;
let server_path = env::var("TDNS_WORKSPACE_ROOT").unwrap_or_else(|_| "../..".to_owned());
let cert = tls_server::read_cert(Path::new(&format!(
"{}/tests/test-data/cert.pem",
server_path
)))
.map_err(|e| format!("error reading cert: {e}"))
.unwrap();
let key = tls_server::read_key_from_pem(Path::new(&format!(
"{}/tests/test-data/cert.key",
server_path
)))
.unwrap();
(cert, key)
}
#[test]
fn task_reap_on_empty_joinset() {
let mut joinset = JoinSet::new();
// this should return immediately
reap_tasks(&mut joinset);
}
#[test]
fn task_reap_on_nonempty_joinset() {
let runtime = tokio::runtime::Runtime::new().unwrap();
runtime.block_on(async {
let mut joinset = JoinSet::new();
let t = joinset.spawn(tokio::time::sleep(Duration::from_secs(2)));
// this should return immediately since no task is ready
reap_tasks(&mut joinset);
t.abort();
// this should also return immediately since the task has been aborted
reap_tasks(&mut joinset);
});
}
}