abrown opened issue #4240:
In certain cases, a shared memory will not have an associated store. A
ResourceLimiter
is attached to a store to not only constrain the resources use but also accept certain error scenarios, e.g., when a memory growth operation fails. If memory growth fails for a shared memory, some code should handle the error but as of #4187 there is no mechanism to do so.
alexcrichton labeled issue #4240:
In certain cases, a shared memory will not have an associated store. A
ResourceLimiter
is attached to a store to not only constrain the resources use but also accept certain error scenarios, e.g., when a memory growth operation fails. If memory growth fails for a shared memory, some code should handle the error but as of #4187 there is no mechanism to do so.
abrown commented on issue #4240:
@alexcrichton, should the resolution of this just be to return an error if no
Store
(and thusResourceLimiter
) are available? E.g.:if let Some(store) = store { store.memory_grow_failed(&format_err!("Memory maximum size exceeded")); } else { bail!("Memory maximum size exceeded"); }
abrown edited a comment on issue #4240:
@alexcrichton, should the resolution of this just be to return an error if no
Store
(and thusResourceLimiter
) are available? E.g.:if new_byte_size > max { if let Some(store) = store { store.memory_grow_failed(&format_err!("Memory maximum size exceeded")); } else { bail!("Memory maximum size exceeded"); } return Ok(None); }
alexcrichton commented on issue #4240:
I don't think so because that would translate to a trap rather than a
-1
return value frommemory.grow
. Additionally the more worrisome case for me is this one where there's no embedder-defined way to limit the growth of a shared memory like there is a way to limit the growth of a non-shared memory.
abrown commented on issue #4240:
Hm. I had originally thought that a) the
ResourceLimiter
would have to be disconnected from aStore
or b) the shared memory would have to be associated with a store--neither of these seems great... or easy. What do you think?
alexcrichton commented on issue #4240:
I don't personally know how best to solve this, and I suspect that reusing what we have today probably won't cut it and this'll need some sort of new abstraction or something like that.
Last updated: Nov 22 2024 at 17:03 UTC