Skip to content
171 changes: 171 additions & 0 deletions src/coding-guidelines/types-and-traits.rst
Original file line number Diff line number Diff line change
Expand Up @@ -63,3 +63,174 @@ Types and Traits
current.checked_add(velocity).expect("Position calculation overflowed")
}

.. guideline:: Do not access memory using a pointer with an incorrect provenance
:id: gui_5iE7d65xGPpJ
:category: required
:status: draft
:release: unclear-latest
:fls: fls_bw8zutjcteki
:decidability: decidable
:scope: system
:tags: surprising-behavior

Do not access memory using a pointer with an incorrect provenance.
Pointers, including values of reference type, have two components.
The pointer’s address identifies the memory location where the pointer is currently pointing.
The pointer’s provenance determines where and when the pointer is allowed to access memory.

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

The provenance also determines if the pointer is allowed to mutate the memory. See also the std docs for this: https://doc.rust-lang.org/std/ptr/index.html#provenance

This should maybe also be taken into account below when discussing when a memory access is UB.

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

resolved.


Whether a memory access with a given pointer causes undefined behavior (UB) depends on both the address and the provenance:
the same address can access memory with one provenance but have undefined behavior with another provenance.

Pointer comparisons are permitted only when both pointers are guaranteed to reference the same allocation.

Code shall not rely on:

- Layout of variables in memory
- Assumed field layout of structs without ``repr(C)`` or ``repr(packed)``
- Outcomes of pointer arithmetic across allocation boundaries

This rule ignores any metadata that may come with wide pointers;
it only pertains to thin pointers and the data part of a wide pointer.

@inkreasing inkreasing Dec 9, 2025

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Suggested change
it only pertains to thin pointers and the data part of a wide pointer.
it only pertains to thin pointers and the address part of a wide pointer.

