public inbox for libc-help@sourceware.org
 help / color / mirror / Atom feed
From: Xinzhen Chen <mostevercxz@gmail.com>
To: libc-help@sourceware.org
Subject: What is the reason for multiplying 10 in __srandom_r?
Date: Thu, 31 May 2018 03:04:00 -0000	[thread overview]
Message-ID: <CAJkDRHd4BUPL-owpoHwHm0mWFkdNk47eOSckW1UeD77-o78HYA@mail.gmail.com> (raw)

Hello, glibc developers :-)

I was trying to understand what functions like rand() do under the hood. I
compiled glibc 2.27 from source and link the new compiled libc.so.6 to my
test C program in the following:

#include <stdlib.h>
#include <stdio.h>

int main(int argc, char const* argv[])
{
int randt[32] = {0};
initstate(2, (char*)randt, 128);
setstate((char*)randt);
printf("%d\n", rand());
return 0;
}

I used gdb to step into initstate() function and got confused when I
stepped into the following line of  __srandom_r function:

  kc = buf->rand_deg;
  for (i = 1; i < kc; ++i)
    {
      /* This does:
   state[i] = (16807 * state[i - 1]) % 2147483647;
but avoids overflowing 31 bits.  */
    }

  buf->fptr = &state[buf->rand_sep];
  buf->rptr = &state[0];
  kc *= 10;
  while (--kc >= 0)
    {
      int32_t discard;
      (void) __random_r (buf, &discard);
    }

I also read the comment of  __srandom_r function which says "Lastly, it
cycles the state information a given number of times to get rid of any
initial dependencies introduced by the L.C.R.N.G.".

My questions are:
1. Why the " given number of times" is "kc * 10" instead of "kc * 8" or "kc
* 16" which is more efficient in multiplication?
2. Are there papers or books which dive into glibc random implementation
?(I've read some chapters of <TAOCP vol 2>, <Advanced mordern algebra>,but
still can not totally understand the implementation of glibc random
functions)

             reply	other threads:[~2018-05-31  3:04 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-05-31  3:04 Xinzhen Chen [this message]
2018-05-31 15:14 ` Patrick McGehearty

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=CAJkDRHd4BUPL-owpoHwHm0mWFkdNk47eOSckW1UeD77-o78HYA@mail.gmail.com \
    --to=mostevercxz@gmail.com \
    --cc=libc-help@sourceware.org \
    /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 read-only IMAP folder(s) and NNTP newsgroup(s).