lotus/curiosrc/message/watch.go

215 lines
5.5 KiB
Go
Raw Normal View History

package message
2023-12-26 09:57:58 +00:00
import (
"context"
2024-01-04 14:40:31 +00:00
"encoding/json"
2024-01-12 10:03:37 +00:00
"sync/atomic"
"github.com/ipfs/go-cid"
2024-01-04 11:58:44 +00:00
"github.com/filecoin-project/go-address"
"github.com/filecoin-project/go-state-types/abi"
2024-01-12 10:03:37 +00:00
2024-01-04 11:58:44 +00:00
"github.com/filecoin-project/lotus/api"
2023-12-26 09:57:58 +00:00
"github.com/filecoin-project/lotus/chain/types"
"github.com/filecoin-project/lotus/curiosrc/chainsched"
2023-12-26 09:57:58 +00:00
"github.com/filecoin-project/lotus/lib/harmony/harmonydb"
"github.com/filecoin-project/lotus/lib/harmony/harmonytask"
)
2024-01-04 11:58:44 +00:00
const MinConfidence = 6
type MessageWaiterApi interface {
StateGetActor(ctx context.Context, actor address.Address, tsk types.TipSetKey) (*types.Actor, error)
ChainGetTipSetByHeight(context.Context, abi.ChainEpoch, types.TipSetKey) (*types.TipSet, error)
ChainGetTipSet(context.Context, types.TipSetKey) (*types.TipSet, error)
StateSearchMsg(ctx context.Context, from types.TipSetKey, msg cid.Cid, limit abi.ChainEpoch, allowReplaced bool) (*api.MsgLookup, error)
2024-01-04 14:40:31 +00:00
ChainGetMessage(ctx context.Context, mc cid.Cid) (*types.Message, error)
2024-01-04 11:58:44 +00:00
}
2024-01-05 15:10:34 +00:00
type MessageWatcher struct {
2024-01-04 11:58:44 +00:00
db *harmonydb.DB
ht *harmonytask.TaskEngine
api MessageWaiterApi
2023-12-26 09:57:58 +00:00
stopping, stopped chan struct{}
updateCh chan struct{}
bestTs atomic.Pointer[types.TipSetKey]
}
func NewMessageWatcher(db *harmonydb.DB, ht *harmonytask.TaskEngine, pcs *chainsched.CurioChainSched, api MessageWaiterApi) (*MessageWatcher, error) {
2024-01-05 15:10:34 +00:00
mw := &MessageWatcher{
2023-12-26 09:57:58 +00:00
db: db,
ht: ht,
2024-01-04 11:58:44 +00:00
api: api,
2023-12-26 09:57:58 +00:00
stopping: make(chan struct{}),
stopped: make(chan struct{}),
updateCh: make(chan struct{}),
}
2024-01-05 16:07:55 +00:00
go mw.run()
2023-12-26 09:57:58 +00:00
if err := pcs.AddHandler(mw.processHeadChange); err != nil {
return nil, err
}
return mw, nil
}
2024-01-05 15:10:34 +00:00
func (mw *MessageWatcher) run() {
2023-12-26 09:57:58 +00:00
defer close(mw.stopped)
for {
select {
case <-mw.stopping:
// todo cleanup assignments
return
case <-mw.updateCh:
mw.update()
}
}
}
2024-01-05 15:10:34 +00:00
func (mw *MessageWatcher) update() {
2023-12-26 09:57:58 +00:00
ctx := context.Background()
tsk := *mw.bestTs.Load()
2024-01-04 11:58:44 +00:00
ts, err := mw.api.ChainGetTipSet(ctx, tsk)
if err != nil {
log.Errorf("failed to get tipset: %+v", err)
return
}
lbts, err := mw.api.ChainGetTipSetByHeight(ctx, ts.Height()-MinConfidence, tsk)
if err != nil {
log.Errorf("failed to get tipset: %+v", err)
return
}
lbtsk := lbts.Key()
2023-12-26 09:57:58 +00:00
machineID := mw.ht.ResourcesAvailable().MachineID
// first if we see pending messages with null owner, assign them to ourselves
{
2024-01-04 14:40:31 +00:00
n, err := mw.db.Exec(ctx, `UPDATE message_waits SET waiter_machine_id = $1 WHERE waiter_machine_id IS NULL AND executed_tsk_cid IS NULL`, machineID)
2023-12-26 09:57:58 +00:00
if err != nil {
log.Errorf("failed to assign pending messages: %+v", err)
return
}
if n > 0 {
log.Debugw("assigned pending messages to ourselves", "assigned", n)
}
}
// get messages assigned to us
var msgs []struct {
2024-01-04 11:58:44 +00:00
Cid string `db:"signed_message_cid"`
From string `db:"from_key"`
Nonce uint64 `db:"nonce"`
FromAddr address.Address `db:"-"`
2023-12-26 09:57:58 +00:00
}
// really large limit in case of things getting stuck and backlogging severely
2024-01-05 16:07:55 +00:00
err = mw.db.Select(ctx, &msgs, `SELECT signed_message_cid, from_key, nonce FROM message_waits
2024-01-04 11:58:44 +00:00
JOIN message_sends ON signed_message_cid = signed_cid
2024-01-04 14:40:31 +00:00
WHERE waiter_machine_id = $1 LIMIT 10000`, machineID)
2023-12-26 09:57:58 +00:00
if err != nil {
log.Errorf("failed to get assigned messages: %+v", err)
return
}
2024-01-04 11:58:44 +00:00
// get address/nonce set to check
toCheck := make(map[address.Address]uint64)
for i := range msgs {
msgs[i].FromAddr, err = address.NewFromString(msgs[i].From)
if err != nil {
log.Errorf("failed to parse from address: %+v", err)
return
}
toCheck[msgs[i].FromAddr] = 0
}
// get the nonce for each address
for addr := range toCheck {
act, err := mw.api.StateGetActor(ctx, addr, lbtsk)
if err != nil {
log.Errorf("failed to get actor: %+v", err)
return
}
toCheck[addr] = act.Nonce
}
// check if any of the messages we have assigned to us are now on chain, and have been for MinConfidence epochs
for _, msg := range msgs {
2024-01-04 14:40:31 +00:00
if msg.Nonce > toCheck[msg.FromAddr] {
continue // definitely not on chain yet
}
2024-01-04 11:58:44 +00:00
look, err := mw.api.StateSearchMsg(ctx, lbtsk, cid.MustParse(msg.Cid), api.LookbackNoLimit, false)
if err != nil {
log.Errorf("failed to search for message: %+v", err)
return
}
2024-01-04 14:40:31 +00:00
if look == nil {
continue // not on chain yet (or not executed yet)
}
tskCid, err := look.TipSet.Cid()
if err != nil {
log.Errorf("failed to get tipset cid: %+v", err)
return
}
emsg, err := mw.api.ChainGetMessage(ctx, look.Message)
if err != nil {
log.Errorf("failed to get message: %+v", err)
return
}
execMsg, err := json.Marshal(emsg)
if err != nil {
log.Errorf("failed to marshal message: %+v", err)
return
}
// record in db
_, err = mw.db.Exec(ctx, `UPDATE message_waits SET
waiter_machine_id = NULL,
executed_tsk_cid = $1, executed_tsk_epoch = $2,
executed_msg_cid = $3, executed_msg_data = $4,
executed_rcpt_exitcode = $5, executed_rcpt_return = $6, executed_rcpt_gas_used = $7
WHERE signed_message_cid = $8`, tskCid, look.Height,
look.Message, execMsg,
look.Receipt.ExitCode, look.Receipt.Return, look.Receipt.GasUsed,
msg.Cid)
if err != nil {
log.Errorf("failed to update message wait: %+v", err)
return
}
2024-01-04 11:58:44 +00:00
}
2023-12-26 09:57:58 +00:00
}
2024-01-05 15:10:34 +00:00
func (mw *MessageWatcher) Stop(ctx context.Context) error {
2023-12-26 09:57:58 +00:00
close(mw.stopping)
select {
case <-mw.stopped:
case <-ctx.Done():
return ctx.Err()
}
return nil
}
2024-01-05 15:10:34 +00:00
func (mw *MessageWatcher) processHeadChange(ctx context.Context, revert *types.TipSet, apply *types.TipSet) error {
2023-12-26 09:57:58 +00:00
best := apply.Key()
mw.bestTs.Store(&best)
select {
case mw.updateCh <- struct{}{}:
default:
}
return nil
}