-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
app/eth2wrap: sign domain for
VOLUNTARY_EXIT
(#3035)
Instead of returning the latest Domain available when the DomainName requested is VOLUNTARY_EXIT, returns the Capella one as detailed in EIP-7044. Doing so fixes both `exit` commands generating wrong signatures and voluntary exits sent over the VC. category: bug ticket: #2981 Closes #2981.
- Loading branch information
Showing
9 changed files
with
389 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,134 @@ | ||
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1 | ||
|
||
package eth2util | ||
|
||
import ( | ||
"context" | ||
"encoding/hex" | ||
"strings" | ||
|
||
eth2client "github.com/attestantio/go-eth2-client" | ||
eth2api "github.com/attestantio/go-eth2-client/api" | ||
eth2p0 "github.com/attestantio/go-eth2-client/spec/phase0" | ||
ssz "github.com/ferranbt/fastssz" | ||
|
||
"github.com/obolnetwork/charon/app/errors" | ||
) | ||
|
||
var capellaForkMap = map[string]string{ | ||
"0x00000000": "0x03000000", | ||
"0x00001020": "0x03001020", | ||
"0x00000064": "0x03000064", | ||
"0x90000069": "0x90000072", | ||
"0x01017000": "0x04017000", | ||
} | ||
|
||
// CapellaFork maps generic fork hashes to their specific Capella hardfork | ||
// values. | ||
func CapellaFork(forkHash string) (string, error) { | ||
d, ok := capellaForkMap[forkHash] | ||
if !ok { | ||
return "", errors.New("no capella fork for specified fork") | ||
} | ||
|
||
return d, nil | ||
} | ||
|
||
type forkDataType struct { | ||
CurrentVersion [4]byte | ||
GenesisValidatorsRoot [32]byte | ||
} | ||
|
||
func (e forkDataType) GetTree() (*ssz.Node, error) { | ||
node, err := ssz.ProofTree(e) | ||
if err != nil { | ||
return nil, errors.Wrap(err, "proof tree") | ||
} | ||
|
||
return node, nil | ||
} | ||
|
||
func (e forkDataType) HashTreeRoot() ([32]byte, error) { | ||
hash, err := ssz.HashWithDefaultHasher(e) | ||
if err != nil { | ||
return [32]byte{}, errors.Wrap(err, "hash with default hasher") | ||
} | ||
|
||
return hash, nil | ||
} | ||
|
||
func (e forkDataType) HashTreeRootWith(hh ssz.HashWalker) error { | ||
indx := hh.Index() | ||
|
||
// Field (0) 'CurrentVersion' | ||
hh.PutBytes(e.CurrentVersion[:]) | ||
|
||
// Field (1) 'GenesisValidatorsRoot' | ||
hh.PutBytes(e.GenesisValidatorsRoot[:]) | ||
|
||
hh.Merkleize(indx) | ||
|
||
return nil | ||
} | ||
|
||
// ComputeDomain computes the domain for a given domainType, genesisValidatorRoot at the specified fork hash. | ||
func ComputeDomain(forkHash string, domainType eth2p0.DomainType, genesisValidatorRoot eth2p0.Root) (eth2p0.Domain, error) { | ||
fb, err := hex.DecodeString(strings.TrimPrefix(forkHash, "0x")) | ||
if err != nil { | ||
return eth2p0.Domain{}, errors.Wrap(err, "fork hash hex") | ||
} | ||
|
||
_, err = CapellaFork(forkHash) | ||
if err != nil { | ||
return eth2p0.Domain{}, errors.Wrap(err, "invalid fork hash") | ||
} | ||
|
||
rawFdt := forkDataType{GenesisValidatorsRoot: genesisValidatorRoot, CurrentVersion: [4]byte(fb)} | ||
fdt, err := rawFdt.HashTreeRoot() | ||
if err != nil { | ||
return eth2p0.Domain{}, errors.Wrap(err, "fork data type hash tree root") | ||
} | ||
|
||
var domain []byte | ||
domain = append(domain, domainType[:]...) | ||
domain = append(domain, fdt[:28]...) | ||
|
||
return eth2p0.Domain(domain), nil | ||
} | ||
|
||
// CapellaDomain returns the Capella signature domain, calculating it given the fork hash string. | ||
func CapellaDomain( | ||
ctx context.Context, | ||
forkHash string, | ||
specProvider eth2client.SpecProvider, | ||
genesisProvider eth2client.GenesisProvider, | ||
) (eth2p0.Domain, error) { | ||
rawSpec, err := specProvider.Spec(ctx, ð2api.SpecOpts{}) | ||
if err != nil { | ||
return eth2p0.Domain{}, errors.Wrap(err, "fetch spec") | ||
} | ||
|
||
genesis, err := genesisProvider.Genesis(ctx, ð2api.GenesisOpts{}) | ||
if err != nil { | ||
return eth2p0.Domain{}, errors.Wrap(err, "fetch genesis") | ||
} | ||
|
||
spec := rawSpec.Data | ||
|
||
domainType, ok := spec["DOMAIN_VOLUNTARY_EXIT"] | ||
if !ok { | ||
return eth2p0.Domain{}, errors.New("domain type not found in spec") | ||
} | ||
|
||
domainTyped, ok := domainType.(eth2p0.DomainType) | ||
if !ok { | ||
return [32]byte{}, errors.New("invalid domain type") | ||
} | ||
|
||
domain, err := ComputeDomain(forkHash, domainTyped, genesis.Data.GenesisValidatorsRoot) | ||
if err != nil { | ||
return eth2p0.Domain{}, errors.Wrap(err, "compute domain") | ||
} | ||
|
||
return domain, nil | ||
} |
Oops, something went wrong.