Fix heap buffer overflow in Array.prototype.copyWithin (#4211)
2nd and 3rd argument evaluation of Array.prototype.copyWithin can change the length of the array as a side-effect. But ES11 spec says that the algorithm should use the original length. In this case it could happen that the underlying buffer should be extended. Fixes #4204 JerryScript-DCO-1.0-Signed-off-by: Csaba Osztrogonác csaba.osztrogonac@h-lab.eu
This commit is contained in:
committed by
GitHub
parent
bc64957d19
commit
de38764e88
@@ -2491,14 +2491,13 @@ ecma_builtin_array_prototype_object_copy_within (const ecma_value_t args[], /**<
|
||||
}
|
||||
}
|
||||
|
||||
if (target >= len || start >= end || end == 0)
|
||||
ecma_length_t count = JERRY_MIN (end - start, len - target);
|
||||
if (end <= start || len <= target) /* count <= 0 check, but variables are unsigned */
|
||||
{
|
||||
ecma_ref_object (obj_p);
|
||||
return ecma_make_object_value (obj_p);
|
||||
}
|
||||
|
||||
ecma_length_t count = JERRY_MIN (end - start, len - target);
|
||||
|
||||
bool forward = true;
|
||||
|
||||
if (start < target && target < start + count)
|
||||
@@ -2511,12 +2510,13 @@ ecma_builtin_array_prototype_object_copy_within (const ecma_value_t args[], /**<
|
||||
if (ecma_op_object_is_fast_array (obj_p))
|
||||
{
|
||||
ecma_extended_object_t *ext_obj_p = (ecma_extended_object_t *) obj_p;
|
||||
const uint32_t actual_length = ext_obj_p->u.array.length;
|
||||
|
||||
if (ext_obj_p->u.array.u.hole_count < ECMA_FAST_ARRAY_HOLE_ONE)
|
||||
if (ext_obj_p->u.array.u.hole_count < ECMA_FAST_ARRAY_HOLE_ONE
|
||||
&& ((forward && (target + count - 1 < actual_length)) || (!forward && (target < actual_length))))
|
||||
{
|
||||
if (obj_p->u1.property_list_cp != JMEM_CP_NULL)
|
||||
{
|
||||
count = JERRY_MIN (ext_obj_p->u.array.length, count);
|
||||
ecma_value_t *buffer_p = ECMA_GET_NON_NULL_POINTER (ecma_value_t, obj_p->u1.property_list_cp);
|
||||
|
||||
for (; count > 0; count--)
|
||||
|
||||
Reference in New Issue
Block a user