lotus/faults.go

91 lines
2.5 KiB
Go
Raw Normal View History

2020-05-16 21:03:29 +00:00
package sectorstorage
import (
"context"
2020-06-08 16:47:59 +00:00
"os"
"path/filepath"
2020-05-16 21:03:29 +00:00
"golang.org/x/xerrors"
"github.com/filecoin-project/sector-storage/stores"
"github.com/filecoin-project/specs-actors/actors/abi"
)
// TODO: Track things more actively
type FaultTracker interface {
2020-06-15 12:32:17 +00:00
CheckProvable(ctx context.Context, spt abi.RegisteredSealProof, sectors []abi.SectorID) ([]abi.SectorID, error)
2020-05-16 21:03:29 +00:00
}
// Returns unprovable sectors
2020-06-15 12:32:17 +00:00
func (m *Manager) CheckProvable(ctx context.Context, spt abi.RegisteredSealProof, sectors []abi.SectorID) ([]abi.SectorID, error) {
2020-05-16 21:03:29 +00:00
var bad []abi.SectorID
2020-06-15 10:50:53 +00:00
ssize, err := spt.SectorSize()
if err != nil {
return nil, err
}
2020-05-16 21:03:29 +00:00
// TODO: More better checks
for _, sector := range sectors {
err := func() error {
2020-06-08 16:47:59 +00:00
ctx, cancel := context.WithCancel(ctx)
defer cancel()
locked, err := m.index.StorageTryLock(ctx, sector, stores.FTSealed|stores.FTCache, stores.FTNone)
if err != nil {
return xerrors.Errorf("acquiring sector lock: %w", err)
}
if !locked {
log.Warnw("CheckProvable Sector FAULT: can't acquire read lock", "sector", sector, "sealed")
bad = append(bad, sector)
return nil
}
2020-06-04 19:00:16 +00:00
lp, _, err := m.localStore.AcquireSector(ctx, sector, spt, stores.FTSealed|stores.FTCache, stores.FTNone, false, stores.AcquireMove)
2020-05-16 21:03:29 +00:00
if err != nil {
return xerrors.Errorf("acquire sector in checkProvable: %w", err)
}
if lp.Sealed == "" || lp.Cache == "" {
log.Warnw("CheckProvable Sector FAULT: cache an/or sealed paths not found", "sector", sector, "sealed", lp.Sealed, "cache", lp.Cache)
bad = append(bad, sector)
return nil
}
2020-06-15 10:50:53 +00:00
toCheck := map[string]int64{
lp.Sealed: 1,
filepath.Join(lp.Cache, "t_aux"): 0,
filepath.Join(lp.Cache, "p_aux"): 0,
filepath.Join(lp.Cache, "sc-02-data-tree-r-last.dat"): 0,
2020-06-08 16:47:59 +00:00
}
2020-06-15 10:50:53 +00:00
for p, sz := range toCheck {
st, err := os.Stat(p)
2020-06-08 16:47:59 +00:00
if err != nil {
log.Warnw("CheckProvable Sector FAULT: sector file stat error", "sector", sector, "sealed", lp.Sealed, "cache", lp.Cache, "file", p)
bad = append(bad, sector)
return nil
}
2020-06-15 10:50:53 +00:00
if sz != 0 {
if st.Size() != int64(ssize)*sz {
log.Warnw("CheckProvable Sector FAULT: sector file is wrong size", "sector", sector, "sealed", lp.Sealed, "cache", lp.Cache, "file", p, "size", st.Size(), "expectSize", int64(ssize)*sz)
bad = append(bad, sector)
return nil
}
}
2020-06-08 16:47:59 +00:00
}
2020-05-16 21:03:29 +00:00
return nil
}()
if err != nil {
return nil, err
}
}
return bad, nil
}
var _ FaultTracker = &Manager{}