5386bc2625
* setup FEVM during genesis: create ETH0 actor * make gen * doExec expects to,from not from, to * give EAM a predictable address * update go-state-types * proper constructor params * workaround the situation with empty contracts * put fevm construction after miner construction * lint * fix TestAPI itest off by 1, the new miner is not 1001 anymore; that's ETH0. * add itest for ETH0 setup * improve test: check eth0 address
115 lines
3.4 KiB
Go
115 lines
3.4 KiB
Go
package genesis
|
|
|
|
import (
|
|
"context"
|
|
"encoding/hex"
|
|
"fmt"
|
|
|
|
"github.com/ipfs/go-cid"
|
|
|
|
"github.com/filecoin-project/go-state-types/abi"
|
|
actorstypes "github.com/filecoin-project/go-state-types/actors"
|
|
"github.com/filecoin-project/go-state-types/big"
|
|
builtintypes "github.com/filecoin-project/go-state-types/builtin"
|
|
evm10 "github.com/filecoin-project/go-state-types/builtin/v10/evm"
|
|
init10 "github.com/filecoin-project/go-state-types/builtin/v10/init"
|
|
"github.com/filecoin-project/go-state-types/network"
|
|
|
|
"github.com/filecoin-project/lotus/chain/actors"
|
|
"github.com/filecoin-project/lotus/chain/consensus/filcns"
|
|
"github.com/filecoin-project/lotus/chain/state"
|
|
"github.com/filecoin-project/lotus/chain/store"
|
|
"github.com/filecoin-project/lotus/chain/vm"
|
|
)
|
|
|
|
func SetupFEVM(ctx context.Context, cs *store.ChainStore, sys vm.SyscallBuilder, sroot cid.Cid, nv network.Version) (cid.Cid, error) {
|
|
av, err := actorstypes.VersionForNetwork(nv)
|
|
if err != nil {
|
|
return cid.Undef, fmt.Errorf("failed to get actors version for network version %d: %w", nv, err)
|
|
}
|
|
|
|
if av < actorstypes.Version10 {
|
|
// Not defined before version 10; migration has to setup.
|
|
return sroot, nil
|
|
}
|
|
|
|
csc := func(context.Context, abi.ChainEpoch, *state.StateTree) (abi.TokenAmount, error) {
|
|
return big.Zero(), nil
|
|
}
|
|
|
|
newVM := func(base cid.Cid) (vm.Interface, error) {
|
|
vmopt := &vm.VMOpts{
|
|
StateBase: base,
|
|
Epoch: 0,
|
|
Rand: &fakeRand{},
|
|
Bstore: cs.StateBlockstore(),
|
|
Actors: filcns.NewActorRegistry(),
|
|
Syscalls: mkFakedSigSyscalls(sys),
|
|
CircSupplyCalc: csc,
|
|
NetworkVersion: nv,
|
|
BaseFee: big.Zero(),
|
|
}
|
|
|
|
return vm.NewVM(ctx, vmopt)
|
|
}
|
|
|
|
genesisVm, err := newVM(sroot)
|
|
if err != nil {
|
|
return cid.Undef, fmt.Errorf("creating vm: %w", err)
|
|
}
|
|
|
|
// The ETH0 address is occupied by an empty contract EVM actor
|
|
evmCodeCid, ok := actors.GetActorCodeID(av, actors.EvmKey)
|
|
if !ok {
|
|
return cid.Undef, fmt.Errorf("failed to get CodeCID for EVM during genesis")
|
|
}
|
|
|
|
// initcode:
|
|
// %push(code_end - code_begin)
|
|
// dup1
|
|
// %push(code_begin)
|
|
// push1 0x00
|
|
// codecopy
|
|
// push1 0x00
|
|
// return
|
|
// code_begin:
|
|
// push1 0x00
|
|
// push1 0x00
|
|
// return
|
|
// code_end:
|
|
initcode, err := hex.DecodeString("600580600b6000396000f360006000f3")
|
|
if err != nil {
|
|
return cid.Undef, fmt.Errorf("failed to parse ETH0 init code during genesis: %w", err)
|
|
}
|
|
|
|
ctorParams := &evm10.ConstructorParams{
|
|
Creator: make([]byte, 20), // self!
|
|
// TODO we have a bunch of bugs in the evm constructor around empty contracts
|
|
// - empty init code is not allowed
|
|
// - returning an empty contract is not allowed
|
|
// So this uses code that constructs a just return contract until that can be fixed
|
|
// and we can pass an empty byte array
|
|
Initcode: initcode,
|
|
}
|
|
|
|
params := &init10.Exec4Params{
|
|
CodeCID: evmCodeCid,
|
|
ConstructorParams: mustEnc(ctorParams),
|
|
SubAddress: make([]byte, 20),
|
|
}
|
|
|
|
// TODO method 3 is Exec4; we have to name the methods in go-state-types and avoid using the number
|
|
// directly.
|
|
if _, err := doExecValue(ctx, genesisVm, builtintypes.InitActorAddr, builtintypes.EthereumAddressManagerActorAddr, big.Zero(), 3, mustEnc(params)); err != nil {
|
|
return cid.Undef, fmt.Errorf("creating ETH0 actor: %w", err)
|
|
}
|
|
|
|
newroot, err := genesisVm.Flush(ctx)
|
|
if err != nil {
|
|
return cid.Undef, fmt.Errorf("flushing vm: %w", err)
|
|
}
|
|
|
|
return newroot, nil
|
|
|
|
}
|