linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] mnt_idmapping: Use kmemdup_array instead of kmemdup for multiple allocation
@ 2024-08-23  1:55 Yu Jiaoliang
  2024-08-28 11:47 ` Jan Kara
  2024-08-28 11:56 ` Christian Brauner
  0 siblings, 2 replies; 3+ messages in thread
From: Yu Jiaoliang @ 2024-08-23  1:55 UTC (permalink / raw)
  To: Alexander Viro, Christian Brauner, Jan Kara, Seth Forshee,
	linux-fsdevel, linux-kernel
  Cc: opensource.kernel

Let the kememdup_array() take care about multiplication and possible
overflows.

v2:Add a new modification for reverse array.

Signed-off-by: Yu Jiaoliang <yujiaoliang@vivo.com>
---
 fs/mnt_idmapping.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/fs/mnt_idmapping.c b/fs/mnt_idmapping.c
index 3c60f1eaca61..79491663dbc0 100644
--- a/fs/mnt_idmapping.c
+++ b/fs/mnt_idmapping.c
@@ -228,15 +228,15 @@ static int copy_mnt_idmap(struct uid_gid_map *map_from,
 		return 0;
 	}
 
-	forward = kmemdup(map_from->forward,
-			  nr_extents * sizeof(struct uid_gid_extent),
-			  GFP_KERNEL_ACCOUNT);
+	forward = kmemdup_array(map_from->forward, nr_extents,
+				sizeof(struct uid_gid_extent),
+				GFP_KERNEL_ACCOUNT);
 	if (!forward)
 		return -ENOMEM;
 
-	reverse = kmemdup(map_from->reverse,
-			  nr_extents * sizeof(struct uid_gid_extent),
-			  GFP_KERNEL_ACCOUNT);
+	reverse = kmemdup_array(map_from->reverse, nr_extents,
+				sizeof(struct uid_gid_extent),
+				GFP_KERNEL_ACCOUNT);
 	if (!reverse) {
 		kfree(forward);
 		return -ENOMEM;
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH v2] mnt_idmapping: Use kmemdup_array instead of kmemdup for multiple allocation
  2024-08-23  1:55 [PATCH v2] mnt_idmapping: Use kmemdup_array instead of kmemdup for multiple allocation Yu Jiaoliang
@ 2024-08-28 11:47 ` Jan Kara
  2024-08-28 11:56 ` Christian Brauner
  1 sibling, 0 replies; 3+ messages in thread
From: Jan Kara @ 2024-08-28 11:47 UTC (permalink / raw)
  To: Yu Jiaoliang
  Cc: Alexander Viro, Christian Brauner, Jan Kara, Seth Forshee,
	linux-fsdevel, linux-kernel, opensource.kernel

On Fri 23-08-24 09:55:41, Yu Jiaoliang wrote:
> Let the kememdup_array() take care about multiplication and possible
> overflows.
> 
> v2:Add a new modification for reverse array.
> 
> Signed-off-by: Yu Jiaoliang <yujiaoliang@vivo.com>

Looks good. Feel free to add:

Reviewed-by: Jan Kara <jack@suse.cz>

								Honza

> ---
>  fs/mnt_idmapping.c | 12 ++++++------
>  1 file changed, 6 insertions(+), 6 deletions(-)
> 
> diff --git a/fs/mnt_idmapping.c b/fs/mnt_idmapping.c
> index 3c60f1eaca61..79491663dbc0 100644
> --- a/fs/mnt_idmapping.c
> +++ b/fs/mnt_idmapping.c
> @@ -228,15 +228,15 @@ static int copy_mnt_idmap(struct uid_gid_map *map_from,
>  		return 0;
>  	}
>  
> -	forward = kmemdup(map_from->forward,
> -			  nr_extents * sizeof(struct uid_gid_extent),
> -			  GFP_KERNEL_ACCOUNT);
> +	forward = kmemdup_array(map_from->forward, nr_extents,
> +				sizeof(struct uid_gid_extent),
> +				GFP_KERNEL_ACCOUNT);
>  	if (!forward)
>  		return -ENOMEM;
>  
> -	reverse = kmemdup(map_from->reverse,
> -			  nr_extents * sizeof(struct uid_gid_extent),
> -			  GFP_KERNEL_ACCOUNT);
> +	reverse = kmemdup_array(map_from->reverse, nr_extents,
> +				sizeof(struct uid_gid_extent),
> +				GFP_KERNEL_ACCOUNT);
>  	if (!reverse) {
>  		kfree(forward);
>  		return -ENOMEM;
> -- 
> 2.34.1
> 
-- 
Jan Kara <jack@suse.com>
SUSE Labs, CR

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH v2] mnt_idmapping: Use kmemdup_array instead of kmemdup for multiple allocation
  2024-08-23  1:55 [PATCH v2] mnt_idmapping: Use kmemdup_array instead of kmemdup for multiple allocation Yu Jiaoliang
  2024-08-28 11:47 ` Jan Kara
@ 2024-08-28 11:56 ` Christian Brauner
  1 sibling, 0 replies; 3+ messages in thread
From: Christian Brauner @ 2024-08-28 11:56 UTC (permalink / raw)
  To: Yu Jiaoliang
  Cc: Christian Brauner, opensource.kernel, Alexander Viro, Jan Kara,
	Seth Forshee, linux-fsdevel, linux-kernel

On Fri, 23 Aug 2024 09:55:41 +0800, Yu Jiaoliang wrote:
> Let the kememdup_array() take care about multiplication and possible
> overflows.
> 
> v2:Add a new modification for reverse array.
> 
> 

Applied to the vfs.misc branch of the vfs/vfs.git tree.
Patches in the vfs.misc branch should appear in linux-next soon.

Please report any outstanding bugs that were missed during review in a
new review to the original patch series allowing us to drop it.

It's encouraged to provide Acked-bys and Reviewed-bys even though the
patch has now been applied. If possible patch trailers will be updated.

Note that commit hashes shown below are subject to change due to rebase,
trailer updates or similar. If in doubt, please check the listed branch.

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs.git
branch: vfs.misc

[1/1] mnt_idmapping: Use kmemdup_array instead of kmemdup for multiple allocation
      https://git.kernel.org/vfs/vfs/c/639639c8ce66

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-08-28 11:56 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-23  1:55 [PATCH v2] mnt_idmapping: Use kmemdup_array instead of kmemdup for multiple allocation Yu Jiaoliang
2024-08-28 11:47 ` Jan Kara
2024-08-28 11:56 ` Christian Brauner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).