[oe-commits] [openembedded-core] 34/53: ruby: Security fix for CVE-2017-9229

git at git.openembedded.org git at git.openembedded.org
Tue Nov 21 14:44:55 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 a636bf8cb5063f349b2af6594b131af6852b3076
Author: Thiruvadi Rajaraman <trajaraman at mvista.com>
AuthorDate: Sat Nov 4 10:41:02 2017 -0700

    ruby: Security fix for CVE-2017-9229
    
    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-9229.patch | 36 ++++++++++++++++++++++
 meta/recipes-devtools/ruby/ruby_2.2.5.bb           |  1 +
 2 files changed, 37 insertions(+)

diff --git a/meta/recipes-devtools/ruby/ruby/CVE-2017-9229.patch b/meta/recipes-devtools/ruby/ruby/CVE-2017-9229.patch
new file mode 100644
index 0000000..75bdfad
--- /dev/null
+++ b/meta/recipes-devtools/ruby/ruby/CVE-2017-9229.patch
@@ -0,0 +1,36 @@
+commit b690371bbf97794b4a1d3f295d4fb9a8b05d402d
+Author: K.Kosako <kosako at sofnec.co.jp>
+Date:   Wed May 24 10:27:04 2017 +0900
+
+    fix #59 : access to invalid address by reg->dmax value
+
+Upstream-Status: Backport
+
+CVE: CVE-2017-9229
+Signed-off-by: Thiruvadi Rajaraman <trajaraman at mvista.com>
+
+Index: ruby-2.2.5/regexec.c
+===================================================================
+--- ruby-2.2.5.orig/regexec.c	2017-09-13 12:17:08.429254209 +0530
++++ ruby-2.2.5/regexec.c	2017-09-13 12:24:03.365312311 +0530
+@@ -3763,6 +3763,12 @@
+     }
+     else {
+       if (reg->dmax != ONIG_INFINITE_DISTANCE) {
++        if (p - str < reg->dmax) {
++          *low = (UChar* )str;
++          if (low_prev)
++            *low_prev = onigenc_get_prev_char_head(reg->enc, str, *low, end);
++	}
++	else {
+ 	*low = p - reg->dmax;
+ 	if (*low > s) {
+ 	  *low = onigenc_get_right_adjust_char_head_with_prev(reg->enc, s,
+@@ -3776,6 +3782,7 @@
+ 	    *low_prev = onigenc_get_prev_char_head(reg->enc,
+ 					       (pprev ? pprev : str), *low, end);
+ 	}
++	}
+       }
+     }
+     /* no needs to adjust *high, *high is used as range check only */
diff --git a/meta/recipes-devtools/ruby/ruby_2.2.5.bb b/meta/recipes-devtools/ruby/ruby_2.2.5.bb
index b32a705..4b90ee6 100644
--- a/meta/recipes-devtools/ruby/ruby_2.2.5.bb
+++ b/meta/recipes-devtools/ruby/ruby_2.2.5.bb
@@ -8,6 +8,7 @@ SRC_URI += "file://prevent-gc.patch \
             file://CVE-2017-9227.patch \
             file://CVE-2017-9228.patch \
             file://CVE-2017-9226.patch \
+            file://CVE-2017-9229.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