* [PATCH] usb: gadget: f_fs: Annotate struct ffs_buffer with __counted_by
@ 2023-09-15 19:58 Kees Cook
2023-09-15 20:21 ` Gustavo A. R. Silva
2023-09-29 19:21 ` Kees Cook
0 siblings, 2 replies; 3+ messages in thread
From: Kees Cook @ 2023-09-15 19:58 UTC (permalink / raw)
To: Greg Kroah-Hartman
Cc: Kees Cook, John Keeping, Udipto Goswami, Linyu Yuan, linux-usb,
Nathan Chancellor, Nick Desaulniers, Tom Rix, Krishna Kurapati,
Jeff Layton, Uttkarsh Aggarwal, Yuta Hayama, linux-kernel, llvm,
linux-hardening
Prepare for the coming implementation by GCC and Clang of the __counted_by
attribute. Flexible array members annotated with __counted_by can have
their accesses bounds-checked at run-time checking via CONFIG_UBSAN_BOUNDS
(for array indexing) and CONFIG_FORTIFY_SOURCE (for strcpy/memcpy-family
functions).
As found with Coccinelle[1], add __counted_by for struct ffs_buffer.
[1] https://github.com/kees/kernel-tools/blob/trunk/coccinelle/examples/counted_by.cocci
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: John Keeping <john@keeping.me.uk>
Cc: Udipto Goswami <quic_ugoswami@quicinc.com>
Cc: Linyu Yuan <quic_linyyuan@quicinc.com>
Cc: linux-usb@vger.kernel.org
Signed-off-by: Kees Cook <keescook@chromium.org>
---
drivers/usb/gadget/function/f_fs.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/usb/gadget/function/f_fs.c b/drivers/usb/gadget/function/f_fs.c
index 6e9ef35a43a7..af400d083777 100644
--- a/drivers/usb/gadget/function/f_fs.c
+++ b/drivers/usb/gadget/function/f_fs.c
@@ -202,7 +202,7 @@ struct ffs_epfile {
struct ffs_buffer {
size_t length;
char *data;
- char storage[];
+ char storage[] __counted_by(length);
};
/* ffs_io_data structure ***************************************************/
--
2.34.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] usb: gadget: f_fs: Annotate struct ffs_buffer with __counted_by
2023-09-15 19:58 [PATCH] usb: gadget: f_fs: Annotate struct ffs_buffer with __counted_by Kees Cook
@ 2023-09-15 20:21 ` Gustavo A. R. Silva
2023-09-29 19:21 ` Kees Cook
1 sibling, 0 replies; 3+ messages in thread
From: Gustavo A. R. Silva @ 2023-09-15 20:21 UTC (permalink / raw)
To: Kees Cook, Greg Kroah-Hartman
Cc: John Keeping, Udipto Goswami, Linyu Yuan, linux-usb,
Nathan Chancellor, Nick Desaulniers, Tom Rix, Krishna Kurapati,
Jeff Layton, Uttkarsh Aggarwal, Yuta Hayama, linux-kernel, llvm,
linux-hardening
On 9/15/23 13:58, Kees Cook wrote:
> Prepare for the coming implementation by GCC and Clang of the __counted_by
> attribute. Flexible array members annotated with __counted_by can have
> their accesses bounds-checked at run-time checking via CONFIG_UBSAN_BOUNDS
> (for array indexing) and CONFIG_FORTIFY_SOURCE (for strcpy/memcpy-family
> functions).
>
> As found with Coccinelle[1], add __counted_by for struct ffs_buffer.
>
> [1] https://github.com/kees/kernel-tools/blob/trunk/coccinelle/examples/counted_by.cocci
>
> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> Cc: John Keeping <john@keeping.me.uk>
> Cc: Udipto Goswami <quic_ugoswami@quicinc.com>
> Cc: Linyu Yuan <quic_linyyuan@quicinc.com>
> Cc: linux-usb@vger.kernel.org
> Signed-off-by: Kees Cook <keescook@chromium.org>
Reviewed-by: Gustavo A. R. Silva <gustavoars@kernel.org>
Thanks
--
Gustavo
> ---
> drivers/usb/gadget/function/f_fs.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/usb/gadget/function/f_fs.c b/drivers/usb/gadget/function/f_fs.c
> index 6e9ef35a43a7..af400d083777 100644
> --- a/drivers/usb/gadget/function/f_fs.c
> +++ b/drivers/usb/gadget/function/f_fs.c
> @@ -202,7 +202,7 @@ struct ffs_epfile {
> struct ffs_buffer {
> size_t length;
> char *data;
> - char storage[];
> + char storage[] __counted_by(length);
> };
>
> /* ffs_io_data structure ***************************************************/
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] usb: gadget: f_fs: Annotate struct ffs_buffer with __counted_by
2023-09-15 19:58 [PATCH] usb: gadget: f_fs: Annotate struct ffs_buffer with __counted_by Kees Cook
2023-09-15 20:21 ` Gustavo A. R. Silva
@ 2023-09-29 19:21 ` Kees Cook
1 sibling, 0 replies; 3+ messages in thread
From: Kees Cook @ 2023-09-29 19:21 UTC (permalink / raw)
To: Greg Kroah-Hartman, Kees Cook
Cc: John Keeping, Udipto Goswami, Linyu Yuan, linux-usb,
Nathan Chancellor, Nick Desaulniers, Tom Rix, Krishna Kurapati,
Jeff Layton, Uttkarsh Aggarwal, Yuta Hayama, linux-kernel, llvm,
linux-hardening
On Fri, 15 Sep 2023 12:58:49 -0700, Kees Cook wrote:
> Prepare for the coming implementation by GCC and Clang of the __counted_by
> attribute. Flexible array members annotated with __counted_by can have
> their accesses bounds-checked at run-time checking via CONFIG_UBSAN_BOUNDS
> (for array indexing) and CONFIG_FORTIFY_SOURCE (for strcpy/memcpy-family
> functions).
>
> As found with Coccinelle[1], add __counted_by for struct ffs_buffer.
>
> [...]
Applied to for-next/hardening, thanks!
[1/1] usb: gadget: f_fs: Annotate struct ffs_buffer with __counted_by
https://git.kernel.org/kees/c/84657a30a0c9
Take care,
--
Kees Cook
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-09-29 19:21 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-15 19:58 [PATCH] usb: gadget: f_fs: Annotate struct ffs_buffer with __counted_by Kees Cook
2023-09-15 20:21 ` Gustavo A. R. Silva
2023-09-29 19:21 ` Kees Cook
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox