Re: Concurrent access to /dev/urandom

From: Bernard Normier
Date: Sun Nov 28 2004 - 16:00:06 EST


Rule of thumb: Post the smallest possible code that shows the problem.
Will do next time!

That would be great, because it could show that urandom is missing a lock
somewhere.

Here is a smaller version (102 lines vs 173 before). It's difficult to get something very very small since I need to start a few threads.

Bernard

#include <pthread.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <assert.h>
#include <errno.h>

#include <set>
#include <iostream>
using namespace std;

// Each thread will generate keyCount keys
static int threadCount = 3;
static int keyCount = 1000000 / threadCount;

// When not defined, all threads read /dev/urandom concurrently
// #define SERIALIZE_READS 1

struct Key
{
long long high;
long long low;

bool operator<(const Key& rhs) const
{
return high < rhs.high || (high == rhs.high && low < rhs.low);
}
};

static set<Key> keySet;
static pthread_mutex_t keySetMutex = PTHREAD_MUTEX_INITIALIZER;

extern "C" void* readRandom(void*)
{
for(int i = 0; i < keyCount; ++i)
{
int fd = open("/dev/urandom", O_RDONLY);
assert(fd != -1);

#ifdef SERIALIZE_READS
int err = pthread_mutex_lock(&keySetMutex);
assert(err == 0);
#endif
size_t index = 0;
char buffer[sizeof(Key)];

while(index != sizeof(Key))
{
ssize_t bytesRead = read(fd, buffer + index, sizeof(Key) - index);

if(bytesRead == -1)
{
if(errno != EINTR)
{
close(fd);
return reinterpret_cast<void*>(-1);
}
}
else
{
index += bytesRead;
}
}

close(fd);

#ifndef SERIALIZE_READS
int err = pthread_mutex_lock(&keySetMutex);
assert(err == 0);
#endif
pair<set<Key>::iterator, bool> result = keySet.insert(reinterpret_cast<Key&>(buffer));
if(!result.second)
{
cerr << "Found duplicate!" << endl;
}
err = pthread_mutex_unlock(&keySetMutex);
assert(err == 0);
}

return 0;
}

int main(int argc, char* argv[])
{
pthread_t* threads = new pthread_t[threadCount];
for(int i = 0; i < threadCount; ++i)
{
int err = pthread_create(&threads[i], 0, readRandom, 0);
assert(err == 0);
}
for(int i = 0; i < threadCount; ++i)
{
void* threadStatus;
int err = pthread_join(threads[i], &threadStatus);
assert(err == 0);
assert(threadStatus == 0);
}

delete[] threads;
return 0;
}

// build with g++ -D_REENTRANT -o utest utest.cpp -lpthread



-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/