[前][次][番号順一覧][スレッド一覧]

ruby-changes:25016

From: shugo <ko1@a...>
Date: Wed, 3 Oct 2012 02:25:27 +0900 (JST)
Subject: [ruby-changes:25016] shugo:r37068 (trunk): * error.c (exc_to_s, name_err_to_s, name_err_mesg_to_str): do not

shugo	2012-10-03 02:25:10 +0900 (Wed, 03 Oct 2012)

  New Revision: 37068

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=37068

  Log:
    * error.c (exc_to_s, name_err_to_s, name_err_mesg_to_str): do not
      taint messages.

  Modified files:
    trunk/ChangeLog
    trunk/error.c
    trunk/test/ruby/test_exception.rb

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 37067)
+++ ChangeLog	(revision 37068)
@@ -1,3 +1,8 @@
+Wed Oct  3 02:23:37 2012  Shugo Maeda  <shugo@r...>
+
+	* error.c (exc_to_s, name_err_to_s, name_err_mesg_to_str): do not
+	  taint messages.
+
 Tue Oct  2 16:47:06 2012  Nobuyoshi Nakada  <nobu@r...>
 
 	* eval.c (identity_hash_new): hide internal hashes for refinements.
Index: error.c
===================================================================
--- error.c	(revision 37067)
+++ error.c	(revision 37068)
@@ -635,7 +635,6 @@
 
     if (NIL_P(mesg)) return rb_class_name(CLASS_OF(exc));
     r = rb_String(mesg);
-    OBJ_INFECT(r, exc);
     return r;
 }
 
@@ -996,11 +995,7 @@
 
     if (NIL_P(mesg)) return rb_class_name(CLASS_OF(exc));
     StringValue(str);
-    if (str != mesg) {
-	rb_iv_set(exc, "mesg", mesg = str);
-    }
-    OBJ_INFECT(mesg, exc);
-    return mesg;
+    return str;
 }
 
 /*
@@ -1131,7 +1126,6 @@
 	args[2] = d;
 	mesg = rb_f_sprintf(NAME_ERR_MESG_COUNT, args);
     }
-    OBJ_INFECT(mesg, obj);
     return mesg;
 }
 
Index: test/ruby/test_exception.rb
===================================================================
--- test/ruby/test_exception.rb	(revision 37067)
+++ test/ruby/test_exception.rb	(revision 37068)
@@ -451,4 +451,54 @@
       end
     end
   end
+
+  def test_to_s_taintness_propagation
+    for exc in [Exception, NameError]
+      m = "abcdefg"
+      e = exc.new(m)
+      e.taint
+      s = e.to_s
+      assert_equal(false, m.tainted?,
+                   "#{exc}#to_s should not propagate taintness")
+      assert_equal(false, s.tainted?,
+                   "#{exc}#to_s should not propagate taintness")
+    end
+    
+    o = Object.new
+    def o.to_str
+      "foo"
+    end
+    o.taint
+    e = NameError.new(o)
+    s = e.to_s
+    assert_equal(false, s.tainted?)
+  end
+
+  def test_exception_to_s_should_not_propagate_untrustedness
+    favorite_lang = "Ruby"
+
+    for exc in [Exception, NameError]
+      assert_raise(SecurityError) do
+        lambda {
+          $SAFE = 4
+          exc.new(favorite_lang).to_s
+          favorite_lang.replace("Python")
+        }.call
+      end
+    end
+
+    assert_raise(SecurityError) do
+      lambda {
+        $SAFE = 4
+        o = Object.new
+        o.singleton_class.send(:define_method, :to_str) {
+          favorite_lang
+        }
+        NameError.new(o).to_s
+        favorite_lang.replace("Python")
+      }.call
+    end
+
+    assert_equal("Ruby", favorite_lang)
+  end
 end

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]