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
use crate::error::UpstreamError;
use reqwest::{header, Client};
use std::{net::SocketAddr, time::Duration};
use trust_dns_proto::{
op::{message::Message, Query},
rr::{Name, RData},
};
#[derive(Clone)]
pub struct BootstrapHttpsClient {
https_client: Client,
}
impl BootstrapHttpsClient {
pub fn new() -> Self {
let mut headers = header::HeaderMap::new();
headers.insert(
"Content-Type",
header::HeaderValue::from_static("application/dns-message"),
);
let client_builder = Client::builder()
.default_headers(headers)
.https_only(true)
.gzip(true)
.brotli(true)
.timeout(Duration::from_secs(10));
let https_client = match client_builder.build() {
Ok(https_client) => https_client,
Err(_) => panic!("[bootstrap] failed to build the HTTPS client"),
};
BootstrapHttpsClient { https_client }
}
pub async fn bootstrap(&self, host: String) -> Result<SocketAddr, UpstreamError> {
let mut query = Query::new();
let query_name = match host.parse::<Name>() {
Ok(query_name) => query_name,
Err(_) => panic!("[bootstrap] failed to parse the host {}", host),
};
query.set_name(query_name);
let mut request_message = Message::new();
request_message.add_query(query);
let raw_request_message = match request_message.to_vec() {
Ok(raw_request_message) => raw_request_message,
Err(error) => {
return Err(error.into());
}
};
let url = "https://1.1.1.1/dns-query".to_string();
let request = self.https_client.post(url).body(raw_request_message);
let response = match request.send().await {
Ok(response) => response,
Err(error) => {
return Err(error.into());
}
};
let raw_response_message = match response.bytes().await {
Ok(response_bytes) => response_bytes,
Err(error) => {
return Err(error.into());
}
};
let message = match Message::from_vec(&raw_response_message) {
Ok(message) => message,
Err(error) => {
return Err(error.into());
}
};
let record = match message.answers().iter().next() {
Some(record) => record,
None => panic!("[bootstrap] failed to bootstrap the address {}", host),
};
let record_data = match record.data() {
Some(record_data) => record_data,
None => panic!("[bootstrap] failed to bootstrap the address {}", host),
};
match record_data {
RData::A(ipv4_address) => Ok(SocketAddr::new((*ipv4_address).into(), 0)),
RData::AAAA(ipv6_address) => Ok(SocketAddr::new((*ipv6_address).into(), 0)),
_ => panic!("[bootstrap] failed to bootstrap the address {}", host),
}
}
}
impl Default for BootstrapHttpsClient {
fn default() -> Self {
Self::new()
}
}
#[cfg(test)]
mod tests {
use super::BootstrapHttpsClient;
use std::net::{Ipv4Addr, SocketAddr};
#[tokio::test]
async fn test_bootstrap() {
let bootstrap_https_client = BootstrapHttpsClient::new();
let host = String::from("dns.google");
let ip_addr = match bootstrap_https_client.bootstrap(host).await {
Ok(ip_addr) => ip_addr,
Err(_) => panic!("[test] failed to bootstrap the DNS-over-HTTPS service"),
};
let expected_ip_addr = [
SocketAddr::new(Ipv4Addr::new(8, 8, 8, 8).into(), 0),
SocketAddr::new(Ipv4Addr::new(8, 8, 4, 4).into(), 0),
];
assert!(expected_ip_addr.contains(&ip_addr));
}
}