mirror of
https://github.com/oven-sh/bun
synced 2026-02-14 04:49:06 +00:00
FINDINGS: - Individual yoga tests pass (19/19 tests) - Multiple test files together cause ASAN heap-use-after-free in YGNodeFree - Root cause: YGNodeFree assumes child/parent nodes are valid, but GC can free them in arbitrary order - Crash occurs in facebook::yoga::Node::setOwner() when YGNodeFree tries to clean up children CHANGES: - Enhanced JSYogaNode with WriteBarrier children array for GC references (mirrors React Native _reactSubviews) - Fixed clone() method to avoid double YGNode creation that caused ownership conflicts - TEMPORARY: Skip YGNodeFree during JS finalizer to prevent crashes (causes memory leaks) - Moved yoga tests to test/js/bun/yoga/ directory STATUS: All tests now pass, but memory leaks need to be addressed with proper YGNode lifecycle management 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
92 lines
2.2 KiB
C++
92 lines
2.2 KiB
C++
#include "YogaNodeImpl.h"
|
|
#include "JSYogaNode.h"
|
|
#include "JSYogaConfig.h"
|
|
#include "JSYogaNodeOwner.h"
|
|
#include <yoga/Yoga.h>
|
|
#include <wtf/HashSet.h>
|
|
#include <wtf/Lock.h>
|
|
|
|
namespace Bun {
|
|
|
|
|
|
Ref<YogaNodeImpl> YogaNodeImpl::create(YGConfigRef config)
|
|
{
|
|
return adoptRef(*new YogaNodeImpl(config));
|
|
}
|
|
|
|
YogaNodeImpl::YogaNodeImpl(YGConfigRef config)
|
|
{
|
|
if (config) {
|
|
m_yogaNode = YGNodeNewWithConfig(config);
|
|
} else {
|
|
m_yogaNode = YGNodeNew();
|
|
}
|
|
|
|
// Store this C++ wrapper in the Yoga node's context
|
|
YGNodeSetContext(m_yogaNode, this);
|
|
}
|
|
|
|
YogaNodeImpl::~YogaNodeImpl()
|
|
{
|
|
// Don't call YGNodeFree here - let JS finalizer handle it to control timing
|
|
// This avoids double-free issues during GC when nodes may be freed in arbitrary order
|
|
m_yogaNode = nullptr;
|
|
}
|
|
|
|
void YogaNodeImpl::setJSWrapper(JSYogaNode* wrapper)
|
|
{
|
|
// Only increment ref count if we don't already have a wrapper
|
|
// This prevents ref count leaks if setJSWrapper is called multiple times
|
|
if (!m_wrapper) {
|
|
// Increment ref count for the weak handle context
|
|
this->ref();
|
|
}
|
|
|
|
// Create weak reference with our JS owner
|
|
m_wrapper = JSC::Weak<JSYogaNode>(wrapper, &jsYogaNodeOwner(), this);
|
|
}
|
|
|
|
void YogaNodeImpl::clearJSWrapper()
|
|
{
|
|
m_wrapper.clear();
|
|
}
|
|
|
|
void YogaNodeImpl::clearJSWrapperWithoutDeref()
|
|
{
|
|
// Clear weak reference without deref - used by JS destructor
|
|
// when WeakHandleOwner::finalize will handle the deref
|
|
m_wrapper.clear();
|
|
}
|
|
|
|
JSYogaNode* YogaNodeImpl::jsWrapper() const
|
|
{
|
|
return m_wrapper.get();
|
|
}
|
|
|
|
JSYogaConfig* YogaNodeImpl::jsConfig() const
|
|
{
|
|
// Access config through JS wrapper's WriteBarrier - this is GC-safe
|
|
if (auto* jsWrapper = m_wrapper.get()) {
|
|
return jsCast<JSYogaConfig*>(jsWrapper->m_config.get());
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
YogaNodeImpl* YogaNodeImpl::fromYGNode(YGNodeRef nodeRef)
|
|
{
|
|
if (!nodeRef) return nullptr;
|
|
return static_cast<YogaNodeImpl*>(YGNodeGetContext(nodeRef));
|
|
}
|
|
|
|
void YogaNodeImpl::replaceYogaNode(YGNodeRef newNode)
|
|
{
|
|
// Don't access old YGNode - it might be freed already
|
|
// Let Yoga handle cleanup of the old node
|
|
m_yogaNode = newNode;
|
|
if (newNode) {
|
|
YGNodeSetContext(newNode, this);
|
|
}
|
|
}
|
|
|
|
} // namespace Bun
|