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

ruby-changes:25110

From: usa <ko1@a...>
Date: Fri, 12 Oct 2012 17:55:54 +0900 (JST)
Subject: [ruby-changes:25110] usa:r37162 (ruby_1_9_3): merge revision(s) 37068:

usa	2012-10-12 17:55:41 +0900 (Fri, 12 Oct 2012)

  New Revision: 37162

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

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

  Modified files:
    branches/ruby_1_9_3/ChangeLog
    branches/ruby_1_9_3/error.c
    branches/ruby_1_9_3/test/ruby/test_exception.rb
    branches/ruby_1_9_3/version.h

Index: ruby_1_9_3/ChangeLog
===================================================================
--- ruby_1_9_3/ChangeLog	(revision 37161)
+++ ruby_1_9_3/ChangeLog	(revision 37162)
@@ -1,3 +1,8 @@
+Fri Oct 12 17:51:43 2012  Shugo Maeda  <shugo@r...>
+
+	* error.c (exc_to_s, name_err_to_s, name_err_mesg_to_str): do not
+	  taint messages.
+
 Fri Oct 12 16:11:23 2012  Nobuyoshi Nakada  <nobu@r...>
 
 	* configure.in (LIBDIR_BASENAME): use configured libdir value to fix
Index: ruby_1_9_3/error.c
===================================================================
--- ruby_1_9_3/error.c	(revision 37161)
+++ ruby_1_9_3/error.c	(revision 37162)
@@ -569,7 +569,6 @@
 
     if (NIL_P(mesg)) return rb_class_name(CLASS_OF(exc));
     r = rb_String(mesg);
-    OBJ_INFECT(r, exc);
     return r;
 }
 
@@ -853,11 +852,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;
 }
 
 /*
@@ -988,7 +983,6 @@
 	args[2] = d;
 	mesg = rb_f_sprintf(NAME_ERR_MESG_COUNT, args);
     }
-    OBJ_INFECT(mesg, obj);
     return mesg;
 }
 
Index: ruby_1_9_3/version.h
===================================================================
--- ruby_1_9_3/version.h	(revision 37161)
+++ ruby_1_9_3/version.h	(revision 37162)
@@ -1,5 +1,5 @@
 #define RUBY_VERSION "1.9.3"
-#define RUBY_PATCHLEVEL 284
+#define RUBY_PATCHLEVEL 285
 
 #define RUBY_RELEASE_DATE "2012-10-12"
 #define RUBY_RELEASE_YEAR 2012
Index: ruby_1_9_3/test/ruby/test_exception.rb
===================================================================
--- ruby_1_9_3/test/ruby/test_exception.rb	(revision 37161)
+++ ruby_1_9_3/test/ruby/test_exception.rb	(revision 37162)
@@ -333,4 +333,54 @@
       load(t.path)
     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/

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