2020-10-29 16:07:31 +00:00
|
|
|
package netmap
|
|
|
|
|
|
|
|
import (
|
2023-03-07 13:38:26 +00:00
|
|
|
v2netmap "git.frostfs.info/TrueCloudLab/frostfs-api-go/v2/netmap"
|
2023-04-12 14:35:10 +00:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/internal/logs"
|
2020-10-29 16:07:31 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/crypto/keys"
|
|
|
|
"go.uber.org/zap"
|
|
|
|
)
|
|
|
|
|
2023-05-26 10:24:41 +00:00
|
|
|
func (np *Processor) processNetmapCleanupTick(ev netmapCleanupTick) bool {
|
2021-03-23 15:20:44 +00:00
|
|
|
if !np.alphabetState.IsAlphabet() {
|
2023-04-12 14:35:10 +00:00
|
|
|
np.log.Info(logs.NetmapNonAlphabetModeIgnoreNewNetmapCleanupTick)
|
2020-10-29 16:07:31 +00:00
|
|
|
|
2023-05-26 10:24:41 +00:00
|
|
|
return true
|
2020-10-29 16:07:31 +00:00
|
|
|
}
|
|
|
|
|
2021-09-23 17:13:59 +00:00
|
|
|
err := np.netmapSnapshot.forEachRemoveCandidate(ev.epoch, func(s string) error {
|
2020-10-29 16:07:31 +00:00
|
|
|
key, err := keys.NewPublicKeyFromString(s)
|
|
|
|
if err != nil {
|
2023-04-12 14:35:10 +00:00
|
|
|
np.log.Warn(logs.NetmapCantDecodePublicKeyOfNetmapNode,
|
2020-10-29 16:07:31 +00:00
|
|
|
zap.String("key", s))
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2023-04-12 14:35:10 +00:00
|
|
|
np.log.Info(logs.NetmapVoteToRemoveNodeFromNetmap, zap.String("key", s))
|
2020-10-29 16:07:31 +00:00
|
|
|
|
2022-03-22 08:52:55 +00:00
|
|
|
// In notary environments we call UpdateStateIR method instead of UpdateState.
|
|
|
|
// It differs from UpdateState only by name, so we can do this in the same form.
|
2022-12-23 17:35:35 +00:00
|
|
|
// See https://github.com/nspcc-dev/frostfs-contract/issues/225
|
2022-03-22 08:52:55 +00:00
|
|
|
const methodUpdateStateNotary = "updateStateIR"
|
|
|
|
|
2023-05-17 13:56:47 +00:00
|
|
|
err = np.netmapClient.MorphNotaryInvoke(
|
|
|
|
np.netmapClient.ContractAddress(),
|
|
|
|
0,
|
|
|
|
uint32(ev.epoch),
|
|
|
|
nil,
|
|
|
|
methodUpdateStateNotary,
|
|
|
|
int64(v2netmap.Offline), key.Bytes(),
|
|
|
|
)
|
2020-10-29 16:07:31 +00:00
|
|
|
if err != nil {
|
2023-04-12 14:35:10 +00:00
|
|
|
np.log.Error(logs.NetmapCantInvokeNetmapUpdateState, zap.Error(err))
|
2020-10-29 16:07:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
if err != nil {
|
2023-04-12 14:35:10 +00:00
|
|
|
np.log.Warn(logs.NetmapCantIterateOnNetmapCleanerCache,
|
2020-10-29 16:07:31 +00:00
|
|
|
zap.String("error", err.Error()))
|
2023-05-26 10:24:41 +00:00
|
|
|
return false
|
2020-10-29 16:07:31 +00:00
|
|
|
}
|
2023-05-26 10:24:41 +00:00
|
|
|
|
|
|
|
return true
|
2020-10-29 16:07:31 +00:00
|
|
|
}
|