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
//! The config module provides the internal representation of Bulwark's configuration.
use crate::{ConfigSerializationError, ResolutionError};
use itertools::Itertools;
use regex::Regex;
use serde::Serialize;
use std::collections::{HashMap, HashSet};
use validator::Validate;
lazy_static! {
static ref RE_VALID_REFERENCE: Regex = Regex::new(r"^[_a-z]+$").unwrap();
}
/// The root of a Bulwark configuration.
///
/// Wraps all child configuration structures and provides the internal representation of Bulwark's configuration.
#[derive(Debug)]
pub struct Config {
/// Configuration for the services being launched.
pub service: Service,
/// Configuration for the services being launched.
pub runtime: Runtime,
/// Configuration for metrics collection.
pub metrics: Metrics,
/// Configuration for the decision thresholds.
pub thresholds: Thresholds,
/// A list of configurations for individual plugins.
pub plugins: Vec<Plugin>,
/// A list of plugin groups that allows a plugin set to be loaded with a single reference.
pub presets: Vec<Preset>,
/// A list of routes that maps from resource paths to plugins or presets.
pub resources: Vec<Resource>,
// TODO: It might make sense to convert the vectors to maps since both routes and references should be unique.
}
impl Config {
/// Looks up the [`Plugin`] corresponding to the `reference` string.
///
/// # Arguments
///
/// * `reference` - A string that corresponds to a [`Plugin::reference`] value.
pub fn plugin<'a>(&self, reference: &str) -> Option<&Plugin>
where
Plugin: 'a,
{
self.plugins
.iter()
.find(|&plugin| plugin.reference == reference)
}
/// Looks up the [`Preset`] corresponding to the `reference` string.
///
/// # Arguments
///
/// * `reference` - A string that corresponds to a [`Preset::reference`] value.
pub fn preset<'a>(&self, reference: &str) -> Option<&Preset>
where
Preset: 'a,
{
self.presets
.iter()
.find(|&preset| preset.reference == reference)
}
}
/// Configuration for the services being launched.
#[derive(Debug)]
pub struct Service {
/// The port for the primary service.
pub port: u16,
/// The port for the admin service and health checks.
pub admin_port: u16,
/// True if the admin service is enabled, false otherwise.
pub admin_enabled: bool,
/// The URI for the external Redis state store.
pub remote_state_uri: Option<String>,
/// The size of the remote state connection pool.
pub remote_state_pool_size: u32,
/// The number of trusted proxy hops expected to be exterior to Bulwark.
///
/// This number does not include Bulwark or the proxy hosting it in the proxy hop count. Zero implies that
/// there are no other proxies exterior to Bulwark. This is used to ensure the `Forwarded` and `X-Forwarded-For`
/// headers are not spoofed. If this is set incorrectly, the client IP reported to plugins will be incorrect.
pub proxy_hops: u8,
// TODO: it may be useful to introduce an "auto" setting for `proxy_hops` since it's possible to auto-discover
}
/// The default [`Service::port`] value.
pub const DEFAULT_PORT: u16 = 8089;
/// The default [`Service::admin_port`] value.
pub const DEFAULT_ADMIN_PORT: u16 = 8090;
/// The default [`Service::remote_state_pool_size`] value.
pub const DEFAULT_REMOTE_STATE_POOL_SIZE: u32 = 16;
impl Default for Service {
/// Default service config
fn default() -> Self {
Self {
port: DEFAULT_PORT,
admin_port: DEFAULT_ADMIN_PORT,
admin_enabled: true,
remote_state_uri: None,
remote_state_pool_size: DEFAULT_REMOTE_STATE_POOL_SIZE,
proxy_hops: 0,
}
}
}
/// Configuration for the runtime environment.
#[derive(Debug)]
pub struct Runtime {
/// The maximum number of concurrent incoming requests that the runtime will process before blocking.
pub max_concurrent_requests: usize,
/// The maximum number of concurrent plugin tasks that the runtime will launch.
pub max_plugin_tasks: usize,
}
/// The default [`Runtime::max_concurrent_requests`] value.
pub const DEFAULT_MAX_CONCURRENT_REQUESTS: usize = 8;
/// The default [`Runtime::max_plugin_tasks`] value.
pub const DEFAULT_MAX_PLUGIN_TASKS: usize = 16;
impl Default for Runtime {
/// Default runtime config
fn default() -> Self {
Self {
max_concurrent_requests: DEFAULT_MAX_CONCURRENT_REQUESTS,
max_plugin_tasks: DEFAULT_MAX_PLUGIN_TASKS,
}
}
}
/// Configuration for metrics collection.
#[derive(Debug, Clone)]
pub struct Metrics {
pub statsd_host: Option<String>,
pub statsd_port: Option<u16>,
pub statsd_queue_size: usize,
pub statsd_buffer_size: usize,
pub statsd_prefix: String,
}
/// The default [`Metrics::statsd_port`] value.
pub const DEFAULT_STATSD_PORT: Option<u16> = Some(8125);
/// The default [`Metrics::statsd_queue_size`] value.
pub const DEFAULT_STATSD_QUEUE_SIZE: usize = 5000;
/// The default [`Metrics::statsd_buffer_size`] value.
pub const DEFAULT_STATSD_BUFFER_SIZE: usize = 1024;
impl Default for Metrics {
/// Default metrics config
fn default() -> Self {
Self {
statsd_host: None,
statsd_port: DEFAULT_STATSD_PORT,
statsd_queue_size: DEFAULT_STATSD_QUEUE_SIZE,
statsd_buffer_size: DEFAULT_STATSD_BUFFER_SIZE,
statsd_prefix: String::from(""),
}
}
}
/// Configuration for the decision thresholds.
///
/// No threshold is necessary for the default `allowed` outcome because it is defined by the range between the
/// `suspicious` threshold and the `trusted` threshold. The thresholds must have values in descending order, with
/// `restrict` > `suspicious` > `trusted`. None of the threshold values may be equal.
#[derive(Debug, Clone, Copy)]
pub struct Thresholds {
/// True if the primary service should take no action in response to restrict decisions.
pub observe_only: bool,
/// Any decision value above the `restrict` threshold will cause the corresponding request to be blocked.
pub restrict: f64,
/// Any decision value above the `suspicious` threshold will cause the corresponding request to be flagged as
/// suspicious but it will still be allowed.
pub suspicious: f64,
/// Any decision value below the `trust` threshold will cause the corresponding request to be flagged as trusted.
/// This primarily affects plugins which use feedback loops.
pub trust: f64,
}
/// The default [`Thresholds::observe_only`] value.
pub const DEFAULT_OBSERVE_ONLY: bool = false;
/// The default [`Thresholds::restrict`] value.
pub const DEFAULT_RESTRICT_THRESHOLD: f64 = 0.8;
/// The default [`Thresholds::suspicious`] value.
pub const DEFAULT_SUSPICIOUS_THRESHOLD: f64 = 0.6;
/// The default [`Thresholds::trust`] value.
pub const DEFAULT_TRUST_THRESHOLD: f64 = 0.2;
impl Default for Thresholds {
/// Default decision thresholds.
fn default() -> Self {
Self {
observe_only: DEFAULT_OBSERVE_ONLY,
restrict: DEFAULT_RESTRICT_THRESHOLD,
suspicious: DEFAULT_SUSPICIOUS_THRESHOLD,
trust: DEFAULT_TRUST_THRESHOLD,
}
}
}
/// The configuration for an individual plugin.
///
/// This structure will be wrapped by structs in the host environment.
#[derive(Debug, Validate, Clone, Default)]
pub struct Plugin {
/// The plugin reference key. Should be limited to ASCII lowercase a-z plus underscores. Maximum 96 characters.
#[validate(length(min = 1, max = 96), regex(path = "RE_VALID_REFERENCE"))]
pub reference: String,
// TODO: plugin path should be absolute; once it's in this structure the config base path is no longer known
// TODO: should this be a URI? That would allow e.g. data: URI values to embed WASM into config over the wire
/// The path to the plugin WASM file.
#[validate(length(min = 1))]
pub path: String,
/// A weight to multiply this plugin's decision values by.
///
/// A 1.0 value has no effect on the decision. See [`bulwark_decision::Decision::weight`].
#[validate(range(min = 0.0))]
pub weight: f64,
// TODO: this might be better represented as a valuable::Mappable / valuable::Value
/// JSON-serializable configuration passed into the plugin environment.
///
/// The host environment will not do anything with this value beyond serialization.
pub config: serde_json::map::Map<String, serde_json::Value>,
/// The permissions granted to this plugin.
///
/// Any attempt to perform an operation within the plugin sandbox that requires a permission to be set will fail.
pub permissions: Permissions,
}
/// The default [`Plugin::weight`] value.
pub const DEFAULT_PLUGIN_WEIGHT: f64 = 1.0;
impl Plugin {
/// Serializes the [`config`](Plugin::config) value to JSON bytes.
pub fn config_to_json(&self) -> Result<Vec<u8>, ConfigSerializationError> {
let obj = serde_json::Value::Object(self.config.clone());
Ok(serde_json::to_vec(&obj)?)
}
}
/// The permissions granted to an associated plugin.
#[derive(Debug, Clone, Default)]
pub struct Permissions {
/// A list of environment variables a plugin may acquire values for.
///
/// This permission may be used to grant a plugin fine-grained access to a specific secret.
pub env: Vec<String>,
/// A list of domains that a plugin may make HTTP requests to.
///
/// The permission value must case-insensitively match the entire host component of the request URI.
pub http: Vec<String>,
/// A list of key prefixes that a plugin may get or set within the external state store.
///
/// This permission also affects rate limits and circuit breakers since they also use the external state store.
pub state: Vec<String>,
}
/// A mapping between a reference identifier and a list of plugins that form a preset plugin group.
#[derive(Debug, Validate, Clone)]
pub struct Preset {
/// The preset reference key. Should be limited to ASCII lowercase a-z plus underscores. Maximum 96 characters.
#[validate(length(min = 1, max = 96), regex(path = "RE_VALID_REFERENCE"))]
pub reference: String,
/// The list of references to plugins and other presets contained within this preset.
#[validate(length(min = 1))]
pub plugins: Vec<Reference>,
}
impl Preset {
/// Resolves all references within a `Preset`, producing a flattened list of the corresponding [`Plugin`]s.
///
/// # Arguments
///
/// * `config` - A [`Config`] reference to perform lookups againsts.
/// `Preset`s do not maintain their own references to their parent [`Config`] so this must be passed in.
///
/// See [`Config::plugin`] and [`Config::preset`].
pub fn resolve_plugins<'a>(
&'a self,
config: &'a Config,
) -> Result<Vec<&Plugin>, ResolutionError> {
let mut resolved_presets = HashSet::new();
self.resolve_plugins_recursive(config, &mut resolved_presets)
}
/// Resolves all references, checking for cycles.
fn resolve_plugins_recursive<'a>(
&'a self,
config: &'a Config,
resolved_presets: &mut HashSet<String>,
) -> Result<Vec<&Plugin>, ResolutionError> {
let mut plugins: HashMap<String, &Plugin> = HashMap::with_capacity(self.plugins.len());
for reference in &self.plugins {
match reference {
Reference::Plugin(ref_name) => {
if let Some(plugin) = config.plugin(ref_name.as_str()) {
plugins.insert(plugin.reference.to_string(), plugin);
}
}
Reference::Preset(ref_name) => {
if resolved_presets.contains(ref_name) {
return Err(ResolutionError::CircularPreset(ref_name.to_string()));
} else {
resolved_presets.insert(ref_name.to_string());
}
if let Some(preset) = config.preset(ref_name.as_str()) {
let inner_plugins =
preset.resolve_plugins_recursive(config, resolved_presets)?;
for inner_plugin in inner_plugins {
plugins.insert(inner_plugin.reference.to_string(), inner_plugin);
}
}
}
Reference::Missing(ref_name) => {
return Err(ResolutionError::Missing(ref_name.to_string()));
}
}
}
Ok(plugins.values().cloned().collect())
}
}
/// A mapping between a route pattern and the plugins that should be run for matching requests.
#[derive(Debug, Clone)]
pub struct Resource {
/// The route pattern used to match requests with.
///
/// Uses `matchit` router patterns.
pub route: String,
/// The plugin references for this route.
pub plugins: Vec<Reference>,
/// The maximum amount of time a plugin may take for each execution phase.
pub timeout: Option<u64>,
}
impl Resource {
/// Resolves all references within a `Resource`, producing a flattened list of the corresponding [`Plugin`]s.
///
/// # Arguments
///
/// * `config` - A [`Config`] reference to perform lookups againsts.
/// `Resource`s do not maintain their own references to their parent [`Config`] so this must be passed in.
///
/// See [`Config::plugin`] and [`Config::preset`].
pub fn resolve_plugins<'a>(
&'a self,
config: &'a Config,
) -> Result<Vec<&Plugin>, ResolutionError> {
let mut plugins: Vec<&Plugin> = Vec::with_capacity(self.plugins.len());
for reference in &self.plugins {
match reference {
Reference::Plugin(ref_name) => {
if let Some(plugin) = config.plugin(ref_name.as_str()) {
plugins.push(plugin);
}
}
Reference::Preset(ref_name) => {
if let Some(preset) = config.preset(ref_name.as_str()) {
let mut inner_plugins = preset.resolve_plugins(config)?;
plugins.append(&mut inner_plugins);
}
}
Reference::Missing(ref_name) => {
return Err(ResolutionError::Missing(ref_name.to_string()));
}
}
}
Ok(plugins
.iter()
.sorted_by(|a, b| Ord::cmp(&a.reference, &b.reference))
.copied()
.collect())
}
}
/// Wraps reference strings and differentiates what the reference points to.
#[derive(Debug, PartialEq, Eq, Clone, Serialize)]
pub enum Reference {
/// A reference to a [`Plugin`].
Plugin(String),
/// A reference to a [`Preset`].
Preset(String),
/// A reference that could not be resolved.
Missing(String),
}