The additional data of a wide pointer is often called metadata (See the unstable function for reading it: https://doc.rust-lang.org/std/ptr/fn.metadata.html or the previous sentence). So calling the address "data" is confusing.

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

resolved

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Do you want to link to unstable docs? If yes it may be better to link to https://doc.rust-lang.org/std/ptr/trait.Pointee.html#pointer-metadata as here the current kinds of metadata are explained?

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

@inkreasing OK, i added this link. do you see any other problems with this or does it look ready to merge?

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

resolved (again)

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

@rcseacord Oh sorry i am not in any position to decide wether this is ready to be merged. This was basically a drive-by review. Will make that clear from the beginning next time.

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

no problem, i was just looking for your opinion.


.. rationale::
:id: rat_AFpgNhAMQ4eC
:status: draft

Although raw pointer comparison is not itself undefined behavior;
comparing pointers with different provenance can give surprising results which might cause logic errors,
portability issues, and inconsistent behavior across different optimization levels, builds, or platforms.
Specifically, the result of comparing pointers with different providence is guaranteed to be the comparison of the pointer addresses.
However, the addresses that are selected for allocations is unspecified.

Pointer equality or ordering is only meaningful when both pointers are derived from the same allocated object or block of memory.
Comparisons across unrelated allocations are semantically meaningless and must be avoided.

.. non_compliant_example::
:id: non_compl_ex_c5NpFUId5lMp
:status: draft

This noncompliant example creates a mutable raw pointer and a shared reference to ``x``,
and derives a raw pointer from that shared reference.
The shared reference ``shrref`` is converted to a raw constant pointer, and then to a raw mutable pointer.

This produces another raw pointer ``shrptr`` to the same memory location ``x``, but its provenance is different:
- ``ptr`` is derived from from ``&mut x``
- ``shrptr`` is derived from a shared reference ``&x``

As a result, this noncompliant example has undefined behavior when writing ``x`` through the shared reference ``shrptr``
attempting a write access using using a tag that only grants ``SharedReadOnly`` permission for this location.

.. code-block:: rust

fn main() {
unsafe {
let mut x = 5;
// Setup a mutable raw pointer and a shared reference to `x`,
Comment thread
plaindocs marked this conversation as resolved.
Outdated
// and derive a raw pointer from that shared reference.
let ptr = &mut x as *mut i32;
let shrref = &*ptr;
let shrptr = shrref as *const i32 as *mut i32;
// `ptr` and `shrptr` point to the same address.
assert_eq!(ptr, shrptr);
// Writing `x` through `shrptr` is undefined behavior
shrptr.write(0);
println!("x = {}", x);
}
}

.. compliant_example::
:id: compl_ex_pBPeA9tBOnxk
:status: draft

This compliant example eliminates the undefined behavior by writing to ``x`` through ``ptr`` which is derived directly from ``&mut x``.

.. code-block:: rust

fn main() {
unsafe {
let mut x = 5;
// Setup a mutable raw pointer and a shared reference to `x`,
// and derive a raw pointer from that shared reference.
let ptr = &mut x as *mut i32;
let shrref = &*ptr;
let shrptr = shrref as *const i32 as *mut i32;
// `ptr` and `shrptr` point to the same address.
assert_eq!(ptr, shrptr);
// Eliminate UB by writing through `ptr`
ptr.write(0);
println!("x = {}", x);
}
}

.. non_compliant_example::
:id: non_compl_ex_c5NpFUId5lMo
:status: draft

This noncompliant example allocates two local ``u32`` variables on the stack.
The order of these two variables in memory is unspecified behavior.
The code then creates a raw pointer to ``v2`` and a raw pointer to ``v1``.
Adds the address stored in ``v1`` to 1 × ``size_of::<u32>()`` = 4 bytes using
`wrapping_offset <https://doc.rust-lang.org/std/primitive.pointer.html#method.wrapping_offset>`__ which:

- ignores provenance
- may produce an arbitrary, invalid, or meaningless pointer
- is always allowed but does not guarantee the pointer points to anything valid

Comparing two `values <https://rust-lang.github.io/fls/glossary.html#term_value>`__ of `raw pointer types
<https://rust-lang.github.io/fls/glossary.html#term_raw_pointer_type>`__ compares the addresses of the
`values <https://rust-lang.github.io/fls/glossary.html#term_value>`__.

This code then compares ptr (a pointer to ``v2``) with ``ptr2`` (a pointer to ``v1`` + 4 bytes).
Because the stack layout is unspecified behavior,
the result of this comparison depends on how the compiler the memory layout for ``v1`` and ``v2`` on the stack.
The result may change across:

- compiler versions
- optimization levels
- targets
- small code changes
- builds with or without link-time optimization

This noncompliant example does not contain undefined behavior (because no pointer is dereferenced) but it does depend on unspecified behavior,
meaning that the program is valid, but the results are undefined.

.. code-block:: rust

pub fn raw_ptr_comparison(){
let v1: u32 = 1;
let v2: u32 = 2;
let ptr = &v2 as *const u32;
let ptr2 = (&v1 as *const u32).wrapping_offset(1);
if ptr == ptr2 {
println!("Same");
}
else{
println!("Not the same");
}
}

.. compliant_example::
:id: compl_ex_pBPeA9tBOnxj
:status: draft

This compliant example creates a mutable array of 16 bytes on the stack where all bytes are zero-initialized.
The entire array is one contiguous allocation.
The code creates a raw pointer ``p`` of type ``*const u8`` to the first element of the array (that is, ``buf[0]``).
The ptr ``p`` points at the start of the allocation.
The code then uses pointer arithmetic to compute a pointer ``q`` which points 4 elements past ``p``.
Because the element type is ``u8``, this means “4 bytes past ``p``\ ”.
The pointer arithmetic is safe as long as the resulting pointer stays within the same allocation (it does).
This is permitted because pointer arithmetic is allowed within the same allocated object.

Finally, the code compares the numerical address values of ``p`` and ``q``.
Pointer comparison is always allowed.
Comparing pointers from the same allocation is meaningful and defined.
Because ``p`` points to the beginning and ``q`` to a later part of the same array, ``same_block`` becomes ``true``.

.. code-block:: rust

let mut buf = [0u8; 16];
let p = buf.as_ptr();
let q = unsafe { p.add(4) };

let same_block = p < q; // ok: comparison within same allocation