tracker/middleware/varinterval/varinterval.go

116 lines
3 KiB
Go
Raw Permalink Normal View History

2016-10-24 14:16:21 +02:00
package varinterval
import (
"context"
"errors"
2017-12-23 20:54:51 +01:00
"fmt"
2016-10-24 14:16:21 +02:00
"sync"
"time"
yaml "gopkg.in/yaml.v2"
2017-12-23 20:54:51 +01:00
2016-10-24 14:16:21 +02:00
"github.com/chihaya/chihaya/bittorrent"
"github.com/chihaya/chihaya/middleware"
"github.com/chihaya/chihaya/middleware/pkg/random"
2016-10-24 14:16:21 +02:00
)
2017-12-23 20:54:51 +01:00
// Name is the name by which this middleware is registered with Chihaya.
const Name = "interval variation"
func init() {
middleware.RegisterDriver(Name, driver{})
}
var _ middleware.Driver = driver{}
type driver struct{}
func (d driver) NewHook(optionBytes []byte) (middleware.Hook, error) {
var cfg Config
err := yaml.Unmarshal(optionBytes, &cfg)
if err != nil {
2022-01-16 05:28:52 +01:00
return nil, fmt.Errorf("invalid options for middleware %s: %w", Name, err)
2017-12-23 20:54:51 +01:00
}
return NewHook(cfg)
}
2016-10-24 14:16:21 +02:00
// ErrInvalidModifyResponseProbability is returned for a config with an invalid
// ModifyResponseProbability.
var ErrInvalidModifyResponseProbability = errors.New("invalid modify_response_probability")
// ErrInvalidMaxIncreaseDelta is returned for a config with an invalid
// MaxIncreaseDelta.
var ErrInvalidMaxIncreaseDelta = errors.New("invalid max_increase_delta")
// Config represents the configuration for the varinterval middleware.
type Config struct {
// ModifyResponseProbability is the probability by which a response will
// be modified.
ModifyResponseProbability float32 `yaml:"modify_response_probability"`
// MaxIncreaseDelta is the amount of seconds that will be added at most.
MaxIncreaseDelta int `yaml:"max_increase_delta"`
// ModifyMinInterval specifies whether min_interval should be increased
// as well.
ModifyMinInterval bool `yaml:"modify_min_interval"`
}
func checkConfig(cfg Config) error {
if cfg.ModifyResponseProbability <= 0 || cfg.ModifyResponseProbability > 1 {
return ErrInvalidModifyResponseProbability
}
if cfg.MaxIncreaseDelta <= 0 {
return ErrInvalidMaxIncreaseDelta
}
return nil
}
type hook struct {
cfg Config
sync.Mutex
}
2017-12-23 20:54:51 +01:00
// NewHook creates a middleware to randomly modify the announce interval from
// the given config.
func NewHook(cfg Config) (middleware.Hook, error) {
2022-01-16 05:28:52 +01:00
if err := checkConfig(cfg); err != nil {
2016-10-24 14:16:21 +02:00
return nil, err
}
2017-06-10 12:26:42 +02:00
h := &hook{
2016-10-24 14:16:21 +02:00
cfg: cfg,
2017-06-10 12:26:42 +02:00
}
return h, nil
}
2016-10-24 14:16:21 +02:00
func (h *hook) HandleAnnounce(ctx context.Context, req *bittorrent.AnnounceRequest, resp *bittorrent.AnnounceResponse) (context.Context, error) {
s0, s1 := random.DeriveEntropyFromRequest(req)
// Generate a probability p < 1.0.
v, s0, s1 := random.Intn(s0, s1, 1<<24)
p := float32(v) / (1 << 24)
if h.cfg.ModifyResponseProbability == 1 || p < h.cfg.ModifyResponseProbability {
// Generate the increase delta.
v, _, _ = random.Intn(s0, s1, h.cfg.MaxIncreaseDelta)
2022-01-16 05:28:52 +01:00
deltaDuration := time.Duration(v+1) * time.Second
2016-10-24 14:16:21 +02:00
2022-01-16 05:28:52 +01:00
resp.Interval += deltaDuration
2016-10-24 14:16:21 +02:00
if h.cfg.ModifyMinInterval {
2022-01-16 05:28:52 +01:00
resp.MinInterval += deltaDuration
2016-10-24 14:16:21 +02:00
}
return ctx, nil
}
return ctx, nil
}
func (h *hook) HandleScrape(ctx context.Context, req *bittorrent.ScrapeRequest, resp *bittorrent.ScrapeResponse) (context.Context, error) {
// Scrapes are not altered.
return ctx, nil
}