-
-
Notifications
You must be signed in to change notification settings - Fork 351
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
Remove all Uses* #2438
Remove all Uses* #2438
Conversation
FWIW this is undoing #767 pretty much exactly |
Yup -- realised some time ago that it wasn't doing what we wanted. |
@addisoncrump if you haven't already, feel free to ignore #2442 |
Low-key very excited for this #roadto1.0 |
Note to self: HasSolutions should not require HasCorpus because a) the inputs might differ (unlikely) or b) the state may not have a corpus (for generative fuzzers). |
default features now build! (but with lots of things commented out) |
42670b2
to
308a2c1
Compare
* aaa * calibrate * wip * add all * last bit * a * aa * some changes * aaa * mutator DONE * aa * fix * rename * aa * aa * aa * add * fix
pub trait ProgressReporter: EventFirer | ||
/// Default implementation of [`ProgressReporter::maybe_report_progress`] for implementors with the | ||
/// given constraints | ||
pub fn default_maybe_report_progress<PR, S>( |
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.
std
instead of default
? That's our naming scheme in the repo so far (because Default is heavily abused in Rust already)
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.
👍 Makes sense
libafl/src/events/mod.rs
Outdated
/// [`CustomBufHandlerTuple`] in the associated `handlers` parameter for your event manager. You may | ||
/// then use [`SupportsDynamicHandlers::add_custom_buf_handler`]. | ||
#[deprecated( | ||
note = "Using function pointers may limit your ability to use some stages due to type conflicts regarding the state" |
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.
Why deprecate?
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.
We should only deprecate stuff we want to drop, do we want to drop this? What's an example for such a type conflict?
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.
Because it is both potentially restrictive and bad practice. Deprecation is the only means by which we can communicate that to both new and old codebases at compile time.
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.
Why is it bad? If ppl want to use it and we support it we should not deprecate
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.
Or we don't support it anymore, then we should put a version into the deprecation note and remove it later
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 really want to delete this custom buf, it just offers the similar functionality as event hooks. so no reason to keep 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.
i really want to delete this custom buf, it just offers the similar functionality as event hooks. so no reason to keep it
If there is truly no functionality you cannot accomplish with event hooks instead, then I agree that all custom buf handlers should be removed. @domenukk for reference, you are the person who has the most use of this functionality iirc
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.
one thing is that is possible to custombuf only is that eventhook is static. so you can not add anything at runtime.
but do you really want to add something to change the behavior of the event manager? at runtime?
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 would say "no", but historically @domenukk has disagreed. Apparently some people do some strange dynamic 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.
Apart from being able to add and remove hooks on the fly, another benefit is that that dynamic buffers can be closures, static event hooks can not(I think?)
Capturing values takes away some headaches.
But yeah if you all want it gone we can remove it and worst case bring it back in the future...
@@ -522,27 +466,25 @@ impl CommandExecutorBuilder { | |||
command.stderr(Stdio::piped()); | |||
} | |||
|
|||
let configurator = StdCommandConfigurator { | |||
let configurer = StdCommandConfigurator { |
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.
typo (or we need to change the type name too)
OTA: ObserversTuple<<Self as UsesState>::State>, | ||
OTB: ObserversTuple<<Self as UsesState>::State>, | ||
DOT: DifferentialObserversTuple<OTA, OTB, <Self as UsesState>::State>, | ||
{ |
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.
Not really related, but can we add a // Safetly
comment below on why the unsafe
in fn observers
is safe?
E::State: HasExecutions + HasSolutions + HasCorpus, | ||
Z: HasObjective<Objective = OF, State = E::State>, | ||
{ | ||
pub fn new<EM, I, S, Z>(exec_tmout: Duration) -> Result<Self, Error> { |
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.
beautiful
* add * 60% done? * push * new trait * add canserializeobserver * push
* add * more constraints
Uses*
constrains type definitions to a single type. This either (a) forces us to use PhantomData where we probably shouldn't, or (b) overconstrains us to the same type when it isn't necessary.This initial PR removes all
Uses*
-like traits in favour of a more considered approach to type consistency.