This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Colm Buckley
Recipients Colm Buckley, doko, lemburg, matejcik, rhettinger, skrah, socketpair, thomas-petazzoni, vstinner
Date 2016-05-13.08:18:43
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1463127523.86.0.358210205168.issue26839@psf.upfronthosting.co.za>
In-reply-to
Content
The attached patch (against 20160330) addresses the issue for me on Linux; it has not been tested on other platforms. It adds the GRND_NONBLOCK flag to the getrandom() call and sends the appropriate failure return if it returns due to lack of entropy. The enclosing functions fall back to reading from /dev/urandom in this case.

Affected files:

Python/random.c - changes to py_getrandom()
configure.ac and pyconfig.h.in - look for linux/random.h for inclusion

Can this, or something similar, be considered for integration with mainline?
History
Date User Action Args
2016-05-13 08:18:43Colm Buckleysetrecipients: + Colm Buckley, lemburg, rhettinger, doko, vstinner, matejcik, skrah, socketpair, thomas-petazzoni
2016-05-13 08:18:43Colm Buckleysetmessageid: <1463127523.86.0.358210205168.issue26839@psf.upfronthosting.co.za>
2016-05-13 08:18:43Colm Buckleylinkissue26839 messages
2016-05-13 08:18:43Colm Buckleycreate