Bug #6863
closedClass#initialize infinite loops when passed self
Description
=begin
The following code sends Ruby into an infinite loop:
x = Class.allocate
x.send :initialize, x
The problem appears to be in rb_class_initialize (object.c:1564) when Ruby attempts to call (({#inherited})) on the newly created class. The method lookup infinite loops as it tries to descend the ancestor chain.
This should probably throw a (({TypeError})) instead.
=end
Files
Updated by Anonymous about 12 years ago
- File type-error-on-class-inheriting-from-self.patch type-error-on-class-inheriting-from-self.patch added
I've attached a patch that raises a TypeError with the message "circular inheritance detected" when it detects a class either inheriting from itself, or a class inheriting from a subclass of itself.
Updated by shyouhei (Shyouhei Urabe) about 12 years ago
charliesome (Charlie Somerville) wrote:
x = Class.allocate
Why on earth is this allowed? I have no idea how useful an non-initiaized class is.
So instead of checking circular inheritance, I would propose to simply disable Class.allocate.
Updated by Anonymous about 12 years ago
The problem with disabling Class.allocate is that we don't know if anyone is using it out in the wild. Detecting circular inheritance and throwing might be more ideal since it has a smaller breakage potential.
Updated by nobu (Nobuyoshi Nakada) about 12 years ago
- Status changed from Open to Closed
- % Done changed from 0 to 100
This issue was solved with changeset r36714.
Charlie, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
object.c: forbid uninitialized class
- object.c (rb_class_initialize): forbid inheriting uninitialized
class. another class tree not based on BasicObject cannot exist.
[ruby-core:47148][Bug #6863]