Skip to content

Commit b6d4e33

Browse files
authored
Unrolled build for rust-lang#128632
Rollup merge of rust-lang#128632 - joboet:dont_overwrite_style, r=Amanieu std: do not overwrite style in `get_backtrace_style` If another thread calls `set_backtrace_style` while a `get_backtrace_style` is reading the environment variables, `get_backtrace_style` will overwrite the value. Use an atomic CAS to avoid this.
2 parents e08b80c + 8542cd6 commit b6d4e33

File tree

1 file changed

+15
-11
lines changed

1 file changed

+15
-11
lines changed

library/std/src/panic.rs

+15-11
Original file line numberDiff line numberDiff line change
@@ -440,13 +440,12 @@ impl BacktraceStyle {
440440
}
441441

442442
fn from_u8(s: u8) -> Option<Self> {
443-
Some(match s {
444-
0 => return None,
445-
1 => BacktraceStyle::Short,
446-
2 => BacktraceStyle::Full,
447-
3 => BacktraceStyle::Off,
448-
_ => unreachable!(),
449-
})
443+
match s {
444+
1 => Some(BacktraceStyle::Short),
445+
2 => Some(BacktraceStyle::Full),
446+
3 => Some(BacktraceStyle::Off),
447+
_ => None,
448+
}
450449
}
451450
}
452451

@@ -465,7 +464,7 @@ static SHOULD_CAPTURE: AtomicU8 = AtomicU8::new(0);
465464
pub fn set_backtrace_style(style: BacktraceStyle) {
466465
if cfg!(feature = "backtrace") {
467466
// If the `backtrace` feature of this crate is enabled, set the backtrace style.
468-
SHOULD_CAPTURE.store(style.as_u8(), Ordering::Release);
467+
SHOULD_CAPTURE.store(style.as_u8(), Ordering::Relaxed);
469468
}
470469
}
471470

@@ -498,7 +497,9 @@ pub fn get_backtrace_style() -> Option<BacktraceStyle> {
498497
// to optimize away callers.
499498
return None;
500499
}
501-
if let Some(style) = BacktraceStyle::from_u8(SHOULD_CAPTURE.load(Ordering::Acquire)) {
500+
501+
let current = SHOULD_CAPTURE.load(Ordering::Relaxed);
502+
if let Some(style) = BacktraceStyle::from_u8(current) {
502503
return Some(style);
503504
}
504505

@@ -509,8 +510,11 @@ pub fn get_backtrace_style() -> Option<BacktraceStyle> {
509510
None if crate::sys::FULL_BACKTRACE_DEFAULT => BacktraceStyle::Full,
510511
None => BacktraceStyle::Off,
511512
};
512-
set_backtrace_style(format);
513-
Some(format)
513+
514+
match SHOULD_CAPTURE.compare_exchange(0, format.as_u8(), Ordering::Relaxed, Ordering::Relaxed) {
515+
Ok(_) => Some(format),
516+
Err(new) => BacktraceStyle::from_u8(new),
517+
}
514518
}
515519

516520
#[cfg(test)]

0 commit comments

Comments
 (0)