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
//! Create, start, introspect, stop, and destroy PostgreSQL clusters.
mod error;
#[cfg(test)]
mod tests;
use std::ffi::{OsStr, OsString};
use std::os::unix::prelude::OsStringExt;
use std::path::{Path, PathBuf};
use std::process::{Command, ExitStatus};
use std::{env, fs, io};
use nix::errno::Errno;
use shell_quote::sh::escape_into;
use crate::runtime::{
strategy::{Strategy, StrategyLike},
Runtime,
};
use crate::version;
pub use error::ClusterError;
/// Representation of a PostgreSQL cluster.
///
/// The cluster may not yet exist on disk. It may exist but be stopped, or it
/// may be running. The methods here can be used to create, start, introspect,
/// stop, and destroy the cluster. There's no protection against concurrent
/// changes to the cluster made by other processes, but the functions in the
/// [`coordinate`][`crate::coordinate`] module may help.
pub struct Cluster {
/// The data directory of the cluster.
///
/// Corresponds to the `PGDATA` environment variable.
datadir: PathBuf,
/// How to select the PostgreSQL installation to use with this cluster.
strategy: Strategy,
}
impl Cluster {
/// Represent a cluster at the given path.
pub fn new<P: AsRef<Path>, S: Into<Strategy>>(
datadir: P,
strategy: S,
) -> Result<Self, ClusterError> {
Ok(Self {
datadir: datadir.as_ref().to_owned(),
strategy: strategy.into(),
})
}
/// Determine the runtime to use with this cluster.
fn runtime(&self) -> Result<Runtime, ClusterError> {
match version(self)? {
None => self
.strategy
.fallback()
.ok_or_else(|| ClusterError::RuntimeDefaultNotFound),
Some(version) => self
.strategy
.select(&version.into())
.ok_or_else(|| ClusterError::RuntimeNotFound(version)),
}
}
/// Return a [`Command`] that will invoke `pg_ctl` with the environment
/// referring to this cluster.
fn ctl(&self) -> Result<Command, ClusterError> {
let mut command = self.runtime()?.execute("pg_ctl");
command.env("PGDATA", &self.datadir);
command.env("PGHOST", &self.datadir);
Ok(command)
}
/// Check if this cluster is running.
///
/// Tries to distinguish carefully between "definitely running", "definitely
/// not running", and "don't know". The latter results in [`ClusterError`].
pub fn running(&self) -> Result<bool, ClusterError> {
let output = self.ctl()?.arg("status").output()?;
let code = match output.status.code() {
// Killed by signal; return early.
None => return Err(ClusterError::Other(output)),
// Success; return early (the server is running).
Some(0) => return Ok(true),
// More work required to decode what this means.
Some(code) => code,
};
let runtime = self.runtime()?;
// PostgreSQL has evolved to return different error codes in
// later versions, so here we check for specific codes to avoid
// masking errors from insufficient permissions or missing
// executables, for example.
let running = match runtime.version {
// PostgreSQL 10.x and later.
version::Version::Post10(_major, _minor) => {
// PostgreSQL 10
// https://www.postgresql.org/docs/10/static/app-pg-ctl.html
match code {
// 3 means that the data directory is present and
// accessible but that the server is not running.
3 => Some(false),
// 4 means that the data directory is not present or is
// not accessible. If it's missing, then the server is
// not running. If it is present but not accessible
// then crash because we can't know if the server is
// running or not.
4 if !exists(self) => Some(false),
// For anything else we don't know.
_ => None,
}
}
// PostgreSQL 9.x only.
version::Version::Pre10(9, point, _minor) => {
// PostgreSQL 9.4+
// https://www.postgresql.org/docs/9.4/static/app-pg-ctl.html
// https://www.postgresql.org/docs/9.5/static/app-pg-ctl.html
// https://www.postgresql.org/docs/9.6/static/app-pg-ctl.html
if point >= 4 {
match code {
// 3 means that the data directory is present and
// accessible but that the server is not running.
3 => Some(false),
// 4 means that the data directory is not present or is
// not accessible. If it's missing, then the server is
// not running. If it is present but not accessible
// then crash because we can't know if the server is
// running or not.
4 if !exists(self) => Some(false),
// For anything else we don't know.
_ => None,
}
}
// PostgreSQL 9.2+
// https://www.postgresql.org/docs/9.2/static/app-pg-ctl.html
// https://www.postgresql.org/docs/9.3/static/app-pg-ctl.html
else if point >= 2 {
match code {
// 3 means that the data directory is present and
// accessible but that the server is not running OR
// that the data directory is not present.
3 => Some(false),
// For anything else we don't know.
_ => None,
}
}
// PostgreSQL 9.0+
// https://www.postgresql.org/docs/9.0/static/app-pg-ctl.html
// https://www.postgresql.org/docs/9.1/static/app-pg-ctl.html
else {
match code {
// 1 means that the server is not running OR the data
// directory is not present OR that the data directory
// is not accessible.
1 => Some(false),
// For anything else we don't know.
_ => None,
}
}
}
// All other versions.
version::Version::Pre10(_major, _point, _minor) => None,
};
match running {
Some(running) => Ok(running),
// TODO: Perhaps include the exit code from `pg_ctl status` in the
// error message, and whatever it printed out.
None => Err(ClusterError::UnsupportedVersion(runtime.version)),
}
}
/// Return the path to the PID file used in this cluster.
///
/// The PID file does not necessarily exist.
pub fn pidfile(&self) -> PathBuf {
self.datadir.join("postmaster.pid")
}
/// Return the path to the log file used in this cluster.
///
/// The log file does not necessarily exist.
pub fn logfile(&self) -> PathBuf {
self.datadir.join("postmaster.log")
}
/// Create the cluster if it does not already exist.
pub fn create(&self) -> Result<State, ClusterError> {
match self._create() {
Err(ClusterError::UnixError(Errno::EAGAIN)) if exists(self) => Ok(Unmodified),
Err(ClusterError::UnixError(Errno::EAGAIN)) => Err(ClusterError::InUse),
other => other,
}
}
fn _create(&self) -> Result<State, ClusterError> {
if exists(self) {
// Nothing more to do; the cluster is already in place.
Ok(Unmodified)
} else {
// Create the cluster and report back that we did so.
fs::create_dir_all(&self.datadir)?;
#[allow(clippy::suspicious_command_arg_space)]
self.ctl()?
.arg("init")
.arg("-s")
.arg("-o")
// Passing multiple flags in a single `arg(...)` is
// intentional. These constitute the single value for the
// `-o` flag above.
.arg("-E utf8 --locale C -A trust")
.env("TZ", "UTC")
.output()?;
Ok(Modified)
}
}
/// Start the cluster if it's not already running.
pub fn start(&self) -> Result<State, ClusterError> {
match self._start() {
Err(ClusterError::UnixError(Errno::EAGAIN)) if self.running()? => Ok(Unmodified),
Err(ClusterError::UnixError(Errno::EAGAIN)) => Err(ClusterError::InUse),
other => other,
}
}
fn _start(&self) -> Result<State, ClusterError> {
// Ensure that the cluster has been created.
self._create()?;
// Check if we're running already.
if self.running()? {
// We didn't start this cluster; say so.
return Ok(Unmodified);
}
// Next, invoke `pg_ctl` to start the cluster.
// pg_ctl options:
// -l <file> -- log file.
// -s -- no informational messages.
// -w -- wait until startup is complete.
// postgres options:
// -h <arg> -- host name; empty arg means Unix socket only.
// -k -- socket directory.
self.ctl()?
.arg("start")
.arg("-l")
.arg(self.logfile())
.arg("-s")
.arg("-w")
.arg("-o")
.arg({
let mut arg = b"-h '' -k "[..].into();
escape_into(&self.datadir, &mut arg);
OsString::from_vec(arg)
})
.output()?;
// We did actually start the cluster; say so.
Ok(Modified)
}
/// Connect to this cluster.
pub fn connect(&self, database: &str) -> Result<postgres::Client, ClusterError> {
let user = &env::var("USER").unwrap_or_else(|_| "USER-not-set".to_string());
let host = self.datadir.to_string_lossy(); // postgres crate API limitation.
let client = postgres::Client::configure()
.user(user)
.dbname(database)
.host(&host)
.connect(postgres::NoTls)?;
Ok(client)
}
/// Run `psql` against this cluster, in the given database.
pub fn shell(&self, database: &str) -> Result<ExitStatus, ClusterError> {
let mut command = self.runtime()?.execute("psql");
command.arg("--quiet");
command.env("PGDATA", &self.datadir);
command.env("PGHOST", &self.datadir);
command.env("PGDATABASE", database);
Ok(command.spawn()?.wait()?)
}
/// Run the given command against this cluster.
///
/// The command is run with the `PGDATA`, `PGHOST`, and `PGDATABASE`
/// environment variables set appropriately.
pub fn exec<T: AsRef<OsStr>>(
&self,
database: &str,
command: T,
args: &[T],
) -> Result<ExitStatus, ClusterError> {
let mut command = self.runtime()?.command(command);
command.args(args);
command.env("PGDATA", &self.datadir);
command.env("PGHOST", &self.datadir);
command.env("PGDATABASE", database);
Ok(command.spawn()?.wait()?)
}
/// The names of databases in this cluster.
pub fn databases(&self) -> Result<Vec<String>, ClusterError> {
let mut conn = self.connect("template1")?;
let rows = conn.query(
"SELECT datname FROM pg_catalog.pg_database ORDER BY datname",
&[],
)?;
let datnames: Vec<String> = rows.iter().map(|row| row.get(0)).collect();
Ok(datnames)
}
/// Create the named database.
pub fn createdb(&self, database: &str) -> Result<(), ClusterError> {
let statement = format!(
"CREATE DATABASE {}",
postgres_protocol::escape::escape_identifier(database)
);
self.connect("template1")?
.execute(statement.as_str(), &[])?;
Ok(())
}
/// Drop the named database.
pub fn dropdb(&self, database: &str) -> Result<(), ClusterError> {
let statement = format!(
"DROP DATABASE {}",
postgres_protocol::escape::escape_identifier(database)
);
self.connect("template1")?
.execute(statement.as_str(), &[])?;
Ok(())
}
/// Stop the cluster if it's running.
pub fn stop(&self) -> Result<State, ClusterError> {
match self._stop() {
Err(ClusterError::UnixError(Errno::EAGAIN)) if !self.running()? => Ok(Unmodified),
Err(ClusterError::UnixError(Errno::EAGAIN)) => Err(ClusterError::InUse),
other => other,
}
}
fn _stop(&self) -> Result<State, ClusterError> {
// If the cluster's not already running, don't do anything.
if !self.running()? {
return Ok(Unmodified);
}
// pg_ctl options:
// -w -- wait for shutdown to complete.
// -m <mode> -- shutdown mode.
self.ctl()?
.arg("stop")
.arg("-s")
.arg("-w")
.arg("-m")
.arg("fast")
.output()?;
Ok(Modified)
}
/// Destroy the cluster if it exists, after stopping it.
pub fn destroy(&self) -> Result<State, ClusterError> {
match self._destroy() {
Err(ClusterError::UnixError(Errno::EAGAIN)) => Err(ClusterError::InUse),
other => other,
}
}
fn _destroy(&self) -> Result<State, ClusterError> {
if self._stop()? == Modified || self.datadir.is_dir() {
fs::remove_dir_all(&self.datadir)?;
Ok(Modified)
} else {
Ok(Unmodified)
}
}
}
impl AsRef<Path> for Cluster {
fn as_ref(&self) -> &Path {
&self.datadir
}
}
#[derive(Debug, PartialEq, Eq)]
pub enum State {
/// The action we requested was performed from this process, e.g. we tried
/// to create the cluster, and we did indeed create the cluster.
Modified,
/// The action we requested was performed by another process, or was not
/// necessary, e.g. we tried to stop the cluster but it was already stopped.
Unmodified,
}
// For convenience.
use State::{Modified, Unmodified};
/// A fairly simplistic but quick check: does the directory exist and does it
/// look like a PostgreSQL cluster data directory, i.e. does it contain a file
/// named `PG_VERSION`?
///
/// [`version()`] provides a more reliable measure, plus yields the version of
/// PostgreSQL required to use the cluster.
pub fn exists<P: AsRef<Path>>(datadir: P) -> bool {
let datadir = datadir.as_ref();
datadir.is_dir() && datadir.join("PG_VERSION").is_file()
}
/// Yields the version of PostgreSQL required to use a cluster.
///
/// This returns the version from the file named `PG_VERSION` in the data
/// directory if it exists, otherwise this returns `None`. For PostgreSQL
/// versions before 10 this is typically (maybe always) the major and point
/// version, e.g. 9.4 rather than 9.4.26. For version 10 and above it appears to
/// be just the major number, e.g. 14 rather than 14.2.
pub fn version<P: AsRef<Path>>(
datadir: P,
) -> Result<Option<version::PartialVersion>, ClusterError> {
let version_file = datadir.as_ref().join("PG_VERSION");
match std::fs::read_to_string(version_file) {
Ok(version) => Ok(Some(version.parse()?)),
Err(err) if err.kind() == io::ErrorKind::NotFound => Ok(None),
Err(err) => Err(err)?,
}
}