Check -M / -S is not specified with -A

Signed-off-by: Akira Moroo <retrage01@gmail.com>
This commit is contained in:
Akira Moroo 2021-11-15 02:15:58 +00:00
parent feff8191ec
commit d4a0fd41cd

View File

@ -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;