Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game. |
| Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
05-14-2008, 05:04 AM
|
#1
|
|
LQ Newbie
Registered: May 2008
Posts: 3
Rep:
|
random numbers - kernel
Hello everybody,
I need to generate random numbers inside the linux kernel, but i tried with the normal rand and srand and this is not possible because they are from stdlib.h of C.
Then i discover the function get_random_bytes (void *buf, int nbytes). I'm not understanding well this function. If i make this:
int i;
get_random_bytes ( &i, sizeof (i) );
this function will put in the address of "i" one random integer number?? And how can I bound the generation of numbers as in rand()%100 in C, that in this case generates only numbers at max 100?
Thanks a lot,
LUCAS
|
|
|
|
05-14-2008, 06:41 AM
|
#2
|
|
Senior Member
Registered: Aug 2002
Location: Groningen, The Netherlands
Distribution: ubuntu
Posts: 2,530
Rep: 
|
Quote:
Originally Posted by lggrossi
int i;
get_random_bytes ( &i, sizeof (i) );
this function will put in the address of "i" one random integer number?? And how can I bound the generation of numbers as in rand()%100 in C, that in this case generates only numbers at max 100?
|
Just the same way I suppose:
Code:
int i, lessthan100;
get_random_bytes(&i, sizeof(i));
lessthan100 = i % 100;
|
|
|
|
05-16-2008, 11:00 AM
|
#3
|
|
LQ Newbie
Registered: May 2008
Posts: 3
Original Poster
Rep:
|
If i make this:
int i;
get_random_bytes(&i, 1);
i = i % 100;
I suppose that the function will generate a value between 0 and 255 because i specify the number of bytes to be 1 (second argument).
Then, for example if the value is 250, in the third line "i" will receive the remainder of 250/100.
It is ok?
Thanks,
LUCAS
|
|
|
|
05-16-2008, 05:43 PM
|
#4
|
|
Senior Member
Registered: Aug 2002
Location: Groningen, The Netherlands
Distribution: ubuntu
Posts: 2,530
Rep: 
|
I have no experience in the kernel.
But looks OK to me.
|
|
|
|
05-16-2008, 09:02 PM
|
#5
|
|
Member
Registered: Jun 2007
Location: Bavaria
Distribution: slackware, xubuntu
Posts: 143
Rep:
|
What you are aiming for is heavily dependant on the endianness of the system (read: least versus most significant byte). But since "i" initially will contain garbage as well (not initialised) and as you limit the range by the modulo operation this probably even won't make much of a difference to the result. Highly indeterministic though.
|
|
|
|
05-17-2008, 04:47 AM
|
#6
|
|
Senior Member
Registered: Aug 2002
Location: Groningen, The Netherlands
Distribution: ubuntu
Posts: 2,530
Rep: 
|
Ah, yes. That is true.
Better to fill the entire bitspace of the int instead of only one byte. So use:
Code:
get_random_bytes(&i, sizeof(int));
instead of:
Code:
get_random_bytes(&i, 1);
|
|
|
|
05-18-2008, 07:48 AM
|
#7
|
|
LQ Newbie
Registered: May 2008
Posts: 3
Original Poster
Rep:
|
Hi,
Thanks a lot for the help.
LUCAS
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 01:07 AM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|