fs/ntfs3: Mark volume as dirty if xattr is broken

Mark a volume as corrupted if the name length exceeds the space
occupied by ea.

Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
This commit is contained in:
Konstantin Komarov 2024-04-22 17:18:51 +03:00
parent 40bb3c5905
commit 24f6f5020b
No known key found for this signature in database
GPG key ID: A9B0331F832407B6

View file

@ -219,8 +219,11 @@ static ssize_t ntfs_list_ea(struct ntfs_inode *ni, char *buffer,
if (!ea->name_len)
break;
if (ea->name_len > ea_size)
if (ea->name_len > ea_size) {
ntfs_set_state(ni->mi.sbi, NTFS_DIRTY_ERROR);
err = -EINVAL; /* corrupted fs */
break;
}
if (buffer) {
/* Check if we can use field ea->name */