-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathmod.rs
More file actions
290 lines (254 loc) · 11.6 KB
/
Copy pathmod.rs
File metadata and controls
290 lines (254 loc) · 11.6 KB
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
//! This module contains structs and functions to easily create a TLS termination
//! server, which can be used in combination with an Axum [`Router`].
use std::{convert::Infallible, net::SocketAddr, sync::Arc};
use axum::{
Router,
extract::{ConnectInfo, Request},
middleware::AddExtension,
};
use hyper::{body::Incoming, service::service_fn};
use hyper_util::rt::{TokioExecutor, TokioIo};
use opentelemetry::trace::{FutureExt, SpanKind};
use opentelemetry_semantic_conventions as semconv;
use snafu::{ResultExt, Snafu};
use stackable_shared::time::Duration;
use tokio::{
net::{TcpListener, TcpStream},
sync::mpsc,
};
use tokio_rustls::{
TlsAcceptor,
rustls::{
ServerConfig,
crypto::ring::default_provider,
version::{TLS12, TLS13},
},
};
use tower::{Service, ServiceExt};
use tracing::{Instrument, Span, field::Empty, instrument};
use tracing_opentelemetry::OpenTelemetrySpanExt;
use x509_cert::Certificate;
use crate::{
options::WebhookOptions,
tls::cert_resolver::{CertificateResolver, CertificateResolverError},
};
mod cert_resolver;
pub const WEBHOOK_CA_LIFETIME: Duration = Duration::from_hours_unchecked(24);
pub const WEBHOOK_CERTIFICATE_LIFETIME: Duration = Duration::from_hours_unchecked(24);
pub const WEBHOOK_CERTIFICATE_ROTATION_INTERVAL: Duration = Duration::from_hours_unchecked(20);
pub type Result<T, E = TlsServerError> = std::result::Result<T, E>;
#[derive(Debug, Snafu)]
pub enum TlsServerError {
#[snafu(display("failed to create certificate resolver"))]
CreateCertificateResolver { source: CertificateResolverError },
#[snafu(display("failed to create TCP listener by binding to socket address {socket_addr:?}"))]
BindTcpListener {
source: std::io::Error,
socket_addr: SocketAddr,
},
#[snafu(display("failed to rotate certificate"))]
RotateCertificate { source: CertificateResolverError },
#[snafu(display("failed to set safe TLS protocol versions"))]
SetSafeTlsProtocolVersions { source: tokio_rustls::rustls::Error },
}
/// A server which terminates TLS connections and allows clients to communicate
/// via HTTPS with the underlying HTTP router.
///
/// It also rotates the generated certificates as needed.
pub struct TlsServer {
config: ServerConfig,
cert_resolver: Arc<CertificateResolver>,
socket_addr: SocketAddr,
router: Router,
}
impl TlsServer {
/// Create a new [`TlsServer`].
///
/// This internally creates a `CertificateResolver` with the provided
/// `subject_alterative_dns_names`, which takes care of the certificate rotation. Afterwards it
/// creates the [`ServerConfig`], which let's the `CertificateResolver` provide the needed
/// certificates.
#[instrument(name = "create_tls_server", skip(router))]
pub async fn new(
router: Router,
options: WebhookOptions,
) -> Result<(Self, mpsc::Receiver<Certificate>)> {
let (cert_tx, cert_rx) = mpsc::channel(1);
let WebhookOptions {
socket_addr,
subject_alterative_dns_names,
} = options;
let cert_resolver = CertificateResolver::new(subject_alterative_dns_names, cert_tx)
.await
.context(CreateCertificateResolverSnafu)?;
let cert_resolver = Arc::new(cert_resolver);
let tls_provider = default_provider();
let mut config = ServerConfig::builder_with_provider(tls_provider.into())
.with_protocol_versions(&[&TLS12, &TLS13])
.context(SetSafeTlsProtocolVersionsSnafu)?
.with_no_client_auth()
.with_cert_resolver(cert_resolver.clone());
config.alpn_protocols = vec![b"h2".to_vec(), b"http/1.1".to_vec()];
let tls_server = Self {
config,
cert_resolver,
socket_addr,
router,
};
Ok((tls_server, cert_rx))
}
/// Runs the TLS server by listening for incoming TCP connections on the
/// bound socket address. It only accepts TLS connections. Internally each
/// TLS stream get handled by a Hyper service, which in turn is an Axum
/// router.
///
/// It also starts a background task to rotate the certificate as needed.
pub async fn run(self) -> Result<()> {
let start = tokio::time::Instant::now() + *WEBHOOK_CERTIFICATE_ROTATION_INTERVAL;
let mut interval = tokio::time::interval_at(start, *WEBHOOK_CERTIFICATE_ROTATION_INTERVAL);
let tls_acceptor = TlsAcceptor::from(Arc::new(self.config));
let tcp_listener =
TcpListener::bind(self.socket_addr)
.await
.context(BindTcpListenerSnafu {
socket_addr: self.socket_addr,
})?;
// To be able to extract the connect info from incoming requests, it is
// required to turn the router into a Tower service which is capable of
// doing that. Calling `into_make_service_with_connect_info` returns a
// new struct `IntoMakeServiceWithConnectInfo` which implements the
// Tower Service trait. This service is called after the TCP connection
// has been accepted.
//
// Inspired by:
// - https://github.com/tokio-rs/axum/discussions/2397
// - https://github.com/tokio-rs/axum/blob/b02ce307371a973039018a13fa012af14775948c/examples/serve-with-hyper/src/main.rs#L98
let mut router = self
.router
.into_make_service_with_connect_info::<SocketAddr>();
loop {
let tls_acceptor = tls_acceptor.clone();
// Wait for either a new TCP connection or the certificate rotation interval tick
tokio::select! {
// We opt for a biased execution of arms to make sure we always check if the
// certificate needs rotation based on the interval. This ensures, we always use
// a valid certificate for the TLS connection.
biased;
// This is cancellation-safe. If this branch is cancelled, the tick is NOT consumed.
// As such, we will not miss rotating the certificate.
_ = interval.tick() => {
self.cert_resolver
.rotate_certificate()
.await
.context(RotateCertificateSnafu)?
}
// This is cancellation-safe. If cancelled, no new connections are accepted.
tcp_connection = tcp_listener.accept() => {
let (tcp_stream, remote_addr) = match tcp_connection {
Ok((stream, addr)) => (stream, addr),
Err(err) => {
tracing::trace!(%err, "failed to accept incoming TCP connection");
continue;
}
};
// Here, the connect info is extracted by calling Tower's Service
// trait function on `IntoMakeServiceWithConnectInfo`
let tower_service: Result<_, Infallible> = router.call(remote_addr).await;
let tower_service = tower_service.expect("Infallible error can never happen");
let span = tracing::debug_span!("accept tcp connection");
tokio::spawn(
async move {
Self::handle_request(tcp_stream, remote_addr, tls_acceptor, tower_service, self.socket_addr)
.instrument(span)
.await
}
);
}
};
}
}
async fn handle_request(
tcp_stream: TcpStream,
remote_addr: SocketAddr,
tls_acceptor: TlsAcceptor,
tower_service: AddExtension<Router, ConnectInfo<SocketAddr>>,
socket_addr: SocketAddr,
) {
let span = tracing::trace_span!(
"accept tls connection",
"otel.kind" = ?SpanKind::Server,
{ semconv::attribute::OTEL_STATUS_CODE } = Empty,
{ semconv::attribute::OTEL_STATUS_DESCRIPTION } = Empty,
{ semconv::trace::CLIENT_ADDRESS } = remote_addr.ip().to_string(),
{ semconv::trace::CLIENT_PORT } = remote_addr.port() as i64,
{ semconv::trace::SERVER_ADDRESS } = Empty,
{ semconv::trace::SERVER_PORT } = Empty,
{ semconv::trace::NETWORK_PEER_ADDRESS } = remote_addr.ip().to_string(),
{ semconv::trace::NETWORK_PEER_PORT } = remote_addr.port() as i64,
{ semconv::trace::NETWORK_LOCAL_ADDRESS } = Empty,
{ semconv::trace::NETWORK_LOCAL_PORT } = Empty,
{ semconv::trace::NETWORK_TRANSPORT } = "tcp",
{ semconv::trace::NETWORK_TYPE } = socket_addr.semantic_convention_network_type(),
);
if let Ok(local_addr) = tcp_stream.local_addr() {
let addr = &local_addr.ip().to_string();
let port = local_addr.port();
span.record(semconv::trace::SERVER_ADDRESS, addr)
.record(semconv::trace::SERVER_PORT, port as i64)
.record(semconv::trace::NETWORK_LOCAL_ADDRESS, addr)
.record(semconv::trace::NETWORK_LOCAL_PORT, port as i64);
}
// Wait for tls handshake to happen
let tls_stream = match tls_acceptor
.accept(tcp_stream)
.instrument(span.clone())
.await
{
Ok(tls_stream) => tls_stream,
Err(err) => {
span.record(semconv::attribute::OTEL_STATUS_CODE, "Error")
.record(semconv::attribute::OTEL_STATUS_DESCRIPTION, err.to_string());
tracing::trace!(%remote_addr, "error during tls handshake connection");
return;
}
};
// Hyper has its own `AsyncRead` and `AsyncWrite` traits and doesn't use tokio.
// `TokioIo` converts between them.
let tls_stream = TokioIo::new(tls_stream);
// Hyper also has its own `Service` trait and doesn't use tower. We can use
// `hyper::service::service_fn` to create a hyper `Service` that calls our app through
// `tower::Service::call`.
let hyper_service = service_fn(move |request: Request<Incoming>| {
// This carries the current context with the trace id so that the TraceLayer can use that as a parent
let otel_context = Span::current().context();
// We need to clone here, because oneshot consumes self
tower_service
.clone()
.oneshot(request)
.with_context(otel_context)
});
let span = tracing::debug_span!("serve connection");
hyper_util::server::conn::auto::Builder::new(TokioExecutor::new())
.serve_connection_with_upgrades(tls_stream, hyper_service)
.instrument(span.clone())
.await
.unwrap_or_else(|err| {
span.record(semconv::attribute::OTEL_STATUS_CODE, "Error")
.record(semconv::attribute::OTEL_STATUS_DESCRIPTION, err.to_string());
tracing::warn!(%err, %remote_addr, "failed to serve connection");
})
}
}
pub trait SocketAddrExt {
fn semantic_convention_network_type(&self) -> &'static str;
}
impl SocketAddrExt for SocketAddr {
fn semantic_convention_network_type(&self) -> &'static str {
match self {
SocketAddr::V4(_) => "ipv4",
SocketAddr::V6(_) => "ipv6",
}
}
}
// TODO (@NickLarsenNZ): impl record_error(err: impl Error) for Span as a shortcut to set otel.status_* fields
// TODO (@NickLarsenNZ): wrap tracing::span macros to automatically add otel fields