mirror of
https://github.com/openssl/openssl.git
synced 2025-01-30 14:01:55 +08:00
speed: range check the argument given to -multi
For machines where sizeof(size_t) == sizeof(int) there is a possible overflow which could cause a crash. For machines where sizeof(size_t) > sizeof(int), the existing checks adequately detect the situation. Fixes #16899 Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/16904)
This commit is contained in:
parent
089df6f135
commit
7220085f22
@ -1540,6 +1540,10 @@ int speed_main(int argc, char **argv)
|
||||
case OPT_MULTI:
|
||||
#ifndef NO_FORK
|
||||
multi = atoi(opt_arg());
|
||||
if ((size_t)multi >= SIZE_MAX / sizeof(int)) {
|
||||
BIO_printf(bio_err, "%s: multi argument too large\n", prog);
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
break;
|
||||
case OPT_ASYNCJOBS:
|
||||
|
Loading…
Reference in New Issue
Block a user