lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <8dd77269-62f7-4fa9-be09-c36f59e63f60@amd.com>
Date: Mon, 6 Jan 2025 09:19:25 -0800
From: Brett Creeley <bcreeley@....com>
To: Shannon Nelson <shannon.nelson@....com>, netdev@...r.kernel.org,
 davem@...emloft.net, kuba@...nel.org, edumazet@...gle.com,
 pabeni@...hat.com, andrew+netdev@...n.ch, jacob.e.keller@...el.com
Cc: brett.creeley@....com
Subject: Re: [PATCH net] pds_core: limit loop over fw name list

On 1/3/2025 11:51 AM, Shannon Nelson wrote:
> Add an array size limit to the for-loop to be sure we don't try
> to reference a fw_version string off the end of the fw info names
> array.  We know that our firmware only has a limited number
> of firmware slot names, but we shouldn't leave this unchecked.
> 
> Fixes: 45d76f492938 ("pds_core: set up device and adminq")
> Signed-off-by: Shannon Nelson <shannon.nelson@....com>
> ---
>   drivers/net/ethernet/amd/pds_core/devlink.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/net/ethernet/amd/pds_core/devlink.c b/drivers/net/ethernet/amd/pds_core/devlink.c
> index 2681889162a2..44971e71991f 100644
> --- a/drivers/net/ethernet/amd/pds_core/devlink.c
> +++ b/drivers/net/ethernet/amd/pds_core/devlink.c
> @@ -118,7 +118,7 @@ int pdsc_dl_info_get(struct devlink *dl, struct devlink_info_req *req,
>   	if (err && err != -EIO)
>   		return err;
>   
> -	listlen = fw_list.num_fw_slots;
> +	listlen = min(fw_list.num_fw_slots, ARRAY_SIZE(fw_list.fw_names));

LGTM. Thanks!

Reviewed-by: Brett Creeley <brett.creeley@....com>

>   	for (i = 0; i < listlen; i++) {
>   		if (i < ARRAY_SIZE(fw_slotnames))
>   			strscpy(buf, fw_slotnames[i], sizeof(buf));


Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