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

@@ -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;