-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
UB-check for alignment of ptr to Box::from_raw{,_in} #137325
base: master
Are you sure you want to change the base?
Conversation
This comment has been minimized.
This comment has been minimized.
library/alloc/src/boxed.rs
Outdated
"Box::from_raw_in requires that the pointer is properly aligned", | ||
(ptr: *mut () = ptr as *mut (), align: usize = align_of::<T>()) => ptr.is_aligned_to(align) | ||
); | ||
Box(unsafe { Unique::new_unchecked(ptr) }, alloc) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just in terms of UX, it's better that all preconditions of an unsafe fn
be asserted in it directly, instead of falling through to callees.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So this should also check for non-null-ness? What about Box::from_raw (which calls Box::from_raw_in)? Should it get its own checks as well?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So this should also check for non-null-ness?
Yes
What about Box::from_raw (which calls Box::from_raw_in)? Should it get its own checks as well?
These checks sometimes impose small but widespread compile time overhead. What I'd like is for the diagnostic to be clear and actionable, and reporting the name of the function that the user called seems like a pretty basic first step. So yes I would prefer for Box::from_raw
to also have basically a copy+paste of this check, but we may have to balance that against compile-time overhead. I can kick off a perf run to measure once you and I think this PR is in good order and it passes CI.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sounds like a plan :D
Can you add a test to |
Yes can do, and thanks for the pointer. |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Some changes occurred to the intrinsics. Make sure the CTFE / Miri interpreter cc @rust-lang/miri, @rust-lang/wg-const-eval |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
@capture { ptr: *const (), align: usize } -> bool: | ||
if const { | ||
!ptr.is_null() | ||
} else { | ||
ptr.is_aligned_to(align) && !ptr.is_null() | ||
} | ||
) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We have maybe_is_aligned_and_not_null as a helper for this, why not use that?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can't use that, because impl<T: ?Sized> Box<T>
means that I cannot use T::IS_ZST
, which means I don't know how to call maybe_is_aligned_and_not_null
.
Oh, seems you are still experimenting. Please make this a draft so rustbot doesn't ping people. |
Sorry about that; I'm still finding my way around, but this is now a draft again. |
This comment has been minimized.
This comment has been minimized.
The job Click to see the possible cause of the failure (guessed by this bot)
|
☔ The latest upstream changes (presumably #137573) made this pull request unmergeable. Please resolve the merge conflicts. |
This adds a missing UB-check for proper alignment of pointers to Box::from_raw{,_in}. See #69283 (comment) for some background.