Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename libafl_bolts::rands::Rand::zero_upto to below_or_zero. #2911

Merged
merged 1 commit into from
Jan 30, 2025

Conversation

Railroad6230
Copy link
Contributor

@Railroad6230 Railroad6230 commented Jan 30, 2025

Hi LibAFL!

I was playing with the Rand trait when I realized that the
documentation of Rand::zero_upto did not match what I was expected:

/// Gets a value between [0, n]
fn zero_upto(&mut self, n: usize) -> usize {
fast_bound_usize(self.next(), n)
}

When using the following RNGs, Rand::zero_upto never returns the upper bound n as it would have been expected according to the documentation:

  • RomuDuoJrRand
  • RomuTrioRand
  • Sfc64Rand
  • XkcdRand
  • XorShift64Rand
  • Xoshiro256PlusPlusRand

The default implementation of Rand::zero_upto is to use fast_bound_usize,
which excludes the given upper bound, thus I believe here that the default implementation
of Rand::zero_upto is wrong.

As discussed here: #2911 (comment),
we believe that renaming the method would be better than changing the actual
implementation.

@tokatoka
Copy link
Member

i think the correct thing to do is to fix the doc, by changing it to [0, n)

@tokatoka
Copy link
Member

i put this function because it is a better alternative than the below function so when i coded it i expected it not to include n.
if you include n then i think it'll break some code in other parts (as the ci failures suggest)

@Railroad6230
Copy link
Contributor Author

if you include n then i think it'll break some code in other parts (as the ci failures suggest)

I was thinking of the same thing as well, but wouldn't it mean that we should also change the function's name?

I'm far from being a native english speaker, but I think that in math, up to means that the upper bound is included, and less than means that it is not.

What do you think?

@tokatoka
Copy link
Member

you can change it to zero_upto_excl() or anything if you have better idea of names.

@tokatoka tokatoka marked this pull request as ready for review January 30, 2025 08:03
@tokatoka
Copy link
Member

i'm fixing ci. and merge to your branch later

Railroad6230 added a commit to Railroad6230/LibAFL that referenced this pull request Jan 30, 2025
Hi LibAFL!

I was playing with the [`Rand`] trait when I realized that the
documentation of [`Rand::zero_upto`] did not match what I was expected:

https://github.com/AFLplusplus/LibAFL/blob/fd6271fa356f3addda6db33f37db7e42a2c99bbc/libafl_bolts/src/rands/mod.rs#L139-L142

When using the following RNGs, [`Rand::zero_upto`] never returns the upper bound `n` as it would have been expected according to the documentation:

 - `RomuDuoJrRand`
 - `RomuTrioRand`
 - `Sfc64Rand`
 - `XkcdRand`
 - `XorShift64Rand`
 - `Xoshiro256PlusPlusRand`

The default implementation of [`Rand::zero_upto`] is to use [`fast_bound_usize`],
which excludes the given upper bound, thus I believe here that the default implementation
of [`Rand::zero_upto`] is wrong.

As discussed here: AFLplusplus#2911 (comment),
we believe that renaming the method would be better than changing the actual
implementation.

[`Rand`]: https://github.com/AFLplusplus/LibAFL/blob/fd6271fa356f3addda6db33f37db7e42a2c99bbc/libafl_bolts/src/rands/mod.rs#L108
[`Rand::zero_upto`]: https://github.com/AFLplusplus/LibAFL/blob/fd6271fa356f3addda6db33f37db7e42a2c99bbc/libafl_bolts/src/rands/mod.rs#L139-L142
[`fast_bound_usize`]: https://github.com/AFLplusplus/LibAFL/blob/fd6271fa356f3addda6db33f37db7e42a2c99bbc/libafl_bolts/src/rands/mod.rs#L100-L103
@Railroad6230 Railroad6230 changed the title Fix default implementation of libafl_bolts::rands::Rand::zero_upto. Rename libafl_bolts::rands::Rand::zero_upto to zero_upto_excl. Jan 30, 2025
@Railroad6230
Copy link
Contributor Author

you can change it to zero_upto_excl() or anything if you have better idea of names.

Sounds good to me.

I've renamed it and I've reverted my changes in the default implementation.

Thank you for your feedback!

@domenukk
Copy link
Member

domenukk commented Jan 30, 2025

Wait, this gets super confusing.
[0, n[ would not include 0 if n == 0(?)
how about naming this below_or_zero?

@tokatoka
Copy link
Member

good for me

Hi LibAFL!

I was playing with the [`Rand`] trait when I realized that the
documentation of [`Rand::zero_upto`] did not match what I was expected:

https://github.com/AFLplusplus/LibAFL/blob/fd6271fa356f3addda6db33f37db7e42a2c99bbc/libafl_bolts/src/rands/mod.rs#L139-L142

When using the following RNGs, [`Rand::zero_upto`] never returns the upper bound `n` as it would have been expected according to the documentation:

 - `RomuDuoJrRand`
 - `RomuTrioRand`
 - `Sfc64Rand`
 - `XkcdRand`
 - `XorShift64Rand`
 - `Xoshiro256PlusPlusRand`

The default implementation of [`Rand::zero_upto`] is to use [`fast_bound_usize`],
which excludes the given upper bound, thus I believe here that the default implementation
of [`Rand::zero_upto`] is wrong.

As discussed here: AFLplusplus#2911 (comment),
we believe that renaming the method would be better than changing the actual
implementation.

[`Rand`]: https://github.com/AFLplusplus/LibAFL/blob/fd6271fa356f3addda6db33f37db7e42a2c99bbc/libafl_bolts/src/rands/mod.rs#L108
[`Rand::zero_upto`]: https://github.com/AFLplusplus/LibAFL/blob/fd6271fa356f3addda6db33f37db7e42a2c99bbc/libafl_bolts/src/rands/mod.rs#L139-L142
[`fast_bound_usize`]: https://github.com/AFLplusplus/LibAFL/blob/fd6271fa356f3addda6db33f37db7e42a2c99bbc/libafl_bolts/src/rands/mod.rs#L100-L103
@Railroad6230 Railroad6230 changed the title Rename libafl_bolts::rands::Rand::zero_upto to zero_upto_excl. Rename libafl_bolts::rands::Rand::zero_upto to below_or_zero. Jan 30, 2025
@Railroad6230
Copy link
Contributor Author

Railroad6230 commented Jan 30, 2025

Wait, this gets super confusing. [0, n[ would not include 0 if n == 0(?) how about naming this below_or_zero?

sounds good to me as well.

Fixed in 3b31a18

@tokatoka tokatoka merged commit 85c1d03 into AFLplusplus:main Jan 30, 2025
106 checks passed
@Railroad6230 Railroad6230 deleted the pr2911 branch January 30, 2025 13:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants