* [PATCH] ovl: Annotate struct ovl_entry with __counted_by()
@ 2025-05-03 13:25 Thorsten Blum
2025-05-05 12:06 ` Miklos Szeredi
0 siblings, 1 reply; 2+ messages in thread
From: Thorsten Blum @ 2025-05-03 13:25 UTC (permalink / raw)
To: Miklos Szeredi, Amir Goldstein, Kees Cook, Gustavo A. R. Silva
Cc: Thorsten Blum, linux-unionfs, linux-kernel, linux-hardening
Add the __counted_by() compiler attribute to the flexible array member
'__lowerstack' to improve access bounds-checking via CONFIG_UBSAN_BOUNDS
and CONFIG_FORTIFY_SOURCE.
Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev>
---
fs/overlayfs/ovl_entry.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fs/overlayfs/ovl_entry.h b/fs/overlayfs/ovl_entry.h
index cb449ab310a7..afb7762f873f 100644
--- a/fs/overlayfs/ovl_entry.h
+++ b/fs/overlayfs/ovl_entry.h
@@ -51,7 +51,7 @@ struct ovl_path {
struct ovl_entry {
unsigned int __numlower;
- struct ovl_path __lowerstack[];
+ struct ovl_path __lowerstack[] __counted_by(__numlower);
};
/* private information held for overlayfs's superblock */
--
2.49.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-05-05 12:06 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-05-03 13:25 [PATCH] ovl: Annotate struct ovl_entry with __counted_by() Thorsten Blum
2025-05-05 12:06 ` Miklos Szeredi
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).