mirror of
https://github.com/DNSCrypt/doh-server.git
synced 2025-04-04 13:37:39 +03:00
Compare commits
7 commits
Author | SHA1 | Date | |
---|---|---|---|
|
f0242354d3 | ||
|
25fa6946e6 | ||
|
2254632d33 | ||
|
672d1a11f1 | ||
|
9e4a931bce | ||
|
40b0b02972 | ||
|
bf443c33b9 |
10 changed files with 67 additions and 53 deletions
17
.github/workflows/issues.yml
vendored
Normal file
17
.github/workflows/issues.yml
vendored
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
name: Close inactive issues
|
||||||
|
on:
|
||||||
|
schedule:
|
||||||
|
- cron: "30 1 * * *"
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
close-issues:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
issues: write
|
||||||
|
pull-requests: write
|
||||||
|
steps:
|
||||||
|
- uses: actions/stale@v9
|
||||||
|
with:
|
||||||
|
stale-issue-message: "This issue is stale because it has been open for 30 days with no activity."
|
||||||
|
close-issue-message: "This issue was closed because it has been inactive for 14 days since being marked as stale."
|
||||||
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
6
.github/workflows/release.yml
vendored
6
.github/workflows/release.yml
vendored
|
@ -16,7 +16,7 @@ jobs:
|
||||||
|
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- uses: goto-bus-stop/setup-zig@v2
|
- uses: mlugg/setup-zig@v1
|
||||||
with:
|
with:
|
||||||
version: 0.10.1
|
version: 0.10.1
|
||||||
|
|
||||||
|
@ -46,7 +46,7 @@ jobs:
|
||||||
mkdir doh-proxy
|
mkdir doh-proxy
|
||||||
mv target/x86_64-unknown-linux-musl/release/doh-proxy doh-proxy/
|
mv target/x86_64-unknown-linux-musl/release/doh-proxy doh-proxy/
|
||||||
cp README.md localhost.pem doh-proxy/
|
cp README.md localhost.pem doh-proxy/
|
||||||
tar cJpf doh-proxy_${{ steps.get_version.outputs.VERSION }}_linux-x86_64.tar.bz2 doh-proxy
|
tar cjpf doh-proxy_${{ steps.get_version.outputs.VERSION }}_linux-x86_64.tar.bz2 doh-proxy
|
||||||
rm -fr doh-proxy
|
rm -fr doh-proxy
|
||||||
|
|
||||||
- name: Release build Linux-aarch64
|
- name: Release build Linux-aarch64
|
||||||
|
@ -56,7 +56,7 @@ jobs:
|
||||||
mkdir doh-proxy
|
mkdir doh-proxy
|
||||||
mv target/aarch64-unknown-linux-musl/release/doh-proxy doh-proxy/
|
mv target/aarch64-unknown-linux-musl/release/doh-proxy doh-proxy/
|
||||||
cp README.md localhost.pem doh-proxy/
|
cp README.md localhost.pem doh-proxy/
|
||||||
tar cJpf doh-proxy_${{ steps.get_version.outputs.VERSION }}_linux-aarch64.tar.bz2 doh-proxy
|
tar cjpf doh-proxy_${{ steps.get_version.outputs.VERSION }}_linux-aarch64.tar.bz2 doh-proxy
|
||||||
rm -fr doh-proxy
|
rm -fr doh-proxy
|
||||||
|
|
||||||
- name: Release build Windows-x86_64
|
- name: Release build Windows-x86_64
|
||||||
|
|
|
@ -18,8 +18,8 @@ tls = ["libdoh/tls"]
|
||||||
[dependencies]
|
[dependencies]
|
||||||
libdoh = { path = "src/libdoh", version = "0.9.9", default-features = false }
|
libdoh = { path = "src/libdoh", version = "0.9.9", default-features = false }
|
||||||
clap = { version = "4", features = ["std", "cargo", "wrap_help", "string"] }
|
clap = { version = "4", features = ["std", "cargo", "wrap_help", "string"] }
|
||||||
dnsstamps = "0.1.9"
|
dnsstamps = "0.1.10"
|
||||||
mimalloc = { version = "0.1.43", default-features = false }
|
mimalloc = { version = "0.1.44", default-features = false }
|
||||||
|
|
||||||
[package.metadata.generate-rpm]
|
[package.metadata.generate-rpm]
|
||||||
assets = [
|
assets = [
|
||||||
|
|
2
LICENSE
2
LICENSE
|
@ -1,6 +1,6 @@
|
||||||
MIT License
|
MIT License
|
||||||
|
|
||||||
Copyright (c) 2018-2023 Frank Denis
|
Copyright (c) 2018-2025 Frank Denis
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
|
|
@ -240,39 +240,42 @@ pub fn parse_opts(globals: &mut Globals) {
|
||||||
.or_else(|| globals.tls_cert_path.clone());
|
.or_else(|| globals.tls_cert_path.clone());
|
||||||
}
|
}
|
||||||
|
|
||||||
if let Some(hostname) = matches.get_one::<String>("hostname") {
|
match matches.get_one::<String>("hostname") {
|
||||||
let mut builder =
|
Some(hostname) => {
|
||||||
dnsstamps::DoHBuilder::new(hostname.to_string(), globals.path.to_string());
|
let mut builder =
|
||||||
if let Some(public_address) = matches.get_one::<String>("public_address") {
|
dnsstamps::DoHBuilder::new(hostname.to_string(), globals.path.to_string());
|
||||||
builder = builder.with_address(public_address.to_string());
|
if let Some(public_address) = matches.get_one::<String>("public_address") {
|
||||||
}
|
builder = builder.with_address(public_address.to_string());
|
||||||
if let Some(public_port) = matches.get_one::<String>("public_port") {
|
}
|
||||||
let public_port = public_port.parse().expect("Invalid public port");
|
if let Some(public_port) = matches.get_one::<String>("public_port") {
|
||||||
builder = builder.with_port(public_port);
|
let public_port = public_port.parse().expect("Invalid public port");
|
||||||
}
|
builder = builder.with_port(public_port);
|
||||||
println!(
|
}
|
||||||
"Test DNS stamp to reach [{}] over DoH: [{}]\n",
|
println!(
|
||||||
hostname,
|
"Test DNS stamp to reach [{}] over DoH: [{}]\n",
|
||||||
builder.serialize().unwrap()
|
hostname,
|
||||||
);
|
builder.serialize().unwrap()
|
||||||
|
);
|
||||||
|
|
||||||
let mut builder =
|
let mut builder =
|
||||||
dnsstamps::ODoHTargetBuilder::new(hostname.to_string(), globals.path.to_string());
|
dnsstamps::ODoHTargetBuilder::new(hostname.to_string(), globals.path.to_string());
|
||||||
if let Some(public_port) = matches.get_one::<String>("public_port") {
|
if let Some(public_port) = matches.get_one::<String>("public_port") {
|
||||||
let public_port = public_port.parse().expect("Invalid public port");
|
let public_port = public_port.parse().expect("Invalid public port");
|
||||||
builder = builder.with_port(public_port);
|
builder = builder.with_port(public_port);
|
||||||
}
|
}
|
||||||
println!(
|
println!(
|
||||||
"Test DNS stamp to reach [{}] over Oblivious DoH: [{}]\n",
|
"Test DNS stamp to reach [{}] over Oblivious DoH: [{}]\n",
|
||||||
hostname,
|
hostname,
|
||||||
builder.serialize().unwrap()
|
builder.serialize().unwrap()
|
||||||
);
|
);
|
||||||
|
|
||||||
println!("Check out https://dnscrypt.info/stamps/ to compute the actual stamps.\n")
|
println!("Check out https://dnscrypt.info/stamps/ to compute the actual stamps.\n")
|
||||||
} else {
|
}
|
||||||
println!(
|
_ => {
|
||||||
|
println!(
|
||||||
"Please provide a fully qualified hostname (-H <hostname> command-line option) to get \
|
"Please provide a fully qualified hostname (-H <hostname> command-line option) to get \
|
||||||
test DNS stamps for your server.\n"
|
test DNS stamps for your server.\n"
|
||||||
);
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,13 +15,13 @@ default = ["tls"]
|
||||||
tls = ["tokio-rustls"]
|
tls = ["tokio-rustls"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1.0.86"
|
anyhow = "1.0.97"
|
||||||
arc-swap = "1.7.1"
|
arc-swap = "1.7.1"
|
||||||
base64 = "0.22.1"
|
base64 = "0.22.1"
|
||||||
byteorder = "1.5.0"
|
byteorder = "1.5.0"
|
||||||
bytes = "1.6.0"
|
bytes = "1.10.1"
|
||||||
futures = "0.3.30"
|
futures = "0.3.31"
|
||||||
hyper = { version = "^0.14.29", default-features = false, features = [
|
hyper = { version = "^0.14.32", default-features = false, features = [
|
||||||
"server",
|
"server",
|
||||||
"http1",
|
"http1",
|
||||||
"http2",
|
"http2",
|
||||||
|
@ -29,8 +29,8 @@ hyper = { version = "^0.14.29", default-features = false, features = [
|
||||||
"runtime",
|
"runtime",
|
||||||
] }
|
] }
|
||||||
odoh-rs = "1.0.3"
|
odoh-rs = "1.0.3"
|
||||||
rand = "0.8.5"
|
rand = "^0.8.5"
|
||||||
tokio = { version = "1.38.0", features = [
|
tokio = { version = "1.44.1", features = [
|
||||||
"net",
|
"net",
|
||||||
"rt-multi-thread",
|
"rt-multi-thread",
|
||||||
"time",
|
"time",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
MIT License
|
MIT License
|
||||||
|
|
||||||
Copyright (c) 2018-2023 Frank Denis
|
Copyright (c) 2018-2025 Frank Denis
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
|
|
@ -257,10 +257,7 @@ impl DoH {
|
||||||
content_types: &[&'static str],
|
content_types: &[&'static str],
|
||||||
) -> Option<&'static str> {
|
) -> Option<&'static str> {
|
||||||
let accept = headers.get(hyper::header::ACCEPT);
|
let accept = headers.get(hyper::header::ACCEPT);
|
||||||
let accept = match accept {
|
let accept = accept?;
|
||||||
None => return None,
|
|
||||||
Some(accept) => accept,
|
|
||||||
};
|
|
||||||
for part in accept.to_str().unwrap_or("").split(',').map(|s| s.trim()) {
|
for part in accept.to_str().unwrap_or("").split(',').map(|s| s.trim()) {
|
||||||
if let Some(found) = part
|
if let Some(found) = part
|
||||||
.split(';')
|
.split(';')
|
||||||
|
|
|
@ -77,7 +77,7 @@ impl ODoHPublicKey {
|
||||||
|
|
||||||
impl ODoHQueryContext {
|
impl ODoHQueryContext {
|
||||||
pub fn encrypt_response(self, response_body: Vec<u8>) -> Result<Vec<u8>, DoHError> {
|
pub fn encrypt_response(self, response_body: Vec<u8>) -> Result<Vec<u8>, DoHError> {
|
||||||
let response_nonce = rand::thread_rng().gen::<ResponseNonce>();
|
let response_nonce = rand::thread_rng().r#gen::<ResponseNonce>();
|
||||||
let response_body_ = ObliviousDoHMessagePlaintext::new(response_body, 0);
|
let response_body_ = ObliviousDoHMessagePlaintext::new(response_body, 0);
|
||||||
let encrypted_response = odoh_rs::encrypt_response(
|
let encrypted_response = odoh_rs::encrypt_response(
|
||||||
&self.query,
|
&self.query,
|
||||||
|
|
|
@ -87,12 +87,9 @@ where
|
||||||
let server_config_builder = ServerConfig::builder()
|
let server_config_builder = ServerConfig::builder()
|
||||||
.with_safe_defaults()
|
.with_safe_defaults()
|
||||||
.with_no_client_auth();
|
.with_no_client_auth();
|
||||||
if let Ok(found_config) =
|
match server_config_builder.with_single_cert(certs.clone(), certs_key) {
|
||||||
server_config_builder.with_single_cert(certs.clone(), certs_key)
|
Ok(found_config) => Some(found_config),
|
||||||
{
|
_ => None,
|
||||||
Some(found_config)
|
|
||||||
} else {
|
|
||||||
None
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.ok_or_else(|| {
|
.ok_or_else(|| {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue