187 lines
5.2 KiB
Go
187 lines
5.2 KiB
Go
package lp2p
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"os"
|
|
"path/filepath"
|
|
|
|
"go.uber.org/fx"
|
|
|
|
"github.com/libp2p/go-libp2p"
|
|
"github.com/libp2p/go-libp2p-core/network"
|
|
"github.com/libp2p/go-libp2p-core/peer"
|
|
"github.com/libp2p/go-libp2p-core/protocol"
|
|
rcmgr "github.com/libp2p/go-libp2p-resource-manager"
|
|
|
|
"github.com/filecoin-project/lotus/metrics"
|
|
"github.com/filecoin-project/lotus/node/repo"
|
|
|
|
"go.opencensus.io/stats"
|
|
"go.opencensus.io/tag"
|
|
)
|
|
|
|
func ResourceManager(lc fx.Lifecycle, repo repo.LockedRepo) (network.ResourceManager, error) {
|
|
var limiter *rcmgr.BasicLimiter
|
|
var opts []rcmgr.Option
|
|
|
|
repoPath := repo.Path()
|
|
|
|
// create limiter -- parse $repo/limits.json if exists
|
|
limitsFile := filepath.Join(repoPath, "limits.json")
|
|
limitsIn, err := os.Open(limitsFile)
|
|
switch {
|
|
case err == nil:
|
|
defer limitsIn.Close() //nolint:errcheck
|
|
limiter, err = rcmgr.NewDefaultLimiterFromJSON(limitsIn)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("error parsing limit file: %w", err)
|
|
}
|
|
|
|
case errors.Is(err, os.ErrNotExist):
|
|
limiter = rcmgr.NewDefaultLimiter()
|
|
|
|
default:
|
|
return nil, err
|
|
}
|
|
|
|
// TODO: also set appropriate default limits for lotus protocols
|
|
libp2p.SetDefaultServiceLimits(limiter)
|
|
|
|
opts = append(opts, rcmgr.WithMetrics(rcmgrMetrics{}))
|
|
|
|
if os.Getenv("LOTUS_DEBUG_RCMGR") != "" {
|
|
debugPath := filepath.Join(repoPath, "debug")
|
|
if err := os.MkdirAll(debugPath, 0755); err != nil {
|
|
return nil, fmt.Errorf("error creating debug directory: %w", err)
|
|
}
|
|
traceFile := filepath.Join(debugPath, "rcmgr.json.gz")
|
|
opts = append(opts, rcmgr.WithTrace(traceFile))
|
|
}
|
|
|
|
mgr, err := rcmgr.NewResourceManager(limiter, opts...)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("error creating resource manager: %w", err)
|
|
}
|
|
|
|
lc.Append(fx.Hook{
|
|
OnStop: func(_ context.Context) error {
|
|
return mgr.Close()
|
|
}})
|
|
|
|
return mgr, nil
|
|
}
|
|
|
|
func ResourceManagerOption(mgr network.ResourceManager) Libp2pOpts {
|
|
return Libp2pOpts{
|
|
Opts: []libp2p.Option{libp2p.ResourceManager(mgr)},
|
|
}
|
|
}
|
|
|
|
type rcmgrMetrics struct{}
|
|
|
|
func (r rcmgrMetrics) AllowConn(dir network.Direction, usefd bool) {
|
|
ctx := context.Background()
|
|
if dir == network.DirInbound {
|
|
ctx, _ = tag.New(ctx, tag.Upsert(metrics.Direction, "inbound"))
|
|
} else {
|
|
ctx, _ = tag.New(ctx, tag.Upsert(metrics.Direction, "outbound"))
|
|
}
|
|
if usefd {
|
|
ctx, _ = tag.New(ctx, tag.Upsert(metrics.UseFD, "true"))
|
|
} else {
|
|
ctx, _ = tag.New(ctx, tag.Upsert(metrics.UseFD, "false"))
|
|
}
|
|
stats.Record(ctx, metrics.RcmgrAllowConn.M(1))
|
|
}
|
|
|
|
func (r rcmgrMetrics) BlockConn(dir network.Direction, usefd bool) {
|
|
ctx := context.Background()
|
|
if dir == network.DirInbound {
|
|
ctx, _ = tag.New(ctx, tag.Upsert(metrics.Direction, "inbound"))
|
|
} else {
|
|
ctx, _ = tag.New(ctx, tag.Upsert(metrics.Direction, "outbound"))
|
|
}
|
|
if usefd {
|
|
ctx, _ = tag.New(ctx, tag.Upsert(metrics.UseFD, "true"))
|
|
} else {
|
|
ctx, _ = tag.New(ctx, tag.Upsert(metrics.UseFD, "false"))
|
|
}
|
|
stats.Record(ctx, metrics.RcmgrBlockConn.M(1))
|
|
}
|
|
|
|
func (r rcmgrMetrics) AllowStream(p peer.ID, dir network.Direction) {
|
|
ctx := context.Background()
|
|
if dir == network.DirInbound {
|
|
ctx, _ = tag.New(ctx, tag.Upsert(metrics.Direction, "inbound"))
|
|
} else {
|
|
ctx, _ = tag.New(ctx, tag.Upsert(metrics.Direction, "outbound"))
|
|
}
|
|
stats.Record(ctx, metrics.RcmgrAllowStream.M(1))
|
|
}
|
|
|
|
func (r rcmgrMetrics) BlockStream(p peer.ID, dir network.Direction) {
|
|
ctx := context.Background()
|
|
if dir == network.DirInbound {
|
|
ctx, _ = tag.New(ctx, tag.Upsert(metrics.Direction, "inbound"))
|
|
} else {
|
|
ctx, _ = tag.New(ctx, tag.Upsert(metrics.Direction, "outbound"))
|
|
}
|
|
stats.Record(ctx, metrics.RcmgrBlockStream.M(1))
|
|
}
|
|
|
|
func (r rcmgrMetrics) AllowPeer(p peer.ID) {
|
|
ctx := context.Background()
|
|
stats.Record(ctx, metrics.RcmgrAllowPeer.M(1))
|
|
}
|
|
|
|
func (r rcmgrMetrics) BlockPeer(p peer.ID) {
|
|
ctx := context.Background()
|
|
stats.Record(ctx, metrics.RcmgrBlockPeer.M(1))
|
|
}
|
|
|
|
func (r rcmgrMetrics) AllowProtocol(proto protocol.ID) {
|
|
ctx := context.Background()
|
|
ctx, _ = tag.New(ctx, tag.Upsert(metrics.ProtocolID, string(proto)))
|
|
stats.Record(ctx, metrics.RcmgrAllowProto.M(1))
|
|
}
|
|
|
|
func (r rcmgrMetrics) BlockProtocol(proto protocol.ID) {
|
|
ctx := context.Background()
|
|
ctx, _ = tag.New(ctx, tag.Upsert(metrics.ProtocolID, string(proto)))
|
|
stats.Record(ctx, metrics.RcmgrBlockProto.M(1))
|
|
}
|
|
|
|
func (r rcmgrMetrics) BlockProtocolPeer(proto protocol.ID, p peer.ID) {
|
|
ctx := context.Background()
|
|
ctx, _ = tag.New(ctx, tag.Upsert(metrics.ProtocolID, string(proto)))
|
|
stats.Record(ctx, metrics.RcmgrBlockProtoPeer.M(1))
|
|
}
|
|
|
|
func (r rcmgrMetrics) AllowService(svc string) {
|
|
ctx := context.Background()
|
|
ctx, _ = tag.New(ctx, tag.Upsert(metrics.ServiceID, svc))
|
|
stats.Record(ctx, metrics.RcmgrAllowSvc.M(1))
|
|
}
|
|
|
|
func (r rcmgrMetrics) BlockService(svc string) {
|
|
ctx := context.Background()
|
|
ctx, _ = tag.New(ctx, tag.Upsert(metrics.ServiceID, svc))
|
|
stats.Record(ctx, metrics.RcmgrBlockSvc.M(1))
|
|
}
|
|
|
|
func (r rcmgrMetrics) BlockServicePeer(svc string, p peer.ID) {
|
|
ctx := context.Background()
|
|
ctx, _ = tag.New(ctx, tag.Upsert(metrics.ServiceID, svc))
|
|
stats.Record(ctx, metrics.RcmgrBlockSvcPeer.M(1))
|
|
}
|
|
|
|
func (r rcmgrMetrics) AllowMemory(size int) {
|
|
stats.Record(context.Background(), metrics.RcmgrAllowMem.M(1))
|
|
}
|
|
|
|
func (r rcmgrMetrics) BlockMemory(size int) {
|
|
stats.Record(context.Background(), metrics.RcmgrBlockMem.M(1))
|
|
}
|