public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH][next] RDMA/erdma: Replace zero-length arrays with flexible-array members
@ 2023-01-10  1:40 Gustavo A. R. Silva
  2023-01-10 11:15 ` Cheng Xu
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Gustavo A. R. Silva @ 2023-01-10  1:40 UTC (permalink / raw)
  To: Cheng Xu, Kai Shen, Jason Gunthorpe, Leon Romanovsky
  Cc: linux-rdma, linux-kernel, Gustavo A. R. Silva, linux-hardening

Zero-length arrays are deprecated[1] and we are moving towards
adopting C99 flexible-array members instead. So, replace zero-length
arrays, in a couple of structures, with flex-array members.

This helps with the ongoing efforts to tighten the FORTIFY_SOURCE
routines on memcpy() and help us make progress towards globally
enabling -fstrict-flex-arrays=3 [2].

Link: https://www.kernel.org/doc/html/latest/process/deprecated.html#zero-length-and-one-element-arrays [1]
Link: https://gcc.gnu.org/pipermail/gcc-patches/2022-October/602902.html [2]
Link: https://github.com/KSPP/linux/issues/78
Signed-off-by: Gustavo A. R. Silva <gustavoars@kernel.org>
---
 drivers/infiniband/hw/erdma/erdma_hw.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/infiniband/hw/erdma/erdma_hw.h b/drivers/infiniband/hw/erdma/erdma_hw.h
index ab371fec610c..4c38d99c73f1 100644
--- a/drivers/infiniband/hw/erdma/erdma_hw.h
+++ b/drivers/infiniband/hw/erdma/erdma_hw.h
@@ -397,7 +397,7 @@ struct erdma_write_sqe {
 
 	__le32 rsvd;
 
-	struct erdma_sge sgl[0];
+	struct erdma_sge sgl[];
 };
 
 struct erdma_send_sqe {
@@ -408,7 +408,7 @@ struct erdma_send_sqe {
 	};
 
 	__le32 length;
-	struct erdma_sge sgl[0];
+	struct erdma_sge sgl[];
 };
 
 struct erdma_readreq_sqe {
-- 
2.34.1


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

* Re: [PATCH][next] RDMA/erdma: Replace zero-length arrays with flexible-array members
  2023-01-10  1:40 [PATCH][next] RDMA/erdma: Replace zero-length arrays with flexible-array members Gustavo A. R. Silva
@ 2023-01-10 11:15 ` Cheng Xu
  2023-01-12 22:18 ` Kees Cook
  2023-01-15 11:36 ` Leon Romanovsky
  2 siblings, 0 replies; 4+ messages in thread
From: Cheng Xu @ 2023-01-10 11:15 UTC (permalink / raw)
  To: Gustavo A. R. Silva, Kai Shen, Jason Gunthorpe, Leon Romanovsky
  Cc: linux-rdma, linux-kernel, linux-hardening



On 1/10/23 9:40 AM, Gustavo A. R. Silva wrote:
> Zero-length arrays are deprecated[1] and we are moving towards
> adopting C99 flexible-array members instead. So, replace zero-length
> arrays, in a couple of structures, with flex-array members.
> 
> This helps with the ongoing efforts to tighten the FORTIFY_SOURCE
> routines on memcpy() and help us make progress towards globally
> enabling -fstrict-flex-arrays=3 [2].
> 
> Link: https://www.kernel.org/doc/html/latest/process/deprecated.html#zero-length-and-one-element-arrays [1]
> Link: https://gcc.gnu.org/pipermail/gcc-patches/2022-October/602902.html [2]
> Link: https://github.com/KSPP/linux/issues/78
> Signed-off-by: Gustavo A. R. Silva <gustavoars@kernel.org>
> ---
>  drivers/infiniband/hw/erdma/erdma_hw.h | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 

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

Thanks very much,
Cheng Xu


