use camino::{Utf8Path, Utf8PathBuf};
#[cfg(all(unix, privileged_unix_platform))]
use nix::unistd::{Uid, geteuid};
use postgresql_embedded::Settings;
use tracing::debug;
use super::{
env::{TestBootstrapEnvironment, XdgDirs, prepare_timezone_env},
mode::{root_privilege_drop_supported, unsupported_root_privilege_drop_error},
};
#[cfg(all(unix, privileged_unix_platform))]
use crate::privileges::default_paths_for;
use crate::{
PgEnvCfg,
error::{BootstrapError, BootstrapResult},
fs::{ensure_dir_exists, set_permissions},
observability::LOG_TARGET,
};
const PGPASS_MODE: u32 = 0o600;
#[cfg(all(unix, privileged_unix_platform))]
mod root;
#[cfg(all(unix, privileged_unix_platform))]
use self::root::bootstrap_with_root;
pub(super) fn prepare_bootstrap(
privileges: super::mode::ExecutionPrivileges,
settings: Settings,
cfg: &PgEnvCfg,
) -> BootstrapResult<PreparedBootstrap> {
if privileges == super::mode::ExecutionPrivileges::Root && !root_privilege_drop_supported() {
return Err(unsupported_root_privilege_drop_error());
}
#[cfg(all(unix, privileged_unix_platform))]
{
match privileges {
super::mode::ExecutionPrivileges::Root => bootstrap_with_root(settings, cfg),
super::mode::ExecutionPrivileges::Unprivileged => bootstrap_unprivileged(settings, cfg),
}
}
#[cfg(not(all(unix, privileged_unix_platform)))]
{
match privileges {
super::mode::ExecutionPrivileges::Root => {
unreachable!("root privilege drop support is checked before platform dispatch")
}
super::mode::ExecutionPrivileges::Unprivileged => bootstrap_unprivileged(settings, cfg),
}
}
}
pub(super) struct PreparedBootstrap {
pub(super) settings: Settings,
pub(super) environment: TestBootstrapEnvironment,
}
fn bootstrap_unprivileged(
mut settings: Settings,
cfg: &PgEnvCfg,
) -> BootstrapResult<PreparedBootstrap> {
let paths = resolve_settings_paths_for_current_user(&mut settings, cfg)?;
log_sanitized_settings(&settings);
ensure_parents_for_paths(&paths, ensure_parent_exists)?;
ensure_dir_with_mode(&paths.install_dir, 0o755)?;
ensure_dir_with_mode(&paths.data_dir, 0o700)?;
ensure_pgpass_permissions(&paths.password_file)?;
let timezone = prepare_timezone_env()?;
let xdg = prepare_xdg_dirs(&paths.install_dir)?;
let environment = TestBootstrapEnvironment::from_components(xdg, paths.password_file, timezone);
Ok(PreparedBootstrap {
settings,
environment,
})
}
struct SettingsPaths {
install_dir: Utf8PathBuf,
data_dir: Utf8PathBuf,
password_file: Utf8PathBuf,
install_default: bool,
data_default: bool,
}
#[cfg(all(unix, privileged_unix_platform))]
fn resolve_settings_paths_for_uid(
settings: &mut Settings,
cfg: &PgEnvCfg,
uid: Uid,
) -> BootstrapResult<SettingsPaths> {
let (default_install_dir, default_data_dir) = default_paths_for(uid);
let mut install_default = false;
let mut data_default = false;
if cfg.runtime_dir.is_none() {
settings.installation_dir = default_install_dir.clone().into_std_path_buf();
install_default = true;
}
if cfg.data_dir.is_none() {
settings.data_dir = default_data_dir.clone().into_std_path_buf();
data_default = true;
}
settings_paths_from_settings(settings, install_default, data_default)
}
#[cfg(all(unix, privileged_unix_platform))]
fn resolve_settings_paths_for_current_user(
settings: &mut Settings,
cfg: &PgEnvCfg,
) -> BootstrapResult<SettingsPaths> {
let uid = geteuid();
resolve_settings_paths_for_uid(settings, cfg, uid)
}
#[cfg(not(all(unix, privileged_unix_platform)))]
fn resolve_settings_paths_for_current_user(
settings: &mut Settings,
_cfg: &PgEnvCfg,
) -> BootstrapResult<SettingsPaths> {
settings_paths_from_settings(settings, false, false)
}
fn settings_paths_from_settings(
settings: &mut Settings,
install_default: bool,
data_default: bool,
) -> BootstrapResult<SettingsPaths> {
let install_dir = Utf8PathBuf::from_path_buf(settings.installation_dir.clone())
.map_err(|_| color_eyre::eyre::eyre!("installation_dir must be valid UTF-8"))?;
let data_dir = Utf8PathBuf::from_path_buf(settings.data_dir.clone())
.map_err(|_| color_eyre::eyre::eyre!("data_dir must be valid UTF-8"))?;
let password_file = install_dir.join(".pgpass");
settings.password_file = password_file.clone().into_std_path_buf();
Ok(SettingsPaths {
install_dir,
data_dir,
password_file,
install_default,
data_default,
})
}
fn ensure_parents_for_paths<F>(paths: &SettingsPaths, mut ensure_parent: F) -> BootstrapResult<()>
where
F: FnMut(&Utf8PathBuf) -> BootstrapResult<()>,
{
if paths.install_default {
ensure_parent(&paths.install_dir)?;
}
if paths.data_default {
ensure_parent(&paths.data_dir)?;
}
Ok(())
}
fn ensure_dir_with_mode(path: &Utf8Path, mode: u32) -> BootstrapResult<()> {
ensure_dir_exists(path).map_err(BootstrapError::from)?;
set_permissions(path, mode).map_err(BootstrapError::from)
}
fn ensure_pgpass_permissions(path: &Utf8PathBuf) -> BootstrapResult<()> {
match set_permissions(path, PGPASS_MODE) {
Ok(()) => Ok(()),
Err(err) => {
if let Some(io_err) = err.downcast_ref::<std::io::Error>() {
if io_err.kind() == std::io::ErrorKind::NotFound {
return Ok(());
}
}
Err(BootstrapError::from(err))
}
}
}
fn prepare_xdg_dirs(install_dir: &Utf8PathBuf) -> BootstrapResult<XdgDirs> {
let cache = install_dir.join("cache");
let runtime = install_dir.join("run");
ensure_dir_with_mode(&cache, 0o755)?;
ensure_dir_with_mode(&runtime, 0o700)?;
Ok(XdgDirs {
home: install_dir.clone(),
cache,
runtime,
})
}
fn ensure_parent_exists(path: &Utf8PathBuf) -> BootstrapResult<()> {
if let Some(parent) = path.parent() {
ensure_dir_exists(parent).map_err(BootstrapError::from)?;
}
Ok(())
}
fn log_sanitized_settings(settings: &Settings) {
let configuration_keys = sorted_configuration_keys(settings);
let timeout_secs = settings.timeout.map(|duration| duration.as_secs());
debug!(
target: LOG_TARGET,
version = %settings.version,
host = %settings.host,
port = settings.port,
installation_dir = %settings.installation_dir.display(),
data_dir = %settings.data_dir.display(),
password_file = %settings.password_file.display(),
username = %settings.username,
password = "<redacted>",
temporary = settings.temporary,
timeout_secs,
trust_installation_dir = settings.trust_installation_dir,
configuration_keys = ?configuration_keys,
"prepared postgres settings"
);
}
fn sorted_configuration_keys(settings: &Settings) -> Vec<&str> {
let mut keys: Vec<&str> = settings.configuration.keys().map(String::as_str).collect();
keys.sort_unstable();
keys
}
#[cfg(test)]
mod property_tests;
#[cfg(test)]
mod tests;
#[cfg(all(unix, privileged_unix_platform))]
mod unix_user;