2021-03-31 15:38:01 +00:00
|
|
|
package reputation
|
|
|
|
|
|
|
|
import (
|
2021-06-11 17:13:24 +00:00
|
|
|
"bytes"
|
2021-03-31 15:38:01 +00:00
|
|
|
"encoding/hex"
|
2021-06-11 17:13:24 +00:00
|
|
|
"errors"
|
|
|
|
"fmt"
|
2021-03-31 15:38:01 +00:00
|
|
|
|
2022-01-31 12:19:10 +00:00
|
|
|
repClient "github.com/nspcc-dev/neofs-node/pkg/morph/client/reputation"
|
2021-09-08 15:20:02 +00:00
|
|
|
reputationEvent "github.com/nspcc-dev/neofs-node/pkg/morph/event/reputation"
|
2021-06-11 17:13:24 +00:00
|
|
|
"github.com/nspcc-dev/neofs-node/pkg/services/reputation"
|
2021-11-10 07:08:33 +00:00
|
|
|
apireputation "github.com/nspcc-dev/neofs-sdk-go/reputation"
|
2021-03-31 15:38:01 +00:00
|
|
|
"go.uber.org/zap"
|
|
|
|
)
|
|
|
|
|
2021-06-11 17:13:24 +00:00
|
|
|
var errWrongManager = errors.New("got manager that is incorrect for peer")
|
|
|
|
|
2021-09-08 15:20:02 +00:00
|
|
|
func (rp *Processor) processPut(e *reputationEvent.Put) {
|
2021-03-31 15:38:01 +00:00
|
|
|
if !rp.alphabetState.IsAlphabet() {
|
|
|
|
rp.log.Info("non alphabet mode, ignore reputation put notification")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-09-08 15:20:02 +00:00
|
|
|
epoch := e.Epoch()
|
|
|
|
id := e.PeerID()
|
|
|
|
value := e.Value()
|
|
|
|
|
2021-04-05 09:29:33 +00:00
|
|
|
// check if epoch is valid
|
|
|
|
currentEpoch := rp.epochState.EpochCounter()
|
|
|
|
if epoch >= currentEpoch {
|
|
|
|
rp.log.Info("ignore reputation value",
|
|
|
|
zap.String("reason", "invalid epoch number"),
|
|
|
|
zap.Uint64("trust_epoch", epoch),
|
|
|
|
zap.Uint64("local_epoch", currentEpoch))
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// check signature
|
|
|
|
if err := value.VerifySignature(); err != nil {
|
|
|
|
rp.log.Info("ignore reputation value",
|
|
|
|
zap.String("reason", "invalid signature"),
|
|
|
|
zap.String("error", err.Error()))
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-06-11 17:13:24 +00:00
|
|
|
// check if manager is correct
|
|
|
|
if err := rp.checkManagers(epoch, *value.Manager(), id); err != nil {
|
|
|
|
rp.log.Info("ignore reputation value",
|
|
|
|
zap.String("reason", "wrong manager"),
|
|
|
|
zap.String("error", err.Error()))
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
2021-03-31 15:38:01 +00:00
|
|
|
|
2021-09-08 15:20:02 +00:00
|
|
|
rp.approvePutReputation(e)
|
2021-03-31 15:38:01 +00:00
|
|
|
}
|
2021-06-11 17:13:24 +00:00
|
|
|
|
|
|
|
func (rp *Processor) checkManagers(e uint64, mng apireputation.PeerID, peer apireputation.PeerID) error {
|
|
|
|
mm, err := rp.mngBuilder.BuildManagers(e, reputation.PeerIDFromBytes(peer.ToV2().GetPublicKey()))
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("could not build managers: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, m := range mm {
|
2022-02-07 13:34:02 +00:00
|
|
|
// FIXME: #1147 do not use `ToV2` method outside neofs-api-go library
|
2021-06-11 17:13:24 +00:00
|
|
|
if bytes.Equal(mng.ToV2().GetPublicKey(), m.PublicKey()) {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return errWrongManager
|
|
|
|
}
|
2021-09-08 15:20:02 +00:00
|
|
|
|
|
|
|
func (rp *Processor) approvePutReputation(e *reputationEvent.Put) {
|
|
|
|
var (
|
|
|
|
id = e.PeerID()
|
|
|
|
err error
|
|
|
|
)
|
|
|
|
|
|
|
|
if nr := e.NotaryRequest(); nr != nil {
|
|
|
|
// put event was received via Notary service
|
|
|
|
err = rp.reputationWrp.Morph().NotarySignAndInvokeTX(nr.MainTransaction)
|
|
|
|
} else {
|
2022-01-31 12:19:10 +00:00
|
|
|
args := repClient.PutPrm{}
|
2021-09-08 15:20:02 +00:00
|
|
|
args.SetEpoch(e.Epoch())
|
|
|
|
args.SetPeerID(id)
|
|
|
|
args.SetValue(e.Value())
|
|
|
|
|
|
|
|
err = rp.reputationWrp.Put(args)
|
|
|
|
}
|
|
|
|
if err != nil {
|
2022-02-07 13:34:02 +00:00
|
|
|
// FIXME: #1147 do not use `ToV2` method outside neofs-api-go library
|
2021-09-08 15:20:02 +00:00
|
|
|
rp.log.Warn("can't send approval tx for reputation value",
|
|
|
|
zap.String("peer_id", hex.EncodeToString(id.ToV2().GetPublicKey())),
|
|
|
|
zap.String("error", err.Error()))
|
|
|
|
}
|
|
|
|
}
|