[PATCH] [RFC] ntfs: disable for 64KB because of stack overflow risk

From: Arnd Bergmann
Date: Mon Sep 27 2021 - 10:18:25 EST


From: Arnd Bergmann <arnd@xxxxxxxx>

On ARM64 randconfig builds, we occasionally get warnings for NTFS:

fs/ntfs/aops.c: In function 'ntfs_write_mst_block':
fs/ntfs/aops.c:1328:1: error: the frame size of 2224 bytes is larger than 2048 bytes [-Werror=frame-larger-than=]

The problem here is that with 64KB pages, we get two arrays on the
stack that each have 128 pointers, for a total of 2KB. Before
the VLA change, this could already happen with 512-byte blocks,
however in practice NTFS should usually have 4KB blocks and not
be affected by this (see link).

Now the stack usage is always > 2KB on any architecture with 64KB
pages. Since both NTFS and 64KB page support are fairly rare,
we may get away with just marking the combination as disallowed
in Kconfig and see if anyone complains before we find a different
way to address it.

Fixes: ac4ecf968acb ("ntfs: aops: remove VLA usage")
Link: https://support.microsoft.com/en-us/help/140365/default-cluster-size-for-ntfs-fat-and-exfat
Signed-off-by: Arnd Bergmann <arnd@xxxxxxxx>
---
fs/ntfs/Kconfig | 1 +
fs/ntfs/aops.c | 3 +++
2 files changed, 4 insertions(+)

diff --git a/fs/ntfs/Kconfig b/fs/ntfs/Kconfig
index 1667a7e590d8..b770f0209b9c 100644
--- a/fs/ntfs/Kconfig
+++ b/fs/ntfs/Kconfig
@@ -2,6 +2,7 @@
config NTFS_FS
tristate "NTFS file system support"
select NLS
+ depends on !PAGE_SIZE_64KB && !ARM64_64K_PAGES
help
NTFS is the file system of Microsoft Windows NT, 2000, XP and 2003.

diff --git a/fs/ntfs/aops.c b/fs/ntfs/aops.c
index bb0a43860ad2..76d59bd4c1eb 100644
--- a/fs/ntfs/aops.c
+++ b/fs/ntfs/aops.c
@@ -914,6 +914,9 @@ static int ntfs_write_mst_block(struct page *page,
bool sync, is_mft, page_is_dirty, rec_is_dirty;
unsigned char bh_size_bits;

+ /* Two arrays of MAX_BUF_PER_PAGE on the stack risks an overrun with 64K pages */
+ BUILD_BUG_ON(PAGE_SIZE >= 65536);
+
if (WARN_ON(rec_size < NTFS_BLOCK_SIZE))
return -EINVAL;

--
2.29.2