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

FLIP 275: Removal of Types in Contract Updates #276

Merged
merged 6 commits into from
Oct 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
110 changes: 110 additions & 0 deletions cadence/20240604-cadence-type-removal.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
---
status: accepted
flip: 275
authors: Daniel Sainati ([email protected])
sponsor: Daniel Sainati ([email protected])
updated: 2024-10-30
---

# FLIP 275: Removal of Types in Contract Updates

## Objective

This adds a new pragma to Cadence that when processed by the contract update validator will
allow a type to be removed from a contract, and also prevent a type with the same name from being
added to that contract later.

## Motivation

As originally outlined in https://github.com/onflow/cadence/issues/3210, users have been asking for
the ability to remove types from their contracts as they become outdated or otherwise unnecessary.
The Cadence 1.0 upgrade in particular had exacerbated this need, as the changes to access control have
rendered a number of types obsolete.

However, [removing a type definition hasn't been possible/allowed](https://cadence-lang.org/docs/language/contract-updatability#invalid-changes-2)
so far, since it can create type safety issues, by being able to re-add a different type definition with the same name later.
So this motivated the necessity of having a way to tombstone a type definition.

## User Benefit

This will allow users to remove deprecated or unnecessary type definitions from their contracts.

## Design Proposal

The proposal is to introduces a new `#removedType` pragma to Cadence.
This pragma takes a single argument, an identifier specifying the type that got removed.
Importantly, this identifier is not qualified, i.e. to remove a type `R` from a contract `C`, `#removedType(R)`
would be used, rather than `#removedType(C.R)`.
This is because the pragma is added at the same scope at which the type to be removed was originally defined.
So, for example, to remove a resource `R` from `C` defined like so:

```cadence
access(all) contract C {

access(all) resource R {
// ... resource body
}

// ... contract body
}
```

the pragma would be placed here:

```cadence
access(all) contract C {

#removedType(R)
Copy link
Contributor

Choose a reason for hiding this comment

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

Would something like this work as well:

resource R {
        #removedType
    }

This might be a bit cleared because the type is still in the contract code its just flagged as removed.


// ... contract body
}
```

Placing the pragma at the top level, or nested inside another definition in `C` has no effect, and does not permit the removal of `R`.
Copy link
Member

Choose a reason for hiding this comment

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

Could we make this an error/warning?


When used correctly, the pragma is processed by the contract update validator and allows an update to `C` to be
performed that does not include a definition of the resource type `R`, even though the old version of `C` did include `R`.
In fact, when the `#removedType(T)` pragma is present, the contract update validator will reject any update to the
contract that includes a definition of `T` at the same scope level as the pragma.
This is to prevent the type from being added back later with incompatible changes that would otherwise circumvent the
contract update validation restrictions.

Additionally, once present in a contract, the `#removedType(T)` pragma may never be removed, as this would allow the type
it removed to be re-added, once again potentially circumventing the update validation.

Lastly, the `#removedType` pragma may only be used with concrete types (`struct`s, `resource`s, `enum`s, and `attachment`s),
not with interfaces.
This is due to the fact that a removed interface cannot be removed from any existing conformance lists in which it is present,
and thus removing an interface would irrevocably break any downstream types that inherited from it.

### Draft Implementation

A prototype implementation was added in https://github.com/onflow/cadence/pull/3376 and https://github.com/onflow/cadence/pull/3380.
This is currently disabled by default, and has been added only as a proof of concept.

### Drawbacks

Removing a type definition will break any downstream code that uses that type until uses of the type are removed.
In some cases this is more feasible than in others; if a resource definition `R` is removed, removing a field of type
`R` from a downstream contract is much easier than, say, fixing an attachment `A` that is designed to be used with `R`.
In the latter case, the attachment `A` is likely unusable and will also have to be removed.

However, it is worth mentioning that this is no different from someone removing a function definition from a type,
and any downstream code that depends on that particular function being broken, which is already possible.
As such, the backward compatibility of deployed code is not guaranteed by (and is not an objective of) the contract
update validation anyway.

Additionally, any existing stored values of the removed type will be broken and un-usable forever.
Because we do not currently possess a way to remove broken values from storage, the inability to load these values also
means they will sit in storage forever.
This change significantly increases the priority of implementing a solution for deleting broken values in storage.

### Alternatives Considered

As outlined in https://github.com/onflow/cadence/issues/3210, an alternative pragma specifying a type replacement,
rather than a removal was considered. We elected to do the first, easier solution due to time constraints, but are open
to considering the second given sufficiently good reason.

## Questions and Discussion

* Is it worth enabling the removal of interface types as well as regular composites?