-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Add core::ptr::assume_moved
#3700
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
base: master
Are you sure you want to change the base?
Conversation
a87b962
to
af48452
Compare
Is there a reason we can not just say changing the upper bits has no impact on a pointer if an appropriate tagging scheme is available, without need for additional methods? |
Yes, the reason is that even if the hardware understands a particular tagging scheme, the memory model in Rust and LLVM does not. Setting a tag on a pointer, even though it has no impact on the hardware side, makes the memory model think the pointer has now been offset outside of its original allocation and thus any access to it is Undefined Behaviour. To be able to do this we need a helper method that simulates a "realloc" from the untagged address to the tagged address to make the memory model happy.
|
Cc @rust-lang/opsem |
these should probably be associated functions, not methods. also, this seems to ignore another type of pointer tagging, often used by interpreters, where the bottom bits (otherwise always zero because of alignment) are used to tag the type of the object. |
This question should indeed be answered in the RFC text, not just in the discussion thread. (This RFC could have benefited from a pre-RFC phase, posting it on the forum to get some feedback to ensure that it has all the expected details.) |
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.
Thanks for posting the RFC! However, I think it wasn't quite ready yet. Here's some first feedback. This RFC is still lacking most of the relevant details, so I didn't proceed beyond the reference-level section.
text/3700-ptr-tag-helpers.md
Outdated
# Summary | ||
[summary]: #summary | ||
|
||
Add helper methods on primitive pointer types to facilitate getting and setting the tag of a pointer. |
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.
The term "tag of a pointer" means a lot of different things, and often it means something different from how you are using the term here. So the RFC should clarify the terminology it uses. This is, AFAIK, not meant to be a general pointer tagging mechanism. No RFC is even needed for that. It is specific for working with hardware that ignores certain bits of a pointer.
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.
The thinking is that hardware that ignores certain bits of a pointer is only relevant if you're setting those bits to some values, i.e. in the context of pointer tagging. Thus, the way to add support for such hardware is through a mechanism for pointer tagging. Does that reasoning make sense?
This is still a bit of an open question, there are several directions we could go with this. The tricky part is that different architectures have support for something similar, but the details (which exact bits are ignored) may vary.
On that account I'm not sure whether it'd be better to try and make a general high-bit pointer tagging mechanism that could be used across architectures, or whether it'd be better to just upstream e.g. aarch64-specific functions into core_arch and maybe then think about a generic one that just calls into those depending on the platform.
I don't really have very strong opinions here.
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'm just pointing out the RFC is written in a confusing way. I would suggest to make it very targeted specifically for "supporting hardware that ignores some bits in a pointer", rather than general pointer tagging. This should become clear already in the summary and the first paragraph of the motivation.
text/3700-ptr-tag-helpers.md
Outdated
the lower 48 bits, leaving higher bits unused. The remaining bits are for the most part used to | ||
distinguish userspace pointers (0x00) from kernelspace pointers (0xff). | ||
Certain architectures provide extensions, such as TBI on AArch64, that allow programs to make use of | ||
those unused bits to insert custom metadata into the pointer. |
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.
To be clear, userspace can already do that without hardware support, trivially. By masking out those bots for each load. The hardware feature just makes this slightly more efficient.
I find the introduction to be a bit confusing due to this.
text/3700-ptr-tag-helpers.md
Outdated
Currently, Rust does not acknowledge TBI and related architecture extensions that enable the use of | ||
tagged pointers. This could potentially cause issues in cases such as working with TBI-enabled C/C++ | ||
components over FFI, or when writing a tagging memory allocator. |
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.
Currently, Rust does not acknowledge TBI and related architecture extensions that enable the use of | |
tagged pointers. This could potentially cause issues in cases such as working with TBI-enabled C/C++ | |
components over FFI, or when writing a tagging memory allocator. | |
Currently, Rust does not support directly using TBI and related architecture extensions that simplify the use of | |
tagged pointers. This could potentially cause issues in cases such as working with TBI-enabled C/C++ | |
components over FFI, or when writing a tagging memory allocator. |
text/3700-ptr-tag-helpers.md
Outdated
Certain architectures provide extensions, such as TBI on AArch64, that allow programs to make use of | ||
those unused bits to insert custom metadata into the pointer. | ||
|
||
Currently, Rust does not acknowledge TBI and related architecture extensions that enable the use of |
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.
The RFC should explain what the problem with the use of these extensions in Rust is.
Also, it is very odd to see interop with C/C++ as the motivation here, given that those languages do not support TBI either (which is another relevant fact the RFC should mention).
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.
Well they don't support it "fully" on a language level, as in you can't just tag arbitrary pointers with no issues, but they sort of do in that there are currently C/C++ components running in production that operate on TBI-enabled pointers.
I want to make it possible to, say, write a custom allocator which internally just calls malloc, puts some tag in the pointer it got from malloc and then returns that pointer to the user.
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 don't doubt there's C/C++ code in production that causes UB and works anyway, but since we are going for a UB-free approach here as we always do, it is not a fair comparison to claim that C/C++ already supports this in a way Rust wouldn't.
text/3700-ptr-tag-helpers.md
Outdated
``` | ||
assert!(ptr.tag() == 0); | ||
let tagged_ptr = unsafe { ptr.with_tag(63) }; | ||
assert!(tagged_ptr.tag() == 63); |
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.
The guide-level explanation should give a guide for how to think about these functions and what they do.
This is where you have to explain that tag
is basically realloc
. Currently, realloc
suddenly appears in "drawbacks", which nobody reading the RFC will understand.
Remember that an RFC is supposed to be a self-contained document such that everyone who is reasonably well-versed in Rust but knows nothing about the particular problem domain can understand what problem the RFC is trying to solve, and how it is trying to solve it. Your RFC is missing a lot of background and explanation to make it satisfy this requirement.
text/3700-ptr-tag-helpers.md
Outdated
[reference-level-explanation]: #reference-level-explanation | ||
|
||
Within Rust's memory model, modifying the high bits offsets the pointer outside of the bounds of | ||
its original allocation, making any use of it Undefined Behaviour. |
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.
its original allocation, making any use of it Undefined Behaviour. | |
its original allocation, making any load/store with that pointer Undefined Behaviour. |
"any use" is not correct, e.g. wrapping_offset
or ==
on such a pointer are completely fine.
text/3700-ptr-tag-helpers.md
Outdated
caller. | ||
|
||
# Reference-level explanation | ||
[reference-level-explanation]: #reference-level-explanation |
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.
This section should contain the full signature of the newly proposed methods, and their doc comments (see the existing pointer methods for how our doc comments look like), so that we have an exact description of what the proposal even is. You can't just propose two function names and leave the details for later, when the entire reason that an RFC is even needed is that those details are far from simple.
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.
Yes for sure, the reason they're not there yet is that I wanted to ask for outside opinions before settling in on what those signatures should be and what the exact methods should actually look like. My bad that it didn't come across as intended.
The concrete part of the proposal is that we should have a function/method to set the high-bit tag of a pointer & one to retrieve it, the other details such as the name, where it should live or what it should entail are still in flux.
text/3700-ptr-tag-helpers.md
Outdated
[drawbacks]: #drawbacks | ||
|
||
Because the memory model we currently have is not fully compatible with memory tagging and | ||
tagged pointers, setting the high bits of a pointer must be done with great care in order to |
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.
That's not correct. Pointer tagging works perfectly fine and is a commonly used technique in Rust. The memory model is just not compatible with loading from a tagged pointer without first removing the tag.
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.
That's why I wrote "not fully compatible" - you can make it work, just not as smoothly as one would like given what the hardware can support.
Besides, if you remove the tag, would that not make the result a different pointer? They won't compare equal after all.
Either way, I can clarify for sure if it's not self evident.
Why can't this be done by the backend? ie. I write my code as |
Is simulating a Consider the following code: void *original = /*...*/;
void *copy = original;
void *tagged = realloc(original, ...); Now, according to the semantics of However, if my understanding of TBI is correct, this is not what happens here. Specifically, Am I misunderstanding TBI or |
you have UB if you try to do any accesses through |
@matthieu-m this model definitely makes some code UB that would be correct when using TBI in an assembly program. However, we have to impose some restrictions to make TBI compatible with higher-level language models such as Rust (and the same goes for C and C++). |
The discrepancy caused by LLVM (and Rust) not understanding the concept of TBI is fairly unfortunate. I think it should be noted in Future Possibilities that the choice of using a That is, while overly restrictive today, the drawback of the selected model is not painting us into a corner as far as I can see. |
Why is this better than explicitly masking off the bits and then having that mask be optimized away? |
Well, sometimes they get ignored, and sometimes all bits matter. This seems highly non-trivial, but I am not an expert on the relevant LLVM passes.
That also sounds like an option, if LLVM supports it. |
It seems like LLVM knows about it, but doesn't currently have a pass that optimizes for it: Seems like it would make more sense to add this functionality to LLVM rather than Rust though. |
Indeed, I should have at least marked it as draft from the get-go, or started with the forum as you suggest. This was intended as a conversation starter, it's by no means a ready proposal. I'm fully expecting to re-write this with more information, just want to get some outside opinions and fresh eyes on the direction first. |
That does sound like something that could be a useful LLVM pass, especially for compatibility with different platforms.
The snippet above will currently compile & work "fine" on a TBI system, except that Miri will rightly complain that the code has UB. The end goal of this proposal is to create an interface for top-byte tagging that does not break the memory model. This is separate from making those always safe to dereference, for which the LLVM pass would be helpful. |
It's not different. Methods already exist to do what you are trying to do: fn mask_addr(addr: usize) -> usize {
addr & 0xFFFFFFFFFFFFFF
}
let tag = 60;
let tagged_ptr = (&value as *const _).map_addr(|addr| addr | (tag << 56));
let val = unsafe { *tagged_ptr.map_addr(mask_addr) }; This is completely sound under MIRI and doesn't require any extensions to the Rust abstract machine. The only bit that's missing is a compiler optimization that erases the |
If I'm understanding what you're suggesting correctly, under this model the users would need to write out |
@RalfJung Should I then re-write this based on the already received comments and then post on Rust Internals? |
Fair enough - the proposed API seems a bit too high level for this allocator use-case though? Wouldn't the primitive operation be something like "realloc" but where you specify the target address? And there doesn't need to be an explicit |
It certainly could be if that's the community consensus, I don't have very strong views on what the exact API should look like - my intention when posting this was to get opinions on that exact question. Next time around I'll go through Internals first, I suppose I took the request for comments term a bit too literally for how it's used here :)
True as well, the intent there is just for convenience. Because different architectures can use different bits for the tagging it'd make sense to have a corresponding |
I also think a lower-level API that focuses on the |
The realloc approach would also support cases where virtual memory mappings are used for a similar purpose on platforms without hardware support for pointer tagging (ie. where you map the same physical memory to two or more virtual address ranges). |
I don't think Rust will have standard APIs for manipulating page tables? ;) I was going to say, I don't think this is ready yet for a portable API. It makes little sense to try and sketch a portable API that has exactly one target implementation. The RFC should focus in providing APIs for platform-specific capabilities, e.g. in |
that doesn't matter if you can still use This is kinda similar to how Rust doesn't have a |
|
i meant that you'd |
From an opsem perspective this is coherent, as far as I can tell. @rust-lang/opsem please chime in if you have any comments. Nominating for @rust-lang/lang to get some idea of their thoughts on this language extension. |
Co-authored-by: Ralf Jung <[email protected]>
@rustbot labels -I-lang-nominated +I-lang-radar We discussed this in the lang call today with 2/5 present (and with @Amanieu). We generally felt positively about this. We understood and agreed with the use case. On the name, while there was some initial skepticism of "move" being in there, it ended up growing on everyone after considering how this is tied in with making a guarantee about (the lack of) aliasing. Separately, we agreed with RalfJ's reservations about "assume", given the signature. |
Thank you for the update! Is there anything I should do on that account, or are we giving it more time before taking any specific steps? |
We didn't have any specific asks. We'll probably just need to have a closer look, and maybe bikeshed the name a bit, before proposing FCP. |
text/3700-ptr-assume-moved.md
Outdated
What is the best way to make this compatible with Strict Provenance? We want to be able to create a | ||
pointer with an arbitrary address, detached from any existing pointers and with a brand-new | ||
provenance. From the LLVM side this can be handled through generating `inttoptr` which does not have | ||
the same aliasing restrictions as `getelementptr` alongside annotating the function return value as | ||
`noalias` which can be done with the aforementioned new built-in attribute. Is this enough for it to | ||
fit within the Strict Provenance framework? If not, how can we make it fit? |
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.
@RalfJung, what are your thoughts on this? Do we need to leave this as an open question, or do we have any answers here? It would seem a substantial open question to leave.
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 follow the arguments in the text as all -- what it proposes for LLVM makes little sense to me. I'd like to hear from @nikic what the best way would be to model this for LLVM; my proposal would be an inline asm block.
From the Rust side, we can just say that this is a realloc
with a chosen address (and it is UB if that would make the allocation overlap with some other allocation). I don't know which potential problems with strict provenance the RFC refers to.
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.
Which part does not make sense? The implementation needs to do 3 things:
- Create the pointer
- "Launder" it through a black box of some kind to prevent incorrect optimisations
- Make the pointer be treated as if it were returned from an allocator function
For which the solutions I'm suggesting are:
inttoptr
, becausegetelementptr
is UB in this scenario- inline asm block
noalias
return annotation
We need all 3 of the above for this to actually behave as described. At the very least I've not seen a different way of doing it.
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.
See the other discussions about noalias
-- you have fundamentally misunderstood what that attribute does.
Regarding getelementptr
, why is that UB? getelementptr inbounds
might be UB (strictly speaking: it generates poison), but getelementptr
is never UB.
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.
What I'm referring to is this section of the documentation.
Also, GEP carries additional pointer aliasing rules. It’s invalid to take a GEP from one object, address into a different separately allocated object, and dereference it. IR producers (front-ends) must follow this rule, and consumers (optimizers, specifically alias analysis) benefit from being able to rely on it. See the Rules section for more information.
This may just be being overly cautious as well, and using GEP might still work regardless of this. But I see no reason to do so. The thing we're addressing into is the same allocated object on the hardware, but has a different allocation address so maybe it could be seen as a "different separately allocated object". I think it's easier to just use inttoptr
and sidestep this entirely.
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.
It’s invalid to take a GEP from one object, address into a different separately allocated object, and dereference it.
Emphasis mine. You're not dereferencing the result of the GEP. You're passing it into the laundromat. There's only two options now:
- laundry worked, LLVM lost track of the pointer, there's no problem
- laundry failed, LLVM recognizes this is the old pointer and everything is broken no matter how many
inttoptr
you add.
I think it's easier to just use inttoptr and sidestep this entirely.
I think it is bad to be cautious without an understanding of what we'd be cautioning against. And once you dig into it and understand what happens here, it's just pointless and confusing.
Furthermore, inttoptr
is the topic of so many issues in LLVM, I would argue we are more cautious by not using it.
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.
Generally it seems like this RFC is in need of a pass by someone knowledgeable about LLVM. Sadly I won't have the time to make such a pass any time soon, sorry.
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.
True enough, the asm block should still be able to make it work regardless. Is there some specific reason why we would want to use GEP for this? Even just on the face of what the operation is for, a basic pointer cast seems better suited for this than an operation for indexing into arrays and structures.
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.
ptrtoint
/inttoptr
is the programming language semantics equivalent of a nuclear waste site. Calling it a "basic pointer cast" is like calling the Elephant's Foot a cute room divider.
If you are curious why I am saying that, I suggest:
- https://www.ralfj.de/blog/2020/12/14/provenance.html
- https://www.ralfj.de/blog/2022/04/11/provenance-exposed.html
- InstCombine cannot blindly assume that inttoptr(ptrtoint x) -> x llvm/llvm-project#33896
- LLVM Memory Model needs more rigor to avoid undesired optimization results llvm/llvm-project#34577
- https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82282
I've now had the opportunity to review this thoroughly. It's well written and well motivated. Thanks both to the author for that and to @RalfJung, who asked a lot of the right questions above to sharpen this up. As discussed above, I'd like us to pare down the unanswered questions to the degree possible. Personally, I'm happy enough with the name After those points are addressed, I'm planning to propose FCP merge on this RFC. |
@rustbot author |
This comment was marked as resolved.
This comment was marked as resolved.
As for the strict provenance questions, I was hoping for input from people involved with that proposal who could say whether this fits into it as-is or needs some specific accommodations. I am not aware of any specific problems, but I've not seen all the discussions relevant to said proposal. |
@rustbot ready |
I see not much interaction between strict provenance and this operation. If anything, it could be framed as an extension of our strict provenance APIs to also support "switching" between multiple different physical mirror images of the same underlying data. Remember, strict provenance is just an API. I am not sure what exactly you mean, @traviscross, when you ask about the interaction of this proposal and strict provenance. Do you imagine some way of calling first a strict provenance function and then this new operation that would then somehow lead to issues? Do you have any concrete problematic examples? |
We can avoid this issue by assuming that a move from the untagged address to the tagged address has | ||
happened. To do so, we need the helper function to return a pointer with a brand new provenance, | ||
disjoint from the provenance of the original pointer. This can be achieved by the combination of | ||
using `inttoptr` and an inline asm block. |
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.
Attaching a comment to this to record the concern that using inttoptr
here makes no sense IMO. Also see the discussion here.
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.
That said -- why does the RFC even go into that much detail? The LLVM IR we emit is an implementation detail! The RFC should concern itself with the user-visible behavior and guarantees.
Given the nature of this operation, maybe it should have a section on "implementation considerations" or so. But then it should actually spell out the LLVM IR, the description here is too vague to give me confidence that you and me have the same IR in our minds.
Add a helper for primitive pointer types to facilitate modifying the address of a pointer. This
mechanism is intended to enable the use of architecture features such as AArch64 Top-Byte Ignore
(TBI) to facilitate use-cases such as high-bit pointer tagging. An example application of this
mechanism would be writing a tagging memory allocator.
Rendered