summaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorThorsten Blum <thorsten.blum@toblux.com>2024-08-23 13:47:05 +0200
committerSteve French <stfrench@microsoft.com>2024-08-30 03:28:36 +0200
commit8d8d244726c8436c50f84092616c92bf551ea89a (patch)
treecbf109cf82a8c3724b586197c9e83abf51de5066 /fs
parentMerge tag '6.11-rc5-server-fixes' of git://git.samba.org/ksmbd (diff)
downloadlinux-8d8d244726c8436c50f84092616c92bf551ea89a.tar.xz
linux-8d8d244726c8436c50f84092616c92bf551ea89a.zip
smb: Annotate struct xattr_smb_acl with __counted_by()
Add the __counted_by compiler attribute to the flexible array member entries to improve access bounds-checking via CONFIG_UBSAN_BOUNDS and CONFIG_FORTIFY_SOURCE. Signed-off-by: Thorsten Blum <thorsten.blum@toblux.com> Acked-by: Namjae Jeon <linkinjeon@kernel.org> Signed-off-by: Steve French <stfrench@microsoft.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/smb/server/xattr.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/smb/server/xattr.h b/fs/smb/server/xattr.h
index 16499ca5c82d..fa3e27d6971b 100644
--- a/fs/smb/server/xattr.h
+++ b/fs/smb/server/xattr.h
@@ -76,7 +76,7 @@ struct xattr_acl_entry {
struct xattr_smb_acl {
int count;
int next;
- struct xattr_acl_entry entries[];
+ struct xattr_acl_entry entries[] __counted_by(count);
};
/* 64bytes hash in xattr_ntacl is computed with sha256 */