ruby-core@ruby-lang.org archive (unofficial mirror)
 help / color / mirror / Atom feed
* [ruby-core:101797] [Ruby master Bug#17489] Ractor segfaults
@ 2020-12-28 21:23 shatrov
  2021-01-05  1:34 ` [ruby-core:101919] " ko1
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: shatrov @ 2020-12-28 21:23 UTC (permalink / raw)
  To: ruby-core

Issue #17489 has been reported by kirs (Kir Shatrov).

----------------------------------------
Bug #17489: Ractor segfaults
https://bugs.ruby-lang.org/issues/17489

* Author: kirs (Kir Shatrov)
* Status: Open
* Priority: Normal
* Backport: 2.5: UNKNOWN, 2.6: UNKNOWN, 2.7: UNKNOWN
----------------------------------------
I was able to boil it down to this script:

```ruby
require 'bundler/inline'

gemfile do
  source 'https://rubygems.org'
  gem "sinatra", "~> 2.1"
end

require 'sinatra'

class App < Sinatra::Base
  get '/' do
    200
  end
end

module Sinatra
  class Base
    class << self
      # patch it to avoid hitting other unsafe things
      def setup_default_middleware(builder)
        builder.use Rack::NullLogger
      end
    end
  end
end

workers = 2.times.map do
  Ractor.new { App.new }
end

Ractor.select(*workers)
```

Even though the code doesn't make a lot of sense and Sinatra has other stuff that's not compatible with Ractor, I would not expect user-level Ruby code to segfault.


I have attach the crash report and stderr output.

---Files--------------------------------
segfault.dump (44.8 KB)
ruby_2020-12-29-002108_Kirs-MacBook-Pro-2.crash (27.9 KB)


-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2022-03-26 20:36 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-28 21:23 [ruby-core:101797] [Ruby master Bug#17489] Ractor segfaults shatrov
2021-01-05  1:34 ` [ruby-core:101919] " ko1
2021-01-05 21:25 ` [ruby-core:101940] " yura.des
2022-03-25 11:29 ` [ruby-core:108066] " wanabe (_ wanabe)
2022-03-26  9:50 ` [ruby-core:108083] " kirs (Kir Shatrov)
2022-03-26 20:36 ` [ruby-core:108086] " wanabe (_ wanabe)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).