Fix #110971: Replace our own barely-working backtrace on memleaks feature with ASAN utils. #111006

Merged
Bastien Montagne merged 1 commits from mont29/blender:guardedalloc-backtrace-fix into main 2023-08-10 17:55:03 +02:00

Instead of storing the backtrace in all memory blocks, and trying to get
meaningful info out of this list of pointers when printing leaked ones,
just use __asan_describe_address when ASAN is enabled.

This also work on Windows, in addition to linux and (presumably) OSX,
but does require to build with ASAN enabled.

The previous code was not working very well anymore, for some reason the
call to backtrace_symbols seems to fail to give any meaningful
information nowadays on most of Blender code. And it was only
implemented for linux and OSX.

Based on an idea from @LazyDodo, many thanks!

Instead of storing the backtrace in all memory blocks, and trying to get meaningful info out of this list of pointers when printing leaked ones, just use `__asan_describe_address` when ASAN is enabled. This also work on Windows, in addition to linux and (presumably) OSX, but does require to build with ASAN enabled. The previous code was not working very well anymore, for some reason the call to `backtrace_symbols` seems to fail to give any meaningful information nowadays on most of Blender code. And it was only implemented for linux and OSX. Based on an idea from @LazyDodo, many thanks!
Author
Owner

@blender-bot build

@blender-bot build
Bastien Montagne requested review from Sergey Sharybin 2023-08-10 15:02:45 +02:00
Bastien Montagne requested review from Ray molenkamp 2023-08-10 15:02:45 +02:00
Bastien Montagne added the
Module
Core
Platform
Linux
Platform
Windows
Platform
macOS
labels 2023-08-10 15:03:09 +02:00
Bastien Montagne force-pushed guardedalloc-backtrace-fix from 73361879dc to 32c7ace6f0 2023-08-10 15:11:19 +02:00 Compare
Author
Owner

@blender-bot build

@blender-bot build
Sergey Sharybin approved these changes 2023-08-10 15:24:39 +02:00
Sergey Sharybin left a comment
Owner

From the description it seems all good. Some minor inlined comment.
Assume you tested it and such :)

From the description it seems all good. Some minor inlined comment. Assume you tested it and such :)
@ -104,9 +99,6 @@ typedef MemHead MemHeadAligned;
#ifdef DEBUG_BACKTRACE
# if defined(__linux__) || defined(__APPLE__)
# include <execinfo.h>

Do we still need this include?

Do we still need this include?
mont29 marked this conversation as resolved
Bastien Montagne force-pushed guardedalloc-backtrace-fix from 32c7ace6f0 to d1e28d3aea 2023-08-10 15:49:44 +02:00 Compare
Member

minor changes to suggest, i enabled it by default on windows, since there's no LSAN there, improved the comment, and cleaned up some left over defines

diff --git a/intern/guardedalloc/intern/mallocn_guarded_impl.c b/intern/guardedalloc/intern/mallocn_guarded_impl.c
index 26a919984ae..ae1d0fc3385 100644
--- a/intern/guardedalloc/intern/mallocn_guarded_impl.c
+++ b/intern/guardedalloc/intern/mallocn_guarded_impl.c
@@ -40,14 +40,16 @@
 //#define DEBUG_MEMCOUNTER
 
 /* Only for debugging:
- * Defining DEBUG_BACKTRACE will store a backtrace from where
- * memory block was allocated and print this trace for all
- * unfreed blocks.
+ * Defining DEBUG_BACKTRACE will display a backtrace from where memory block was allocated and
+ * print this trace for all unfreed blocks. This will only work for asan enabled builds. This
+ * option will be on by default for MSVC as it currently does not have LSAN which would normally
+ * report these leaks, off by default on all other platforms because it would report the leaks
+ * twice, once here, and once by LSAN.
  */
+#if defined(_MSC_VER)
+#  define DEBUG_BACKTRACE
+#else
 //#define DEBUG_BACKTRACE
-
-#ifdef DEBUG_BACKTRACE
-#  define BACKTRACE_SIZE 100
 #endif
 
 #ifdef DEBUG_MEMCOUNTER
