[Bug #20481] Check for unmarshaling ivar

Prohibit setting instance variables of existing classes and modules
via link.
This commit is contained in:
Nobuyoshi Nakada 2024-05-04 22:17:04 +09:00
Родитель d9e6e6fb60
Коммит 8b9b150512
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 3582D74E1FEE4465
2 изменённых файлов: 18 добавлений и 3 удалений

Просмотреть файл

@ -1696,6 +1696,11 @@ r_copy_ivar(VALUE v, VALUE data)
return v;
}
#define override_ivar_error(type, str) \
rb_raise(rb_eTypeError, \
"can't override instance variable of "type" '%"PRIsVALUE"'", \
(str))
static void
r_ivar(VALUE obj, int *has_encoding, struct load_arg *arg)
{
@ -1703,6 +1708,12 @@ r_ivar(VALUE obj, int *has_encoding, struct load_arg *arg)
len = r_long(arg);
if (len > 0) {
if (RB_TYPE_P(obj, T_MODULE)) {
override_ivar_error("module", rb_mod_name(obj));
}
else if (RB_TYPE_P(obj, T_CLASS)) {
override_ivar_error("class", rb_class_name(obj));
}
do {
VALUE sym = r_symbol(arg);
VALUE val = r_object(arg);
@ -1795,9 +1806,7 @@ append_extmod(VALUE obj, VALUE extmod)
#define prohibit_ivar(type, str) do { \
if (!ivp || !*ivp) break; \
rb_raise(rb_eTypeError, \
"can't override instance variable of "type" '%"PRIsVALUE"'", \
(str)); \
override_ivar_error(type, str); \
} while (0)
static VALUE r_object_for(struct load_arg *arg, bool partial, int *ivp, VALUE extmod, int type);

Просмотреть файл

@ -571,12 +571,18 @@ class TestMarshal < Test::Unit::TestCase
assert_raise(TypeError) {Marshal.load("\x04\x08Ic\x1bTestMarshal::TestClass\x06:\x0e@ivar_bug\"\x08bug")}
assert_raise(TypeError) {Marshal.load("\x04\x08IM\x1bTestMarshal::TestClass\x06:\x0e@ivar_bug\"\x08bug")}
assert_not_operator(TestClass, :instance_variable_defined?, :@ivar_bug)
assert_raise(TypeError) {Marshal.load("\x04\x08[\x07c\x1bTestMarshal::TestClassI@\x06\x06:\x0e@ivar_bug\"\x08bug")}
assert_not_operator(TestClass, :instance_variable_defined?, :@ivar_bug)
end
def test_module_ivar
assert_raise(TypeError) {Marshal.load("\x04\x08Im\x1cTestMarshal::TestModule\x06:\x0e@ivar_bug\"\x08bug")}
assert_raise(TypeError) {Marshal.load("\x04\x08IM\x1cTestMarshal::TestModule\x06:\x0e@ivar_bug\"\x08bug")}
assert_not_operator(TestModule, :instance_variable_defined?, :@ivar_bug)
assert_raise(TypeError) {Marshal.load("\x04\x08[\x07m\x1cTestMarshal::TestModuleI@\x06\x06:\x0e@ivar_bug\"\x08bug")}
assert_not_operator(TestModule, :instance_variable_defined?, :@ivar_bug)
end
class TestForRespondToFalse