From 58f86e063ab4d3e022b94f8f3c6a6a796ee9f749 Mon Sep 17 00:00:00 2001 From: Marcus Weiner Date: Wed, 12 Aug 2020 06:08:50 +0200 Subject: [PATCH] Remove previous heap limit callback when registering (#7025) --- core/core_isolate.rs | 58 ++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 56 insertions(+), 2 deletions(-) diff --git a/core/core_isolate.rs b/core/core_isolate.rs index 8f852e9a53..17345e14c7 100644 --- a/core/core_isolate.rs +++ b/core/core_isolate.rs @@ -440,8 +440,19 @@ impl CoreIsolate { { let boxed_cb = Box::new(RefCell::new(cb)); let data = boxed_cb.as_ptr() as *mut c_void; - self.allocations.near_heap_limit_callback_data = - Some((boxed_cb, near_heap_limit_callback::)); + + let prev = self + .allocations + .near_heap_limit_callback_data + .replace((boxed_cb, near_heap_limit_callback::)); + if let Some((_, prev_cb)) = prev { + self + .v8_isolate + .as_mut() + .unwrap() + .remove_near_heap_limit_callback(prev_cb, 0); + } + self .v8_isolate .as_mut() @@ -1350,4 +1361,47 @@ pub mod tests { isolate.remove_near_heap_limit_callback(20 * 1024); assert!(isolate.allocations.near_heap_limit_callback_data.is_none()); } + + #[test] + fn test_heap_limit_cb_multiple() { + let heap_limits = HeapLimits { + initial: 0, + max: 20 * 1024, // 20 kB + }; + let mut isolate = + CoreIsolate::with_heap_limits(StartupData::None, heap_limits); + let cb_handle = isolate.thread_safe_handle(); + + let callback_invoke_count_first = Rc::new(AtomicUsize::default()); + let inner_invoke_count_first = Rc::clone(&callback_invoke_count_first); + isolate.add_near_heap_limit_callback( + move |current_limit, _initial_limit| { + inner_invoke_count_first.fetch_add(1, Ordering::SeqCst); + current_limit * 2 + }, + ); + + let callback_invoke_count_second = Rc::new(AtomicUsize::default()); + let inner_invoke_count_second = Rc::clone(&callback_invoke_count_second); + isolate.add_near_heap_limit_callback( + move |current_limit, _initial_limit| { + inner_invoke_count_second.fetch_add(1, Ordering::SeqCst); + cb_handle.terminate_execution(); + current_limit * 2 + }, + ); + + let err = isolate + .execute( + "script name", + r#"let s = ""; while(true) { s += "Hello"; }"#, + ) + .expect_err("script should fail"); + assert_eq!( + "Uncaught Error: execution terminated", + err.downcast::().unwrap().message + ); + assert_eq!(0, callback_invoke_count_first.load(Ordering::SeqCst)); + assert!(callback_invoke_count_second.load(Ordering::SeqCst) > 0); + } }