Project

General

Profile

Actions

Backport #7159

closed

SIGSEGV when calling Random#rand after forking

Added by kris7t (Kristóf Marussy) over 11 years ago. Updated over 11 years ago.

Status:
Closed
[ruby-core:47976]

Description

When Kernel#fork is called,
Ruby uninitializes the default random generator Random::DEFAULT
by setting the next field of the struct MT that provides its state to 0.

Kernel#rand correctly initializes this random generator by a seed
when it detects this.
However, Random#rand does not do this and therefore attempting to
call Random#rand in a newly forked child process results in a
segmentation fault, because a null pointer is being dereferenced.

This irb session illustrates the problem:
https://gist.github.com/3888930


Related issues 1 (0 open1 closed)

Is duplicate of Backport193 - Backport #5661: Segfault in Random.rand with Spork gemClosedusa (Usaku NAKAMURA)11/23/2011Actions
Actions #1

Updated by nobu (Nobuyoshi Nakada) over 11 years ago

  • Tracker changed from Bug to Backport
  • Project changed from Ruby master to Backport193
  • Status changed from Open to Assigned
  • Assignee set to usa (Usaku NAKAMURA)
Actions #2

Updated by usa (Usaku NAKAMURA) over 11 years ago

  • Status changed from Assigned to Closed

This issue was solved with changeset r37208.
Andrew, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.


merge revision(s) 34977: [Backport #5661]

* random.c (random_s_rand): ensure default PRNG is re-initialized
  after fork.  patched by Eric Wong.  [ruby-core:41209][Bug #5661]
Actions

Also available in: Atom PDF

Like0
Like0Like0