Commit 10b49d0e authored by Justin Stitt's avatar Justin Stitt Committed by Saeed Mahameed

net/mlx5: simplify mlx5_set_driver_version string assignments

In total, just assigning this version string takes:
(1) strncpy()'s
(5) strlen()'s
(3) strncat()'s
(1) snprintf()'s
(4) max_t()'s

Moreover, `strncpy` is deprecated [1] and `strncat` really shouldn't be
used either [2]. With this in mind, let's simply use a single
`snprintf`.

Link: https://www.kernel.org/doc/html/latest/process/deprecated.html#strncpy-on-nul-terminated-strings [1]
Link: https://elixir.bootlin.com/linux/v6.6-rc5/source/include/linux/fortify-string.h#L448 [2]
Link: https://github.com/KSPP/linux/issues/90
Cc: linux-hardening@vger.kernel.org
Cc: Kees Cook <keescook@chromium.org>
Signed-off-by: default avatarJustin Stitt <justinstitt@google.com>
Reviewed-by: default avatarKees Cook <keescook@chromium.org>
Signed-off-by: default avatarSaeed Mahameed <saeedm@nvidia.com>
parent 9454e564
...@@ -219,7 +219,6 @@ static void mlx5_set_driver_version(struct mlx5_core_dev *dev) ...@@ -219,7 +219,6 @@ static void mlx5_set_driver_version(struct mlx5_core_dev *dev)
int driver_ver_sz = MLX5_FLD_SZ_BYTES(set_driver_version_in, int driver_ver_sz = MLX5_FLD_SZ_BYTES(set_driver_version_in,
driver_version); driver_version);
u8 in[MLX5_ST_SZ_BYTES(set_driver_version_in)] = {}; u8 in[MLX5_ST_SZ_BYTES(set_driver_version_in)] = {};
int remaining_size = driver_ver_sz;
char *string; char *string;
if (!MLX5_CAP_GEN(dev, driver_version)) if (!MLX5_CAP_GEN(dev, driver_version))
...@@ -227,22 +226,9 @@ static void mlx5_set_driver_version(struct mlx5_core_dev *dev) ...@@ -227,22 +226,9 @@ static void mlx5_set_driver_version(struct mlx5_core_dev *dev)
string = MLX5_ADDR_OF(set_driver_version_in, in, driver_version); string = MLX5_ADDR_OF(set_driver_version_in, in, driver_version);
strncpy(string, "Linux", remaining_size); snprintf(string, driver_ver_sz, "Linux,%s,%u.%u.%u",
KBUILD_MODNAME, LINUX_VERSION_MAJOR,
remaining_size = max_t(int, 0, driver_ver_sz - strlen(string)); LINUX_VERSION_PATCHLEVEL, LINUX_VERSION_SUBLEVEL);
strncat(string, ",", remaining_size);
remaining_size = max_t(int, 0, driver_ver_sz - strlen(string));
strncat(string, KBUILD_MODNAME, remaining_size);
remaining_size = max_t(int, 0, driver_ver_sz - strlen(string));
strncat(string, ",", remaining_size);
remaining_size = max_t(int, 0, driver_ver_sz - strlen(string));
snprintf(string + strlen(string), remaining_size, "%u.%u.%u",
LINUX_VERSION_MAJOR, LINUX_VERSION_PATCHLEVEL,
LINUX_VERSION_SUBLEVEL);
/*Send the command*/ /*Send the command*/
MLX5_SET(set_driver_version_in, in, opcode, MLX5_SET(set_driver_version_in, in, opcode,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment