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
//! The Abscissa component for Zebra's `tracing` implementation.
use std::{
fs::{self, File},
io::Write,
};
use abscissa_core::{Component, FrameworkError, Shutdown};
use tracing_appender::non_blocking::{NonBlocking, NonBlockingBuilder, WorkerGuard};
use tracing_error::ErrorLayer;
use tracing_subscriber::{
fmt::{format, Formatter},
layer::SubscriberExt,
reload::Handle,
util::SubscriberInitExt,
EnvFilter,
};
use zebra_chain::parameters::Network;
use crate::{application::build_version, components::tracing::Config};
#[cfg(feature = "flamegraph")]
use super::flame;
// Art generated with these two images.
// Zebra logo: book/theme/favicon.png
// License: MIT or Apache 2.0
//
// Heart image: https://commons.wikimedia.org/wiki/File:Love_Heart_SVG.svg
// Author: Bubinator
// License: Public Domain or Unconditional Use
//
// How to render
//
// Convert heart image to PNG (2000px):
// curl -o heart.svg https://upload.wikimedia.org/wikipedia/commons/4/42/Love_Heart_SVG.svg
// cargo install resvg
// resvg --width 2000 --height 2000 heart.svg heart.png
//
// Then to text (40x20):
// img2txt -W 40 -H 20 -f utf8 -d none heart.png > heart.utf8
// img2txt -W 40 -H 20 -f utf8 -d none favicon.png > logo.utf8
// paste -d "\0" logo.utf8 heart.utf8 > zebra.utf8
static ZEBRA_ART: [u8; include_bytes!("zebra.utf8").len()] = *include_bytes!("zebra.utf8");
/// A type-erased boxed writer that can be sent between threads safely.
pub type BoxWrite = Box<dyn Write + Send + Sync + 'static>;
/// Abscissa component for initializing the `tracing` subsystem
pub struct Tracing {
/// The installed filter reloading handle, if enabled.
//
// TODO: when fmt::Subscriber supports per-layer filtering, remove the Option
filter_handle: Option<
Handle<
EnvFilter,
Formatter<format::DefaultFields, format::Format<format::Full>, NonBlocking>,
>,
>,
/// The originally configured filter.
initial_filter: String,
/// The installed flame graph collector, if enabled.
#[cfg(feature = "flamegraph")]
flamegrapher: Option<flame::Grapher>,
/// Drop guard for worker thread of non-blocking logger,
/// responsible for flushing any remaining logs when the program terminates.
//
// Correctness: must be listed last in the struct, so it drops after other drops have logged.
_guard: Option<WorkerGuard>,
}
impl Tracing {
/// Try to create a new [`Tracing`] component with the given `config`.
///
/// If `uses_intro` is true, show a welcome message, the `network`,
/// and the Zebra logo on startup. (If the terminal supports it.)
//
// This method should only print to stderr, because stdout is for tracing logs.
#[allow(clippy::print_stdout, clippy::print_stderr, clippy::unwrap_in_result)]
pub fn new(
network: &Network,
config: Config,
uses_intro: bool,
) -> Result<Self, FrameworkError> {
// Only use color if tracing output is being sent to a terminal or if it was explicitly
// forced to.
let use_color = config.use_color_stdout();
let use_color_stderr = config.use_color_stderr();
let filter = config.filter.clone().unwrap_or_default();
let flame_root = &config.flamegraph;
// Only show the intro for user-focused node server commands like `start`
if uses_intro {
// If it's a terminal and color escaping is enabled: clear screen and
// print Zebra logo (here `use_color` is being interpreted as
// "use escape codes")
if use_color_stderr {
// Clear screen
eprint!("\x1B[2J");
eprintln!(
"{}",
std::str::from_utf8(&ZEBRA_ART)
.expect("should always work on a UTF-8 encoded constant")
);
}
eprintln!(
"Thank you for running a {} zebrad {} node!",
network.lowercase_name(),
build_version()
);
eprintln!(
"You're helping to strengthen the network and contributing to a social good :)"
);
}
let writer = if let Some(log_file) = config.log_file.as_ref() {
// Make sure the directory for the log file exists.
// If the log is configured in the current directory, it won't have a parent directory.
//
// # Security
//
// If the user is running Zebra with elevated permissions ("root"), they should
// create the log file directory before running Zebra, and make sure the Zebra user
// account has exclusive access to that directory, and other users can't modify
// its parent directories.
//
// This avoids a TOCTOU security issue in the Rust filesystem API.
let log_file_dir = log_file.parent();
if let Some(log_file_dir) = log_file_dir {
if !log_file_dir.exists() {
eprintln!("Directory for log file {log_file:?} does not exist, trying to create it...");
if let Err(create_dir_error) = fs::create_dir_all(log_file_dir) {
eprintln!("Failed to create directory for log file: {create_dir_error}");
eprintln!("Trying log file anyway...");
}
}
}
if uses_intro {
// We want this to appear on stdout instead of the usual log messages.
println!("Sending logs to {log_file:?}...");
}
let log_file = File::options().append(true).create(true).open(log_file)?;
Box::new(log_file) as BoxWrite
} else {
let stdout = std::io::stdout();
Box::new(stdout) as BoxWrite
};
// Builds a lossy NonBlocking logger with a default line limit of 128_000 or an explicit buffer_limit.
// The write method queues lines down a bounded channel with this capacity to a worker thread that writes to stdout.
// Increments error_counter and drops lines when the buffer is full.
let (non_blocking, worker_guard) = NonBlockingBuilder::default()
.buffered_lines_limit(config.buffer_limit.max(100))
.finish(writer);
// Construct a format subscriber with the supplied global logging filter,
// and optionally enable reloading.
//
// TODO: when fmt::Subscriber supports per-layer filtering, always enable this code
#[cfg(not(all(feature = "tokio-console", tokio_unstable)))]
let (subscriber, filter_handle) = {
use tracing_subscriber::FmtSubscriber;
let logger = FmtSubscriber::builder()
.with_ansi(use_color)
.with_writer(non_blocking)
.with_env_filter(&filter);
// Enable reloading if that feature is selected.
#[cfg(feature = "filter-reload")]
let (filter_handle, logger) = {
let logger = logger.with_filter_reloading();
(Some(logger.reload_handle()), logger)
};
#[cfg(not(feature = "filter-reload"))]
let filter_handle = None;
let subscriber = logger.finish().with(ErrorLayer::default());
(subscriber, filter_handle)
};
// Construct a tracing registry with the supplied per-layer logging filter,
// and disable filter reloading.
//
// TODO: when fmt::Subscriber supports per-layer filtering,
// remove this registry code, and layer tokio-console on top of fmt::Subscriber
#[cfg(all(feature = "tokio-console", tokio_unstable))]
let (subscriber, filter_handle) = {
use tracing_subscriber::{fmt, Layer};
let subscriber = tracing_subscriber::registry();
// TODO: find out why crawl_and_dial and try_to_sync evade this filter,
// and why they also don't get the global net/commit span.
// Note: this might have been fixed by tracing 0.3.15, or by recent Zebra refactors.
//
// Using `registry` as the base subscriber, the logs from most other functions get filtered.
// Using `FmtSubscriber` as the base subscriber, all the logs get filtered.
let logger = fmt::Layer::new()
.with_ansi(use_color)
.with_writer(non_blocking)
.with_filter(EnvFilter::from(&filter));
let subscriber = subscriber.with(logger);
let span_logger = ErrorLayer::default().with_filter(EnvFilter::from(&filter));
let subscriber = subscriber.with(span_logger);
(subscriber, None)
};
// Add optional layers based on dynamic and compile-time configs
// Add a flamegraph
#[cfg(feature = "flamegraph")]
let (flamelayer, flamegrapher) = if let Some(path) = flame_root {
let (flamelayer, flamegrapher) = flame::layer(path);
(Some(flamelayer), Some(flamegrapher))
} else {
(None, None)
};
#[cfg(feature = "flamegraph")]
let subscriber = subscriber.with(flamelayer);
#[cfg(feature = "journald")]
let journaldlayer = if config.use_journald {
use abscissa_core::FrameworkErrorKind;
let layer = tracing_journald::layer()
.map_err(|e| FrameworkErrorKind::ComponentError.context(e))?;
// If the global filter can't be used, add a per-layer filter instead.
// TODO: when fmt::Subscriber supports per-layer filtering, always enable this code
#[cfg(all(feature = "tokio-console", tokio_unstable))]
let layer = {
use tracing_subscriber::Layer;
layer.with_filter(EnvFilter::from(&filter))
};
Some(layer)
} else {
None
};
#[cfg(feature = "journald")]
let subscriber = subscriber.with(journaldlayer);
#[cfg(feature = "sentry")]
let subscriber = subscriber.with(sentry::integrations::tracing::layer());
// spawn the console server in the background, and apply the console layer
// TODO: set Builder::poll_duration_histogram_max() if needed
#[cfg(all(feature = "tokio-console", tokio_unstable))]
let subscriber = subscriber.with(console_subscriber::spawn());
// Initialise the global tracing subscriber
subscriber.init();
// Log the tracing stack we just created
tracing::info!(
?filter,
TRACING_STATIC_MAX_LEVEL = ?tracing::level_filters::STATIC_MAX_LEVEL,
LOG_STATIC_MAX_LEVEL = ?log::STATIC_MAX_LEVEL,
"started tracing component",
);
if flame_root.is_some() {
if cfg!(feature = "flamegraph") {
info!(flamegraph = ?flame_root, "installed flamegraph tracing layer");
} else {
warn!(
flamegraph = ?flame_root,
"unable to activate configured flamegraph: \
enable the 'flamegraph' feature when compiling zebrad",
);
}
}
if config.use_journald {
if cfg!(feature = "journald") {
info!("installed journald tracing layer");
} else {
warn!(
"unable to activate configured journald tracing: \
enable the 'journald' feature when compiling zebrad",
);
}
}
#[cfg(feature = "sentry")]
info!("installed sentry tracing layer");
#[cfg(all(feature = "tokio-console", tokio_unstable))]
info!(
TRACING_STATIC_MAX_LEVEL = ?tracing::level_filters::STATIC_MAX_LEVEL,
LOG_STATIC_MAX_LEVEL = ?log::STATIC_MAX_LEVEL,
"installed tokio-console tracing layer",
);
// Write any progress reports sent by other tasks to the terminal
//
// TODO: move this to its own module?
#[cfg(feature = "progress-bar")]
if let Some(progress_bar_config) = config.progress_bar.as_ref() {
use howudoin::consumers::TermLine;
use std::time::Duration;
// Stops flickering during the initial sync.
const PROGRESS_BAR_DEBOUNCE: Duration = Duration::from_secs(2);
let terminal_consumer = TermLine::with_debounce(PROGRESS_BAR_DEBOUNCE);
howudoin::init(terminal_consumer);
info!(?progress_bar_config, "activated progress bars");
} else {
info!(
"set 'tracing.progress_bar =\"summary\"' in zebrad.toml to activate progress bars"
);
}
Ok(Self {
filter_handle,
initial_filter: filter,
#[cfg(feature = "flamegraph")]
flamegrapher,
_guard: Some(worker_guard),
})
}
/// Drops guard for worker thread of non-blocking logger,
/// to flush any remaining logs when the program terminates.
pub fn shutdown(&mut self) {
self.filter_handle.take();
#[cfg(feature = "flamegraph")]
self.flamegrapher.take();
self._guard.take();
}
/// Return the currently-active tracing filter.
pub fn filter(&self) -> String {
if let Some(filter_handle) = self.filter_handle.as_ref() {
filter_handle
.with_current(|filter| filter.to_string())
.expect("the subscriber is not dropped before the component is")
} else {
self.initial_filter.clone()
}
}
/// Reload the currently-active filter with the supplied value.
///
/// This can be used to provide a dynamic tracing filter endpoint.
pub fn reload_filter(&self, filter: impl Into<EnvFilter>) {
let filter = filter.into();
if let Some(filter_handle) = self.filter_handle.as_ref() {
tracing::info!(
?filter,
TRACING_STATIC_MAX_LEVEL = ?tracing::level_filters::STATIC_MAX_LEVEL,
LOG_STATIC_MAX_LEVEL = ?log::STATIC_MAX_LEVEL,
"reloading tracing filter",
);
filter_handle
.reload(filter)
.expect("the subscriber is not dropped before the component is");
} else {
tracing::warn!(
?filter,
TRACING_STATIC_MAX_LEVEL = ?tracing::level_filters::STATIC_MAX_LEVEL,
LOG_STATIC_MAX_LEVEL = ?log::STATIC_MAX_LEVEL,
"attempted to reload tracing filter, but filter reloading is disabled",
);
}
}
}
impl std::fmt::Debug for Tracing {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.debug_struct("Tracing").finish()
}
}
impl<A: abscissa_core::Application> Component<A> for Tracing {
fn id(&self) -> abscissa_core::component::Id {
abscissa_core::component::Id::new("zebrad::components::tracing::component::Tracing")
}
fn version(&self) -> abscissa_core::Version {
build_version()
}
fn before_shutdown(&self, _kind: Shutdown) -> Result<(), FrameworkError> {
#[cfg(feature = "flamegraph")]
if let Some(ref grapher) = self.flamegrapher {
use abscissa_core::FrameworkErrorKind;
info!("writing flamegraph");
grapher
.write_flamegraph()
.map_err(|e| FrameworkErrorKind::ComponentError.context(e))?
}
#[cfg(feature = "progress-bar")]
howudoin::disable();
Ok(())
}
}
impl Drop for Tracing {
fn drop(&mut self) {
#[cfg(feature = "progress-bar")]
howudoin::disable();
}
}