2016-08-10 03:34:16 +02:00
|
|
|
package memory
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/binary"
|
|
|
|
"log"
|
|
|
|
"net"
|
|
|
|
"runtime"
|
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/jzelinskie/trakr/bittorrent"
|
|
|
|
"github.com/jzelinskie/trakr/storage"
|
|
|
|
)
|
|
|
|
|
|
|
|
// TODO(jzelinskie): separate ipv4 and ipv6 swarms
|
|
|
|
|
2016-08-12 02:37:31 +02:00
|
|
|
// Config holds the configuration of a memory PeerStore.
|
2016-08-10 03:34:16 +02:00
|
|
|
type Config struct {
|
|
|
|
ShardCount int `yaml:"shard_count"`
|
|
|
|
}
|
|
|
|
|
2016-08-12 02:37:31 +02:00
|
|
|
// New creates a new memory PeerStore.
|
|
|
|
//
|
|
|
|
// The PeerStore will have at least one shard.
|
2016-08-10 03:34:16 +02:00
|
|
|
func New(cfg Config) (storage.PeerStore, error) {
|
|
|
|
shardCount := 1
|
|
|
|
if cfg.ShardCount > 0 {
|
|
|
|
shardCount = cfg.ShardCount
|
|
|
|
}
|
|
|
|
|
2016-08-12 02:35:39 +02:00
|
|
|
shards := make([]*peerShard, shardCount*2)
|
|
|
|
for i := 0; i < shardCount*2; i++ {
|
|
|
|
shards[i] = &peerShard{swarms: make(map[bittorrent.InfoHash]swarm)}
|
2016-08-10 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return &peerStore{
|
|
|
|
shards: shards,
|
|
|
|
closed: make(chan struct{}),
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type serializedPeer string
|
|
|
|
|
|
|
|
type peerShard struct {
|
2016-08-12 02:35:39 +02:00
|
|
|
swarms map[bittorrent.InfoHash]swarm
|
2016-08-10 03:34:16 +02:00
|
|
|
sync.RWMutex
|
|
|
|
}
|
|
|
|
|
|
|
|
type swarm struct {
|
|
|
|
// map serialized peer to mtime
|
|
|
|
seeders map[serializedPeer]int64
|
|
|
|
leechers map[serializedPeer]int64
|
|
|
|
}
|
|
|
|
|
|
|
|
type peerStore struct {
|
|
|
|
shards []*peerShard
|
|
|
|
closed chan struct{}
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ storage.PeerStore = &peerStore{}
|
|
|
|
|
2016-08-12 02:35:39 +02:00
|
|
|
func (s *peerStore) shardIndex(infoHash bittorrent.InfoHash, p bittorrent.Peer) uint32 {
|
|
|
|
idx := binary.BigEndian.Uint32(infoHash[:4]) % uint32(len(s.shards))
|
|
|
|
if len(p.IP) == net.IPv6len {
|
|
|
|
idx += idx + uint32(len(s.shards)/2)
|
|
|
|
}
|
|
|
|
return idx
|
2016-08-10 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func newPeerKey(p bittorrent.Peer) serializedPeer {
|
|
|
|
b := make([]byte, 20+2+len(p.IP))
|
|
|
|
copy(b[:20], p.ID[:])
|
|
|
|
binary.BigEndian.PutUint16(b[20:22], p.Port)
|
|
|
|
copy(b[22:], p.IP)
|
|
|
|
|
|
|
|
return serializedPeer(b)
|
|
|
|
}
|
|
|
|
|
|
|
|
func decodePeerKey(pk serializedPeer) bittorrent.Peer {
|
|
|
|
return bittorrent.Peer{
|
|
|
|
ID: bittorrent.PeerIDFromString(string(pk[:20])),
|
|
|
|
Port: binary.BigEndian.Uint16([]byte(pk[20:22])),
|
|
|
|
IP: net.IP(pk[22:]),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *peerStore) PutSeeder(ih bittorrent.InfoHash, p bittorrent.Peer) error {
|
|
|
|
select {
|
|
|
|
case <-s.closed:
|
|
|
|
panic("attempted to interact with stopped memory store")
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
|
|
|
|
pk := newPeerKey(p)
|
|
|
|
|
2016-08-12 02:35:39 +02:00
|
|
|
shard := s.shards[s.shardIndex(ih, p)]
|
2016-08-10 03:34:16 +02:00
|
|
|
shard.Lock()
|
|
|
|
|
2016-08-12 02:35:39 +02:00
|
|
|
if _, ok := shard.swarms[ih]; !ok {
|
|
|
|
shard.swarms[ih] = swarm{
|
2016-08-10 03:34:16 +02:00
|
|
|
seeders: make(map[serializedPeer]int64),
|
|
|
|
leechers: make(map[serializedPeer]int64),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-12 02:35:39 +02:00
|
|
|
shard.swarms[ih].seeders[pk] = time.Now().UnixNano()
|
2016-08-10 03:34:16 +02:00
|
|
|
|
|
|
|
shard.Unlock()
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *peerStore) DeleteSeeder(ih bittorrent.InfoHash, p bittorrent.Peer) error {
|
|
|
|
select {
|
|
|
|
case <-s.closed:
|
|
|
|
panic("attempted to interact with stopped memory store")
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
|
|
|
|
pk := newPeerKey(p)
|
|
|
|
|
2016-08-12 02:35:39 +02:00
|
|
|
shard := s.shards[s.shardIndex(ih, p)]
|
2016-08-10 03:34:16 +02:00
|
|
|
shard.Lock()
|
|
|
|
|
2016-08-12 02:35:39 +02:00
|
|
|
if _, ok := shard.swarms[ih]; !ok {
|
2016-08-10 03:34:16 +02:00
|
|
|
shard.Unlock()
|
|
|
|
return storage.ErrResourceDoesNotExist
|
|
|
|
}
|
|
|
|
|
2016-08-12 02:35:39 +02:00
|
|
|
if _, ok := shard.swarms[ih].seeders[pk]; !ok {
|
2016-08-10 03:34:16 +02:00
|
|
|
shard.Unlock()
|
|
|
|
return storage.ErrResourceDoesNotExist
|
|
|
|
}
|
|
|
|
|
2016-08-12 02:35:39 +02:00
|
|
|
delete(shard.swarms[ih].seeders, pk)
|
2016-08-10 03:34:16 +02:00
|
|
|
|
2016-08-12 02:35:39 +02:00
|
|
|
if len(shard.swarms[ih].seeders)|len(shard.swarms[ih].leechers) == 0 {
|
|
|
|
delete(shard.swarms, ih)
|
2016-08-10 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
shard.Unlock()
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *peerStore) PutLeecher(ih bittorrent.InfoHash, p bittorrent.Peer) error {
|
|
|
|
select {
|
|
|
|
case <-s.closed:
|
|
|
|
panic("attempted to interact with stopped memory store")
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
|
|
|
|
pk := newPeerKey(p)
|
|
|
|
|
2016-08-12 02:35:39 +02:00
|
|
|
shard := s.shards[s.shardIndex(ih, p)]
|
2016-08-10 03:34:16 +02:00
|
|
|
shard.Lock()
|
|
|
|
|
2016-08-12 02:35:39 +02:00
|
|
|
if _, ok := shard.swarms[ih]; !ok {
|
|
|
|
shard.swarms[ih] = swarm{
|
2016-08-10 03:34:16 +02:00
|
|
|
seeders: make(map[serializedPeer]int64),
|
|
|
|
leechers: make(map[serializedPeer]int64),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-12 02:35:39 +02:00
|
|
|
shard.swarms[ih].leechers[pk] = time.Now().UnixNano()
|
2016-08-10 03:34:16 +02:00
|
|
|
|
|
|
|
shard.Unlock()
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *peerStore) DeleteLeecher(ih bittorrent.InfoHash, p bittorrent.Peer) error {
|
|
|
|
select {
|
|
|
|
case <-s.closed:
|
|
|
|
panic("attempted to interact with stopped memory store")
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
|
|
|
|
pk := newPeerKey(p)
|
|
|
|
|
2016-08-12 02:35:39 +02:00
|
|
|
shard := s.shards[s.shardIndex(ih, p)]
|
2016-08-10 03:34:16 +02:00
|
|
|
shard.Lock()
|
|
|
|
|
2016-08-12 02:35:39 +02:00
|
|
|
if _, ok := shard.swarms[ih]; !ok {
|
2016-08-10 03:34:16 +02:00
|
|
|
shard.Unlock()
|
|
|
|
return storage.ErrResourceDoesNotExist
|
|
|
|
}
|
|
|
|
|
2016-08-12 02:35:39 +02:00
|
|
|
if _, ok := shard.swarms[ih].leechers[pk]; !ok {
|
2016-08-10 03:34:16 +02:00
|
|
|
shard.Unlock()
|
|
|
|
return storage.ErrResourceDoesNotExist
|
|
|
|
}
|
|
|
|
|
2016-08-12 02:35:39 +02:00
|
|
|
delete(shard.swarms[ih].leechers, pk)
|
2016-08-10 03:34:16 +02:00
|
|
|
|
2016-08-12 02:35:39 +02:00
|
|
|
if len(shard.swarms[ih].seeders)|len(shard.swarms[ih].leechers) == 0 {
|
|
|
|
delete(shard.swarms, ih)
|
2016-08-10 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
shard.Unlock()
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *peerStore) GraduateLeecher(ih bittorrent.InfoHash, p bittorrent.Peer) error {
|
|
|
|
select {
|
|
|
|
case <-s.closed:
|
|
|
|
panic("attempted to interact with stopped memory store")
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
|
|
|
|
pk := newPeerKey(p)
|
|
|
|
|
2016-08-12 02:35:39 +02:00
|
|
|
shard := s.shards[s.shardIndex(ih, p)]
|
2016-08-10 03:34:16 +02:00
|
|
|
shard.Lock()
|
|
|
|
|
2016-08-12 02:35:39 +02:00
|
|
|
if _, ok := shard.swarms[ih]; !ok {
|
|
|
|
shard.swarms[ih] = swarm{
|
2016-08-10 03:34:16 +02:00
|
|
|
seeders: make(map[serializedPeer]int64),
|
|
|
|
leechers: make(map[serializedPeer]int64),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-12 02:35:39 +02:00
|
|
|
delete(shard.swarms[ih].leechers, pk)
|
2016-08-10 03:34:16 +02:00
|
|
|
|
2016-08-12 02:35:39 +02:00
|
|
|
shard.swarms[ih].seeders[pk] = time.Now().UnixNano()
|
2016-08-10 03:34:16 +02:00
|
|
|
|
|
|
|
shard.Unlock()
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *peerStore) CollectGarbage(cutoff time.Time) error {
|
|
|
|
select {
|
|
|
|
case <-s.closed:
|
|
|
|
panic("attempted to interact with stopped memory store")
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("memory: collecting garbage. Cutoff time: %s", cutoff.String())
|
|
|
|
cutoffUnix := cutoff.UnixNano()
|
|
|
|
for _, shard := range s.shards {
|
|
|
|
shard.RLock()
|
2016-08-12 02:35:39 +02:00
|
|
|
var infohashes []bittorrent.InfoHash
|
|
|
|
for ih := range shard.swarms {
|
|
|
|
infohashes = append(infohashes, ih)
|
2016-08-10 03:34:16 +02:00
|
|
|
}
|
|
|
|
shard.RUnlock()
|
|
|
|
runtime.Gosched()
|
|
|
|
|
2016-08-12 02:35:39 +02:00
|
|
|
for _, ih := range infohashes {
|
2016-08-10 03:34:16 +02:00
|
|
|
shard.Lock()
|
|
|
|
|
2016-08-12 02:35:39 +02:00
|
|
|
if _, stillExists := shard.swarms[ih]; !stillExists {
|
2016-08-10 03:34:16 +02:00
|
|
|
shard.Unlock()
|
|
|
|
runtime.Gosched()
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2016-08-12 02:35:39 +02:00
|
|
|
for pk, mtime := range shard.swarms[ih].leechers {
|
2016-08-10 03:34:16 +02:00
|
|
|
if mtime <= cutoffUnix {
|
2016-08-12 02:35:39 +02:00
|
|
|
delete(shard.swarms[ih].leechers, pk)
|
2016-08-10 03:34:16 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-12 02:35:39 +02:00
|
|
|
for pk, mtime := range shard.swarms[ih].seeders {
|
2016-08-10 03:34:16 +02:00
|
|
|
if mtime <= cutoffUnix {
|
2016-08-12 02:35:39 +02:00
|
|
|
delete(shard.swarms[ih].seeders, pk)
|
2016-08-10 03:34:16 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-12 02:35:39 +02:00
|
|
|
if len(shard.swarms[ih].seeders)|len(shard.swarms[ih].leechers) == 0 {
|
|
|
|
delete(shard.swarms, ih)
|
2016-08-10 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
shard.Unlock()
|
|
|
|
runtime.Gosched()
|
|
|
|
}
|
|
|
|
|
|
|
|
runtime.Gosched()
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *peerStore) AnnouncePeers(ih bittorrent.InfoHash, seeder bool, numWant int, announcer bittorrent.Peer) (peers []bittorrent.Peer, err error) {
|
|
|
|
select {
|
|
|
|
case <-s.closed:
|
|
|
|
panic("attempted to interact with stopped memory store")
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
|
2016-08-12 02:35:39 +02:00
|
|
|
shard := s.shards[s.shardIndex(ih, announcer)]
|
2016-08-10 03:34:16 +02:00
|
|
|
shard.RLock()
|
|
|
|
|
2016-08-12 02:35:39 +02:00
|
|
|
if _, ok := shard.swarms[ih]; !ok {
|
2016-08-10 03:34:16 +02:00
|
|
|
shard.RUnlock()
|
|
|
|
return nil, storage.ErrResourceDoesNotExist
|
|
|
|
}
|
|
|
|
|
|
|
|
if seeder {
|
|
|
|
// Append leechers as possible.
|
2016-08-12 02:35:39 +02:00
|
|
|
leechers := shard.swarms[ih].leechers
|
2016-08-10 03:34:16 +02:00
|
|
|
for p := range leechers {
|
|
|
|
decodedPeer := decodePeerKey(p)
|
|
|
|
if numWant == 0 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
peers = append(peers, decodedPeer)
|
|
|
|
numWant--
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Append as many seeders as possible.
|
2016-08-12 02:35:39 +02:00
|
|
|
seeders := shard.swarms[ih].seeders
|
2016-08-10 03:34:16 +02:00
|
|
|
for p := range seeders {
|
|
|
|
decodedPeer := decodePeerKey(p)
|
|
|
|
if numWant == 0 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
peers = append(peers, decodedPeer)
|
|
|
|
numWant--
|
|
|
|
}
|
|
|
|
|
|
|
|
// Append leechers until we reach numWant.
|
2016-08-12 02:35:39 +02:00
|
|
|
leechers := shard.swarms[ih].leechers
|
2016-08-10 03:34:16 +02:00
|
|
|
if numWant > 0 {
|
|
|
|
for p := range leechers {
|
|
|
|
decodedPeer := decodePeerKey(p)
|
|
|
|
if numWant == 0 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
if decodedPeer.Equal(announcer) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
peers = append(peers, decodedPeer)
|
|
|
|
numWant--
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
shard.RUnlock()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *peerStore) Stop() <-chan error {
|
|
|
|
toReturn := make(chan error)
|
|
|
|
go func() {
|
|
|
|
shards := make([]*peerShard, len(s.shards))
|
|
|
|
for i := 0; i < len(s.shards); i++ {
|
2016-08-12 02:35:39 +02:00
|
|
|
shards[i] = &peerShard{swarms: make(map[bittorrent.InfoHash]swarm)}
|
2016-08-10 03:34:16 +02:00
|
|
|
}
|
|
|
|
s.shards = shards
|
|
|
|
close(s.closed)
|
|
|
|
close(toReturn)
|
|
|
|
}()
|
|
|
|
return toReturn
|
|
|
|
}
|