Skip to content

Commit

Permalink
Merge branch 'master' into fix-estimategas
Browse files Browse the repository at this point in the history
  • Loading branch information
dustinxie committed Jul 2, 2024
2 parents ca276d4 + 6c7e207 commit 4c776f8
Show file tree
Hide file tree
Showing 5 changed files with 116 additions and 44 deletions.
11 changes: 6 additions & 5 deletions action/protocol/staking/handler_candidate_transfer_ownership.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ func (p *Protocol) validateCandidateTransferOwnership(_ context.Context, act *ac
if acc, err := accountutil.LoadOrCreateAccount(csm.SM(), act.NewOwner()); err != nil || acc.IsContract() {
return &handleError{
err: errors.New("new owner is not a valid address"),
failureStatus: iotextypes.ReceiptStatus_ErrUnauthorizedOperator,
failureStatus: iotextypes.ReceiptStatus_ErrUnknown,
}
}

Expand All @@ -116,16 +116,17 @@ func (p *Protocol) validateCandidateTransferOwnership(_ context.Context, act *ac
if cand != nil {
return &handleError{
err: errors.New("new owner is already a candidate"),
failureStatus: iotextypes.ReceiptStatus_ErrUnauthorizedOperator,
failureStatus: iotextypes.ReceiptStatus_ErrCandidateAlreadyExist,
}
}

//check the new owner is exist in the identifier list
// check the new owner is exist in the identifier list
// except the candidate itself
cand = csm.GetByIdentifier(act.NewOwner())
if cand != nil {
if cand != nil && !cand.Equal(candidate) {
return &handleError{
err: errors.New("new owner is already a candidate"),
failureStatus: iotextypes.ReceiptStatus_ErrUnauthorizedOperator,
failureStatus: iotextypes.ReceiptStatus_ErrCandidateAlreadyExist,
}
}
return nil
Expand Down
13 changes: 7 additions & 6 deletions action/protocol/staking/handlers.go
Original file line number Diff line number Diff line change
Expand Up @@ -691,20 +691,21 @@ func (p *Protocol) handleCandidateRegister(ctx context.Context, act *action.Cand
// cannot collide with existing identifier
candID := owner
if !featureCtx.CandidateIdentifiedByOwner {
id, err := p.generateCandidateID(owner, blkCtx.BlockHeight, csm)
if err != nil {
// cannot collide with existing identifier
if csm.GetByIdentifier(owner) != nil {
return log, nil, &handleError{
err: errors.Wrap(err, "failed to generate candidate ID"),
err: ErrInvalidOwner,
failureStatus: iotextypes.ReceiptStatus_ErrCandidateAlreadyExist,
}
}
candID = id
if csm.GetByIdentifier(candID) != nil {
id, err := p.generateCandidateID(owner, blkCtx.BlockHeight, csm)
if err != nil {
return log, nil, &handleError{
err: ErrInvalidOwner,
err: errors.Wrap(err, "failed to generate candidate ID"),
failureStatus: iotextypes.ReceiptStatus_ErrCandidateAlreadyExist,
}
}
candID = id
}
// cannot collide with existing name
if csm.ContainsName(act.Name()) && (!ownerExist || act.Name() != c.Name) {
Expand Down
8 changes: 5 additions & 3 deletions e2etest/e2etest.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import (
"google.golang.org/grpc/credentials/insecure"

"github.com/iotexproject/iotex-proto/golang/iotexapi"
"github.com/iotexproject/iotex-proto/golang/iotextypes"

"github.com/iotexproject/iotex-core/action"
"github.com/iotexproject/iotex-core/actpool"
Expand Down Expand Up @@ -95,9 +96,10 @@ func (e *e2etest) runCase(ctx context.Context, c *testcase) {
c.preFunc(e)
}
// run pre-actions
for _, act := range c.preActs {
_, _, err := addOneTx(ctx, ap, bc, act)
require.NoError(err)
for i, act := range c.preActs {
_, receipt, err := addOneTx(ctx, ap, bc, act)
require.NoErrorf(err, "failed to add pre-action %d", i)
require.EqualValuesf(iotextypes.ReceiptStatus_Success, receipt.Status, "pre-action %d failed", i)
}
// run action
act, receipt, err := addOneTx(ctx, ap, bc, c.act)
Expand Down
4 changes: 4 additions & 0 deletions e2etest/expect.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ import (
"github.com/iotexproject/iotex-core/blockchain/genesis"
)

var (
successExpect = &basicActionExpect{nil, uint64(iotextypes.ReceiptStatus_Success), ""}
)

type (
actionExpect interface {
expect(test *e2etest, act *action.SealedEnvelope, receipt *action.Receipt, err error)
Expand Down
124 changes: 94 additions & 30 deletions e2etest/native_staking_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ func TestNativeStaking(t *testing.T) {
t.Run("candidate transfer ownership to a exist candidate", func(t *testing.T) {
_, ccto, err := addOneTx(action.SignedCandidateTransferOwnership(7, cand2Addr.String(), nil, gasLimit, gasPrice, cand1PriKey, action.WithChainID(chainID)))
require.NoError(err)
require.EqualValues(iotextypes.ReceiptStatus_ErrUnauthorizedOperator, ccto.Status)
require.EqualValues(iotextypes.ReceiptStatus_ErrCandidateAlreadyExist, ccto.Status)
require.NoError(checkCandidateState(sf, candidate1Name, identityset.Address(33).String(), big.NewInt(0), cand1NewVotes, cand1Addr))
})
t.Run("candidate transfer ownership to a normal new address again", func(t *testing.T) {
Expand All @@ -490,7 +490,7 @@ func TestNativeStaking(t *testing.T) {
newOwner2 := identityset.Address(34)
_, ccto, err := addOneTx(action.SignedCandidateTransferOwnership(9, newOwner2.String(), nil, gasLimit, gasPrice, cand1PriKey, action.WithChainID(chainID)))
require.NoError(err)
require.EqualValues(iotextypes.ReceiptStatus_ErrUnauthorizedOperator, ccto.Status)
require.EqualValues(iotextypes.ReceiptStatus_ErrCandidateAlreadyExist, ccto.Status)
require.NoError(checkCandidateState(sf, candidate1Name, newOwner2.String(), big.NewInt(0), cand1NewVotes, cand1Addr))
})
t.Run("candidate transfer ownership to a contract address", func(t *testing.T) {
Expand All @@ -500,7 +500,7 @@ func TestNativeStaking(t *testing.T) {
require.EqualValues(iotextypes.ReceiptStatus_Success, se.Status)
_, ccto, err := addOneTx(action.SignedCandidateTransferOwnership(11, se.ContractAddress, nil, gasLimit, gasPrice, cand1PriKey, action.WithChainID(chainID)))
require.NoError(err)
require.EqualValues(iotextypes.ReceiptStatus_ErrUnauthorizedOperator, ccto.Status)
require.EqualValues(iotextypes.ReceiptStatus_ErrUnknown, ccto.Status)
require.NoError(checkCandidateState(sf, candidate1Name, identityset.Address(34).String(), big.NewInt(0), cand1NewVotes, cand1Addr))
})
t.Run("candidate transfer ownership to a invalid address", func(t *testing.T) {
Expand Down Expand Up @@ -606,36 +606,14 @@ func TestCandidateTransferOwnership(t *testing.T) {
cfg.Genesis.InitBalanceMap[identityset.Address(1).String()] = "100000000000000000000000000"
cfg.Genesis.InitBalanceMap[identityset.Address(2).String()] = "100000000000000000000000000"
cfg.Genesis.EndorsementWithdrawWaitingBlocks = 10
cfg.Genesis.PacificBlockHeight = 1
cfg.Genesis.AleutianBlockHeight = 1
cfg.Genesis.BeringBlockHeight = 1
cfg.Genesis.CookBlockHeight = 1
cfg.Genesis.DardanellesBlockHeight = 1
cfg.Genesis.DaytonaBlockHeight = 1
cfg.Genesis.EasterBlockHeight = 1
cfg.Genesis.FbkMigrationBlockHeight = 1
cfg.Genesis.FairbankBlockHeight = 1
cfg.Genesis.GreenlandBlockHeight = 1
cfg.Genesis.HawaiiBlockHeight = 1
cfg.Genesis.IcelandBlockHeight = 1
cfg.Genesis.JutlandBlockHeight = 1
cfg.Genesis.KamchatkaBlockHeight = 1
cfg.Genesis.LordHoweBlockHeight = 1
cfg.Genesis.MidwayBlockHeight = 1
cfg.Genesis.NewfoundlandBlockHeight = 1
cfg.Genesis.OkhotskBlockHeight = 1
cfg.Genesis.PalauBlockHeight = 1
cfg.Genesis.QuebecBlockHeight = 1
cfg.Genesis.RedseaBlockHeight = 1
cfg.Genesis.SumatraBlockHeight = 1
cfg.Genesis.TsunamiBlockHeight = 1
cfg.Genesis.UpernavikBlockHeight = 2 // enable CandidateIdentifiedByOwner feature
normalizeGenesisHeights(&cfg)
return cfg
}
registerAmount, _ := big.NewInt(0).SetString("1200000000000000000000000", 10)
gasLimit = uint64(10000000)
gasPrice = big.NewInt(1)
successExpect := &basicActionExpect{nil, uint64(iotextypes.ReceiptStatus_Success), ""}

t.Run("transfer candidate ownership", func(t *testing.T) {
test := newE2ETest(t, initCfg())
Expand All @@ -653,9 +631,9 @@ func TestCandidateTransferOwnership(t *testing.T) {
expect: []actionExpect{successExpect, &candidateExpect{"cand1", &iotextypes.CandidateV2{Name: "cand1", OperatorAddress: identityset.Address(1).String(), RewardAddress: identityset.Address(1).String(), TotalWeightedVotes: "1245621408203087110422302", SelfStakingTokens: "0", OwnerAddress: identityset.Address(newOwnerID).String(), SelfStakeBucketIdx: math.MaxUint64}}},
},
{
name: "cannot transfer to old owner",
name: "transfer back to old owner",
act: &actionWithTime{mustNoErr(action.SignedCandidateTransferOwnership(test.nonceMgr.pop(identityset.Address(newOwnerID).String()), identityset.Address(oldOwnerID).String(), nil, gasLimit, gasPrice, identityset.PrivateKey(newOwnerID), action.WithChainID(chainID))), time.Now()},
expect: []actionExpect{&basicActionExpect{nil, uint64(iotextypes.ReceiptStatus_ErrUnauthorizedOperator), ""}},
expect: []actionExpect{successExpect, &candidateExpect{"cand1", &iotextypes.CandidateV2{Name: "cand1", OperatorAddress: identityset.Address(1).String(), RewardAddress: identityset.Address(1).String(), TotalWeightedVotes: "1245621408203087110422302", SelfStakingTokens: "0", OwnerAddress: identityset.Address(oldOwnerID).String(), SelfStakeBucketIdx: math.MaxUint64}}},
},
})
})
Expand Down Expand Up @@ -728,7 +706,7 @@ func TestCandidateTransferOwnership(t *testing.T) {
{mustNoErr(action.SignedCandidateTransferOwnership(test.nonceMgr.pop(identityset.Address(oldOwnerID).String()), identityset.Address(newOwnerID).String(), nil, gasLimit, gasPrice, identityset.PrivateKey(oldOwnerID), action.WithChainID(chainID))), time.Now()},
},
act: &actionWithTime{mustNoErr(action.SignedCandidateRegister(test.nonceMgr.pop(identityset.Address(oldOwnerID).String()), "cand2", identityset.Address(2).String(), identityset.Address(1).String(), identityset.Address(oldOwnerID).String(), registerAmount.String(), 1, true, nil, gasLimit, gasPrice, identityset.PrivateKey(oldOwnerID), action.WithChainID(chainID))), time.Now()},
expect: []actionExpect{successExpect, &candidateExpect{"cand2", &iotextypes.CandidateV2{Id: "", Name: "cand2", OperatorAddress: identityset.Address(2).String(), RewardAddress: identityset.Address(1).String(), TotalWeightedVotes: "1245621408203087110422302", SelfStakingTokens: registerAmount.String(), OwnerAddress: identityset.Address(oldOwnerID).String(), SelfStakeBucketIdx: 1}}},
expect: []actionExpect{&basicActionExpect{nil, uint64(iotextypes.ReceiptStatus_ErrCandidateAlreadyExist), ""}},
},
{
name: "new owner cannot register again",
Expand All @@ -743,7 +721,7 @@ func TestCandidateTransferOwnership(t *testing.T) {
{
name: "new owner can register again",
act: &actionWithTime{mustNoErr(action.SignedCandidateRegister(test.nonceMgr.pop(identityset.Address(newOwnerID).String()), "cand3", identityset.Address(3).String(), identityset.Address(1).String(), identityset.Address(newOwnerID).String(), registerAmount.String(), 1, true, nil, gasLimit, gasPrice, identityset.PrivateKey(newOwnerID), action.WithChainID(chainID))), time.Now()},
expect: []actionExpect{successExpect, &candidateExpect{"cand3", &iotextypes.CandidateV2{Name: "cand3", OperatorAddress: identityset.Address(3).String(), RewardAddress: identityset.Address(1).String(), TotalWeightedVotes: "1245621408203087110422302", SelfStakingTokens: registerAmount.String(), OwnerAddress: identityset.Address(newOwnerID).String(), SelfStakeBucketIdx: 2}}},
expect: []actionExpect{successExpect, &candidateExpect{"cand3", &iotextypes.CandidateV2{Name: "cand3", OperatorAddress: identityset.Address(3).String(), RewardAddress: identityset.Address(1).String(), TotalWeightedVotes: "1245621408203087110422302", SelfStakingTokens: registerAmount.String(), OwnerAddress: identityset.Address(newOwnerID).String(), SelfStakeBucketIdx: 1}}},
},
})
})
Expand Down Expand Up @@ -1127,3 +1105,89 @@ func TestCandidateTransferOwnership(t *testing.T) {
})
})
}

func TestCandidateOwnerCollision(t *testing.T) {
require := require.New(t)
initCfg := func() config.Config {
cfg := deepcopy.Copy(config.Default).(config.Config)
initDBPaths(require, &cfg)

cfg.ActPool.MinGasPriceStr = "0"
cfg.Chain.TrieDBPatchFile = ""
cfg.Consensus.Scheme = config.NOOPScheme
cfg.Chain.EnableAsyncIndexWrite = false
cfg.Genesis.InitBalanceMap[identityset.Address(1).String()] = "100000000000000000000000000"
cfg.Genesis.InitBalanceMap[identityset.Address(2).String()] = "100000000000000000000000000"
cfg.Genesis.EndorsementWithdrawWaitingBlocks = 10
cfg.Genesis.TsunamiBlockHeight = 1
cfg.Genesis.UpernavikBlockHeight = 2 // enable CandidateIdentifiedByOwner feature
normalizeGenesisHeights(&cfg)
return cfg
}
registerAmount, _ := big.NewInt(0).SetString("1200000000000000000000000", 10)
gasLimit = uint64(10000000)
gasPrice = big.NewInt(1)
oldOwnerID := 1
newOwnerID := 2
newOwnerID2 := 3
test := newE2ETest(t, initCfg())
defer test.teardown()
chainID := test.cfg.Chain.ID
test.run([]*testcase{
{
name: "owner cannot register again",
preActs: []*actionWithTime{
{mustNoErr(action.SignedCandidateRegister(test.nonceMgr.pop(identityset.Address(oldOwnerID).String()), "cand1", identityset.Address(1).String(), identityset.Address(1).String(), identityset.Address(oldOwnerID).String(), registerAmount.String(), 1, true, nil, gasLimit, gasPrice, identityset.PrivateKey(oldOwnerID), action.WithChainID(chainID))), time.Now()},
},
act: &actionWithTime{mustNoErr(action.SignedCandidateRegister(test.nonceMgr.pop(identityset.Address(oldOwnerID).String()), "cand2", identityset.Address(2).String(), identityset.Address(2).String(), identityset.Address(oldOwnerID).String(), registerAmount.String(), 1, true, nil, gasLimit, gasPrice, identityset.PrivateKey(oldOwnerID), action.WithChainID(chainID))), time.Now()},
expect: []actionExpect{&basicActionExpect{nil, uint64(iotextypes.ReceiptStatus_ErrCandidateAlreadyExist), ""}},
},
{
name: "original owner cannot register again",
preActs: []*actionWithTime{{mustNoErr(action.SignedCandidateTransferOwnership(test.nonceMgr.pop(identityset.Address(oldOwnerID).String()), identityset.Address(newOwnerID).String(), nil, gasLimit, gasPrice, identityset.PrivateKey(oldOwnerID), action.WithChainID(chainID))), time.Now()}},
act: &actionWithTime{mustNoErr(action.SignedCandidateRegister(test.nonceMgr.pop(identityset.Address(oldOwnerID).String()), "cand2", identityset.Address(2).String(), identityset.Address(2).String(), identityset.Address(oldOwnerID).String(), registerAmount.String(), 1, true, nil, gasLimit, gasPrice, identityset.PrivateKey(oldOwnerID), action.WithChainID(chainID))), time.Now()},
expect: []actionExpect{&basicActionExpect{nil, uint64(iotextypes.ReceiptStatus_ErrCandidateAlreadyExist), ""}},
},
{
name: "cannot transfer to a new owner that same as an existed candidate identifier",
preActs: []*actionWithTime{{mustNoErr(action.SignedCandidateRegister(test.nonceMgr.pop(identityset.Address(newOwnerID2).String()), "cand2", identityset.Address(3).String(), identityset.Address(3).String(), identityset.Address(newOwnerID2).String(), registerAmount.String(), 1, true, nil, gasLimit, gasPrice, identityset.PrivateKey(newOwnerID2), action.WithChainID(chainID))), time.Now()}},
act: &actionWithTime{mustNoErr(action.SignedCandidateTransferOwnership(test.nonceMgr.pop(identityset.Address(newOwnerID2).String()), identityset.Address(oldOwnerID).String(), nil, gasLimit, gasPrice, identityset.PrivateKey(newOwnerID2), action.WithChainID(chainID))), time.Now()},
expect: []actionExpect{&basicActionExpect{nil, uint64(iotextypes.ReceiptStatus_ErrCandidateAlreadyExist), ""}},
},
})
}

func normalizeGenesisHeights(cfg *config.Config) {
heights := []*uint64{
&cfg.Genesis.PacificBlockHeight,
&cfg.Genesis.AleutianBlockHeight,
&cfg.Genesis.BeringBlockHeight,
&cfg.Genesis.CookBlockHeight,
&cfg.Genesis.DardanellesBlockHeight,
&cfg.Genesis.DaytonaBlockHeight,
&cfg.Genesis.EasterBlockHeight,
&cfg.Genesis.FbkMigrationBlockHeight,
&cfg.Genesis.FairbankBlockHeight,
&cfg.Genesis.GreenlandBlockHeight,
&cfg.Genesis.HawaiiBlockHeight,
&cfg.Genesis.IcelandBlockHeight,
&cfg.Genesis.JutlandBlockHeight,
&cfg.Genesis.KamchatkaBlockHeight,
&cfg.Genesis.LordHoweBlockHeight,
&cfg.Genesis.MidwayBlockHeight,
&cfg.Genesis.NewfoundlandBlockHeight,
&cfg.Genesis.OkhotskBlockHeight,
&cfg.Genesis.PalauBlockHeight,
&cfg.Genesis.QuebecBlockHeight,
&cfg.Genesis.RedseaBlockHeight,
&cfg.Genesis.SumatraBlockHeight,
&cfg.Genesis.TsunamiBlockHeight,
&cfg.Genesis.UpernavikBlockHeight,
&cfg.Genesis.ToBeEnabledBlockHeight,
}
for i := len(heights) - 2; i >= 0; i-- {
if *(heights[i]) > *(heights[i+1]) {
*(heights[i]) = *(heights[i+1])
}
}
}

0 comments on commit 4c776f8

Please sign in to comment.