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 jbeck
Recipients dstufft, jbeck, tim.peters, vstinner
Date 2015-09-09.15:17:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1441811826.57.0.44865993092.issue25003@psf.upfronthosting.co.za>
In-reply-to
Content
@haypo: Yes, that patch works (applied to 3.5.0rc3; proxy problems are preventing me from updating my clone of the default branch at the moment) i.e., pyconfig.h shows:

#define HAVE_GETRANDOM_SYSCALL 1

To answer your other questions:
* Calling syscall(SYS_getrandom, buffer, size, 0) does work on Solaris.
* Our <sys/syscall.h> does declare syscall().
* Solaris does not use the GNU C library, but our own libc, which does
  support getrandom(3) as of Solaris 11.3 (which will be released in
  the near future) and Solaris 12 (which is in Beta but has a release
  date in the more distant future).

Prior to applying this patch, I had needed to tweak py_getrandom() to recognize EINVAL in addition to ENOSYS as sufficient reason to turn off getrandom_works.  I still have that tweak in place, but have not yet tried backing it out to see if things still behave with your patch.

Let me know if there is any more information I can provide, and thanks for your attention to this issue.
History
Date User Action Args
2015-09-09 15:17:06jbecksetrecipients: + jbeck, tim.peters, vstinner, dstufft
2015-09-09 15:17:06jbecksetmessageid: <1441811826.57.0.44865993092.issue25003@psf.upfronthosting.co.za>
2015-09-09 15:17:06jbecklinkissue25003 messages
2015-09-09 15:17:04jbeckcreate