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
//! Connection parameters
use super::{cp_url::format_as_url, Compression};
use crate::{protocol::util, ConnectParamsBuilder, HdbError, HdbResult, IntoConnectParams};
use rustls::{
client::{ServerCertVerified, ServerCertVerifier, ServerName},
Certificate,
};
use secstr::SecUtf8;
use serde::de::Deserialize;
use std::{
io::Read,
path::{Path, PathBuf},
sync::Arc,
};
use tokio_rustls::rustls::{ClientConfig, OwnedTrustAnchor, RootCertStore};
/// An immutable struct with all information necessary to open a new connection
/// to a HANA database.
///
/// # Instantiating a `ConnectParams` using the `ConnectParamsBuilder`
///
/// See [`ConnectParamsBuilder`](crate::ConnectParamsBuilder) for details.
///
/// ```rust,no_run
/// use hdbconnect::{ConnectParams, ServerCerts};
/// # fn read_certificate() -> String {String::from("can't do that")};
/// let certificate: String = read_certificate();
/// let connect_params = ConnectParams::builder()
/// .hostname("the_host")
/// .port(2222)
/// .dbuser("my_user")
/// .password("my_passwd")
/// .tls_with(ServerCerts::Direct(certificate))
/// .build()
/// .unwrap();
/// ```
///
/// # Instantiating a `ConnectParams` from a URL
///
/// See module [`url`](crate::url) for details about the supported URLs.
///
/// ```rust
/// use hdbconnect::IntoConnectParams;
/// let conn_params = "hdbsql://my_user:my_passwd@the_host:2222"
/// .into_connect_params()
/// .unwrap();
/// ```
///
/// # Redirects
///
/// `hdbconnect` supports redirects.
/// You can connect to an MDC tenant database by specifying the host and port of the
/// system database, and the name of the database to which you want to be connected
/// with url parameter "db" or with [`ConnectParamsBuilder::dbname`].
///
#[derive(Clone, Debug, Eq, PartialEq)]
pub struct ConnectParams {
host: String,
addr: String,
dbuser: String,
dbname: Option<String>,
network_group: Option<String>,
password: SecUtf8,
clientlocale: Option<String>,
tls: Tls,
compression: Compression,
}
/// Describes whether and how TLS is to be used.
#[derive(Clone, Debug, Default, Eq, PartialEq, Deserialize)]
pub enum Tls {
/// Plain TCP connection
#[default]
Off,
/// TLS without server validation - dangerous!
Insecure,
/// TLS with server validation
Secure(Vec<ServerCerts>),
}
impl ConnectParams {
#[allow(clippy::too_many_arguments)]
pub(crate) fn new(
host: String,
port: u16,
dbuser: String,
password: SecUtf8,
dbname: Option<String>,
network_group: Option<String>,
clientlocale: Option<String>,
compression: Compression,
tls: Tls,
) -> Self {
Self {
addr: format!("{host}:{port}"),
host,
dbuser,
password,
clientlocale,
tls,
dbname,
network_group,
compression,
}
}
/// Returns a new builder for `ConnectParams`.
pub fn builder() -> ConnectParamsBuilder {
ConnectParamsBuilder::new()
}
pub(crate) fn redirect(&self, host: &str, port: u16) -> ConnectParams {
let mut new_params = self.clone();
new_params.dbname = None;
new_params.host = host.to_string();
new_params.addr = format!("{host}:{port}");
new_params
}
/// Reads a url from the given file and converts it into `ConnectParams`.
///
/// # Errors
/// `HdbError::ConnParams`
pub fn from_file<P: AsRef<Path>>(path: P) -> HdbResult<Self> {
std::fs::read_to_string(path)
.map_err(|e| HdbError::ConnParams {
source: Box::new(e),
})?
.into_connect_params()
}
/// The `ServerCerts`.
pub fn server_certs(&self) -> Option<&Vec<ServerCerts>> {
match self.tls {
Tls::Secure(ref certs) => Some(certs),
Tls::Insecure | Tls::Off => None,
}
}
/// The host.
pub fn host(&self) -> &str {
&self.host
}
/// The socket address.
pub fn addr(&self) -> &str {
&self.addr
}
/// Whether TLS or a plain TCP connection is to be used.
pub fn is_tls(&self) -> bool {
!matches!(self.tls, Tls::Off)
}
/// The database user.
pub fn dbuser(&self) -> &str {
self.dbuser.as_str()
}
/// The password.
pub fn password(&self) -> &SecUtf8 {
&self.password
}
/// The client locale.
pub fn clientlocale(&self) -> Option<&str> {
self.clientlocale.as_deref()
}
pub(crate) fn compression(&self) -> Compression {
self.compression
}
/// The name of the (MDC) database.
pub fn dbname(&self) -> Option<&str> {
self.dbname.as_deref()
}
/// The name of a network group.
pub fn network_group(&self) -> Option<&str> {
self.network_group.as_deref()
}
#[allow(clippy::too_many_lines)]
pub(crate) fn rustls_clientconfig(&self) -> std::io::Result<ClientConfig> {
match self.tls {
Tls::Off => Err(util::io_error(
"rustls_clientconfig called with Tls::Off - \
this should have been prevented earlier",
)),
Tls::Secure(ref server_certs) => {
let mut root_store = RootCertStore::empty();
for server_cert in server_certs {
match server_cert {
ServerCerts::RootCertificates => {
root_store.add_trust_anchors(
webpki_roots::TLS_SERVER_ROOTS.iter().map(|ta| {
OwnedTrustAnchor::from_subject_spki_name_constraints(
ta.subject,
ta.spki,
ta.name_constraints,
)
}),
);
}
ServerCerts::Direct(ref pem) => {
let (n_ok, n_err) =
root_store.add_parsable_certificates(&[pem.clone().into_bytes()]);
if n_ok == 0 {
info!("None of the directly provided server certificates was accepted");
} else if n_err > 0 {
info!(
"Not all directly provided server certificates were accepted"
);
}
}
ServerCerts::Environment(env_var) => {
match std::env::var(env_var) {
Ok(value) => {
let (n_ok, n_err) =
root_store.add_parsable_certificates(&[value.into_bytes()]);
if n_ok == 0 {
info!("None of the env-provided server certificates was accepted");
} else if n_err > 0 {
info!("Not all env-provided server certificates were accepted");
}
}
Err(e) => {
return Err(std::io::Error::new(
std::io::ErrorKind::InvalidInput,
format!(
"Environment variable {env_var} not found, reason: {e}"
),
));
}
}
}
ServerCerts::Directory(trust_anchor_dir) => {
let trust_anchor_files: Vec<PathBuf> =
std::fs::read_dir(trust_anchor_dir)?
.filter_map(Result::ok)
.filter(|dir_entry| {
dir_entry.file_type().is_ok()
&& dir_entry.file_type().unwrap().is_file()
})
.filter(|dir_entry| {
let path = dir_entry.path();
let ext = path.extension();
Some(AsRef::<std::ffi::OsStr>::as_ref("pem")) == ext
})
.map(|dir_entry| dir_entry.path())
.collect();
let mut t_ok = 0;
let mut t_err = 0;
for trust_anchor_file in trust_anchor_files {
trace!("Trying trust anchor file {:?}", trust_anchor_file);
let mut buf = Vec::<u8>::new();
std::fs::File::open(trust_anchor_file)?.read_to_end(&mut buf)?;
#[allow(clippy::map_err_ignore)]
let (n_ok, n_err) = root_store.add_parsable_certificates(&[buf]);
t_ok += n_ok;
t_err += n_err;
}
if t_ok == 0 {
warn!(
"None of the server certificates in the directory was accepted"
);
} else if t_err > 0 {
warn!("Not all server certificates in the directory were accepted");
}
}
}
}
let config = ClientConfig::builder()
.with_safe_defaults()
.with_root_certificates(root_store)
.with_no_client_auth();
Ok(config)
}
Tls::Insecure => {
let config = rustls::client::ClientConfig::builder()
.with_safe_defaults()
.with_custom_certificate_verifier(Arc::new(NoCertificateVerification {}))
.with_no_client_auth();
Ok(config)
}
}
}
}
impl std::fmt::Display for ConnectParams {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
format_as_url(
&self.addr,
&self.dbuser,
&self.dbname,
&self.network_group,
&self.tls,
&self.clientlocale,
self.compression,
f,
)
}
}
/// Expresses where Certificates for TLS are read from.
#[derive(Clone, Debug, PartialEq, Eq, Serialize, Deserialize)]
pub enum ServerCerts {
/// Server Certificates are read from files in the specified folder.
Directory(String),
/// Server Certificates are read from the specified environment variable.
Environment(String),
/// The Server Certificate is given directly.
Direct(String),
/// Defines that the server roots from <https://mkcert.org/> should be added to the
/// trust store for TLS.
RootCertificates,
}
struct NoCertificateVerification {}
impl ServerCertVerifier for NoCertificateVerification {
fn verify_server_cert(
&self,
_end_entity: &Certificate,
_intermediates: &[Certificate],
_server_name: &ServerName,
_scts: &mut dyn Iterator<Item = &[u8]>,
_ocsp_response: &[u8],
_now: std::time::SystemTime,
) -> Result<ServerCertVerified, rustls::Error> {
Ok(ServerCertVerified::assertion())
}
}
#[allow(clippy::missing_errors_doc)]
impl<'de> Deserialize<'de> for ConnectParams {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
#[derive(Deserialize)]
struct DeserializationHelper {
host: String,
port: u16,
dbuser: String,
dbname: Option<String>,
network_group: Option<String>,
password: String,
clientlocale: Option<String>,
compression: Compression,
tls: Tls,
}
let helper: DeserializationHelper = DeserializationHelper::deserialize(deserializer)?;
Ok(ConnectParams::new(
helper.host,
helper.port,
helper.dbuser,
SecUtf8::from(helper.password),
helper.dbname,
helper.network_group,
helper.clientlocale,
helper.compression,
helper.tls,
))
}
fn deserialize_in_place<D>(deserializer: D, place: &mut Self) -> Result<(), D::Error>
where
D: serde::Deserializer<'de>,
{
// Default implementation just delegates to `deserialize` impl.
*place = Deserialize::deserialize(deserializer)?;
Ok(())
}
}
#[cfg(test)]
mod tests {
use super::IntoConnectParams;
use super::ServerCerts;
#[test]
fn test_params_from_url() {
{
let params = "hdbsql://meier:schLau@abcd123:2222"
.into_connect_params()
.unwrap();
assert_eq!("meier", params.dbuser());
assert_eq!("schLau", params.password().unsecure());
assert_eq!("abcd123:2222", params.addr());
assert_eq!(None, params.clientlocale);
assert!(params.server_certs().is_none());
assert!(!params.is_tls());
}
{
let params = "hdbsql://meier:schLau@abcd123:2222?db=JOE"
.into_connect_params()
.unwrap();
assert_eq!("meier", params.dbuser());
assert_eq!("schLau", params.password().unsecure());
assert_eq!("abcd123:2222", params.addr());
assert_eq!(None, params.clientlocale);
assert!(params.server_certs().is_none());
assert!(!params.is_tls());
assert_eq!(Some("JOE"), params.dbname());
let redirect_params = params.redirect("xyz9999", 11);
assert_eq!("meier", redirect_params.dbuser());
assert_eq!("schLau", redirect_params.password().unsecure());
assert_eq!("xyz9999:11", redirect_params.addr());
assert_eq!(None, redirect_params.clientlocale);
assert!(redirect_params.server_certs().is_none());
assert!(!redirect_params.is_tls());
assert_eq!(None, redirect_params.dbname());
}
{
let params = "hdbsqls://meier:schLau@abcd123:2222\
?client_locale=CL1\
&tls_certificate_dir=TCD\
&use_mozillas_root_certificates"
.into_connect_params()
.unwrap();
assert_eq!("meier", params.dbuser());
assert_eq!("schLau", params.password().unsecure());
assert_eq!(Some("CL1".to_string()), params.clientlocale);
assert_eq!(
ServerCerts::Directory("TCD".to_string()),
*params.server_certs().unwrap().get(0).unwrap()
);
assert_eq!(
ServerCerts::RootCertificates,
*params.server_certs().unwrap().get(1).unwrap()
);
assert_eq!(
params.to_string(),
"hdbsqls://meier@abcd123:2222\
?tls_certificate_dir=TCD\
&use_mozillas_root_certificates&client_locale=CL1"
.to_owned() // no password
);
}
{
let params = "hdbsqls://meier:schLau@abcd123:2222\
?insecure_omit_server_certificate_check"
.into_connect_params()
.unwrap();
assert_eq!("meier", params.dbuser());
assert_eq!("schLau", params.password().unsecure());
assert!(params.server_certs().is_none());
assert!(params.is_tls());
assert_eq!(
params.to_string(),
"hdbsqls://meier@abcd123:2222?insecure_omit_server_certificate_check".to_owned() // no password
);
}
}
#[test]
fn test_errors() {
assert!("hdbsql://schLau@abcd123:2222"
.into_connect_params()
.is_err());
assert!("hdbsql://meier@abcd123:2222".into_connect_params().is_err());
assert!("hdbsql://meier:schLau@:2222".into_connect_params().is_err());
assert!("hdbsql://meier:schLau@abcd123"
.into_connect_params()
.is_err());
}
}