diff options
author | Kees Cook <keescook@chromium.org> | 2024-02-06 18:03:24 +0100 |
---|---|---|
committer | Juergen Gross <jgross@suse.com> | 2024-02-13 09:06:48 +0100 |
commit | bf5802238dc181b1f7375d358af1d01cd72d1c11 (patch) | |
tree | 82870de17d881908450fe5d78509b1dea56c8874 /include | |
parent | xen: balloon: make balloon_subsys const (diff) | |
download | linux-bf5802238dc181b1f7375d358af1d01cd72d1c11.tar.xz linux-bf5802238dc181b1f7375d358af1d01cd72d1c11.zip |
xen/gntalloc: Replace UAPI 1-element array
Without changing the structure size (since it is UAPI), add a proper
flexible array member, and reference it in the kernel so that it will
not be trip the array-bounds sanitizer[1].
Link: https://github.com/KSPP/linux/issues/113 [1]
Cc: Juergen Gross <jgross@suse.com>
Cc: Stefano Stabellini <sstabellini@kernel.org>
Cc: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
Cc: Gustavo A. R. Silva <gustavoars@kernel.org>
Cc: xen-devel@lists.xenproject.org
Signed-off-by: Kees Cook <keescook@chromium.org>
Reviewed-by: Gustavo A. R. Silva <gustavoars@kernel.org>
Link: https://lore.kernel.org/r/20240206170320.work.437-kees@kernel.org
Signed-off-by: Juergen Gross <jgross@suse.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/uapi/xen/gntalloc.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/uapi/xen/gntalloc.h b/include/uapi/xen/gntalloc.h index 48d2790ef928..3109282672f3 100644 --- a/include/uapi/xen/gntalloc.h +++ b/include/uapi/xen/gntalloc.h @@ -31,7 +31,10 @@ struct ioctl_gntalloc_alloc_gref { __u64 index; /* The grant references of the newly created grant, one per page */ /* Variable size, depending on count */ - __u32 gref_ids[1]; + union { + __u32 gref_ids[1]; + __DECLARE_FLEX_ARRAY(__u32, gref_ids_flex); + }; }; #define GNTALLOC_FLAG_WRITABLE 1 |