Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: panic removing InPorts in MultiPortGraph::set_num_ports #191

Merged
merged 4 commits into from
Mar 4, 2025

Conversation

acl-cqc
Copy link
Contributor

@acl-cqc acl-cqc commented Mar 4, 2025

See test case. The problem is that iterating through the dropped_ports reads self.multiport using old indices, after self.multiport was mutated/renumbered by the callback earlier. (Thus, if the first OutPort was a multiport, removing the last InPort can end up reading a false positive.)

I've tried to see if I can break it by adding inports too, but in such cases all the ports get moved to a new "block" so there is no problem (hence, a more thorough "fix" to do all reading of self.multiport before any writing to it, including the reading+writing performed by self.multiport.swap, does not appear necessary).

Copy link

codecov bot commented Mar 4, 2025

Codecov Report

Attention: Patch coverage is 80.00000% with 4 lines in your changes missing coverage. Please review.

Project coverage is 83.60%. Comparing base (c9e7483) to head (a648a79).
Report is 1 commits behind head on main.

Files with missing lines Patch % Lines
src/multiportgraph.rs 80.00% 2 Missing and 2 partials ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##             main     #191      +/-   ##
==========================================
+ Coverage   83.56%   83.60%   +0.04%     
==========================================
  Files          24       24              
  Lines        6347     6363      +16     
  Branches     6347     6363      +16     
==========================================
+ Hits         5304     5320      +16     
+ Misses        969      967       -2     
- Partials       74       76       +2     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@acl-cqc acl-cqc requested a review from aborgna-q March 4, 2025 14:07
@acl-cqc acl-cqc changed the title fix: crash removing inports in MultiPortGraph::set_num_ports fix: panic removing InPorts in MultiPortGraph::set_num_ports Mar 4, 2025
Copy link
Collaborator

@aborgna-q aborgna-q left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ouch. Good catch!

@acl-cqc acl-cqc enabled auto-merge March 4, 2025 14:34
@acl-cqc acl-cqc added this pull request to the merge queue Mar 4, 2025
Merged via the queue into main with commit 5cdd65b Mar 4, 2025
13 checks passed
@acl-cqc acl-cqc deleted the acl/fix_set_num_ports branch March 4, 2025 14:37
@hugrbot hugrbot mentioned this pull request Mar 4, 2025
github-merge-queue bot pushed a commit that referenced this pull request Mar 4, 2025
## 🤖 New release

* `portgraph`: 0.13.2 -> 0.13.3 (✓ API compatible changes)

<details><summary><i><b>Changelog</b></i></summary><p>

<blockquote>

## [0.13.3](v0.13.2...v0.13.3)
- 2025-03-04

### Bug Fixes

- panic removing InPorts in MultiPortGraph::set_num_ports
([#191](#191))
</blockquote>


</p></details>

---
This PR was generated with
[release-plz](https://github.com/release-plz/release-plz/).

---------

Co-authored-by: Agustín Borgna <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants