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
// Copyright Materialize, Inc. and contributors. All rights reserved.
//
// Use of this software is governed by the Business Source License
// included in the LICENSE file.
//
// As of the Change Date specified in that file, in accordance with
// the Business Source License, use of this software will be governed
// by the Apache License, Version 2.0.
use std::collections::BTreeSet;
use std::net::IpAddr;
use std::ops::{Deref, DerefMut};
use std::time::Duration;
use mysql_async::{Conn, Opts, OptsBuilder};
use mz_ore::future::{InTask, OreFutureExt};
use mz_ore::option::OptionExt;
use mz_repr::CatalogItemId;
use mz_ssh_util::tunnel::{SshTimeoutConfig, SshTunnelConfig};
use mz_ssh_util::tunnel_manager::{ManagedSshTunnelHandle, SshTunnelManager};
use serde::{Deserialize, Serialize};
use tracing::{error, info, warn};
use crate::MySqlError;
/// Configures an optional tunnel for use when connecting to a MySQL
/// database.
#[derive(Debug, PartialEq, Clone)]
pub enum TunnelConfig {
/// Establish a direct TCP connection to the database host.
/// If `resolved_ips` is not None, the provided IPs will be used
/// rather than resolving the hostname.
Direct {
resolved_ips: Option<BTreeSet<IpAddr>>,
},
/// Establish a TCP connection to the database via an SSH tunnel.
/// This means first establishing an SSH connection to a bastion host,
/// and then opening a separate connection from that host to the database.
/// This is commonly referred by vendors as a "direct SSH tunnel", in
/// opposition to "reverse SSH tunnel", which is currently unsupported.
Ssh { config: SshTunnelConfig },
/// Establish a TCP connection to the database via an AWS PrivateLink
/// service.
AwsPrivatelink {
/// The ID of the AWS PrivateLink service.
connection_id: CatalogItemId,
},
}
pub const DEFAULT_TCP_KEEPALIVE: Duration = Duration::from_secs(60);
pub const DEFAULT_SNAPSHOT_MAX_EXECUTION_TIME: Duration = Duration::ZERO;
pub const DEFAULT_SNAPSHOT_LOCK_WAIT_TIMEOUT: Duration = Duration::from_secs(3600);
#[derive(Clone, Debug, PartialEq, Eq, Serialize, Deserialize)]
pub struct TimeoutConfig {
// Snapshot-related configs
pub snapshot_max_execution_time: Option<Duration>,
pub snapshot_lock_wait_timeout: Option<Duration>,
// Socket-related configs
pub tcp_keepalive: Option<Duration>,
// There are other timeout options on `mysql_async::OptsBuilder`
// (e.g. `conn_ttl` and `wait_timeout`) that could be exposed
// but they only apply to connection pools, which we are not currently using.
}
impl Default for TimeoutConfig {
fn default() -> Self {
Self {
snapshot_max_execution_time: Some(DEFAULT_SNAPSHOT_MAX_EXECUTION_TIME),
snapshot_lock_wait_timeout: Some(DEFAULT_SNAPSHOT_LOCK_WAIT_TIMEOUT),
tcp_keepalive: Some(DEFAULT_TCP_KEEPALIVE),
}
}
}
impl TimeoutConfig {
pub fn build(
snapshot_max_execution_time: Duration,
snapshot_lock_wait_timeout: Duration,
tcp_keepalive: Duration,
) -> Self {
// Verify values are within valid ranges
// Note we error log but do not fail as this is called in a non-fallible
// LD-sync in the adapter.
// https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_lock_wait_timeout
let snapshot_lock_wait_timeout = if snapshot_lock_wait_timeout.as_secs() > 31536000 {
error!(
"snapshot_lock_wait_timeout is too large: {}. Maximum is 31536000.",
snapshot_lock_wait_timeout.as_secs()
);
Some(DEFAULT_SNAPSHOT_LOCK_WAIT_TIMEOUT)
} else {
Some(snapshot_lock_wait_timeout)
};
// https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_max_execution_time
let snapshot_max_execution_time = if snapshot_max_execution_time.as_millis() > 4294967295 {
error!(
"snapshot_max_execution_time is too large: {}. Maximum is 4294967295.",
snapshot_max_execution_time.as_secs()
);
Some(DEFAULT_SNAPSHOT_MAX_EXECUTION_TIME)
} else {
Some(snapshot_max_execution_time)
};
let tcp_keepalive = match u32::try_from(tcp_keepalive.as_millis()) {
Err(_) => {
error!(
"tcp_keepalive is too large: {}. Maximum is {}.",
tcp_keepalive.as_millis(),
u32::MAX,
);
Some(DEFAULT_TCP_KEEPALIVE)
}
Ok(_) => Some(tcp_keepalive),
};
Self {
snapshot_max_execution_time,
snapshot_lock_wait_timeout,
tcp_keepalive,
}
}
/// Apply relevant timeout configurations to a `mysql_async::OptsBuilder`.
pub fn apply_to_opts(&self, mut opts_builder: OptsBuilder) -> Result<OptsBuilder, MySqlError> {
if let Some(tcp_keepalive) = self.tcp_keepalive {
opts_builder = opts_builder.tcp_keepalive(Some(
u32::try_from(tcp_keepalive.as_millis()).map_err(|e| {
MySqlError::InvalidClientConfig(format!(
"invalid tcp_keepalive duration: {}",
e
))
})?,
));
}
Ok(opts_builder)
}
}
/// A MySQL connection with an optional SSH tunnel handle.
///
/// This wrapper is intended to be used in place of `mysql_async::Conn` to
/// keep the SSH tunnel alive for the lifecycle of the connection by holding
/// a reference to the tunnel handle.
#[derive(Debug)]
pub struct MySqlConn {
conn: Conn,
_ssh_tunnel_handle: Option<ManagedSshTunnelHandle>,
}
impl Deref for MySqlConn {
type Target = Conn;
fn deref(&self) -> &Self::Target {
&self.conn
}
}
impl DerefMut for MySqlConn {
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.conn
}
}
impl MySqlConn {
pub async fn disconnect(mut self) -> Result<(), MySqlError> {
self.conn.disconnect().await?;
self._ssh_tunnel_handle.take();
Ok(())
}
pub fn take(self) -> (Conn, Option<ManagedSshTunnelHandle>) {
(self.conn, self._ssh_tunnel_handle)
}
}
/// Configuration for MySQL connections.
///
/// This wraps [`mysql_async::Opts`] to allow the configuration of a
/// tunnel via a [`TunnelConfig`].
#[derive(Clone, Debug)]
pub struct Config {
inner: Opts,
tunnel: TunnelConfig,
// Whether to poll I/O for this connection in a tokio task
// TODO(roshan): Make this apply to queries on the returned connection, not just the initial
// connection.
in_task: InTask,
ssh_timeout_config: SshTimeoutConfig,
}
impl Config {
pub fn new(
inner: Opts,
tunnel: TunnelConfig,
ssh_timeout_config: SshTimeoutConfig,
in_task: InTask,
) -> Self {
Self {
inner,
tunnel,
in_task,
ssh_timeout_config,
}
}
pub async fn connect(
&self,
task_name: &str,
ssh_tunnel_manager: &SshTunnelManager,
) -> Result<MySqlConn, MySqlError> {
let address = format!(
"mysql:://{}@{}:{}/{}",
self.inner.user().display_or("<unknown-user>"),
self.inner.ip_or_hostname(),
self.inner.tcp_port(),
self.inner.db_name().display_or("<unknown-dbname>"),
);
info!(%task_name, %address, "connecting");
match self.connect_internal(ssh_tunnel_manager).await {
Ok(t) => {
info!(%task_name, %address, "connected");
Ok(t)
}
Err(e) => {
warn!(%task_name, %address, "connection failed: {e:#}");
Err(e)
}
}
}
fn address(&self) -> (&str, u16) {
(self.inner.ip_or_hostname(), self.inner.tcp_port())
}
async fn connect_internal(
&self,
ssh_tunnel_manager: &SshTunnelManager,
) -> Result<MySqlConn, MySqlError> {
match &self.tunnel {
TunnelConfig::Direct { resolved_ips } => {
let opts_builder = OptsBuilder::from_opts(self.inner.clone()).resolved_ips(
resolved_ips
.clone()
.map(|ips| ips.into_iter().collect::<Vec<_>>()),
);
Ok(MySqlConn {
conn: Conn::new(opts_builder).await.map_err(MySqlError::from)?,
_ssh_tunnel_handle: None,
})
}
TunnelConfig::Ssh { config } => {
let (host, port) = self.address();
let tunnel = ssh_tunnel_manager
.connect(
config.clone(),
host,
port,
self.ssh_timeout_config,
self.in_task,
)
.await
.map_err(MySqlError::Ssh)?;
let tunnel_addr = tunnel.local_addr();
// Override the connection host and port for the actual TCP connection to point to
// the local tunnel instead.
let mut opts_builder = OptsBuilder::from_opts(self.inner.clone())
.ip_or_hostname(tunnel_addr.ip().to_string())
.tcp_port(tunnel_addr.port());
if let Some(ssl_opts) = self.inner.ssl_opts() {
if !ssl_opts.skip_domain_validation() {
// If the TLS configuration will validate the hostname, we need to set
// the TLS hostname back to the actual upstream host and not the hostname
// of the local SSH tunnel
opts_builder = opts_builder.ssl_opts(Some(
ssl_opts.clone().with_danger_tls_hostname_override(Some(
self.inner.ip_or_hostname().to_string(),
)),
));
}
}
Ok(MySqlConn {
conn: Conn::new(opts_builder)
.run_in_task_if(self.in_task, || "mysql_connect".to_string())
.await
.map_err(MySqlError::from)?,
_ssh_tunnel_handle: Some(tunnel),
})
}
TunnelConfig::AwsPrivatelink { connection_id } => {
let privatelink_host = mz_cloud_resources::vpc_endpoint_name(*connection_id);
// Override the connection host for the actual TCP connection to point to
// the privatelink hostname instead.
let mut opts_builder =
OptsBuilder::from_opts(self.inner.clone()).ip_or_hostname(privatelink_host);
if let Some(ssl_opts) = self.inner.ssl_opts() {
if !ssl_opts.skip_domain_validation() {
// If the TLS configuration will validate the hostname, we need to set
// the TLS hostname back to the actual upstream host and not the
// privatelink hostname.
opts_builder = opts_builder.ssl_opts(Some(
ssl_opts.clone().with_danger_tls_hostname_override(Some(
self.inner.ip_or_hostname().to_string(),
)),
));
}
}
Ok(MySqlConn {
conn: Conn::new(opts_builder)
.run_in_task_if(self.in_task, || "msyql_connect".to_string())
.await
.map_err(MySqlError::from)?,
_ssh_tunnel_handle: None,
})
}
}
}
}