lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <a0ada3ee-3666-17c4-bb4c-12c29121fc54@paragon-software.com>
Date:   Thu, 2 Sep 2021 19:23:46 +0300
From:   Konstantin Komarov <almaz.alexandrovich@...agon-software.com>
To:     Kari Argillander <kari.argillander@...il.com>,
        Dan Carpenter <dan.carpenter@...cle.com>
CC:     <linux-kernel@...r.kernel.org>, <ntfs3@...ts.linux.dev>
Subject: Re: [PATCH] fs/ntfs3: Fix integer overflow in ni_fiemap with
 fiemap_prep()



On 25.08.2021 21:24, Kari Argillander wrote:
> Use fiemap_prep() to check valid flags. It also shrink request scope
> (@len) to what the fs can actually handle.
> 
> This address following Smatch static checker warning:
> 	fs/ntfs3/frecord.c:1894 ni_fiemap()
> 	warn: potential integer overflow from user 'vbo + len'
> 
> Because fiemap_prep() shrinks @len this cannot happened anymore.
> 
> Reported-by Dan Carpenter <dan.carpenter@...cle.com>
> Link: lore.kernel.org/ntfs3/20210825080440.GA17407@...i/
> 
> Fixes: 4342306f0f0d ("fs/ntfs3: Add file operations and implementation")
> Signed-off-by: Kari Argillander <kari.argillander@...il.com>
> ---
>  fs/ntfs3/file.c | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/fs/ntfs3/file.c b/fs/ntfs3/file.c
> index 59344985c2e8..cb736701f2cc 100644
> --- a/fs/ntfs3/file.c
> +++ b/fs/ntfs3/file.c
> @@ -1210,8 +1210,9 @@ int ntfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
>  	int err;
>  	struct ntfs_inode *ni = ntfs_i(inode);
>  
> -	if (fieinfo->fi_flags & FIEMAP_FLAG_XATTR)
> -		return -EOPNOTSUPP;
> +	err = fiemap_prep(inode, fieinfo, start, &len, ~FIEMAP_FLAG_XATTR);
> +	if (err)
> +		return err;
>  
>  	ni_lock(ni);
>  
> 

Hello, Dan, Kari!

Thanks for finding and fixing this issue. Applied patch.

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