Symbols garbage collector in Ruby1.9, fixed?

  • Thread starter Iñaki Baz Castillo
  • Start date
I

Iñaki Baz Castillo

Hi, in Ruby 1.8 there is an issue when adding more and more Symbols
since they remain in memory and are never removed.

I'm doing a server in Ruby that receives messages with headers (From,
To, Subject, X-Custom-Header-1...) and after parsing I store the
headers in a hash using symbols as keys:

headers =3D {
:from =3D> "(e-mail address removed)",
:to =3D> "(e-mail address removed)",
:"x-custom-header-1" =3D> "Hi there"
}

I could use strings as keys instead of symbols, but I've checked that
getting a Hash entry is ~25% faster using Symbols.

The problem is that I could receive custom headers so for each one a
new Symbol would be created. An attacker could send lots of custom
headers to fill the server memory and cause a denial of service.

Perhaps this is solved in Ruby 1.9? any suggestion on it? Thanks a lot.


--=20
I=C3=B1aki Baz Castillo
<[email protected]>
 
I

Iñaki Baz Castillo

2009/3/30 I=C3=B1aki Baz Castillo said:
Perhaps this is solved in Ruby 1.9? any suggestion on it? Thanks a lot.

Is there any way to check if a Symbol already exist before creating it?



--=20
I=C3=B1aki Baz Castillo
<[email protected]>
 
F

F. Senault

Le 30 mars 2009 à 10:09, Iñaki Baz Castillo a écrit :
The problem is that I could receive custom headers so for each one a
new Symbol would be created. An attacker could send lots of custom
headers to fill the server memory and cause a denial of service.

Perhaps this is solved in Ruby 1.9? any suggestion on it? Thanks a lot.

It depends on what exactly you are trying to do with your hash. If you
need to access to a few well known headers in your code, use symbols for
those and add another pseudo-header for the rest of the info :

USEFUL_HEADERS = [ :from, :to, :"x-mailer" ]

headers = {
:from => "(e-mail address removed)",
:to => "(e-mail address removed)",
:"x-mailer" => "Pegasus Mail for Windows (4.50 PB1)",
:"_custom" => {
"x-custom-header-1" => "Hi there",
"x-spam-scanned" => "Of course"
}
}

(Now, you'll lose time at the parse step. Again, depending on what
you're trying to do, it may be efficient if each mail is parsed one time
and, then, each header is accessed a lot of times.)

Fred
 
I

Iñaki Baz Castillo

2009/3/30 F. Senault said:
It depends on what exactly you are trying to do with your hash. =C2=A0If = you
need to access to a few well known headers in your code, use symbols for
those and add another pseudo-header for the rest of the info :

USEFUL_HEADERS =3D [ :from, :to, :"x-mailer" ]

headers =3D {
=C2=A0:from =3D> "(e-mail address removed)",
=C2=A0:to =3D> "(e-mail address removed)",
=C2=A0:"x-mailer" =3D> "Pegasus Mail for Windows (4.50 PB1)",
=C2=A0:"_custom" =3D> {
=C2=A0 =C2=A0"x-custom-header-1" =3D> "Hi there",
=C2=A0 =C2=A0"x-spam-scanned" =3D> "Of course"
=C2=A0}
}

(Now, you'll lose time at the parse step. =C2=A0Again, depending on what
you're trying to do, it may be efficient if each mail is parsed one time
and, then, each header is accessed a lot of times.)

Thanks, but I prefer to store all the headers in a transparent way so
accessing to a core and well known header is the same as accesing to a
custom and never seen header:
headers[:from]
header[:"x-custom-headers"]

This is, in the transport/parsing layer I cannot know which headers
will be important or not in the "application" layer.

A way to check if a Symbol already exist would be enought for me, but
it doesn't work:
To know all the current Symbols I can inspect Symbol.all_symbols, but
if I want to check a Symbol:
Symbol.all_symbols.include?:)new_symbol)
this will always return true since :new_symbol is automatically added XDDD

Thanks.

--=20
I=C3=B1aki Baz Castillo
<[email protected]>
 
B

Bill Kelly

From: "Iñaki Baz Castillo said:
A way to check if a Symbol already exist would be enought for me, but
it doesn't work:
To know all the current Symbols I can inspect Symbol.all_symbols, but
if I want to check a Symbol:
Symbol.all_symbols.include?:)new_symbol)
this will always return true since :new_symbol is automatically added XDDD

potential_new_symbol = "xyzzy"
Symbol.all_symbols.map {|s| s.to_s}.include? potential_new_symbol


?


Regards,

Bil
 
F

F. Senault

Le 30 mars 2009 à 11:17, Iñaki Baz Castillo a écrit :
A way to check if a Symbol already exist would be enought for me, but
it doesn't work:
To know all the current Symbols I can inspect Symbol.all_symbols, but
if I want to check a Symbol:
Symbol.all_symbols.include?:)new_symbol)

Symbol.all_symbols.find { |s| s.to_s == "string" }

But, now, you're creating strings instead... :)

Fred
 
I

Iñaki Baz Castillo

2009/3/30 Bill Kelly said:
potential_new_symbol =3D "xyzzy"
Symbol.all_symbols.map {|s| s.to_s}.include? potential_new_symbol

Thanks but it is too slow:

Benchmark.realtime{ Symbol.all_symbols.map {|s| s.to_s}.include? "qwe" }
=3D> 0.00371980667114258

I cannot do this test for each header in each received message.

Thanks.



?


Regards,

Bil



--=20
I=C3=B1aki Baz Castillo
<[email protected]>
 
B

Bill Kelly

From: "Iñaki Baz Castillo said:
Thanks but it is too slow:

Benchmark.realtime{ Symbol.all_symbols.map {|s| s.to_s}.include? "qwe" }
=> 0.00371980667114258

I cannot do this test for each header in each received message.

I assumed you had a plan for that. :)

We could cache them as a hash, for rapid lookup:

@known_symbols = Hash[ *Symbol.all_symbols.map {|s| [s.to_s,true]}.flatten ]

# Later....

@known_symbols.include? "xyzzy"


Regards,

Bill
 
I

Iñaki Baz Castillo

2009/3/30 Bill Kelly said:
Thanks but it is too slow:

Benchmark.realtime{ Symbol.all_symbols.map {|s| s.to_s}.include? "qwe" }
=3D> 0.00371980667114258

I cannot do this test for each header in each received message.

I assumed you had a plan for that. =C2=A0:)

We could cache them as a hash, for rapid lookup:

=C2=A0@known_symbols =3D Hash[ *Symbol.all_symbols.map {|s| [s.to_s,true]= }.flatten
]

# Later....

=C2=A0@known_symbols.include? "xyzzy"

That sounds interesting, I'll try it.

Thanks :)


--=20
I=C3=B1aki Baz Castillo
<[email protected]>
 
R

Rick DeNatale

Hi, in Ruby 1.8 there is an issue when adding more and more Symbols
since they remain in memory and are never removed.

I'm doing a server in Ruby that receives messages with headers (From,
To, Subject, X-Custom-Header-1...) and after parsing I store the
headers in a hash using symbols as keys:

headers =3D {
:from =3D> "(e-mail address removed)",
:to =3D> "(e-mail address removed)",
:"x-custom-header-1" =3D> "Hi there"
}

I could use strings as keys instead of symbols, but I've checked that
getting a Hash entry is ~25% faster using Symbols.

The problem is that I could receive custom headers so for each one a
new Symbol would be created. An attacker could send lots of custom
headers to fill the server memory and cause a denial of service.

Which is why Rails (actually activesupport) which implements a
HashWithIndifferentAccess to allows using strings and symbols equivalently
for hash access, uses the string form in the actual hash forgoing the acces=
s
performance in favor of safety.


--=20
Rick DeNatale

Blog: http://talklikeaduck.denhaven2.com/
Twitter: http://twitter.com/RickDeNatale
WWR: http://www.workingwithrails.com/person/9021-rick-denatale
LinkedIn: http://www.linkedin.com/in/rickdenatale
 
B

Brian Candler

Iñaki Baz Castillo said:
I could use strings as keys instead of symbols, but I've checked that
getting a Hash entry is ~25% faster using Symbols.

The problem is that I could receive custom headers so for each one a
new Symbol would be created. An attacker could send lots of custom
headers to fill the server memory and cause a denial of service.

Perhaps this is solved in Ruby 1.9? any suggestion on it? Thanks a lot.

It's not "solved" in 1.9, because this is intentional and necessary
behaviour.

The important property of a symbol is that it has the same id wherever
and whenever it is used in your program, and hence it can never be
garbage-collected. This is so that it can be used for looking up method
names - foo.bar is a shortcut for foo.send:)bar)

Using symbols for hash keys is a common idiom, but arguably is abuse of
the symbol table. It's fine as long as all the keys are fixed symbol
constants in your program, but as you've observed, it causes huge
problems if your symbols are generated dynamically in response to user
data (especially from untrusted or potentially malicious sources)

The solution: use strings as keys, and beware premature optimisation.
Whilst you may have measured that "getting a Hash entry is 25% faster
using Symbols", does this really make your whole application 25% faster?
I suspect not. Maybe it makes your whole application 0.25% faster. Maybe
it makes your application slower, as each incoming String has to be
converted into a Symbol.

In any case, although we all want things to go "as fast as possible",
few applications have a specific acceptance criteria for CPU utilisation
or response time. If your application *does* have a specific performance
criterion that you must meet, then it might be better to consider a
different language, rather than mis-using what Ruby offers. Or including
all things like development costs, it may be more cost-effective to
choose faster hardware to meet the performance goal.

Regards,

Brian.
 
I

Iñaki Baz Castillo

2009/3/30 Brian Candler said:
It's not "solved" in 1.9, because this is intentional and necessary
behaviour.

The important property of a symbol is that it has the same id wherever
and whenever it is used in your program, and hence it can never be
garbage-collected. This is so that it can be used for looking up method
names - foo.bar is a shortcut for foo.send:)bar)

Using symbols for hash keys is a common idiom, but arguably is abuse of
the symbol table. It's fine as long as all the keys are fixed symbol
constants in your program, but as you've observed, it causes huge
problems if your symbols are generated dynamically in response to user
data (especially from untrusted or potentially malicious sources)

The solution: use strings as keys, and beware premature optimisation.
Whilst you may have measured that "getting a Hash entry is 25% faster
using Symbols", does this really make your whole application 25% faster?
I suspect not. Maybe it makes your whole application 0.25% faster. Maybe
it makes your application slower, as each incoming String has to be
converted into a Symbol.

In any case, although we all want things to go "as fast as possible",
few applications have a specific acceptance criteria for CPU utilisation
or response time. If your application *does* have a specific performance
criterion that you must meet, then it might be better to consider a
different language, rather than mis-using what Ruby offers. Or including
all things like development costs, it may be more cost-effective to
choose faster hardware to meet the performance goal.

Ok, thanks for your explanation.

--=20
I=C3=B1aki Baz Castillo
<[email protected]>
 
D

David Masover


That article looks like pure speculation.

Alright, yes, #to_i and #id2name and similar are gone. That makes sense --
encapsulate things the average user really doesn't need. Theoretically, these
could allow Symbols to be implemented in the heap, if needed. Or it would
allow them to be implemented in some way that looks nothing like the current
concept of an integer.

However, the purpose of symbols, I would think, remains the same.

And given the purpose of symbols, and the dynamic nature of Ruby (it has
eval!), there's really no way you could ever garbage collect symbols.

You could implement symbols as immutable strings on the heap, and do string
comparisons between them, but that would defeat the purpose of symbols, at
least in every program I've ever wrote -- to avoid string comparisons, and to
be generally much faster than strings.

And for that matter, if you really, really want to be digging around at that
low level, you still can:

irb(main):001:0> :foo.object_id
=> 351848
irb(main):002:0> ObjectSpace._id2ref 351848
=> :foo
 
T

Tony Arcieri

Hi, in Ruby 1.8 there is an issue when adding more and more Symbols
since they remain in memory and are never removed.

I'm doing a server in Ruby that receives messages with headers (From,
To, Subject, X-Custom-Header-1...) and after parsing I store the
headers in a hash using symbols as keys:

headers =3D {
:from =3D> "(e-mail address removed)",
:to =3D> "(e-mail address removed)",
:"x-custom-header-1" =3D> "Hi there"
}

I could use strings as keys instead of symbols, but I've checked that
getting a Hash entry is ~25% faster using Symbols.

Use symbols... FOR SPEED! Unfortunately that speed comes at a price... you
really want to globally internalize arbitrary input? Symbols are
effectively a freeform enumeration... the reason you're running into
problems is because you're trying to enumerate arbitrary inputs.

Is this really an important bottleneck in your application? If not, use
strings and move on.

--=20
Tony Arcieri
medioh.com
 
I

Iñaki Baz Castillo

El Jueves 02 Abril 2009, Tony Arcieri escribi=C3=B3:
Use symbols... FOR SPEED! Unfortunately that speed comes at a price... y= ou
really want to globally internalize arbitrary input? Symbols are
effectively a freeform enumeration... the reason you're running into
problems is because you're trying to enumerate arbitrary inputs.

Yes. It's a parser so custom headers could arrive. I want to store them in =
a=20
hash like:

headers =3D { :from =3D> "alice@qweeq", ":to =3D> "bob@qweqwe }

So after parsing the message I create these entries. The problem is that an=
y=20
custom header would create a Symbol.

Is this really an important bottleneck in your application?

I think it's important since after parsing hte main task of the server will=
be=20
accessing some headers to read their content. But since it's just in a very=
=20
early stage I cannot sure it.

Thanks.




=2D-=20
I=C3=B1aki Baz Castillo <[email protected]>
 
R

Rob Biedenharn

El Jueves 02 Abril 2009, Tony Arcieri escribi=F3:


Yes. It's a parser so custom headers could arrive. I want to store =20
them in a
hash like:

headers =3D { :from =3D> "alice@qweeq", ":to =3D> "bob@qweqwe }

So after parsing the message I create these entries. The problem is =20=
that any
custom header would create a Symbol.



I think it's important since after parsing hte main task of the =20
server will be
accessing some headers to read their content. But since it's just in =20=
a very
early stage I cannot sure it.

Thanks.
--=20
I=F1aki Baz Castillo <[email protected]>


Just key the hash with Strings:
headers =3D { 'from' =3D> "alice@qweeq", 'to' =3D> "bob@qweeq" }

If you really need to use symbols, perhaps add methods to a subclass =20
of Hash like the HashWithIndifferentAccess from Rails which mostly =20
eliminates the need to care whether you actually stored against a =20
Symbol or a String key.

There's also nothing stopping you from having both kinds of keys at =20
once:
headers =3D { :from =3D> "alice@qweeq", :to =3D> "bob@qweeq", 'snack' =
=3D> =20
"raisins" }

but then you might have to "worry" about having both :to and 'to' as =20
keys.

Symbols are only faster because they are immutable and don't get =20
garbage collected. But I'd go with Tony and just use String all the =20
time.

-Rob

Rob Biedenharn http://agileconsultingllc.com
(e-mail address removed)
 
R

Rick DeNatale

[Note: parts of this message were removed to make it a legal post.]

If you really need to use symbols, perhaps add methods to a subclass of
Hash like the HashWithIndifferentAccess from Rails which mostly eliminates
the need to care whether you actually stored against a Symbol or a String
key.

There's also nothing stopping you from having both kinds of keys at once:
headers = { :from => "alice@qweeq", :to => "bob@qweeq", 'snack' =>
"raisins" }

but then you might have to "worry" about having both :to and 'to' as keys.

Symbols are only faster because they are immutable and don't get garbage
collected. But I'd go with Tony and just use String all the time.

Actually, I'm pretty sure that Symbols are faster as hash keys because
Hash#== is O(1) while String#== is O(n) where n is the length of the string.
That said, the HashWithIndifferentAccess class in activesupport allows
either strings or symbols to be used interchangeably as the key argument in
methods like [] and []=, but it always USES the string form as the key.

I was quite surprised when I discovered this, since I'd assumed that the
reason for using symbols was for the speed advantage, but it was finally
pointed out to me the problem of "memory leaks" when arbitrary keys get
interned as symbols.

But I do in general prefer the look in source code of

:id => 3

rather than

'id' = > 3

And when the symbols come in the source like this there's less chance of
arbitrary growth of interned symbols.

--
Rick DeNatale

Blog: http://talklikeaduck.denhaven2.com/
Twitter: http://twitter.com/RickDeNatale
WWR: http://www.workingwithrails.com/person/9021-rick-denatale
LinkedIn: http://www.linkedin.com/in/rickdenatale
 
M

Michael Neumann

Iñaki Baz Castillo said:
El Jueves 02 Abril 2009, Tony Arcieri escribió:


Yes. It's a parser so custom headers could arrive. I want to store them in
a hash like:

headers = { :from => "alice@qweeq", ":to => "bob@qweqwe }

I'd figure out what very common headers are and make them freezed constants,
like:

FROM = "From".freeze
TO = "To".freeze

and put references to those string "constants" as keys into the Hash. I
assume that this will be as fast as symbols when accessing the hash with
those constants, as equality testing just needs to tests for object identity
(object_id) and not for the equality of the content.

headers = {}
headers[FROM] = "alice@qweeq"
headers[TO] = "bob@qweqwe"

...

p headers[TO]
p headers["To"] # works as well, but should be slower


Would you like to benchmark this against using symbols?

Btw, this is the approach that for example Mongrel uses.

Regards,

Michael
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,770
Messages
2,569,583
Members
45,073
Latest member
DarinCeden

Latest Threads

Top