Skip to content

Add additional checks to remove possibility of NotNaN containing NaN - #20

Merged
reem merged 1 commit into
masterfrom
fix-nan-leak
Jan 31, 2017
Merged

Add additional checks to remove possibility of NotNaN containing NaN#20
reem merged 1 commit into
masterfrom
fix-nan-leak

Conversation

@reem

@reem reem commented Jan 31, 2017

Copy link
Copy Markdown
Owner

Fixes #17

@reem
reem merged commit c8e3df4 into master Jan 31, 2017
@reem
reem deleted the fix-nan-leak branch January 31, 2017 10:00
mbrubeck added a commit to mbrubeck/advisory-db that referenced this pull request Dec 6, 2020
…erators

After using an assignment operators such as `NotNat::add_assign`,
`NotNan::mul_assign`, etc., it was possible for the resulting `NotNan`
value to contain a `NaN`.  This could cause undefined behavior in safe
code, because the safe `NotNan::cmp` method contains internal unsafe
code that assumes the value is never `NaN`.  (It could also cause
undefined behavior in third-party unsafe code that makes the same
assumption, as well as logic errors in safe code.)

This was mitigated starting in version 0.4.0, by panicking if the
assigned value is NaN.  However, in affected versions from 0.4.0 onward,
code that continued after using unwinding to catch this panic could
still observe the invalid value and trigger undefined behavior.

The flaw is fully corrected in versions 1.1.1 and 2.0.1, by ensuring
that the assignment operators panic without modifying the operand, if
the result would be `NaN`.

Fix details:

reem/rust-ordered-float#20
reem/rust-ordered-float#71
mbrubeck added a commit to mbrubeck/advisory-db that referenced this pull request Dec 6, 2020
…erators

After using an assignment operators such as `NotNat::add_assign`,
`NotNan::mul_assign`, etc., it was possible for the resulting `NotNan`
value to contain a `NaN`.  This could cause undefined behavior in safe
code, because the safe `NotNan::cmp` method contains internal unsafe
code that assumes the value is never `NaN`.  (It could also cause
undefined behavior in third-party unsafe code that makes the same
assumption, as well as logic errors in safe code.)

This was mitigated starting in version 0.4.0, by panicking if the
assigned value is NaN.  However, in affected versions from 0.4.0 onward,
code that continued after using unwinding to catch this panic could
still observe the invalid value and trigger undefined behavior.

The flaw is fully corrected in versions 1.1.1 and 2.0.1, by ensuring
that the assignment operators panic without modifying the operand, if
the result would be `NaN`.

Fix details:

reem/rust-ordered-float#20
reem/rust-ordered-float#71
mbrubeck added a commit to mbrubeck/advisory-db that referenced this pull request Dec 6, 2020
…erators

After using an assignment operators such as `NotNan::add_assign`,
`NotNan::mul_assign`, etc., it was possible for the resulting `NotNan`
value to contain a `NaN`.  This could cause undefined behavior in safe
code, because the safe `NotNan::cmp` method contains internal unsafe
code that assumes the value is never `NaN`.  (It could also cause
undefined behavior in third-party unsafe code that makes the same
assumption, as well as logic errors in safe code.)

This was mitigated starting in version 0.4.0, by panicking if the
assigned value is NaN.  However, in affected versions from 0.4.0 onward,
code that continued after using unwinding to catch this panic could
still observe the invalid value and trigger undefined behavior.

The flaw is fully corrected in versions 1.1.1 and 2.0.1, by ensuring
that the assignment operators panic without modifying the operand, if
the result would be `NaN`.

Fix details:

reem/rust-ordered-float#20
reem/rust-ordered-float#71
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.

3 participants