From 8e495f00cded86496ad5c32e7a3cf902a8bdbe82 Mon Sep 17 00:00:00 2001 From: Roman Smirnov Date: Fri, 5 Jul 2024 10:57:06 +0300 Subject: [PATCH] tools/rctest: limit the maximum possible data_size It is necessary to prevent the possibility of allocating a large amount of memory. Found with the SVACE static analysis tool. --- tools/rctest.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tools/rctest.c b/tools/rctest.c index e39d313eb..b72be917c 100644 --- a/tools/rctest.c +++ b/tools/rctest.c @@ -41,6 +41,8 @@ #define SIOCGSTAMP_OLD SIOCGSTAMP #endif +#define MAX_DATA_SIZE 0x40000000 + /* Test modes */ enum { SEND, @@ -749,7 +751,8 @@ int main(int argc, char *argv[]) break; case 'b': - data_size = atoi(optarg); + if (optarg && atoi(optarg) < MAX_DATA_SIZE) + data_size = atoi(optarg); break; case 'i': -- 2.47.3