diff options
author | Matt Johnston <matt@ucc.asn.au> | 2018-02-28 22:10:43 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2018-02-28 22:10:43 +0800 |
commit | 5ebc48b3f231fa7628ab7f0bea56574c8359dbd5 (patch) | |
tree | 3690f866dced88cefdfc42c38acccddd3e43bdec | |
parent | 5f2447edbb04dff504396e426268fbaf83fa6bca (diff) |
clean some fuzzing conditionals
--HG--
branch : fuzz
-rw-r--r-- | dbrandom.c | 6 | ||||
-rw-r--r-- | fuzz.h | 3 | ||||
-rw-r--r-- | svr-auth.c | 7 |
3 files changed, 6 insertions, 10 deletions
@@ -146,7 +146,7 @@ void addrandom(const unsigned char * buf, unsigned int len) hash_state hs; #if DROPBEAR_FUZZ - if (fuzz.fuzzing || fuzz.recordf) { + if (fuzz.fuzzing) { return; } #endif @@ -164,7 +164,7 @@ void addrandom(const unsigned char * buf, unsigned int len) static void write_urandom() { #if DROPBEAR_FUZZ - if (fuzz.fuzzing || fuzz.recordf) { + if (fuzz.fuzzing) { return; } #endif @@ -204,7 +204,7 @@ void seedrandom() { clock_t clockval; #if DROPBEAR_FUZZ - if (fuzz.fuzzing || fuzz.recordf) { + if (fuzz.fuzzing) { return; } #endif @@ -43,9 +43,6 @@ void fuzz_fake_send_kexdh_reply(void); struct dropbear_fuzz_options { int fuzzing; - // to record an unencrypted stream - FILE* recordf; - // fuzzing input buffer *input; struct dropbear_cipher recv_cipher; @@ -396,12 +396,11 @@ void send_msg_userauth_failure(int partial, int incrfail) { /* We delay for 300ms +- 50ms */ delay = 250000 + (delay % 100000); #if DROPBEAR_FUZZ - if (!fuzz.fuzzing) { + if (!fuzz.fuzzing) +#endif + { usleep(delay); } -#else - usleep(delay); -#endif ses.authstate.failcount++; } |