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(rust): ub on empty slices #3519

Merged
merged 1 commit into from
Mar 27, 2025

Conversation

Stranger6667
Copy link
Contributor

Hi!

This PR fixes undefined behavior caused by passing a NULL pointer to std::slice::from_raw_parts which manifests in the following test:

#[test]
fn regex_value_test() {
    let result = parse(b"//");
    let node = result.node().as_program_node().unwrap().statements().body().iter().next().unwrap().as_regular_expression_node().unwrap();
    assert_eq!(node.unescaped(), b"");
}

with the following error:

running 1 test
thread 'tests::regex_value_test' panicked at core/src/panicking.rs:223:5:
unsafe precondition(s) violated: slice::from_raw_parts requires the pointer to be aligned and non-null, and the total size of the slice not to exceed `isize::MAX`
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
thread caused non-unwinding panic. aborting.
error: test failed, to rerun pass `--lib`

Caused by:
  process didn't exit successfully: `/tmp/prism/rust/target/aarch64-apple-darwin/debug/deps/ruby_prism-3a39e9d2b3dfec9b regex_value_test` (signal: 6, SIGABRT: process abort signal)

The fix itself is a check for NULL before constructing a slice.

Signed-off-by: Dmitry Dygalo <[email protected]>
Copy link
Collaborator

@kddnewton kddnewton left a comment

Choose a reason for hiding this comment

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

Thanks!

@kddnewton kddnewton merged commit d03e956 into ruby:main Mar 27, 2025
57 checks passed
@Stranger6667 Stranger6667 deleted the dd/fix-ub-on-empty-slices branch March 27, 2025 20:42
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