tracker/udp/protocol.go

177 lines
3.8 KiB
Go
Raw Normal View History

// Copyright 2015 The Chihaya Authors. All rights reserved.
// Use of this source code is governed by the BSD 2-Clause license,
// which can be found in the LICENSE file.
package udp
import (
"bytes"
"encoding/binary"
2015-02-20 08:18:44 +01:00
"errors"
"net"
2015-02-20 08:18:44 +01:00
"github.com/chihaya/chihaya/stats"
"github.com/chihaya/chihaya/tracker/models"
)
var initialConnectionID = []byte{0, 0, 0x04, 0x17, 0x27, 0x10, 0x19, 0x80}
var eventIDs = []string{"", "completed", "started", "stopped"}
2015-02-20 08:18:44 +01:00
var (
errMalformedPacket = errors.New("malformed packet")
errMalformedIP = errors.New("malformed IP address")
errMalformedEvent = errors.New("malformed event ID")
2015-02-20 18:35:31 +01:00
errBadConnectionID = errors.New("bad connection ID")
2015-02-20 08:18:44 +01:00
)
func writeHeader(response []byte, action uint32, transactionID []byte) {
binary.BigEndian.PutUint32(response, action)
copy(response[4:], transactionID)
}
func handleTorrentError(err error, w *Writer) {
if err == nil {
return
}
if _, ok := err.(models.ClientError); ok {
w.WriteError(err)
stats.RecordEvent(stats.ClientError)
}
}
func (s *Server) handlePacket(packet []byte, addr *net.UDPAddr) (response []byte) {
if len(packet) < 16 {
return nil // Malformed, no client packets are less than 16 bytes.
}
connID := packet[0:8]
action := binary.BigEndian.Uint32(packet[8:12])
transactionID := packet[12:16]
generatedConnID := GenerateConnectionID(addr.IP)
2015-02-20 18:35:31 +01:00
writer := &Writer{
buf: new(bytes.Buffer),
connectionID: connID,
transactionID: transactionID,
}
2015-02-20 08:18:44 +01:00
2015-02-20 18:52:49 +01:00
defer func() {
if writer.buf.Len() > 0 {
response = writer.buf.Bytes()
}
}()
if action != 0 && !bytes.Equal(connID, generatedConnID) {
writer.WriteError(errBadConnectionID)
return
}
switch action {
case 0:
// Connect request.
if !bytes.Equal(connID, initialConnectionID) {
return nil // Malformed packet.
}
response = make([]byte, 16)
writeHeader(response, action, transactionID)
copy(response[8:], generatedConnID)
case 1:
// Announce request.
2015-02-20 18:52:49 +01:00
ann, err := s.newAnnounce(packet, addr.IP)
2015-02-20 08:18:44 +01:00
2015-02-20 18:52:49 +01:00
if err == nil {
err = s.tracker.HandleAnnounce(ann, writer)
2015-02-20 18:35:31 +01:00
}
2015-02-20 08:18:44 +01:00
2015-02-20 18:52:49 +01:00
handleTorrentError(err, writer)
2015-02-20 08:18:44 +01:00
case 2:
// Scrape request.
2015-02-20 18:52:49 +01:00
scrape, err := s.newScrape(packet)
2015-02-20 18:35:31 +01:00
2015-02-20 18:52:49 +01:00
if err == nil {
err = s.tracker.HandleScrape(scrape, writer)
2015-02-20 18:35:31 +01:00
}
2015-02-20 08:18:44 +01:00
2015-02-20 18:52:49 +01:00
handleTorrentError(err, writer)
}
2015-02-20 18:52:49 +01:00
return
}
2015-02-20 08:18:44 +01:00
func (s *Server) newAnnounce(packet []byte, ip net.IP) (*models.Announce, error) {
if len(packet) < 98 {
return nil, errMalformedPacket
}
infohash := packet[16:36]
peerID := packet[36:56]
downloaded := binary.BigEndian.Uint64(packet[56:64])
left := binary.BigEndian.Uint64(packet[64:72])
uploaded := binary.BigEndian.Uint64(packet[72:80])
eventID := packet[83]
if eventID > 3 {
return nil, errMalformedEvent
}
ipbuf := packet[84:88]
if !bytes.Equal(ipbuf, []byte{0, 0, 0, 0}) {
ip = net.ParseIP(string(ipbuf))
}
if ip == nil {
return nil, errMalformedIP
}
if ipv4 := ip.To4(); ipv4 != nil {
ip = ipv4
}
2015-02-20 08:18:44 +01:00
// TODO(pushrax): what exactly is the key "key" used for?
numWant := binary.BigEndian.Uint32(packet[92:96])
port := binary.BigEndian.Uint16(packet[96:98])
return &models.Announce{
Config: s.config,
Downloaded: downloaded,
Event: eventIDs[eventID],
IPv4: ip,
Infohash: string(infohash),
Left: left,
NumWant: int(numWant),
PeerID: string(peerID),
Port: port,
Uploaded: uploaded,
}, nil
}
2015-02-20 18:35:31 +01:00
func (s *Server) newScrape(packet []byte) (*models.Scrape, error) {
if len(packet) < 16 {
return nil, errMalformedPacket
}
var infohashes []string
packet = packet[16:]
if len(packet)%20 != 0 {
return nil, errMalformedPacket
}
for len(packet) >= 20 {
infohash := packet[:20]
infohashes = append(infohashes, string(infohash))
2015-02-20 18:52:49 +01:00
packet = packet[20:]
2015-02-20 18:35:31 +01:00
}
return &models.Scrape{
Config: s.config,
Infohashes: infohashes,
}, nil
}