summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThiruvadi Rajaraman <trajaraman@mvista.com>2017-11-04 10:41:02 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-11-21 14:43:55 +0000
commit32c81fb55d9889c46ca7f7854522a9d01df290c0 (patch)
treecce132898ec2a2bd1cc71437d17bd6ec7fb2bbc2
parent7039d1ad320d3bb48c0b031340ceb8a5cd273290 (diff)
downloadpoky-32c81fb55d9889c46ca7f7854522a9d01df290c0.tar.gz
ruby: Security fix for CVE-2017-9229
affects ruby < 2.4.1 (From OE-Core rev: a636bf8cb5063f349b2af6594b131af6852b3076) Signed-off-by: Thiruvadi Rajaraman <trajaraman@mvista.com> Signed-off-by: Armin Kuster <akuster@mvista.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-devtools/ruby/ruby/CVE-2017-9229.patch36
-rw-r--r--meta/recipes-devtools/ruby/ruby_2.2.5.bb1
2 files changed, 37 insertions, 0 deletions
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 0000000000..75bdfada57
--- /dev/null
+++ b/meta/recipes-devtools/ruby/ruby/CVE-2017-9229.patch
@@ -0,0 +1,36 @@
1commit b690371bbf97794b4a1d3f295d4fb9a8b05d402d
2Author: K.Kosako <kosako@sofnec.co.jp>
3Date: Wed May 24 10:27:04 2017 +0900
4
5 fix #59 : access to invalid address by reg->dmax value
6
7Upstream-Status: Backport
8
9CVE: CVE-2017-9229
10Signed-off-by: Thiruvadi Rajaraman <trajaraman@mvista.com>
11
12Index: ruby-2.2.5/regexec.c
13===================================================================
14--- ruby-2.2.5.orig/regexec.c 2017-09-13 12:17:08.429254209 +0530
15+++ ruby-2.2.5/regexec.c 2017-09-13 12:24:03.365312311 +0530
16@@ -3763,6 +3763,12 @@
17 }
18 else {
19 if (reg->dmax != ONIG_INFINITE_DISTANCE) {
20+ if (p - str < reg->dmax) {
21+ *low = (UChar* )str;
22+ if (low_prev)
23+ *low_prev = onigenc_get_prev_char_head(reg->enc, str, *low, end);
24+ }
25+ else {
26 *low = p - reg->dmax;
27 if (*low > s) {
28 *low = onigenc_get_right_adjust_char_head_with_prev(reg->enc, s,
29@@ -3776,6 +3782,7 @@
30 *low_prev = onigenc_get_prev_char_head(reg->enc,
31 (pprev ? pprev : str), *low, end);
32 }
33+ }
34 }
35 }
36 /* 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 b32a705a5b..4b90ee6522 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 \
8 file://CVE-2017-9227.patch \ 8 file://CVE-2017-9227.patch \
9 file://CVE-2017-9228.patch \ 9 file://CVE-2017-9228.patch \
10 file://CVE-2017-9226.patch \ 10 file://CVE-2017-9226.patch \
11 file://CVE-2017-9229.patch \
11" 12"
12 13
13# it's unknown to configure script, but then passed to extconf.rb 14# it's unknown to configure script, but then passed to extconf.rb