fix(vm): range-check magnitude before the long long cast in value_to_string (#695)#698
Merged
InauguralPhysicist merged 1 commit intoJul 24, 2026
Conversation
…string (InauguralSystems#695) value_to_string's VAL_NUM case tested `n == (long long)n && fabs(n) < 2^53`, evaluating the `(long long)n` cast (the left conjunct) before the magnitude guard. For |n| >= 2^63 that float-to-long-long conversion is undefined behavior (float-cast-overflow, flagged by UBSan/CodeQL). Swap the conjuncts so the range check short-circuits and guards the cast; behavior for in-range values is unchanged. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Fixes #695.
value_to_string'sVAL_NUMcase hadn == (long long)n && fabs(n) < 9007199254740992.0, so the(long long)ncast (left conjunct) was evaluated before the magnitude guard. For any|n| >= 2^63reaching this path that is undefined behavior (float-cast-overflow — flagged by UBSan/CodeQL). Swapping the conjuncts makes the range check short-circuit and guard the cast:if (fabs(n) < 9007199254740992.0 && n == (long long)n)In-range formatting is unchanged (an out-of-range value falls to the
%.*gbranch either way, so local output is identical — the UB only manifests under UBSan/CodeQL, which is CIs regression guard here)../build.shclean;run_all_tests.sh3183/3183.Generated by Claude Fable 5 (brief, review), Claude Opus 4.8 (implementation)