[oe-commits] [openembedded-core] 33/53: ruby: Secruity fix for CVE-2017-9226

git at git.openembedded.org git at git.openembedded.org
Tue Nov 21 14:44:54 UTC 2017


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch morty
in repository openembedded-core.

commit 0c1eec0c6a789e1e9dbfcc66c3fb8c7d1d8b4e99
Author: Thiruvadi Rajaraman <trajaraman at mvista.com>
AuthorDate: Sat Nov 4 10:39:42 2017 -0700

    ruby: Secruity fix for CVE-2017-9226
    
    affects ruby < 2.4.1
    
    Signed-off-by: Thiruvadi Rajaraman <trajaraman at mvista.com>
    Signed-off-by: Armin Kuster <akuster at mvista.com>
---
 .../recipes-devtools/ruby/ruby/CVE-2017-9226.patch | 33 ++++++++++++++++++++++
 meta/recipes-devtools/ruby/ruby_2.2.5.bb           |  1 +
 2 files changed, 34 insertions(+)

diff --git a/meta/recipes-devtools/ruby/ruby/CVE-2017-9226.patch b/meta/recipes-devtools/ruby/ruby/CVE-2017-9226.patch
new file mode 100644
index 0000000..fc783e8
--- /dev/null
+++ b/meta/recipes-devtools/ruby/ruby/CVE-2017-9226.patch
@@ -0,0 +1,33 @@
+commit f015fbdd95f76438cd86366467bb2b39870dd7c6
+Author: K.Kosako <kosako at sofnec.co.jp>
+Date:   Fri May 19 15:44:47 2017 +0900
+
+    fix #55 : Byte value expressed in octal must be smaller than 256
+
+Upstream-Status: Backport
+
+CVE: CVE-2017-9226
+Signed-off-by: Thiruvadi Rajaraman <tajaraman at mvista.com>
+
+Index: ruby-2.2.5/regparse.c
+===================================================================
+--- ruby-2.2.5.orig/regparse.c	2017-09-12 16:33:21.977835068 +0530
++++ ruby-2.2.5/regparse.c	2017-09-12 16:34:40.987117744 +0530
+@@ -3222,7 +3222,7 @@
+ 	PUNFETCH;
+ 	prev = p;
+ 	num = scan_unsigned_octal_number(&p, end, 3, enc);
+-	if (num < 0) return ONIGERR_TOO_BIG_NUMBER;
++	if (num < 0 || num >= 256) return ONIGERR_TOO_BIG_NUMBER;
+ 	if (p == prev) {  /* can't read nothing. */
+ 	  num = 0; /* but, it's not error */
+ 	}
+@@ -3676,7 +3676,7 @@
+       if (IS_SYNTAX_OP(syn, ONIG_SYN_OP_ESC_OCTAL3)) {
+ 	prev = p;
+ 	num = scan_unsigned_octal_number(&p, end, (c == '0' ? 2:3), enc);
+-	if (num < 0) return ONIGERR_TOO_BIG_NUMBER;
++	if (num < 0 || num >= 256) return ONIGERR_TOO_BIG_NUMBER;
+ 	if (p == prev) {  /* can't read nothing. */
+ 	  num = 0; /* but, it's not error */
+ 	}
diff --git a/meta/recipes-devtools/ruby/ruby_2.2.5.bb b/meta/recipes-devtools/ruby/ruby_2.2.5.bb
index bdb2121..b32a705 100644
--- a/meta/recipes-devtools/ruby/ruby_2.2.5.bb
+++ b/meta/recipes-devtools/ruby/ruby_2.2.5.bb
@@ -7,6 +7,7 @@ SRC_URI += "file://prevent-gc.patch \
             file://CVE-2016-7798.patch \
             file://CVE-2017-9227.patch \
             file://CVE-2017-9228.patch \
+            file://CVE-2017-9226.patch \
 "
 
 # it's unknown to configure script, but then passed to extconf.rb

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list