> diff --git a/drivers/infiniband/hw/erdma/erdma_hw.h b/drivers/infiniband/hw/erdma/erdma_hw.h
> index ab371fec610c..4c38d99c73f1 100644
> --- a/drivers/infiniband/hw/erdma/erdma_hw.h
> +++ b/drivers/infiniband/hw/erdma/erdma_hw.h
> @@ -397,7 +397,7 @@ struct erdma_write_sqe {
>  
>  	__le32 rsvd;
>  
> -	struct erdma_sge sgl[0];
> +	struct erdma_sge sgl[];
>  };
>  
>  struct erdma_send_sqe {
> @@ -408,7 +408,7 @@ struct erdma_send_sqe {
>  	};
>  
>  	__le32 length;
> -	struct erdma_sge sgl[0];
> +	struct erdma_sge sgl[];
>  };
>  
>  struct erdma_readreq_sqe {

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

* Re: [PATCH][next] RDMA/erdma: Replace zero-length arrays with flexible-array members
  2023-01-10  1:40 [PATCH][next] RDMA/erdma: Replace zero-length arrays with flexible-array members Gustavo A. R. Silva
  2023-01-10 11:15 ` Cheng Xu
@ 2023-01-12 22:18 ` Kees Cook
  2023-01-15 11:36 ` Leon Romanovsky
  2 siblings, 0 replies; 4+ messages in thread
From: Kees Cook @ 2023-01-12 22:18 UTC (permalink / raw)
  To: Gustavo A. R. Silva
  Cc: Cheng Xu, Kai Shen, Jason Gunthorpe, Leon Romanovsky, linux-rdma,
	linux-kernel, linux-hardening

On Mon, Jan 09, 2023 at 07:40:22PM -0600, Gustavo A. R. Silva wrote:
> Zero-length arrays are deprecated[1] and we are moving towards
> adopting C99 flexible-array members instead. So, replace zero-length
> arrays, in a couple of structures, with flex-array members.
> 
> This helps with the ongoing efforts to tighten the FORTIFY_SOURCE
> routines on memcpy() and help us make progress towards globally
> enabling -fstrict-flex-arrays=3 [2].
> 
> Link: https://www.kernel.org/doc/html/latest/process/deprecated.html#zero-length-and-one-element-arrays [1]
> Link: https://gcc.gnu.org/pipermail/gcc-patches/2022-October/602902.html [2]
> Link: https://github.com/KSPP/linux/issues/78
> Signed-off-by: Gustavo A. R. Silva <gustavoars@kernel.org>

Reviewed-by: Kees Cook <keescook@chromium.org>

-- 
Kees Cook

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

* Re: [PATCH][next] RDMA/erdma: Replace zero-length arrays with flexible-array members
  2023-01-10  1:40 [PATCH][next] RDMA/erdma: Replace zero-length arrays with flexible-array members Gustavo A. R. Silva
  2023-01-10 11:15 ` Cheng Xu
  2023-01-12 22:18 ` Kees Cook
@ 2023-01-15 11:36 ` Leon Romanovsky
  2 siblings, 0 replies; 4+ messages in thread
From: Leon Romanovsky @ 2023-01-15 11:36 UTC (permalink / raw)
  To: Cheng Xu, Kai Shen, Jason Gunthorpe, Gustavo A. R. Silva
  Cc: linux-rdma, linux-kernel, linux-hardening


On Mon, 09 Jan 2023 19:40:22 -0600, Gustavo A. R. Silva wrote:
> Zero-length arrays are deprecated[1] and we are moving towards
> adopting C99 flexible-array members instead. So, replace zero-length
> arrays, in a couple of structures, with flex-array members.
> 
> This helps with the ongoing efforts to tighten the FORTIFY_SOURCE
> routines on memcpy() and help us make progress towards globally
> enabling -fstrict-flex-arrays=3 [2].
> 
> [...]

Applied, thanks!

[1/1] RDMA/erdma: Replace zero-length arrays with flexible-array members
      https://git.kernel.org/rdma/rdma/c/ed73a505480d54

Best regards,
-- 
Leon Romanovsky <leon@kernel.org>

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

end of thread, other threads:[~2023-01-15 11:36 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-01-10  1:40 [PATCH][next] RDMA/erdma: Replace zero-length arrays with flexible-array members Gustavo A. R. Silva
2023-01-10 11:15 ` Cheng Xu
2023-01-12 22:18 ` Kees Cook
2023-01-15 11:36 ` Leon Romanovsky

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox