vote up 7 vote down star

I have been using eval feature of ruby many a times. But I have heard people saying evals are nasty. When asked, why and how, I could never get a convincing reason not to use it. Are they really nasty? If yes, in what way? What are possible "safer" options to eval?

flag

65% accept rate
safer options depend on what you're using eval to do, can you be more specific? – rampion Mar 12 at 6:11
There is nothing specific that I want to ask for. But by "safer" i meant something that gets you the same results avoiding or reducing the vulnerabilities. – Chirantan Mar 12 at 7:39

5 Answers

vote up 8 vote down check

If you are evaling a string submitted by, or modifiable by the user, this is tantamount to allowing arbitrary code execution. Imagine if the string contained an OS call to rm -rf / or similar. That said, in situations where you know the strings are appropriately constrained, or your Ruby interpreter is sandboxed appropriately, or ideally both, eval can be extraordinarily powerful.

The problem is analogous to SQL injection, if you're familiar. The solution here is similar to the solution to the injection problem (parameterized queries). That is, if the statements you would like to eval are known to be of a very specific form, and not all of the statement need be submitted by the user, only a few variables, a math expression, or similar, you can take in these small pieces from the user, sanitize them if necessary, then evaluate the safe template statement with the user input plugged in in the appropriate places.

link|flag
And sanitizing has proved to be extraordinarily difficult to actually do properly for all cases. Nice answer! – krosenvold Mar 12 at 5:10
vote up 1 vote down

It makes debugging difficult. It makes optimization difficult. But most of all, it's usually a sign that there is a better way to do whatever you are trying to do.

If you tell us what you are trying to accomplish with eval, you may get some more relevant answers relating to your specific scenario.

link|flag
vote up 3 vote down

Eval is an incredibly powerful feature which should be used carefully. Besides the security issues pointed out by Matt J, you will also find that debugging runtime evaluated code is extremely difficult. A problem in a runtime evaluated code block will be difficult for the interpreter to express - so looking for it will be difficult.

That being said, if you are comfortable with that issue, and are not concerned about the security issue, then you should not avoid using one of the features that makes ruby as appealing as it is.

link|flag
vote up 2 vote down

In certain situations, a well-placed eval is clever and reduces the amount of code required. In addition to the security concerns that have been mentioned by Matt J, you also need to ask yourself one very simple question:

When it's all said and done, can anyone else read your code and understand what you did?

If the answer is no, then what you've gained with an eval is forsaken for maintainability. This issue is not only applicable if you work in a team, but it is also applicable to you - you want to be able to look back at your code months, if not years from now, and know what you did.

link|flag
vote up 2 vote down

In ruby there are several gimmicks that might be more appropriate than eval()

1) there is #send which allows you to call a method whose name you have as string and pass parameters to it

2) yield allows you to pass a block of code to a method which will be executed in the context of the receiving method.

3) often the simple Kernel.const_get("String") is sufficient to get the class whose name you have as string

I think i am not able to explain them properly in detail, so i just give you the hints, if you're interested you'll google ;)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.