Reduce data size checking.
This commit is contained in:
parent
ed89817d0c
commit
2e050f8f88
126
src/engine.rs
126
src/engine.rs
@ -2407,28 +2407,40 @@ impl Engine {
|
|||||||
|
|
||||||
pos = expr.position();
|
pos = expr.position();
|
||||||
|
|
||||||
self.check_data_size(&result, pos)?;
|
result = self.check_return_value(Ok(result), pos)?;
|
||||||
}
|
}
|
||||||
|
|
||||||
assert!(
|
Ok(result)
|
||||||
result.is::<ImmutableString>(),
|
|
||||||
"interpolated string must be a string"
|
|
||||||
);
|
|
||||||
|
|
||||||
self.check_return_value(Ok(result), expr.position())
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(not(feature = "no_index"))]
|
#[cfg(not(feature = "no_index"))]
|
||||||
Expr::Array(x, _) => {
|
Expr::Array(x, _) => {
|
||||||
let mut arr = Dynamic::from_array(crate::Array::with_capacity(x.len()));
|
let mut arr = Dynamic::from_array(crate::Array::with_capacity(x.len()));
|
||||||
|
|
||||||
for item_expr in x.iter() {
|
#[cfg(not(feature = "unchecked"))]
|
||||||
arr.write_lock::<crate::Array>().expect("`Array`").push(
|
let mut sizes = (0, 0, 0);
|
||||||
self.eval_expr(scope, global, state, lib, this_ptr, item_expr, level)?
|
|
||||||
.flatten(),
|
|
||||||
);
|
|
||||||
|
|
||||||
self.check_data_size(&arr, item_expr.position())?;
|
for item_expr in x.iter() {
|
||||||
|
let value = self
|
||||||
|
.eval_expr(scope, global, state, lib, this_ptr, item_expr, level)?
|
||||||
|
.flatten();
|
||||||
|
|
||||||
|
#[cfg(not(feature = "unchecked"))]
|
||||||
|
let val_sizes = Self::calc_data_sizes(&value, true);
|
||||||
|
|
||||||
|
arr.write_lock::<crate::Array>()
|
||||||
|
.expect("`Array`")
|
||||||
|
.push(value);
|
||||||
|
|
||||||
|
#[cfg(not(feature = "unchecked"))]
|
||||||
|
if self.has_data_size_limit() {
|
||||||
|
sizes = (
|
||||||
|
sizes.0 + val_sizes.0,
|
||||||
|
sizes.1 + val_sizes.1,
|
||||||
|
sizes.2 + val_sizes.2,
|
||||||
|
);
|
||||||
|
self.raise_err_if_over_data_size_limit(sizes, item_expr.position())?;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Ok(arr)
|
Ok(arr)
|
||||||
@ -2438,18 +2450,32 @@ impl Engine {
|
|||||||
Expr::Map(x, _) => {
|
Expr::Map(x, _) => {
|
||||||
let mut map = Dynamic::from_map(x.1.clone());
|
let mut map = Dynamic::from_map(x.1.clone());
|
||||||
|
|
||||||
|
#[cfg(not(feature = "unchecked"))]
|
||||||
|
let mut sizes = (0, 0, 0);
|
||||||
|
|
||||||
for (Ident { name, .. }, value_expr) in x.0.iter() {
|
for (Ident { name, .. }, value_expr) in x.0.iter() {
|
||||||
let key = name.as_str();
|
let key = name.as_str();
|
||||||
let value = self
|
let value = self
|
||||||
.eval_expr(scope, global, state, lib, this_ptr, value_expr, level)?
|
.eval_expr(scope, global, state, lib, this_ptr, value_expr, level)?
|
||||||
.flatten();
|
.flatten();
|
||||||
|
|
||||||
|
#[cfg(not(feature = "unchecked"))]
|
||||||
|
let val_sizes = Self::calc_data_sizes(&value, true);
|
||||||
|
|
||||||
*map.write_lock::<crate::Map>()
|
*map.write_lock::<crate::Map>()
|
||||||
.expect("`Map`")
|
.expect("`Map`")
|
||||||
.get_mut(key)
|
.get_mut(key)
|
||||||
.unwrap() = value;
|
.unwrap() = value;
|
||||||
|
|
||||||
self.check_data_size(&map, value_expr.position())?;
|
#[cfg(not(feature = "unchecked"))]
|
||||||
|
if self.has_data_size_limit() {
|
||||||
|
sizes = (
|
||||||
|
sizes.0 + val_sizes.0,
|
||||||
|
sizes.1 + val_sizes.1,
|
||||||
|
sizes.2 + val_sizes.2,
|
||||||
|
);
|
||||||
|
self.raise_err_if_over_data_size_limit(sizes, value_expr.position())?;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Ok(map)
|
Ok(map)
|
||||||
@ -3323,6 +3349,8 @@ impl Engine {
|
|||||||
|
|
||||||
/// Check a result to ensure that the data size is within allowable limit.
|
/// Check a result to ensure that the data size is within allowable limit.
|
||||||
fn check_return_value(&self, mut result: RhaiResult, pos: Position) -> RhaiResult {
|
fn check_return_value(&self, mut result: RhaiResult, pos: Position) -> RhaiResult {
|
||||||
|
let _pos = pos;
|
||||||
|
|
||||||
match result {
|
match result {
|
||||||
Ok(ref mut r) => {
|
Ok(ref mut r) => {
|
||||||
// Concentrate all empty strings into one instance to save memory
|
// Concentrate all empty strings into one instance to save memory
|
||||||
@ -3336,7 +3364,7 @@ impl Engine {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(not(feature = "unchecked"))]
|
#[cfg(not(feature = "unchecked"))]
|
||||||
self.check_data_size(&r, pos)?;
|
self.check_data_size(&r, _pos)?;
|
||||||
}
|
}
|
||||||
_ => (),
|
_ => (),
|
||||||
}
|
}
|
||||||
@ -3344,29 +3372,28 @@ impl Engine {
|
|||||||
result
|
result
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "unchecked")]
|
/// Recursively calculate the sizes of a value.
|
||||||
#[inline(always)]
|
///
|
||||||
fn check_data_size(&self, _value: &Dynamic, _pos: Position) -> RhaiResultOf<()> {
|
/// Sizes returned are `(`[`Array`][crate::Array], [`Map`][crate::Map] and `String)`.
|
||||||
Ok(())
|
///
|
||||||
}
|
/// # Panics
|
||||||
|
///
|
||||||
|
/// Panics if any interior data is shared (should never happen).
|
||||||
#[cfg(not(feature = "unchecked"))]
|
#[cfg(not(feature = "unchecked"))]
|
||||||
fn check_data_size(&self, value: &Dynamic, pos: Position) -> RhaiResultOf<()> {
|
fn calc_data_sizes(value: &Dynamic, top: bool) -> (usize, usize, usize) {
|
||||||
// Recursively calculate the size of a value (especially `Array` and `Map`)
|
|
||||||
fn calc_size(value: &Dynamic, top: bool) -> (usize, usize, usize) {
|
|
||||||
match value.0 {
|
match value.0 {
|
||||||
#[cfg(not(feature = "no_index"))]
|
#[cfg(not(feature = "no_index"))]
|
||||||
Union::Array(ref arr, _, _) => {
|
Union::Array(ref arr, _, _) => {
|
||||||
arr.iter()
|
arr.iter()
|
||||||
.fold((0, 0, 0), |(arrays, maps, strings), value| match value.0 {
|
.fold((0, 0, 0), |(arrays, maps, strings), value| match value.0 {
|
||||||
Union::Array(_, _, _) => {
|
Union::Array(_, _, _) => {
|
||||||
let (a, m, s) = calc_size(value, false);
|
let (a, m, s) = Self::calc_data_sizes(value, false);
|
||||||
(arrays + a + 1, maps + m, strings + s)
|
(arrays + a + 1, maps + m, strings + s)
|
||||||
}
|
}
|
||||||
Union::Blob(ref a, _, _) => (arrays + 1 + a.len(), maps, strings),
|
Union::Blob(ref a, _, _) => (arrays + 1 + a.len(), maps, strings),
|
||||||
#[cfg(not(feature = "no_object"))]
|
#[cfg(not(feature = "no_object"))]
|
||||||
Union::Map(_, _, _) => {
|
Union::Map(_, _, _) => {
|
||||||
let (a, m, s) = calc_size(value, false);
|
let (a, m, s) = Self::calc_data_sizes(value, false);
|
||||||
(arrays + a + 1, maps + m, strings + s)
|
(arrays + a + 1, maps + m, strings + s)
|
||||||
}
|
}
|
||||||
Union::Str(ref s, _, _) => (arrays + 1, maps, strings + s.len()),
|
Union::Str(ref s, _, _) => (arrays + 1, maps, strings + s.len()),
|
||||||
@ -3381,13 +3408,13 @@ impl Engine {
|
|||||||
.fold((0, 0, 0), |(arrays, maps, strings), value| match value.0 {
|
.fold((0, 0, 0), |(arrays, maps, strings), value| match value.0 {
|
||||||
#[cfg(not(feature = "no_index"))]
|
#[cfg(not(feature = "no_index"))]
|
||||||
Union::Array(_, _, _) => {
|
Union::Array(_, _, _) => {
|
||||||
let (a, m, s) = calc_size(value, false);
|
let (a, m, s) = Self::calc_data_sizes(value, false);
|
||||||
(arrays + a, maps + m + 1, strings + s)
|
(arrays + a, maps + m + 1, strings + s)
|
||||||
}
|
}
|
||||||
#[cfg(not(feature = "no_index"))]
|
#[cfg(not(feature = "no_index"))]
|
||||||
Union::Blob(ref a, _, _) => (arrays + a.len(), maps, strings),
|
Union::Blob(ref a, _, _) => (arrays + a.len(), maps, strings),
|
||||||
Union::Map(_, _, _) => {
|
Union::Map(_, _, _) => {
|
||||||
let (a, m, s) = calc_size(value, false);
|
let (a, m, s) = Self::calc_data_sizes(value, false);
|
||||||
(arrays + a, maps + m + 1, strings + s)
|
(arrays + a, maps + m + 1, strings + s)
|
||||||
}
|
}
|
||||||
Union::Str(ref s, _, _) => (arrays, maps + 1, strings + s.len()),
|
Union::Str(ref s, _, _) => (arrays, maps + 1, strings + s.len()),
|
||||||
@ -3403,22 +3430,31 @@ impl Engine {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// If no data size limits, just return
|
/// Is there a data size limit set?
|
||||||
let mut _has_limit = self.limits.max_string_size.is_some();
|
#[cfg(not(feature = "unchecked"))]
|
||||||
|
fn has_data_size_limit(&self) -> bool {
|
||||||
|
let mut _limited = self.limits.max_string_size.is_some();
|
||||||
|
|
||||||
#[cfg(not(feature = "no_index"))]
|
#[cfg(not(feature = "no_index"))]
|
||||||
{
|
{
|
||||||
_has_limit = _has_limit || self.limits.max_array_size.is_some();
|
_limited = _limited || self.limits.max_array_size.is_some();
|
||||||
}
|
}
|
||||||
#[cfg(not(feature = "no_object"))]
|
#[cfg(not(feature = "no_object"))]
|
||||||
{
|
{
|
||||||
_has_limit = _has_limit || self.limits.max_map_size.is_some();
|
_limited = _limited || self.limits.max_map_size.is_some();
|
||||||
}
|
}
|
||||||
|
|
||||||
if !_has_limit {
|
_limited
|
||||||
return Ok(());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
let (_arr, _map, s) = calc_size(value, true);
|
/// Raise an error if any data size exceeds limit.
|
||||||
|
#[cfg(not(feature = "unchecked"))]
|
||||||
|
fn raise_err_if_over_data_size_limit(
|
||||||
|
&self,
|
||||||
|
sizes: (usize, usize, usize),
|
||||||
|
pos: Position,
|
||||||
|
) -> RhaiResultOf<()> {
|
||||||
|
let (_arr, _map, s) = sizes;
|
||||||
|
|
||||||
if s > self
|
if s > self
|
||||||
.limits
|
.limits
|
||||||
@ -3451,6 +3487,26 @@ impl Engine {
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Check whether the size of a [`Dynamic`] is within limits.
|
||||||
|
#[cfg(not(feature = "unchecked"))]
|
||||||
|
fn check_data_size(&self, value: &Dynamic, pos: Position) -> RhaiResultOf<()> {
|
||||||
|
// If no data size limits, just return
|
||||||
|
if !self.has_data_size_limit() {
|
||||||
|
return Ok(());
|
||||||
|
}
|
||||||
|
|
||||||
|
let sizes = Self::calc_data_sizes(value, true);
|
||||||
|
|
||||||
|
self.raise_err_if_over_data_size_limit(sizes, pos)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Check whether the size of a [`Dynamic`] is within limits.
|
||||||
|
#[cfg(feature = "unchecked")]
|
||||||
|
#[inline(always)]
|
||||||
|
fn check_data_size(&self, _value: &Dynamic, _pos: Position) -> RhaiResultOf<()> {
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
/// Check if the number of operations stay within limit.
|
/// Check if the number of operations stay within limit.
|
||||||
#[cfg(not(feature = "unchecked"))]
|
#[cfg(not(feature = "unchecked"))]
|
||||||
pub(crate) fn inc_operations(
|
pub(crate) fn inc_operations(
|
||||||
|
Loading…
Reference in New Issue
Block a user