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 vstinner
Recipients dstufft, jbeck, tim.peters, vstinner
Date 2015-09-11.11:19:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1441970363.76.0.306157308642.issue25003@psf.upfronthosting.co.za>
In-reply-to
Content
> But EINVAL should also be checked for to make sure the system call was invoked with proper parameters.

py_getrandom() calls Py_FatalError() or raises an OSError on EINVAL. The error is not silently ignored.


> My builds of Python 3.5.0.X (don't recall whether X was a late Beta or release candidate) were core dumping because Python was making that syscall but not checking for EINVAL,

Py_FatalError() calls abort(). Usually, operating systems dump a core dump in this case. But it is the expected behaviour. Python now refuses to start if the OS random number generator doesn't work. There are similar checks on the system and monotonic clocks for example.

> ... and thus assuming the call was valid, when it was not.

Ah! Finally you explain the problem :-) I wrote py_getrandom() for Linux. I didn't expect other operating systems to implement the getrandom() syscall. I hardcoded the flags (0) for example.

py_getrandom() calls directly the syscall, because I like the new cool getrandom() syscall of Linux: it avoids the need of a private file descriptor. It would be much better to call a function of the C library, but the GNU C library didn't expose the function yet...

On Solaris, the function is available in C, no need to call directly the syscall. It would be better to call the C function, and check if it's available in configure.

Can you please try remove_get_entropy.patch + urandom_solaris.patch?
History
Date User Action Args
2015-09-11 11:19:23vstinnersetrecipients: + vstinner, tim.peters, dstufft, jbeck
2015-09-11 11:19:23vstinnersetmessageid: <1441970363.76.0.306157308642.issue25003@psf.upfronthosting.co.za>
2015-09-11 11:19:23vstinnerlinkissue25003 messages
2015-09-11 11:19:23vstinnercreate