Fix out-of-bounds access possibility in safe code. #18
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
With the
id
andtree
fields ofNodeRef
andNodeMut
being public, it was possible to assign to them. For example, it was possible to build aNodeMut
for large ID/index in a small tree/Vec. Since some APIs use unchecked indexing, this would let users of this library cause out-of-bounds access in aVec
without writingunsafe
code themselves.This commit fixes that issue by making the fields private and instead providing read-only access via accessor methods. Now the fields can only be set by the
ego-tree
crate, which can make sure to only ever use an ID that is in-bounds for a given tree.