Skip to content

Fix traceback circular reference detection to pass test_raise.py #5995

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions Lib/test/test_raise.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,8 +233,6 @@ class TestTracebackType(unittest.TestCase):
def raiser(self):
raise ValueError

# TODO: RUSTPYTHON
@unittest.expectedFailure
def test_attrs(self):
try:
self.raiser()
Expand Down
52 changes: 51 additions & 1 deletion vm/src/builtins/traceback.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
use rustpython_common::lock::PyMutex;
use std::ops::Deref;

use super::{PyType, PyTypeRef};
use crate::{
Expand Down Expand Up @@ -63,8 +64,57 @@ impl PyTraceback {
}

#[pygetset(setter)]
fn set_tb_next(&self, value: Option<PyRef<Self>>) {
fn set_tb_next(&self, value: Option<PyRef<Self>>, vm: &VirtualMachine) -> PyResult<()> {
// Check for circular references using Floyd's cycle detection algorithm
if let Some(ref _new_tb) = value {
// Temporarily make the assignment to simulate the new chain
let old_next = self.next.lock().clone();
*self.next.lock() = value.clone();

// Use Floyd's cycle detection on the chain starting from self
let has_cycle = Self::has_cycle_from(self);

// Restore the original state
*self.next.lock() = old_next;

if has_cycle {
return Err(vm.new_value_error("circular reference in traceback chain".to_owned()));
}
}

*self.next.lock() = value;
Ok(())
}

/// Detect cycles in traceback chain using Floyd's cycle detection algorithm
fn has_cycle_from(start: &PyTraceback) -> bool {
let mut slow = start.tb_next();
let mut fast = start.tb_next();

while let (Some(slow_tb), Some(fast_tb)) = (&slow, &fast) {
// Move slow pointer one step
slow = slow_tb.tb_next();

// Move fast pointer two steps
fast = fast_tb.tb_next();
if let Some(ref fast_tb2) = fast {
fast = fast_tb2.tb_next();
} else {
break;
}

// Check if slow and fast pointers meet (cycle detected)
if let (Some(slow_ptr), Some(fast_ptr)) = (&slow, &fast) {
if std::ptr::eq(
slow_ptr.deref().deref() as *const PyTraceback,
fast_ptr.deref().deref() as *const PyTraceback
) {
return true;
}
}
}

false
}
}

Expand Down
Loading