vote up 2 vote down star

As long as concurrent calls don't cause seg-v's or return the same value, what reasons are there for preventing race conditions and data corruption in PRNGs when those error's primary effects are unpredictable results and that is the point of a PRNG?


Edit: are there any PRNG that wouldn't suffer under race conditions and data corruption?

flag

50% accept rate
Am I missing something or do you mean PRNG? – Jon B Mar 5 at 20:15
The english language: gotta love it. – BCS Mar 5 at 21:13
@BCS - May as well fix the title while you're at it... – Daniel LeCheminant Mar 5 at 21:14

2 Answers

vote up 2 vote down check

PRNGs are meticulously constructed tools -- frankly, if race conditions and threading bugs were a good PRNG, the implementation would be written that way.

The problem with adding threading bugs to increase randomness is that it's an unstudied change to the generator. Existing secure algorithms and implementations have been exhaustively tested; if you want to try an unsafe variant, you'll need to do the statistical grunt work to show that it's at least as random as a normal PRNG.

link|flag
I'm not referring to intentionally adding threading bugs, but not going out of your way to avoid them. – BCS Mar 5 at 22:12
Fair enough -- but the effect will be the same if a bug sneaks in edgeways. ;) If you have the option of wrapping a static synchronized class around the PRNG's calls, that could be easiest. I really doubt a good PRNG could be constructed with a step operation small enough to be atomic. – ojrac Mar 5 at 23:31
You wouldn't be able to create a PRNG with a step operation that IS atomic, but you could fairly easily create one that APPEARS to be atomic, thus avoiding the costly thread locking calls. I would give an example, but PRNGs can vary too much to actually give a general example, it's a tricky thing to get lock free code going, if you already understand it, then it shouldn't be too hard to work out an implementation yourself, otherwise there is a lot of learning and trial and error before you get the hang of it and can apply one concept to a completely different algorithm – Grant Peters Aug 12 at 13:08
I think we're talking about different things entirely. Race conditions are a bug, even in a program to produce random output. If you want to create nondeterministic output, use a geiger counter, or something. – ojrac Aug 12 at 15:04
1  
Yes, race conditions are a bug, but "wrapping a static synchronized class around the PRNG's calls" will cause massive speed issues, I was just saying that you could avoid race conditions via lock-free methods rather than relatively slow synchronization primitives – Grant Peters Aug 15 at 11:45
show 1 more comment
vote up 4 vote down

when those error's primary effects are unpredictable results and that is the point of a PRNG?

"Random" is not the same as unpredictable - Random implies a certain distribution that is very important to maintain should you want real random numbers. If your random numbers are predictable in any way it can be a security issue, or at least a program bug

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.