Make ImplicitSharingPtr constructor from data pointer explicit #115476

Merged
Lukas Tönne merged 1 commits from LukasTonne/blender:implicit-sharing-ptr-ctor into main 2023-11-27 15:53:38 +01:00
Member

The ImplicitSharingPtr has an implicit constructor for raw pointers.
This has unintended effects when comparing an ImplicitSharingPtr to a
raw pointer: The raw pointer is implicitly converted to the shared
pointer (without change in refcount) and when going out of scope will
decrement user count, eventually freeing the data.

Conversion from raw pointer to shared pointer should not happen
implicitly. The constructor is made explicit now. This requires a little
more boilerplate when constructing a sharing pointer. A special
constructor for the nullptr is added so comparison with nullptr can
still happen without writing out a constructor.

The ImplicitSharingPtr has an implicit constructor for raw pointers. This has unintended effects when comparing an ImplicitSharingPtr to a raw pointer: The raw pointer is implicitly converted to the shared pointer (without change in refcount) and when going out of scope will decrement user count, eventually freeing the data. Conversion from raw pointer to shared pointer should not happen implicitly. The constructor is made explicit now. This requires a little more boilerplate when constructing a sharing pointer. A special constructor for the nullptr is added so comparison with nullptr can still happen without writing out a constructor.
Lukas Tönne added 1 commit 2023-11-27 13:53:21 +01:00
buildbot/vexp-code-patch-coordinator Build done. Details
3e20fac450
Make ImplicitSharingPtr constructor from data pointer explicit.
The ImplicitSharingPtr has an implicit constructor for raw pointers.
This has unintended effects when comparing an ImplicitSharingPtr to a
raw pointer: The raw pointer is implicitly converted to the shared
pointer (without change in refcount) and when going out of scope will
decrement user count, eventually freeing the data.

Conversion from raw pointer to shared pointer should not happen
implicitly. The constructor is made explicit now. This requires a little
more boilerplate when constructing a sharing pointer. A special
constructor for the nullptr is added so comparison with nullptr can
still happen without writing out a constructor.
Lukas Tönne requested review from Jacques Lucke 2023-11-27 13:53:29 +01:00
Lukas Tönne added this to the Nodes & Physics project 2023-11-27 13:53:34 +01:00
Author
Member

Possible improvement: add a make_implicit_sharing_ptr utility function similar to std::make_shared, which forwards arguments to one of the pointee constructors. This avoids writing out multiple constructors and keeps code a bit more readable.

Possible improvement: add a `make_implicit_sharing_ptr` utility function similar to `std::make_shared`, which forwards arguments to one of the pointee constructors. This avoids writing out multiple constructors and keeps code a bit more readable.
Author
Member

This problem came up during work on volume grids: the Volume geometry has a list of VolumeGrid, which are becoming ImplicitSharedData. Some API methods loop over grids and compare to a raw pointer, which includes a "hidden" implicit conversion during pointer comparison and ends up freeing all the data:
fe90c82b20/source/blender/blenkernel/intern/volume.cc (L1579)

This problem came up during work on volume grids: the `Volume` geometry has a list of `VolumeGrid`, which are becoming `ImplicitSharedData`. Some API methods loop over grids and compare to a raw pointer, which includes a "hidden" implicit conversion during pointer comparison and ends up freeing all the data: https://projects.blender.org/blender/blender/src/commit/fe90c82b208ae5c7f699040a36b149a7f576cd0d/source/blender/blenkernel/intern/volume.cc#L1579
Jacques Lucke approved these changes 2023-11-27 14:56:25 +01:00
Author
Member

@blender-bot build

@blender-bot build
Lukas Tönne merged commit 227a4eae77 into main 2023-11-27 15:53:38 +01:00
Lukas Tönne deleted branch implicit-sharing-ptr-ctor 2023-11-27 15:53:40 +01:00
Sign in to join this conversation.
No reviewers
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 Assignees
2 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#115476
No description provided.