-
-
Notifications
You must be signed in to change notification settings - Fork 804
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
fix[lang]: fix uses
analysis for nonreentrant functions
#3927
fix[lang]: fix uses
analysis for nonreentrant functions
#3927
Conversation
`uses` analysis ignores nonreentrant functions, even those (implicitly) use state. this commit adds checks both for internally (called) and external (exported) modules
also, rename `validate_functions` to more accurate `analyze_functions`
Codecov ReportAll modified and coverable lines are covered by tests ✅
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## master #3927 +/- ##
==========================================
- Coverage 90.84% 90.81% -0.04%
==========================================
Files 95 95
Lines 14413 14416 +3
Branches 3192 3192
==========================================
- Hits 13094 13092 -2
- Misses 913 917 +4
- Partials 406 407 +1 ☔ View full report in Codecov by Sentry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Right now the error message is very generic:
vyper.exceptions.ImmutableViolation: Cannot access `lib` state!
In most cases, this will work but it might be confusing if a nonreentrant
decorator is used because it might not be obvious. I would recommend either issuing a separate error message if a nonreentrant
decorator is used or amend the currently existing generic error message.
Furthermore, the compiler currently doesn't raise if block and transaction properties (e.g. block.number
or msg.gas
) or self
/ self.balance
is used:
# lib.vy
@internal
def _foo() -> address:
return self
# main.vy
import lib
@external
def foo() -> address:
return lib._foo()
Q: Should we treat these properties as well as state accesses in an extended sense, since e.g. self
is an immutable
variable in the strict sense as it resolves at construction time and not at compile-time.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
agreed
what we're interested in is marking the access to modules, not to state per see the |
I'd say we already do that, eg the following contracts won't compile: # ex1
@external
@pure
def foo() -> address:
return self
# ex2
@external
@pure
def foo() -> uint256:
return block.number |
no, these have more to do with environment access (you can think of them like "intrinsics" or "syscalls") and are not directly related to the language's module system |
opted for the latter: eaa5988 |
…3927) `uses` analysis ignores nonreentrant functions, even though those that (implicitly) use state. this commit adds checks both for internally (called) and external (exported) modules misc/refactor: - factor out `uses_state()` util - rename `validate_functions` to more accurate `analyze_functions` - improve locality of exceptions thrown in check_module_uses
fixes #3922
What I did
How I did it
How to verify it
Commit message
Description for the changelog
Cute Animal Picture