diff options
| -rw-r--r-- | meta/recipes-devtools/ruby/ruby/ruby-CVE-2017-9226.patch | 32 | ||||
| -rw-r--r-- | meta/recipes-devtools/ruby/ruby/ruby-CVE-2017-9228.patch | 34 | ||||
| -rw-r--r-- | meta/recipes-devtools/ruby/ruby_2.5.5.bb | 2 |
3 files changed, 0 insertions, 68 deletions
diff --git a/meta/recipes-devtools/ruby/ruby/ruby-CVE-2017-9226.patch b/meta/recipes-devtools/ruby/ruby/ruby-CVE-2017-9226.patch deleted file mode 100644 index 89437bba74..0000000000 --- a/meta/recipes-devtools/ruby/ruby/ruby-CVE-2017-9226.patch +++ /dev/null | |||
| @@ -1,32 +0,0 @@ | |||
| 1 | From b4bf968ad52afe14e60a2dc8a95d3555c543353a Mon Sep 17 00:00:00 2001 | ||
| 2 | From: "K.Kosako" <kosako@sofnec.co.jp> | ||
| 3 | Date: Thu, 18 May 2017 17:05:27 +0900 | ||
| 4 | Subject: [PATCH] fix #55 : check too big code point value for single byte | ||
| 5 | value in next_state_val() | ||
| 6 | |||
| 7 | --- | ||
| 8 | regparse.c | 3 +++ | ||
| 9 | 1 file changed, 3 insertions(+) | ||
| 10 | |||
| 11 | --- end of original header | ||
| 12 | |||
| 13 | CVE: CVE-2017-9226 | ||
| 14 | |||
| 15 | Add check for octal number bigger than 255. | ||
| 16 | |||
| 17 | Upstream-Status: Pending | ||
| 18 | Signed-off-by: Joe Slater <joe.slater@windriver.com> | ||
| 19 | |||
| 20 | |||
| 21 | --- ruby-2.4.1.orig/regparse.c | ||
| 22 | +++ ruby-2.4.1/regparse.c | ||
| 23 | @@ -4450,6 +4450,9 @@ next_state_val(CClassNode* cc, CClassNod | ||
| 24 | switch (*state) { | ||
| 25 | case CCS_VALUE: | ||
| 26 | if (*type == CCV_SB) { | ||
| 27 | + if (*from > 0xff) | ||
| 28 | + return ONIGERR_INVALID_CODE_POINT_VALUE; | ||
| 29 | + | ||
| 30 | BITSET_SET_BIT_CHKDUP(cc->bs, (int )(*from)); | ||
| 31 | if (IS_NOT_NULL(asc_cc)) | ||
| 32 | BITSET_SET_BIT(asc_cc->bs, (int )(*from)); | ||
diff --git a/meta/recipes-devtools/ruby/ruby/ruby-CVE-2017-9228.patch b/meta/recipes-devtools/ruby/ruby/ruby-CVE-2017-9228.patch deleted file mode 100644 index d8bfba486c..0000000000 --- a/meta/recipes-devtools/ruby/ruby/ruby-CVE-2017-9228.patch +++ /dev/null | |||
| @@ -1,34 +0,0 @@ | |||
| 1 | From 3b63d12038c8d8fc278e81c942fa9bec7c704c8b Mon Sep 17 00:00:00 2001 | ||
| 2 | From: "K.Kosako" <kosako@sofnec.co.jp> | ||
| 3 | Date: Wed, 24 May 2017 13:43:25 +0900 | ||
| 4 | Subject: [PATCH] fix #60 : invalid state(CCS_VALUE) in parse_char_class() | ||
| 5 | |||
| 6 | --- | ||
| 7 | regparse.c | 4 +++- | ||
| 8 | 1 file changed, 3 insertions(+), 1 deletion(-) | ||
| 9 | |||
| 10 | --- end of original header | ||
| 11 | |||
| 12 | CVE: CVE-2017-9228 | ||
| 13 | |||
| 14 | Upstream-Status: Inappropriate [not author] | ||
| 15 | Signed-off-by: Joe Slater <joe.slater@windriver.com> | ||
| 16 | |||
| 17 | diff --git a/regparse.c b/regparse.c | ||
| 18 | index 69875fa..1988747 100644 | ||
| 19 | --- a/regparse.c | ||
| 20 | +++ b/regparse.c | ||
| 21 | @@ -4081,7 +4081,9 @@ next_state_class(CClassNode* cc, OnigCodePoint* vs, enum CCVALTYPE* type, | ||
| 22 | } | ||
| 23 | } | ||
| 24 | |||
| 25 | - *state = CCS_VALUE; | ||
| 26 | + if (*state != CCS_START) | ||
| 27 | + *state = CCS_VALUE; | ||
| 28 | + | ||
| 29 | *type = CCV_CLASS; | ||
| 30 | return 0; | ||
| 31 | } | ||
| 32 | -- | ||
| 33 | 1.7.9.5 | ||
| 34 | |||
diff --git a/meta/recipes-devtools/ruby/ruby_2.5.5.bb b/meta/recipes-devtools/ruby/ruby_2.5.5.bb index 8ad59a7657..4082b02f14 100644 --- a/meta/recipes-devtools/ruby/ruby_2.5.5.bb +++ b/meta/recipes-devtools/ruby/ruby_2.5.5.bb | |||
| @@ -1,8 +1,6 @@ | |||
| 1 | require ruby.inc | 1 | require ruby.inc |
| 2 | 2 | ||
| 3 | SRC_URI += " \ | 3 | SRC_URI += " \ |
| 4 | file://ruby-CVE-2017-9226.patch \ | ||
| 5 | file://ruby-CVE-2017-9228.patch \ | ||
| 6 | file://run-ptest \ | 4 | file://run-ptest \ |
| 7 | " | 5 | " |
| 8 | 6 | ||
