[PATCH v3 5/5] telemetry: remove VLA in json string format function
Bruce Richardson
bruce.richardson at intel.com
Wed Apr 5 18:03:26 CEST 2023
Since variable length arrays (VLAs) are potentially insecure and
unsupported by some compilers, rework the code to remove their use. As
with previous changes to remove VLAs in the telemetry code, this
function uses two methods to avoid modifying the buffer when adding to
it fails:
* if there are only a few characters in the buffer, save them off to
restore on failure, then use the buffer as-is,
* otherwise use malloc rather than a VLA to allocate a temporary buffer
and copy from that on success only.
Signed-off-by: Bruce Richardson <bruce.richardson at intel.com>
---
app/test/test_telemetry_json.c | 2 +-
lib/telemetry/telemetry_json.h | 19 +++++++++++++++++--
2 files changed, 18 insertions(+), 3 deletions(-)
diff --git a/app/test/test_telemetry_json.c b/app/test/test_telemetry_json.c
index e81e3a8a98..5617eac540 100644
--- a/app/test/test_telemetry_json.c
+++ b/app/test/test_telemetry_json.c
@@ -129,7 +129,7 @@ test_string_char_escaping(void)
{
static const char str[] = "A string across\ntwo lines and \"with quotes\"!";
const char *expected = "\"A string across\\ntwo lines and \\\"with quotes\\\"!\"";
- char buf[sizeof(str) + 10];
+ char buf[sizeof(str) + 10] = "";
int used = 0;
used = rte_tel_json_str(buf, sizeof(buf), used, str);
diff --git a/lib/telemetry/telemetry_json.h b/lib/telemetry/telemetry_json.h
index c087b833eb..7999535848 100644
--- a/lib/telemetry/telemetry_json.h
+++ b/lib/telemetry/telemetry_json.h
@@ -134,13 +134,28 @@ __json_format_str_to_buf(char *buf, const int len,
static inline int
__json_format_str(char *buf, const int len, const char *prefix, const char *str, const char *suffix)
{
- char tmp[len];
int ret;
+ char saved[4] = "";
+ char *tmp;
+
+ if (strnlen(buf, sizeof(saved)) < sizeof(saved)) {
+ /* we have only a few bytes in buffer, so save them off to restore on error*/
+ strcpy(saved, buf);
+ ret = __json_format_str_to_buf(buf, len, prefix, str, suffix);
+ if (ret == 0)
+ strcpy(buf, saved); /* restore */
+ return ret;
+ }
+
+ tmp = malloc(len);
+ if (tmp == NULL)
+ return 0;
ret = __json_format_str_to_buf(tmp, len, prefix, str, suffix);
if (ret > 0)
- strcpy(buf, tmp);
+ strcpy(buf, saved);
+ free(tmp);
return ret;
}
--
2.37.2
More information about the dev
mailing list