-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fuzz hashing collections with interior mutability
- Loading branch information
Showing
4 changed files
with
180 additions
and
3 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
Empty file.
158 changes: 158 additions & 0 deletions
158
crates/test-fuzz/fuzz_targets/collection_interior_mut.rs
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,158 @@ | ||
//! Fuzz hashing collection operations with interior mutability. | ||
//! | ||
//! This is explicitly not done with any form of oracle, since while this is | ||
//! not language-level undefined behaviour, the behaviour is not specified. | ||
#![cfg_attr(not(feature = "afl"), no_main)] | ||
use std::cell::Cell; | ||
use std::hint::black_box; | ||
|
||
use arbitrary::Arbitrary; | ||
use objc2::rc::{autoreleasepool, Id, Retained}; | ||
use objc2::runtime::{AnyObject, ProtocolObject}; | ||
use objc2::{declare_class, msg_send_id, mutability, ClassType, DeclaredClass}; | ||
use objc2_foundation::{ | ||
NSCopying, NSMutableDictionary, NSMutableSet, NSObject, NSUInteger, NSZone, | ||
}; | ||
|
||
/// Index into the global "keys" array. | ||
type KeyIndex = u8; | ||
|
||
/// The operations that the fuzzer can do on a set and the keys within. | ||
#[derive(Arbitrary, Debug)] | ||
enum Operation { | ||
/// count | ||
Count, | ||
/// member: / objectForKey: | ||
Get(KeyIndex), | ||
/// objectEnumerator / keyEnumerator | ||
Enumerate, | ||
/// addObject: / setObject:forKey: | ||
Add(KeyIndex), | ||
/// removeObject: / removeObjectForKey: | ||
Remove(KeyIndex), | ||
|
||
/// Set the hash value of a key. | ||
SetHash(KeyIndex, NSUInteger), | ||
/// Set which other key masks this key is equal to. | ||
SetEqualToMask(KeyIndex, u8), | ||
} | ||
|
||
struct KeyIvars { | ||
index: KeyIndex, | ||
hash: Cell<usize>, | ||
equal_to_mask: Cell<u8>, | ||
} | ||
|
||
declare_class!( | ||
struct Key; | ||
|
||
unsafe impl ClassType for Key { | ||
type Super = NSObject; | ||
// Intentionally `Immutable` to see what breaks if we allow mutation. | ||
type Mutability = mutability::Immutable; | ||
const NAME: &'static str = "Key"; | ||
} | ||
|
||
impl DeclaredClass for Key { | ||
type Ivars = KeyIvars; | ||
} | ||
|
||
unsafe impl Key { | ||
#[method(isEqual:)] | ||
fn is_equal(&self, other: &AnyObject) -> bool { | ||
assert_eq!(other.class(), Self::class()); | ||
let other: *const AnyObject = other; | ||
let other: *const Self = other.cast(); | ||
// SAFETY: Just checked that the object is of this class | ||
let other: &Self = unsafe { &*other }; | ||
|
||
(other.ivars().index & self.ivars().equal_to_mask.get()) != 0 | ||
} | ||
|
||
#[method(hash)] | ||
fn hash_(&self) -> NSUInteger { | ||
self.ivars().hash.get() | ||
} | ||
} | ||
|
||
unsafe impl NSCopying for Key { | ||
#[method_id(copyWithZone:)] | ||
fn copy_with_zone(&self, _zone: *mut NSZone) -> Retained<Self> { | ||
self.retain() | ||
} | ||
} | ||
); | ||
|
||
impl Key { | ||
fn new(index: KeyIndex) -> Retained<Self> { | ||
let key = Key::alloc().set_ivars(KeyIvars { | ||
index, | ||
hash: Cell::new(0), | ||
equal_to_mask: Cell::new(0), | ||
}); | ||
unsafe { msg_send_id![super(key), init] } | ||
} | ||
|
||
fn validate(&self) { | ||
black_box(self.ivars().index); | ||
black_box(self.ivars().hash.get()); | ||
} | ||
} | ||
|
||
fn run(ops: Vec<Operation>) { | ||
let keys: Vec<_> = (0..=KeyIndex::MAX).map(Key::new).collect(); | ||
let key = |idx: KeyIndex| -> &Key { &keys[idx as usize] }; | ||
|
||
let mut set: Id<NSMutableSet<Key>> = NSMutableSet::new(); | ||
let mut dict: Id<NSMutableDictionary<Key, NSObject>> = NSMutableDictionary::new(); | ||
|
||
for op in ops { | ||
autoreleasepool(|_| match op { | ||
Operation::Count => { | ||
set.count(); | ||
dict.count(); | ||
} | ||
Operation::Get(idx) => { | ||
unsafe { set.member(key(idx)) }; | ||
unsafe { dict.objectForKey(key(idx)) }; | ||
} | ||
Operation::Enumerate => { | ||
for key in unsafe { set.objectEnumerator() } { | ||
key.validate(); | ||
} | ||
for key in &set { | ||
key.validate(); | ||
} | ||
for key in unsafe { dict.keyEnumerator() } { | ||
key.validate(); | ||
} | ||
} | ||
Operation::Add(idx) => { | ||
unsafe { set.addObject(key(idx)) }; | ||
unsafe { | ||
dict.setObject_forKey(&NSObject::new(), ProtocolObject::from_ref(key(idx))) | ||
}; | ||
} | ||
Operation::Remove(idx) => { | ||
unsafe { set.removeObject(key(idx)) }; | ||
dict.removeObjectForKey(key(idx)); | ||
} | ||
Operation::SetHash(idx, hash) => { | ||
key(idx).ivars().hash.set(hash); | ||
} | ||
Operation::SetEqualToMask(idx, equal_to_mask) => { | ||
key(idx).ivars().equal_to_mask.set(equal_to_mask); | ||
} | ||
}); | ||
} | ||
} | ||
|
||
#[cfg(not(feature = "afl"))] | ||
libfuzzer_sys::fuzz_target!(|ops: Vec<Operation>| run(ops)); | ||
|
||
#[cfg(feature = "afl")] | ||
fn main() { | ||
afl::fuzz!(|ops: Vec<Operation>| { | ||
run(ops); | ||
}); | ||
} |