foundationdb/api.rs
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 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507
// Copyright 2018 foundationdb-rs developers, https://github.com/Clikengo/foundationdb-rs/graphs/contributors
// Copyright 2013-2018 Apple, Inc and the FoundationDB project authors.
//
// Licensed under the Apache License, Version 2.0, <LICENSE-APACHE or
// http://apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or
// http://opensource.org/licenses/MIT>, at your option. This file may not be
// copied, modified, or distributed except according to those terms.
//! Configuration of foundationDB API and Network
//!
//! Provides a safe wrapper around the following C API calls:
//!
//! - [API versioning](https://apple.github.io/foundationdb/api-c.html#api-versioning)
//! - [Network](https://apple.github.io/foundationdb/api-c.html#network)
//!
//! The network lifecycle is tracked by a process-global state machine
//! (`Uninitialized -> ApiVersionSelected -> Running -> Stopped`). Booting is safe
//! and idempotent, the network is started lazily by [`crate::Database`]
//! constructors if needed, and it runs until process exit: an atexit hook stops it
//! and joins the network thread, as required by the C API. Applications that
//! manage their own shutdown can call [`disable_stop_on_exit`] and/or
//! [`stop_network`].
//!
//! <div class="warning">
//!
//! The automatic stop at process exit is meant for tests and short-lived tools.
//! In a production application, prefer a clean teardown: the network thread is
//! the event loop driving every transaction and you may still have on-going
//! operations at exit time. Finish or cancel your work, drop the
//! [`crate::Database`] handles, then call [`stop_network`] yourself.
//!
//! </div>
use std::io::Write;
use std::sync::atomic::{AtomicBool, AtomicI32, Ordering};
use std::sync::{Mutex, MutexGuard, PoisonError};
use std::thread::JoinHandle;
use crate::options::NetworkOption;
use crate::{FdbError, FdbResult, error};
use foundationdb_sys as fdb_sys;
/// Returns the max api version of the underlying Fdb C API Client
pub fn get_max_api_version() -> i32 {
unsafe { fdb_sys::fdb_get_max_api_version() }
}
// FDB C error codes used by the lifecycle state machine
const ERR_API_VERSION_UNSET: i32 = 2200;
const ERR_API_VERSION_ALREADY_SET: i32 = 2201;
const ERR_API_VERSION_NOT_SUPPORTED: i32 = 2203;
const ERR_NETWORK_ALREADY_SETUP: i32 = 2009;
const ERR_NETWORK_CANNOT_BE_RESTARTED: i32 = 2025;
/// Process-global lifecycle of the FoundationDB client.
///
/// The C API allows selecting the API version and setting up the network once per
/// process, and the network can never be restarted once stopped. Every FFI call
/// involved lives in exactly one transition below, serialized by the `NETWORK`
/// mutex.
enum NetworkLifecycle {
Uninitialized,
ApiVersionSelected {
api_version: i32,
},
Running {
api_version: i32,
handle: JoinHandle<()>,
},
Stopped {
api_version: i32,
},
}
static NETWORK: Mutex<NetworkLifecycle> = Mutex::new(NetworkLifecycle::Uninitialized);
static STOP_ON_EXIT: AtomicBool = AtomicBool::new(true);
// Last error returned by fdb_run_network (0 = none). An atomic, not a mutex: the
// network thread must never take a lock shared with the thread joining it.
static NETWORK_RUN_ERROR: AtomicI32 = AtomicI32::new(0);
fn lock_network() -> MutexGuard<'static, NetworkLifecycle> {
// State is only mutated after the corresponding FFI call succeeded, so a
// poisoned lock still guards a consistent state. The one exception is a
// thread-spawn panic in start_network after fdb_setup_network succeeded
// (OS resource exhaustion): the state then stays ApiVersionSelected while
// the network is set up, and any retry fails with 2009. Deliberately not
// handled: nothing sensible can be done at that point.
NETWORK.lock().unwrap_or_else(PoisonError::into_inner)
}
impl NetworkLifecycle {
fn select_api_version(&mut self, version: i32) -> FdbResult<()> {
match self {
NetworkLifecycle::Uninitialized => {
error::eval(unsafe {
fdb_sys::fdb_select_api_version_impl(version, fdb_sys::FDB_API_VERSION as i32)
})
.inspect_err(|e| {
// generally means the local libfdb doesn't support the requested version
if e.code() == ERR_API_VERSION_NOT_SUPPORTED {
let max_api_version = get_max_api_version();
if max_api_version < fdb_sys::FDB_API_VERSION as i32 {
eprintln!(
"The version of FoundationDB binding requested '{}' is not supported",
fdb_sys::FDB_API_VERSION
);
eprintln!(
"by the installed FoundationDB C library. Maximum supported version by the local library is {max_api_version}"
);
}
}
})?;
*self = NetworkLifecycle::ApiVersionSelected {
api_version: version,
};
Ok(())
}
NetworkLifecycle::ApiVersionSelected { api_version }
| NetworkLifecycle::Running { api_version, .. }
| NetworkLifecycle::Stopped { api_version } => {
if *api_version == version {
Ok(())
} else {
Err(FdbError::from_code(ERR_API_VERSION_ALREADY_SET))
}
}
}
}
fn set_network_option(&mut self, option: NetworkOption) -> FdbResult<()> {
match self {
// unreachable through the public API: a NetworkBuilder only exists once
// an api version is selected
NetworkLifecycle::Uninitialized => Err(FdbError::from_code(ERR_API_VERSION_UNSET)),
NetworkLifecycle::ApiVersionSelected { .. } => {
// SAFETY: the api version is selected and the network is not set up
// yet; calls are serialized by the NETWORK mutex.
unsafe { option.apply() }
}
NetworkLifecycle::Running { .. } => Err(FdbError::from_code(ERR_NETWORK_ALREADY_SETUP)),
NetworkLifecycle::Stopped { .. } => {
Err(FdbError::from_code(ERR_NETWORK_CANNOT_BE_RESTARTED))
}
}
}
fn start_network(&mut self) -> FdbResult<()> {
if matches!(self, NetworkLifecycle::Uninitialized) {
self.select_api_version(fdb_sys::FDB_API_VERSION as i32)?;
}
match self {
NetworkLifecycle::Uninitialized => unreachable!("the api version was just selected"),
NetworkLifecycle::ApiVersionSelected { api_version } => {
let api_version = *api_version;
error::eval(unsafe { fdb_sys::fdb_setup_network() })?;
// Registered once the network is set up, i.e. after libfdb_c was
// loaded: atexit handlers run in LIFO order, so ours stops and joins
// the network before any exit-time cleanup of the library itself.
if unsafe { libc::atexit(network_atexit_hook) } != 0 {
eprintln!(
"failed to register the FoundationDB atexit hook; the network will not be stopped automatically at process exit"
);
}
let handle = std::thread::Builder::new()
.name("fdb-network".to_string())
.spawn(run_network_thread)
.expect("failed to spawn the fdb-network thread");
*self = NetworkLifecycle::Running {
api_version,
handle,
};
Ok(())
}
NetworkLifecycle::Running { .. } => Ok(()),
NetworkLifecycle::Stopped { .. } => {
Err(FdbError::from_code(ERR_NETWORK_CANNOT_BE_RESTARTED))
}
}
}
fn stop_network(&mut self) -> FdbResult<()> {
match self {
NetworkLifecycle::Uninitialized => Ok(()),
NetworkLifecycle::ApiVersionSelected { api_version } => {
// Nothing is running, but an explicit stop must be terminal so that
// a later lazy boot cannot restart the network behind the caller's
// back.
*self = NetworkLifecycle::Stopped {
api_version: *api_version,
};
Ok(())
}
NetworkLifecycle::Running { .. } => {
// Stop before taking the variant apart: on error the state stays
// Running, handle included.
error::eval(unsafe { fdb_sys::fdb_stop_network() })?;
let NetworkLifecycle::Running {
api_version,
handle,
} = std::mem::replace(self, NetworkLifecycle::Uninitialized)
else {
unreachable!("state was just matched as Running");
};
if handle.join().is_err() {
// run_network_thread cannot panic; keep the exit path panic-free
// anyway (eprintln! panics if the stderr write fails).
let _ = writeln!(std::io::stderr(), "the fdb-network thread panicked");
}
*self = NetworkLifecycle::Stopped { api_version };
Ok(())
}
NetworkLifecycle::Stopped { .. } => Ok(()),
}
}
}
/// Body of the "fdb-network" thread.
///
/// Invariant: this function must never lock `NETWORK`, as `stop_network` joins the
/// thread while holding the lock.
fn run_network_thread() {
if let Err(err) = error::eval(unsafe { fdb_sys::fdb_run_network() }) {
NETWORK_RUN_ERROR.store(err.code(), Ordering::Release);
let _ = writeln!(
std::io::stderr(),
"fdb_run_network returned an error: {err}"
);
}
}
/// Stops the network at process exit, as required by the C API contract.
///
/// Panic-free: unwinding out of an `extern "C"` function would abort with a less
/// useful message.
extern "C" fn network_atexit_hook() {
if !STOP_ON_EXIT.load(Ordering::Acquire) {
return;
}
if let Err(err) = lock_network().stop_network() {
// Exiting with the network still running is undefined behavior, aborting
// is not.
let _ = writeln!(
std::io::stderr(),
"failed to stop the FoundationDB network at exit: {err}"
);
std::process::abort();
}
}
/// Stops the FoundationDB network and joins the network thread.
///
/// This is terminal for the process: once it returns `Ok`, every FoundationDB
/// operation fails with error 2025 (`network_cannot_be_restarted`), including in
/// other threads. It is idempotent. One exception to terminality: if the client
/// was never initialized at all (no boot, no API version selected, no `Database`
/// created), the call is a plain no-op and a later boot still succeeds.
///
/// Tests and short-lived tools can simply rely on the automatic stop at process
/// exit. In a production application, prefer calling this yourself as part of a
/// clean shutdown sequence, once on-going operations are finished and the
/// [`crate::Database`] handles are dropped.
///
/// Must not be called from the network thread itself (e.g. from a future
/// callback), as it joins that thread.
///
/// # Examples
///
/// ```rust
/// foundationdb::boot().expect("failed to initialize FoundationDB");
/// // ... use FoundationDB ...
/// foundationdb::api::stop_network().expect("failed to stop the network");
/// // The stop is terminal: any use of FoundationDB now fails with error 2025.
/// assert_eq!(foundationdb::boot().err().map(|e| e.code()), Some(2025));
/// ```
pub fn stop_network() -> FdbResult<()> {
lock_network().stop_network()
}
/// Disables the automatic network stop at process exit.
///
/// The atexit hook registered when the network starts becomes a no-op. Use it
/// when your application owns its shutdown sequence and calls [`stop_network`]
/// itself: the C API requires the network to be stopped and joined before a
/// normal process exit.
pub fn disable_stop_on_exit() {
STOP_ON_EXIT.store(false, Ordering::Release);
}
/// Returns the error reported by the network event loop, if it stopped with one.
pub fn network_run_error() -> Option<FdbError> {
match NETWORK_RUN_ERROR.load(Ordering::Acquire) {
0 => None,
code => Some(FdbError::from_code(code)),
}
}
/// Starts the network with the default API version if nothing was booted yet.
///
/// Lazy-boot entry point used by `Database` constructors.
pub(crate) fn ensure_network_started() -> FdbResult<()> {
lock_network().start_network()
}
/// A Builder with which different versions of the Fdb C API can be initialized
///
/// ```
/// foundationdb::api::FdbApiBuilder::default().build().expect("fdb api initialized");
/// ```
pub struct FdbApiBuilder {
runtime_version: i32,
}
impl FdbApiBuilder {
/// The version of run-time behavior the API is requested to provide.
pub fn runtime_version(&self) -> i32 {
self.runtime_version
}
/// Set the version of run-time behavior the API is requested to provide.
///
/// Must be less than or equal to header_version, `foundationdb_sys::FDB_API_VERSION`, and should almost always be equal.
/// Language bindings which themselves expose API versioning will usually pass the version requested by the application.
pub fn set_runtime_version(mut self, version: i32) -> Self {
self.runtime_version = version;
self
}
/// Selects the foundationDB API version and returns a `NetworkBuilder`.
///
/// Idempotent: re-selecting the version already in use is a no-op.
///
/// # Errors
///
/// - error 2201 (`api_version_already_set`) if a different version was selected
/// before
/// - error 2203 (`api_version_not_supported`) if the installed libfdb_c does
/// not support the requested version
pub fn build(self) -> FdbResult<NetworkBuilder> {
lock_network().select_api_version(self.runtime_version)?;
Ok(NetworkBuilder { _private: () })
}
}
impl Default for FdbApiBuilder {
fn default() -> Self {
FdbApiBuilder {
runtime_version: fdb_sys::FDB_API_VERSION as i32,
}
}
}
/// A Builder to configure network options and start the network event loop.
///
/// ```
/// use foundationdb::api::FdbApiBuilder;
///
/// let network_builder = FdbApiBuilder::default().build().expect("fdb api initialized");
/// network_builder.boot().expect("fdb network running");
/// ```
pub struct NetworkBuilder {
_private: (),
}
impl NetworkBuilder {
/// Set network options.
///
/// # Errors
///
/// - error 2009 (`network_already_setup`) once the network is running
/// - error 2025 (`network_cannot_be_restarted`) once the network is stopped
pub fn set_option(self, option: NetworkOption) -> FdbResult<Self> {
lock_network().set_network_option(option)?;
Ok(self)
}
/// Starts the FoundationDB network event loop in a dedicated thread.
///
/// Safe and idempotent: booting an already running network is a no-op. The
/// network runs until process exit, where an atexit hook stops it and joins the
/// network thread, or until an explicit [`stop_network`] call.
///
/// # Errors
///
/// - error 2025 (`network_cannot_be_restarted`) if the network was stopped
///
/// # Examples
///
/// ```rust
/// use foundationdb::api::FdbApiBuilder;
///
/// let network_builder = FdbApiBuilder::default().build().expect("fdb api initialized");
/// network_builder.boot().expect("fdb network running");
/// // do some interesting things with the API...
/// ```
///
/// ```rust
/// use foundationdb::api::FdbApiBuilder;
///
/// #[tokio::main]
/// async fn main() {
/// let network_builder = FdbApiBuilder::default().build().expect("fdb api initialized");
/// network_builder.boot().expect("fdb network running");
/// // do some interesting things with the API...
/// }
/// ```
pub fn boot(self) -> FdbResult<NetworkAutoStop> {
lock_network().start_network()?;
Ok(NetworkAutoStop { _private: () })
}
}
/// Kept for backward compatibility: dropping it does nothing.
///
/// The network runs until process exit (an atexit hook stops it and joins the
/// network thread), or until an explicit [`stop_network`] call.
pub struct NetworkAutoStop {
_private: (),
}
impl Drop for NetworkAutoStop {
fn drop(&mut self) {
// Intentionally inert: the network is stopped at process exit (or by an
// explicit stop_network()), never on guard drop. Stopping on drop would
// make any later use of FoundationDB in the process fail with error 2025.
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_max_api() {
assert!(get_max_api_version() > 0);
}
// Only exercises the FFI-free arms of the transition table, on locally
// constructed states: lib unit tests share one process, so they must neither
// touch the NETWORK static nor select a real api version.
#[test]
fn test_transition_table_ffi_free_arms() {
// ApiVersionSelected
let mut state = NetworkLifecycle::ApiVersionSelected { api_version: 710 };
state
.select_api_version(710)
.expect("same version must be idempotent");
assert_eq!(
state.select_api_version(620).unwrap_err().code(),
ERR_API_VERSION_ALREADY_SET
);
state.stop_network().expect("stop before start must be Ok");
assert!(matches!(
state,
NetworkLifecycle::Stopped { api_version: 710 }
));
// Running (dummy finished thread; stop_network is never called on it)
let mut state = NetworkLifecycle::Running {
api_version: 710,
handle: std::thread::spawn(|| {}),
};
state
.start_network()
.expect("start while running must be idempotent");
assert_eq!(
state.select_api_version(620).unwrap_err().code(),
ERR_API_VERSION_ALREADY_SET
);
assert_eq!(
state
.set_network_option(NetworkOption::TraceEnable(String::new()))
.unwrap_err()
.code(),
ERR_NETWORK_ALREADY_SETUP
);
// Stopped is terminal
let mut state = NetworkLifecycle::Stopped { api_version: 710 };
assert_eq!(
state.start_network().unwrap_err().code(),
ERR_NETWORK_CANNOT_BE_RESTARTED
);
assert_eq!(
state
.set_network_option(NetworkOption::TraceEnable(String::new()))
.unwrap_err()
.code(),
ERR_NETWORK_CANNOT_BE_RESTARTED
);
state.stop_network().expect("stop must be idempotent");
state
.select_api_version(710)
.expect("re-selecting the same version stays Ok once stopped");
// Uninitialized
let mut state = NetworkLifecycle::Uninitialized;
state.stop_network().expect("stopping nothing must be Ok");
assert!(matches!(state, NetworkLifecycle::Uninitialized));
assert_eq!(
state
.set_network_option(NetworkOption::TraceEnable(String::new()))
.unwrap_err()
.code(),
ERR_API_VERSION_UNSET
);
}
}