minor changes to suggest, i enabled it by default on windows, since there's no LSAN there, improved the comment, and cleaned up some left over defines ```diff diff --git a/intern/guardedalloc/intern/mallocn_guarded_impl.c b/intern/guardedalloc/intern/mallocn_guarded_impl.c index 26a919984ae..ae1d0fc3385 100644 --- a/intern/guardedalloc/intern/mallocn_guarded_impl.c +++ b/intern/guardedalloc/intern/mallocn_guarded_impl.c @@ -40,14 +40,16 @@ //#define DEBUG_MEMCOUNTER /* Only for debugging: - * Defining DEBUG_BACKTRACE will store a backtrace from where - * memory block was allocated and print this trace for all - * unfreed blocks. + * Defining DEBUG_BACKTRACE will display a backtrace from where memory block was allocated and + * print this trace for all unfreed blocks. This will only work for asan enabled builds. This + * option will be on by default for MSVC as it currently does not have LSAN which would normally + * report these leaks, off by default on all other platforms because it would report the leaks + * twice, once here, and once by LSAN. */ +#if defined(_MSC_VER) +# define DEBUG_BACKTRACE +#else //#define DEBUG_BACKTRACE - -#ifdef DEBUG_BACKTRACE -# define BACKTRACE_SIZE 100 #endif #ifdef DEBUG_MEMCOUNTER ```
Ray molenkamp approved these changes 2023-08-10 16:24:29 +02:00
Ray molenkamp left a comment
Member

accepted, given the minor changes suggested are done, not worth having another review round over unless there are objections.

accepted, given the minor changes suggested are done, not worth having another review round over unless there are objections.
Bastien Montagne force-pushed guardedalloc-backtrace-fix from d1e28d3aea to 95bc45b635 2023-08-10 17:54:34 +02:00 Compare
Bastien Montagne merged commit 2e79ca3205 into main 2023-08-10 17:55:03 +02:00
Bastien Montagne deleted branch guardedalloc-backtrace-fix 2023-08-10 17:55:05 +02:00
Author
Owner

Yuck somehow missed to push you tweak @LazyDodo , committed as bcc0b9f73f :(

Yuck somehow missed to push you tweak @LazyDodo , committed as bcc0b9f73f97 :(
Member

it's all good, thanks for following up on that!

it's all good, thanks for following up on that!
Sign in to join this conversation.
No Label
Interest
Alembic
Interest
Animation & Rigging
Interest
Asset Browser
Interest
Asset Browser Project Overview
Interest
Audio
Interest
Automated Testing
Interest
Blender Asset Bundle
Interest
BlendFile
Interest
Collada
Interest
Compatibility
Interest
Compositing
Interest
Core
Interest
Cycles
Interest
Dependency Graph
Interest
Development Management
Interest
EEVEE
Interest
EEVEE & Viewport
Interest
Freestyle
Interest
Geometry Nodes
Interest
Grease Pencil
Interest
ID Management
Interest
Images & Movies
Interest
Import Export
Interest
Line Art
Interest
Masking
Interest
Metal
Interest
Modeling
Interest
Modifiers
Interest
Motion Tracking
Interest
Nodes & Physics
Interest
OpenGL
Interest
Overlay
Interest
Overrides
Interest
Performance
Interest
Physics
Interest
Pipeline, Assets & IO
Interest
Platforms, Builds & Tests
Interest
Python API
Interest
Render & Cycles
Interest
Render Pipeline
Interest
Sculpt, Paint & Texture
Interest
Text Editor
Interest
Translations
Interest
Triaging
Interest
Undo
Interest
USD
Interest
User Interface
Interest
UV Editing
Interest
VFX & Video
Interest
Video Sequencer
Interest
Virtual Reality
Interest
Vulkan
Interest
Wayland
Interest
Workbench
Interest: X11
Legacy
Blender 2.8 Project
Legacy
Milestone 1: Basic, Local Asset Browser
Legacy
OpenGL Error
Meta
Good First Issue
Meta
Papercut
Meta
Retrospective
Meta
Security
Module
Animation & Rigging
Module
Core
Module
Development Management
Module
EEVEE & Viewport
Module
Grease Pencil
Module
Modeling
Module
Nodes & Physics
Module
Pipeline, Assets & IO
Module
Platforms, Builds & Tests
Module
Python API
Module
Render & Cycles
Module
Sculpt, Paint & Texture
Module
Triaging
Module
User Interface
Module
VFX & Video
Platform
FreeBSD
Platform
Linux
Platform
macOS
Platform
Windows
Priority
High
Priority
Low
Priority
Normal
Priority
Unbreak Now!
Status
Archived
Status
Confirmed
Status
Duplicate
Status
Needs Info from Developers
Status
Needs Information from User
Status
Needs Triage
Status
Resolved
Type
Bug
Type
Design
Type
Known Issue
Type
Patch
Type
Report
Type
To Do
No Milestone
No project
No Assignees
3 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: blender/blender#111006
No description provided.