fix(security): harden RuvSense pipeline against overflow and numerical instability

- tomography.rs: use checked_mul for nx*ny*nz to prevent integer overflow
  on adversarial grid configurations
- phase_align.rs: add defensive bounds check in mean_phase_on_indices to
  prevent panic on out-of-range subcarrier indices
- multistatic.rs: stabilize softmax in attention_weighted_fusion with
  max-subtraction to prevent exp() overflow on extreme similarity values

Co-Authored-By: claude-flow <ruv@ruv.net>
This commit is contained in:
ruv
2026-03-01 21:41:00 -05:00
parent 37b54d649b
commit 5541926e6a
4 changed files with 34 additions and 13 deletions

View File

@@ -252,15 +252,23 @@ impl PersonalBaseline {
let mut reports = Vec::new();
for &(metric, value) in &summary.metrics {
let stats = self.stats_for_mut(metric);
stats.update(value);
let observation_days = self.observation_days;
if !self.is_ready_at(self.observation_days) {
for &(metric, value) in &summary.metrics {
// Update stats and extract values before releasing the mutable borrow
let (z, baseline_mean, baseline_std) = {
let stats = self.stats_for_mut(metric);
stats.update(value);
let z = stats.z_score(value);
let mean = stats.mean;
let std = stats.std_dev();
(z, mean, std)
};
if !self.is_ready_at(observation_days) {
continue;
}
let z = stats.z_score(value);
let idx = Self::metric_index(metric);
if z.abs() > 2.0 {
@@ -288,8 +296,8 @@ impl PersonalBaseline {
direction,
z_score: z,
current_value: value,
baseline_mean: stats.mean,
baseline_std: stats.std_dev(),
baseline_mean,
baseline_std,
sustained_days: self.drift_counters[idx],
level,
timestamp_us,

View File

@@ -257,7 +257,7 @@ fn attention_weighted_fusion(
}
// Compute attention weights based on similarity to consensus
let mut weights = vec![0.0_f32; n_nodes];
let mut logits = vec![0.0_f32; n_nodes];
for (n, amp) in amplitudes.iter().enumerate() {
let mut dot = 0.0_f32;
let mut norm_a = 0.0_f32;
@@ -269,10 +269,15 @@ fn attention_weighted_fusion(
}
let denom = (norm_a * norm_b).sqrt().max(1e-12);
let similarity = dot / denom;
weights[n] = (similarity / temperature).exp();
logits[n] = similarity / temperature;
}
// Normalize weights (softmax-style)
// Numerically stable softmax: subtract max to prevent exp() overflow
let max_logit = logits.iter().cloned().fold(f32::NEG_INFINITY, f32::max);
let mut weights = vec![0.0_f32; n_nodes];
for (n, &logit) in logits.iter().enumerate() {
weights[n] = (logit - max_logit).exp();
}
let weight_sum: f32 = weights.iter().sum::<f32>().max(1e-12);
for w in &mut weights {
*w /= weight_sum;

View File

@@ -281,8 +281,11 @@ fn mean_phase_on_indices(phase: &[f32], indices: &[usize]) -> f32 {
let mut sin_sum = 0.0_f32;
let mut cos_sum = 0.0_f32;
for &i in indices {
sin_sum += phase[i].sin();
cos_sum += phase[i].cos();
// Defensive bounds check: skip out-of-range indices rather than panic
if let Some(&p) = phase.get(i) {
sin_sum += p.sin();
cos_sum += p.cos();
}
}
sin_sum.atan2(cos_sum)

View File

@@ -199,7 +199,12 @@ impl RfTomographer {
));
}
let n_voxels = config.nx * config.ny * config.nz;
let n_voxels = config.nx
.checked_mul(config.ny)
.and_then(|v| v.checked_mul(config.nz))
.ok_or_else(|| TomographyError::InvalidGrid(
format!("Grid dimensions overflow: {}x{}x{}", config.nx, config.ny, config.nz),
))?;
// Precompute weight matrix
let weight_matrix: Vec<Vec<(usize, f64)>> = links