Skip to content
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

Add ability to create clones with initial value in Clones.sol #4936

Merged
merged 21 commits into from
Mar 6, 2024

Conversation

k06a
Copy link
Contributor

@k06a k06a commented Feb 29, 2024

I don't know why this was not supported initially, we faces issue trying to use Clones but was also required to pass non-zero value...

PR Checklist

  • Tests
  • Documentation
  • Changeset entry (run npx changeset add)

Copy link

changeset-bot bot commented Feb 29, 2024

🦋 Changeset detected

Latest commit: 528ebdc

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 1 package
Name Type
openzeppelin-solidity Minor

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

@Amxx
Copy link
Collaborator

Amxx commented Mar 1, 2024

Hello @k06a

When creating a clone, there is no "constructor" function that can process that value is use it to set anything. So far, I considered that if a clone needs to receive value, it would be when its being initialized:

address instance = Clones.clone(implementation);
ISomeContract(instance).initialize{ value: value}(...args);

That would only work if the initializer is payable by design, reducing the risk of sending value by mistake.

Do you have a usecase where there is no such initialization that can carry the value?

@k06a
Copy link
Contributor Author

k06a commented Mar 1, 2024

@Amxx we do not need any initializer actually. It seems separate call would cost 6800+ gas, while passing value with create/create2 if free of charge.

@Amxx
Copy link
Collaborator

Amxx commented Mar 1, 2024

Yes, if you don't have an initializer call, then passing the value at creation is definitely cheaper.
And you are right, a call to a hot address with some value and no data is 6800. I did not expect it to be that much.

Copy link
Collaborator

@Amxx Amxx left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This requires a changelog entry, and some unit test.

One thing we may want to address is what error to trigger if the balance is not sufficient. There may be a custom error in Address.sol that we can reuse here.

I'll work on that later today

@Amxx
Copy link
Collaborator

Amxx commented Mar 1, 2024

@ernestognw

In utils/Address.sol

error AddressInsufficientBalance(address account); // error is always thrown with address(this)

In utils/Create2.sol

error Create2InsufficientBalance(uint256 balance, uint256 needed);

Now, we could add a

error ClonesInsufficientBalance(...);

But it really feels like these should all be the same. Is that the moment we create a StdError library that includes a generic InsufficientBalance error ???

@Amxx
Copy link
Collaborator

Amxx commented Mar 1, 2024

Was not able to push to this branch, so I pushed my changes to https://github.com/Amxx/openzeppelin-contracts/tree/feature/clones-value

@k06a
Copy link
Contributor Author

k06a commented Mar 1, 2024

@Amxx added you to the repo to let you pushing easily, strange it is not allowed by GitHub as usually happens on PR.

@Amxx Amxx mentioned this pull request Mar 1, 2024
3 tasks
@ernestognw
Copy link
Member

ernestognw commented Mar 4, 2024

But it really feels like these should all be the same. Is that the moment we create a StdError library that includes a generic InsufficientBalance error ???

Last time we discussed about an errors library we concluded the only candidates were:

error FailedCall();
error OutOfBounds(); // Now replaced with Panic `0x32` using the new `Panic.sol` library
error InvalidSignature();
error ExpiredSignature();

I would discard InvalidSignature and ExpiredSignature because I don't think they're general enough (perhaps a separate discussion). Regarding the FailedCall, it now makes more sense because it's used in a couple of other places.

I'm also fine with FailedDeployment, but I think InsufficientETHBalance would be better than InsufficientBalance since the error is intended for ETH (or native currency) balances.

The main reason I wasn't a fan of an errors library is that the more general the error, the less contract-specific information it provides, so I would generally recommend against using them if there's a more specific alternative. This means I'd rather have an InsufficientBalance(address token, ...) for tokens (and maybe use address(0) as ether's address) but that would be too much and rather unnecessary for the ETH case.

