2020-08-22 15:20:47 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2021-01-12 11:05:08 +00:00
|
|
|
"context"
|
2021-08-25 10:49:59 +00:00
|
|
|
"errors"
|
2020-10-21 09:26:16 +00:00
|
|
|
"fmt"
|
2021-05-11 10:24:13 +00:00
|
|
|
"time"
|
2020-10-21 09:26:16 +00:00
|
|
|
|
2021-04-15 14:57:29 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/block"
|
2020-10-21 09:26:16 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/util"
|
2021-06-01 14:58:40 +00:00
|
|
|
morphconfig "github.com/nspcc-dev/neofs-node/cmd/neofs-node/config/morph"
|
2021-07-29 15:57:53 +00:00
|
|
|
"github.com/nspcc-dev/neofs-node/pkg/core/netmap"
|
2020-08-22 15:20:47 +00:00
|
|
|
"github.com/nspcc-dev/neofs-node/pkg/morph/client"
|
2020-09-08 13:14:22 +00:00
|
|
|
"github.com/nspcc-dev/neofs-node/pkg/morph/client/netmap/wrapper"
|
2020-10-21 09:26:16 +00:00
|
|
|
"github.com/nspcc-dev/neofs-node/pkg/morph/event"
|
|
|
|
netmapEvent "github.com/nspcc-dev/neofs-node/pkg/morph/event/netmap"
|
|
|
|
"github.com/nspcc-dev/neofs-node/pkg/morph/subscriber"
|
2021-01-12 13:25:30 +00:00
|
|
|
"github.com/nspcc-dev/neofs-node/pkg/util/rand"
|
|
|
|
"go.uber.org/zap"
|
2020-08-22 15:20:47 +00:00
|
|
|
)
|
|
|
|
|
2021-08-25 10:49:59 +00:00
|
|
|
const (
|
|
|
|
newEpochNotification = "NewEpoch"
|
|
|
|
|
|
|
|
// notaryDepositExtraBlocks is amount of extra blocks to overlap two deposits,
|
|
|
|
// we do that to make sure that there won't be any blocks without deposited
|
|
|
|
// assets in notary contract; make sure it is bigger than any extra rounding
|
|
|
|
// value in notary client.
|
|
|
|
notaryDepositExtraBlocks = 300
|
|
|
|
|
|
|
|
// amount of tries(blocks) before notary deposit timeout.
|
|
|
|
notaryDepositRetriesAmount
|
|
|
|
)
|
2020-10-21 09:26:16 +00:00
|
|
|
|
2020-08-22 15:20:47 +00:00
|
|
|
func initMorphComponents(c *cfg) {
|
|
|
|
var err error
|
|
|
|
|
2021-06-01 14:58:40 +00:00
|
|
|
fn := func(addresses []string, dialTimeout time.Duration, handler func(*client.Client)) {
|
2021-09-29 09:25:36 +00:00
|
|
|
if len(addresses) == 0 {
|
|
|
|
fatalOnErr(errors.New("missing Neo RPC endpoints"))
|
|
|
|
}
|
|
|
|
|
2021-05-11 10:24:13 +00:00
|
|
|
crand := rand.New() // math/rand with cryptographic source
|
|
|
|
crand.Shuffle(len(addresses), func(i, j int) {
|
|
|
|
addresses[i], addresses[j] = addresses[j], addresses[i]
|
|
|
|
})
|
|
|
|
|
2021-08-26 07:59:02 +00:00
|
|
|
cli, err := client.New(c.key, addresses[0],
|
|
|
|
client.WithDialTimeout(dialTimeout),
|
|
|
|
client.WithLogger(c.log),
|
|
|
|
client.WithExtraEndpoints(addresses[1:]),
|
|
|
|
)
|
|
|
|
if err == nil {
|
|
|
|
handler(cli)
|
|
|
|
|
|
|
|
return
|
2021-01-12 13:25:30 +00:00
|
|
|
}
|
|
|
|
|
2021-08-26 07:59:02 +00:00
|
|
|
c.log.Info("failed to create neo RPC client",
|
|
|
|
zap.Any("endpoints", addresses),
|
|
|
|
zap.String("error", err.Error()),
|
|
|
|
)
|
|
|
|
|
2021-05-11 10:24:13 +00:00
|
|
|
fatalOnErr(err)
|
2021-01-12 13:25:30 +00:00
|
|
|
}
|
|
|
|
|
2021-06-01 14:58:40 +00:00
|
|
|
fn(morphconfig.RPCEndpoint(c.appCfg), morphconfig.DialTimeout(c.appCfg), func(cli *client.Client) {
|
2021-05-11 10:24:13 +00:00
|
|
|
c.cfgMorph.client = cli
|
2021-08-23 11:15:08 +00:00
|
|
|
|
2021-08-25 10:49:59 +00:00
|
|
|
c.cfgMorph.notaryEnabled = cli.ProbeNotary()
|
|
|
|
|
2021-08-31 14:02:42 +00:00
|
|
|
lookupScriptHashesInNNS(c) // smart contract auto negotiation
|
|
|
|
|
2021-08-25 10:49:59 +00:00
|
|
|
if c.cfgMorph.notaryEnabled {
|
|
|
|
err = c.cfgMorph.client.EnableNotarySupport(
|
|
|
|
client.WithProxyContract(
|
2021-08-31 14:02:42 +00:00
|
|
|
c.cfgMorph.proxyScriptHash,
|
2021-08-25 10:49:59 +00:00
|
|
|
),
|
|
|
|
)
|
|
|
|
fatalOnErr(err)
|
|
|
|
|
|
|
|
c.cfgMorph.notaryDepositAmount = morphconfig.Notary(c.appCfg).Amount()
|
|
|
|
c.cfgMorph.notaryDepositDuration = morphconfig.Notary(c.appCfg).Duration()
|
|
|
|
|
|
|
|
newDepositTimer(c)
|
|
|
|
}
|
|
|
|
|
2021-08-23 11:15:08 +00:00
|
|
|
c.log.Debug("notary support",
|
2021-08-25 10:49:59 +00:00
|
|
|
zap.Bool("sidechain_enabled", c.cfgMorph.notaryEnabled),
|
2021-08-23 11:15:08 +00:00
|
|
|
)
|
2021-06-01 14:58:40 +00:00
|
|
|
})
|
2020-09-24 07:46:47 +00:00
|
|
|
|
2021-09-09 11:55:01 +00:00
|
|
|
wrap, err := wrapper.NewFromMorph(c.cfgMorph.client, c.cfgNetmap.scriptHash, 0, wrapper.TryNotary())
|
2020-09-24 07:46:47 +00:00
|
|
|
fatalOnErr(err)
|
|
|
|
|
2021-07-29 15:57:53 +00:00
|
|
|
var netmapSource netmap.Source
|
|
|
|
|
|
|
|
c.cfgMorph.disableCache = morphconfig.DisableCache(c.appCfg)
|
|
|
|
|
|
|
|
if c.cfgMorph.disableCache {
|
|
|
|
netmapSource = wrap
|
|
|
|
} else {
|
|
|
|
// use RPC node as source of netmap (with caching)
|
|
|
|
netmapSource = newCachedNetmapStorage(c.cfgNetmap.state, wrap)
|
|
|
|
}
|
|
|
|
|
|
|
|
c.cfgObject.netMapSource = netmapSource
|
2020-09-24 07:46:47 +00:00
|
|
|
c.cfgNetmap.wrapper = wrap
|
2020-08-22 15:20:47 +00:00
|
|
|
}
|
2020-10-21 09:26:16 +00:00
|
|
|
|
2021-08-25 10:49:59 +00:00
|
|
|
func makeAndWaitNotaryDeposit(c *cfg) {
|
|
|
|
// skip notary deposit in non-notary environments
|
|
|
|
if !c.cfgMorph.notaryEnabled {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
tx, err := makeNotaryDeposit(c)
|
|
|
|
fatalOnErr(err)
|
|
|
|
|
|
|
|
err = waitNotaryDeposit(c, tx)
|
|
|
|
fatalOnErr(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
func makeNotaryDeposit(c *cfg) (util.Uint256, error) {
|
|
|
|
return c.cfgMorph.client.DepositNotary(
|
|
|
|
c.cfgMorph.notaryDepositAmount,
|
|
|
|
c.cfgMorph.notaryDepositDuration+notaryDepositExtraBlocks,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
errNotaryDepositFail = errors.New("notary deposit tx has faulted")
|
|
|
|
errNotaryDepositTimeout = errors.New("notary deposit tx has not appeared in the network")
|
|
|
|
)
|
|
|
|
|
|
|
|
func waitNotaryDeposit(c *cfg, tx util.Uint256) error {
|
|
|
|
for i := 0; i < notaryDepositRetriesAmount; i++ {
|
|
|
|
select {
|
|
|
|
case <-c.ctx.Done():
|
|
|
|
return nil
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
|
|
|
|
ok, err := c.cfgMorph.client.TxHalt(tx)
|
|
|
|
if err == nil {
|
|
|
|
if ok {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return errNotaryDepositFail
|
|
|
|
}
|
|
|
|
|
|
|
|
err = c.cfgMorph.client.Wait(c.ctx, 1)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("could not wait for one block in chain: %w", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return errNotaryDepositTimeout
|
|
|
|
}
|
|
|
|
|
2020-10-21 09:26:16 +00:00
|
|
|
func listenMorphNotifications(c *cfg) {
|
2021-01-12 13:25:30 +00:00
|
|
|
var (
|
|
|
|
err error
|
|
|
|
subs subscriber.Subscriber
|
|
|
|
)
|
|
|
|
|
2021-06-01 14:58:40 +00:00
|
|
|
endpoints := morphconfig.NotificationEndpoint(c.appCfg)
|
|
|
|
timeout := morphconfig.DialTimeout(c.appCfg)
|
2021-01-12 13:25:30 +00:00
|
|
|
|
|
|
|
crand := rand.New() // math/rand with cryptographic source
|
|
|
|
crand.Shuffle(len(endpoints), func(i, j int) {
|
|
|
|
endpoints[i], endpoints[j] = endpoints[j], endpoints[i]
|
2020-10-21 09:26:16 +00:00
|
|
|
})
|
2021-01-12 13:25:30 +00:00
|
|
|
|
2021-09-06 13:05:45 +00:00
|
|
|
fromSideChainBlock, err := c.persistate.UInt32(persistateSideChainLastBlockKey)
|
|
|
|
if err != nil {
|
|
|
|
fromSideChainBlock = 0
|
|
|
|
c.log.Warn("can't get last processed side chain block number", zap.String("error", err.Error()))
|
|
|
|
}
|
|
|
|
|
2021-01-12 13:25:30 +00:00
|
|
|
for i := range endpoints {
|
|
|
|
subs, err = subscriber.New(c.ctx, &subscriber.Params{
|
2021-09-06 13:05:45 +00:00
|
|
|
Log: c.log,
|
|
|
|
Endpoint: endpoints[i],
|
|
|
|
DialTimeout: timeout,
|
|
|
|
StartFromBlock: fromSideChainBlock,
|
2021-01-12 13:25:30 +00:00
|
|
|
})
|
|
|
|
if err == nil {
|
|
|
|
c.log.Info("websocket neo event listener established",
|
|
|
|
zap.String("endpoint", endpoints[i]))
|
|
|
|
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
c.log.Info("failed to establish websocket neo event listener, trying another",
|
|
|
|
zap.String("endpoint", endpoints[i]),
|
|
|
|
zap.String("error", err.Error()))
|
|
|
|
}
|
|
|
|
|
2020-10-21 09:26:16 +00:00
|
|
|
fatalOnErr(err)
|
|
|
|
|
|
|
|
lis, err := event.NewListener(event.ListenerParams{
|
|
|
|
Logger: c.log,
|
|
|
|
Subscriber: subs,
|
|
|
|
})
|
|
|
|
fatalOnErr(err)
|
|
|
|
|
2021-01-12 11:05:08 +00:00
|
|
|
c.workers = append(c.workers, newWorkerFromFunc(func(ctx context.Context) {
|
|
|
|
lis.ListenWithError(ctx, c.internalErr)
|
|
|
|
}))
|
2020-10-21 09:26:16 +00:00
|
|
|
|
|
|
|
setNetmapNotificationParser(c, newEpochNotification, netmapEvent.ParseNewEpoch)
|
|
|
|
registerNotificationHandlers(c.cfgNetmap.scriptHash, lis, c.cfgNetmap.parsers, c.cfgNetmap.subscribers)
|
2021-02-01 12:33:58 +00:00
|
|
|
registerNotificationHandlers(c.cfgContainer.scriptHash, lis, c.cfgContainer.parsers, c.cfgContainer.subscribers)
|
2021-04-15 14:57:29 +00:00
|
|
|
|
|
|
|
registerBlockHandler(lis, func(block *block.Block) {
|
|
|
|
c.log.Debug("new block", zap.Uint32("index", block.Index))
|
2021-09-06 13:05:45 +00:00
|
|
|
|
|
|
|
err = c.persistate.SetUInt32(persistateSideChainLastBlockKey, block.Index)
|
|
|
|
if err != nil {
|
|
|
|
c.log.Warn("can't update persistent state",
|
|
|
|
zap.String("chain", "side"),
|
|
|
|
zap.Uint32("block_index", block.Index))
|
|
|
|
}
|
|
|
|
|
2021-04-15 14:57:29 +00:00
|
|
|
tickBlockTimers(c)
|
|
|
|
})
|
2020-10-21 09:26:16 +00:00
|
|
|
}
|
|
|
|
|
2021-08-12 15:24:17 +00:00
|
|
|
func registerNotificationHandlers(scHash util.Uint160, lis event.Listener, parsers map[event.Type]event.NotificationParser,
|
2020-10-21 09:26:16 +00:00
|
|
|
subs map[event.Type][]event.Handler) {
|
|
|
|
for typ, handlers := range subs {
|
2021-08-12 15:24:17 +00:00
|
|
|
pi := event.NotificationParserInfo{}
|
2020-10-21 09:26:16 +00:00
|
|
|
pi.SetType(typ)
|
|
|
|
pi.SetScriptHash(scHash)
|
|
|
|
|
|
|
|
p, ok := parsers[typ]
|
|
|
|
if !ok {
|
|
|
|
panic(fmt.Sprintf("missing parser for event %s", typ))
|
|
|
|
}
|
|
|
|
|
|
|
|
pi.SetParser(p)
|
|
|
|
|
2021-08-12 15:24:17 +00:00
|
|
|
lis.SetNotificationParser(pi)
|
2020-10-21 09:26:16 +00:00
|
|
|
|
|
|
|
for _, h := range handlers {
|
2021-08-12 15:24:17 +00:00
|
|
|
hi := event.NotificationHandlerInfo{}
|
2020-10-21 09:26:16 +00:00
|
|
|
hi.SetType(typ)
|
|
|
|
hi.SetScriptHash(scHash)
|
|
|
|
hi.SetHandler(h)
|
|
|
|
|
2021-08-12 15:24:17 +00:00
|
|
|
lis.RegisterNotificationHandler(hi)
|
2020-10-21 09:26:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-04-15 14:57:29 +00:00
|
|
|
|
|
|
|
func registerBlockHandler(lis event.Listener, handler event.BlockHandler) {
|
|
|
|
lis.RegisterBlockHandler(handler)
|
|
|
|
}
|
2021-08-31 14:02:42 +00:00
|
|
|
|
|
|
|
// lookupScriptHashesInNNS looks up for contract script hashes in NNS contract of side
|
|
|
|
// chain if they were not specified in config file.
|
|
|
|
func lookupScriptHashesInNNS(c *cfg) {
|
|
|
|
var (
|
|
|
|
err error
|
|
|
|
|
|
|
|
emptyHash = util.Uint160{}
|
|
|
|
targets = [...]struct {
|
|
|
|
h *util.Uint160
|
|
|
|
nnsName string
|
|
|
|
}{
|
|
|
|
{&c.cfgNetmap.scriptHash, client.NNSNetmapContractName},
|
|
|
|
{&c.cfgAccounting.scriptHash, client.NNSBalanceContractName},
|
|
|
|
{&c.cfgContainer.scriptHash, client.NNSContainerContractName},
|
|
|
|
{&c.cfgReputation.scriptHash, client.NNSReputationContractName},
|
|
|
|
{&c.cfgMorph.proxyScriptHash, client.NNSProxyContractName},
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
for _, t := range targets {
|
2021-09-27 12:55:28 +00:00
|
|
|
if t.nnsName == client.NNSProxyContractName && !c.cfgMorph.notaryEnabled {
|
|
|
|
continue // ignore proxy contract if notary disabled
|
|
|
|
}
|
|
|
|
|
2021-08-31 14:02:42 +00:00
|
|
|
if emptyHash.Equals(*t.h) {
|
|
|
|
*t.h, err = c.cfgMorph.client.NNSContractAddress(t.nnsName)
|
|
|
|
fatalOnErrDetails(fmt.Sprintf("can't resolve %s in NNS", t.nnsName), err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|