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

ruby-changes:46080

From: nagachika <ko1@a...>
Date: Mon, 27 Mar 2017 23:35:56 +0900 (JST)
Subject: [ruby-changes:46080] nagachika:r58151 (ruby_2_3): merge revision(s) 57280, 57282: [Backport #13112]

nagachika	2017-03-27 23:35:49 +0900 (Mon, 27 Mar 2017)

  New Revision: 58151

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=58151

  Log:
    merge revision(s) 57280,57282: [Backport #13112]
    
    console.c: OOB access
    
    * ext/io/console/console.c (console_set_winsize): fix
      out-of-bounds access.  [ruby-core:79004] [Bug #13112]
    console.c: unpaired size
    
    * ext/io/console/console.c (console_set_winsize): reject unpaired
      pixel size.

  Modified directories:
    branches/ruby_2_3/
  Modified files:
    branches/ruby_2_3/ext/io/console/console.c
    branches/ruby_2_3/test/io/console/test_io_console.rb
    branches/ruby_2_3/version.h
Index: ruby_2_3/ext/io/console/console.c
===================================================================
--- ruby_2_3/ext/io/console/console.c	(revision 58150)
+++ ruby_2_3/ext/io/console/console.c	(revision 58151)
@@ -525,12 +525,18 @@ console_set_winsize(VALUE io, VALUE size https://github.com/ruby/ruby/blob/trunk/ruby_2_3/ext/io/console/console.c#L525
     VALUE row, col, xpixel, ypixel;
     const VALUE *sz;
     int fd;
+    long sizelen;
 
     GetOpenFile(io, fptr);
     size = rb_Array(size);
-    rb_check_arity(RARRAY_LENINT(size), 2, 4);
+    if ((sizelen = RARRAY_LEN(size)) != 2 && sizelen != 4) {
+	rb_raise(rb_eArgError,
+		 "wrong number of arguments (given %ld, expected 2 or 4)",
+		 sizelen);
+    }
     sz = RARRAY_CONST_PTR(size);
-    row = sz[0], col = sz[1], xpixel = sz[2], ypixel = sz[3];
+    row = sz[0], col = sz[1], xpixel = ypixel = Qnil;
+    if (sizelen == 4) xpixel = sz[2], ypixel = sz[3];
     fd = GetWriteFD(fptr);
 #if defined TIOCSWINSZ
     ws.ws_row = ws.ws_col = ws.ws_xpixel = ws.ws_ypixel = 0;
Index: ruby_2_3/version.h
===================================================================
--- ruby_2_3/version.h	(revision 58150)
+++ ruby_2_3/version.h	(revision 58151)
@@ -1,6 +1,6 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_3/version.h#L1
 #define RUBY_VERSION "2.3.3"
 #define RUBY_RELEASE_DATE "2017-03-27"
-#define RUBY_PATCHLEVEL 262
+#define RUBY_PATCHLEVEL 263
 
 #define RUBY_RELEASE_YEAR 2017
 #define RUBY_RELEASE_MONTH 3
Index: ruby_2_3/test/io/console/test_io_console.rb
===================================================================
--- ruby_2_3/test/io/console/test_io_console.rb	(revision 58150)
+++ ruby_2_3/test/io/console/test_io_console.rb	(revision 58151)
@@ -233,11 +233,42 @@ class TestIO_Console < Test::Unit::TestC https://github.com/ruby/ruby/blob/trunk/ruby_2_3/test/io/console/test_io_console.rb#L233
       begin
         assert_equal([0, 0], s.winsize)
       rescue Errno::EINVAL # OpenSolaris 2009.06 TIOCGWINSZ causes Errno::EINVAL before TIOCSWINSZ.
+      else
+        assert_equal([80, 25], s.winsize = [80, 25])
+        assert_equal([80, 25], s.winsize)
+        assert_equal([80, 25], m.winsize)
+        assert_equal([100, 40], m.winsize = [100, 40])
+        assert_equal([100, 40], s.winsize)
+        assert_equal([100, 40], m.winsize)
       end
     }
   end
 
+  def test_set_winsize_invalid_dev
+    [IO::NULL, __FILE__].each do |path|
+      open(path) do |io|
+        begin
+          s = io.winsize
+        rescue SystemCallError => e
+          assert_raise(e.class) {io.winsize = [0, 0]}
+        else
+          assert(false, "winsize on #{path} succeed: #{s.inspect}")
+        end
+        assert_raise(ArgumentError) {io.winsize = [0, 0, 0]}
+      end
+    end
+  end
+
   if IO.console
+    def test_set_winsize_console
+      s = IO.console.winsize
+      assert_kind_of(Array, s)
+      assert_equal(2, s.size)
+      assert_kind_of(Integer, s[0])
+      assert_kind_of(Integer, s[1])
+      assert_nothing_raised(TypeError) {IO.console.winsize = s}
+    end
+
     def test_close
       IO.console.close
       assert_kind_of(IO, IO.console)

Property changes on: ruby_2_3
___________________________________________________________________
Modified: svn:mergeinfo
   Merged /trunk:r57280,57282


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

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