|
Kmods SIG |
8b815c |
From d4e8e135a9af7d8d939bba1874ab314322fc2dc2 Mon Sep 17 00:00:00 2001
|
|
Kmods SIG |
8b815c |
From: Kari Argillander <kari.argillander@gmail.com>
|
|
Kmods SIG |
8b815c |
Date: Wed, 25 Aug 2021 21:24:35 +0300
|
|
Kmods SIG |
8b815c |
Subject: [Backport d4e8e135a9af] src: Fix integer overflow in ni_fiemap
|
|
Kmods SIG |
8b815c |
with fiemap_prep()
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
Use fiemap_prep() to check valid flags. It also shrink request scope
|
|
Kmods SIG |
8b815c |
(@len) to what the fs can actually handle.
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
This address following Smatch static checker warning:
|
|
Kmods SIG |
8b815c |
src/frecord.c:1894 ni_fiemap()
|
|
Kmods SIG |
8b815c |
warn: potential integer overflow from user 'vbo + len'
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
Because fiemap_prep() shrinks @len this cannot happened anymore.
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
|
|
Kmods SIG |
8b815c |
Link: lore.kernel.org/ntfs3/20210825080440.GA17407@kili/
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
Fixes: 4342306f0f0d ("src: Add file operations and implementation")
|
|
Kmods SIG |
8b815c |
Signed-off-by: Kari Argillander <kari.argillander@gmail.com>
|
|
Kmods SIG |
8b815c |
Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
|
|
Kmods SIG |
8b815c |
---
|
|
Kmods SIG |
8b815c |
src/file.c | 5 +++--
|
|
Kmods SIG |
8b815c |
1 file changed, 3 insertions(+), 2 deletions(-)
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
diff --git a/src/file.c b/src/file.c
|
|
Kmods SIG |
8b815c |
index 89557d60a9b0f0e657ce9465504b417bbb50ed04..f9c9a8c91b46d6fad597c954c3b4a2cd331ebfb6 100644
|
|
Kmods SIG |
8b815c |
--- a/src/file.c
|
|
Kmods SIG |
8b815c |
+++ b/src/file.c
|
|
Kmods SIG |
8b815c |
@@ -1212,8 +1212,9 @@ int ntfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
|
|
Kmods SIG |
8b815c |
int err;
|
|
Kmods SIG |
8b815c |
struct ntfs_inode *ni = ntfs_i(inode);
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
- if (fieinfo->fi_flags & FIEMAP_FLAG_XATTR)
|
|
Kmods SIG |
8b815c |
- return -EOPNOTSUPP;
|
|
Kmods SIG |
8b815c |
+ err = fiemap_prep(inode, fieinfo, start, &len, ~FIEMAP_FLAG_XATTR);
|
|
Kmods SIG |
8b815c |
+ if (err)
|
|
Kmods SIG |
8b815c |
+ return err;
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
ni_lock(ni);
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
--
|
|
Kmods SIG |
8b815c |
2.31.1
|
|
Kmods SIG |
8b815c |
|