linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
From: Jan Kara <jack@suse.cz>
To: "Jason A. Donenfeld" <Jason@zx2c4.com>
Cc: "Andrew Lunn" <andrew@lunn.ch>,
	"Darrick J . Wong" <djwong@kernel.org>,
	"Ulf Hansson" <ulf.hansson@linaro.org>,
	dri-devel@lists.freedesktop.org,
	"Andrii Nakryiko" <andrii@kernel.org>,
	"Hans Verkuil" <hverkuil@xs4all.nl>,
	linux-sctp@vger.kernel.org,
	"Md . Haris Iqbal" <haris.iqbal@ionos.com>,
	"Miquel Raynal" <miquel.raynal@bootlin.com>,
	"Christoph Hellwig" <hch@lst.de>,
	"Andy Gospodarek" <andy@greyhouse.net>,
	"Sergey Matyukevich" <geomatsi@gmail.com>,
	"Rohit Maheshwari" <rohitm@chelsio.com>,
	ceph-devel@vger.kernel.org,
	"Jozsef Kadlecsik" <kadlec@netfilter.org>,
	"Nilesh Javali" <njavali@marvell.com>,
	"Jean-Paul Roubelat" <jpr@f6fbb.org>,
	"Dick Kennedy" <dick.kennedy@broadcom.com>,
	"Jay Vosburgh" <j.vosburgh@gmail.com>,
	"Potnuri Bharat Teja" <bharat@chelsio.com>,
	"Vinay Kumar Yadav" <vinay.yadav@chelsio.com>,
	linux-nfs@vger.kernel.org, "Nicholas Piggin" <npiggin@gmail.com>,
	"Igor Mitsyanko" <imitsyanko@quantenna.com>,
	"Andy Lutomirski" <luto@kernel.org>,
	linux-hams@vger.kernel.org,
	"Thomas Gleixner" <tglx@linutronix.de>,
	"Trond Myklebust" <trond.myklebust@hammerspace.com>,
	linux-raid@vger.kernel.org, "Neil Horman" <nhorman@tuxdriver.com>,
	"Hante Meuleman" <hante.meuleman@broadcom.com>,
	"Greg Kroah-Hartman" <gregkh@linuxfoundation.org>,
	linux-usb@vger.kernel.org,
	"Michael Chan" <michael.chan@broadcom.com>,
	linux-kernel@vger.kernel.org, "Varun Prakash" <varun@chelsio.com>,
	"Chuck Lever" <chuck.lever@oracle.com>,
	netfilter-devel@vger.kernel.org,
	"Masami Hiramatsu" <mhiramat@kernel.org>,
	"Jiri Olsa" <jolsa@kernel.org>, "Jan Kara" <jack@suse.com>,
	linux-fsdevel@vger.kernel.org,
	"Lars Ellenberg" <lars.ellenberg@linbit.com>,
	linux-media@vger.kernel.org,
	"Claudiu Beznea" <claudiu.beznea@microchip.com>,
	"Sharvari Harisangam" <sharvari.harisangam@nxp.com>,
	linux-fbdev@vger.kernel.org, linux-doc@vger.kernel.org,
	linux-mmc@vger.kernel.org,
	"Dave Hansen" <dave.hansen@linux.intel.com>,
	"Song Liu" <song@kernel.org>,
	"Eric Dumazet" <edumazet@google.com>,
	target-devel@vger.kernel.org, "John Stultz" <jstultz@google.com>,
	"Stanislav Fomichev" <sdf@googl>
Subject: Re: [PATCH v1 3/5] treewide: use get_random_u32() when possible
Date: Thu, 6 Oct 2022 10:43:31 +0200	[thread overview]
Message-ID: <20221006084331.4bdktc2zlvbaszym@quack3> (raw)
In-Reply-To: <20221005214844.2699-4-Jason@zx2c4.com>

On Wed 05-10-22 23:48:42, Jason A. Donenfeld wrote:
> The prandom_u32() function has been a deprecated inline wrapper around
> get_random_u32() for several releases now, and compiles down to the
> exact same code. Replace the deprecated wrapper with a direct call to
> the real function.
> 
> Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>

...

> diff --git a/fs/ext2/ialloc.c b/fs/ext2/ialloc.c
> index 998dd2ac8008..e439a872c398 100644
> --- a/fs/ext2/ialloc.c
> +++ b/fs/ext2/ialloc.c
> @@ -277,7 +277,7 @@ static int find_group_orlov(struct super_block *sb, struct inode *parent)
>  		int best_ndir = inodes_per_group;
>  		int best_group = -1;
>  
> -		group = prandom_u32();
> +		group = get_random_u32();
>  		parent_group = (unsigned)group % ngroups;
>  		for (i = 0; i < ngroups; i++) {
>  			group = (parent_group + i) % ngroups;

The code here is effectively doing the

	parent_group = prandom_u32_max(ngroups);

> diff --git a/fs/ext4/ialloc.c b/fs/ext4/ialloc.c
> index f73e5eb43eae..954ec9736a8d 100644
> --- a/fs/ext4/ialloc.c
> +++ b/fs/ext4/ialloc.c
> @@ -465,7 +465,7 @@ static int find_group_orlov(struct super_block *sb, struct inode *parent,
>  			ext4fs_dirhash(parent, qstr->name, qstr->len, &hinfo);
>  			grp = hinfo.hash;
>  		} else
> -			grp = prandom_u32();
> +			grp = get_random_u32();

Similarly here we can use prandom_u32_max(ngroups) like:

		if (qstr) {
			...
			parent_group = hinfo.hash % ngroups;
		} else
			parent_group = prandom_u32_max(ngroups);

> diff --git a/fs/ext4/mmp.c b/fs/ext4/mmp.c
> index 9af68a7ecdcf..588cb09c5291 100644
> --- a/fs/ext4/mmp.c
> +++ b/fs/ext4/mmp.c
> @@ -265,7 +265,7 @@ static unsigned int mmp_new_seq(void)
>  	u32 new_seq;
>  
>  	do {
> -		new_seq = prandom_u32();
> +		new_seq = get_random_u32();
>  	} while (new_seq > EXT4_MMP_SEQ_MAX);

OK, here we again effectively implement prandom_u32_max(EXT4_MMP_SEQ_MAX + 1).
Just presumably we didn't want to use modulo here because EXT4_MMP_SEQ_MAX
is rather big and so the resulting 'new_seq' would be seriously
non-uniform.

								Honza
-- 
Jan Kara <jack@suse.com>
SUSE Labs, CR

  reply	other threads:[~2022-10-06 11:27 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-10-05 21:48 [PATCH v1 0/5] treewide cleanup of random integer usage Jason A. Donenfeld
2022-10-05 21:48 ` [PATCH v1 1/5] treewide: use prandom_u32_max() when possible Jason A. Donenfeld
2022-10-06  4:16   ` Kees Cook
2022-10-06  4:22     ` KP Singh
2022-10-06 12:45     ` Jason A. Donenfeld
2022-10-06 12:55       ` Jason Gunthorpe
2022-10-06 13:05         ` Andy Shevchenko
2022-10-05 21:48 ` [PATCH v1 2/5] treewide: use get_random_{u8,u16}() " Jason A. Donenfeld
2022-10-06  4:38   ` Kees Cook
2022-10-06 12:28     ` Jason A. Donenfeld
2022-10-05 21:48 ` [PATCH v1 3/5] treewide: use get_random_u32() " Jason A. Donenfeld
2022-10-06  8:43   ` Jan Kara [this message]
2022-10-06 12:33     ` [f2fs-dev] " Jason A. Donenfeld
2022-10-06 13:01       ` Andy Shevchenko
2022-10-06 13:07         ` Jason A. Donenfeld
2022-10-06 12:47   ` Jason Gunthorpe
2022-10-06 13:05     ` Jason A. Donenfeld
2022-10-06 13:15       ` Jason Gunthorpe
2022-10-06 13:20       ` Andy Shevchenko
2022-10-12 19:16   ` Joe Perches
2022-10-12 21:29     ` David Laight
2022-10-13  1:37       ` Joe Perches
2022-10-05 21:48 ` [PATCH v1 4/5] treewide: use get_random_bytes " Jason A. Donenfeld
2022-10-06  4:45   ` Kees Cook
2022-10-06  4:48   ` Kees Cook
2022-10-05 21:48 ` [PATCH v1 5/5] prandom: remove unused functions Jason A. Donenfeld
2022-10-06  4:39   ` Kees Cook
2022-10-06  4:55 ` [PATCH v1 0/5] treewide cleanup of random integer usage Kees Cook
2022-10-06  5:40   ` Kees Cook
2022-10-06 12:53   ` Jason A. Donenfeld
2022-10-06 13:49 ` [f2fs-dev] " Jason A. Donenfeld

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20221006084331.4bdktc2zlvbaszym@quack3 \
    --to=jack@suse.cz \
    --cc=Jason@zx2c4.com \
    --cc=andrew@lunn.ch \
    --cc=andrii@kernel.org \
    --cc=andy@greyhouse.net \
    --cc=bharat@chelsio.com \
    --cc=ceph-devel@vger.kernel.org \
    --cc=chuck.lever@oracle.com \
    --cc=claudiu.beznea@microchip.com \
    --cc=dave.hansen@linux.intel.com \
    --cc=dick.kennedy@broadcom.com \
    --cc=djwong@kernel.org \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=edumazet@google.com \
    --cc=geomatsi@gmail.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=hante.meuleman@broadcom.com \
    --cc=haris.iqbal@ionos.com \
    --cc=hch@lst.de \
    --cc=hverkuil@xs4all.nl \
    --cc=imitsyanko@quantenna.com \
    --cc=j.vosburgh@gmail.com \
    --cc=jack@suse.com \
    --cc=jolsa@kernel.org \
    --cc=jpr@f6fbb.org \
    --cc=jstultz@google.com \
    --cc=kadlec@netfilter.org \
    --cc=lars.ellenberg@linbit.com \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-fbdev@vger.kernel.org \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=linux-hams@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-media@vger.kernel.org \
    --cc=linux-mmc@vger.kernel.org \
    --cc=linux-nfs@vger.kernel.org \
    --cc=linux-raid@vger.kernel.org \
    --cc=linux-sctp@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=luto@kernel.org \
    --cc=mhiramat@kernel.org \
    --cc=michael.chan@broadcom.com \
    --cc=miquel.raynal@bootlin.com \
    --cc=netfilter-devel@vger.kernel.org \
    --cc=nhorman@tuxdriver.com \
    --cc=njavali@marvell.com \
    --cc=npiggin@gmail.com \
    --cc=rohitm@chelsio.com \
    --cc=sdf@googl \
    --cc=sharvari.harisangam@nxp.com \
    --cc=song@kernel.org \
    --cc=target-devel@vger.kernel.org \
    --cc=tglx@linutronix.de \
    --cc=trond.myklebust@hammerspace.com \
    --cc=ulf.hansson@linaro.org \
    --cc=varun@chelsio.com \
    --cc=vinay.yadav@chelsio.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).