Fix: Geometry Nodes: Sample curve crash with invalid curve indices #110099

Open
Iliya Katushenock wants to merge 3 commits from mod_moder/blender:tmp_fix_sample_curves_crash into main

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.

VectorSet used to sample index of real deduplicated groups index of curves.
VectorSet filled by only valid indices of curves (if user input cantains in curves range).
But to sample this, only valid indices should be used now.
Fix: create mask_valids, mask_unvalids for curve indices and use it to
fill invalids by zero and sample all valids.

VectorSet used to sample index of real deduplicated groups index of curves. VectorSet filled by only valid indices of curves (if user input cantains in curves range). But to sample this, only valid indices should be used now. Fix: create `mask_valids`, `mask_unvalids` for curve indices and use it to fill invalids by zero and sample all valids.
Iliya Katushenock added the
Interest
Geometry Nodes
label 2023-07-14 12:48:47 +02:00
Iliya Katushenock added 1 commit 2023-07-14 12:48:58 +02:00
Iliya Katushenock added this to the Nodes & Physics project 2023-07-14 12:49:16 +02:00
Iliya Katushenock requested review from Hans Goudey 2023-07-14 12:49:27 +02:00
Hans Goudey reviewed 2023-07-14 13:38:45 +02:00
Hans Goudey left a comment
Member

Thanks!

Thanks!
@ -416,1 +405,3 @@
});
IndexMaskMemory memory;
IndexMask mask_valids;
Member

Small naming thing--

  • mask_valids -> mask_valid
  • mask_invalids -> mask_invalid
Small naming thing-- - `mask_valids` -> `mask_valid` - `mask_invalids` -> `mask_invalid`
mod_moder marked this conversation as resolved
@ -417,1 +413,4 @@
const int curve_index = curve_indices[index];
return curves_range.contains(curve_index);
});
mask_invalids = IndexMask::from_predicate(
Member

Maybe it's better to build this with IndexMask::complement(), so it can be skipped if all the indices were valid

Maybe it's better to build this with `IndexMask::complement()`, so it can be skipped if all the indices were valid
Author
Member

Yeah, i was try, but complement use range as univers instead of mask. So it can't be used in this case.

Yeah, i was try, but `complement` use range as univers instead of mask. So it can't be used in this case.
mod_moder marked this conversation as resolved
Iliya Katushenock added 1 commit 2023-07-14 13:47:39 +02:00
Iliya Katushenock changed title from Fix: Crash Smaple Curve node to Fix: Geometry Nodes: Crash Smaple Curve node for incorrect curve index field 2023-07-15 21:49:14 +02:00
Hans Goudey changed title from Fix: Geometry Nodes: Crash Smaple Curve node for incorrect curve index field to Fix: Geometry Nodes: Crash Smaple Curve node with invalid curve indices 2023-07-16 05:12:48 +02:00
Hans Goudey changed title from Fix: Geometry Nodes: Crash Smaple Curve node with invalid curve indices to Fix: Geometry Nodes: Sample curve crash with invalid curve indices 2023-07-16 05:13:07 +02:00
Member

Before moving forward with this fix, I'd like to look into dealing with the invalid indices at a different level, so the node itself doesn't have to deal with this. Some nodes preprocess input fields to do that, with a separate operation. But I don't have a specific idea yet.

Before moving forward with this fix, I'd like to look into dealing with the invalid indices at a different level, so the node itself doesn't have to deal with this. Some nodes preprocess input fields to do that, with a separate operation. But I don't have a specific idea yet.
Author
Member

I made this solution as a test: #111197

I made this solution as a test: https://projects.blender.org/blender/blender/pulls/111197
Iliya Katushenock added 1 commit 2023-09-23 15:53:50 +02:00
This pull request has changes conflicting with the target branch.
  • source/blender/nodes/geometry/nodes/node_geo_curve_sample.cc

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u tmp_fix_sample_curves_crash:mod_moder-tmp_fix_sample_curves_crash
git checkout mod_moder-tmp_fix_sample_curves_crash
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#110099
No description provided.