2008-09-23 05:10:02 +04:00
|
|
|
/**********************************************************************
|
|
|
|
|
2010-11-23 17:36:37 +03:00
|
|
|
safe.c -
|
2008-09-23 05:10:02 +04:00
|
|
|
|
|
|
|
$Author$
|
|
|
|
created at: Tue Sep 23 09:44:32 JST 2008
|
|
|
|
|
|
|
|
Copyright (C) 2008 Yukihiro Matsumoto
|
|
|
|
|
|
|
|
**********************************************************************/
|
2006-12-31 18:02:22 +03:00
|
|
|
|
|
|
|
/* safe-level:
|
|
|
|
0 - strings from streams/environment/ARGV are tainted (default)
|
|
|
|
1 - no dangerous operation by tainted value
|
|
|
|
2 - process/file operations prohibited
|
|
|
|
3 - all generated objects are tainted
|
|
|
|
4 - no global (non-tainted) variable modification/no direct output
|
|
|
|
*/
|
|
|
|
|
2007-06-24 23:23:24 +04:00
|
|
|
#define SAFE_LEVEL_MAX 4
|
|
|
|
|
2008-09-23 05:10:02 +04:00
|
|
|
#include "ruby/ruby.h"
|
|
|
|
#include "vm_core.h"
|
|
|
|
|
2007-06-25 00:33:04 +04:00
|
|
|
/* $SAFE accessor */
|
|
|
|
|
2006-12-31 18:02:22 +03:00
|
|
|
int
|
|
|
|
rb_safe_level(void)
|
|
|
|
{
|
|
|
|
return GET_THREAD()->safe_level;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
rb_set_safe_level_force(int safe)
|
|
|
|
{
|
|
|
|
GET_THREAD()->safe_level = safe;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
rb_set_safe_level(int level)
|
|
|
|
{
|
* blockinlining.c, error.c, eval.c, eval_error.h, eval_intern.h,
eval_jump.h, eval_load.c, eval_safe.h, gc.c, proc.c, signal.c,
thread.c, thread_pthread.ci, thread_win32.ci, vm.c, vm.h,
vm_dump.c, vm_evalbody.ci, yarvcore.c, yarvcore.h:
fix typo (rb_thead_t -> rb_thread_t).
* eval_intern.h: remove unused definitions.
* common.mk: fix around vm_opts.h path
and remove harmful argument passed to insns2vm.rb.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11658 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-08 09:37:46 +03:00
|
|
|
rb_thread_t *th = GET_THREAD();
|
2006-12-31 18:02:22 +03:00
|
|
|
|
|
|
|
if (level > th->safe_level) {
|
|
|
|
if (level > SAFE_LEVEL_MAX) {
|
|
|
|
level = SAFE_LEVEL_MAX;
|
|
|
|
}
|
|
|
|
th->safe_level = level;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
safe_getter(void)
|
|
|
|
{
|
|
|
|
return INT2NUM(rb_safe_level());
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
safe_setter(VALUE val)
|
|
|
|
{
|
|
|
|
int level = NUM2INT(val);
|
* blockinlining.c, error.c, eval.c, eval_error.h, eval_intern.h,
eval_jump.h, eval_load.c, eval_safe.h, gc.c, proc.c, signal.c,
thread.c, thread_pthread.ci, thread_win32.ci, vm.c, vm.h,
vm_dump.c, vm_evalbody.ci, yarvcore.c, yarvcore.h:
fix typo (rb_thead_t -> rb_thread_t).
* eval_intern.h: remove unused definitions.
* common.mk: fix around vm_opts.h path
and remove harmful argument passed to insns2vm.rb.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11658 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-08 09:37:46 +03:00
|
|
|
rb_thread_t *th = GET_THREAD();
|
2006-12-31 18:02:22 +03:00
|
|
|
|
|
|
|
if (level < th->safe_level) {
|
|
|
|
rb_raise(rb_eSecurityError,
|
|
|
|
"tried to downgrade safe level from %d to %d",
|
|
|
|
th->safe_level, level);
|
|
|
|
}
|
2008-11-07 23:35:10 +03:00
|
|
|
if (level == 3) {
|
|
|
|
rb_warning("$SAFE=3 does no sandboxing; you might want to use $SAFE=4");
|
|
|
|
}
|
2006-12-31 18:02:22 +03:00
|
|
|
if (level > SAFE_LEVEL_MAX) {
|
|
|
|
level = SAFE_LEVEL_MAX;
|
|
|
|
}
|
|
|
|
th->safe_level = level;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
rb_secure(int level)
|
|
|
|
{
|
|
|
|
if (level <= rb_safe_level()) {
|
|
|
|
if (rb_frame_callee()) {
|
|
|
|
rb_raise(rb_eSecurityError, "Insecure operation `%s' at level %d",
|
|
|
|
rb_id2name(rb_frame_callee()), rb_safe_level());
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
rb_raise(rb_eSecurityError, "Insecure operation at level %d",
|
|
|
|
rb_safe_level());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
rb_secure_update(VALUE obj)
|
|
|
|
{
|
|
|
|
if (!OBJ_TAINTED(obj))
|
|
|
|
rb_secure(4);
|
|
|
|
}
|
|
|
|
|
2009-06-23 16:28:16 +04:00
|
|
|
void
|
|
|
|
rb_insecure_operation(void)
|
|
|
|
{
|
|
|
|
if (rb_frame_callee()) {
|
|
|
|
rb_raise(rb_eSecurityError, "Insecure operation - %s",
|
|
|
|
rb_id2name(rb_frame_callee()));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
rb_raise(rb_eSecurityError, "Insecure operation: -r");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-12-31 18:02:22 +03:00
|
|
|
void
|
|
|
|
rb_check_safe_obj(VALUE x)
|
|
|
|
{
|
|
|
|
if (rb_safe_level() > 0 && OBJ_TAINTED(x)) {
|
2009-06-23 16:28:16 +04:00
|
|
|
rb_insecure_operation();
|
2006-12-31 18:02:22 +03:00
|
|
|
}
|
|
|
|
rb_secure(4);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
rb_check_safe_str(VALUE x)
|
|
|
|
{
|
|
|
|
rb_check_safe_obj(x);
|
2011-09-29 15:07:45 +04:00
|
|
|
if (!RB_TYPE_P(x, T_STRING)) {
|
2006-12-31 18:02:22 +03:00
|
|
|
rb_raise(rb_eTypeError, "wrong argument type %s (expected String)",
|
|
|
|
rb_obj_classname(x));
|
|
|
|
}
|
|
|
|
}
|
2008-09-23 05:10:02 +04:00
|
|
|
|
|
|
|
void
|
|
|
|
Init_safe(void)
|
|
|
|
{
|
|
|
|
rb_define_virtual_variable("$SAFE", safe_getter, safe_setter);
|
|
|
|
}
|