GmxProxy
correctly implements a validCallback
modifier where msg.sender
and order.addresses.account
are verified. Based on GMX V2 implementation, it is possible to have more than one OrderHandler
which is incompatible with the current implementation.
When creating a callback contract, the callback contract may need to whitelist the DepositHandler, OrderHandler or WithdrawalHandler, it should be noted that new versions of these handlers may be deployed as new code is added to the handlers, it is also possible for two handlers to temporarily exist at the same time, e.g. OrderHandler(1), OrderHandler(2), due to this, the callback contract should be able to whitelist and simultaneously accept callbacks from multiple DepositHandlers, OrderHandlers and WithdrawalHandlers
Source:
Currently, only single orderHandler
can call the callback functions of GmxProxy
:
In case of update in GMX, it is possible that callback calls from GMX will fail as Gamma cannot support multiple orderHandler
. This will lead to complete brick of the protocol and innability to process all actions related to it.
Manual review.
From the same README:
For callback contracts instead of maintaining a separate whitelist for DepositHandlers, OrderHandlers, WithdrawalHandlers, a possible solution would be to validate the role of the msg.sender in the RoleStore, e.g.
RoleStore.hasRole(msg.sender, Role.CONTROLLER)
, this would check that the msg.sender is a valid handler
Likelihood: Low, when multiple orderHandler exist at the same time. Impact: High, some orders won’t trigger `afterOrderExecution` when they should, until the migration is complete. Leading to DoS and no share minted. Deploying a new proxy won’t change anything during all the “migration” since you cannot know which handler will respond.
The contest is live. Earn rewards by submitting a finding.
This is your time to appeal against judgements on your submissions.
Appeals are being carefully reviewed by our judges.