mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* array.c (ary_new, rb_ary_initialize, rb_ary_store,
rb_ary_aplice, rb_ary_times): integer overflows should be checked. based on patches from Drew Yao <ayao at apple.com> fixed CVE-2008-2726 * string.c (rb_str_buf_append): fixed unsafe use of alloca, which led memory corruption. based on a patch from Drew Yao <ayao at apple.com> fixed CVE-2008-2726 * sprintf.c (rb_str_format): backported from trunk. * intern.h: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@17460 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
281d835f89
commit
4a3f1dfb58
5 changed files with 48 additions and 20 deletions
15
ChangeLog
15
ChangeLog
|
@ -1,3 +1,18 @@
|
||||||
|
Wed Jun 18 22:17:35 2008 URABE Shyouhei <shyouhei@ruby-lang.org>
|
||||||
|
|
||||||
|
* array.c (ary_new, rb_ary_initialize, rb_ary_store,
|
||||||
|
rb_ary_aplice, rb_ary_times): integer overflows should be
|
||||||
|
checked. based on patches from Drew Yao <ayao at apple.com>
|
||||||
|
fixed CVE-2008-2726
|
||||||
|
|
||||||
|
* string.c (rb_str_buf_append): fixed unsafe use of alloca,
|
||||||
|
which led memory corruption. based on a patch from Drew Yao
|
||||||
|
<ayao at apple.com> fixed CVE-2008-2726
|
||||||
|
|
||||||
|
* sprintf.c (rb_str_format): backported from trunk.
|
||||||
|
|
||||||
|
* intern.h: ditto.
|
||||||
|
|
||||||
Fri Jun 20 02:16:43 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
|
Fri Jun 20 02:16:43 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||||
|
|
||||||
* lib/mathn.rb (Rational::power2): typo fixed. [ruby-core:17293]
|
* lib/mathn.rb (Rational::power2): typo fixed. [ruby-core:17293]
|
||||||
|
|
19
array.c
19
array.c
|
@ -20,6 +20,7 @@ VALUE rb_cArray;
|
||||||
static ID id_cmp;
|
static ID id_cmp;
|
||||||
|
|
||||||
#define ARY_DEFAULT_SIZE 16
|
#define ARY_DEFAULT_SIZE 16
|
||||||
|
#define ARY_MAX_SIZE (LONG_MAX / sizeof(VALUE))
|
||||||
|
|
||||||
void
|
void
|
||||||
rb_mem_clear(mem, size)
|
rb_mem_clear(mem, size)
|
||||||
|
@ -120,7 +121,7 @@ ary_new(klass, len)
|
||||||
if (len < 0) {
|
if (len < 0) {
|
||||||
rb_raise(rb_eArgError, "negative array size (or size too big)");
|
rb_raise(rb_eArgError, "negative array size (or size too big)");
|
||||||
}
|
}
|
||||||
if (len > 0 && len * sizeof(VALUE) <= len) {
|
if (len > ARY_MAX_SIZE) {
|
||||||
rb_raise(rb_eArgError, "array size too big");
|
rb_raise(rb_eArgError, "array size too big");
|
||||||
}
|
}
|
||||||
if (len == 0) len++;
|
if (len == 0) len++;
|
||||||
|
@ -314,7 +315,7 @@ rb_ary_initialize(argc, argv, ary)
|
||||||
if (len < 0) {
|
if (len < 0) {
|
||||||
rb_raise(rb_eArgError, "negative array size");
|
rb_raise(rb_eArgError, "negative array size");
|
||||||
}
|
}
|
||||||
if (len > 0 && len * (long)sizeof(VALUE) <= len) {
|
if (len > ARY_MAX_SIZE) {
|
||||||
rb_raise(rb_eArgError, "array size too big");
|
rb_raise(rb_eArgError, "array size too big");
|
||||||
}
|
}
|
||||||
if (len > RARRAY(ary)->aux.capa) {
|
if (len > RARRAY(ary)->aux.capa) {
|
||||||
|
@ -379,6 +380,9 @@ rb_ary_store(ary, idx, val)
|
||||||
idx - RARRAY(ary)->len);
|
idx - RARRAY(ary)->len);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else if (idx >= ARY_MAX_SIZE) {
|
||||||
|
rb_raise(rb_eIndexError, "index %ld too big", idx);
|
||||||
|
}
|
||||||
|
|
||||||
rb_ary_modify(ary);
|
rb_ary_modify(ary);
|
||||||
if (idx >= RARRAY(ary)->aux.capa) {
|
if (idx >= RARRAY(ary)->aux.capa) {
|
||||||
|
@ -387,10 +391,10 @@ rb_ary_store(ary, idx, val)
|
||||||
if (new_capa < ARY_DEFAULT_SIZE) {
|
if (new_capa < ARY_DEFAULT_SIZE) {
|
||||||
new_capa = ARY_DEFAULT_SIZE;
|
new_capa = ARY_DEFAULT_SIZE;
|
||||||
}
|
}
|
||||||
new_capa += idx;
|
else if (new_capa >= ARY_MAX_SIZE - idx) {
|
||||||
if (new_capa * (long)sizeof(VALUE) <= new_capa) {
|
new_capa = (ARY_MAX_SIZE - idx) / 2;
|
||||||
rb_raise(rb_eArgError, "index too big");
|
|
||||||
}
|
}
|
||||||
|
new_capa += idx;
|
||||||
REALLOC_N(RARRAY(ary)->ptr, VALUE, new_capa);
|
REALLOC_N(RARRAY(ary)->ptr, VALUE, new_capa);
|
||||||
RARRAY(ary)->aux.capa = new_capa;
|
RARRAY(ary)->aux.capa = new_capa;
|
||||||
}
|
}
|
||||||
|
@ -1091,6 +1095,9 @@ rb_ary_splice(ary, beg, len, rpl)
|
||||||
|
|
||||||
if (beg >= RARRAY(ary)->len) {
|
if (beg >= RARRAY(ary)->len) {
|
||||||
len = beg + rlen;
|
len = beg + rlen;
|
||||||
|
if (len < 0 || len > ARY_MAX_SIZE) {
|
||||||
|
rb_raise(rb_eIndexError, "index %ld too big", beg);
|
||||||
|
}
|
||||||
if (len >= RARRAY(ary)->aux.capa) {
|
if (len >= RARRAY(ary)->aux.capa) {
|
||||||
REALLOC_N(RARRAY(ary)->ptr, VALUE, len);
|
REALLOC_N(RARRAY(ary)->ptr, VALUE, len);
|
||||||
RARRAY(ary)->aux.capa = len;
|
RARRAY(ary)->aux.capa = len;
|
||||||
|
@ -2522,7 +2529,7 @@ rb_ary_times(ary, times)
|
||||||
if (len < 0) {
|
if (len < 0) {
|
||||||
rb_raise(rb_eArgError, "negative argument");
|
rb_raise(rb_eArgError, "negative argument");
|
||||||
}
|
}
|
||||||
if (LONG_MAX/len < RARRAY(ary)->len) {
|
if (ARY_MAX_SIZE/len < RARRAY(ary)->len) {
|
||||||
rb_raise(rb_eArgError, "argument too big");
|
rb_raise(rb_eArgError, "argument too big");
|
||||||
}
|
}
|
||||||
len *= RARRAY(ary)->len;
|
len *= RARRAY(ary)->len;
|
||||||
|
|
1
intern.h
1
intern.h
|
@ -418,6 +418,7 @@ const char *ruby_signal_name _((int));
|
||||||
void ruby_default_signal _((int));
|
void ruby_default_signal _((int));
|
||||||
/* sprintf.c */
|
/* sprintf.c */
|
||||||
VALUE rb_f_sprintf _((int, VALUE*));
|
VALUE rb_f_sprintf _((int, VALUE*));
|
||||||
|
VALUE rb_str_format _((int, VALUE*, VALUE));
|
||||||
/* string.c */
|
/* string.c */
|
||||||
VALUE rb_str_new _((const char*, long));
|
VALUE rb_str_new _((const char*, long));
|
||||||
VALUE rb_str_new2 _((const char*));
|
VALUE rb_str_new2 _((const char*));
|
||||||
|
|
11
sprintf.c
11
sprintf.c
|
@ -249,7 +249,15 @@ rb_f_sprintf(argc, argv)
|
||||||
int argc;
|
int argc;
|
||||||
VALUE *argv;
|
VALUE *argv;
|
||||||
{
|
{
|
||||||
|
return rb_str_format(argc - 1, argv + 1, GETNTHARG(0));
|
||||||
|
}
|
||||||
|
|
||||||
|
VALUE
|
||||||
|
rb_str_format(argc, argv, fmt)
|
||||||
|
int argc;
|
||||||
|
VALUE *argv;
|
||||||
VALUE fmt;
|
VALUE fmt;
|
||||||
|
{
|
||||||
const char *p, *end;
|
const char *p, *end;
|
||||||
char *buf;
|
char *buf;
|
||||||
int blen, bsiz;
|
int blen, bsiz;
|
||||||
|
@ -278,7 +286,8 @@ rb_f_sprintf(argc, argv)
|
||||||
rb_raise(rb_eArgError, "flag after precision"); \
|
rb_raise(rb_eArgError, "flag after precision"); \
|
||||||
}
|
}
|
||||||
|
|
||||||
fmt = GETNTHARG(0);
|
++argc;
|
||||||
|
--argv;
|
||||||
if (OBJ_TAINTED(fmt)) tainted = 1;
|
if (OBJ_TAINTED(fmt)) tainted = 1;
|
||||||
StringValue(fmt);
|
StringValue(fmt);
|
||||||
fmt = rb_str_new4(fmt);
|
fmt = rb_str_new4(fmt);
|
||||||
|
|
22
string.c
22
string.c
|
@ -459,22 +459,15 @@ rb_str_times(str, times)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
static VALUE
|
static VALUE
|
||||||
rb_str_format(str, arg)
|
rb_str_format_m(str, arg)
|
||||||
VALUE str, arg;
|
VALUE str, arg;
|
||||||
{
|
{
|
||||||
VALUE *argv;
|
VALUE tmp = rb_check_array_type(arg);
|
||||||
|
|
||||||
if (TYPE(arg) == T_ARRAY) {
|
if (!NIL_P(tmp)) {
|
||||||
argv = ALLOCA_N(VALUE, RARRAY(arg)->len + 1);
|
return rb_str_format(RARRAY_LEN(tmp), RARRAY_PTR(tmp), str);
|
||||||
argv[0] = str;
|
|
||||||
MEMCPY(argv+1, RARRAY(arg)->ptr, VALUE, RARRAY(arg)->len);
|
|
||||||
return rb_f_sprintf(RARRAY(arg)->len+1, argv);
|
|
||||||
}
|
}
|
||||||
|
return rb_str_format(1, &arg, str);
|
||||||
argv = ALLOCA_N(VALUE, 2);
|
|
||||||
argv[0] = str;
|
|
||||||
argv[1] = arg;
|
|
||||||
return rb_f_sprintf(2, argv);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
|
@ -795,6 +788,9 @@ rb_str_buf_append(str, str2)
|
||||||
capa = RSTRING(str)->aux.capa;
|
capa = RSTRING(str)->aux.capa;
|
||||||
}
|
}
|
||||||
len = RSTRING(str)->len+RSTRING(str2)->len;
|
len = RSTRING(str)->len+RSTRING(str2)->len;
|
||||||
|
if (len < 0 || (capa+1) > LONG_MAX / 2) {
|
||||||
|
rb_raise(rb_eArgError, "string sizes too big");
|
||||||
|
}
|
||||||
if (capa <= len) {
|
if (capa <= len) {
|
||||||
while (len > capa) {
|
while (len > capa) {
|
||||||
capa = (capa + 1) * 2;
|
capa = (capa + 1) * 2;
|
||||||
|
@ -4923,7 +4919,7 @@ Init_String()
|
||||||
rb_define_method(rb_cString, "casecmp", rb_str_casecmp, 1);
|
rb_define_method(rb_cString, "casecmp", rb_str_casecmp, 1);
|
||||||
rb_define_method(rb_cString, "+", rb_str_plus, 1);
|
rb_define_method(rb_cString, "+", rb_str_plus, 1);
|
||||||
rb_define_method(rb_cString, "*", rb_str_times, 1);
|
rb_define_method(rb_cString, "*", rb_str_times, 1);
|
||||||
rb_define_method(rb_cString, "%", rb_str_format, 1);
|
rb_define_method(rb_cString, "%", rb_str_format_m, 1);
|
||||||
rb_define_method(rb_cString, "[]", rb_str_aref_m, -1);
|
rb_define_method(rb_cString, "[]", rb_str_aref_m, -1);
|
||||||
rb_define_method(rb_cString, "[]=", rb_str_aset_m, -1);
|
rb_define_method(rb_cString, "[]=", rb_str_aset_m, -1);
|
||||||
rb_define_method(rb_cString, "insert", rb_str_insert, 2);
|
rb_define_method(rb_cString, "insert", rb_str_insert, 2);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue