Skip to content

Commit 67fd305

Browse files
committed
[PAC] Add unit tests for sip hash
1 parent f619018 commit 67fd305

6 files changed

Lines changed: 152 additions & 15 deletions

File tree

compiler/rustc_middle/src/ptrauth/discriminator.rs

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ The computation is structured into three conceptual stages:
4848
4949
- High-level API
5050
- `FnPtrDiscriminatorSource`
51-
- `compute_fn_ptr_type_discriminator_for`
52-
- `clone_discriminated_ptrauth_schema_for`
51+
- `ptrauth_compute_fn_ptr_type_discriminator_for`
52+
- `ptrauth_clone_discriminated_schema_for`
5353
5454
- Low-level API
5555
- `FnPtrTypeDiscriminatorInput`
@@ -163,7 +163,10 @@ impl<'tcx> FnPtrDiscriminatorSource<'tcx> for ty::FnSig<'tcx> {
163163
///
164164
/// Returns `None` if the supplied source does not represent a function pointer
165165
/// type (for example, a non-function `Ty`).
166-
pub fn compute_fn_ptr_type_discriminator_for<'tcx, S>(tcx: TyCtxt<'tcx>, source: S) -> Option<u16>
166+
pub fn ptrauth_compute_fn_ptr_type_discriminator_for<'tcx, S>(
167+
tcx: TyCtxt<'tcx>,
168+
source: S,
169+
) -> Option<u16>
167170
where
168171
S: FnPtrDiscriminatorSource<'tcx>,
169172
{
@@ -184,7 +187,7 @@ where
184187
/// This is intended as a convenience helper for code generation sites that need
185188
/// to attach function pointer type discrimination to a generic schema before
186189
/// calling `get_fn_addr`.
187-
pub fn clone_discriminated_ptrauth_schema_for<'tcx, S>(
190+
pub fn ptrauth_clone_discriminated_schema_for<'tcx, S>(
188191
tcx: TyCtxt<'tcx>,
189192
mut schema: Option<PointerAuthSchema>,
190193
source: S,
@@ -193,7 +196,7 @@ where
193196
S: FnPtrDiscriminatorSource<'tcx>,
194197
{
195198
if let Some(ref mut s) = schema {
196-
if let Some(disc) = compute_fn_ptr_type_discriminator_for(tcx, source) {
199+
if let Some(disc) = ptrauth_compute_fn_ptr_type_discriminator_for(tcx, source) {
197200
s.constant_discriminator = disc;
198201
}
199202
}
Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
pub(super) const TEST_KEY: [u8; 16] = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15];
2+
3+
pub(super) const EXPECTED64: [[u8; 8]; 64] = [
4+
[0x31, 0x0e, 0x0e, 0xdd, 0x47, 0xdb, 0x6f, 0x72],
5+
[0xfd, 0x67, 0xdc, 0x93, 0xc5, 0x39, 0xf8, 0x74],
6+
[0x5a, 0x4f, 0xa9, 0xd9, 0x09, 0x80, 0x6c, 0x0d],
7+
[0x2d, 0x7e, 0xfb, 0xd7, 0x96, 0x66, 0x67, 0x85],
8+
[0xb7, 0x87, 0x71, 0x27, 0xe0, 0x94, 0x27, 0xcf],
9+
[0x8d, 0xa6, 0x99, 0xcd, 0x64, 0x55, 0x76, 0x18],
10+
[0xce, 0xe3, 0xfe, 0x58, 0x6e, 0x46, 0xc9, 0xcb],
11+
[0x37, 0xd1, 0x01, 0x8b, 0xf5, 0x00, 0x02, 0xab],
12+
[0x62, 0x24, 0x93, 0x9a, 0x79, 0xf5, 0xf5, 0x93],
13+
[0xb0, 0xe4, 0xa9, 0x0b, 0xdf, 0x82, 0x00, 0x9e],
14+
[0xf3, 0xb9, 0xdd, 0x94, 0xc5, 0xbb, 0x5d, 0x7a],
15+
[0xa7, 0xad, 0x6b, 0x22, 0x46, 0x2f, 0xb3, 0xf4],
16+
[0xfb, 0xe5, 0x0e, 0x86, 0xbc, 0x8f, 0x1e, 0x75],
17+
[0x90, 0x3d, 0x84, 0xc0, 0x27, 0x56, 0xea, 0x14],
18+
[0xee, 0xf2, 0x7a, 0x8e, 0x90, 0xca, 0x23, 0xf7],
19+
[0xe5, 0x45, 0xbe, 0x49, 0x61, 0xca, 0x29, 0xa1],
20+
[0xdb, 0x9b, 0xc2, 0x57, 0x7f, 0xcc, 0x2a, 0x3f],
21+
[0x94, 0x47, 0xbe, 0x2c, 0xf5, 0xe9, 0x9a, 0x69],
22+
[0x9c, 0xd3, 0x8d, 0x96, 0xf0, 0xb3, 0xc1, 0x4b],
23+
[0xbd, 0x61, 0x79, 0xa7, 0x1d, 0xc9, 0x6d, 0xbb],
24+
[0x98, 0xee, 0xa2, 0x1a, 0xf2, 0x5c, 0xd6, 0xbe],
25+
[0xc7, 0x67, 0x3b, 0x2e, 0xb0, 0xcb, 0xf2, 0xd0],
26+
[0x88, 0x3e, 0xa3, 0xe3, 0x95, 0x67, 0x53, 0x93],
27+
[0xc8, 0xce, 0x5c, 0xcd, 0x8c, 0x03, 0x0c, 0xa8],
28+
[0x94, 0xaf, 0x49, 0xf6, 0xc6, 0x50, 0xad, 0xb8],
29+
[0xea, 0xb8, 0x85, 0x8a, 0xde, 0x92, 0xe1, 0xbc],
30+
[0xf3, 0x15, 0xbb, 0x5b, 0xb8, 0x35, 0xd8, 0x17],
31+
[0xad, 0xcf, 0x6b, 0x07, 0x63, 0x61, 0x2e, 0x2f],
32+
[0xa5, 0xc9, 0x1d, 0xa7, 0xac, 0xaa, 0x4d, 0xde],
33+
[0x71, 0x65, 0x95, 0x87, 0x66, 0x50, 0xa2, 0xa6],
34+
[0x28, 0xef, 0x49, 0x5c, 0x53, 0xa3, 0x87, 0xad],
35+
[0x42, 0xc3, 0x41, 0xd8, 0xfa, 0x92, 0xd8, 0x32],
36+
[0xce, 0x7c, 0xf2, 0x72, 0x2f, 0x51, 0x27, 0x71],
37+
[0xe3, 0x78, 0x59, 0xf9, 0x46, 0x23, 0xf3, 0xa7],
38+
[0x38, 0x12, 0x05, 0xbb, 0x1a, 0xb0, 0xe0, 0x12],
39+
[0xae, 0x97, 0xa1, 0x0f, 0xd4, 0x34, 0xe0, 0x15],
40+
[0xb4, 0xa3, 0x15, 0x08, 0xbe, 0xff, 0x4d, 0x31],
41+
[0x81, 0x39, 0x62, 0x29, 0xf0, 0x90, 0x79, 0x02],
42+
[0x4d, 0x0c, 0xf4, 0x9e, 0xe5, 0xd4, 0xdc, 0xca],
43+
[0x5c, 0x73, 0x33, 0x6a, 0x76, 0xd8, 0xbf, 0x9a],
44+
[0xd0, 0xa7, 0x04, 0x53, 0x6b, 0xa9, 0x3e, 0x0e],
45+
[0x92, 0x59, 0x58, 0xfc, 0xd6, 0x42, 0x0c, 0xad],
46+
[0xa9, 0x15, 0xc2, 0x9b, 0xc8, 0x06, 0x73, 0x18],
47+
[0x95, 0x2b, 0x79, 0xf3, 0xbc, 0x0a, 0xa6, 0xd4],
48+
[0xf2, 0x1d, 0xf2, 0xe4, 0x1d, 0x45, 0x35, 0xf9],
49+
[0x87, 0x57, 0x75, 0x19, 0x04, 0x8f, 0x53, 0xa9],
50+
[0x10, 0xa5, 0x6c, 0xf5, 0xdf, 0xcd, 0x9a, 0xdb],
51+
[0xeb, 0x75, 0x09, 0x5c, 0xcd, 0x98, 0x6c, 0xd0],
52+
[0x51, 0xa9, 0xcb, 0x9e, 0xcb, 0xa3, 0x12, 0xe6],
53+
[0x96, 0xaf, 0xad, 0xfc, 0x2c, 0xe6, 0x66, 0xc7],
54+
[0x72, 0xfe, 0x52, 0x97, 0x5a, 0x43, 0x64, 0xee],
55+
[0x5a, 0x16, 0x45, 0xb2, 0x76, 0xd5, 0x92, 0xa1],
56+
[0xb2, 0x74, 0xcb, 0x8e, 0xbf, 0x87, 0x87, 0x0a],
57+
[0x6f, 0x9b, 0xb4, 0x20, 0x3d, 0xe7, 0xb3, 0x81],
58+
[0xea, 0xec, 0xb2, 0xa3, 0x0b, 0x22, 0xa8, 0x7f],
59+
[0x99, 0x24, 0xa4, 0x3c, 0xc1, 0x31, 0x57, 0x24],
60+
[0xbd, 0x83, 0x8d, 0x3a, 0xaf, 0xbf, 0x8d, 0xb7],
61+
[0x0b, 0x1a, 0x2a, 0x32, 0x65, 0xd5, 0x1a, 0xea],
62+
[0x13, 0x50, 0x79, 0xa3, 0x23, 0x1c, 0xe6, 0x60],
63+
[0x93, 0x2b, 0x28, 0x46, 0xe4, 0xd7, 0x06, 0x66],
64+
[0xe1, 0x91, 0x5f, 0x5c, 0xb1, 0xec, 0xa4, 0x6c],
65+
[0xf3, 0x25, 0x96, 0x5c, 0xa1, 0x6d, 0x62, 0x9f],
66+
[0x57, 0x5f, 0xf2, 0x8e, 0x60, 0x38, 0x1b, 0xe5],
67+
[0x72, 0x45, 0x06, 0xeb, 0x4c, 0x32, 0x8a, 0x95],
68+
];

compiler/rustc_middle/src/ptrauth/llvm_siphash.rs renamed to compiler/rustc_middle/src/ptrauth/llvm_siphash/mod.rs

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// LLVM SipHash-2-4
1+
// LLVM SipHash-2-4 (64 bit version)
22
pub fn llvm_pointer_auth_stable_siphash(data: &[u8]) -> u16 {
33
let raw = llvm_siphash_2_4_64(data);
44

@@ -91,10 +91,9 @@ fn load_u64_partial(bytes: &[u8]) -> u64 {
9191
b
9292
}
9393

94-
// LLVM siphash<2,4> 64-bit output
95-
fn llvm_siphash_2_4_64(data: &[u8]) -> u64 {
96-
let k0 = u64_from_le(&SIPHASH_KEY[0..8]);
97-
let k1 = u64_from_le(&SIPHASH_KEY[8..16]);
94+
fn siphash_2_4_64_with_key(data: &[u8], key: &[u8; 16]) -> u64 {
95+
let k0 = u64_from_le(&key[0..8]);
96+
let k1 = u64_from_le(&key[8..16]);
9897

9998
let mut v0: u64 = 0x736f6d6570736575 ^ k0;
10099
let mut v1: u64 = 0x646f72616e646f6d ^ k1;
@@ -140,3 +139,13 @@ fn llvm_siphash_2_4_64(data: &[u8]) -> u64 {
140139

141140
v0 ^ v1 ^ v2 ^ v3
142141
}
142+
// LLVM siphash<2,4> 64-bit output
143+
fn llvm_siphash_2_4_64(data: &[u8]) -> u64 {
144+
siphash_2_4_64_with_key(data, &SIPHASH_KEY)
145+
}
146+
147+
#[cfg(test)]
148+
mod llvm_siphash_vectors;
149+
150+
#[cfg(test)]
151+
mod tests;
Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
use llvm_siphash_vectors::{EXPECTED64, TEST_KEY};
2+
3+
use super::*;
4+
5+
// These tests mirror the SipHash tests from LLVM's Support/SipHashTest.cpp.
6+
// The implementation here is a faithful Rust translation of the LLVM 64-bit
7+
// SipHash-2-4 implementation used for pointer authentication discriminators.
8+
//
9+
// TEST_KEY and EXPECTED64 are copied from the upstream SipHash reference
10+
// vectors. Keeping these values identical ensures that the Rust implementation
11+
// produces the same SipHash output as LLVM.
12+
//
13+
// Run with:
14+
// x.py test compiler/rustc_middle --test-args siphash
15+
16+
#[test]
17+
fn siphash24_reference_vectors_64() {
18+
// Validate the SipHash-2-4 implementation against the upstream SipHash
19+
// reference vectors.
20+
//
21+
// Each input is the byte sequence [0, 1, ..., len-1] and is hashed using
22+
// the reference key TEST_KEY ([0, 1, ..., 15]). The expected values are
23+
// compared byte-for-byte with the LLVM reference implementation output
24+
// (EXPECTED64).
25+
//
26+
// This test verifies the correctness of the SipHash primitive itself,
27+
// independently of the pointer authentication discriminator logic.
28+
let mut input = [0u8; 64];
29+
30+
for len in 0..EXPECTED64.len() {
31+
input[len] = len as u8;
32+
33+
let hash = siphash_2_4_64_with_key(&input[..len], &TEST_KEY);
34+
35+
assert_eq!(hash.to_le_bytes(), EXPECTED64[len]);
36+
}
37+
}
38+
39+
#[test]
40+
fn pointer_auth_stable_siphash() {
41+
// Validate the rustc pointer-authentication SipHash wrapper against the
42+
// values used by the LLVM implementation.
43+
//
44+
// The returned value is a 16-bit discriminator derived from the stable
45+
// SipHash-2-4 output.
46+
assert_eq!(llvm_pointer_auth_stable_siphash(b""), 0xE793);
47+
assert_eq!(llvm_pointer_auth_stable_siphash(b"strlen"), 0xF468);
48+
assert_eq!(llvm_pointer_auth_stable_siphash(b"_ZN1 ind; f"), 0x2D15);
49+
assert_eq!(llvm_pointer_auth_stable_siphash(b"isa"), 0x6AE1);
50+
assert_eq!(llvm_pointer_auth_stable_siphash(b"objc_class:superclass"), 0xB5AB,);
51+
assert_eq!(llvm_pointer_auth_stable_siphash(b"block_descriptor"), 0xC0BB,);
52+
assert_eq!(llvm_pointer_auth_stable_siphash(b"method_list_t"), 0xC310,);
53+
assert_eq!(llvm_pointer_auth_stable_siphash(b"_Zptrkvttf"), 1);
54+
assert_eq!(llvm_pointer_auth_stable_siphash(b"_Zaflhllod"), 0xFFFF);
55+
}

compiler/rustc_middle/src/ptrauth/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ pub mod discriminator;
22
pub mod llvm_siphash;
33

44
pub use discriminator::{
5-
FnPtrDiscriminatorSource, FnPtrTypeDiscriminatorInput, clone_discriminated_ptrauth_schema_for,
6-
compute_fn_ptr_type_discriminator_for,
5+
FnPtrDiscriminatorSource, FnPtrTypeDiscriminatorInput, ptrauth_clone_discriminated_schema_for,
6+
ptrauth_compute_fn_ptr_type_discriminator_for,
77
};

src/doc/rustc/src/platform-support/aarch64-unknown-linux-pauthtest.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -474,18 +474,20 @@ The following categories are supported (all present in tree):
474474
* invalid_target_pointer_authentication.rs
475475
* type_discrimination_not_supported_pointer_authentication.rs
476476
* incompatible_pauth.rs
477+
* Unit tests for siphash function:
478+
* compiler/rustc_middle/src/ptrauth/llvm_siphash/tests.rs
477479

478480
All tests from `assembly-llvm`, `codegen-llvm`, `codegen-units`, `coverage`,
479-
`crashes`, `incremental`, `library`, `mir-opt`, `run-make`, `ui` and
480-
`ui-fulldeps` subsets are expected to pass.
481+
`crashes`, `incremental`, `library`, `mir-opt`, `run-make`, `rust_middle` `ui`
482+
and `ui-fulldeps` subsets are expected to pass.
481483

482484
Command to run all passing tests (with tests added by this target explicitly
483485
named for convenience):
484486

485487
```sh
486488
x.py test --target aarch64-unknown-linux-pauthtest --force-rerun assembly-llvm \
487489
codegen-llvm codegen-units coverage crashes incremental library mir-opt \
488-
run-make ui ui-fulldeps \
490+
run-make rust_middle ui ui-fulldeps \
489491
tests/assembly-llvm/pauth-basic.rs \
490492
tests/codegen-llvm/pauth/pauth-attr-cli-flags.rs \
491493
tests/codegen-llvm/pauth/pauth-attr-special-funcs.rs \

0 commit comments

Comments
 (0)