mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-08 16:21:32 +00:00
Check -M
/ -S
is not specified with -A
Signed-off-by: Akira Moroo <retrage01@gmail.com>
This commit is contained in:
parent
feff8191ec
commit
d4a0fd41cd
@ -565,6 +565,12 @@ int main(int argc, char **argv_orig, char **envp) {
|
||||
|
||||
}
|
||||
|
||||
if (afl->fsrv.cs_mode) {
|
||||
|
||||
FATAL("-M is not supported in ARM CoreSight mode");
|
||||
|
||||
}
|
||||
|
||||
if (afl->sync_id) { FATAL("Multiple -S or -M options not supported"); }
|
||||
|
||||
/* sanity check for argument: should not begin with '-' (possible
|
||||
@ -611,6 +617,12 @@ int main(int argc, char **argv_orig, char **envp) {
|
||||
|
||||
}
|
||||
|
||||
if (afl->fsrv.cs_mode) {
|
||||
|
||||
FATAL("-S is not supported in ARM CoreSight mode");
|
||||
|
||||
}
|
||||
|
||||
if (afl->sync_id) { FATAL("Multiple -S or -M options not supported"); }
|
||||
|
||||
/* sanity check for argument: should not begin with '-' (possible
|
||||
@ -833,6 +845,12 @@ int main(int argc, char **argv_orig, char **envp) {
|
||||
FATAL("-A option is not supported on this platform");
|
||||
#endif
|
||||
|
||||
if (afl->is_main_node || afl->is_secondary_node) {
|
||||
|
||||
FATAL("ARM CoreSight mode is not supported with -M / -S");
|
||||
|
||||
}
|
||||
|
||||
if (afl->fsrv.cs_mode) { FATAL("Multiple -A options not supported"); }
|
||||
|
||||
afl->fsrv.cs_mode = 1;
|
||||
|
Loading…
x
Reference in New Issue
Block a user