Let's keep the library, but I have a couple of questions @Amxx:

  • Does an errors library imply backwards compatibility guarantees? (Note the proposed name is "Std Errors") We've agreed on not keeping compatibility for errors, but I'd like to make clear expectations for developers (e.g. upgrading to a version that changed the name of the error won't compile, is that expected?)
  • Since I'd generally recommend for using more specific errors, I wonder what's the benefit of recommending users to throw errors from this library?

Now on the main topic of the PR: Yes, it makes sense to accept non zero values. Thanks for bringing it up @k06a

.changeset/strong-singers-talk.md Outdated Show resolved Hide resolved
contracts/metatx/ERC2771Forwarder.sol Outdated Show resolved Hide resolved
/**
* @dev A call to an address target failed. The target may have reverted.
*/
error FailedInnerCall();
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it'd be more generic to just call it FailedCall. However, I'm realizing that the main information this error provides is that it was a subcall that failed.

I'd like to give a second thought to FailedInnerCall. Not sure if Inner is the best. Would it make more sense to call it FailedSubCall?

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

FailedCall, FailedInnerCall and FailedSubCall are all good to me. My favorite is FailedCall, because simplicity ... but all are good honestly.

Copy link
Collaborator

@Amxx Amxx Mar 5, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I also like the symetry of FailedCall <> FailedDeployment

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note that this error is also emitted when the call that fails is actually a static call or a delegate call

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I also like the symetry of FailedCall <> FailedDeployment

Let's do FailedCall, I think it covers the static and delegate call as well.

contracts/utils/Errors.sol Outdated Show resolved Hide resolved
@k06a
Copy link
Contributor Author

k06a commented Mar 4, 2024

@ernestognw you are allowed to write to the repo now


/**
* @dev Deploys and returns the address of a clone that mimics the behaviour of `implementation`.
*
* This function uses the create opcode, which should never revert.
*/
function clone(address implementation) internal returns (address instance) {
function clone(address implementation, uint256 value) internal returns (address instance) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Now that this accepts value, a factory may get locked if it doesn't accept ETH. Shall we add a note? @Amxx

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actually, this enables a couple of attack vectors:

  • Can the factory be griefed (e.g. steal eth from it)?
  • Can the factory stop receiving ETH to fund its operation?
  • Can the factory be partially DoS'd if all payable entrypoints are restricted to a single entity?

I start to feel we didn't do this in the past because it's easy to fuck it up. We can still have the function, I just want to make sure we document the risks correctly.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

IMO, that is factory design, which is beyond the scope of this library. Most factory will not use value. Those that do need to take care of that.

IMO it's like Address library (that can do call with value) and TrustedForwarder (that can trigger that call). We don't have any warning in Address about the value issue.

Copy link
Member

@ernestognw ernestognw Mar 5, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Right, indeed, we don't have a warning in Address nor ERC2771Forwarder, but the main difference is the use case:

  • ERC2771Forwarder's balance should be always zero since every call forwarded goes along with the value and everything else is refunded
  • Address is more generic and it's fine if the caller doesn't have enough balance

Although Clones is very similar to Address, it's more likely users will need to consider designing their factory in such a way that always has enough balance. Even though that's factory design, I think it makes sense to make a simple recommendation:

NOTE: Using a non-zero value at creation will require the contract using this function (e.g. a factory)
to always have enough balance for new deployments. Consider exposing this function under a payable
method.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That warning is fine

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Though, 99% or devs won't ever use this library, and out of the 1% remining, 99% will not use value.

That leaves us with 0.01%, which is basically only @k06a. Unless he decides to not test/audit its code, I think nobody will ever need that warning :)

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah probably true 😂, but ideally we would get more experienced developers like @k06a in the long run.

Think that with the Account Abstraction trend, I'd expect more factories to deploy accounts, and therefore more developers requiring initial value.

contracts/proxy/Clones.sol Outdated Show resolved Hide resolved
contracts/proxy/Clones.sol Outdated Show resolved Hide resolved
@ernestognw
Copy link
Member

Coverage is failing but it's fine imo, tests are missing a condition we've never been able to trigger.

@Amxx
Copy link
Collaborator

Amxx commented Mar 5, 2024

but I think InsufficientETHBalance would be better than InsufficientBalance since the error is intended for ETH (or native currency) balances.

To be, balance is by default the native currency. So I understand InsufficientBalance as "not enough native currency".
On mainnet, that is Eth, but on other network, that may be a different currency.
Lets say you are on Gnosis chain, where native currency is (wrapped) dai ... and where you can have bridged Eth. Would InsufficientETHBalance be accurate ? I don't think so. Same applies to Matic (and probably many other EVM compatible networkd).

So for the sake of simplicity, I think that the default should be InsufficientBalance. Then token standards like ERC-20 can add their own domain.

@ernestognw ernestognw changed the title Add Clones lib ability to support non-zero values Add ability to create clones with initial value in Clones.sol Mar 5, 2024
@ernestognw
Copy link
Member

To be, balance is by default the native currency. So I understand InsufficientBalance as "not enough native currency".
On mainnet, that is Eth, but on other network, that may be a different currency.

Fair, I wasn't considering this. Then let's keep InsufficientBalance.

Then token standards like ERC-20 can add their own domain.

Correct. This is also why I'm not a fan of the errors library, we use them because we want to generalize enough, but I feel developers starting a new project will define their own specializations.

@ernestognw
Copy link
Member

ernestognw commented Mar 5, 2024

Last thing:

Although we don't guarantee backwards compatibility on errors. Anyone upgrading from 5.0 to 5.1 will stop finding Address.FailedInnerCall. I think we should document this in the changelog.

Breaking changes

Users of upgradeable contracts depending on Address.FailedInnerCall, change it to Errors.FailedCall.

Not sure if there are more errors we've rewritten though

@Amxx
Copy link
Collaborator

Amxx commented Mar 5, 2024

Not sure if there are more errors we've rewritten though

Before this PR there was 2 different versions of InsufficientBalance that were unified:

  • AddressInsufficientBalance(address)
  • Create2InsufficientBalance(uint256,uint256)

We also had ERC1167FailedCreateClone and Create2FailedDeployment that were both replace by FailedDeployment

There are many changes, and we did clearly say that this is not something where we guarantee backward compatibility. Instead of listing all the changes I would either add nothing, or add a small note that some error names were modified, without going into the details

@ernestognw
Copy link
Member

ernestognw commented Mar 5, 2024

I'm worried about those same users who came to us asking how to replace Counters.sol, probably worrying too much

It'll be fine mentioning the error renaming generally, but I'd rather have a clear simple instruction (i.e. replace x for y). Just asked @frangio's opinion and seems he agrees with a simple list of replacements in the Changelog. Would like to hear his input (if any).

The only caveat I see with this approach is that we'll need to update the Changelog manually each time and it's kinda easy to forget if we're relaxing backwards compatibility requirements for custom errors

@ernestognw
Copy link
Member

I added the list of error replacements to the Changelog. The reasoning is that upgrades need to be as smooth as possible, and even if the developers are skilled enough, it takes time to decide and evaluate a change when there's no straight-forward recommendation.

Tried to be as succinct as possible.

ernestognw
ernestognw previously approved these changes Mar 5, 2024
Copy link
Member

@ernestognw ernestognw left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM 🚢

@ernestognw ernestognw requested a review from Amxx March 6, 2024 15:09
ernestognw
ernestognw previously approved these changes Mar 6, 2024
@ernestognw ernestognw enabled auto-merge (squash) March 6, 2024 19:41
@ernestognw ernestognw merged commit e831429 into OpenZeppelin:master Mar 6, 2024
19 of 20 checks passed
@k06a
Copy link
Contributor Author

k06a commented Mar 21, 2024

@Amxx do you have any estimate when this functionality could be release as 5.0.3 or most likely 5.1.0?

@Amxx
Copy link
Collaborator

Amxx commented Mar 21, 2024

Patches (5.0.3) are only for security updates. We don't plan on doing one, and even if we did, this would not get into it.

5.1.0 may take some time to be released :/

@ZumZoom ZumZoom deleted the feature/clones-value branch March 26, 2024 12:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants