123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384 |
- const { ethers } = require('hardhat');
- const { expect } = require('chai');
- const { loadFixture } = require('@nomicfoundation/hardhat-network-helpers');
- const { getDomain, ForwardRequest } = require('../helpers/eip712');
- const { sum } = require('../helpers/math');
- const time = require('../helpers/time');
- async function fixture() {
- const [sender, refundReceiver, another, ...accounts] = await ethers.getSigners();
- const forwarder = await ethers.deployContract('ERC2771Forwarder', ['ERC2771Forwarder']);
- const receiver = await ethers.deployContract('CallReceiverMockTrustingForwarder', [forwarder]);
- const domain = await getDomain(forwarder);
- const types = { ForwardRequest };
- const forgeRequest = async (override = {}, signer = sender) => {
- const req = {
- from: await signer.getAddress(),
- to: await receiver.getAddress(),
- value: 0n,
- data: receiver.interface.encodeFunctionData('mockFunction'),
- gas: 100000n,
- deadline: (await time.clock.timestamp()) + 60n,
- nonce: await forwarder.nonces(sender),
- ...override,
- };
- req.signature = await signer.signTypedData(domain, types, req);
- return req;
- };
- const estimateRequest = request =>
- ethers.provider.estimateGas({
- from: forwarder,
- to: request.to,
- data: ethers.solidityPacked(['bytes', 'address'], [request.data, request.from]),
- value: request.value,
- gasLimit: request.gas,
- });
- return {
- sender,
- refundReceiver,
- another,
- accounts,
- forwarder,
- receiver,
- forgeRequest,
- estimateRequest,
- domain,
- types,
- };
- }
- describe('ERC2771Forwarder', function () {
- beforeEach(async function () {
- Object.assign(this, await loadFixture(fixture));
- });
- describe('verify', function () {
- describe('with valid signature', function () {
- it('returns true without altering the nonce', async function () {
- const request = await this.forgeRequest();
- expect(await this.forwarder.nonces(request.from)).to.equal(request.nonce);
- expect(await this.forwarder.verify(request)).to.be.true;
- expect(await this.forwarder.nonces(request.from)).to.equal(request.nonce);
- });
- });
- describe('with tampered values', function () {
- it('returns false with valid signature for non-current nonce', async function () {
- const request = await this.forgeRequest({ nonce: 1337n });
- expect(await this.forwarder.verify(request)).to.be.false;
- });
- it('returns false with valid signature for expired deadline', async function () {
- const request = await this.forgeRequest({ deadline: (await time.clock.timestamp()) - 1n });
- expect(await this.forwarder.verify(request)).to.be.false;
- });
- });
- });
- describe('execute', function () {
- describe('with valid requests', function () {
- it('emits an event and consumes nonce for a successful request', async function () {
- const request = await this.forgeRequest();
- expect(await this.forwarder.nonces(request.from)).to.equal(request.nonce);
- await expect(this.forwarder.execute(request))
- .to.emit(this.receiver, 'MockFunctionCalled')
- .to.emit(this.forwarder, 'ExecutedForwardRequest')
- .withArgs(request.from, request.nonce, true);
- expect(await this.forwarder.nonces(request.from)).to.equal(request.nonce + 1n);
- });
- it('reverts with an unsuccessful request', async function () {
- const request = await this.forgeRequest({
- data: this.receiver.interface.encodeFunctionData('mockFunctionRevertsNoReason'),
- });
- await expect(this.forwarder.execute(request)).to.be.revertedWithCustomError(this.forwarder, 'FailedCall');
- });
- });
- describe('with tampered request', function () {
- it('reverts with valid signature for non-current nonce', async function () {
- const request = await this.forgeRequest();
- // consume nonce
- await this.forwarder.execute(request);
- // nonce has changed
- await expect(this.forwarder.execute(request))
- .to.be.revertedWithCustomError(this.forwarder, 'ERC2771ForwarderInvalidSigner')
- .withArgs(
- ethers.verifyTypedData(
- this.domain,
- this.types,
- { ...request, nonce: request.nonce + 1n },
- request.signature,
- ),
- request.from,
- );
- });
- it('reverts with valid signature for expired deadline', async function () {
- const request = await this.forgeRequest({ deadline: (await time.clock.timestamp()) - 1n });
- await expect(this.forwarder.execute(request))
- .to.be.revertedWithCustomError(this.forwarder, 'ERC2771ForwarderExpiredRequest')
- .withArgs(request.deadline);
- });
- it('reverts with valid signature but mismatched value', async function () {
- const request = await this.forgeRequest({ value: 100n });
- await expect(this.forwarder.execute(request))
- .to.be.revertedWithCustomError(this.forwarder, 'ERC2771ForwarderMismatchedValue')
- .withArgs(request.value, 0n);
- });
- });
- it('bubbles out of gas', async function () {
- const request = await this.forgeRequest({
- data: this.receiver.interface.encodeFunctionData('mockFunctionOutOfGas'),
- gas: 1_000_000n,
- });
- const gasLimit = 100_000n;
- await expect(this.forwarder.execute(request, { gasLimit })).to.be.revertedWithoutReason();
- const { gasUsed } = await ethers.provider
- .getBlock('latest')
- .then(block => block.getTransaction(0))
- .then(tx => ethers.provider.getTransactionReceipt(tx.hash));
- expect(gasUsed).to.equal(gasLimit);
- });
- it('bubbles out of gas forced by the relayer', async function () {
- const request = await this.forgeRequest();
- // If there's an incentive behind executing requests, a malicious relayer could grief
- // the forwarder by executing requests and providing a top-level call gas limit that
- // is too low to successfully finish the request after the 63/64 rule.
- // We set the baseline to the gas limit consumed by a successful request if it was executed
- // normally. Note this includes the 21000 buffer that also the relayer will be charged to
- // start a request execution.
- const estimate = await this.estimateRequest(request);
- // Because the relayer call consumes gas until the `CALL` opcode, the gas left after failing
- // the subcall won't enough to finish the top level call (after testing), so we add a
- // moderated buffer.
- const gasLimit = estimate + 10_000n;
- // The subcall out of gas should be caught by the contract and then bubbled up consuming
- // the available gas with an `invalid` opcode.
- await expect(this.forwarder.execute(request, { gasLimit })).to.be.revertedWithoutReason();
- const { gasUsed } = await ethers.provider
- .getBlock('latest')
- .then(block => block.getTransaction(0))
- .then(tx => ethers.provider.getTransactionReceipt(tx.hash));
- // We assert that indeed the gas was totally consumed.
- expect(gasUsed).to.equal(gasLimit);
- });
- });
- describe('executeBatch', function () {
- const requestsValue = requests => sum(...requests.map(request => request.value));
- const requestCount = 3;
- const idx = 1; // index that will be tampered with
- beforeEach(async function () {
- this.forgeRequests = override =>
- Promise.all(this.accounts.slice(0, requestCount).map(signer => this.forgeRequest(override, signer)));
- this.requests = await this.forgeRequests({ value: 10n });
- this.value = requestsValue(this.requests);
- });
- describe('with valid requests', function () {
- it('sanity', async function () {
- for (const request of this.requests) {
- expect(await this.forwarder.verify(request)).to.be.true;
- }
- });
- it('emits events', async function () {
- const receipt = this.forwarder.executeBatch(this.requests, this.another, { value: this.value });
- for (const request of this.requests) {
- await expect(receipt)
- .to.emit(this.receiver, 'MockFunctionCalled')
- .to.emit(this.forwarder, 'ExecutedForwardRequest')
- .withArgs(request.from, request.nonce, true);
- }
- });
- it('increase nonces', async function () {
- await this.forwarder.executeBatch(this.requests, this.another, { value: this.value });
- for (const request of this.requests) {
- expect(await this.forwarder.nonces(request.from)).to.equal(request.nonce + 1n);
- }
- });
- });
- describe('with tampered requests', function () {
- it('reverts with mismatched value', async function () {
- // tamper value of one of the request + resign
- this.requests[idx] = await this.forgeRequest({ value: 100n }, this.accounts[1]);
- await expect(this.forwarder.executeBatch(this.requests, this.another, { value: this.value }))
- .to.be.revertedWithCustomError(this.forwarder, 'ERC2771ForwarderMismatchedValue')
- .withArgs(requestsValue(this.requests), this.value);
- });
- describe('when the refund receiver is the zero address', function () {
- beforeEach(function () {
- this.refundReceiver = ethers.ZeroAddress;
- });
- it('reverts with at least one valid signature for non-current nonce', async function () {
- // Execute first a request
- await this.forwarder.execute(this.requests[idx], { value: this.requests[idx].value });
- // And then fail due to an already used nonce
- await expect(this.forwarder.executeBatch(this.requests, this.refundReceiver, { value: this.value }))
- .to.be.revertedWithCustomError(this.forwarder, 'ERC2771ForwarderInvalidSigner')
- .withArgs(
- ethers.verifyTypedData(
- this.domain,
- this.types,
- { ...this.requests[idx], nonce: this.requests[idx].nonce + 1n },
- this.requests[idx].signature,
- ),
- this.requests[idx].from,
- );
- });
- it('reverts with at least one valid signature for expired deadline', async function () {
- this.requests[idx] = await this.forgeRequest(
- { ...this.requests[idx], deadline: (await time.clock.timestamp()) - 1n },
- this.accounts[1],
- );
- await expect(this.forwarder.executeBatch(this.requests, this.refundReceiver, { value: this.amount }))
- .to.be.revertedWithCustomError(this.forwarder, 'ERC2771ForwarderExpiredRequest')
- .withArgs(this.requests[idx].deadline);
- });
- });
- describe('when the refund receiver is a known address', function () {
- beforeEach(async function () {
- this.initialRefundReceiverBalance = await ethers.provider.getBalance(this.refundReceiver);
- this.initialTamperedRequestNonce = await this.forwarder.nonces(this.requests[idx].from);
- });
- it('ignores a request with a valid signature for non-current nonce', async function () {
- // Execute first a request
- await this.forwarder.execute(this.requests[idx], { value: this.requests[idx].value });
- this.initialTamperedRequestNonce++; // Should be already incremented by the individual `execute`
- // And then ignore the same request in a batch due to an already used nonce
- const events = await this.forwarder
- .executeBatch(this.requests, this.refundReceiver, { value: this.value })
- .then(tx => tx.wait())
- .then(receipt =>
- receipt.logs.filter(
- log => log?.fragment?.type == 'event' && log?.fragment?.name == 'ExecutedForwardRequest',
- ),
- );
- expect(events).to.have.lengthOf(this.requests.length - 1);
- });
- it('ignores a request with a valid signature for expired deadline', async function () {
- this.requests[idx] = await this.forgeRequest(
- { ...this.requests[idx], deadline: (await time.clock.timestamp()) - 1n },
- this.accounts[1],
- );
- const events = await this.forwarder
- .executeBatch(this.requests, this.refundReceiver, { value: this.value })
- .then(tx => tx.wait())
- .then(receipt =>
- receipt.logs.filter(
- log => log?.fragment?.type == 'event' && log?.fragment?.name == 'ExecutedForwardRequest',
- ),
- );
- expect(events).to.have.lengthOf(this.requests.length - 1);
- });
- afterEach(async function () {
- // The invalid request value was refunded
- expect(await ethers.provider.getBalance(this.refundReceiver)).to.equal(
- this.initialRefundReceiverBalance + this.requests[idx].value,
- );
- // The invalid request from's nonce was not incremented
- expect(await this.forwarder.nonces(this.requests[idx].from)).to.equal(this.initialTamperedRequestNonce);
- });
- });
- it('bubbles out of gas', async function () {
- this.requests[idx] = await this.forgeRequest({
- data: this.receiver.interface.encodeFunctionData('mockFunctionOutOfGas'),
- gas: 1_000_000n,
- });
- const gasLimit = 300_000n;
- await expect(
- this.forwarder.executeBatch(this.requests, ethers.ZeroAddress, {
- gasLimit,
- value: requestsValue(this.requests),
- }),
- ).to.be.revertedWithoutReason();
- const { gasUsed } = await ethers.provider
- .getBlock('latest')
- .then(block => block.getTransaction(0))
- .then(tx => ethers.provider.getTransactionReceipt(tx.hash));
- expect(gasUsed).to.equal(gasLimit);
- });
- it('bubbles out of gas forced by the relayer', async function () {
- // Similarly to the single execute, a malicious relayer could grief requests.
- // We estimate until the selected request as if they were executed normally
- const estimate = await Promise.all(this.requests.slice(0, idx + 1).map(this.estimateRequest)).then(gas =>
- sum(...gas),
- );
- // We add a Buffer to account for all the gas that's used before the selected call.
- // Note is slightly bigger because the selected request is not the index 0 and it affects
- // the buffer needed.
- const gasLimit = estimate + 10_000n;
- // The subcall out of gas should be caught by the contract and then bubbled up consuming
- // the available gas with an `invalid` opcode.
- await expect(
- this.forwarder.executeBatch(this.requests, ethers.ZeroAddress, {
- gasLimit,
- value: requestsValue(this.requests),
- }),
- ).to.be.revertedWithoutReason();
- const { gasUsed } = await ethers.provider
- .getBlock('latest')
- .then(block => block.getTransaction(0))
- .then(tx => ethers.provider.getTransactionReceipt(tx.hash));
- // We assert that indeed the gas was totally consumed.
- expect(gasUsed).to.equal(gasLimit);
- });
- });
- });
- });
|