-
Notifications
You must be signed in to change notification settings - Fork 12.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Check alignment of pointers only when read/written through
- Loading branch information
Showing
10 changed files
with
142 additions
and
58 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// run-fail | ||
// ignore-wasm32-bare: No panic messages | ||
// ignore-i686-pc-windows-msvc: #112480 | ||
// compile-flags: -C debug-assertions | ||
// error-pattern: misaligned pointer dereference: address must be a multiple of 0x4 but is | ||
|
||
fn main() { | ||
let mut x = [0u32; 2]; | ||
let ptr = x.as_mut_ptr(); | ||
unsafe { | ||
let _v = *(ptr.byte_add(1)); | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// run-pass | ||
// compile-flags: -C debug-assertions | ||
|
||
#![feature(strict_provenance, pointer_is_aligned)] | ||
|
||
#[repr(packed)] | ||
struct Misaligner { | ||
_head: u8, | ||
tail: u64, | ||
} | ||
|
||
fn main() { | ||
let memory = [Misaligner { _head: 0, tail: 0}, Misaligner { _head: 0, tail: 0}]; | ||
// Test that we can use addr_of! to get the address of a packed member which according to its | ||
// type is not aligned, but because it is a projection from a packed type is a valid place. | ||
let ptr0 = std::ptr::addr_of!(memory[0].tail); | ||
let ptr1 = std::ptr::addr_of!(memory[0].tail); | ||
// Even if ptr0 happens to be aligned by chance, ptr1 is not. | ||
assert!(!ptr0.is_aligned() || !ptr1.is_aligned()); | ||
|
||
// And also test that we can get the addr of a packed struct then do a member read from it. | ||
unsafe { | ||
let ptr = std::ptr::addr_of!(memory[0]); | ||
let _tail = (*ptr).tail; | ||
|
||
let ptr = std::ptr::addr_of!(memory[1]); | ||
let _tail = (*ptr).tail; | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// run-pass | ||
// compile-flags: -C debug-assertions | ||
|
||
#[repr(align(8))] | ||
struct Misalignment { | ||
a: u8, | ||
} | ||
|
||
fn main() { | ||
let mem = 0u64; | ||
let ptr = &mem as *const u64 as *const Misalignment; | ||
unsafe { | ||
let ptr = ptr.byte_add(1); | ||
let _ref: &u8 = &(*ptr).a; | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// run-pass | ||
// compile-flags: -C debug-assertions | ||
|
||
fn main() { | ||
let ptr = 1 as *const u16; | ||
unsafe { | ||
let _ = *ptr; | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// run-fail | ||
// ignore-wasm32-bare: No panic messages | ||
// ignore-i686-pc-windows-msvc: #112480 | ||
// compile-flags: -C debug-assertions | ||
// error-pattern: misaligned pointer dereference: address must be a multiple of 0x4 but is | ||
|
||
fn main() { | ||
let x = [0u32; 2]; | ||
let ptr = x.as_ptr(); | ||
let mut dest = 0u32; | ||
let dest_ptr = &mut dest as *mut u32; | ||
unsafe { | ||
*dest_ptr = *(ptr.byte_add(1)); | ||
} | ||
} |