This reverts commit 0f9c82f893b0bb8e91b78c5c17f8d1c8d452669e.
This commit is contained in:
parent
1556cba426
commit
620835a73f
@ -495,9 +495,6 @@ where
|
||||
monitor: MT,
|
||||
/// The configuration
|
||||
configuration: EventConfig,
|
||||
/// Consider this testcase as interesting always if true
|
||||
#[builder(default = false)]
|
||||
always_interesting: bool,
|
||||
/// The 'main' function to run for each client forked. This probably shouldn't return
|
||||
#[builder(default, setter(strip_option))]
|
||||
run_client: Option<CF>,
|
||||
@ -687,7 +684,6 @@ where
|
||||
|
||||
// Fuzzer client. keeps retrying the connection to broker till the broker starts
|
||||
let builder = RestartingMgr::<(), MT, S, SP>::builder()
|
||||
.always_interesting(self.always_interesting)
|
||||
.shmem_provider(self.shmem_provider.clone())
|
||||
.broker_port(self.broker_port)
|
||||
.kind(ManagerKind::Client {
|
||||
|
@ -43,7 +43,7 @@ use crate::{
|
||||
ProgressReporter,
|
||||
},
|
||||
executors::{Executor, HasObservers},
|
||||
fuzzer::{Evaluator, EvaluatorObservers, ExecutionProcessor},
|
||||
fuzzer::{EvaluatorObservers, ExecutionProcessor},
|
||||
inputs::{NopInput, UsesInput},
|
||||
observers::ObserversTuple,
|
||||
state::{HasExecutions, HasLastReportTime, NopState, State, UsesState},
|
||||
@ -59,8 +59,6 @@ where
|
||||
{
|
||||
/// We only send 1 testcase for every `throttle` second
|
||||
pub(crate) throttle: Option<Duration>,
|
||||
/// Treat the incoming testcase as interesting always without evaluating them
|
||||
always_interesting: bool,
|
||||
/// We sent last message at `last_sent`
|
||||
last_sent: Duration,
|
||||
hooks: EMH,
|
||||
@ -100,7 +98,6 @@ impl LlmpEventManager<(), NopState<NopInput>, NopShMemProvider> {
|
||||
pub struct LlmpEventManagerBuilder<EMH> {
|
||||
throttle: Option<Duration>,
|
||||
hooks: EMH,
|
||||
always_interesting: bool,
|
||||
}
|
||||
|
||||
impl Default for LlmpEventManagerBuilder<()> {
|
||||
@ -116,7 +113,6 @@ impl LlmpEventManagerBuilder<()> {
|
||||
Self {
|
||||
throttle: None,
|
||||
hooks: (),
|
||||
always_interesting: false,
|
||||
}
|
||||
}
|
||||
|
||||
@ -125,17 +121,6 @@ impl LlmpEventManagerBuilder<()> {
|
||||
LlmpEventManagerBuilder {
|
||||
throttle: self.throttle,
|
||||
hooks,
|
||||
always_interesting: self.always_interesting,
|
||||
}
|
||||
}
|
||||
|
||||
/// Set `always_interesting`
|
||||
#[must_use]
|
||||
pub fn always_interesting(self, always_interesting: bool) -> LlmpEventManagerBuilder<()> {
|
||||
LlmpEventManagerBuilder {
|
||||
throttle: self.throttle,
|
||||
hooks: self.hooks,
|
||||
always_interesting,
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -164,7 +149,6 @@ impl<EMH> LlmpEventManagerBuilder<EMH> {
|
||||
throttle: self.throttle,
|
||||
last_sent: Duration::from_secs(0),
|
||||
hooks: self.hooks,
|
||||
always_interesting: self.always_interesting,
|
||||
llmp,
|
||||
#[cfg(feature = "llmp_compression")]
|
||||
compressor: GzipCompressor::with_threshold(COMPRESS_THRESHOLD),
|
||||
@ -194,7 +178,6 @@ impl<EMH> LlmpEventManagerBuilder<EMH> {
|
||||
throttle: self.throttle,
|
||||
last_sent: Duration::from_secs(0),
|
||||
hooks: self.hooks,
|
||||
always_interesting: self.always_interesting,
|
||||
llmp,
|
||||
#[cfg(feature = "llmp_compression")]
|
||||
compressor: GzipCompressor::with_threshold(COMPRESS_THRESHOLD),
|
||||
@ -225,7 +208,6 @@ impl<EMH> LlmpEventManagerBuilder<EMH> {
|
||||
throttle: self.throttle,
|
||||
last_sent: Duration::from_secs(0),
|
||||
hooks: self.hooks,
|
||||
always_interesting: self.always_interesting,
|
||||
llmp,
|
||||
#[cfg(feature = "llmp_compression")]
|
||||
compressor: GzipCompressor::with_threshold(COMPRESS_THRESHOLD),
|
||||
@ -260,7 +242,6 @@ impl<EMH> LlmpEventManagerBuilder<EMH> {
|
||||
throttle: self.throttle,
|
||||
last_sent: Duration::from_secs(0),
|
||||
hooks: self.hooks,
|
||||
always_interesting: self.always_interesting,
|
||||
llmp,
|
||||
#[cfg(feature = "llmp_compression")]
|
||||
compressor: GzipCompressor::with_threshold(COMPRESS_THRESHOLD),
|
||||
@ -289,7 +270,6 @@ impl<EMH> LlmpEventManagerBuilder<EMH> {
|
||||
throttle: self.throttle,
|
||||
last_sent: Duration::from_secs(0),
|
||||
hooks: self.hooks,
|
||||
always_interesting: self.always_interesting,
|
||||
llmp,
|
||||
#[cfg(feature = "llmp_compression")]
|
||||
compressor: GzipCompressor::with_threshold(COMPRESS_THRESHOLD),
|
||||
@ -322,7 +302,6 @@ impl<EMH> LlmpEventManagerBuilder<EMH> {
|
||||
throttle: self.throttle,
|
||||
last_sent: Duration::from_secs(0),
|
||||
hooks: self.hooks,
|
||||
always_interesting: self.always_interesting,
|
||||
llmp,
|
||||
#[cfg(feature = "llmp_compression")]
|
||||
compressor: GzipCompressor::with_threshold(COMPRESS_THRESHOLD),
|
||||
@ -350,7 +329,6 @@ impl<EMH> LlmpEventManagerBuilder<EMH> {
|
||||
throttle: self.throttle,
|
||||
last_sent: Duration::from_secs(0),
|
||||
hooks: self.hooks,
|
||||
always_interesting: self.always_interesting,
|
||||
llmp,
|
||||
#[cfg(feature = "llmp_compression")]
|
||||
compressor: GzipCompressor::with_threshold(COMPRESS_THRESHOLD),
|
||||
@ -382,7 +360,6 @@ impl<EMH> LlmpEventManagerBuilder<EMH> {
|
||||
throttle: self.throttle,
|
||||
last_sent: Duration::from_secs(0),
|
||||
hooks: self.hooks,
|
||||
always_interesting: self.always_interesting,
|
||||
llmp,
|
||||
#[cfg(feature = "llmp_compression")]
|
||||
compressor: GzipCompressor::with_threshold(COMPRESS_THRESHOLD),
|
||||
@ -529,9 +506,7 @@ where
|
||||
where
|
||||
E: Executor<Self, Z> + HasObservers<State = S>,
|
||||
for<'a> E::Observers: Deserialize<'a>,
|
||||
Z: ExecutionProcessor<E::Observers, State = S>
|
||||
+ EvaluatorObservers<E::Observers>
|
||||
+ Evaluator<E, Self>,
|
||||
Z: ExecutionProcessor<E::Observers, State = S> + EvaluatorObservers<E::Observers>,
|
||||
{
|
||||
if !self.hooks.pre_exec_all(state, client_id, &event)? {
|
||||
return Ok(());
|
||||
@ -549,10 +524,6 @@ where
|
||||
} => {
|
||||
log::info!("Received new Testcase from {client_id:?} ({client_config:?}, forward {forward_id:?})");
|
||||
|
||||
if self.always_interesting {
|
||||
let item = fuzzer.add_input(state, executor, self, input)?;
|
||||
log::info!("Added received Testcase as item #{item}");
|
||||
} else {
|
||||
let res = if client_config.match_with(&self.configuration)
|
||||
&& observers_buf.is_some()
|
||||
{
|
||||
@ -568,9 +539,7 @@ where
|
||||
{
|
||||
state.scalability_monitor_mut().testcase_with_observers += 1;
|
||||
}
|
||||
fuzzer.execute_and_process(
|
||||
state, self, input, &observers, &exit_kind, false,
|
||||
)?
|
||||
fuzzer.execute_and_process(state, self, input, &observers, &exit_kind, false)?
|
||||
} else {
|
||||
#[cfg(feature = "scalability_introspection")]
|
||||
{
|
||||
@ -584,7 +553,6 @@ where
|
||||
log::info!("Added received Testcase as item #{item}");
|
||||
}
|
||||
}
|
||||
}
|
||||
Event::CustomBuf { tag, buf } => {
|
||||
for handler in &mut self.custom_buf_handlers {
|
||||
if handler(state, &tag, &buf)? == CustomBufEventResult::Handled {
|
||||
@ -718,9 +686,7 @@ where
|
||||
SP: ShMemProvider,
|
||||
E: HasObservers<State = S> + Executor<Self, Z>,
|
||||
for<'a> E::Observers: Deserialize<'a>,
|
||||
Z: ExecutionProcessor<E::Observers, State = S>
|
||||
+ EvaluatorObservers<E::Observers>
|
||||
+ Evaluator<E, Self>,
|
||||
Z: EvaluatorObservers<E::Observers, State = S> + ExecutionProcessor<E::Observers, State = S>,
|
||||
{
|
||||
fn process(
|
||||
&mut self,
|
||||
@ -766,9 +732,7 @@ where
|
||||
EMH: EventManagerHooksTuple<S>,
|
||||
S: State + HasExecutions + HasMetadata + HasLastReportTime,
|
||||
SP: ShMemProvider,
|
||||
Z: ExecutionProcessor<E::Observers, State = S>
|
||||
+ EvaluatorObservers<E::Observers>
|
||||
+ Evaluator<E, Self>,
|
||||
Z: EvaluatorObservers<E::Observers, State = S> + ExecutionProcessor<E::Observers, State = S>,
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -48,7 +48,7 @@ use crate::{
|
||||
LlmpEventManager, LlmpShouldSaveState, ProgressReporter,
|
||||
},
|
||||
executors::{Executor, HasObservers},
|
||||
fuzzer::{Evaluator, EvaluatorObservers, ExecutionProcessor},
|
||||
fuzzer::{EvaluatorObservers, ExecutionProcessor},
|
||||
inputs::UsesInput,
|
||||
monitors::Monitor,
|
||||
observers::ObserversTuple,
|
||||
@ -219,9 +219,7 @@ where
|
||||
EMH: EventManagerHooksTuple<S>,
|
||||
S: State + HasExecutions + HasMetadata,
|
||||
SP: ShMemProvider + 'static,
|
||||
Z: ExecutionProcessor<E::Observers, State = S>
|
||||
+ EvaluatorObservers<E::Observers>
|
||||
+ Evaluator<E, LlmpEventManager<EMH, S, SP>>,
|
||||
Z: EvaluatorObservers<E::Observers, State = S> + ExecutionProcessor<E::Observers>, //CE: CustomEvent<I>,
|
||||
{
|
||||
fn process(&mut self, fuzzer: &mut Z, state: &mut S, executor: &mut E) -> Result<usize, Error> {
|
||||
let res = self.llmp_mgr.process(fuzzer, state, executor)?;
|
||||
@ -238,9 +236,7 @@ where
|
||||
EMH: EventManagerHooksTuple<S>,
|
||||
S: State + HasExecutions + HasMetadata + HasLastReportTime,
|
||||
SP: ShMemProvider + 'static,
|
||||
Z: ExecutionProcessor<E::Observers, State = S>
|
||||
+ EvaluatorObservers<E::Observers>
|
||||
+ Evaluator<E, LlmpEventManager<EMH, S, SP>>,
|
||||
Z: EvaluatorObservers<E::Observers, State = S> + ExecutionProcessor<E::Observers>, //CE: CustomEvent<I>,
|
||||
{
|
||||
}
|
||||
|
||||
@ -406,9 +402,6 @@ where
|
||||
/// The shared memory provider to use for the broker or client spawned by the restarting
|
||||
/// manager.
|
||||
shmem_provider: SP,
|
||||
#[builder(default = false)]
|
||||
/// Consider this testcase as interesting always if true
|
||||
always_interesting: bool,
|
||||
/// The configuration
|
||||
configuration: EventConfig,
|
||||
/// The monitor to use
|
||||
@ -494,12 +487,10 @@ where
|
||||
LlmpConnection::IsClient { client } => {
|
||||
#[cfg(not(feature = "adaptive_serialization"))]
|
||||
let mgr: LlmpEventManager<EMH, S, SP> = LlmpEventManager::builder()
|
||||
.always_interesting(self.always_interesting)
|
||||
.hooks(self.hooks)
|
||||
.build_from_client(client, self.configuration)?;
|
||||
#[cfg(feature = "adaptive_serialization")]
|
||||
let mgr: LlmpEventManager<EMH, S, SP> = LlmpEventManager::builder()
|
||||
.always_interesting(self.always_interesting)
|
||||
.hooks(self.hooks)
|
||||
.build_from_client(
|
||||
client,
|
||||
@ -524,7 +515,6 @@ where
|
||||
// We are a client
|
||||
#[cfg(not(feature = "adaptive_serialization"))]
|
||||
let mgr = LlmpEventManager::builder()
|
||||
.always_interesting(self.always_interesting)
|
||||
.hooks(self.hooks)
|
||||
.build_on_port(
|
||||
self.shmem_provider.clone(),
|
||||
@ -533,7 +523,6 @@ where
|
||||
)?;
|
||||
#[cfg(feature = "adaptive_serialization")]
|
||||
let mgr = LlmpEventManager::builder()
|
||||
.always_interesting(self.always_interesting)
|
||||
.hooks(self.hooks)
|
||||
.build_on_port(
|
||||
self.shmem_provider.clone(),
|
||||
|
Loading…
x
Reference in New Issue
Block a user