linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] RDMA/erdma: Use vcalloc() instead of vzalloc()
@ 2025-08-21  7:22 Qianfeng Rong
  2025-08-21  9:26 ` Cheng Xu
  2025-08-25 18:19 ` Jason Gunthorpe
  0 siblings, 2 replies; 3+ messages in thread
From: Qianfeng Rong @ 2025-08-21  7:22 UTC (permalink / raw)
  To: Cheng Xu, Kai Shen, Jason Gunthorpe, Leon Romanovsky, linux-rdma,
	linux-kernel
  Cc: Markus.Elfring, Qianfeng Rong

Replace vzalloc() with vcalloc() in vmalloc_to_dma_addrs().  As noted
in the kernel documentation [1], open-coded multiplication in allocator
arguments is discouraged because it can lead to integer overflow.

Use vcalloc() to gain built-in overflow protection, making memory
allocation safer when calculating allocation size compared to explicit
multiplication.

[1]: https://www.kernel.org/doc/html/next/process/deprecated.html#open-coded-arithmetic-in-allocator-arguments

Signed-off-by: Qianfeng Rong <rongqianfeng@vivo.com>
---
v2: change sizeof(dma_addr_t) to sizeof(*pg_dma) to improve code
    robustness as suggested by Markus.
---
 drivers/infiniband/hw/erdma/erdma_verbs.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/infiniband/hw/erdma/erdma_verbs.c b/drivers/infiniband/hw/erdma/erdma_verbs.c
index 996860f49b2f..109a3f3de911 100644
--- a/drivers/infiniband/hw/erdma/erdma_verbs.c
+++ b/drivers/infiniband/hw/erdma/erdma_verbs.c
@@ -671,7 +671,7 @@ static u32 vmalloc_to_dma_addrs(struct erdma_dev *dev, dma_addr_t **dma_addrs,
 
 	npages = (PAGE_ALIGN((u64)buf + len) - PAGE_ALIGN_DOWN((u64)buf)) >>
 		 PAGE_SHIFT;
-	pg_dma = vzalloc(npages * sizeof(dma_addr_t));
+	pg_dma = vcalloc(npages, sizeof(*pg_dma));
 	if (!pg_dma)
 		return 0;
 
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH v2] RDMA/erdma: Use vcalloc() instead of vzalloc()
  2025-08-21  7:22 [PATCH v2] RDMA/erdma: Use vcalloc() instead of vzalloc() Qianfeng Rong
@ 2025-08-21  9:26 ` Cheng Xu
  2025-08-25 18:19 ` Jason Gunthorpe
  1 sibling, 0 replies; 3+ messages in thread
From: Cheng Xu @ 2025-08-21  9:26 UTC (permalink / raw)
  To: Qianfeng Rong, Kai Shen, Jason Gunthorpe, Leon Romanovsky,
	linux-rdma, linux-kernel
  Cc: Markus.Elfring



On 8/21/25 3:22 PM, Qianfeng Rong wrote:
> Replace vzalloc() with vcalloc() in vmalloc_to_dma_addrs().  As noted
> in the kernel documentation [1], open-coded multiplication in allocator
> arguments is discouraged because it can lead to integer overflow.
> 
> Use vcalloc() to gain built-in overflow protection, making memory
> allocation safer when calculating allocation size compared to explicit
> multiplication.
> 
> [1]: https://www.kernel.org/doc/html/next/process/deprecated.html#open-coded-arithmetic-in-allocator-arguments
> 
> Signed-off-by: Qianfeng Rong <rongqianfeng@vivo.com>
> ---
> v2: change sizeof(dma_addr_t) to sizeof(*pg_dma) to improve code
>     robustness as suggested by Markus.
> ---
>  drivers/infiniband/hw/erdma/erdma_verbs.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 

Thanks.

Reviewed-by: Cheng Xu <chengyou@linux.alibaba.com>

> diff --git a/drivers/infiniband/hw/erdma/erdma_verbs.c b/drivers/infiniband/hw/erdma/erdma_verbs.c
> index 996860f49b2f..109a3f3de911 100644
> --- a/drivers/infiniband/hw/erdma/erdma_verbs.c
> +++ b/drivers/infiniband/hw/erdma/erdma_verbs.c
> @@ -671,7 +671,7 @@ static u32 vmalloc_to_dma_addrs(struct erdma_dev *dev, dma_addr_t **dma_addrs,
>  
>  	npages = (PAGE_ALIGN((u64)buf + len) - PAGE_ALIGN_DOWN((u64)buf)) >>
>  		 PAGE_SHIFT;
> -	pg_dma = vzalloc(npages * sizeof(dma_addr_t));
> +	pg_dma = vcalloc(npages, sizeof(*pg_dma));
>  	if (!pg_dma)
>  		return 0;
>  

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH v2] RDMA/erdma: Use vcalloc() instead of vzalloc()
  2025-08-21  7:22 [PATCH v2] RDMA/erdma: Use vcalloc() instead of vzalloc() Qianfeng Rong
  2025-08-21  9:26 ` Cheng Xu
@ 2025-08-25 18:19 ` Jason Gunthorpe
  1 sibling, 0 replies; 3+ messages in thread
From: Jason Gunthorpe @ 2025-08-25 18:19 UTC (permalink / raw)
  To: Qianfeng Rong
  Cc: Cheng Xu, Kai Shen, Leon Romanovsky, linux-rdma, linux-kernel,
	Markus.Elfring

On Thu, Aug 21, 2025 at 03:22:09PM +0800, Qianfeng Rong wrote:
> Replace vzalloc() with vcalloc() in vmalloc_to_dma_addrs().  As noted
> in the kernel documentation [1], open-coded multiplication in allocator
> arguments is discouraged because it can lead to integer overflow.
> 
> Use vcalloc() to gain built-in overflow protection, making memory
> allocation safer when calculating allocation size compared to explicit
> multiplication.
> 
> [1]: https://www.kernel.org/doc/html/next/process/deprecated.html#open-coded-arithmetic-in-allocator-arguments
> 
> Signed-off-by: Qianfeng Rong <rongqianfeng@vivo.com>
> ---
> v2: change sizeof(dma_addr_t) to sizeof(*pg_dma) to improve code
>     robustness as suggested by Markus.
> ---
>  drivers/infiniband/hw/erdma/erdma_verbs.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Applied to for-next, thanks

Jason

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2025-08-25 18:19 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-21  7:22 [PATCH v2] RDMA/erdma: Use vcalloc() instead of vzalloc() Qianfeng Rong
2025-08-21  9:26 ` Cheng Xu
2025-08-25 18:19 ` Jason Gunthorpe

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).