-
Notifications
You must be signed in to change notification settings - Fork 632
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FunctionCallError
: expose information about function call execution only (that it is actionable to the end user invoking the contract)
#8502
Comments
cc @near/contract-runtime |
This probably wants to get closed as part of integrating finite-wasm since it will result in a protocol version break anyhow. I can imagine the solution being either as:
|
sounds good! |
FWIW, it’s basically already in my current working directory for integrating the new wasmer into nearcore (that I’m renaming near-vm as per @jakmeier ’s suggested naming, it is basically #8323 with way more changes in my working directory than I’d like but tests seem still far from passing so...). I’m working there to actually make it not call |
Actually, one more thought. Even without PrepareError, we still would be having CompileError that can happen. Do we want to also shrink that all into a single ZST "an error happened during contract compilation"? My personal thoughts are yes, for the same reason as there’s no reason to even make a difference between prepare error and compile error. (Though I’m not sure how easy it’ll be to implement in practice, given we’ll still need to somehow fit both old and new protocol versions in the same type at the end of the day… haven’t looked into that yet) But then we’ll need to actually make sure we have some tooling that can reproduce the contract compilation with nice, complete error messages, for dev UX. Though I guess we can commit to making this tooling soon after completing these changes and not necessarily before. |
Yes, conflating it all to a single error makes sense to me.
We have several places where we use something like: pub enum ExecutionMetadata {
/// V1: Empty Metadata
V1,
/// V2: With ProfileData by legacy `Cost` enum
V2(ProfileDataV2),
// V3: With ProfileData by gas parameters
V3(ProfileDataV3),
} I imagine this to be at most as complicated as the example here. Potentially easier if we can find something clever, but I don't see anything right now.
I guess yes, we can commit to that later. It would be great to have a rough design ready before we make the change but even that is optional. |
I don't believe we can remove prepare entirely, unless we manage to reduce the number of VMs we support in the code base down to 1. Memory standardization and the checks can still be implemented just as well in the to-be
Right, I think this imposes some constraints regarding where we could erase the error information exactly.
Yeah, I think the |
FunctionCallError
: expose information about function call execution only (that it is actionable to the end user invoking the contract)
Today preparation code implements multiple different steps, all of which return a sometimes unique variant of the
PrepareError
enum. For example if deserialization fails, aPrepareError::Deserialize
is returned, while having invalid memory or imports from a wrong module will output their ownPrepareError
variants.If we wanted to switch up the ordering of these checks, or something along these lines, the exact error type may change for certain invalid contracts. It is not entirely clear if such a change would affect the protocol stability or not, though, and that’s a problem!
If it doesn’t in fact affect the protocol stability, then there's no good reason to make this so obfuscated – we should change the code to discard the exact error type earlier. That way it is (more) obvious to the developers whether the ordering is relevant or not.
If it does affect the protocol stability, it might make sense to push for undoing this relationship. Right now the information available from preparation is insufficient for high quality diagnostics, and would only manage to hint at the problem is a very rudimentary way. And we can’t really commit to higher quality errors precisely because that would mean even more bonding between precise structure of the preparation code and the protocol versions…
(This work can be obviated at least in part by limited replayability work, but it may be a good idea to push for this nevertheless)
The text was updated successfully, but these errors were encountered: