summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2019-08-15 23:25:37 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2019-08-15 23:39:14 +0900
commitd5c33364e3c0efb15e11df417c925afee2cdb9c9 (patch)
tree0a279f68525a5f8ac581d8b72a693067dbd40065
parentc4152b11a7fbc849a545b34e5b9d85f1fdc1a21f (diff)
Fixed heap-use-after-free
* string.c (rb_str_sub_bang): retrieves a pointer to the replacement string buffer just before using it, for the case of replacement with the receiver string itself. [Bug #16105]
-rw-r--r--string.c3
-rw-r--r--test/ruby/test_string.rb6
2 files changed, 8 insertions, 1 deletions
diff --git a/string.c b/string.c
index 9331532d15..6ec0514ba4 100644
--- a/string.c
+++ b/string.c
@@ -5098,7 +5098,7 @@ rb_str_sub_bang(int argc, VALUE *argv, VALUE str)
cr = cr2;
}
plen = end0 - beg0;
- rp = RSTRING_PTR(repl); rlen = RSTRING_LEN(repl);
+ rlen = RSTRING_LEN(repl);
len = RSTRING_LEN(str);
if (rlen > plen) {
RESIZE_CAPA(str, len + rlen - plen);
@@ -5107,6 +5107,7 @@ rb_str_sub_bang(int argc, VALUE *argv, VALUE str)
if (rlen != plen) {
memmove(p + beg0 + rlen, p + beg0 + plen, len - beg0 - plen);
}
+ rp = RSTRING_PTR(repl);
memmove(p + beg0, rp, rlen);
len += rlen - plen;
STR_SET_LEN(str, len);
diff --git a/test/ruby/test_string.rb b/test/ruby/test_string.rb
index 7ae3bf272e..36d246f9e0 100644
--- a/test/ruby/test_string.rb
+++ b/test/ruby/test_string.rb
@@ -2010,6 +2010,12 @@ CODE
r.taint
a.sub!(/./, r)
assert_predicate(a, :tainted?)
+
+ bug16105 = '[Bug #16105] heap-use-after-free'
+ a = S("ABCDEFGHIJKLMNOPQRSTUVWXYZ012345678")
+ b = a.dup
+ c = a.slice(1, 100)
+ assert_equal("AABCDEFGHIJKLMNOPQRSTUVWXYZ012345678", b.sub!(c, b), bug16105)
end
def test_succ