aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/ruby/ruby/CVE-2017-9229.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/ruby/ruby/CVE-2017-9229.patch')
-rw-r--r--meta/recipes-devtools/ruby/ruby/CVE-2017-9229.patch36
1 files changed, 36 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 @@
+commit b690371bbf97794b4a1d3f295d4fb9a8b05d402d
+Author: K.Kosako <kosako@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@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 */